From 6585a0ee11bcf34007fae78b1ec33758e073db87 Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 26 Sep 2023 18:16:42 +0200 Subject: [PATCH 01/36] On branch feature/visualize-verflechtungen --- pyproject.toml | 3 + .../ui/cytoscape_dash.py | 25 +++ .../ui/dashvis_networkx.py | 11 ++ .../ui/networkx_dash.py | 139 ++++++++++++++ .../ui/networkx_dash_overall.py | 173 ++++++++++++++++++ tests/ui/cytoscape_dash_test.py | 6 + tests/ui/dashvis_networkx_test.py | 6 + tests/ui/networkx_dash_test.py | 7 + 8 files changed, 370 insertions(+) create mode 100644 src/aki_prj23_transparenzregister/ui/cytoscape_dash.py create mode 100644 src/aki_prj23_transparenzregister/ui/dashvis_networkx.py create mode 100644 src/aki_prj23_transparenzregister/ui/networkx_dash.py create mode 100644 src/aki_prj23_transparenzregister/ui/networkx_dash_overall.py create mode 100644 tests/ui/cytoscape_dash_test.py create mode 100644 tests/ui/dashvis_networkx_test.py create mode 100644 tests/ui/networkx_dash_test.py diff --git a/pyproject.toml b/pyproject.toml index fc43b11..02e37e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -76,6 +76,9 @@ torchvision = {version = "*", source = "torch-cpu"} tqdm = "^4.66.1" transformers = {version = "*", extras = ["torch"]} xmltodict = "^0.13.0" +dash_cytoscape = "^0.2.0" +dashvis = "^0.1.3" + [tool.poetry.extras] ingest = ["selenium", "deutschland", "xmltodict"] diff --git a/src/aki_prj23_transparenzregister/ui/cytoscape_dash.py b/src/aki_prj23_transparenzregister/ui/cytoscape_dash.py new file mode 100644 index 0000000..0387ee4 --- /dev/null +++ b/src/aki_prj23_transparenzregister/ui/cytoscape_dash.py @@ -0,0 +1,25 @@ +import dash_cytoscape as cyto +from dash import Dash, html + +app = Dash(__name__) + +app.layout = html.Div( + [ + html.P("Dash Cytoscape:"), + cyto.Cytoscape( + id="cytoscape", + elements=[ + {"data": {"id": "ca", "label": "Canada"}}, + {"data": {"id": "on", "label": "Ontario"}}, + {"data": {"id": "qc", "label": "Quebec"}}, + {"data": {"source": "ca", "target": "on"}}, + {"data": {"source": "ca", "target": "qc"}}, + ], + layout={"name": "breadthfirst"}, + style={"width": "400px", "height": "500px"}, + ), + ] +) + +if __name__ == "__main__": + app.run_server(debug=True) diff --git a/src/aki_prj23_transparenzregister/ui/dashvis_networkx.py b/src/aki_prj23_transparenzregister/ui/dashvis_networkx.py new file mode 100644 index 0000000..476b214 --- /dev/null +++ b/src/aki_prj23_transparenzregister/ui/dashvis_networkx.py @@ -0,0 +1,11 @@ +# https://pypi.org/project/dashvis/ + +import dash +from dash import html +from dashvis import DashNetwork + +app = dash.Dash() +app.layout = html.Div([DashNetwork(1)]) + +if __name__ == "__main__": + app.run_server(debug=True) diff --git a/src/aki_prj23_transparenzregister/ui/networkx_dash.py b/src/aki_prj23_transparenzregister/ui/networkx_dash.py new file mode 100644 index 0000000..e9b39c0 --- /dev/null +++ b/src/aki_prj23_transparenzregister/ui/networkx_dash.py @@ -0,0 +1,139 @@ +import pandas as pd +import networkx as nx +import plotly.graph_objects as go +from dash import Dash, Input, Output, dcc, html +from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider +from aki_prj23_transparenzregister.utils.sql import connector, entities + +test_company = 13 #2213 # 13 + +def find_company_relations(company_id: int) -> pd.DataFrame: + session = connector.get_session(JsonFileConfigProvider("./secrets.json")) + query_companies = session.query(entities.Company) + query_relations = session.query(entities.CompanyRelation) + + companies_df: pd.DataFrame = pd.read_sql(str(query_companies), session.bind) # type: ignore + companies_relations_df: pd.DataFrame = pd.read_sql(str(query_relations), session.bind) # type: ignore + + companies_relations_df = companies_relations_df.loc[companies_relations_df["relation_id"] == company_id,:][["relation_id","company_relation_company2_id"]] + + company_name = [] + connected_company_name = [] + + for _, row in companies_relations_df.iterrows(): + # print(companies_df.loc[companies_df["company_id"] == row["relation_id"]]["company_name"].values[0]) + company_name.append(companies_df.loc[companies_df["company_id"] == row["relation_id"]]["company_name"].values[0]) + connected_company_name.append(companies_df.loc[companies_df["company_id"] == row["company_relation_company2_id"]]["company_name"].values[0]) + + # print(company_name) + companies_relations_df["company_name"] = company_name + companies_relations_df["connected_company_name"] = connected_company_name + # print(companies_relations_df) + return companies_relations_df + +# Plotly figure +def networkGraph(EGDE_VAR: None) -> go.Figure: + # df = find_company_relations(test_company) + edges = [] + for index, row in find_company_relations(test_company).iterrows(): + edges.append([row["company_name"], row["connected_company_name"]]) + # print(row["company_name"], row["connected_company_name"]) + # print(edges) + # edges = df[["relation_id","company_relation_company2_id"]] + # edges = [[EGDE_VAR, "B"], ["B", "C"], ["B", "D"]] + network_graph = nx.Graph() + network_graph.add_edges_from(edges) + pos = nx.spring_layout(network_graph) + + # edges trace + edge_x = [] + edge_y = [] + for edge in network_graph.edges(): + x0, y0 = pos[edge[0]] + x1, y1 = pos[edge[1]] + edge_x.append(x0) + edge_x.append(x1) + edge_x.append(None) + edge_y.append(y0) + edge_y.append(y1) + edge_y.append(None) + + edge_trace = go.Scatter( + x=edge_x, + y=edge_y, + line={"color": "black", "width": 1}, + hoverinfo="none", + showlegend=False, + mode="lines", + ) + + # nodes trace + node_x = [] + node_y = [] + text = [] + for node in network_graph.nodes(): + x, y = pos[node] + node_x.append(x) + node_y.append(y) + text.append(node) + + node_trace = go.Scatter( + x=node_x, + y=node_y, + text=text, + mode="markers+text", + showlegend=False, + hoverinfo="none", + marker={"color": "pink", "size": 50, "line": {"color": "black", "width": 1}}, + ) + + # layout + layout = { + "plot_bgcolor": "white", + "paper_bgcolor": "white", + "margin": {"t": 10, "b": 10, "l": 10, "r": 10, "pad": 0}, + "xaxis": { + "linecolor": "black", + "showgrid": False, + "showticklabels": False, + "mirror": True, + }, + "yaxis": { + "linecolor": "black", + "showgrid": False, + "showticklabels": False, + "mirror": True, + }, + } + + # figure + return go.Figure(data=[edge_trace, node_trace], layout=layout) + + +# Dash App + + +app = Dash(__name__) + +app.title = "Dash Networkx" + +app.layout = html.Div( + [ + html.I("Write your EDGE_VAR"), + html.Br(), + dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), + dcc.Graph(id="my-graph"), + ] +) + + +@app.callback( + Output("my-graph", "figure"), + [Input("EGDE_VAR", "value")], +) +def update_output(EGDE_VAR: None) -> None: + return networkGraph(EGDE_VAR) + + +if __name__ == "__main__": + app.run(debug=True) diff --git a/src/aki_prj23_transparenzregister/ui/networkx_dash_overall.py b/src/aki_prj23_transparenzregister/ui/networkx_dash_overall.py new file mode 100644 index 0000000..b439414 --- /dev/null +++ b/src/aki_prj23_transparenzregister/ui/networkx_dash_overall.py @@ -0,0 +1,173 @@ +import pandas as pd +import networkx as nx +import plotly.graph_objects as go +from dash import Dash, Input, Output, dcc, html +from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider +from aki_prj23_transparenzregister.utils.sql import connector, entities + +test_company = 13 #2213 # 13 + +def find_all_company_relations() -> pd.DataFrame: + session = connector.get_session(JsonFileConfigProvider("./secrets.json")) + query_companies = session.query(entities.Company) #.all() + query_relations = session.query(entities.CompanyRelation) # .all() + + companies_df: pd.DataFrame = pd.read_sql(str(query_companies), session.bind) # type: ignore + companies_relations_df: pd.DataFrame = pd.read_sql(str(query_relations), session.bind) # type: ignore + # print(companies_relations_df) + companies_relations_df = companies_relations_df[["relation_id","company_relation_company2_id"]] + # print(companies_relations_df) + company_name = [] + connected_company_name = [] + + companies_relations_df = companies_relations_df.head() + # print(companies_relations_df) + + for _, row in companies_relations_df.iterrows(): + # print(companies_df.loc[companies_df["company_id"] == row["relation_id"]]["company_name"].values[0]) + # print("TEst") + company_name.append(companies_df.loc[companies_df["company_id"] == row["relation_id"]]["company_name"].values[0]) + + connected_company_name.append(companies_df.loc[companies_df["company_id"] == row["company_relation_company2_id"]]["company_name"].values[0]) + # print(connected_company_name) + + # print(company_name) + companies_relations_df["company_name"] = company_name + companies_relations_df["connected_company_name"] = connected_company_name + # print("Test") + # print(companies_relations_df) + return companies_relations_df + +# Plotly figure +def networkGraph(EGDE_VAR: None) -> go.Figure: + # find_all_company_relations() + + edges = [] + for index, row in find_all_company_relations().iterrows(): + edges.append([row["company_name"], row["connected_company_name"]]) + # print(row["company_name"], row["connected_company_name"]) + # print(edges) + # edges = df[["relation_id","company_relation_company2_id"]] + # edges = [[EGDE_VAR, "B"], ["B", "C"], ["B", "D"]] + network_graph = nx.Graph() + network_graph.add_edges_from(edges) + pos = nx.spring_layout(network_graph) + + # edges trace + edge_x = [] + edge_y = [] + for edge in network_graph.edges(): + x0, y0 = pos[edge[0]] + x1, y1 = pos[edge[1]] + edge_x.append(x0) + edge_x.append(x1) + edge_x.append(None) + edge_y.append(y0) + edge_y.append(y1) + edge_y.append(None) + + edge_trace = go.Scatter( + x=edge_x, + y=edge_y, + line={"color": "black", "width": 1}, + hoverinfo="none", + showlegend=False, + mode="lines", + ) + + # nodes trace + node_x = [] + node_y = [] + text = [] + for node in network_graph.nodes(): + x, y = pos[node] + node_x.append(x) + node_y.append(y) + text.append(node) + + node_trace = go.Scatter( + x=node_x, + y=node_y, + text=text, + mode="markers+text", + showlegend=False, + hoverinfo="none", + marker={"color": "pink", "size": 50, "line": {"color": "black", "width": 1}}, + ) + + # layout + layout = { + "plot_bgcolor": "white", + "paper_bgcolor": "white", + "margin": {"t": 10, "b": 10, "l": 10, "r": 10, "pad": 0}, + "xaxis": { + "linecolor": "black", + "showgrid": False, + "showticklabels": False, + "mirror": True, + }, + "yaxis": { + "linecolor": "black", + "showgrid": False, + "showticklabels": False, + "mirror": True, + }, + } + + print(nx.eigenvector_centrality(network_graph)) + measure_vector = {} + network_metrics_df = pd.DataFrame() + + + measure_vector = nx.eigenvector_centrality(network_graph) + network_metrics_df["eigenvector"] = measure_vector.values() + + measure_vector = nx.degree_centrality(network_graph) + network_metrics_df["degree"] = measure_vector.values() + + measure_vector = nx.betweenness_centrality(network_graph) + network_metrics_df["betweeness"] = measure_vector.values() + + measure_vector = nx.closeness_centrality(network_graph) + network_metrics_df["closeness"] = measure_vector.values() + + # measure_vector = nx.pagerank(network_graph) + # network_metrics_df["pagerank"] = measure_vector.values() + + # measure_vector = nx.average_degree_connectivity(network_graph) + # network_metrics_df["average_degree"] = measure_vector.values() + print(network_metrics_df) + + # figure + return go.Figure(data=[edge_trace, node_trace], layout=layout) + + +# Dash App + + +app = Dash(__name__) + +app.title = "Dash Networkx" + +app.layout = html.Div( + [ + html.I("Write your EDGE_VAR"), + html.Br(), + # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='metric-dropdown'), + dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), + dcc.Graph(id="my-graph"), + ] +) + + +@app.callback( + Output("my-graph", "figure"), + # Input('metric-dropdown', 'value'), + [Input("EGDE_VAR", "value")], +) +def update_output(EGDE_VAR: None) -> None: + return networkGraph(EGDE_VAR) + + +if __name__ == "__main__": + app.run(debug=True) diff --git a/tests/ui/cytoscape_dash_test.py b/tests/ui/cytoscape_dash_test.py new file mode 100644 index 0000000..edb9d5b --- /dev/null +++ b/tests/ui/cytoscape_dash_test.py @@ -0,0 +1,6 @@ +"""Test for the NetworkX Component.""" + + +# def networkGraph(Edges) -> None: +# """Checks if an import co company_stats_dash can be made.""" +# assert networkx_dash is not None diff --git a/tests/ui/dashvis_networkx_test.py b/tests/ui/dashvis_networkx_test.py new file mode 100644 index 0000000..edb9d5b --- /dev/null +++ b/tests/ui/dashvis_networkx_test.py @@ -0,0 +1,6 @@ +"""Test for the NetworkX Component.""" + + +# def networkGraph(Edges) -> None: +# """Checks if an import co company_stats_dash can be made.""" +# assert networkx_dash is not None diff --git a/tests/ui/networkx_dash_test.py b/tests/ui/networkx_dash_test.py new file mode 100644 index 0000000..baa6f71 --- /dev/null +++ b/tests/ui/networkx_dash_test.py @@ -0,0 +1,7 @@ +"""Test for the NetworkX Component.""" +from aki_prj23_transparenzregister.ui import networkx_dash + + +def networkGraph(Edges: None) -> None: + """Checks if an import co company_stats_dash can be made.""" + assert networkx_dash is not None From 3301726dead6ee4305deb8e978d19893a339710d Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 26 Sep 2023 20:17:56 +0200 Subject: [PATCH 02/36] Integrated NetworkX graphs into App --- .../ui/assets/networkx_style.css | 17 ++ .../ui/company_elements.py | 5 +- .../ui/networkx_dash.py | 51 +++-- .../ui/networkx_dash_overall.py | 8 +- .../ui/pages/home.py | 182 +++++++++++++++++- 5 files changed, 234 insertions(+), 29 deletions(-) create mode 100644 src/aki_prj23_transparenzregister/ui/assets/networkx_style.css diff --git a/src/aki_prj23_transparenzregister/ui/assets/networkx_style.css b/src/aki_prj23_transparenzregister/ui/assets/networkx_style.css new file mode 100644 index 0000000..aaf5f34 --- /dev/null +++ b/src/aki_prj23_transparenzregister/ui/assets/networkx_style.css @@ -0,0 +1,17 @@ +.networkx_style { + float: right; + margin-top: 20px; + margin-left: 20px; + border: 1px solid; + width: 45%; + height: 500px; +} + +.top_companytable_style { + float: left; + margin-top: 20px; + margin-right: 20px; + border: 1px solid; + width: 45%; + height: 100%; +} \ No newline at end of file diff --git a/src/aki_prj23_transparenzregister/ui/company_elements.py b/src/aki_prj23_transparenzregister/ui/company_elements.py index 5379784..f5b4dff 100644 --- a/src/aki_prj23_transparenzregister/ui/company_elements.py +++ b/src/aki_prj23_transparenzregister/ui/company_elements.py @@ -10,6 +10,7 @@ from dash import dash_table, dcc, html from sqlalchemy.orm import Session from aki_prj23_transparenzregister.ui import data_elements, finance_elements +from aki_prj23_transparenzregister.ui.networkx_dash import networkx_component COLORS = { "light": "#edefef", @@ -353,4 +354,6 @@ def network_layout(selected_company_id: int) -> html: Returns: The html div to create the network tab of the company page. """ - return html.Div([f"Netzwerk von Unternehmen mit ID: {selected_company_id}"]) + selected_company_id + return networkx_component(selected_company_id) + # return html.Div([f"Netzwerk von Unternehmen mit ID: {selected_company_id}"]) diff --git a/src/aki_prj23_transparenzregister/ui/networkx_dash.py b/src/aki_prj23_transparenzregister/ui/networkx_dash.py index e9b39c0..4eb961a 100644 --- a/src/aki_prj23_transparenzregister/ui/networkx_dash.py +++ b/src/aki_prj23_transparenzregister/ui/networkx_dash.py @@ -1,7 +1,7 @@ import pandas as pd import networkx as nx import plotly.graph_objects as go -from dash import Dash, Input, Output, dcc, html +from dash import Dash, Input, Output, dcc, html, callback from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider from aki_prj23_transparenzregister.utils.sql import connector, entities @@ -32,10 +32,10 @@ def find_company_relations(company_id: int) -> pd.DataFrame: return companies_relations_df # Plotly figure -def networkGraph(EGDE_VAR: None) -> go.Figure: +def networkGraph(company_id: int) -> go.Figure: # df = find_company_relations(test_company) edges = [] - for index, row in find_company_relations(test_company).iterrows(): + for index, row in find_company_relations(company_id).iterrows(): edges.append([row["company_name"], row["connected_company_name"]]) # print(row["company_name"], row["connected_company_name"]) # print(edges) @@ -113,27 +113,36 @@ def networkGraph(EGDE_VAR: None) -> go.Figure: # Dash App -app = Dash(__name__) +# app = Dash(__name__) -app.title = "Dash Networkx" +# app.title = "Dash Networkx" -app.layout = html.Div( +# app.layout = html.Div( +# [ +# html.I("Write your EDGE_VAR"), +# html.Br(), +# dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), +# dcc.Graph(id="my-graph"), +# ] +# ) +def networkx_component(company_id: int): + + layout = html.Div( [ - html.I("Write your EDGE_VAR"), - html.Br(), - dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), - dcc.Graph(id="my-graph"), + + dcc.Graph(id="my-graph", figure=networkGraph(company_id)), ] -) + ) + return layout + +# callback( +# Output("my-graph", "figure", allow_duplicate=True), +# [Input("EGDE_VAR", "value")], +# prevent_initial_call=True, +# ) +# def update_output() -> None: +# return networkGraph() -@app.callback( - Output("my-graph", "figure"), - [Input("EGDE_VAR", "value")], -) -def update_output(EGDE_VAR: None) -> None: - return networkGraph(EGDE_VAR) - - -if __name__ == "__main__": - app.run(debug=True) +# if __name__ == "__main__": +# app.run(debug=True) diff --git a/src/aki_prj23_transparenzregister/ui/networkx_dash_overall.py b/src/aki_prj23_transparenzregister/ui/networkx_dash_overall.py index b439414..b1ffbc6 100644 --- a/src/aki_prj23_transparenzregister/ui/networkx_dash_overall.py +++ b/src/aki_prj23_transparenzregister/ui/networkx_dash_overall.py @@ -148,14 +148,16 @@ def networkGraph(EGDE_VAR: None) -> go.Figure: app = Dash(__name__) app.title = "Dash Networkx" - +# className="networkx_style" app.layout = html.Div( - [ + + style={'width': '49%'}, + children = [ html.I("Write your EDGE_VAR"), html.Br(), # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='metric-dropdown'), dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), - dcc.Graph(id="my-graph"), + dcc.Graph(id="my-graph", style={'width': '49%'}), ] ) diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index d99af6a..ad0489b 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -1,6 +1,12 @@ """Content of home page.""" import dash from dash import html +import pandas as pd +import networkx as nx +import plotly.graph_objects as go +from dash import Dash, Input, Output, dcc, html, callback +from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider +from aki_prj23_transparenzregister.utils.sql import connector, entities dash.register_page( __name__, @@ -14,9 +20,177 @@ dash.register_page( ], ) +def find_all_company_relations() -> pd.DataFrame: + session = connector.get_session(JsonFileConfigProvider("./secrets.json")) + query_companies = session.query(entities.Company) #.all() + query_relations = session.query(entities.CompanyRelation) # .all() + + companies_df: pd.DataFrame = pd.read_sql(str(query_companies), session.bind) # type: ignore + companies_relations_df: pd.DataFrame = pd.read_sql(str(query_relations), session.bind) # type: ignore + # print(companies_relations_df) + companies_relations_df = companies_relations_df[["relation_id","company_relation_company2_id"]] + # print(companies_relations_df) + company_name = [] + connected_company_name = [] + + companies_relations_df = companies_relations_df.head() + # print(companies_relations_df) + + for _, row in companies_relations_df.iterrows(): + # print(companies_df.loc[companies_df["company_id"] == row["relation_id"]]["company_name"].values[0]) + # print("TEst") + company_name.append(companies_df.loc[companies_df["company_id"] == row["relation_id"]]["company_name"].values[0]) + + connected_company_name.append(companies_df.loc[companies_df["company_id"] == row["company_relation_company2_id"]]["company_name"].values[0]) + # print(connected_company_name) + + # print(company_name) + companies_relations_df["company_name"] = company_name + companies_relations_df["connected_company_name"] = connected_company_name + # print("Test") + # print(companies_relations_df) + return companies_relations_df + +# Plotly figure +def networkGraph(EGDE_VAR: None) -> go.Figure: + # find_all_company_relations() + + edges = [] + for index, row in find_all_company_relations().iterrows(): + edges.append([row["company_name"], row["connected_company_name"]]) + # print(row["company_name"], row["connected_company_name"]) + # print(edges) + # edges = df[["relation_id","company_relation_company2_id"]] + # edges = [[EGDE_VAR, "B"], ["B", "C"], ["B", "D"]] + network_graph = nx.Graph() + network_graph.add_edges_from(edges) + pos = nx.spring_layout(network_graph) + + # edges trace + edge_x = [] + edge_y = [] + for edge in network_graph.edges(): + x0, y0 = pos[edge[0]] + x1, y1 = pos[edge[1]] + edge_x.append(x0) + edge_x.append(x1) + edge_x.append(None) + edge_y.append(y0) + edge_y.append(y1) + edge_y.append(None) + + edge_trace = go.Scatter( + x=edge_x, + y=edge_y, + line={"color": "black", "width": 1}, + hoverinfo="none", + showlegend=False, + mode="lines", + ) + + # nodes trace + node_x = [] + node_y = [] + text = [] + for node in network_graph.nodes(): + x, y = pos[node] + node_x.append(x) + node_y.append(y) + text.append(node) + + node_trace = go.Scatter( + x=node_x, + y=node_y, + text=text, + mode="markers+text", + showlegend=False, + hoverinfo="none", + marker={"color": "pink", "size": 50, "line": {"color": "black", "width": 1}}, + ) + + # layout + layout = { + "plot_bgcolor": "white", + "paper_bgcolor": "white", + "margin": {"t": 10, "b": 10, "l": 10, "r": 10, "pad": 0}, + "xaxis": { + "linecolor": "black", + "showgrid": False, + "showticklabels": False, + "mirror": True, + }, + "yaxis": { + "linecolor": "black", + "showgrid": False, + "showticklabels": False, + "mirror": True, + }, + } + + print(nx.eigenvector_centrality(network_graph)) + measure_vector = {} + network_metrics_df = pd.DataFrame() + + + measure_vector = nx.eigenvector_centrality(network_graph) + network_metrics_df["eigenvector"] = measure_vector.values() + + measure_vector = nx.degree_centrality(network_graph) + network_metrics_df["degree"] = measure_vector.values() + + measure_vector = nx.betweenness_centrality(network_graph) + network_metrics_df["betweeness"] = measure_vector.values() + + measure_vector = nx.closeness_centrality(network_graph) + network_metrics_df["closeness"] = measure_vector.values() + + # measure_vector = nx.pagerank(network_graph) + # network_metrics_df["pagerank"] = measure_vector.values() + + # measure_vector = nx.average_degree_connectivity(network_graph) + # network_metrics_df["average_degree"] = measure_vector.values() + print(network_metrics_df) + + # figure + return go.Figure(data=[edge_trace, node_trace], layout=layout) + + +# Dash App + + +# app = Dash(__name__) + +# app.title = "Dash Networkx" + layout = html.Div( - [ - html.H1("This is our Home page", style={"margin": 0}), - html.Div("This is our Home page content."), - ] + + children = html.Div( + children=[ + html.Div( + className="top_companytable_style", + children=[ + html.I("Write your EDGE_VAR") + ] + ), + html.Div( + className="networkx_style", + children=[ + html.I("Write your EDGE_VAR"), + html.Br(), + # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='metric-dropdown'), + dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), + dcc.Graph(id="my-graph"), + ] + ) + ] + ) ) + + +@callback( + Output("my-graph", "figure"), + # Input('metric-dropdown', 'value'), + [Input("EGDE_VAR", "value")], +) +def update_output(EGDE_VAR: None) -> None: + return networkGraph(EGDE_VAR) \ No newline at end of file From b06d553f7551be9e1548d649d563b906325b7114 Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 26 Sep 2023 21:03:35 +0200 Subject: [PATCH 03/36] Extracted Data-Extraction Metrhods into separate Files --- .../ui/networkx_dash.py | 27 ---------- .../ui/pages/home.py | 52 +++---------------- .../utils/networkx/__init__.py | 1 + .../utils/networkx/networkx_data.py | 48 +++++++++++++++++ 4 files changed, 56 insertions(+), 72 deletions(-) create mode 100644 src/aki_prj23_transparenzregister/utils/networkx/__init__.py create mode 100644 src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py diff --git a/src/aki_prj23_transparenzregister/ui/networkx_dash.py b/src/aki_prj23_transparenzregister/ui/networkx_dash.py index 4eb961a..bdddc57 100644 --- a/src/aki_prj23_transparenzregister/ui/networkx_dash.py +++ b/src/aki_prj23_transparenzregister/ui/networkx_dash.py @@ -109,22 +109,6 @@ def networkGraph(company_id: int) -> go.Figure: # figure return go.Figure(data=[edge_trace, node_trace], layout=layout) - -# Dash App - - -# app = Dash(__name__) - -# app.title = "Dash Networkx" - -# app.layout = html.Div( -# [ -# html.I("Write your EDGE_VAR"), -# html.Br(), -# dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), -# dcc.Graph(id="my-graph"), -# ] -# ) def networkx_component(company_id: int): layout = html.Div( @@ -135,14 +119,3 @@ def networkx_component(company_id: int): ) return layout -# callback( -# Output("my-graph", "figure", allow_duplicate=True), -# [Input("EGDE_VAR", "value")], -# prevent_initial_call=True, -# ) -# def update_output() -> None: -# return networkGraph() - - -# if __name__ == "__main__": -# app.run(debug=True) diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index ad0489b..b8200df 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -4,9 +4,10 @@ from dash import html import pandas as pd import networkx as nx import plotly.graph_objects as go -from dash import Dash, Input, Output, dcc, html, callback +from dash import Dash, Input, Output, dcc, html, callback, dash_table from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider from aki_prj23_transparenzregister.utils.sql import connector, entities +from aki_prj23_transparenzregister.utils.networkx.networkx_data import find_top_companies, find_all_company_relations dash.register_page( __name__, @@ -20,37 +21,6 @@ dash.register_page( ], ) -def find_all_company_relations() -> pd.DataFrame: - session = connector.get_session(JsonFileConfigProvider("./secrets.json")) - query_companies = session.query(entities.Company) #.all() - query_relations = session.query(entities.CompanyRelation) # .all() - - companies_df: pd.DataFrame = pd.read_sql(str(query_companies), session.bind) # type: ignore - companies_relations_df: pd.DataFrame = pd.read_sql(str(query_relations), session.bind) # type: ignore - # print(companies_relations_df) - companies_relations_df = companies_relations_df[["relation_id","company_relation_company2_id"]] - # print(companies_relations_df) - company_name = [] - connected_company_name = [] - - companies_relations_df = companies_relations_df.head() - # print(companies_relations_df) - - for _, row in companies_relations_df.iterrows(): - # print(companies_df.loc[companies_df["company_id"] == row["relation_id"]]["company_name"].values[0]) - # print("TEst") - company_name.append(companies_df.loc[companies_df["company_id"] == row["relation_id"]]["company_name"].values[0]) - - connected_company_name.append(companies_df.loc[companies_df["company_id"] == row["company_relation_company2_id"]]["company_name"].values[0]) - # print(connected_company_name) - - # print(company_name) - companies_relations_df["company_name"] = company_name - companies_relations_df["connected_company_name"] = connected_company_name - # print("Test") - # print(companies_relations_df) - return companies_relations_df - # Plotly figure def networkGraph(EGDE_VAR: None) -> go.Figure: # find_all_company_relations() @@ -58,10 +28,6 @@ def networkGraph(EGDE_VAR: None) -> go.Figure: edges = [] for index, row in find_all_company_relations().iterrows(): edges.append([row["company_name"], row["connected_company_name"]]) - # print(row["company_name"], row["connected_company_name"]) - # print(edges) - # edges = df[["relation_id","company_relation_company2_id"]] - # edges = [[EGDE_VAR, "B"], ["B", "C"], ["B", "D"]] network_graph = nx.Graph() network_graph.add_edges_from(edges) pos = nx.spring_layout(network_graph) @@ -154,14 +120,7 @@ def networkGraph(EGDE_VAR: None) -> go.Figure: # figure return go.Figure(data=[edge_trace, node_trace], layout=layout) - -# Dash App - - -# app = Dash(__name__) - -# app.title = "Dash Networkx" - +df = find_top_companies() layout = html.Div( children = html.Div( @@ -169,12 +128,14 @@ layout = html.Div( html.Div( className="top_companytable_style", children=[ - html.I("Write your EDGE_VAR") + html.I("Write your EDGE_VAR"), + dash_table.DataTable(df.to_dict('records'), [{"name": i, "id": i} for i in df.columns]) ] ), html.Div( className="networkx_style", children=[ + dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='demo-dropdown'), html.I("Write your EDGE_VAR"), html.Br(), # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='metric-dropdown'), @@ -193,4 +154,5 @@ layout = html.Div( [Input("EGDE_VAR", "value")], ) def update_output(EGDE_VAR: None) -> None: + find_top_companies() return networkGraph(EGDE_VAR) \ No newline at end of file diff --git a/src/aki_prj23_transparenzregister/utils/networkx/__init__.py b/src/aki_prj23_transparenzregister/utils/networkx/__init__.py new file mode 100644 index 0000000..4d6d454 --- /dev/null +++ b/src/aki_prj23_transparenzregister/utils/networkx/__init__.py @@ -0,0 +1 @@ +"""Everything regarding data extraction for NetworkX Graphs.""" diff --git a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py new file mode 100644 index 0000000..4fe3c0e --- /dev/null +++ b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py @@ -0,0 +1,48 @@ +from aki_prj23_transparenzregister.utils.sql import connector, entities +from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider +import pandas as pd + +def find_all_company_relations() -> pd.DataFrame: + """_summary_ + + Returns: + pd.DataFrame: _description_ + """ + session = connector.get_session(JsonFileConfigProvider("./secrets.json")) + query_companies = session.query(entities.Company) #.all() + query_relations = session.query(entities.CompanyRelation) # .all() + + companies_df: pd.DataFrame = pd.read_sql(str(query_companies), session.bind) # type: ignore + companies_relations_df: pd.DataFrame = pd.read_sql(str(query_relations), session.bind) # type: ignore + companies_relations_df = companies_relations_df[["relation_id","company_relation_company2_id"]] + company_name = [] + connected_company_name = [] + + companies_relations_df = companies_relations_df.head() + + for _, row in companies_relations_df.iterrows(): + company_name.append(companies_df.loc[companies_df["company_id"] == row["relation_id"]]["company_name"].values[0]) + connected_company_name.append(companies_df.loc[companies_df["company_id"] == row["company_relation_company2_id"]]["company_name"].values[0]) + + companies_relations_df["company_name"] = company_name + companies_relations_df["connected_company_name"] = connected_company_name + + return companies_relations_df + +def find_top_companies() -> pd.DataFrame: + """_summary_ + + Returns: + pd.DataFrame: _description_ + """ + session = connector.get_session(JsonFileConfigProvider("./secrets.json")) + query_companies = session.query(entities.Company) #.all() + + companies_df: pd.DataFrame = pd.read_sql(str(query_companies), session.bind) # type: ignore + companies_df = companies_df.head() + companies_df = companies_df[["company_name"]] + companies_df["Platzierung"] = [1,2,3,4,5] + companies_df["Umsatz M€"] = [1,2,3,4,5] + companies_df = companies_df[['Platzierung', 'company_name', 'Umsatz M€']] + print(companies_df) + return companies_df \ No newline at end of file From b9e9475050e3723021114b38164d32aed6fbde74 Mon Sep 17 00:00:00 2001 From: Tim Date: Sat, 30 Sep 2023 10:38:38 +0200 Subject: [PATCH 04/36] added networkX styling --- .../ui/assets/networkx_style.css | 1 + src/aki_prj23_transparenzregister/ui/pages/home.py | 8 ++++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/src/aki_prj23_transparenzregister/ui/assets/networkx_style.css b/src/aki_prj23_transparenzregister/ui/assets/networkx_style.css index aaf5f34..5e49be9 100644 --- a/src/aki_prj23_transparenzregister/ui/assets/networkx_style.css +++ b/src/aki_prj23_transparenzregister/ui/assets/networkx_style.css @@ -3,6 +3,7 @@ margin-top: 20px; margin-left: 20px; border: 1px solid; + border-color: blue; width: 45%; height: 500px; } diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index b8200df..61fd8c4 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -128,18 +128,18 @@ layout = html.Div( html.Div( className="top_companytable_style", children=[ - html.I("Write your EDGE_VAR"), + html.Title(title="Top Ten Unternehmen", style={"align": "mid"}), dash_table.DataTable(df.to_dict('records'), [{"name": i, "id": i} for i in df.columns]) ] ), html.Div( className="networkx_style", children=[ + html.Header(title="Social Graph"), dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='demo-dropdown'), - html.I("Write your EDGE_VAR"), - html.Br(), - # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='metric-dropdown'), + "Text", dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), + # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='metric-dropdown'), dcc.Graph(id="my-graph"), ] ) From af0578bb0038ed72dce40fc6ea1437656eb27070 Mon Sep 17 00:00:00 2001 From: TrisNol Date: Sat, 30 Sep 2023 13:44:16 +0200 Subject: [PATCH 05/36] feat: NetworkX in Plotly Dash --- .../ui/assets/network_graph.html | 272 ++++++++ .../ui/pages/home.py | 79 ++- .../utils/networkx/Dev.ipynb | 645 ++++++++++++++++++ .../utils/networkx/network_graph.html | 272 ++++++++ .../utils/networkx/tmp.html | 272 ++++++++ 5 files changed, 1507 insertions(+), 33 deletions(-) create mode 100644 src/aki_prj23_transparenzregister/ui/assets/network_graph.html create mode 100644 src/aki_prj23_transparenzregister/utils/networkx/Dev.ipynb create mode 100644 src/aki_prj23_transparenzregister/utils/networkx/network_graph.html create mode 100644 src/aki_prj23_transparenzregister/utils/networkx/tmp.html diff --git a/src/aki_prj23_transparenzregister/ui/assets/network_graph.html b/src/aki_prj23_transparenzregister/ui/assets/network_graph.html new file mode 100644 index 0000000..d8a61cf --- /dev/null +++ b/src/aki_prj23_transparenzregister/ui/assets/network_graph.html @@ -0,0 +1,272 @@ + + + + + + + + + +
+

+
+ + + + + + +
+

+
+ + + + + +
+ + +
+
+ + +
+
+
0%
+
+
+
+
+
+ + +
+ + + + + diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index 61fd8c4..18fa631 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -1,13 +1,14 @@ """Content of home page.""" import dash -from dash import html -import pandas as pd import networkx as nx +import pandas as pd import plotly.graph_objects as go -from dash import Dash, Input, Output, dcc, html, callback, dash_table -from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider -from aki_prj23_transparenzregister.utils.sql import connector, entities -from aki_prj23_transparenzregister.utils.networkx.networkx_data import find_top_companies, find_all_company_relations +from dash import Input, Output, callback, html + +from aki_prj23_transparenzregister.utils.networkx.networkx_data import ( + find_all_company_relations, + find_top_companies, +) dash.register_page( __name__, @@ -21,10 +22,11 @@ dash.register_page( ], ) + # Plotly figure def networkGraph(EGDE_VAR: None) -> go.Figure: # find_all_company_relations() - + edges = [] for index, row in find_all_company_relations().iterrows(): edges.append([row["company_name"], row["connected_company_name"]]) @@ -92,12 +94,11 @@ def networkGraph(EGDE_VAR: None) -> go.Figure: "mirror": True, }, } - + print(nx.eigenvector_centrality(network_graph)) measure_vector = {} network_metrics_df = pd.DataFrame() - measure_vector = nx.eigenvector_centrality(network_graph) network_metrics_df["eigenvector"] = measure_vector.values() @@ -120,31 +121,43 @@ def networkGraph(EGDE_VAR: None) -> go.Figure: # figure return go.Figure(data=[edge_trace, node_trace], layout=layout) + df = find_top_companies() +with open("src/aki_prj23_transparenzregister/ui/assets/network_graph.html") as file: + html_content = file.read() + + layout = html.Div( - - children = html.Div( - children=[ - html.Div( - className="top_companytable_style", - children=[ - html.Title(title="Top Ten Unternehmen", style={"align": "mid"}), - dash_table.DataTable(df.to_dict('records'), [{"name": i, "id": i} for i in df.columns]) - ] - ), - html.Div( - className="networkx_style", - children=[ - html.Header(title="Social Graph"), - dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='demo-dropdown'), - "Text", - dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), - # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='metric-dropdown'), - dcc.Graph(id="my-graph"), - ] - ) - ] - ) + children=[ + # NOTE lib dir created by NetworkX has to be placed in assets + html.Iframe( + src="assets/network_graph.html", + style={"height": "100vh", "width": "100vw"}, + allow="*", + ) + ] + # children = html.Div( + # children=[ + # html.Div( + # className="top_companytable_style", + # children=[ + # html.Title(title="Top Ten Unternehmen", style={"align": "mid"}), + # dash_table.DataTable(df.to_dict('records'), [{"name": i, "id": i} for i in df.columns]) + # ] + # ), + # html.Div( + # className="networkx_style", + # children=[ + # html.Header(title="Social Graph"), + # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='demo-dropdown'), + # "Text", + # dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), + # # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='metric-dropdown'), + # dcc.Graph(id="my-graph"), + # ] + # ) + # ] + # ) ) @@ -155,4 +168,4 @@ layout = html.Div( ) def update_output(EGDE_VAR: None) -> None: find_top_companies() - return networkGraph(EGDE_VAR) \ No newline at end of file + return networkGraph(EGDE_VAR) diff --git a/src/aki_prj23_transparenzregister/utils/networkx/Dev.ipynb b/src/aki_prj23_transparenzregister/utils/networkx/Dev.ipynb new file mode 100644 index 0000000..6d3b746 --- /dev/null +++ b/src/aki_prj23_transparenzregister/utils/networkx/Dev.ipynb @@ -0,0 +1,645 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "from aki_prj23_transparenzregister.utils.sql import connector, entities\n", + "from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider\n", + "import pandas as pd" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "\u001b[32m2023-09-30 13:33:34.846\u001b[0m | \u001b[34m\u001b[1mDEBUG \u001b[0m | \u001b[36maki_prj23_transparenzregister.utils.sql.connector\u001b[0m:\u001b[36mget_session\u001b[0m:\u001b[36m64\u001b[0m - \u001b[34m\u001b[1mConnection definition: Postgre configuration: username: postgres, password d7fd8b09788c6787d4d0aa9e549e467d, host 172.17.38.210:30432, database db_tim., Mongo configuration: username: aki_transparenzregister, password ZOh0f2KFtJXjTgBD, host stagingdbtransparenzreg.ioappzs.mongodb.net/:None, database transparenzregister.\u001b[0m\n" + ] + } + ], + "source": [ + "session = connector.get_session(JsonFileConfigProvider(\"../../../../secrets.json\"))\n", + "query_companies = session.query(entities.Company) # .all()\n", + "query_relations = session.query(entities.CompanyRelation) # .all()\n", + "\n", + "companies_df: pd.DataFrame = pd.read_sql(str(query_companies), session.bind) # type: ignore\n", + "companies_relations_df: pd.DataFrame = pd.read_sql(str(query_relations), session.bind) # type: ignore" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
company_idcompany_hrcompany_court_idcompany_namecompany_streetcompany_zip_codecompany_citycompany_last_updatecompany_sector
01HRB 14804810 10 24 Telefondienste GmbHDeelbögenkamp22297Hamburg2020-05-11None
12HRA 30111421. Staiger Grundstücksverwaltung GmbH & Co. KGJohannes-Bieg-Str.874391Erligheim2020-05-04None
23HRA 72001531 A Autenrieth Kunststofftechnik GmbH & Co. KGGewerbestraße72535Heroldstatt2016-08-23None
34HRB 97262101050.com GmbHDeelbögenkamp22297Hamburg2020-05-13None
45HRA 1761742. Schaper Objekt GmbH & Co. Kiel KGMetro-Straße40235Düsseldorf2021-05-27None
..............................
31423143HRB 1387458WINGAS Holding GmbHKönigstor34117Kassel2023-03-28None
31433144HRB 715914WohnServicePlus GmbHFlughafenstraße40474Düsseldorf2022-03-29None
31443145HRB 5297102Wohnungsbaugesellschaft mit beschränkter Haftu...Taubenstraße47443Moers2022-02-16None
31453146HRA 48546 B12Zalando Customer Care International SE & Co. KGMühlenstraße10243Berlin2021-11-26None
31463147HRB 3820189zebotec GmbHAugust-Borsig-Straße78467Konstanz2021-12-15None
\n", + "

3147 rows × 9 columns

\n", + "
" + ], + "text/plain": [ + " company_id company_hr company_court_id \\\n", + "0 1 HRB 148048 1 \n", + "1 2 HRA 301114 2 \n", + "2 3 HRA 720015 3 \n", + "3 4 HRB 97262 1 \n", + "4 5 HRA 17617 4 \n", + "... ... ... ... \n", + "3142 3143 HRB 13874 58 \n", + "3143 3144 HRB 71591 4 \n", + "3144 3145 HRB 5297 102 \n", + "3145 3146 HRA 48546 B 12 \n", + "3146 3147 HRB 382018 9 \n", + "\n", + " company_name company_street \\\n", + "0 0 10 24 Telefondienste GmbH Deelbögenkamp \n", + "1 1. Staiger Grundstücksverwaltung GmbH & Co. KG Johannes-Bieg-Str.8 \n", + "2 1 A Autenrieth Kunststofftechnik GmbH & Co. KG Gewerbestraße \n", + "3 01050.com GmbH Deelbögenkamp \n", + "4 2. Schaper Objekt GmbH & Co. Kiel KG Metro-Straße \n", + "... ... ... \n", + "3142 WINGAS Holding GmbH Königstor \n", + "3143 WohnServicePlus GmbH Flughafenstraße \n", + "3144 Wohnungsbaugesellschaft mit beschränkter Haftu... Taubenstraße \n", + "3145 Zalando Customer Care International SE & Co. KG Mühlenstraße \n", + "3146 zebotec GmbH August-Borsig-Straße \n", + "\n", + " company_zip_code company_city company_last_update company_sector \n", + "0 22297 Hamburg 2020-05-11 None \n", + "1 74391 Erligheim 2020-05-04 None \n", + "2 72535 Heroldstatt 2016-08-23 None \n", + "3 22297 Hamburg 2020-05-13 None \n", + "4 40235 Düsseldorf 2021-05-27 None \n", + "... ... ... ... ... \n", + "3142 34117 Kassel 2023-03-28 None \n", + "3143 40474 Düsseldorf 2022-03-29 None \n", + "3144 47443 Moers 2022-02-16 None \n", + "3145 10243 Berlin 2021-11-26 None \n", + "3146 78467 Konstanz 2021-12-15 None \n", + "\n", + "[3147 rows x 9 columns]" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "companies_df" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "def to_dict(data: object):\n", + " return data.__dict__" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'company_1': {'label': '0 10 24 Telefondienste GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_1': {'label': 'Tetau, Nicolas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_2': {'label': 'Dammast, Lutz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_2': {'label': '1. Staiger Grundstücksverwaltung GmbH & Co. KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_3': {'label': 'Tutsch, Rosemarie', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_4': {'label': 'Staiger, Marc', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_5': {'label': 'Staiger, Michaela', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_6': {'label': 'Staiger, Margarete', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_7': {'label': 'Staiger, Bruno', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_8': {'label': 'Hofmann, Nicole', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_3': {'label': '1 A Autenrieth Kunststofftechnik GmbH & Co. KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_9': {'label': 'Autenrieth, Steffen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_10': {'label': 'Bischoff, Stefanie', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_4': {'label': '01050.com GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_5': {'label': '2. Schaper Objekt GmbH & Co. Kiel KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_2213': {'label': 'Multi-Center Warenvertriebs GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_6': {'label': 'AASP Filmproduktionsgesellschaft mbH & Co. Leonie KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_11': {'label': 'Achilles, Christel', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_12': {'label': 'Ackermann, Wilhelm', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_13': {'label': 'Ahrens, Harald', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_14': {'label': 'Al Sibai, Mohamed Maged', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_15': {'label': 'Al-Bazaz, Salim', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_16': {'label': 'Attawar, Marina', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_17': {'label': 'Babic-Pavicic, Ankica', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_18': {'label': 'Bak, Ingo', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_19': {'label': 'Becker, Christoph', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_20': {'label': 'Becker, Olaf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_21': {'label': 'Berg, Rainer', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_22': {'label': 'Berkhout, Pieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_23': {'label': 'Berns, Bernhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_24': {'label': 'Betz, Franz-Hartwig', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_25': {'label': 'Birken, Claus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_26': {'label': 'Blessing, Helmut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_27': {'label': 'Bohnet, Heinz G.', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_28': {'label': 'Boldt, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_29': {'label': 'Bone-Winkel, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_30': {'label': 'Bongartz, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_31': {'label': 'Bongartz, Heinz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_32': {'label': 'Brasse, Hans-Dieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_33': {'label': 'Breman, Frank', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_34': {'label': 'Bremer, Harald C. H.', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_35': {'label': 'Bruns, Franz-Josef', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_36': {'label': 'Busch jun., Norbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_37': {'label': 'Butter, Georg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_38': {'label': 'Butz-Scharf, Kerstin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_39': {'label': 'Bös, Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_40': {'label': 'Canis, Volker', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_41': {'label': 'Comberg, Alfred', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_42': {'label': 'de las Heras, Günther', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_43': {'label': 'Delkeskamp, Claus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_44': {'label': 'Delkeskamp, Stefan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_45': {'label': 'Delkeskamp, Susanne', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_46': {'label': 'Dellhofen, Jens', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_47': {'label': 'Demler, Hans Adolf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_48': {'label': 'Dimitrov, Rumen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_49': {'label': 'Dittmann, Steffen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_50': {'label': 'Dohmen, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_51': {'label': 'Dornieden, Ulrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_52': {'label': 'Dorsch, Andreas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_53': {'label': 'Dutsch, Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_54': {'label': 'Dückerhoff, Helmut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_55': {'label': 'Eckhard, Matthias', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_56': {'label': 'Erren, Walter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_57': {'label': 'Esch, Hans', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_58': {'label': 'Ewald, Bettina', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_59': {'label': 'Ewald, Hans Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_60': {'label': 'Feindt, Helmut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_61': {'label': 'Fleischhut, Jochen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_62': {'label': 'Franke, Jochen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_63': {'label': 'Frey, Bruno', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_64': {'label': 'Fricke, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_65': {'label': 'Friedrichsen, Volker', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_66': {'label': 'Frotz, Hans', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_67': {'label': 'Gabrys, Gregor', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_68': {'label': 'Gann, Horst', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_69': {'label': 'Gassner, Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_70': {'label': 'Gebhardt, Brunhild', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_71': {'label': 'Gerhartz, Peter J.', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_72': {'label': 'Gerten, Georg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_73': {'label': 'Glatzel, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_74': {'label': 'Gorissen, Reinhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_75': {'label': 'Großkreutz, Axel', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_76': {'label': 'Grünke, Friedrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_77': {'label': 'Göhringer, Günther', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_78': {'label': 'Haar, Klaus-Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_79': {'label': 'Hamann, Knud', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_80': {'label': 'Hansen, Joachim', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_81': {'label': 'Haueisen, Bernd', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_82': {'label': 'Haug, Arthur', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_83': {'label': 'Hebeler, Robert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_84': {'label': 'Hefehäuser, Hans Willi', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_85': {'label': 'Heft, Frank', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_86': {'label': 'Helmig, Werner Dieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_87': {'label': 'Helmig, Ursula', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_88': {'label': 'Helmig, Markus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_89': {'label': 'Hemmelgarn, Udo', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_90': {'label': 'Hess, Kurt', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_91': {'label': 'Heyser, Sylvia', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_92': {'label': 'Hiebel, Joachim', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_93': {'label': 'Hilgers, Benno J.', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_94': {'label': 'Hottner, Rainer', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_95': {'label': 'Hunert, Horst', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_96': {'label': 'Hölker, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_97': {'label': 'Höne, Heinz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_98': {'label': 'Hötte, Josef', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_99': {'label': 'Hübner, Detlef W.', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_100': {'label': 'Jochheim, Sabine', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_101': {'label': 'Joenck, Uwe', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_102': {'label': 'Jürgens, Christian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_103': {'label': 'Kabel, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_104': {'label': 'Kahler, Wilhelm', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_105': {'label': 'Kalweit, Alma', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_106': {'label': 'Kamrath, Franz-Josef', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_107': {'label': 'Kaul, Gerd', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_108': {'label': 'Kemper, Kurt', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_109': {'label': 'Kerpen, Hans-Günther', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_110': {'label': 'Kerpen, Edith', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_111': {'label': 'Klein, Manfred', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_112': {'label': 'Klöcker, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_113': {'label': 'Kockskaemper, Andreas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_114': {'label': 'Konopka, Reiner', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_115': {'label': 'Koppe, Heinz-Dieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_116': {'label': 'Kotobi, Nasir', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_117': {'label': 'Kramer, Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_118': {'label': 'Krause, Hermann', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_119': {'label': 'Kross, Klaus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_120': {'label': 'Krätzig, Bernhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_121': {'label': 'Kunze, Stephan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_122': {'label': 'Kurzke, Robert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_123': {'label': 'Köll, Jens Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_124': {'label': 'Langenberger, Barbara', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_125': {'label': 'Lehnen, Monika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_126': {'label': 'Lehnert, Fred', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_127': {'label': 'Lempka, Herbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_128': {'label': 'Leyhausen, Rudolf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_129': {'label': 'Leyhausen, Rolf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_130': {'label': 'Lindenblatt, Ekkehard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_131': {'label': 'Lubach, Dietrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_132': {'label': 'Luksch, Helmut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_133': {'label': 'Luserke, Edith', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_134': {'label': 'Löser, Volker', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_135': {'label': 'Löwe, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_136': {'label': 'Lühe, Erik', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_137': {'label': 'Lüke, Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_138': {'label': 'Machill, Josef', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_139': {'label': 'Maier, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_140': {'label': 'Mann, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_141': {'label': 'Mattern, Coletta', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_142': {'label': 'Matuk, Zein-El Ibad', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_143': {'label': 'Maurer, Manfred', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_144': {'label': 'Mayer, Dieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_145': {'label': 'Melcher, Herbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_146': {'label': 'Meyer, Andrea', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_147': {'label': 'Milde, Rolf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_148': {'label': 'Mirgel, Gerd', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_149': {'label': 'Mohrenweis, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_150': {'label': 'Moosecker, Karlheinz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_151': {'label': 'Morbitzer, Holger', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_152': {'label': 'Morgenstern, Erika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_153': {'label': 'Munsche, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_154': {'label': 'Männlein, Ralf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_155': {'label': 'Möller, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_156': {'label': 'Müller-Methling, Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_157': {'label': 'Nagel, Klaus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_158': {'label': 'Neumann, Rainer', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_159': {'label': 'Neumann, Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_160': {'label': 'Nicklas, Ann', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_161': {'label': 'Niederschuh, Gerd', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_162': {'label': 'Nill, Axel', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_163': {'label': 'Nonhoff, Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_164': {'label': 'Oberheiden, Ralf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_165': {'label': 'Ortmeier, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_166': {'label': 'Otto, Andreas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_167': {'label': 'Paschedag, Dieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_168': {'label': 'Paulus, Alexander F.', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_169': {'label': 'Pawlitzek, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_170': {'label': 'Peitz, Gregor', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_171': {'label': 'Pennekamp, Richard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_172': {'label': 'Platt, Norbert A.', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_173': {'label': 'Platzgummer, Günther', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_174': {'label': 'Plüth, Klaus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_175': {'label': 'Pohle, Klaus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_176': {'label': 'Polzar, Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_177': {'label': 'Pütter, Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_178': {'label': 'Quasdorf, Lutz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_179': {'label': 'Raba, Manfred', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_180': {'label': 'Reitz, Ulrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_181': {'label': 'Richter, Doris', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_182': {'label': 'Rieth, Albrecht', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_183': {'label': 'Rixen, Edgar', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_184': {'label': 'Rudolf, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_185': {'label': 'Ryll, Malte', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_186': {'label': 'Rösing, Hubert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_187': {'label': 'Saur, Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_188': {'label': 'Scheerer, Manfred', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_189': {'label': 'Scherberich, Georg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_190': {'label': 'Schieren, Herbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_191': {'label': 'Schlegel, Gottfried', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_192': {'label': 'Schlenkhoff, Heinrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_193': {'label': 'Schlüter, Inge', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_194': {'label': 'Schlüter, Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_195': {'label': 'Schmidt, Anett', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_196': {'label': 'Schmidt, Christian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_197': {'label': 'Schmitz, Dieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_198': {'label': 'Schnabel, Helmut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_199': {'label': 'Schnüpke, Gabriele', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_200': {'label': 'Scholten, Rainer', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_201': {'label': 'Schorn, Herbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_202': {'label': 'Schulz, Georg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_203': {'label': 'Schunck, Jacqueline', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_204': {'label': 'Schunck, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_205': {'label': 'Schwarz, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_206': {'label': 'Schwarzer, Bernd', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_207': {'label': 'Schäffner, Volker', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_208': {'label': 'Sester, Robert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_209': {'label': 'Sibbert, Dieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_210': {'label': 'Siebert, Helmut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_211': {'label': 'Siekmann, Tan Kai Pascal', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_212': {'label': 'Skorupka, Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_213': {'label': 'Snoek, Hendrik', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_214': {'label': 'Sodan, Helge', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_215': {'label': 'Stegemann, Frank', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_216': {'label': 'Steglich, Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_217': {'label': 'Steimers, Detlev', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_218': {'label': 'Steinau, Frank', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_219': {'label': 'Steinrücke, Egbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_220': {'label': 'Steins, Ralph', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_221': {'label': 'Stendel, Bodo', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_222': {'label': 'Strathausen, Franz-Josef', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_223': {'label': 'Streitenfeld, Hansjörg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_224': {'label': 'Ströher, Immo', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_225': {'label': 'Thomas, Kurt', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_226': {'label': 'Tiemstra, Jan S. T.', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_227': {'label': 'Tigges, Joachim', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_228': {'label': 'Trautwein, Bärbel', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_229': {'label': 'Uhle, Frank', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_230': {'label': 'Ulrich, Klaus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_231': {'label': 'v. Lindeiner-Wildau, Dirk', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_232': {'label': 'van Lengerich, Marie-Luise', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_233': {'label': 'Vankadari, Vijaykumar', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_234': {'label': 'Vierwind, Johannes', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_235': {'label': 'Vogel, Reiner', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_236': {'label': 'Vogt, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_237': {'label': 'von Westphalen, Johannes', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_238': {'label': 'Voß, Martin A.', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_239': {'label': 'Weitz, Gunnar', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_240': {'label': 'Weiß, Claudia', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_241': {'label': 'Wentzel, Wilfried', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_242': {'label': 'Werner, Christian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_243': {'label': 'Werner, Holger', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_244': {'label': 'Wicht, Holger', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_245': {'label': 'Wickop, Günter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_246': {'label': 'Wieland, Susanne', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_247': {'label': 'Williams, Christopher John', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_248': {'label': 'Windelband, Magrit', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_249': {'label': 'Winter, Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_250': {'label': 'Wippel, Steffen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_251': {'label': 'Wittkuhn, Thorsten', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_252': {'label': 'Wohlgemuth, Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_253': {'label': 'Wohlgemuth, Marlies', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_254': {'label': 'Wohlmann, Susanne', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_255': {'label': 'Wolff, Felix', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_256': {'label': 'Wolfram, Hans-Joachim', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_257': {'label': 'Woort-Menker, Maria', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_258': {'label': 'Wust, Heinz-Georg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_259': {'label': 'Zastrow, Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_260': {'label': 'Ziegler, Erwin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_261': {'label': 'Zumegen, Uwe', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_262': {'label': 'Kleinschmitt, Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_263': {'label': 'Hinrichs, Maritta Helene Minna', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_264': {'label': 'Tewes-Diehl, Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_265': {'label': 'Tewes-Diehl, Berthold', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_266': {'label': 'Münch, Fabian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_267': {'label': 'Huther, Anabel', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_268': {'label': 'Laiso, Dario', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_269': {'label': 'Al Romhein, Philip', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_270': {'label': 'Weghmann, Victoria', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_271': {'label': 'Weghmann, Vincent', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_272': {'label': 'Pitzer, Evelin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_273': {'label': 'Wermers, Thorsten', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_274': {'label': 'Werner, Isabel', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_275': {'label': 'Albrecht, Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_276': {'label': 'Reichert, Thilo', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_277': {'label': 'Zeidler, Toni Christov', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_278': {'label': 'Albers, Franziska', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_279': {'label': 'Albers, Matthias', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_7': {'label': 'AgroMyc-Merck GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_280': {'label': 'Leder, Mike', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_8': {'label': 'August Schäffler Verwaltungs GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_281': {'label': 'Schäffler, August', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_282': {'label': 'Schäffler, Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_9': {'label': 'AURELIUS Advisory AG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_283': {'label': 'Hartmann, Anke', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_284': {'label': 'Winkel, Florian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_10': {'label': 'AURELIUS Development Fourty-One GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_285': {'label': 'Depken, Ekhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_11': {'label': 'AURELIUS Development Thirty-Four GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_12': {'label': 'Aurelius Immo GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_286': {'label': 'Groenewold, Kurt', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_287': {'label': 'Moysich, Leila', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_13': {'label': 'Aurelius Ulmenhof GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_14': {'label': '1&1 De-Mail GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_288': {'label': 'Oetjen, Jan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_289': {'label': 'Ludwig, Thomas Matthias', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_290': {'label': 'Charles, Alexander Guy', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_291': {'label': 'Kraft, Dana Monika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_15': {'label': '1&1 Mail & Media Applications SE', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_292': {'label': 'Giese, Rasmus Jonathan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_16': {'label': '1&1 Telecommunication SE', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_293': {'label': 'Huhn, Markus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_294': {'label': 'Nava, Alessandro', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_295': {'label': 'Henkel, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_296': {'label': 'Harries, Robin John Andes', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_297': {'label': 'Brandsma, Cretièn René Gilbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_298': {'label': 'Martin, Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_299': {'label': 'Goebel, Sebastian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_300': {'label': 'Bockelt, Christian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_301': {'label': 'D´Avis, Sascha', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_17': {'label': '1&1 Telecom Service Montabaur GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_302': {'label': 'Koch, Tobias', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_303': {'label': \"D'Avis, Sascha\", 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_18': {'label': 'A 1 Marketing, Kommunikation und neue Medien GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_304': {'label': 'Dommermuth, Ralph', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_19': {'label': 'Admenta Deutschland GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_305': {'label': 'Köster, Tilo', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_306': {'label': 'Jipa, Simona-Lucia', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_20': {'label': 'AKF Bau UG (haftungsbeschränkt)', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_307': {'label': 'Kohlkopf, Andreas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_21': {'label': 'Albert Henkel Verwaltungs-GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_308': {'label': 'Henkel, Werner', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_309': {'label': 'Wider, Roswitha', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_310': {'label': 'Wider, Brigitte', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_22': {'label': 'Ampero GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_311': {'label': 'Methe, Max', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_312': {'label': 'Bittkau, Tobias', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_313': {'label': 'Joas, Philipp', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_23': {'label': 'ATESTEO Beteiligungs GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_314': {'label': 'Schaeffler, Georg F.W.', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_315': {'label': 'Schaeffler, Maria-Elisabeth', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_316': {'label': 'Rosenfeld, Klaus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_317': {'label': 'Zech, Alexandra', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_24': {'label': 'Auda EnBW MA Initiatoren GmbH & Co. KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_318': {'label': 'Wunderlin, Georg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_319': {'label': 'Sradj, Salem Daniel', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_320': {'label': 'Knöfler, Patrick', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_321': {'label': 'Lindhorst, Britta', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_322': {'label': 'von Sydow, Ferdinand', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_323': {'label': 'Hyun, You-Ha', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_324': {'label': 'Börsing, Nico-David', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_325': {'label': 'Dimmerling, Heiko', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_326': {'label': 'Fischer, Lucas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_25': {'label': 'AURELIUS Development Eleven GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_26': {'label': 'AURELIUS Development Fifteen GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_27': {'label': 'AURELIUS Development Thirty-Two GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_28': {'label': 'Aurelius Invest UG (haftungsbeschränkt)', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_327': {'label': 'Dinse, Stephan Maximilian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_29': {'label': 'AEMtec GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_328': {'label': 'Trommershausen, Jan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_329': {'label': 'John, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_330': {'label': 'Schüler, René', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_331': {'label': 'Giertz, Robert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_30': {'label': 'AIB Verwaltungs GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_332': {'label': 'Bauer, Torsten', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_333': {'label': 'Steinert, Oliver', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_334': {'label': 'Gatzki, Christian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_335': {'label': 'Altmeyer, Eric', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_336': {'label': 'Fischer, Jochen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_337': {'label': 'Hirth, Ludwig Bernhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_31': {'label': 'AK-ON Haustechnik e.K. Inh. Musa Akkaya', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_338': {'label': 'Akkaya, Musa', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_32': {'label': 'Alb-Windkraft GmbH & Co. KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_339': {'label': 'Amann, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_340': {'label': 'Autenrieth, Erika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_341': {'label': 'Baberowski, Anita', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_342': {'label': 'Bergner, Dietmar', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_343': {'label': 'Bosch, Johannes', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_344': {'label': 'Bosch, Friedrich-Karl', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_345': {'label': 'Braig, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_346': {'label': 'Braig, Brigitte', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_347': {'label': 'Burger, Christa', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_348': {'label': 'Burk, Günther', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_349': {'label': 'Dursch, Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_350': {'label': 'Ebner, Sieglinde', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_351': {'label': 'Ehmer, Gisela', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_352': {'label': 'Erhardt, Rolf-Heinrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_353': {'label': 'Fink, Katrin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_354': {'label': 'Flogaus, Heinz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_355': {'label': 'Geiger, Hans-Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_356': {'label': 'Geiger, Walter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_357': {'label': 'Göggelmann, Walter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_358': {'label': 'Grieser, Elfriede', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_359': {'label': 'Grupp, Rudi', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_360': {'label': 'Häcker, Alfred', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_361': {'label': 'Hagmeyer, Manfred', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_362': {'label': 'Harder, Walter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_363': {'label': 'Hassler, Georg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_364': {'label': 'Heck, Erich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_365': {'label': 'Herr, Melita', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_366': {'label': 'Hettinger, Rolf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_367': {'label': 'Hieber, Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_368': {'label': 'Hofelich, Klaus-Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_369': {'label': 'Hofelich, Günther', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_370': {'label': 'Hößle, Hermann', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_371': {'label': 'Jäger, Manfred', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_372': {'label': 'Kammer, Karl', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_373': {'label': 'Keller, Reiner', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_374': {'label': 'Klumpp, Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_375': {'label': 'Kohn, Hans', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_376': {'label': 'Kohn, Helene', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_377': {'label': 'Kohn, Hans', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_378': {'label': 'Krieger, Else', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_379': {'label': 'Kröner-Weber, Hanna', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_380': {'label': 'Kübler, Eugen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_381': {'label': 'Kübler, Eugen Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_382': {'label': 'Kukral, Sonja', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_383': {'label': 'Langenbacher, Ralf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_384': {'label': 'Lecjaks, Susanne', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_385': {'label': 'Lenz, Walter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_386': {'label': 'Link, Dieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_387': {'label': 'Lohrmann, Susanne', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_388': {'label': 'Mack, Richard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_389': {'label': 'Maier, Eugen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_390': {'label': 'Marchtaler, Andreas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_391': {'label': 'Maurer, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_392': {'label': 'Meyer, Werner', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_393': {'label': 'Moll, Iris', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_394': {'label': 'Mössmer, Manfred', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_395': {'label': 'Neuburger, Rosemarie', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_396': {'label': 'Neuburger, Günter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_397': {'label': 'Neuburger, Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_398': {'label': 'Neulinger, Ralf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_399': {'label': 'Pfisterer, Norbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_400': {'label': 'Pollak, Margarete', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_401': {'label': 'Rapp, Alexander', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_402': {'label': 'Rapp, Eberhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_403': {'label': 'Reichart, Oliver', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_404': {'label': 'Renner, Achim', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_405': {'label': 'Riedlinger, Rolf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_406': {'label': 'Rinklin, Hubert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_407': {'label': 'Röcker, Klaus-Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_408': {'label': 'Röcker, Ute', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_409': {'label': 'Rommler, Josef', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_410': {'label': 'Rother, Walter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_411': {'label': 'Rother, Eva', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_412': {'label': 'Ruoff, Rudolf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_413': {'label': 'Sauer, Beate', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_414': {'label': 'Sauer, Winfried', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_415': {'label': 'Schabel, Wolf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_416': {'label': 'Scheible, Birgit', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_417': {'label': 'Scheible, Holger', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_418': {'label': 'Schidloch, Roland', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_419': {'label': 'Schied, Frank', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_420': {'label': 'Schied, Carla', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_421': {'label': 'Schlögl, Dietmar', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_422': {'label': 'Schmid, Max', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_423': {'label': 'Schüle, Beate', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_424': {'label': 'Schweizer, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_425': {'label': 'Seiz, Günter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_426': {'label': 'Seybold, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_427': {'label': 'Stanger, Lina', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_428': {'label': 'Stehle, Karl', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_429': {'label': 'Stelzer, Heike', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_430': {'label': 'Stolz, Raimund', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_431': {'label': 'Strobel, Regina', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_432': {'label': 'Ströhle, Marita', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_433': {'label': 'Thierer, Volker', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_434': {'label': 'Thierer, Christel', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_435': {'label': 'Walliser, Karl', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_436': {'label': 'Weber, Markus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_437': {'label': 'Wider, Rotraut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_438': {'label': 'Wölfle, Stephan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_439': {'label': 'Wuchenauer, Ralf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_440': {'label': 'Ziegler, Ernst', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_441': {'label': 'Ziegler, Karl', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_442': {'label': 'Ziegler, Walter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_443': {'label': 'Ziegler, Otmar', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_444': {'label': 'Ziegler, Adolf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_445': {'label': 'Kellner, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_446': {'label': 'Banzhaft, Ursula', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_447': {'label': 'Ströhle, Holger', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_448': {'label': 'Burger, Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_449': {'label': 'Stegmaier, Karlheinz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_450': {'label': 'Schlumpberger-Burger, Elke', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_451': {'label': 'Burkert, Jens', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_452': {'label': 'Ruoff, Elsbeth', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_453': {'label': 'Ruoff, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_454': {'label': 'Wanner, Georg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_455': {'label': 'Bollinger, Gudrun', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_456': {'label': 'Krätschmer, Gisela Melanie', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_457': {'label': 'Ruhland, Ilse', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_458': {'label': 'Schall, Lore', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_459': {'label': 'Kast, Gerlinde', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_460': {'label': 'Huber, Helmut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_461': {'label': 'Schmid, Georg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_462': {'label': 'Erb, Hilde', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_463': {'label': 'Prof. Dr. Mändle, Markus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_464': {'label': 'Maurer, Andrea Maria', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_465': {'label': 'Maurer, Hans Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_466': {'label': 'Gansloser, Christopher Kurt', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_467': {'label': 'Bosch, Anita Doris', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_468': {'label': 'Roller, Klaus-Helmut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_469': {'label': 'Bachmann-Bisle, Sabine', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_470': {'label': 'Bachmann, Hans-Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_471': {'label': 'Ohl, Hildegard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_472': {'label': 'Plicka, Brigitte', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_473': {'label': 'Ogger, Karl', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_474': {'label': 'Barth, Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_845': {'label': 'EnBW Windkraftprojekte GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_475': {'label': 'Schäch, Margarete', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_476': {'label': 'Werner, Annette', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_477': {'label': 'Maurer-Bisetti, Andrea', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_478': {'label': 'Thierer, Sarah-Yasmin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_479': {'label': 'Kruschina, Brigitte', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_480': {'label': 'Straub, Ulrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_481': {'label': 'Kumpf, Christoph Wilhelm Georg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_482': {'label': 'Hellstern, Waltraud Helene', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_483': {'label': 'Maurer, Hermann', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_484': {'label': 'Lederer, Beatrice Raphaela', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_485': {'label': 'Lederer, Stephanie Annette', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_486': {'label': 'Lederer, Ann-Catherine', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_487': {'label': 'Frey, Norbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_488': {'label': 'Trostel, Petra', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_489': {'label': 'Schimpf, Ellen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_490': {'label': 'Leitner, Petra', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_491': {'label': 'Pendic, Ute', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_492': {'label': 'Kruschina, Brigitte Monika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_493': {'label': 'Blessing, Karin Elke', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_494': {'label': 'Weiler, Hannelore', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_495': {'label': 'Thierer, Monika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_496': {'label': 'Lemke, Monika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_497': {'label': 'Rau, Adelheid', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_498': {'label': 'Hofelich, Günther Erwin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_499': {'label': 'Hofelich, Klaus Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_33': {'label': 'AL GRAMM GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_500': {'label': 'Gramm, Alexander Egon', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_34': {'label': 'Anneliese Köster GmbH & Co. KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_1903': {'label': 'INDUS Holding Aktiengesellschaft', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_35': {'label': 'ARKON Grundbesitzverwaltung GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_36': {'label': 'Aurelius Holding UG (haftungsbeschränkt)', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_501': {'label': 'Riener, Korbinian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_37': {'label': 'AURELIUS Investment Advisory AG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_502': {'label': 'Muth, Florian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_503': {'label': 'Albrecht, Donatus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_504': {'label': 'Wölfler, Franz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_38': {'label': '1&1 Mail & Media Development & Technology GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_39': {'label': '1&1 Telecom Holding GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_505': {'label': 'Nava, Alessandro Stefano', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_40': {'label': '1. Guss Maulburg GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_506': {'label': 'Frommann, David', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_41': {'label': 'ABG Apotheken-Beratungsgesellschaft mbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_507': {'label': 'Kranen, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_508': {'label': 'Seifert, Aline', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_509': {'label': 'Kerschen, Marco', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_510': {'label': 'Sommer, Angelika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_511': {'label': 'Tillner, Carsten', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_512': {'label': 'Freiherr von Rodde, Dominik', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_42': {'label': 'adidas Beteiligungsgesellschaft mbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_513': {'label': 'Kapadia, Robin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_514': {'label': 'Richter, Andreas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_515': {'label': 'Voges genannt Wolf, Ernst Moritz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_43': {'label': 'adidas CDC Immobilieninvest GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_516': {'label': 'Dzieia, Christian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_517': {'label': 'Drebes, Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_518': {'label': 'Büscher, Benjamin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_519': {'label': 'Wunderlich, Jochen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_44': {'label': 'Amber Zweite VV GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_520': {'label': 'Kanellopoulos, Konstantina', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_521': {'label': 'Urbansky, Lars', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_522': {'label': 'Weber, Olaf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_523': {'label': 'Akelbein, Torsten', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_524': {'label': 'Bode, Stefan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_525': {'label': 'Ennis, Mark', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_526': {'label': 'Gerß, Robert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_527': {'label': 'Guhr, Stephen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_528': {'label': 'Intek, Kerstin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_529': {'label': 'Koglin, Jens', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_530': {'label': 'Kosch, Jan-Ole', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_531': {'label': 'Schiedung, Katja', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_532': {'label': 'Schindler, Jörg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_533': {'label': 'Späth, Philipp', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_534': {'label': 'Strachardt, Matthias', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_535': {'label': 'Teipel, Henrik', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_536': {'label': 'Weihe, Alexander', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_45': {'label': 'AREF Solar Germany II GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_537': {'label': 'Marg, Holger', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_538': {'label': 'Heyduck, Rainer', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_46': {'label': 'AROTEC Automation und Robotik GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_539': {'label': 'Cottone, Norbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_47': {'label': 'ASSET Immobilienbeteiligungen GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_48': {'label': 'Aurelius Cotta - Konrad Pika Trippel Partnerschaft von Rechtsanwälten mbB', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_540': {'label': 'Konrad, Sabine', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_541': {'label': 'Pika, Maximilian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_542': {'label': 'Trippel, Pierre', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_49': {'label': 'Aurelius Dienstleistungs eG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_543': {'label': 'Schwab, Frank', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_50': {'label': 'AURELIUS Gamma Invest GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_51': {'label': 'Aurelius Horizon UG (haftungsbeschränkt)', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_544': {'label': 'Bau, Jan Jérôme', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_52': {'label': 'AURELIUS Transaktionsberatungs AG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_53': {'label': '1. Freiburger Solarfonds Beteiligungs-KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_545': {'label': 'Wetzel, Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_546': {'label': 'Sladek, Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_547': {'label': 'Eickeler, Hans-Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_548': {'label': 'Hartmann, Hannelore', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_549': {'label': 'Manteufel, Walter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_550': {'label': 'Piest, Rainer', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_551': {'label': 'Probst, Domenikus Christoph Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_552': {'label': 'Schleith, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_553': {'label': 'Traurig, Gertrud', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_554': {'label': 'Marx, Gerhild', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_555': {'label': 'Bächler, Manfred Sebastian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_556': {'label': 'Baumann, Roland', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_557': {'label': 'Bernauer, Ursula Maria', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_558': {'label': 'Bierschneider-Jakobs, Andrea', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_559': {'label': 'Graux, Henri Noel Frederic Charles', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_560': {'label': 'Grether, Wolfgang Reinhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_561': {'label': 'Gruber, Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_562': {'label': 'Heß, Hermann Karl Ludwig', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_563': {'label': 'Jores, Marion', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_564': {'label': 'Kiefer, Klaus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_565': {'label': 'Klötzer, Ralf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_566': {'label': 'Klumb, Wolfgang Georg Friedrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_567': {'label': 'Limbrock, Gerhard Johannes', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_568': {'label': 'Maaßen, Siegrid', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_569': {'label': 'Reemtsma, Mareike', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_570': {'label': 'Ruf, Martin Rolf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_571': {'label': 'Schanz, Johann Jakob', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_572': {'label': 'Scheuber, Klaus Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_573': {'label': 'Seifried, Dieter Hermann', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_574': {'label': 'Sünder, Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_575': {'label': 'Ullrich, Konrad', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_576': {'label': 'Ullrich, Margret', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_577': {'label': 'Völler, Werner', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_578': {'label': 'Weise, Hans-Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_579': {'label': 'Willmann, Alexander', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_580': {'label': 'Willmann, Andrea', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_581': {'label': 'Witzel, Almut Hedwig', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_582': {'label': 'Witzel, Walter Georg Friedrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_583': {'label': 'Karpstein, Klaus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_584': {'label': 'Traurig, Ferdinand', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_585': {'label': 'Götte, Helmut Hermann', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_586': {'label': 'Schelshorn, Rolf Karl', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_587': {'label': 'Steinhauser, Sabine Ursula', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_588': {'label': 'Lehmann, Johanna', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_54': {'label': '1&1 Energy GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_55': {'label': '1 A Blumen Griesbaum, Inh. Philipp Zähringer e.K.', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_589': {'label': 'Zähringer, Philipp', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_56': {'label': 'adidas Insurance & Risk Consultants GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_590': {'label': 'Ditzel, Heiko', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_57': {'label': 'ahg Autohandelsgesellschaft mbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_591': {'label': 'Kramer, Alexander Johannes', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_592': {'label': 'Linderich, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_593': {'label': 'Langhorst, Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_594': {'label': 'Eberle, Holger', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_58': {'label': 'Airport Assekuranz Vermittlungs-GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_595': {'label': 'Schill, Hans Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_596': {'label': 'Hub, Simone', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_597': {'label': 'Kreische, Sabine', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_59': {'label': 'AKG Automobile GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_598': {'label': 'Amelung, Andreas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_599': {'label': 'Kaltenbach, Anke', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_600': {'label': 'Gebauer, Kevin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_60': {'label': 'ALTBERG GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_601': {'label': 'Hecker, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_602': {'label': 'Schneider, Michaela', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_61': {'label': 'ASS Maschinenbau GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_603': {'label': 'Ziewers, Reinhold', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_604': {'label': 'Schwarz, Theodor', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_605': {'label': 'Würstlin, Rolf Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_62': {'label': 'AURELIUS Development Six GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_63': {'label': 'AURELIUS Services Holding GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_606': {'label': 'Forster, Frank', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_64': {'label': 'AURELIUS WK Eleven GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_607': {'label': 'Blumenthal, Eric', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_608': {'label': 'Wagner, Alexander', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_65': {'label': 'ACONITA Grundstücks-Vermietungsgesellschaft mbH & Co. Objekt Niederrad KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_609': {'label': 'Corsepius, Gudrun', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_610': {'label': 'Gabel, Jens', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_611': {'label': 'Göttmann, Klaus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_612': {'label': 'Henkel, Anita', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_613': {'label': 'Herrmann, Burkhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_614': {'label': 'Jässing-Wolgast, Martina', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_615': {'label': 'Käsbauer, Josef', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_616': {'label': 'Kayser, Margot', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_617': {'label': 'Ketscher, Klaus-Dieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_618': {'label': 'Lohmar, Karl-Friedrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_619': {'label': 'Mannschatz, Ortrud', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_620': {'label': 'Piwarz, Renate', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_621': {'label': 'Rosenwinkel, Karl-Heinz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_622': {'label': 'Scheidler, Iris', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_623': {'label': 'Schröder, Richard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_624': {'label': 'Schröter, Jutta', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_625': {'label': 'Schüßler, Harald', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_626': {'label': 'Servos, Alfred', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_627': {'label': 'Staudt, Gerhardt', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_628': {'label': 'Wiltschek, Gerd', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_629': {'label': 'Barmetler, Johann Josef', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_630': {'label': 'Benz, Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_631': {'label': 'Hahn, Hans-Joachim', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_632': {'label': 'Halfwassen, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_633': {'label': 'Riethmüller, Hildegard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_634': {'label': 'Wünsche, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_635': {'label': 'Jansen, Helge', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_636': {'label': 'Netzhammer, Emil', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_637': {'label': 'Willmes, Antonia', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_638': {'label': 'Willmes, Otto', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_639': {'label': 'Rau, Eva-Maria', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_640': {'label': 'Volle, Angelika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_641': {'label': 'Volle, Bettina', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_642': {'label': 'Wiesner, Edith', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_643': {'label': 'Rinke, Hans-Werner', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_644': {'label': 'Stiehler, Gisela', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_645': {'label': 'Köhler, Irmgard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_646': {'label': 'Müller, Helmut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_647': {'label': 'Rohr, Otto', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_648': {'label': 'Vogel, Monika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_649': {'label': 'Vogel, Corinna', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_650': {'label': 'Geenen, Maria Elisabeth', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_651': {'label': 'Geenen, Hans Georg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_652': {'label': 'Jacobs, Albert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_653': {'label': 'Seifert, Eberhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_654': {'label': 'Wüster, Gisela', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_655': {'label': 'Walther, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_656': {'label': 'Keidel, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_657': {'label': 'Schönleber, Angelika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_658': {'label': 'Dunckel, Helga', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_659': {'label': 'Dunckel, Wilfried', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_660': {'label': 'Rude, Maria', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_661': {'label': 'Graf von Bredow, Hans Herbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_662': {'label': 'Dahmen, Marita', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_663': {'label': 'Noelle, Herbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_664': {'label': 'Wilde, Johannes Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_665': {'label': 'Homann, Jens-Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_666': {'label': 'Hoppe, Hans-Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_667': {'label': 'Köcher, Waltraud', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_668': {'label': 'Haverkamp, Ursula', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_669': {'label': 'Rolf, Werner', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_670': {'label': 'Jürgens, Ulrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_671': {'label': 'Hagen, Bernd', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_672': {'label': 'Dorn, Barbara', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_673': {'label': 'Hoefermann, Regine', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_674': {'label': 'Hinrichs, Lars', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_675': {'label': 'Hinrichs, Jan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_676': {'label': 'Wiese, Gertrud', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_677': {'label': 'Streck, Hannelore', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_678': {'label': 'Streck, Sylvia', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_679': {'label': 'Broer, Helga', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_680': {'label': 'Thiele, Heidrun Gisela', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_681': {'label': 'Augenstein, Sigrid', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_682': {'label': 'Busch, Christa', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_683': {'label': 'Seifert, Edeltraut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_684': {'label': 'Wittelsberger, Reinhold', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_685': {'label': 'Riesenkampff, Brigitte', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_686': {'label': 'Schurig, Christa', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_687': {'label': 'Seiler, Eberhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_688': {'label': 'Dreher, Susanne', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_689': {'label': 'Dreher, Friedrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_690': {'label': 'Ihring, Heinz Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_691': {'label': 'Müller, Anna Maria', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_692': {'label': 'Röder, Petra', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_693': {'label': 'Hahn, Patrick', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_694': {'label': 'Hahn, Anke', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_695': {'label': 'Vogel, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_696': {'label': 'Vogel, Walter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_697': {'label': 'Schillig, Trude', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_698': {'label': 'Stammberger, Brigitte Gerda', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_699': {'label': 'Schramm, Jörg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_700': {'label': 'Frenzel, Maria', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_701': {'label': 'Grötzinger, Anita', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_702': {'label': 'Jonas, Ilse', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_703': {'label': 'Schur, Dorothee', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_704': {'label': 'Vom Berg, Ute', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_705': {'label': 'Langer, Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_706': {'label': 'Gerhardt, Gabriele Maria', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_707': {'label': 'Pisarz, Jörgen Herbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_708': {'label': 'Broichhausen, Susanne', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_709': {'label': 'Broichhausen, Ulrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_710': {'label': 'Konzack, Theresie', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_711': {'label': 'Enckler, Anke', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_712': {'label': 'Widmann, Gabriele', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_713': {'label': 'Rothmaier, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_714': {'label': 'Sauer, Vera Anne Katharina', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_715': {'label': 'Kälberer, Joachim', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_716': {'label': 'Schwabedissen, Bodo', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_717': {'label': 'Weber, Gesine', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_718': {'label': 'Johannlükens, Elke', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_719': {'label': 'Johannlükens, Hartmut Helmut Friedrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_720': {'label': 'Pfister, Sabine', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_721': {'label': 'Diaw, Hannegret Felicia Ellinor Odeh', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_722': {'label': 'Drews, Renate Christa Helga', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_723': {'label': 'Haßlacher, Tobias Fabian Jakob', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_724': {'label': 'Bär, Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_725': {'label': 'Willerich, Hanno', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_726': {'label': 'Vogel, Gesche', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_727': {'label': 'Kempf, Laura', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_728': {'label': 'Fischer, Patrick', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_729': {'label': 'Fischer, Frank', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_730': {'label': 'Kübert, Carmen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_731': {'label': 'Greindl, Stephan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_732': {'label': 'Fierle, Frank Roland', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_733': {'label': 'Weiß, Monika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_734': {'label': 'Hölßig, Sebastian Helmut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_735': {'label': 'Hölßig, Alexander Friedrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_736': {'label': 'Magers, Jutta Maria', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_737': {'label': 'Vogel, Karin Maria', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_738': {'label': 'Kohlmann, Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_739': {'label': 'Rupp, Oliver', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_740': {'label': 'Pätsch, Christian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_741': {'label': 'Hitzegrad, Ulrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_742': {'label': 'Chudobba, Udo', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_66': {'label': 'Albert Schäffler Elektromeister GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_743': {'label': 'Charnow, Bernd', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_744': {'label': 'Charnow, Verena', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_67': {'label': 'Amprio GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_745': {'label': 'Kasperlik, Tobias', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_746': {'label': 'Göttler, Heiko', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_747': {'label': 'Baumann, Matthias', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_748': {'label': 'Hettesheimer, Sven', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_749': {'label': 'Schwarz, Daniel', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_68': {'label': 'audio.digital NRW GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_750': {'label': 'Kessel, James', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_751': {'label': 'Stähr, Andreas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_752': {'label': 'Petrick, Francie', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_753': {'label': 'Petri, Dirk', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_70': {'label': 'AURELIUS Development Fourty-Seven GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_71': {'label': 'AURELIUS Development Sixteen DS GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_72': {'label': 'AURELIUS Development Twelve GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_73': {'label': 'AURELIUS Epsilon International GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_74': {'label': 'AURELIUS Equity Opportunities SE & Co. KGaA', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_163': {'label': 'AURELIUS Management SE', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_75': {'label': 'Aurelius Immobiliengesellschaft Am Fanny Mendelssohn Platz GmbH & Co. KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_76': {'label': 'AURELIUS IV GER AcquiCo Three GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_77': {'label': 'Aurelius KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_80': {'label': 'Aurelius Verwaltungs GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_754': {'label': 'Esser, Felix', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_755': {'label': 'Esser, Moritz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_756': {'label': 'Esser, Dominique', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_757': {'label': 'Esser, Julian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_758': {'label': 'Esser, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_78': {'label': 'Aurelius Mittelstandskapital GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_79': {'label': 'AURELIUS Real Estate Investments GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_759': {'label': 'Rehbock, Jan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_760': {'label': 'Esser, Felix Benedikt', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_81': {'label': 'AURELIUS WK Fifteen GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_761': {'label': 'Vitense, Nico', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_82': {'label': '99 gramm Management GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_762': {'label': 'Häbold, Marko', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_83': {'label': 'APHS Ambulanter Pflegedienst Hella Schnepel GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_763': {'label': 'Qalae-Nawi, Mohamed Raza', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_84': {'label': 'Aragon 16. VV GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_85': {'label': 'AURELIUS Development Fourty-Five DS GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_764': {'label': 'Ekhard, Depken', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_86': {'label': '2Gramm GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_765': {'label': 'Becker, Patrick', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_766': {'label': 'Meyer, Sebastian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_87': {'label': 'adidas AG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_767': {'label': 'Kürten, Markus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_768': {'label': 'Eichhorn, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_769': {'label': 'Robertson, Michelle', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_770': {'label': 'Deschner, Melanie', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_771': {'label': 'Jäger, Björn', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_772': {'label': 'Ohlmeyer, Harm', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_773': {'label': 'Schumacher, Torben', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_774': {'label': 'Weigl, Günter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_775': {'label': 'Döring, Jörg Volker', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_776': {'label': 'Mende, Daniel', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_777': {'label': 'Griffiths, Nigel', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_778': {'label': 'Mayer, Claus-Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_779': {'label': 'Lipp, Wolfram', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_780': {'label': 'Hintz, Silja', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_781': {'label': 'Zwank, Bernd', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_782': {'label': 'Kuennemann, Sven', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_783': {'label': 'Waller, Philipp', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_784': {'label': 'Arana, Aimee', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_785': {'label': 'Hubert, Andreas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_786': {'label': 'Rautert, Markus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_787': {'label': 'Uncini Manganelli, Alberto', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_788': {'label': 'Bührle, Sigrid', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_789': {'label': 'Mogus, Marina', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_790': {'label': 'Murphy, Carla', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_791': {'label': 'Moser, Sven', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_792': {'label': 'Silva, Claudia', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_793': {'label': 'Zalaznik, Scott', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_794': {'label': 'Heinemann, Jan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_795': {'label': 'Rajkumar, Amanda', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_796': {'label': 'Shankland, Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_797': {'label': 'Wolpert, Christof', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_798': {'label': 'Pui-Moldovan, Laura', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_799': {'label': 'Noya, Eveline', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_800': {'label': 'Gulden, Björn', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_801': {'label': 'Poelman, Saskia', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_802': {'label': 'Höld, Arthur', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_803': {'label': 'Ribeiro, Filipa', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_804': {'label': 'Sidokpohou, Mathieu Nounagnon', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_88': {'label': 'AFS Immobilien GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_805': {'label': 'Schütte, Andreas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_89': {'label': 'Airbus DS Airborne Solutions GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_806': {'label': 'Laack, Holger', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_807': {'label': 'Hastedt, Ralf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_808': {'label': 'Behrens, Tim', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_809': {'label': 'Winter, Helge', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_810': {'label': 'Quandt, Matthias', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_90': {'label': 'Aragon 14. VV GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_91': {'label': 'Aragon 15. VV GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_811': {'label': 'Gerß, Robert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_92': {'label': 'ATESTEO Management GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_812': {'label': 'Schmitz, Wolfgang Josef', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_813': {'label': 'Kan, Lei', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_814': {'label': 'Willers, Tim', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_815': {'label': 'Görgens, Josef', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_93': {'label': 'AURELIUS Alpha Invest New GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_816': {'label': 'Bennetsen, Mogens', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_817': {'label': 'Adam, Lars-Eric', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_94': {'label': 'AURELIUS Development Twenty-Three GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_95': {'label': 'AURELIUS IV GER AcquiCo One GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_96': {'label': 'AURELIUS Portfolio Management AG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_818': {'label': 'Michel, Kay', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_819': {'label': 'Pötzl, Julian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_820': {'label': 'Zuther, Magnus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_821': {'label': 'Becker, Jan-Christian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_97': {'label': '1 st Class Marketing GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_822': {'label': 'Werner, Sebastian Andreas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_823': {'label': 'Zemke, Henry', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_98': {'label': 'ALBA Neckar-Alb GmbH & Co. KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_824': {'label': 'Keim, Susanne', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_825': {'label': 'Eroglu, Halil', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_826': {'label': 'Minetzke, Stefan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_827': {'label': 'Martin, René', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_99': {'label': 'Amber Erste VV GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_100': {'label': 'Aufzug - Technik Gramm GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_828': {'label': 'Gramm, Ursula', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_101': {'label': 'AURELIUS Alpha International GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_102': {'label': 'AURELIUS Development Fourty-Four GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_103': {'label': 'AURELIUS Development Fourty GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_104': {'label': 'AURELIUS Development Fourty-Two GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_105': {'label': 'AURELIUS Development Twenty-Four GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_106': {'label': 'AURELIUS Gamma International GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_107': {'label': 'Aurelius Immobiliengesellschaft am Udo Lindenberg Platz GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_108': {'label': 'Aurelius SW11 GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_109': {'label': '1&1 Mail & Media Service GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_829': {'label': 'Tralau, Michael Heiko', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_830': {'label': 'Dönmez, Yasemin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_110': {'label': '1&1 Versatel GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_831': {'label': 'Mannshausen, Guido', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_832': {'label': 'Trebst, Sören', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_833': {'label': 'Heyder, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_834': {'label': 'Iaconisi, Marko', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_835': {'label': 'Schütze, Marc', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_836': {'label': 'Schulz, Frank', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_837': {'label': 'Nettlenbusch, Sandra', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_838': {'label': 'Fischer, Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_839': {'label': 'Yayan, Ahmet', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_840': {'label': 'Bock, Oliver', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_111': {'label': '1. Alfdorfer Solarbetriebs-GmbH & Co. KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_841': {'label': 'Beier, Heinrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_842': {'label': 'Bühler, Dieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_843': {'label': 'Haack, Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_844': {'label': 'Hinderer, Christoph', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_845': {'label': 'Keicher, Eckhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_846': {'label': 'Kühner, Robert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_847': {'label': 'Kurz, Helmut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_848': {'label': 'Mahler-Abele, Christine', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_849': {'label': 'Maihöfer, Christian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_850': {'label': 'Mark, Steffen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_851': {'label': 'Proske, Petra', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_852': {'label': 'Vögele, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_853': {'label': 'Wahl, Bernd', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_854': {'label': 'Wahl, Erich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_855': {'label': 'Wahl, Frank', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_856': {'label': 'Walz, Elisabeth', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_857': {'label': 'Abele, Kurt', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_112': {'label': '7pace GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_858': {'label': 'Schaeffler, Marcus Oliver', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_113': {'label': 'AHG Agrar-Holding GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_859': {'label': 'Umhau, Dieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_860': {'label': 'Husemeyer, Henrik Cord', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_114': {'label': 'AirIT Services GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_861': {'label': 'Thines, Sven', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_862': {'label': 'Oswald, Fritz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_863': {'label': 'Schultz-Fademrecht, Klaus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}}\n", + "[{'from': 'person_1', 'to': 'company_1', 'label': 'Geschäftsführer'}, {'from': 'person_2', 'to': 'company_1', 'label': 'Prokurist'}, {'from': 'person_3', 'to': 'company_2', 'label': 'Kommanditist'}, {'from': 'person_4', 'to': 'company_2', 'label': 'Kommanditist'}, {'from': 'person_5', 'to': 'company_2', 'label': 'Kommanditist'}, {'from': 'person_6', 'to': 'company_2', 'label': 'Kommanditist'}, {'from': 'person_7', 'to': 'company_2', 'label': 'Kommanditist'}, {'from': 'person_8', 'to': 'company_2', 'label': 'Kommanditist'}, {'from': 'person_9', 'to': 'company_3', 'label': 'Kommanditist'}, {'from': 'person_10', 'to': 'company_3', 'label': 'Prokurist'}, {'from': 'person_1', 'to': 'company_4', 'label': 'Geschäftsführer'}, {'from': 'person_2', 'to': 'company_4', 'label': 'Prokurist'}, {'from': 'company_2213', 'to': 'company_5', 'label': 'Organisation'}, {'from': 'person_11', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_12', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_13', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_14', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_15', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_16', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_17', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_18', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_19', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_20', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_21', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_22', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_23', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_24', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_25', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_26', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_27', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_28', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_29', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_30', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_31', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_32', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_33', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_34', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_35', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_36', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_37', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_38', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_39', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_40', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_41', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_42', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_43', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_44', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_45', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_46', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_47', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_48', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_49', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_50', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_51', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_52', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_53', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_54', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_55', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_56', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_57', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_58', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_59', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_60', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_61', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_62', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_63', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_64', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_65', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_66', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_67', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_68', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_69', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_70', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_71', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_72', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_73', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_74', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_75', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_76', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_77', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_78', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_79', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_80', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_81', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_82', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_83', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_84', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_85', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_86', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_87', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_88', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_89', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_90', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_91', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_92', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_93', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_94', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_95', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_96', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_97', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_98', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_99', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_100', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_101', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_102', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_103', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_104', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_105', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_106', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_107', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_108', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_109', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_110', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_111', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_112', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_113', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_114', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_115', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_116', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_117', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_118', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_119', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_120', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_121', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_122', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_123', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_124', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_125', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_126', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_127', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_128', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_129', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_130', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_131', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_132', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_133', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_134', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_135', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_136', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_137', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_138', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_139', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_140', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_141', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_142', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_143', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_144', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_145', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_146', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_147', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_148', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_149', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_150', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_151', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_152', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_153', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_154', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_155', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_156', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_157', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_158', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_159', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_160', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_161', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_162', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_163', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_164', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_165', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_166', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_167', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_168', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_169', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_170', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_171', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_172', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_173', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_174', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_175', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_176', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_177', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_178', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_179', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_180', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_181', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_182', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_183', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_184', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_185', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_186', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_187', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_188', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_189', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_190', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_191', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_192', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_193', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_194', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_195', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_196', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_197', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_198', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_199', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_200', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_201', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_202', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_203', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_204', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_205', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_206', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_207', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_208', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_209', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_210', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_211', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_212', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_213', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_214', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_215', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_216', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_217', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_218', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_219', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_220', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_221', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_222', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_223', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_224', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_225', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_226', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_227', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_228', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_229', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_230', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_231', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_232', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_233', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_234', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_235', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_236', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_237', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_238', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_239', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_240', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_241', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_242', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_243', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_244', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_245', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_246', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_247', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_248', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_249', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_250', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_251', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_252', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_253', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_254', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_255', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_256', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_257', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_258', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_259', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_260', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_261', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_262', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_263', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_264', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_265', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_266', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_267', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_268', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_269', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_270', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_271', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_272', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_273', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_274', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_275', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_276', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_277', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_278', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_279', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_280', 'to': 'company_7', 'label': 'Geschäftsführer'}, {'from': 'person_281', 'to': 'company_8', 'label': 'Geschäftsführer'}, {'from': 'person_282', 'to': 'company_8', 'label': 'Geschäftsführer'}, {'from': 'person_283', 'to': 'company_9', 'label': 'Vorstand'}, {'from': 'person_284', 'to': 'company_9', 'label': 'Vorstand'}, {'from': 'person_285', 'to': 'company_10', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_11', 'label': 'Geschäftsführer'}, {'from': 'person_286', 'to': 'company_12', 'label': 'Geschäftsführer'}, {'from': 'person_287', 'to': 'company_12', 'label': 'Geschäftsführer'}, {'from': 'person_286', 'to': 'company_13', 'label': 'Geschäftsführer'}, {'from': 'person_288', 'to': 'company_14', 'label': 'Geschäftsführer'}, {'from': 'person_289', 'to': 'company_14', 'label': 'Geschäftsführer'}, {'from': 'person_290', 'to': 'company_14', 'label': 'Geschäftsführer'}, {'from': 'person_291', 'to': 'company_14', 'label': 'Geschäftsführer'}, {'from': 'person_292', 'to': 'company_15', 'label': 'Vorstand'}, {'from': 'person_288', 'to': 'company_15', 'label': 'Vorstand'}, {'from': 'person_289', 'to': 'company_15', 'label': 'Vorstand'}, {'from': 'person_290', 'to': 'company_15', 'label': 'Vorstand'}, {'from': 'person_291', 'to': 'company_15', 'label': 'Vorstand'}, {'from': 'person_293', 'to': 'company_16', 'label': 'Vorstand'}, {'from': 'person_294', 'to': 'company_16', 'label': 'Vorstand'}, {'from': 'person_295', 'to': 'company_16', 'label': 'Vorstand'}, {'from': 'person_296', 'to': 'company_16', 'label': 'Vorstand'}, {'from': 'person_297', 'to': 'company_16', 'label': 'Vorstand'}, {'from': 'person_298', 'to': 'company_16', 'label': 'Vorstand'}, {'from': 'person_299', 'to': 'company_16', 'label': 'Vorstand'}, {'from': 'person_300', 'to': 'company_16', 'label': 'Vorstand'}, {'from': 'person_301', 'to': 'company_16', 'label': 'Vorstand'}, {'from': 'person_302', 'to': 'company_17', 'label': 'Geschäftsführer'}, {'from': 'person_295', 'to': 'company_17', 'label': 'Geschäftsführer'}, {'from': 'person_303', 'to': 'company_17', 'label': 'Geschäftsführer'}, {'from': 'person_304', 'to': 'company_18', 'label': 'Geschäftsführer'}, {'from': 'person_305', 'to': 'company_19', 'label': 'Geschäftsführer'}, {'from': 'person_306', 'to': 'company_19', 'label': 'Geschäftsführer'}, {'from': 'person_307', 'to': 'company_20', 'label': 'Geschäftsführer'}, {'from': 'person_308', 'to': 'company_21', 'label': 'Geschäftsführer'}, {'from': 'person_309', 'to': 'company_21', 'label': 'Geschäftsführer'}, {'from': 'person_310', 'to': 'company_21', 'label': 'Geschäftsführer'}, {'from': 'person_311', 'to': 'company_22', 'label': 'Prokurist'}, {'from': 'person_312', 'to': 'company_22', 'label': 'Prokurist'}, {'from': 'person_313', 'to': 'company_22', 'label': 'Geschäftsführer'}, {'from': 'person_314', 'to': 'company_23', 'label': 'Geschäftsführer'}, {'from': 'person_315', 'to': 'company_23', 'label': 'Geschäftsführer'}, {'from': 'person_316', 'to': 'company_23', 'label': 'Geschäftsführer'}, {'from': 'person_317', 'to': 'company_23', 'label': 'Geschäftsführer'}, {'from': 'person_318', 'to': 'company_24', 'label': 'Kommanditist'}, {'from': 'person_319', 'to': 'company_24', 'label': 'Kommanditist'}, {'from': 'person_320', 'to': 'company_24', 'label': 'Kommanditist'}, {'from': 'person_321', 'to': 'company_24', 'label': 'Kommanditist'}, {'from': 'person_322', 'to': 'company_24', 'label': 'Kommanditist'}, {'from': 'person_323', 'to': 'company_24', 'label': 'Kommanditist'}, {'from': 'person_324', 'to': 'company_24', 'label': 'Kommanditist'}, {'from': 'person_325', 'to': 'company_24', 'label': 'Kommanditist'}, {'from': 'person_326', 'to': 'company_24', 'label': 'Kommanditist'}, {'from': 'person_285', 'to': 'company_25', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_26', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_27', 'label': 'Geschäftsführer'}, {'from': 'person_327', 'to': 'company_28', 'label': 'Geschäftsführer'}, {'from': 'person_328', 'to': 'company_29', 'label': 'Geschäftsführer'}, {'from': 'person_329', 'to': 'company_29', 'label': 'Geschäftsführer'}, {'from': 'person_330', 'to': 'company_29', 'label': 'Prokurist'}, {'from': 'person_331', 'to': 'company_29', 'label': 'Prokurist'}, {'from': 'person_332', 'to': 'company_30', 'label': 'Geschäftsführer'}, {'from': 'person_333', 'to': 'company_30', 'label': 'Geschäftsführer'}, {'from': 'person_334', 'to': 'company_30', 'label': 'Geschäftsführer'}, {'from': 'person_335', 'to': 'company_30', 'label': 'Prokurist'}, {'from': 'person_336', 'to': 'company_30', 'label': 'Prokurist'}, {'from': 'person_337', 'to': 'company_30', 'label': 'Prokurist'}, {'from': 'person_338', 'to': 'company_31', 'label': 'Inhaber'}, {'from': 'person_339', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_340', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_341', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_342', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_343', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_344', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_345', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_346', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_347', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_348', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_349', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_350', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_351', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_352', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_353', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_354', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_355', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_356', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_357', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_358', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_359', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_360', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_361', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_362', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_363', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_364', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_365', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_366', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_367', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_368', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_369', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_370', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_371', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_372', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_373', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_374', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_375', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_376', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_377', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_378', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_379', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_380', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_381', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_382', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_383', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_384', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_385', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_386', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_387', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_388', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_389', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_390', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_391', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_392', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_393', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_394', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_395', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_396', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_397', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_398', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_399', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_400', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_401', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_402', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_403', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_404', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_405', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_406', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_407', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_408', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_409', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_410', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_411', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_412', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_413', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_414', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_415', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_416', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_417', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_418', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_419', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_420', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_421', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_422', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_423', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_424', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_425', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_426', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_427', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_428', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_429', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_430', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_431', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_432', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_433', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_434', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_435', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_436', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_437', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_438', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_439', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_440', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_441', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_442', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_443', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_444', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_445', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_446', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_447', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_448', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_449', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_450', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_451', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_452', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_453', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_454', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_455', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_456', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_457', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_458', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_459', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_460', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_461', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_462', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_463', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_464', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_465', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_466', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_467', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_468', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_469', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_470', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_471', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_472', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_473', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_474', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'company_845', 'to': 'company_32', 'label': 'Organisation'}, {'from': 'person_475', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_476', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_477', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_478', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_479', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_480', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_481', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_482', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_483', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_484', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_485', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_486', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_487', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_488', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_489', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_490', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_491', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_492', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_493', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_494', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_495', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_496', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_497', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_498', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_499', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_500', 'to': 'company_33', 'label': 'Liquidator'}, {'from': 'company_1903', 'to': 'company_34', 'label': 'Organisation'}, {'from': 'person_332', 'to': 'company_35', 'label': 'Geschäftsführer'}, {'from': 'person_333', 'to': 'company_35', 'label': 'Geschäftsführer'}, {'from': 'person_334', 'to': 'company_35', 'label': 'Geschäftsführer'}, {'from': 'person_335', 'to': 'company_35', 'label': 'Prokurist'}, {'from': 'person_336', 'to': 'company_35', 'label': 'Prokurist'}, {'from': 'person_337', 'to': 'company_35', 'label': 'Prokurist'}, {'from': 'person_501', 'to': 'company_36', 'label': 'Geschäftsführer'}, {'from': 'person_502', 'to': 'company_37', 'label': 'Vorstand'}, {'from': 'person_503', 'to': 'company_37', 'label': 'Vorstand'}, {'from': 'person_504', 'to': 'company_37', 'label': 'Vorstand'}, {'from': 'person_288', 'to': 'company_38', 'label': 'Geschäftsführer'}, {'from': 'person_289', 'to': 'company_38', 'label': 'Geschäftsführer'}, {'from': 'person_290', 'to': 'company_38', 'label': 'Geschäftsführer'}, {'from': 'person_291', 'to': 'company_38', 'label': 'Geschäftsführer'}, {'from': 'person_505', 'to': 'company_39', 'label': 'Geschäftsführer'}, {'from': 'person_295', 'to': 'company_39', 'label': 'Geschäftsführer'}, {'from': 'person_293', 'to': 'company_39', 'label': 'Geschäftsführer'}, {'from': 'person_506', 'to': 'company_40', 'label': 'Geschäftsführer'}, {'from': 'person_507', 'to': 'company_41', 'label': 'Prokurist'}, {'from': 'person_508', 'to': 'company_41', 'label': 'Geschäftsführer'}, {'from': 'person_509', 'to': 'company_41', 'label': 'Geschäftsführer'}, {'from': 'person_510', 'to': 'company_41', 'label': 'Prokurist'}, {'from': 'person_511', 'to': 'company_41', 'label': 'Prokurist'}, {'from': 'person_512', 'to': 'company_41', 'label': 'Prokurist'}, {'from': 'person_513', 'to': 'company_42', 'label': 'Prokurist'}, {'from': 'person_514', 'to': 'company_42', 'label': 'Geschäftsführer'}, {'from': 'person_515', 'to': 'company_42', 'label': 'Geschäftsführer'}, {'from': 'person_516', 'to': 'company_43', 'label': 'Geschäftsführer'}, {'from': 'person_517', 'to': 'company_43', 'label': 'Geschäftsführer'}, {'from': 'person_518', 'to': 'company_43', 'label': 'Prokurist'}, {'from': 'person_519', 'to': 'company_43', 'label': 'Prokurist'}, {'from': 'person_520', 'to': 'company_44', 'label': 'Geschäftsführer'}, {'from': 'person_521', 'to': 'company_44', 'label': 'Geschäftsführer'}, {'from': 'person_522', 'to': 'company_44', 'label': 'Geschäftsführer'}, {'from': 'person_523', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_524', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_525', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_526', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_527', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_528', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_529', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_530', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_531', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_532', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_533', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_534', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_535', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_536', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_537', 'to': 'company_45', 'label': 'Geschäftsführer'}, {'from': 'person_538', 'to': 'company_45', 'label': 'Geschäftsführer'}, {'from': 'person_539', 'to': 'company_46', 'label': 'Geschäftsführer'}, {'from': 'person_333', 'to': 'company_47', 'label': 'Geschäftsführer'}, {'from': 'person_334', 'to': 'company_47', 'label': 'Geschäftsführer'}, {'from': 'person_332', 'to': 'company_47', 'label': 'Geschäftsführer'}, {'from': 'person_335', 'to': 'company_47', 'label': 'Prokurist'}, {'from': 'person_336', 'to': 'company_47', 'label': 'Prokurist'}, {'from': 'person_337', 'to': 'company_47', 'label': 'Prokurist'}, {'from': 'person_540', 'to': 'company_48', 'label': 'Partner'}, {'from': 'person_541', 'to': 'company_48', 'label': 'Partner'}, {'from': 'person_542', 'to': 'company_48', 'label': 'Partner'}, {'from': 'person_543', 'to': 'company_49', 'label': 'Vorstand'}, {'from': 'person_285', 'to': 'company_50', 'label': 'Geschäftsführer'}, {'from': 'person_544', 'to': 'company_51', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_52', 'label': 'Vorstand'}, {'from': 'person_545', 'to': 'company_53', 'label': 'Persönlich haftender Gesellschafter'}, {'from': 'person_546', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_547', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_548', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_549', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_550', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_551', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_552', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_553', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_554', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_555', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_556', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_557', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_558', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_559', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_560', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_561', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_562', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_563', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_564', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_565', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_566', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_567', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_568', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_569', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_570', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_571', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_572', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_573', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_574', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_575', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_576', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_577', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_578', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_579', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_580', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_581', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_582', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_583', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_584', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_585', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_586', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_587', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_588', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_288', 'to': 'company_54', 'label': 'Geschäftsführer'}, {'from': 'person_289', 'to': 'company_54', 'label': 'Geschäftsführer'}, {'from': 'person_291', 'to': 'company_54', 'label': 'Geschäftsführer'}, {'from': 'person_589', 'to': 'company_55', 'label': 'Inhaber'}, {'from': 'person_514', 'to': 'company_56', 'label': 'Geschäftsführer'}, {'from': 'person_590', 'to': 'company_56', 'label': 'Geschäftsführer'}, {'from': 'person_517', 'to': 'company_56', 'label': 'Prokurist'}, {'from': 'person_591', 'to': 'company_57', 'label': 'Geschäftsführer'}, {'from': 'person_592', 'to': 'company_57', 'label': 'Geschäftsführer'}, {'from': 'person_593', 'to': 'company_57', 'label': 'Prokurist'}, {'from': 'person_594', 'to': 'company_57', 'label': 'Prokurist'}, {'from': 'person_595', 'to': 'company_58', 'label': 'Geschäftsführer'}, {'from': 'person_596', 'to': 'company_58', 'label': 'Prokurist'}, {'from': 'person_597', 'to': 'company_58', 'label': 'Prokurist'}, {'from': 'person_598', 'to': 'company_59', 'label': 'Geschäftsführer'}, {'from': 'person_599', 'to': 'company_59', 'label': 'Geschäftsführer'}, {'from': 'person_600', 'to': 'company_59', 'label': 'Prokurist'}, {'from': 'person_601', 'to': 'company_60', 'label': 'Geschäftsführer'}, {'from': 'person_602', 'to': 'company_60', 'label': 'Geschäftsführer'}, {'from': 'person_603', 'to': 'company_61', 'label': 'Geschäftsführer'}, {'from': 'person_604', 'to': 'company_61', 'label': 'Prokurist'}, {'from': 'person_605', 'to': 'company_61', 'label': 'Prokurist'}, {'from': 'person_285', 'to': 'company_62', 'label': 'Geschäftsführer'}, {'from': 'person_606', 'to': 'company_63', 'label': 'Geschäftsführer'}, {'from': 'person_607', 'to': 'company_64', 'label': 'Geschäftsführer'}, {'from': 'person_608', 'to': 'company_64', 'label': 'Geschäftsführer'}, {'from': 'person_609', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_610', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_611', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_612', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_613', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_614', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_615', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_616', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_617', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_618', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_619', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_620', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_621', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_622', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_623', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_624', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_625', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_626', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_627', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_628', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_629', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_630', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_631', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_632', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_633', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_634', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_635', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_636', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_637', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_638', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_639', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_640', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_641', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_642', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_643', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_644', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_645', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_646', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_647', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_648', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_649', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_650', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_651', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_652', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_653', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_654', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_655', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_656', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_657', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_658', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_659', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_660', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_661', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_662', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_663', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_664', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_665', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_666', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_667', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_668', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_669', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_670', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_671', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_672', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_673', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_674', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_675', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_676', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_677', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_678', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_679', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_680', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_681', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_682', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_683', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_684', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_685', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_686', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_687', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_688', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_689', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_690', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_691', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_692', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_693', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_694', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_695', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_696', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_697', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_698', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_699', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_700', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_701', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_702', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_703', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_704', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_705', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_706', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_707', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_708', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_709', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_710', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_711', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_712', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_713', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_714', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_715', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_716', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_717', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_718', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_719', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_720', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_721', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_722', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_723', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_724', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_725', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_726', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_727', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_728', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_729', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_730', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_731', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_732', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_733', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_734', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_735', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_736', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_737', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_738', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_739', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_740', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_741', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_742', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_743', 'to': 'company_66', 'label': 'Geschäftsführer'}, {'from': 'person_744', 'to': 'company_66', 'label': 'Geschäftsführer'}, {'from': 'person_745', 'to': 'company_67', 'label': 'Geschäftsführer'}, {'from': 'person_746', 'to': 'company_67', 'label': 'Prokurist'}, {'from': 'person_747', 'to': 'company_67', 'label': 'Prokurist'}, {'from': 'person_748', 'to': 'company_67', 'label': 'Prokurist'}, {'from': 'person_749', 'to': 'company_67', 'label': 'Geschäftsführer'}, {'from': 'person_750', 'to': 'company_68', 'label': 'Prokurist'}, {'from': 'person_751', 'to': 'company_68', 'label': 'Geschäftsführer'}, {'from': 'person_752', 'to': 'company_68', 'label': 'Geschäftsführer'}, {'from': 'person_753', 'to': 'company_68', 'label': 'Prokurist'}, {'from': 'person_285', 'to': 'company_70', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_71', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_72', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_73', 'label': 'Geschäftsführer'}, {'from': 'company_163', 'to': 'company_74', 'label': 'Organisation'}, {'from': 'person_606', 'to': 'company_74', 'label': 'Prokurist'}, {'from': 'person_286', 'to': 'company_75', 'label': 'Kommanditist'}, {'from': 'person_285', 'to': 'company_76', 'label': 'Geschäftsführer'}, {'from': 'company_80', 'to': 'company_77', 'label': 'Organisation'}, {'from': 'person_754', 'to': 'company_77', 'label': 'Kommanditist'}, {'from': 'person_755', 'to': 'company_77', 'label': 'Kommanditist'}, {'from': 'person_756', 'to': 'company_77', 'label': 'Kommanditist'}, {'from': 'person_757', 'to': 'company_77', 'label': 'Kommanditist'}, {'from': 'person_758', 'to': 'company_77', 'label': 'Persönlich haftender Gesellschafter'}, {'from': 'person_285', 'to': 'company_78', 'label': 'Geschäftsführer'}, {'from': 'person_759', 'to': 'company_79', 'label': 'Geschäftsführer'}, {'from': 'person_758', 'to': 'company_80', 'label': 'Geschäftsführer'}, {'from': 'person_760', 'to': 'company_80', 'label': 'Geschäftsführer'}, {'from': 'person_761', 'to': 'company_81', 'label': 'Geschäftsführer'}, {'from': 'person_762', 'to': 'company_82', 'label': 'Liquidator'}, {'from': 'person_763', 'to': 'company_83', 'label': 'Geschäftsführer'}, {'from': 'person_520', 'to': 'company_84', 'label': 'Geschäftsführer'}, {'from': 'person_521', 'to': 'company_84', 'label': 'Geschäftsführer'}, {'from': 'person_522', 'to': 'company_84', 'label': 'Geschäftsführer'}, {'from': 'person_523', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_524', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_525', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_526', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_527', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_528', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_529', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_530', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_531', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_532', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_533', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_534', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_535', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_536', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_764', 'to': 'company_85', 'label': 'Geschäftsführer'}, {'from': 'person_765', 'to': 'company_86', 'label': 'Geschäftsführer'}, {'from': 'person_766', 'to': 'company_86', 'label': 'Geschäftsführer'}, {'from': 'person_767', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_768', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_514', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_769', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_770', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_771', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_772', 'to': 'company_87', 'label': 'Vorstand'}, {'from': 'person_773', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_517', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_774', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_775', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_516', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_776', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_515', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_777', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_778', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_779', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_780', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_781', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_782', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_783', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_784', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_785', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_786', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_787', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_788', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_789', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_790', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_791', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_792', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_793', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_794', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_795', 'to': 'company_87', 'label': 'Vorstand'}, {'from': 'person_796', 'to': 'company_87', 'label': 'Vorstand'}, {'from': 'person_797', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_798', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_799', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_800', 'to': 'company_87', 'label': 'Vorstand'}, {'from': 'person_801', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_802', 'to': 'company_87', 'label': 'Vorstand'}, {'from': 'person_803', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_804', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_805', 'to': 'company_88', 'label': 'Geschäftsführer'}, {'from': 'person_806', 'to': 'company_89', 'label': 'Geschäftsführer'}, {'from': 'person_807', 'to': 'company_89', 'label': 'Geschäftsführer'}, {'from': 'person_808', 'to': 'company_89', 'label': 'Geschäftsführer'}, {'from': 'person_809', 'to': 'company_89', 'label': 'Prokurist'}, {'from': 'person_810', 'to': 'company_89', 'label': 'Prokurist'}, {'from': 'person_520', 'to': 'company_90', 'label': 'Geschäftsführer'}, {'from': 'person_521', 'to': 'company_90', 'label': 'Geschäftsführer'}, {'from': 'person_522', 'to': 'company_90', 'label': 'Geschäftsführer'}, {'from': 'person_523', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_524', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_525', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_526', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_527', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_528', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_529', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_530', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_531', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_532', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_533', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_534', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_535', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_536', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_520', 'to': 'company_91', 'label': 'Geschäftsführer'}, {'from': 'person_521', 'to': 'company_91', 'label': 'Geschäftsführer'}, {'from': 'person_522', 'to': 'company_91', 'label': 'Geschäftsführer'}, {'from': 'person_523', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_524', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_525', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_811', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_527', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_528', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_529', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_530', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_531', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_532', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_533', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_534', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_535', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_536', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_314', 'to': 'company_92', 'label': 'Geschäftsführer'}, {'from': 'person_315', 'to': 'company_92', 'label': 'Geschäftsführer'}, {'from': 'person_812', 'to': 'company_92', 'label': 'Geschäftsführer'}, {'from': 'person_813', 'to': 'company_92', 'label': 'Geschäftsführer'}, {'from': 'person_814', 'to': 'company_92', 'label': 'Geschäftsführer'}, {'from': 'person_815', 'to': 'company_92', 'label': 'Geschäftsführer'}, {'from': 'person_816', 'to': 'company_93', 'label': 'Geschäftsführer'}, {'from': 'person_817', 'to': 'company_93', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_94', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_95', 'label': 'Geschäftsführer'}, {'from': 'person_818', 'to': 'company_96', 'label': 'Vorstand'}, {'from': 'person_819', 'to': 'company_96', 'label': 'Vorstand'}, {'from': 'person_820', 'to': 'company_96', 'label': 'Vorstand'}, {'from': 'person_821', 'to': 'company_96', 'label': 'Vorstand'}, {'from': 'person_822', 'to': 'company_97', 'label': 'Geschäftsführer'}, {'from': 'person_823', 'to': 'company_97', 'label': 'Geschäftsführer'}, {'from': 'person_824', 'to': 'company_98', 'label': 'Prokurist'}, {'from': 'person_825', 'to': 'company_98', 'label': 'Prokurist'}, {'from': 'person_826', 'to': 'company_98', 'label': 'Prokurist'}, {'from': 'person_827', 'to': 'company_98', 'label': 'Prokurist'}, {'from': 'person_520', 'to': 'company_99', 'label': 'Geschäftsführer'}, {'from': 'person_521', 'to': 'company_99', 'label': 'Geschäftsführer'}, {'from': 'person_522', 'to': 'company_99', 'label': 'Geschäftsführer'}, {'from': 'person_523', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_524', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_525', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_526', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_527', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_528', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_529', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_530', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_531', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_532', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_533', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_534', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_535', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_536', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_828', 'to': 'company_100', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_101', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_102', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_103', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_104', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_105', 'label': 'Liquidator'}, {'from': 'person_285', 'to': 'company_106', 'label': 'Geschäftsführer'}, {'from': 'person_286', 'to': 'company_107', 'label': 'Geschäftsführer'}, {'from': 'person_287', 'to': 'company_107', 'label': 'Geschäftsführer'}, {'from': 'person_286', 'to': 'company_108', 'label': 'Geschäftsführer'}, {'from': 'person_287', 'to': 'company_108', 'label': 'Geschäftsführer'}, {'from': 'person_829', 'to': 'company_109', 'label': 'Geschäftsführer'}, {'from': 'person_830', 'to': 'company_109', 'label': 'Geschäftsführer'}, {'from': 'person_831', 'to': 'company_110', 'label': 'Geschäftsführer'}, {'from': 'person_832', 'to': 'company_110', 'label': 'Geschäftsführer'}, {'from': 'person_833', 'to': 'company_110', 'label': 'Geschäftsführer'}, {'from': 'person_834', 'to': 'company_110', 'label': 'Prokurist'}, {'from': 'person_835', 'to': 'company_110', 'label': 'Prokurist'}, {'from': 'person_836', 'to': 'company_110', 'label': 'Geschäftsführer'}, {'from': 'person_837', 'to': 'company_110', 'label': 'Prokurist'}, {'from': 'person_838', 'to': 'company_110', 'label': 'Geschäftsführer'}, {'from': 'person_839', 'to': 'company_110', 'label': 'Geschäftsführer'}, {'from': 'person_840', 'to': 'company_110', 'label': 'Prokurist'}, {'from': 'person_841', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_842', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_843', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_844', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_845', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_846', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_847', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_848', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_849', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_850', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_851', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_852', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_853', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_854', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_855', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_856', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_857', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_858', 'to': 'company_112', 'label': 'Geschäftsführer'}, {'from': 'person_859', 'to': 'company_113', 'label': 'Geschäftsführer'}, {'from': 'person_860', 'to': 'company_113', 'label': 'Geschäftsführer'}, {'from': 'person_861', 'to': 'company_114', 'label': 'Prokurist'}, {'from': 'person_862', 'to': 'company_114', 'label': 'Geschäftsführer'}, {'from': 'person_863', 'to': 'company_114', 'label': 'Geschäftsführer'}]\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
indexlabeltypeshapecolor
0company_10 10 24 Telefondienste GmbHCompanydot#729b79ff
1person_1Tetau, NicolasPersondotblue
2person_2Dammast, LutzPersondotblue
3company_21. Staiger Grundstücksverwaltung GmbH & Co. KGCompanydot#729b79ff
4person_3Tutsch, RosemariePersondotblue
\n", + "
" + ], + "text/plain": [ + " index label type shape \\\n", + "0 company_1 0 10 24 Telefondienste GmbH Company dot \n", + "1 person_1 Tetau, Nicolas Person dot \n", + "2 person_2 Dammast, Lutz Person dot \n", + "3 company_2 1. Staiger Grundstücksverwaltung GmbH & Co. KG Company dot \n", + "4 person_3 Tutsch, Rosemarie Person dot \n", + "\n", + " color \n", + "0 #729b79ff \n", + "1 blue \n", + "2 blue \n", + "3 #729b79ff \n", + "4 blue " + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from aki_prj23_transparenzregister.utils.enum_types import RelationTypeEnum\n", + "\n", + "\n", + "def get_data():\n", + " nodes = {}\n", + " edges = []\n", + " network_data = []\n", + " edge_template = {\n", + " \"from\": {\n", + " \"name\": \"Hans Wurst\",\n", + " \"type\": \"Person\",\n", + " },\n", + " \"to\": {\"name\": \"Atos :D\", \"type\": \"Company\"},\n", + " \"type\": \"Vorstand\",\n", + " }\n", + " node_template = {\n", + " \"id\": \"(company|person)_\\d\",\n", + " \"label\": \"Name from entries\",\n", + " \"type\": \"Company|Person\",\n", + " \"shape\": \"dot\",\n", + " \"color\": \"#729b79ff\",\n", + " # TODO add title for hover effect in graph \"title\": \"\"\n", + " }\n", + " data = session.query(entities.Relation).all()\n", + " for entry in data[:1000]:\n", + " company = (\n", + " session.query(entities.Company)\n", + " .filter(entities.Company.id == entry.company_id)\n", + " .first()\n", + " )\n", + " if (\"company_\" + str(company.id)) not in nodes:\n", + " nodes[\"company_\" + str(company.id)] = {\n", + " \"label\": company.name,\n", + " \"type\": \"Company\",\n", + " \"shape\": \"dot\",\n", + " \"color\": \"#729b79ff\",\n", + " }\n", + " person_relations = (\n", + " session.query(entities.PersonRelation)\n", + " .filter(entities.PersonRelation.id == entry.id)\n", + " .all()\n", + " )\n", + " for relation in person_relations:\n", + " person = (\n", + " session.query(entities.Person)\n", + " .filter(entities.Person.id == relation.person_id)\n", + " .first()\n", + " )\n", + " if (\"person_\" + str(person.id)) not in nodes:\n", + " nodes[\"person_\" + str(person.id)] = {\n", + " \"label\": f\"{person.surname}, {person.name}\",\n", + " \"type\": \"Person\",\n", + " \"shape\": \"dot\",\n", + " \"color\": \"blue\",\n", + " }\n", + " edges.append(\n", + " {\n", + " \"from\": \"person_\" + str(person.id),\n", + " \"to\": \"company_\" + str(company.id),\n", + " # \"label\": int(entry.relation)\n", + " \"label\": RelationTypeEnum.get_string_from_enum(entry.relation),\n", + " }\n", + " )\n", + " company_relations = (\n", + " session.query(entities.CompanyRelation)\n", + " .filter(entities.CompanyRelation.id == entry.id)\n", + " .all()\n", + " )\n", + " for relation in company_relations:\n", + " company_2 = (\n", + " session.query(entities.Company)\n", + " .filter(entities.Company.id == relation.company2_id)\n", + " .first()\n", + " )\n", + " if (\"company_\" + str(company_2.id)) not in nodes:\n", + " nodes[\"company_\" + str(company_2.id)] = {\n", + " \"label\": company_2.name,\n", + " \"type\": \"Company\",\n", + " \"shape\": \"dot\",\n", + " \"color\": \"#729b79ff\",\n", + " }\n", + " edges.append(\n", + " {\n", + " \"from\": \"company_\" + str(company_2.id),\n", + " \"to\": \"company_\" + str(company.id),\n", + " \"label\": RelationTypeEnum.get_string_from_enum(entry.relation),\n", + " }\n", + " )\n", + " return pd.DataFrame.from_dict(nodes, orient=\"index\").reset_index(), pd.DataFrame(\n", + " edges\n", + " )\n", + "\n", + "\n", + "nodes, edges = get_data()\n", + "nodes.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
fromtolabel
0person_1company_1Geschäftsführer
1person_2company_1Prokurist
2person_3company_2Kommanditist
3person_4company_2Kommanditist
4person_5company_2Kommanditist
\n", + "
" + ], + "text/plain": [ + " from to label\n", + "0 person_1 company_1 Geschäftsführer\n", + "1 person_2 company_1 Prokurist\n", + "2 person_3 company_2 Kommanditist\n", + "3 person_4 company_2 Kommanditist\n", + "4 person_5 company_2 Kommanditist" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "edges.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA+AAAAPbCAYAAADcmuETAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy81sbWrAAAACXBIWXMAAA9hAAAPYQGoP6dpAAA2EElEQVR4nO3de5TXdZ348dcAMoNyU4Hh0ijh/QoGSmiuazs2nTwY20VWO4AsZiaaOscUvDAqq7ClHipRjmSLu5tBtuq6wcFsksqEUJDSI+AqKZx+DYolQ2jc5vP7o3Vq4iJfYF6APh7nfM/x+573+/t5fzkfkCef76WsKIoiAAAAgFbVZm9vAAAAAD4IBDgAAAAkEOAAAACQQIADAABAAgEOAAAACQQ4AAAAJBDgAAAAkECAAwAAQAIBDgAAAAkEOADsg/7+7/8+rrrqqr1y7IsuuiiGDRu2V44NAO9nAhwA/kZDQ0NceeWVceSRR0ZFRUVUVlbGGWecEffee2+8/fbbe3t7u2369OnRv3//6NixY3Tt2jVOOeWUmDRp0t7eFgC877Xb2xsAgH3JihUr4owzzoiuXbvG7bffHieddFKUl5fH888/H/fdd1/06dMnzjvvvG2u3bRpUxxwwAHJOy7Nd77znbjqqqvim9/8Zpx11lmxYcOG+PWvfx0vvPDC3t4aALzvuQIOAH/lsssui3bt2sWzzz4b559/fhx33HHRr1+/+PSnPx2zZ8+OoUOHNs8tKyuLe++9N84777w46KCD4rbbbostW7bEmDFj4sMf/nB06NAhjjnmmPjGN77R4hjvvsT7lltuie7du0fnzp3j0ksvjY0bN7aY19TUFNdee20ccsgh0bNnz7j55pt3+/k99thjcf7558eYMWPiyCOPjBNOOCEuuOCCuO2227aae8cdd0SvXr3i0EMPjbFjx8amTZuaf/Yf//EfMWjQoOjUqVP07NkzLrzwwnj99debfz5v3rwoKyuL2bNnx8knnxwVFRXx0Y9+dKvQf+qpp+LMM8+MDh06RFVVVXzlK1+J9evXN//8nnvuiaOOOqr5lQif+9zndvvXAAD2FgEOAP/nzTffjB/96EcxduzYOOigg7Y5p6ysrMX9m2++Of7xH/8xnn/++fjnf/7naGpqig996EPx0EMPxYsvvhgTJkyI66+/Pr7//e+3WFdfXx9Lly6NefPmxfe+9714+OGH45Zbbmkx54EHHoiDDjoofvnLX8bXvva1uPXWW+OJJ57YrefYs2fPWLBgQbz22ms7nPfkk0/GK6+8Ek8++WQ88MADMWPGjJgxY0bzzzdt2hQTJ06MX/3qV/Hoo4/Gq6++GhdddNFWj/PVr3417rzzznjmmWeie/fuMXTo0OaQf+WVV+KTn/xkfPazn41f//rXMWvWrHjqqafi8ssvj4iIZ599Nr7yla/ErbfeGsuXL4+5c+fG3/3d3+3W8weAvaoAAIqiKIoFCxYUEVE8/PDDLcYPPfTQ4qCDDioOOuig4tprr20ej4jiqquues/HHTt2bPHZz362+f6oUaOKQw45pFi/fn3z2L333lt07Nix2LJlS1EURXHWWWcVH/vYx1o8zqmnnlpcd911u/Tc3vX//t//Kz760Y8WEVEcffTRxahRo4pZs2Y1H/fd/R1++OHF5s2bm8c+//nPF8OHD9/u4z7zzDNFRBTr1q0riqIonnzyySIiipkzZzbPefPNN4sOHToUs2bNKoqiKMaMGVNccsklLR7n5z//edGmTZvinXfeKf7rv/6r6Ny5c9HY2LhbzxkA9hWugAPAe1i4cGEsWbIkTjjhhNiwYUOLnw0aNGir+VOnTo2BAwdG9+7do2PHjnHffffFypUrW8zp379/HHjggc33hwwZEn/84x9j1apVzWMnn3xyizW9evVq8TLvv/bzn/88Onbs2Hz77ne/u815vXr1ivnz58fzzz8fV155ZWzevDlGjRoVn/zkJ6Opqal53gknnBBt27bd7rEXLVoUQ4cOjcMOOyw6deoUZ511VkTEVs9zyJAhzf99yCGHxDHHHBNLly6NiIhf/epXMWPGjBb7rqmpiaampvjNb34T55xzThx++OHRr1+/GDFiRHz3u999X3wIHgAfXD6EDQD+z5FHHhllZWWxfPnyFuP9+vWLiIgOHTpsteZvX6o+c+bMuOaaa+LOO++MIUOGRKdOneLrX/96/PKXvyx5P3/7gW5lZWUtIvmvDRo0KJYsWdJ8v7KycoePfeKJJ8aJJ54Yl112WVx66aVx5plnxk9/+tM4++yz3/PY69evj5qamqipqYnvfve70b1791i5cmXU1NRs9T72HfnjH/8YX/rSl+IrX/nKVj877LDDon379rF48eKYN29e/OhHP4oJEybEzTffHM8880x07dp1p48DAPsKAQ4A/+fQQw+Nc845J+6+++644oortvs+8B35xS9+EaeffnpcdtllzWOvvPLKVvN+9atfxTvvvNMc9QsWLIiOHTtGVVXVLu29Q4cOceSRR+7S2uOPPz4iosWHn+3IsmXL4s0334zJkyc37/fZZ5/d5twFCxbEYYcdFhERf/jDH+Kll16K4447LiIiPvKRj8SLL764w323a9cuqquro7q6Ourq6qJr167xk5/8JD7zmc/s9PMDgH2Fl6ADwF+55557YvPmzTFo0KCYNWtWLF26NJYvXx7/+Z//GcuWLWvxsuxtOeqoo+LZZ5+Nxx9/PF566aW46aab4plnntlq3saNG2PMmDHx4osvxpw5c6Kuri4uv/zyaNOmdf/X/OUvfzkmTpwYv/jFL+K1116LBQsWxMiRI6N79+4tXi6+I+9enf7Wt74VK1asiMceeywmTpy4zbm33npr1NfXxwsvvBAXXXRRdOvWLYYNGxYREdddd108/fTTcfnll8eSJUvif//3f+O///u/mz+E7Yc//GF885vfjCVLlsRrr70W//7v/x5NTU1xzDHH7JFfCwDIJsAB4K8cccQR8dxzz0V1dXWMHz8++vfvH4MGDYpvfetbcc0112w3NN/1pS99KT7zmc/E8OHDY/DgwfHmm2+2uBr+rn/4h3+Io446Kv7u7/4uhg8fHuedd94e+Zqx91JdXR0LFiyIz3/+83H00UfHZz/72aioqIj6+vo49NBDd+oxunfvHjNmzIiHHnoojj/++Jg8eXLccccd25w7efLkuPLKK2PgwIHR0NAQ//M//xPt27ePiD+/x/2nP/1pvPTSS3HmmWfGKaecEhMmTIjevXtHRETXrl3j4Ycfjo9//ONx3HHHxbRp0+J73/tenHDCCXvmFwMAkpUVRVHs7U0AwAfJRRddFG+99VY8+uije3srrWbevHlx9tlnxx/+8Afv1waA/+MKOAAAACQQ4AAAAJDAS9ABAAAgQclXwH/2s5/F0KFDo3fv3lFWVrZT71+bN29efOQjH4ny8vI48sgjY8aMGbuwVQAAANh/lRzg69evj/79+8fUqVN3av5vfvObOPfcc+Pss8+OJUuWxFVXXRUXX3xxPP744yVvFgAAAPZXu/US9LKysnjkkUeav89zW6677rqYPXt2vPDCC81j//RP/xRvvfVWzJ07d1cPDQAAAPuVdq19gPnz50d1dXWLsZqamrjqqqu2u2bDhg2xYcOG5vtNTU3x+9//Pg499NAoKytrra0CAABAREQURRHr1q2L3r17R5s2e+bzy1s9wBsaGqKysrLFWGVlZTQ2NsY777wTHTp02GrNpEmT4pZbbmntrQEAAMAOrVq1Kj70oQ/tkcdq9QDfFePHj4/a2trm+2vXro3DDjssVq1aFZ07d96LOwMAAOCDoLGxMaqqqqJTp0577DFbPcB79uwZq1evbjG2evXq6Ny58zavfkdElJeXR3l5+VbjnTt3FuAAAACk2ZNvg94zL2TfgSFDhkR9fX2LsSeeeCKGDBnS2ocGAACAfUbJAf7HP/4xlixZEkuWLImIP3/N2JIlS2LlypUR8eeXj48cObJ5/qWXXhorVqyIa6+9NpYtWxb33HNPfP/734+rr756zzwDAAAA2A+UHODPPvtsnHLKKXHKKadERERtbW2ccsopMWHChIiI+N3vftcc4xERH/7wh2P27NnxxBNPRP/+/ePOO++Mb3/721FTU7OHngIAAADs+3bre8CzNDY2RpcuXWLt2rXeAw4AAECra40ObfX3gAMAAAACHAAAAFIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAAS7FKAT506Nfr27RsVFRUxePDgWLhw4Q7nT5kyJY455pjo0KFDVFVVxdVXXx1/+tOfdmnDAAAAsD8qOcBnzZoVtbW1UVdXF4sXL47+/ftHTU1NvP7669uc/+CDD8a4ceOirq4uli5dGvfff3/MmjUrrr/++t3ePAAAAOwvSg7wu+66K774xS/G6NGj4/jjj49p06bFgQceGN/5zne2Of/pp5+OM844Iy688MLo27dvfOITn4gLLrjgPa+aAwAAwPtJSQG+cePGWLRoUVRXV//lAdq0ierq6pg/f/4215x++umxaNGi5uBesWJFzJkzJz71qU9t9zgbNmyIxsbGFjcAAADYn7UrZfKaNWtiy5Yt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mD59enTr1m2n102aNCm6dOnSfKuqqmrFXQIAAEDrK+kKeLdu3aJt27axevXqFuOrV6+Onj17bjX/lVdeiVdffTWGDh3aPNbU1PTnA7drF8uXL48jjjhiq3Xjx4+P2tra5vuNjY0iHAAAgP1aSQHevn37GDhwYNTX1zd/lVhTU1PU19fH5ZdfvtX8Y489Np5//vkWYzfeeGOsW7cuvvGNb2w3qsvLy6O8vLyUrQEAAMA+raQAj4iora2NUaNGxaBBg+K0006LKVOmxPr162P06NERETFy5Mjo06dPTJo0KSoqKuLEE09ssb5r164REVuNAwAAwPtZyQE+fPjweOONN2LChAnR0NAQAwYMiLlz5zZ/MNvKlSujTZtWfWs5AAAA7HfKiqIo9vYm3ktjY2N06dIl1q5dG507d97b2wEAAOB9rjU61KVqAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAASCHAAAABIIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACDBLgX41KlTo2/fvlFRURGDBw+OhQsXbnfu9OnT48wzz4yDDz44Dj744Kiurt7hfAAAAHg/KjnAZ82aFbW1tVFXVxeLFy+O/v37R01NTbz++uvbnD9v3ry44IIL4sknn4z58+dHVVVVfOITn4jf/va3u715AAAA2F+UFUVRlLJg8ODBceqpp8bdd98dERFNTU1RVVUVV1xxRYwbN+4912/ZsiUOPvjguPvuu2PkyJE7dczGxsbo0qVLrF27Njp37lzKdgEAAKBkrdGhJV0B37hxYyxatCiqq6v/8gBt2kR1dXXMnz9/px7j7bffjk2bNsUhhxyy3TkbNmyIxsbGFjcAAADYn5UU4GvWrIktW7ZEZWVli/HKyspoaGjYqce47rrronfv3i0i/m9NmjQpunTp0nyrqqoqZZsAAACwz0n9FPTJkyfHzJkz45FHHomKiortzhs/fnysXbu2+bZq1arEXQIAAMCe166Uyd26dYu2bdvG6tWrW4yvXr06evbsucO1d9xx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xe9+97vm27p16/bWU4D3VOp5/rd8Cjr7g1LP85UrVxadOnUqLr/88mL58uXFD3/4w6JHjx7Fv/zLv+ytpwDvqdTzvK6urujUqVPxve99r1ixYkXxox/9qDjiiCOK888/f289BdihdevWFc8991zx3HPPFRFR3HXXXcVzzz1XvPbaa0VRFMW4ceOKESNGNM9fsWJFceCBBxZf/epXi6VLlxZTp04t2rZtW8ydO7ek4+4TAV4URfGtb32rOOyww4r27dsXp512WrFgwYLmn5111lnFqFGjWsz//ve/Xxx99NFF+/btixNOOKGYPXt28o6hdKWc54cffngREVvd6urq8jcOJSj1z/O/JsDZX5R6nj/99NPF4MGDi/Ly8qJfv37FbbfdVmzevDl511CaUs7zTZs2FTfffHNxxBFHFBUVFUVVVVVx2WWXFX/4wx/yNw474cknn9zm37XfPa9HjRpVnHXWWVutGTBgQNG+ffuiX79+xb/927+VfNyyovCaEAAAAGhte/094AAAAPBBIMABAAAggQAHAACABAIcAAAAEghwAAAASCDAAQAAIIEABwAAgAQCHAAAABIIcAAAAEggwAEAACCBAAcAAIAEAhwAAAAS/H/RsKdJFu0GogAAAABJRU5ErkJggg==", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import networkx as nx\n", + "import matplotlib.pyplot as plt\n", + "\n", + "fig = plt.figure(figsize=(12, 12))\n", + "ax = plt.subplot(111)\n", + "ax.set_title(\"Graph - Shapes\", fontsize=10)\n", + "\n", + "# initiate graph\n", + "graph = nx.MultiGraph()\n", + "\n", + "# create edges from dataframe\n", + "graph = nx.from_pandas_edgelist(edges, source=\"from\", target=\"to\", edge_attr=\"label\")\n", + "\n", + "# update node attributes from dataframe\n", + "nodes_attr = nodes.set_index(\"index\").to_dict(orient=\"index\")\n", + "nx.set_node_attributes(graph, nodes_attr)" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "from pyvis.network import Network\n", + "\n", + "net = Network(\n", + " directed=False, neighborhood_highlight=True, bgcolor=\"white\", font_color=\"black\"\n", + ")\n", + "\n", + "# pass networkx graph to pyvis\n", + "net.from_nx(graph)\n", + "\n", + "net.inherit_edge_colors(False)\n", + "net.set_edge_smooth(\"dynamic\")\n", + "\n", + "net.repulsion()\n", + "net.show_buttons()\n", + "\n", + "# save graph as HTML\n", + "net.save_graph(\"./tmp.html\")" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "aki-prj23-transparenzregister-jVJfu35g-py3.11", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.3" + }, + "orig_nbformat": 4 + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_graph.html b/src/aki_prj23_transparenzregister/utils/networkx/network_graph.html new file mode 100644 index 0000000..d8a61cf --- /dev/null +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_graph.html @@ -0,0 +1,272 @@ + + + + + + + + + +
+

+
+ + + + + + +
+

+
+ + + + + +
+ + +
+
+ + +
+
+
0%
+
+
+
+
+
+ + +
+ + + + + diff --git a/src/aki_prj23_transparenzregister/utils/networkx/tmp.html b/src/aki_prj23_transparenzregister/utils/networkx/tmp.html new file mode 100644 index 0000000..603da1a --- /dev/null +++ b/src/aki_prj23_transparenzregister/utils/networkx/tmp.html @@ -0,0 +1,272 @@ + + + + + + + + + +
+

+
+ + + + + + +
+

+
+ + + + + +
+ + +
+
+ + +
+
+
0%
+
+
+
+
+
+ + +
+ + + + + From 6a313f9803b7442a1d29d02ca4a17cfc48011897 Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 26 Sep 2023 18:16:42 +0200 Subject: [PATCH 06/36] On branch feature/visualize-verflechtungen --- .../ui/networkx_dash.py | 42 +++++++++++++------ .../ui/networkx_dash_overall.py | 8 ++-- 2 files changed, 33 insertions(+), 17 deletions(-) diff --git a/src/aki_prj23_transparenzregister/ui/networkx_dash.py b/src/aki_prj23_transparenzregister/ui/networkx_dash.py index bdddc57..e9b39c0 100644 --- a/src/aki_prj23_transparenzregister/ui/networkx_dash.py +++ b/src/aki_prj23_transparenzregister/ui/networkx_dash.py @@ -1,7 +1,7 @@ import pandas as pd import networkx as nx import plotly.graph_objects as go -from dash import Dash, Input, Output, dcc, html, callback +from dash import Dash, Input, Output, dcc, html from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider from aki_prj23_transparenzregister.utils.sql import connector, entities @@ -32,10 +32,10 @@ def find_company_relations(company_id: int) -> pd.DataFrame: return companies_relations_df # Plotly figure -def networkGraph(company_id: int) -> go.Figure: +def networkGraph(EGDE_VAR: None) -> go.Figure: # df = find_company_relations(test_company) edges = [] - for index, row in find_company_relations(company_id).iterrows(): + for index, row in find_company_relations(test_company).iterrows(): edges.append([row["company_name"], row["connected_company_name"]]) # print(row["company_name"], row["connected_company_name"]) # print(edges) @@ -109,13 +109,31 @@ def networkGraph(company_id: int) -> go.Figure: # figure return go.Figure(data=[edge_trace, node_trace], layout=layout) -def networkx_component(company_id: int): - - layout = html.Div( - [ - - dcc.Graph(id="my-graph", figure=networkGraph(company_id)), - ] - ) - return layout +# Dash App + + +app = Dash(__name__) + +app.title = "Dash Networkx" + +app.layout = html.Div( + [ + html.I("Write your EDGE_VAR"), + html.Br(), + dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), + dcc.Graph(id="my-graph"), + ] +) + + +@app.callback( + Output("my-graph", "figure"), + [Input("EGDE_VAR", "value")], +) +def update_output(EGDE_VAR: None) -> None: + return networkGraph(EGDE_VAR) + + +if __name__ == "__main__": + app.run(debug=True) diff --git a/src/aki_prj23_transparenzregister/ui/networkx_dash_overall.py b/src/aki_prj23_transparenzregister/ui/networkx_dash_overall.py index b1ffbc6..b439414 100644 --- a/src/aki_prj23_transparenzregister/ui/networkx_dash_overall.py +++ b/src/aki_prj23_transparenzregister/ui/networkx_dash_overall.py @@ -148,16 +148,14 @@ def networkGraph(EGDE_VAR: None) -> go.Figure: app = Dash(__name__) app.title = "Dash Networkx" -# className="networkx_style" + app.layout = html.Div( - - style={'width': '49%'}, - children = [ + [ html.I("Write your EDGE_VAR"), html.Br(), # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='metric-dropdown'), dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), - dcc.Graph(id="my-graph", style={'width': '49%'}), + dcc.Graph(id="my-graph"), ] ) From e81b5fb5188fe9d2202675c956ce94fe77c617b1 Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 26 Sep 2023 20:17:56 +0200 Subject: [PATCH 07/36] Integrated NetworkX graphs into App --- .../ui/networkx_dash.py | 51 ++- .../ui/networkx_dash_overall.py | 8 +- .../ui/pages/home.py | 109 ++++-- .../ui/ui_elements.py | 368 ++++++++++++++++++ 4 files changed, 470 insertions(+), 66 deletions(-) create mode 100644 src/aki_prj23_transparenzregister/ui/ui_elements.py diff --git a/src/aki_prj23_transparenzregister/ui/networkx_dash.py b/src/aki_prj23_transparenzregister/ui/networkx_dash.py index e9b39c0..4eb961a 100644 --- a/src/aki_prj23_transparenzregister/ui/networkx_dash.py +++ b/src/aki_prj23_transparenzregister/ui/networkx_dash.py @@ -1,7 +1,7 @@ import pandas as pd import networkx as nx import plotly.graph_objects as go -from dash import Dash, Input, Output, dcc, html +from dash import Dash, Input, Output, dcc, html, callback from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider from aki_prj23_transparenzregister.utils.sql import connector, entities @@ -32,10 +32,10 @@ def find_company_relations(company_id: int) -> pd.DataFrame: return companies_relations_df # Plotly figure -def networkGraph(EGDE_VAR: None) -> go.Figure: +def networkGraph(company_id: int) -> go.Figure: # df = find_company_relations(test_company) edges = [] - for index, row in find_company_relations(test_company).iterrows(): + for index, row in find_company_relations(company_id).iterrows(): edges.append([row["company_name"], row["connected_company_name"]]) # print(row["company_name"], row["connected_company_name"]) # print(edges) @@ -113,27 +113,36 @@ def networkGraph(EGDE_VAR: None) -> go.Figure: # Dash App -app = Dash(__name__) +# app = Dash(__name__) -app.title = "Dash Networkx" +# app.title = "Dash Networkx" -app.layout = html.Div( +# app.layout = html.Div( +# [ +# html.I("Write your EDGE_VAR"), +# html.Br(), +# dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), +# dcc.Graph(id="my-graph"), +# ] +# ) +def networkx_component(company_id: int): + + layout = html.Div( [ - html.I("Write your EDGE_VAR"), - html.Br(), - dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), - dcc.Graph(id="my-graph"), + + dcc.Graph(id="my-graph", figure=networkGraph(company_id)), ] -) + ) + return layout + +# callback( +# Output("my-graph", "figure", allow_duplicate=True), +# [Input("EGDE_VAR", "value")], +# prevent_initial_call=True, +# ) +# def update_output() -> None: +# return networkGraph() -@app.callback( - Output("my-graph", "figure"), - [Input("EGDE_VAR", "value")], -) -def update_output(EGDE_VAR: None) -> None: - return networkGraph(EGDE_VAR) - - -if __name__ == "__main__": - app.run(debug=True) +# if __name__ == "__main__": +# app.run(debug=True) diff --git a/src/aki_prj23_transparenzregister/ui/networkx_dash_overall.py b/src/aki_prj23_transparenzregister/ui/networkx_dash_overall.py index b439414..b1ffbc6 100644 --- a/src/aki_prj23_transparenzregister/ui/networkx_dash_overall.py +++ b/src/aki_prj23_transparenzregister/ui/networkx_dash_overall.py @@ -148,14 +148,16 @@ def networkGraph(EGDE_VAR: None) -> go.Figure: app = Dash(__name__) app.title = "Dash Networkx" - +# className="networkx_style" app.layout = html.Div( - [ + + style={'width': '49%'}, + children = [ html.I("Write your EDGE_VAR"), html.Br(), # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='metric-dropdown'), dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), - dcc.Graph(id="my-graph"), + dcc.Graph(id="my-graph", style={'width': '49%'}), ] ) diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index 18fa631..838382e 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -1,14 +1,13 @@ """Content of home page.""" import dash -import networkx as nx +from dash import html import pandas as pd +import networkx as nx import plotly.graph_objects as go -from dash import Input, Output, callback, html +from dash import Dash, Input, Output, dcc, html, callback +from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider +from aki_prj23_transparenzregister.utils.sql import connector, entities -from aki_prj23_transparenzregister.utils.networkx.networkx_data import ( - find_all_company_relations, - find_top_companies, -) dash.register_page( __name__, @@ -21,15 +20,48 @@ dash.register_page( "/personendetails/", ], ) +def find_all_company_relations() -> pd.DataFrame: + session = connector.get_session(JsonFileConfigProvider("./secrets.json")) + query_companies = session.query(entities.Company) #.all() + query_relations = session.query(entities.CompanyRelation) # .all() + companies_df: pd.DataFrame = pd.read_sql(str(query_companies), session.bind) # type: ignore + companies_relations_df: pd.DataFrame = pd.read_sql(str(query_relations), session.bind) # type: ignore + # print(companies_relations_df) + companies_relations_df = companies_relations_df[["relation_id","company_relation_company2_id"]] + # print(companies_relations_df) + company_name = [] + connected_company_name = [] + + companies_relations_df = companies_relations_df.head() + # print(companies_relations_df) + + for _, row in companies_relations_df.iterrows(): + # print(companies_df.loc[companies_df["company_id"] == row["relation_id"]]["company_name"].values[0]) + # print("TEst") + company_name.append(companies_df.loc[companies_df["company_id"] == row["relation_id"]]["company_name"].values[0]) + + connected_company_name.append(companies_df.loc[companies_df["company_id"] == row["company_relation_company2_id"]]["company_name"].values[0]) + # print(connected_company_name) + + # print(company_name) + companies_relations_df["company_name"] = company_name + companies_relations_df["connected_company_name"] = connected_company_name + # print("Test") + # print(companies_relations_df) + return companies_relations_df # Plotly figure def networkGraph(EGDE_VAR: None) -> go.Figure: # find_all_company_relations() - + edges = [] for index, row in find_all_company_relations().iterrows(): edges.append([row["company_name"], row["connected_company_name"]]) + # print(row["company_name"], row["connected_company_name"]) + # print(edges) + # edges = df[["relation_id","company_relation_company2_id"]] + # edges = [[EGDE_VAR, "B"], ["B", "C"], ["B", "D"]] network_graph = nx.Graph() network_graph.add_edges_from(edges) pos = nx.spring_layout(network_graph) @@ -94,11 +126,12 @@ def networkGraph(EGDE_VAR: None) -> go.Figure: "mirror": True, }, } - + print(nx.eigenvector_centrality(network_graph)) measure_vector = {} network_metrics_df = pd.DataFrame() + measure_vector = nx.eigenvector_centrality(network_graph) network_metrics_df["eigenvector"] = measure_vector.values() @@ -122,42 +155,35 @@ def networkGraph(EGDE_VAR: None) -> go.Figure: return go.Figure(data=[edge_trace, node_trace], layout=layout) -df = find_top_companies() -with open("src/aki_prj23_transparenzregister/ui/assets/network_graph.html") as file: - html_content = file.read() +# Dash App +# app = Dash(__name__) + +# app.title = "Dash Networkx" + layout = html.Div( - children=[ - # NOTE lib dir created by NetworkX has to be placed in assets - html.Iframe( - src="assets/network_graph.html", - style={"height": "100vh", "width": "100vw"}, - allow="*", - ) - ] - # children = html.Div( - # children=[ - # html.Div( - # className="top_companytable_style", - # children=[ - # html.Title(title="Top Ten Unternehmen", style={"align": "mid"}), - # dash_table.DataTable(df.to_dict('records'), [{"name": i, "id": i} for i in df.columns]) - # ] - # ), - # html.Div( - # className="networkx_style", - # children=[ - # html.Header(title="Social Graph"), - # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='demo-dropdown'), - # "Text", - # dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), - # # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='metric-dropdown'), - # dcc.Graph(id="my-graph"), - # ] - # ) - # ] - # ) + + children = html.Div( + children=[ + html.Div( + className="top_companytable_style", + children=[ + html.I("Write your EDGE_VAR") + ] + ), + html.Div( + className="networkx_style", + children=[ + html.I("Write your EDGE_VAR"), + html.Br(), + # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='metric-dropdown'), + dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), + dcc.Graph(id="my-graph"), + ] + ) + ] + ) ) @@ -167,5 +193,4 @@ layout = html.Div( [Input("EGDE_VAR", "value")], ) def update_output(EGDE_VAR: None) -> None: - find_top_companies() return networkGraph(EGDE_VAR) diff --git a/src/aki_prj23_transparenzregister/ui/ui_elements.py b/src/aki_prj23_transparenzregister/ui/ui_elements.py new file mode 100644 index 0000000..39dcf93 --- /dev/null +++ b/src/aki_prj23_transparenzregister/ui/ui_elements.py @@ -0,0 +1,368 @@ +"""Dash elements.""" + +import pandas as pd +import plotly.graph_objs as go +from cachetools import TTLCache, cached +from dash import dash_table, dcc, html +from sqlalchemy.engine import Engine +from sqlalchemy.orm import Session + +from aki_prj23_transparenzregister.utils.sql import entities +from aki_prj23_transparenzregister.ui.networkx_dash import networkx_component + +COLORS = { + "light": "#edefef", + "lavender-blush": "#f3e8ee", + "ash-gray": "#bacdb0", + "cambridge-blue": "#729b79", + "paynes-gray": "#475b63", + "raisin-black": "#2e2c2f", +} + + +def get_company_data(session: Session) -> pd.DataFrame: + """Creates a session to the database and get's all available company data. + + Args: + session: A session connecting to the database. + + Returns: + A dataframe containing all available company data including the corresponding district court. + """ + query_company = session.query(entities.Company, entities.DistrictCourt.name).join( + entities.DistrictCourt + ) + engine = session.bind + if not isinstance(engine, Engine): + raise TypeError + + return pd.read_sql(str(query_company), engine, index_col="company_id") + + +def get_finance_data(session: Session) -> pd.DataFrame: + """Collects all available company data. + + Args: + session: A session connecting to the database. + + Returns: + A dataframe containing all financial data of all companies. + """ + query_finance = session.query( + entities.AnnualFinanceStatement, entities.Company.name, entities.Company.id + ).join(entities.Company) + + engine = session.bind + if not isinstance(engine, Engine): + raise TypeError + + return pd.read_sql(str(query_finance), engine) + + +@cached( # type: ignore + cache=TTLCache(maxsize=1, ttl=300), + key=lambda session: 0 if session is None else str(session.bind), +) +def get_options(session: Session | None) -> dict[int, str]: + """Collects the search options for the companies. + + Args: + session: A session connecting to the database. + + Returns: + A dict containing the company id as key and its name. + """ + if not session: + return {} + return get_company_data(session)["company_name"].to_dict() + + +def create_header(options: dict) -> html: + """Creates header for dashboard. + + Args: + options: A dictionary with company names and ids for the dropdown. + + Returns: + The html div to create the page's header including the name of the page and the search for companies. + """ + return html.Div( + className="header-wrapper", + children=[ + html.Div( + className="header-title", + children=[ + html.I( + id="home-button", + n_clicks=0, + className="bi-house-door-fill", + ), + html.H1( + className="header-title-text", + children="Transparenzregister für Kapitalgesellschaften", + ), + ], + ), + html.Div( + className="header-search", + children=[ + html.Div( + className="header-search-dropdown", + children=[ + dcc.Dropdown( + id="select_company", + options=[ + {"label": o, "value": key} + for key, o in options.items() + ], + placeholder="Suche nach Unternehmen oder Person", + ), + ], + ), + ], + ), + ], + ) + + +def create_company_header(selected_company_name: str) -> html: + """Create company header based on selected company. + + Args: + selected_company_name: The company name that has been chosen in the dropdown. + + Returns: + The html div to create the company header. + """ + return html.Div( + className="company-header", + children=[ + html.H1( + className="company-header-title", + id="id-company-header-title", + children=selected_company_name, + ), + ], + ) + + +def create_company_stats(selected_company_data: pd.Series) -> html: + """Create company stats. + + Args: + selected_company_data: A series containing all company information of the selected company. + + Returns: + The html div to create the company stats table and the three small widgets. + """ + company_data = { + "col1": ["Unternehmen", "Straße", "Stadt"], + "col2": [ + selected_company_data["company_name"], + selected_company_data["company_street"], + str( + selected_company_data["company_zip_code"] + + " " + + selected_company_data["company_city"] + ), + ], + "col3": ["Branche", "Amtsgericht", "Gründungsjahr"], + "col4": [ + selected_company_data["company_sector"], + selected_company_data["district_court_name"], + "xxx", + ], + } + df_company_data = pd.DataFrame(data=company_data) + return html.Div( + className="stats-wrapper", + children=[ + html.Div( + className="widget-large", + children=[ + html.H3( + className="widget-title", + children="Stammdaten", + ), + dash_table.DataTable( + df_company_data.to_dict("records"), + [{"name": i, "id": i} for i in df_company_data.columns], + style_table={ + "width": "90%", + "marginLeft": "auto", + "marginRight": "auto", + "paddingBottom": "20px", + "color": COLORS["raisin-black"], + }, + # hide header of table + css=[ + { + "selector": "tr:first-child", + "rule": "display: none", + }, + ], + style_cell={"textAlign": "center"}, + style_cell_conditional=[ + {"if": {"column_id": c}, "fontWeight": "bold"} + for c in ["col1", "col3"] + ], + style_data={ + "whiteSpace": "normal", + "height": "auto", + }, + ), + ], + ), + html.Div( + className="widget-small", + children=[ + html.H3( + className="widget-title", + children="Stimmung", + ), + ], + ), + html.Div( + className="widget-small", + children=[ + html.H3( + className="widget-title", + children="Aktienkurs", + ), + html.H1( + className="widget-content", + children="123", + ), + ], + ), + html.Div( + className="widget-small", + children=[ + html.H3( + className="widget-title", + children="Umsatz", + ), + html.H1( + className="widget-content", + children="1234", + ), + ], + ), + ], + ) + + +def create_tabs(selected_company_id: int, selected_finance_df: pd.DataFrame) -> html: + """Create tabs for more company information. + + Args: + selected_company_id: Id of the chosen company in the dropdown. + selected_finance_df: A dataframe containing all available finance information of the companies. + + Returns: + The html div to create the tabs of the company page. + """ + return html.Div( + className="tabs", + children=[ + dcc.Tabs( + id="tabs", + value="tab-1", + children=[ + dcc.Tab( + label="Kennzahlen", + value="tab-1", + className="tab-style", + selected_className="selected-tab-style", + children=[kennzahlen_layout(selected_finance_df)], + ), + dcc.Tab( + label="Beteiligte Personen", + value="tab-2", + className="tab-style", + selected_className="selected-tab-style", + ), + dcc.Tab( + label="Stimmung", + value="tab-3", + className="tab-style", + selected_className="selected-tab-style", + ), + dcc.Tab( + label="Verflechtungen", + value="tab-4", + className="tab-style", + selected_className="selected-tab-style", + children=[network_layout(selected_company_id)], + ), + ], + ), + html.Div(id="tabs-example-content-1"), + ], + ) + + +def kennzahlen_layout(selected_finance_df: pd.DataFrame) -> html: + """Create metrics tab. + + Args: + selected_company_id: Id of the chosen company in the dropdown. + selected_finance_df: A dataframe containing all available finance information of the companies. + + Returns: + The html div to create the metrics tab of the company page. + """ + return html.Div( + [ + dcc.Graph( + figure=financials_figure( + selected_finance_df, "annual_finance_statement_ebit" + ) + ) + ] + ) + + +def financials_figure(selected_finance_df: pd.DataFrame, metric: str) -> go.Figure: + """Creates plotly line chart for a specific company and a metric. + + Args: + selected_finance_df: A dataframe containing all finance information of the selected company. + metric: The metric that should be visualized. + + Returns: + A plotly figure showing the available metric data of the company. + """ + # create figure + fig_line = go.Figure() + # add trace for company 1 + fig_line.add_trace( + go.Scatter( + x=selected_finance_df["annual_finance_statement_date"], + y=selected_finance_df[metric], + line_color=COLORS["raisin-black"], + marker_color=COLORS["raisin-black"], + ) + ) + # set title and labels + fig_line.update_layout( + title=metric, + xaxis_title="Jahr", + yaxis_title="in Mio.€", + plot_bgcolor=COLORS["light"], + ) + return fig_line + + +def network_layout(selected_company_id: int) -> html: + """Create network tab. + + Args: + selected_company_id: Id of the chosen company in the dropdown. + + Returns: + The html div to create the network tab of the company page. + """ + selected_company_id + return networkx_component(selected_company_id) + # return html.Div([f"Netzwerk von Unternehmen mit ID: {selected_company_id}"]) From 21c9e99ae32c61ce797f52ea18121521d03dd37f Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 26 Sep 2023 21:03:35 +0200 Subject: [PATCH 08/36] Extracted Data-Extraction Metrhods into separate Files --- .../ui/networkx_dash.py | 27 ---------- .../ui/pages/home.py | 50 +++---------------- 2 files changed, 7 insertions(+), 70 deletions(-) diff --git a/src/aki_prj23_transparenzregister/ui/networkx_dash.py b/src/aki_prj23_transparenzregister/ui/networkx_dash.py index 4eb961a..bdddc57 100644 --- a/src/aki_prj23_transparenzregister/ui/networkx_dash.py +++ b/src/aki_prj23_transparenzregister/ui/networkx_dash.py @@ -109,22 +109,6 @@ def networkGraph(company_id: int) -> go.Figure: # figure return go.Figure(data=[edge_trace, node_trace], layout=layout) - -# Dash App - - -# app = Dash(__name__) - -# app.title = "Dash Networkx" - -# app.layout = html.Div( -# [ -# html.I("Write your EDGE_VAR"), -# html.Br(), -# dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), -# dcc.Graph(id="my-graph"), -# ] -# ) def networkx_component(company_id: int): layout = html.Div( @@ -135,14 +119,3 @@ def networkx_component(company_id: int): ) return layout -# callback( -# Output("my-graph", "figure", allow_duplicate=True), -# [Input("EGDE_VAR", "value")], -# prevent_initial_call=True, -# ) -# def update_output() -> None: -# return networkGraph() - - -# if __name__ == "__main__": -# app.run(debug=True) diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index 838382e..1b2977f 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -4,9 +4,10 @@ from dash import html import pandas as pd import networkx as nx import plotly.graph_objects as go -from dash import Dash, Input, Output, dcc, html, callback +from dash import Dash, Input, Output, dcc, html, callback, dash_table from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider from aki_prj23_transparenzregister.utils.sql import connector, entities +from aki_prj23_transparenzregister.utils.networkx.networkx_data import find_top_companies, find_all_company_relations dash.register_page( @@ -20,36 +21,7 @@ dash.register_page( "/personendetails/", ], ) -def find_all_company_relations() -> pd.DataFrame: - session = connector.get_session(JsonFileConfigProvider("./secrets.json")) - query_companies = session.query(entities.Company) #.all() - query_relations = session.query(entities.CompanyRelation) # .all() - companies_df: pd.DataFrame = pd.read_sql(str(query_companies), session.bind) # type: ignore - companies_relations_df: pd.DataFrame = pd.read_sql(str(query_relations), session.bind) # type: ignore - # print(companies_relations_df) - companies_relations_df = companies_relations_df[["relation_id","company_relation_company2_id"]] - # print(companies_relations_df) - company_name = [] - connected_company_name = [] - - companies_relations_df = companies_relations_df.head() - # print(companies_relations_df) - - for _, row in companies_relations_df.iterrows(): - # print(companies_df.loc[companies_df["company_id"] == row["relation_id"]]["company_name"].values[0]) - # print("TEst") - company_name.append(companies_df.loc[companies_df["company_id"] == row["relation_id"]]["company_name"].values[0]) - - connected_company_name.append(companies_df.loc[companies_df["company_id"] == row["company_relation_company2_id"]]["company_name"].values[0]) - # print(connected_company_name) - - # print(company_name) - companies_relations_df["company_name"] = company_name - companies_relations_df["connected_company_name"] = connected_company_name - # print("Test") - # print(companies_relations_df) - return companies_relations_df # Plotly figure def networkGraph(EGDE_VAR: None) -> go.Figure: @@ -58,10 +30,6 @@ def networkGraph(EGDE_VAR: None) -> go.Figure: edges = [] for index, row in find_all_company_relations().iterrows(): edges.append([row["company_name"], row["connected_company_name"]]) - # print(row["company_name"], row["connected_company_name"]) - # print(edges) - # edges = df[["relation_id","company_relation_company2_id"]] - # edges = [[EGDE_VAR, "B"], ["B", "C"], ["B", "D"]] network_graph = nx.Graph() network_graph.add_edges_from(edges) pos = nx.spring_layout(network_graph) @@ -154,14 +122,7 @@ def networkGraph(EGDE_VAR: None) -> go.Figure: # figure return go.Figure(data=[edge_trace, node_trace], layout=layout) - -# Dash App - - -# app = Dash(__name__) - -# app.title = "Dash Networkx" - +df = find_top_companies() layout = html.Div( children = html.Div( @@ -169,12 +130,14 @@ layout = html.Div( html.Div( className="top_companytable_style", children=[ - html.I("Write your EDGE_VAR") + html.I("Write your EDGE_VAR"), + dash_table.DataTable(df.to_dict('records'), [{"name": i, "id": i} for i in df.columns]) ] ), html.Div( className="networkx_style", children=[ + dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='demo-dropdown'), html.I("Write your EDGE_VAR"), html.Br(), # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='metric-dropdown'), @@ -193,4 +156,5 @@ layout = html.Div( [Input("EGDE_VAR", "value")], ) def update_output(EGDE_VAR: None) -> None: + find_top_companies() return networkGraph(EGDE_VAR) From afb1c704602549eb32a488eee888c6d015b6420e Mon Sep 17 00:00:00 2001 From: Tim Date: Sat, 30 Sep 2023 10:38:38 +0200 Subject: [PATCH 09/36] added networkX styling --- src/aki_prj23_transparenzregister/ui/pages/home.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index 1b2977f..83bfedf 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -130,18 +130,18 @@ layout = html.Div( html.Div( className="top_companytable_style", children=[ - html.I("Write your EDGE_VAR"), + html.Title(title="Top Ten Unternehmen", style={"align": "mid"}), dash_table.DataTable(df.to_dict('records'), [{"name": i, "id": i} for i in df.columns]) ] ), html.Div( className="networkx_style", children=[ + html.Header(title="Social Graph"), dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='demo-dropdown'), - html.I("Write your EDGE_VAR"), - html.Br(), - # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='metric-dropdown'), + "Text", dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), + # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='metric-dropdown'), dcc.Graph(id="my-graph"), ] ) From 5cd03306d63086d7d8ec423605c9f7a3746cd409 Mon Sep 17 00:00:00 2001 From: TrisNol Date: Sat, 30 Sep 2023 13:44:16 +0200 Subject: [PATCH 10/36] feat: NetworkX in Plotly Dash --- .../ui/pages/home.py | 77 +++++++++++-------- .../utils/enum_types.py | 32 ++++++++ 2 files changed, 77 insertions(+), 32 deletions(-) diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index 83bfedf..c82d12b 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -1,13 +1,15 @@ """Content of home page.""" import dash -from dash import html -import pandas as pd import networkx as nx +import pandas as pd import plotly.graph_objects as go -from dash import Dash, Input, Output, dcc, html, callback, dash_table -from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider -from aki_prj23_transparenzregister.utils.sql import connector, entities -from aki_prj23_transparenzregister.utils.networkx.networkx_data import find_top_companies, find_all_company_relations +from dash import Input, Output, callback, html + +from aki_prj23_transparenzregister.utils.networkx.networkx_data import ( + find_all_company_relations, + find_top_companies, +) + dash.register_page( @@ -26,7 +28,7 @@ dash.register_page( # Plotly figure def networkGraph(EGDE_VAR: None) -> go.Figure: # find_all_company_relations() - + edges = [] for index, row in find_all_company_relations().iterrows(): edges.append([row["company_name"], row["connected_company_name"]]) @@ -94,12 +96,11 @@ def networkGraph(EGDE_VAR: None) -> go.Figure: "mirror": True, }, } - + print(nx.eigenvector_centrality(network_graph)) measure_vector = {} network_metrics_df = pd.DataFrame() - measure_vector = nx.eigenvector_centrality(network_graph) network_metrics_df["eigenvector"] = measure_vector.values() @@ -122,31 +123,43 @@ def networkGraph(EGDE_VAR: None) -> go.Figure: # figure return go.Figure(data=[edge_trace, node_trace], layout=layout) + df = find_top_companies() +with open("src/aki_prj23_transparenzregister/ui/assets/network_graph.html") as file: + html_content = file.read() + + layout = html.Div( - - children = html.Div( - children=[ - html.Div( - className="top_companytable_style", - children=[ - html.Title(title="Top Ten Unternehmen", style={"align": "mid"}), - dash_table.DataTable(df.to_dict('records'), [{"name": i, "id": i} for i in df.columns]) - ] - ), - html.Div( - className="networkx_style", - children=[ - html.Header(title="Social Graph"), - dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='demo-dropdown'), - "Text", - dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), - # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='metric-dropdown'), - dcc.Graph(id="my-graph"), - ] - ) - ] - ) + children=[ + # NOTE lib dir created by NetworkX has to be placed in assets + html.Iframe( + src="assets/network_graph.html", + style={"height": "100vh", "width": "100vw"}, + allow="*", + ) + ] + # children = html.Div( + # children=[ + # html.Div( + # className="top_companytable_style", + # children=[ + # html.Title(title="Top Ten Unternehmen", style={"align": "mid"}), + # dash_table.DataTable(df.to_dict('records'), [{"name": i, "id": i} for i in df.columns]) + # ] + # ), + # html.Div( + # className="networkx_style", + # children=[ + # html.Header(title="Social Graph"), + # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='demo-dropdown'), + # "Text", + # dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), + # # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='metric-dropdown'), + # dcc.Graph(id="my-graph"), + # ] + # ) + # ] + # ) ) diff --git a/src/aki_prj23_transparenzregister/utils/enum_types.py b/src/aki_prj23_transparenzregister/utils/enum_types.py index e3bc9e7..59d6316 100644 --- a/src/aki_prj23_transparenzregister/utils/enum_types.py +++ b/src/aki_prj23_transparenzregister/utils/enum_types.py @@ -11,6 +11,38 @@ class SentimentLabel(MultiValueEnum): NEGATIVE = -1, "negative" NEUTRAL = 0, "neutral" + @staticmethod + def get_string_from_enum(value: int | None) -> str: + """Translates relation name into a RelationTypeEnum. + + If no translation can be found a warning is given. + + Args: + relation_name: The name of the relation to be translated. + + Returns: + The identified translation or None if no translation can be found. + """ + tmp = RelationTypeEnum(value) + if value is None: + raise ValueError("A relation type needs to be given.") + name = { + RelationTypeEnum.GESCHAEFTSFUEHRER: "Geschäftsführer", + RelationTypeEnum.KOMMANDITIST: "Kommanditist", + RelationTypeEnum.VORSTAND: "Vorstand", + RelationTypeEnum.PROKURIST: "Prokurist", + RelationTypeEnum.LIQUIDATOR: "Liquidator", + RelationTypeEnum.INHABER: "Inhaber", + RelationTypeEnum.PERSOENLICH_HAFTENDER_GESELLSCHAFTER: "Persönlich haftender Gesellschafter", + RelationTypeEnum.ORGANISATION: "Organisation", + RelationTypeEnum.PARTNER: "Partner", + RelationTypeEnum.DIREKTOR: "Direktor", + RelationTypeEnum.RECHTSNACHFOLGER: "Rechtsnachfolger", + }.get(tmp) + if name is not None: + return name + raise ValueError(f'Relation type "{value}" is not yet implemented!') + class FinancialKPIEnum(Enum): """Financial KPI keys.""" From 5f4f732eb2437d9ee6dd14802cc51c35d02a6a71 Mon Sep 17 00:00:00 2001 From: Tim Date: Thu, 12 Oct 2023 17:09:15 +0200 Subject: [PATCH 11/36] Added iGraph --- .../meeting-notes/meeting_notes_template.md | 21 + .../plots/first_complete_force_graph.png | Bin 0 -> 415347 bytes .../Verflechtungsanalyse/Graph.png | Bin 1257 -> 2396 bytes .../Verflechtungsanalyse/metrics/test.html | 180 + ...p_verflechtungsanalyse_with_networkx.ipynb | 38 +- .../ui/assets/network_graph.html | 62 +- .../utils/networkx/Dev.ipynb | 1622 +- .../utils/networkx/networkX_with_sql.ipynb | 923 + .../networkx/sql_alchemy_to_networkx.ipynb | 210091 +++++++++++++++ .../utils/networkx/tmp.html | 67 +- 10 files changed, 212840 insertions(+), 164 deletions(-) create mode 100644 documentations/meeting-notes/meeting_notes_template.md create mode 100644 documentations/plots/first_complete_force_graph.png create mode 100644 documentations/seminararbeiten/Verflechtungsanalyse/metrics/test.html create mode 100644 src/aki_prj23_transparenzregister/utils/networkx/networkX_with_sql.ipynb create mode 100644 src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx.ipynb diff --git a/documentations/meeting-notes/meeting_notes_template.md b/documentations/meeting-notes/meeting_notes_template.md new file mode 100644 index 0000000..80aef58 --- /dev/null +++ b/documentations/meeting-notes/meeting_notes_template.md @@ -0,0 +1,21 @@ +# Weekly *X*: DD.MM.YYYY + +## Teilnehmer +- Prof. Arinir +- Tristan Nolde +- Tim Ronneburg +- Philipp Horstenkamp +- Kim Mesewinkel-Risse +- Sascha Zhu +- Sebastian Zeleny + +## Themen + +- ABC: + - ... + +## Abgeleitete Action Items + +| Action Item | Verantwortlicher | Deadline | +|-------------|------------------|-----------------| +| Beispiel | Max Mustermann | nächstes Weekly | diff --git a/documentations/plots/first_complete_force_graph.png b/documentations/plots/first_complete_force_graph.png new file mode 100644 index 0000000000000000000000000000000000000000..afef185a999f5b8209e429036c720be12144f2db GIT binary patch literal 415347 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%0AwJF_Ea`l0=~n@8W}#}yh?Aa5F8tUX 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

wEI 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 z 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 + + + + + + + + +

+

+
+ + + + + + +
+

+
+ + + + + +
+ + +
+
+ + + +
+ + + + + \ No newline at end of file diff --git a/documentations/seminararbeiten/Verflechtungsanalyse/mockup_verflechtungsanalyse_with_networkx.ipynb b/documentations/seminararbeiten/Verflechtungsanalyse/mockup_verflechtungsanalyse_with_networkx.ipynb index fd53fa8..2a7e9d5 100644 --- a/documentations/seminararbeiten/Verflechtungsanalyse/mockup_verflechtungsanalyse_with_networkx.ipynb +++ b/documentations/seminararbeiten/Verflechtungsanalyse/mockup_verflechtungsanalyse_with_networkx.ipynb @@ -141,7 +141,7 @@ }, { "cell_type": "code", - "execution_count": 22, + "execution_count": 1, "metadata": {}, "outputs": [ { @@ -203,7 +203,7 @@ }, { "cell_type": "code", - "execution_count": 23, + "execution_count": 2, "metadata": {}, "outputs": [ { @@ -241,14 +241,14 @@ }, { "cell_type": "code", - "execution_count": 60, + "execution_count": 4, "metadata": {}, "outputs": [ { "data": { - "image/png": "iVBORw0KGgoAAAANSUhEUgAAA1gAAANYCAYAAADZn0yoAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8qNh9FAAAACXBIWXMAAAsTAAALEwEAmpwYAAB7LklEQVR4nO3deZyP9f7/8ednhtlknUF2iZKyZC/JVp1UfOtEjPpWZJsoa6LldEj1tVXI0nYsdSwRhXROcigVEWVJixGJkaOxDbMZc/3+uMb8pJmYmc/n876uz/W4327nRsNc19MpM5/n5/V+vy+fZVmWAAAAAABFFmY6AAAAAACECgoWAAAAAPgJBQsAAAAA/ISCBQAAAAB+QsECAAAAAD+hYAEAAACAn1CwAAB/cOjQIfXo0UO1atVSkyZNdN1112np0qV+u37NmjX122+/Ffrzf/jhB7Vt21aNGjXSVVddpb59+0qSZs+erYEDB/orJgAABVbMdAAAgLNYlqU777xTDzzwgObNmydJ+vnnn7Vs2bI//N6srCwVKxb8byWPPvqohgwZov/5n/+RJG3fvj3oGQAAyAsTLADA7/znP/9RRESE+vfvn/uxGjVq6JFHHpFkT4k6d+6s9u3bq0OHDjp58qQ6dOigxo0bq379+nr//fclSXv37lXdunV177336qqrrlKXLl2Umpqae82pU6fmfs73339foIwHDx5U1apVc/+5fv36uT9PSkrSrbfeqjp16mjEiBG5H09ISFDTpk119dVX65lnnsn9eM2aNTVixAjVr19fzZs3V2JioiTp8OHDuvvuu9WsWTM1a9ZMn3/+uSTpk08+UaNGjdSoUSNde+21SklJKVB2AEBoo2ABAH7n22+/VePGjf/092zZskWLFy/WJ598oqioKC1dulRbtmzRmjVrNGzYMFmWJcleyvfwww/ru+++U6lSpTR9+vTca8TFxWnLli1KSEjQxIkTC5RxyJAhat++vTp27KiXXnpJx44dy/21b775RgsXLtT27du1cOFC/fLLL5Kk5557Tl999ZW2bdumTz75RNu2bcv9nNKlS2v79u0aOHCgBg8eLEkaNGiQhgwZok2bNundd99V7969JUkTJ07UtGnT9M0332jdunWKjo4uUHYAQGijYAEA/tSAAQPUsGFDNWvWLPdjN998s8qVKyfJXlL4xBNPqEGD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L3X55ZebjgPDmGABAAAAhZSdna2HHnpITz/9NOUKkihYAAAAQKG98sorsixLjzzyiOkocAiWCAIAAACFsHv3brVo0UJffPGFrrjiCtNx4BBMsAAAAIACys7OVu/evTVy5EjKFX6HggUAAAAU0Kuvvqq0tDQNGTLEdBQ4DEsEAQAAgAL4+eef1aRJE3366aeqV6+e6ThwGCZYAAAAwEWyLEu9e/fWsGHDKFfIEwULAAAAuEhvvPGGjh49qscee8x0FDgUSwQBAACAi/DLL7+ocePGWrNmja655hrTceBQTLAAAACAC7AsS3379tWjjz5KucKfomABAAAAFzBnzhz9+uuvGjlypOkocDiWCAIAAAB/IikpSY0aNdJHH32kRo0amY4Dh6NgAQAAAPmwLEv/8z//o0aNGmnMmDGm48AFipkOAAAAADjVvHnztGfPHi1evNh0FLgEEywAAAAgD7/++qsaNmyoDz74QE2bNjUdBy5BwQIAAADOY1mW7r77bl155ZV64YUXTMeBi7BEEAAAADjPO++8o++//17z5s0zHQUuwwQLAAAAOMfhw4dVv359vf/++2rRooXpOHAZChYAAABwjm7duql69eqaMGGC6ShwIZYIAgAAADmWLFmib775RrNnzzYdBS7FBAsAAACQlJycrPr162vRokVq1aqV6ThwKQoWAAAAIOm+++5TXFycXn75ZdNR4GIsEQQAAIDnLV++XBs2bNDWrVtNR4HLMcECAACApx09elT169fX22+/rbZt25qOA5ejYAEAAMDTevbsqZiYGE2bNs10FIQAlggCAADAsz788EOtXbtW27dvNx0FIYIJFgAAADzp+PHjuuaaazR79mx16NDBdByECAoWAAAAPKlPnz4KCwvTq6++ajoKQghLBAEAAOA5q1at0kcffcTSQPhdmOkAAAAAQDClpKSoT58+eu2111SqVCnTcRBiWCIIAAAAT3n44YeVnp6uf/zjH6ajIASxRBAAAACesWbNGi1btkw7duwwHQUhiiWCAAAA8IRTp06pd+/emjlzpsqUKWM6DkIUSwQBAADgCYMGDdKRI0f01ltvmY6CEMYSQQAAAIS8devWadGiRSwNRMCxRBAAAAAhLTU1Vb169dL06dNVrlw503EQ4lgiCAAAgJA2bNgwJSUlaf78+aajwANYIggAAICQtX79es2bN48HCiNoWCIIAACAkJSenq5evXppypQpiouLMx0HHsESQQAAAISkkSNHKjExUYsXLzYdBR7CEkEAAACEnE2bNmnWrFnatm2b6SjwGJYIAgAAIKRkZGSoZ8+eeumll1SxYkXTceAxFCwAAACElLFjx+ryyy9XfHy86SjwIPZgAQAAIGRs2bJFt956q7Zu3apKlSqZjgMPYoIFAACAkJCZmamePXtqwoQJlCsYQ8ECAABASHjhhRdUtWpV3X///aajwMNYIggAAADX27Ztmzp06KCvv/5aVatWNR0HHsYECwAAAK52+vRp9ezZU//3f/9HuYJxFCwAAAC42oQJExQXF6devXqZjgKwRBAAAADu9e2336pt27bavHmzqlevbjoOwAQLAAAA7pSVlaVevXrp2WefpVzBMShYAAAAcKWXXnpJJUqUUN++fU1HAXKxRBAAAACu88MPP6hVq1bauHGjatWqZToOkIsJFgAAAFzlzJkz6tWrl5555hnKFRyHggUAAABXmTJlisLDwzVgwADTUYA/YIkgAAAAXCMxMVEtW7bUhg0bVLt2bdNxgD9gggUAAABXyM7O1kMPPaQnn3yScgXHomABAADAFaZPn67Tp0/r0UcfNR0FyBdLBAEAAOB4e/bsUbNmzfTZZ5+pbt26puMA+WKCBQAAAEezLEu9e/fWiBEjKFdwPAoWAAAAHO21115TSkqKhg4dajoKcEEsEQQAAIBj7du3T02aNNHatWt19dVXm44DXBATLAAAADiSZVnq06ePBg8eTLmCa1CwAAAA4Ej/+Mc/9Ntvv2nEiBGmowAXjSWCAAAAcJz9+/fr2muv1erVq9WgQQPTcYCLxgQLAAAAjmJZlvr166eBAwdSruA6xUwHAAAAAM711ltvaf/+/Vq6dKnpKECBsUQQAAAAjnHw4EE1bNhQ//rXv9S4cWPTcYACo2ABAADAESzL0l133aVrrrlGY8eONR0HKBSWCAIAAMARFixYoMTERC1cuNB0FKDQmGABAADAuEOHDqlBgwZasWKFmjVrZjoOUGgULAAAABjXtWtX1apVS+PGjTMdBSgSlggCAADAqEWLFmn79u166623TEcBiowJFgAAAIw5fPiwGjRooCVLlui6664zHQcoMgoWAAAAjImPj1flypU1adIk01EAv2CJIAAAAIx47733tHnzZr355pumowB+wwQL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DrlwLZ+k1yWVljRTUmoA7xUjqZ/scsXSMgCAt23YsEErVqzQzp07TUcB4EBMsFzNJ2mSpPmy90RF+vXqlhWp48fD9PHHvXPuQ7kCAHhbVlaW+vfvr4kTJ6pMmTKm4wBwIApWSOgsKVHSHbKnTUX91xomKUY+XycdPLhO8fHztH379qKGBADA9aZNm6bY2FjFx8ebjgLAoShYIaOcpMWS1krqIvtBwNEFvEZ0zud1ybnOItWte71efPFFdenSRSkpKf6LC+M4ph0ACiYpKUnPPvuspk2bxmmsAPLls3iVFaKSZR/nvlzSVklpssuTJSlbdrf2SUqXXawayj4d8EFJsX+4Wt++fXXixAnNnz+fbyoh4MCBA2revLkOHDhgOgoAuEb37t11+eWX67nnnjMdBYCDUbA846CkbZJSJGXI3q9VUlIDSZUu+NlpaWm6/vrr1adPHz388MOBDIogoGABQMGsWrVKffv21bfffquYGFPPogTgBpwi6BmVdDFFKj/R0dFatGiRrr/+ejVv3lxNmzb1XzQAABwsPT1dAwYM0NSpUylXAC6IPVi4aLVr19b06dPVtWtXHT161HQcAACCYsKECbr66qt1xx13mI4CwAVYIogCGzRokPbu3av33nuP/VguxRJBALg4u3fvVosWLbRlyxZVr17ddBwALsAECwU2YcIE/frrr5o0aZLpKAAABIxlWRo4cKBGjBhBuQJw0diDhQKLiIjQO++8o+bNm6tly5a64YYbTEdCITC8BoA/t2TJEu3bt0+DBw82HQWAizDBQqHUqFFD//jHPxQfH6/Dhw+bjoMCYmknAPy5lJQUDR48WDNmzFBERITpOABchIKFQrv99tt133336b777tOZM2dMxwEAwG9Gjx6t9u3b68YbbzQdBYDLULBQJM8++6zS09N56CIAIGRs375dc+fO1YQJE0xHAeBCFCwUSbFixbRgwQLNnDlTq1evNh0HAIAiyc7OVkJCgsaMGaMKFSqYjgPAhShYKLJKlSrp7bff1n333aekpCTTcQAAKLQ5c+YoMzNTffr0MR0FgEtRsOAX7du318MPP6zu3bsrKyvLdBwAAAosOTlZI0eO1IwZMxQeHm46DgCXomDBb5588knFxMToqaeeMh0FF4Fj2gHg90aNGqV77rlHTZo0MR0FgIvxHCz4TVhYmN566y01btxYN9xw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AZo6daqio6NNxwGAC2KChZBSq1Ytvf766+rWrZuSk5NNxwEAFNH48eNVv3593X777aajAMBF4TlYCEnDhw/Xd999p+XLlyssjPcRzpecnKwrrriCEgrA0RITE9WyZUtt2bJF1atXNx0HAC4KrzwRkl544QUdO3ZM48aNMx0FAFAIlmVp4MCBevzxxylXAFyFPVgIScWLF9fChQvVtGlTXX/99WrTpo3pSACAAliyZIn279+vwYMHm44CAAXCBAshq2rVqpozZ4569OihX3/91XQcAMBFSklJ0eDBgzVjxgwVL17cdBwAKBAKFkLaX/7yFz300EPq0aOHzpw5YzqOo7D9EoBTjR49Wh06dFDr1q1NRwGAAuOQC4S8M2fO6JZbblGrVq00ZswY03Ec4ciRI6pdu7aOHDliOgoA/M62bdt000036dtvv1X58uVNxwGAAmOChZAXHh6uefPm6c0339S///1v03EAAPnIzs5WQkKCnn32WcoVANeiYMETKlasqHnz5umBBx7QL7/8YjoOACAPs2fPVlZWlvr06WM6CgAUGgULntGmTRsNHjxY3bt31+nTp03HAQCcIzk5WaNGjdLMmTN5fiEAV+MrGDxlxIgRKlOmjEaNGmU6CgDgHCNHjlT37t117bXXmo4CAEXCc7DgKWFhYZo7d66aNGmiG264QXfeeafpSADgeevXr9fKlSu1c+dO01EAoMiYYMFzYmNjtXDhQvXt21c//fST6TjGcIAoACfIyspSQkKCJk2apNKlS5uOAwBFRsGCJ7Vo0UJPPvmkunbtqvT0dNNxgs7n85mOAACSpFdeeUVxcXHq1q2b6SgA4Bc8BwueZVmWunbtqgoVKmj69Omm4wTV0aNHVatWLR09etR0FAAeduDAATVs2FCff/65rrzyStNxAMAvmGDBs3w+n958802tWrVK8+fPNx0HADxn6NChSkhIoFwBCCkccgFPK126tBYtWqSbb75Z1157rerWrWs6EgB4wkcffaRNmzZp9uzZpqMAgF8xwYLnNWrUSM8//7y6dOmi1NRU03EAIOSlp6drwIABeuWVVxQdHW06DgD4FQULkNS7d281btxYDz/8MKfrAUCAjR8/XvXr19dtt91mOgoA+B0FC5C9H2vGjBnatGmTZs2aZTpOUFAkAZiQmJioKVOmaPLkyaajAEBAsAcLyFGiRAktXrxYN954o5o0aaKGDRuajhQwHNMOwATLsjRw4EA9/vjjqlatmuk4ABAQTLCAc1x11VV66aWX1LVrV504ccJ0HAAIKe+++67279+vwYMHm44CAAHDc7CAPPTr109Hjx7VwoULQ3Lac+zYMdWsWVPHjh0zHQWAR6SkpKhevXqaN2+eWrdubToOAAQMEywgD5MnT9auXbs0bdo001EAICT8/e9/10033US5AhDy2IMF5CEqKkqLFy/Wddddp+bNm6t58+amIwGAa23btk1vvfWWvv32W9NRACDgmGAB+bj88ss1c+ZM3XPPPTpy5IjpOADgStnZ2UpISNDYsWNVvnx503EAIOAoWMCf+Otf/6q77rpLDzzwgLKzs03H8Su2XwIIhtmzZ+vMmTPq3bu36SgAEBQULOACxo0bp99++00TJ040HcVvQvHgDgDOk5ycrCeeeEIzZsxQWBgvOQB4A6cIAhdh3759at68uRYtWhQSG7SPHz+u6tWr6/jx46ajAAhhffr0UUxMDA8VBuApHHIBXITq1atr1qxZio+P15YtW1ShQgXTkQDA0davX6+VK1dq586dpqMAQFAxrwcuUseOHfXAAw/o3nvv1ZkzZ0zHAQDHysrKUkJCgiZNmqTSpUubjgMAQUXBAgpg9OjRysrK0rPPPms6CgA41iuvvKK4uDh169bNdBQACDr2YAEFdPDgQTVp0kRz5szRzTffbDpOobAHC0CgHDhwQA0bNtQXX3yhK664wnQcAAg6JlhAAVWqVEn//Oc/df/99+vAgQOm4xQa760ACIShQ4cqISGBcgXAsyhYQCG0a9dOAwcOVPfu3XX69GnTcQqMY9oBBMJHH32kTZs26YknnjAdBQCMoWABhTRq1ChdcsklevLJJ01HAQDj0tPTNWDAAL3yyiuKjo42HQcAjKFgAYUUFhamt956SwsWLNCyZctMxwEAo8aNG6cGDRrotttuMx0FAIzikAugiNavX68777xTX375pWrWrGk6zkU5ceKEqlatqhMnTpiOAiAEJCYmqmXLlvr6669VrVo103EAwCgKFuAHL730kubNm6fPPvtMkZGRpuNcEAULQN6SJG2TlCIpU1KEpJKSGkqqlOdnWJaljh076qabbtLw4cODFRQAHIuCBfiBZVm6++67VaVKFU2dOtV0nAuiYAGwJUuaJWm5pK2SMiRFSsqW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VK5cOQoWQkpKSkq+z4rKysrK95jzcuXKmY4eAEck1ZbZo9HLStqd86N/HDhwQB9//HHuksJSpUrlTrfatWun0qVL++1eAFBYFCzABbZv36727dtr7dq1uvrqq4t8PQoW3Co1NVWJiYl5ntCXkpKi2rVr53lCX/ny5S/ymPNQskxSvMwsFYyRtED2BCswsrOztX379tzp1vr169WgQYPcwtW8efMAHygCAHmjYAEuMXv2bI0fP14bN24s8qZvChacLCMjQz/99FOeJeq3337TZZddlmeJqly5sgdL1IUMk/SqpFNBvGcJSf0kTQriPe2va5999llu4dq7d6/atWuXu5zw8ssv578PAEFBwQJcpFevXsrIyNDbb79dpBcKFCyYlpWVpb179+Z5uERSUpKqV6+e5+ES1apV45CDArEk9ZE9TQpGySohe2r2miSzZebQoUO5ywk/+ugjRUZG5k632rdvH6JLQwE4AQULcJHU1FS1bNlSAwYMUL9+/Qp9HQoWgiE7O1u//PJLniXq559/VqVKlfIsUTVr1lTx4sVNxw8hlqThkmYqsMsFYyT1l/2wY2dNiizL0s6dO3OnW5999pmuuuqq3MLVsmVLRUREmI4JIERQsACX+eGHH3TDDTfo3//+txo3blyoa1Cw4C+WZengwYN5lqjdu3crNjY2z8MlatWqpaioKNPxPWaZpAdllyx/ni4YKbtczVEg91z5U0ZGhr744ovcwrVr1y7deOONucsJr7zySpYTAig0ChbgQgsXLtQTTzyhzZs3q0yZMgX+/LS0NJUtW1bp6en+D4eQY1mWfvvtt3yPOS9RokS+x5yXKFHCdHz8zhFJfSV9KCldRXsYcZikKEm3yd7n5d4ld7/99ptWr16dW7gsy8qdbt10002Ki4szHRGAi1CwAJcaOHCgkpKS9O677xb4ndb09HSVKVOGgoXfOXbs2B9K1Nmfh4WF5XvMOUdju9Em2Uv5lsleznfx0+yMjHBFRhaX1Fn20sOLe4iwW1iWpR9//DG3bH3yySeqXbt27nSrVatWioyMNB0TgINRsACXysjI0A033KAePXpoyJAhF/lZSZK2KTMzWX37PqjZs+dJKimpoaRKAcsK5zh58uQfJlBnS1R6enqeBeqKK65QbGys6egIiGRJsyUtl7RVdtGKkr1vK1v2lMone9oVrfT0KzV27DY9/XSiIiMrm4kcZKdPn9aGDRtyC9e3336rG264IbdwXX311SwnBPA7FCzAxfbs2aMWLVro/fff13XXXZfH70iWNEv//8VThqRIWVa2Tp5MUcmSJWW/gLI/bhetTpJ6SuIFtVulpaVp9+7dee6LOnbsmC6//PLflaizP69YsSIvFD3voKRtklL0/78ulJTUQGffhLnxxhs1fPhwde7c2VRIo44ePar//Oc/uacTpqen6+abb85dTnjppZeajgjAMAoW4HLLli3TwIEDtWXLlnP2CWyU/Qyagi//kaJlv3vdWfYzdJr7My78JDMzU3v27MmzRB06dEiXXXZZnif0ValSRWFhYabjw8VmzJihTz/9VPPnzzcdxRF2796dO91as2aNqlevnrt/q3Xr1oqOjjYdEUCQUbCAEDBixAht375dH3zwlsLC+su/G9g7yn6mjXs3sLvVmTNn9PPPP+dZovbv36+qVavmuS+qevXqKlasmOn4CFGHDx9W7dq1deDAgSI/9DzUZGVladOmTbmFa+vWrWrZsmXucsIGDRrwBgfgARQsIAScPn1aTz/dUM88s0fR0Za8fgSzm2RnZ+vAgQN5ntC3Z88eVaxYMc8Sddlll/HcHhjTsWNH/e///q969OhhOoqjHT9+XGvXrs0tXMeOHctdTnjzzTerSpUqpiM6gL032F6WmikpQuwNhttRsADXsx8imp09Q2FhgXyulXMfIup0lmXp0KFDeZaoxMRElSlTJs8Sdfnll7O8CI701ltv6Z133tHy5ctNR3GVvXv3atWqVVq1apVWr16tSy+9NHe61aZNG4881iDvvcH2igtL9vcX9gbD3ShYgKtZkvpIWiDpVBDuV0JSd0mvi5L1R8nJyXkec56YmKjIyMg8T+irXbt2zmEjgHukpKSoatWq2rNnj8qVY/lwYZw5c0ZbtmzJnW599dVXatasWW7huvbaaxUeHm46ph+xNxjeQcECXG2Y7Ad8BqNcnVVCUj/Z3yi95/jx4/kec56dnZ1niapTp47Kli1rOjrgV127dtUtt9yiPn36mI4SEk6ePKlPPvkkt3D997//VYcOHXKXE9aoUcN0xEIKxMOt2RsMZ6NgAa61TFK8pFQD946RPTULzT1Zp06dUmJiYp6HS5w6dUq1a9fO85jzuLg4jjmHZyxZskRTp07VmjVrTEcJSfv3789dTrhq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9NVXX2n48OGmoygqKkrFixfXyZMnTUcB4HGXXHKJbr31Vi1evNh0FAAoFAoWYEBWVpYGDRqkiRMnKjo62nQcSSwTBOAcPXr0YJkgANeiYAEGvPbaaypXrpzuvvtu01FycdAFAKe49dZbtWPHDu3fv990FAAoMAoWEGRHjhzR3//+d02ePNlR+52YYAFwisjISN15551auHCh6SgAUGAULCDInnnmGd19991q2LCh6Si/Q8EC4CScJgjArYqZDgB4yY4dO7Rw4ULt3LnTdJQ/YIkgACdp166dDhw4oB9//FFXXHGF6TgAcNGYYAFBYlmWBg8erKefftqRRw8zwQLgJOHh4brnnnuYYgFwHQoWECTvv/++Dh48qP79+5uOkicmWACc5uwyQR7ZCcBNKFhAEKSnp2vo0KGaPHmyihcvbjpOnphgAXCaFi1aKDMzU998843pKABw0ShYQBC89NJLatCggW666SbTUfJFwQLgND6fT927d9e8efNMRwGAi0bBAgLswIEDmjhxoiZNmmQ6yp9iiSAAJ+rRo4cWLFig7Oxs01EA4KJQsIAAGzVqlPr27avLL7/cdJQ/xQQLgBNdc801KlOmjD7//HPTUQDgonBMOxBAGzZs0OrVq/X999+bjnJBTLAAONXZwy5at25tOgoAXJDP4mgeICCys7PVsmVLDRw4UPfff7/pOBdkWZaio6N19OhRRUdHm44DALl++ukntWjRQklJSY49KAgAzmKJIBAgc+fOVVhYmO677z7TUS6Kz+djmSAAR6pVq5Zq166tjz/+2HQUALggChYQACdOnNATTzyhyZMnKyzMPX/NWCYIwKnOLhMEAKdzzys/wEWee+453XLLLWrRooXpKAXCBAuAU91zzz1avny50tLSTEcBgD9FwQL8bNeuXXrzzTf1wgsvmI5SYEywADjVpZdeqiZNmmjFihWmowDAn6JgAX42bNgwPfbYY6pUqZLpKAXGBAuAk/Xo0YNlggAcj4IF+NG///1v7dy5U4MHDzYdpVAoWACc7K9//atWr16t48ePm44CAPmiYAF+cvr0aQ0ePFgvvviiIiMjTccpFJYIAnCyMmXKqF27dlq6dKnpKACQLwoW4CfTpk1TtWrV1KlTJ9NRCo0JFgCni4+P17x580zHAIB8UbAAPzh8+LCee+45vfzyy/L5fKbjFBoTLABO16lTJ23cuFGHDh0yHQUA8kTBAvzgqaee0r333qt69eqZjlIkTLAAOF1MTIzuuOMOLVq0yHQUAMgTBQsoom+++UbvvfeennnmGdNRioyCBcANeOgwACfzWZZlmQ4BuJVlWWrTpo3uvfde9evXz3ScIjt+/LiqVaumEydOmI4CAPnKzMxU5cqV9dVXX6lmzZqm4wDA7zDBAopg0aJFOnHihHr37m06il+UKlVKaWlpyszMNB0FAPIVERGhLl26aMGCBaajAMAfULCAQkpNTdVjjz2myZMnKzw83HQcv/D5fCwTBOAKLBME4FQULKCQJkyYoBYtWqhNmzamo/gVBQuAG7Ru3VrJycn69ttvTUcBgN+hYAGFsG/fPk2ZMkUTJkwwHcXvKFgA3CAsLEzdunVjigXAcShYQCGMGDFCAwcOVI0aNUxH8TuehQXALXr06KH58+eL87oAOAkFCyigTz/9VF988YUef/xx01ECggkWALdo3LixwsPDtWnTJtNRACAXBQsogDNnzmjQoEEaP368YmJiTMcJiNjYWCZYAFzB5/Nx2AUAx6FgAQXw5ptv6pJLLlG3bt1MRwmYuLg4JlgAXCM+Pl4LFy7UmTNnTEcBAEkULOCiHTt2TH/72980ZcoU+Xw+03EChiWCANykbt26uvTSS/XJJ5+YjgIAkihYwEUbPXq0OnfurGuvvdZ0lIDikAsAbsMyQQBOUsx0AMANvvvuO7399tueeN4KEywAbtOtWzdde+21euWVVxQZGWk6DgCPY4IFXIBlWRo8eLCeeOIJVahQwXScgOOQCwBuU716ddWrV0///ve/TUcBAAoWcCErVqzQvn37NHDgQNNRgoJDLgC40dlnYgGAaT6Lp/MB+crIyNA111yjqVOn6tZbbzUdJyjOnDmjyMhIpaenq1gxVhEDcIfDhw+rTp06OnDggEqUKGE6DgAPY4IF/InJkyerbt26nilXkhQeHq4yZcro6NGjpqMAwEUrX768rrvuOi1btsx0FAAeR8EC8vHrr79q/PjxevHFF01HCToOugDgRpwmCMAJKFhAPkaNGqVevXqpTp06pqMEHQddAHCjO++8U5988omOHDliOgoAD6NgAXnYtGmT/v3vf+upp54yHcUIDroA4EalSpXSLbfconfffdd0FAAeRsECzpOdna1HH31Uzz33nEqVKmU6jhEsEQTgViwT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", + "image/png": "iVBORw0KGgoAAAANSUhEUgAABKUAAASmCAYAAAD/KRjlAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy81sbWrAAAACXBIWXMAAA9hAAAPYQGoP6dpAADM3klEQVR4nOzdeZiVdd0/8PfMsMumiEu578riglruZZbt2WbPk09lm2muaZaIIoq4LwGmIiIMmJmauZuaO24gyDJkLlhqZWkoKiLbzPz+GPSnicoyc+5zZl6v6+IaPJw55317Fc685/P53lWNjY2NAQAAAIASqi46AAAAAABtj1IKAAAAgJJTSgEAAABQckopAAAAAEpOKQUAAABAySmlAAAAACg5pRQAAAAAJaeUAgAAAKDklFIAAAAAlJxSCgBokz7xiU/kqKOOKuS9DzzwwOy3336FvDcAQLlQSgEAJfevf/0rRx55ZDbbbLN06tQpa6+9dnbbbbdcdNFFmT9/ftHxVtno0aOz7bbbpmvXrunZs2e23377nH766UXHAgAoK+2KDgAAtC3PPPNMdtttt/Ts2TOnnXZa+vXrl44dO2bmzJm55JJL8tGPfjRf/vKXl/m5ixcvTvv27UuceMVcdtllOeqoozJixIjstddeWbhwYWbMmJG6urqiowEAlBWTUgBASf30pz9Nu3bt8uijj2b//ffP1ltvnU022SRf+cpXcvPNN+dLX/rS28+tqqrKRRddlC9/+ctZbbXVMmzYsNTX1+eHP/xhNt5443Tu3Dlbbrllhg8f/q73eGs97uSTT07v3r3TvXv3HHzwwVm0aNG7ntfQ0JBf/OIXWWONNbLOOutkyJAhq3x9N9xwQ/bff//88Ic/zGabbZY+ffrkf//3fzNs2LD3PPecc87Juuuum169euXQQw/N4sWL3/6zCRMmZMcdd0y3bt2yzjrr5Nvf/nZefPHFt//8nnvuSVVVVW6++eb0798/nTp1ysc//vH3lF8TJ07MHnvskc6dO2f99dfPEUcckTfeeOPtP7/wwguz+eabvz2x9o1vfGOV/x0AACwPpRQAUDJz5szJ7bffnkMPPTSrrbbaMp9TVVX1rn8eMmRIvvrVr2bmzJn5wQ9+kIaGhqy33nq5+uqr8+c//zmDBw/O8ccfn6uuuupdn3fnnXfm8ccfzz333JPf/va3ufbaa3PyySe/6zm1tbVZbbXV8sgjj+Sss87KKaeckjvuuGOVrnGdddbJww8/nGefffYDn3f33Xdn9uzZufvuu1NbW5tx48Zl3Lhxb//54sWLM3To0EyfPj3XXXdd/va3v+XAAw98z+sce+yxOffcczN58uT07t07X/rSl94ut2bPnp3Pfvaz+frXv54ZM2bkd7/7XSZOnJjDDjssSfLoo4/miCOOyCmnnJInnngif/zjH7Pnnnuu0vUDACyvqsbGxsaiQwAAbcMjjzySj3/847n22mvz1a9+9e3H11xzzSxYsCBJcuihh+bMM89M0lRQHXXUUTn//PM/8HUPO+yw/Otf/8o111yTpGlS6sYbb8zzzz+fLl26JEkuvvjiHHvssXn11VdTXV2dT3ziE6mvr8/999//9uvsvPPO2XvvvXPGGWes9DW+8MIL+drXvpaHH344W2yxRXbZZZd8/vOfzze+8Y1UV1e/ne+ee+7J7NmzU1NTkyTZf//9U11dnSuvvHKZr/voo49mp512yuuvv56uXbvmnnvuySc/+clceeWV+da3vpUkefnll7Peeutl3Lhx2X///fOjH/0oNTU1GTVq1NuvM3HixOy111554403csstt+T73/9+/v73v6dbt24rfc0AACvDpBQAULhJkyZl2rRp6dOnTxYuXPiuP9txxx3f8/xf//rXGTBgQHr37p2uXbvmkksuyXPPPfeu52y77bZvF1JJsssuu2TevHl5/vnn336sf//+7/qcdddd910rcu90//33p2vXrm//+s1vfrPM56277rp56KGHMnPmzBx55JFZsmRJvve97+Wzn/1sGhoa3n5enz593i6klvXeU6ZMyZe+9KVssMEG6datW/baa68kec917rLLLm//fo011siWW26Zxx9/PEkyffr0jBs37l2599133zQ0NOSvf/1rPv3pT2fDDTfMJptsku985zv5zW9+0yoOmgcAKoODzgGAktlss81SVVWVJ5544l2Pb7LJJkmSzp07v+dz/nvN78orr8zPf/7znHvuudlll13SrVu3nH322XnkkUdWOM9/H5peVVX1ruLonXbcccdMmzbt7X9ee+21P/C1+/btm759++anP/1pDj744Oyxxx65995788lPfvJD3/uNN97Ivvvum3333Te/+c1v0rt37zz33HPZd99933Mu1geZN29efvKTn+SII454z59tsMEG6dChQ6ZOnZp77rknt99+ewYPHpwhQ4Zk8uTJ6dmz53K/DwDAylBKAQAl06tXr3z605/OBRdckMMPP/x9z5X6IA888EB23XXX/PSnP337sdmzZ7/nedOnT8+bb775dtH18MMPp2vXrll//fVXKnvnzp2z2WabrdTnbrPNNknyrgPGP8hf/vKXzJkzJ2ecccbbeR999NFlPvfhhx/OBhtskCR55ZVX8uSTT2brrbdOkuywww7585///IG527Vrl3322Sf77LNPTjrppPTs2TN33XVXvva1ry339QEArAzrewBASV144YVZsmRJdtxxx/zud7/L448/nieeeCKXX355/vKXv7xrpW1ZNt988zz66KO57bbb8uSTT+bEE0/M5MmT3/O8RYsW5Yc//GH+/Oc/55ZbbslJJ52Uww477O1znVrKIYcckqFDh+aBBx7Is88+m4cffjjf/e5307t373et2n2Qt6aYRo4cmWeeeSY33HBDhg4dusznnnLKKbnzzjtTV1eXAw88MGuuuWb222+/JMkvf/nLPPjggznssMMybdq0PPXUU7n++uvfPuj8pptuyogRIzJt2rQ8++yzGT9+fBoaGrLllls2y78LAIAPopQCAEpq0003zWOPPZZ99tknAwcOzLbbbpsdd9wxI0eOzM9//vP3LV/e8pOf/CRf+9rX8q1vfSsf+9jHMmfOnHdNTb3lU5/6VDbffPPsueee+da3vpUvf/nLGTJkSAtd1f+3zz775OGHH843v/nNbLHFFvn617+eTp065c4770yvXr2W6zV69+6dcePG5eqrr84222yTM844I+ecc84yn3vGGWfkyCOPzIABA/Kvf/0rN954Yzp06JCk6cyse++9N08++WT22GOPbL/99hk8eHA+8pGPJEl69uyZa6+9NnvvvXe23nrrXHzxxfntb3+bPn36NM+/DACAD+DuewBAq3PggQdm7ty5ue6664qO0mLeuvveK6+84vwnAKAimZQCAAAAoOSUUgAAAACUnPU9AAAAAErOpBQAAAAAJaeUAgAAAKDklFIAAAAAlJxSCgAAAICSU0oBAAAAUHJKKQAAAABKTikFAAAAQMkppQAAAAAoOaUUAAAAACWnlAIAAACg5JRSAAAAAJScUgoAAACAklNKAQAAAFBySikAAAAASk4pBQAAAEDJKaUA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vXvnoosuynXXXZcrrrii6DgAAABQCJNSUJBvf/vbufXWWzNr1qx85CMfKToOAAAAlJRSCgry8ssvp0+fPtlhhx1y0003WeMDAACgTbG+BwVZY401cskll+SWW27JuHHjio4DAAAAJWVSCgp24IEH5g9/+EPq6uqy/vrrFx0HAAAASkIpBQWbO3du+vbtm2222Sa33XabNT4AAADaBOt7ULCePXvm0ksvzR133JFLLrmk6DgAAABQEialoEwcdNBBueKKKzJz5sxsvPHGRccBAACAFqWUgjLx2muvpV+/ftlkk01y5513prraICMAAACtl+96oUx07949Y8eOzT333JNf//rXRccBAACAFmVSCsrMYYcdlssuuywzZszIZpttVnQcAAAAaBFKKSgz8+bNy7bbbpt111039957b2pqaoqOBAAAAM3O+h6Uma5du2bcuHF58MEH86tf/aroOAAAANAiTEpBmfrZz36Wiy66KNOmTctWW21VdBwAAABoVkopKFNvvvlmtttuu/Ts2TMPPPBA2rVrV3QkAAAAaDbW96BMde7cObW1tXn00UdzzjnnFB0HAAAAmpVJKShzv/zlL/OrX/0qU6ZMSd++fYuOAwAAAM1CKQVlbsGCBRkwYEA6duyYRx55JO3bty86EgAAAKwy63tQ5jp16pTa2trMmDEjp59+etFxAAAAoFkopaAC7Ljjjhk4cGCGDh2axx57rOg4AAAAsMqs70GFWLRoUXbaaac0Njbm0UcfTYcOHYqOBAAAACvNpBRUiA4dOqS2tjaPP/54TjnllKLjAAAAwCpRSkEF2W677TJ48OCcccYZmTx5ctFxAAAAYKVZ34MKs3jx4uyyyy6ZP39+pk6dmk6dOhUdCQAAAFaYSSmoMO3bt09tbW1mz56dwYMHFx0HAAAAVopSCipQnz59csopp+Scc87Jgw8+WHQcAAAAWGHW96BCLVmyJLvvvntefvnlTJs2LV26dCk6EgAAACw3k1JQodq1a5fa2to8//zzGTRoUNFxAAAAYIUopaCCbbnllhk2bFiGDx+e++67r+g4AAAAsNys70GFq6+vzyc+8Yn84x//yIwZM9K1a9eiIwEAAMCHMikFFa6mpiZjx47Nv//97/zyl78sOg4AAAAsF6UUtAKbbbZZzjzzzFx44YW58847i44DAAAAH8r6HrQSDQ0N2WeffTJ79uzMnDkz3bt3LzoSAAAAvC+TUtBKVFdX57LLLsvLL7+cY445pug4AAAA8IGUUtCKbLTRRjn33HNz6aWX5tZbby06DgAAALwv63vQyjQ2Nuazn/1s6urqUldXl9VXX73oSAAAAPAeJqWglamqqsqll16aefPm5aijjio6DgAAACyTUgpaofXXXz/Dhw/P+PHjc8MNNxQdBwAAAN7D+h60Uo2Njfnyl7+cyZMnZ9asWenVq1fRkQAAAOBtJqWglaqqqsqoUaOyaNGiHHbYYUXHAQAAgHdRSkEr9pGPfCQjR47MlVdemWuuuaboOAAAAPA263vQyjU2NubrX/967r///syaNStrrbVW0ZEAAADApBS0dlVVVbn44ouTJD/96U+jhwYAAKAcKKWgDVhrrbVy4YUX5ve//32uvPLKouMAAACA9T1oS/7nf/4nt99+e2bNmpV111236DgAAAC0YUopaEP+85//pE+fPvnYxz6W66+/PlVVVUVHAgAAoI2yvgdtyJprrplLLrkkN954Y8aPH190HAAAANowk1LQBn33u9/NDTfckLq6uqy33npFxwEAAKANUkpBG/TKK6+kb9++6devX2699VZrfAAAAJSc9T1og1ZfffWMHj06t912W8aMGVN0HAAAANogk1LQhv3whz/M1VdfnZkzZ2bDDTcsOg4AAABtiFIK2rBXX301/fr1y+abb5477rgj1dWGJwEAACgN34FCG9ajR4+MGTMmd911Vy6++OKi4wAAANCGmJQCcsghh2T8+PGZMWNGNt1006LjAAAA0AYopYDMmzcv/fr1y/rrr5977rnHGh8AAAAtzneeQLp27ZqxY8fm/vvvz4gRI4qOAwAAQBtgUgp425FHHplLLrkk06ZNy5Zbbll0HAAAAFoxpRTwtjfeeCPbbbdd1lxzzUycODE1NTVFRwIAAKCVsr4HvG211VbLuHHj8sgjj+Tcc88tOg4AAACtmEkp4D2OPfbYjBgxIo899li22WabouMAAADQCimlgPd48803s8MOO6Rr16556KGH0q5du6IjAQAA0MpY3wPeo3Pnzqmtrc3UqVNzxhlnFB0HAACAVsikFPC+jj/++JxzzjmZPHlytt1226LjAAAA0IoopYD3tXDhwuy0006prq7OpEmT0qFDh6IjAQAA0EpY3wPeV8eOHTNu3LjMmjUrw4YNKzoOAAAArYhSCvhAO+ywQwYNGpRhw4ZlypQpRccBAACglbC+B3yoxYsXZ+edd87ixYszZcqUdOzYsehIAAAAVDiTUsCHat++fcaPH58nn3wyQ4YMKToOAAAArYBSClgu/fr1y5AhQ3LWWWfl4YcfLjoOAAAAFc76HrDclixZkl133TWvvfZaHnvssXTu3LnoSAAAAFQok1LAcmvXrl1qa2vzt7/9LSeccELRcQAAAKhgSilghWy99dY59dRTc/7552fixIlFxwEAAKBCWd8DVlh9fX323HPP/Pvf/8706dOz2mqrFR0JAACACmNSClhhNTU1GTt2bP75z3/muOOOKzoOAAAAFUgpBayULbbYIqeffnouuOCC3H333UXHAQAAoMJY3wNWWkNDQ/bee+88++yzmTFjRrp161Z0JAAAACqESSlgpVVXV+eyyy7LSy+9lGOPPbboOAAAAFQQpRSwSjbZZJOcffbZGTVqVG6//fai4wAAAFAhrO8Bq6yxsTGf+cxn8pe//CUzZ85Mz549i44EAABAmTMpBayyqqqqjBkzJq+++mqOPvroouMAAABQAZRSQLPYYIMNcv7552fs2LG56aabio4DAABAmbO+BzSbxsbGfOELX8i0adNSV1eXNdZYo+hIAAAAlCmTUkCzqaqqyujRo/Pmm2/miCOOKDoOAAAAZUwpBTSrj370oxkxYkR+85vf5A9/+EPRcQAAAChT1veAZtfY2Jj99tsvDz30UGbNmpXevXsXHQkAAIAyY1IKaHZVVVUZNWpU6uvrc+ihhxYdBwAAgDKklAJaxDrrrJMLL7wwV199da666qqi4wAAAFBmrO8BLaaxsTH7779/7r777syaNStrr7120ZEAAAAoE0opoEW99NJL6dOnT3bdddf84Q9/SFVVVdGRAAAAKAPW94AW1bt371x88cW5/vrr85vf/KboOAAAAJQJk1JASRxwwAG55ZZbUldXl49+9KNFxwEAAKBgSimgJF5++eX06dMnO+ywQ2666SZrfAAAAG2c9T2gJNZYY42MHj06t9xyS8aOHVt0HAAAAApmUgooqe9///u59tprM3PmzGywwQZFxwEAAKAgSimgpObOnZu+fftmm222yW233WaNDwAAoI2yvgeUVM+ePTNmzJjccccdGTVqVNFxAAAAKIhJKaAQBx10UK644orMnDkzG2+8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hx12WI477rj06tWr4GT1SW5NckGS29N8k1NvTUZ9JslhST6X4s+yAoDlo5QCoNk1NjbmC1/4QqZOnZq6urqsueaaRUcCWrklS5Zk/PjxGTJkSP75z3/mBz/4QQYPHpz11luv6GjLMDvJqCSjk8xd+lj7JIuX43Pf+byeSX6c5CdJNm3WhABQCkopAFrECy+8kL59++aTn/xkrr766hY4SBigqQS/9tprc8IJJ+Qvf/lL9t9//wwdOjRbbLFF0dGWQ0OSp5NMWfrrkSRT03QW1X/rkmRAkp2XfhyQZLO4bxEAlUwpBUCLufrqq7P//vtnwoQJ+b//+7+i4wCtzJ133pmBAwdm8uTJ2XfffXPaaadlhx12KDrWKmpM0yTUgiQLk3RM0ilNE1LKfQBaFz9aAaDFfPOb38wBBxyQww47LM8//3zRcYBWYvLkydlnn32yzz77pKamJnfffXf++Mc/toJCKmkqnjok6Z6k99KPHaKQAqA1UkoB0KIuuOCCdO3aNQceeGAaGhqKjgNUsMcffzxf//rXs/POO+eFF17IddddlwcffDCf+MQnio4GAKwEpRQALapnz54ZN25c7rrrrowcObLoOEAFeu655/KDH/wgffv2zZQpU1JbW5sZM2bkK1/5ivPqAKCCOVMKgJI44ogjMnr06EydOjVbb7110XGACvDSSy/ltNNOy4UXXpgePXrkxBNPzEEHHZSOHTsWHQ0AaAZKKQBKYv78+dlhhx3StWvXPPTQQ2nfvn3RkYAy9frrr+e8887LOeeck+rq6vz85z/PUUcdlW7duhUdDQBoRtb3ACiJLl26ZMKECZk2bVpOPfXUouMAZWjBggX51a9+lU022SSnn356fvKTn2T27Nk58cQTFVIA0AoppQAomZ122iknnHBChg0blkmTJhUdBygTS5YsydixY7PFFlvkmGOOyX777Zennnoq55xzTtZcc82i4wEALcT6HgAltXjx4uy666557bXX8thjj6VLly5FRwIK0tjYmD/84Q854YQT8vjjj+eb3/xmhg4dmi233LLoaABACZiUAqCk2rdvnwkTJuS5557LL3/5y6LjAAW588478/GPfzxf//rXs/766+fRRx/NVVddpZACgDZEKQVAyW211VY566yzcsEFF+SOO+4oOg5QQpMnT86nP/3p7LPPPkmayqnbbrstAwYMKDgZAFBq1vcAKERDQ0P23XffPP7445k5c2ZWX331oiMBLegvf/lLTjjhhPz+97/PNttsk2HDhuUrX/lKqqqqio4GABTEpBQAhaiurs5ll12WefPm5dBDDy06DtBCnnvuufzwhz9Mnz59Mnny5IwbNy4zZszIfvvtp5ACgDZOKQVAYdZff/38+te/zm9/+9v87ne/KzoO0Iz+85//5Oijj84WW2yRG2+8Meeff36efPLJfO9730tNTU3R8QCAMmB9D4BCNTY25lvf+lb+9Kc/pa6uLh/5yEeKjgSsgtdffz3nnXdezj333CTJsccem6OOOirdunUrOBkAUG6UUgAUbs6cOenXr1/69++fW2+91UoPVKCFCxfm4osvzqmnnprXX389hx56aAYOHJg111yz6GgAQJmyvgdA4Xr16pUxY8bktttuy8UXX1x0HGAF1NfXZ9y4cdliiy1y9NFH5ytf+UqeeuqpnHvuuQopAOADmZQCoGwcfPDBmTBhQqZNm5bNN9+86DjAB2hsbMx1112XQYMG5fHHH883vvGNDB06NFtttVXR0QCACqGUAqBszJs3L9ttt1169+6d+++/P+3atSs6ErAMd911VwYOHJhJkybl05/+dE477bTsuOOORccCACqM9T0AykbXrl0zYcKETJo0KWeeeWbRcYD/8uijj+Yzn/lMPvWpTyVJ7rzzztx+++0KKQBgpSilACgru+yyS4477rgMGTIkU6dOLToOkOQvf/lLvvnNb2annXbK3//+91x77bV5+OGHs/feexcdDQCoYNb3ACg7ixYtysc+9rEsWrQoU6ZMSadOnYqOBG3S888/n5NPPjljx47Neuutl5NPPjnf+c53UlNTU3Q0AKAVMCkFQNnp0KFDJkyYkKeffjrHH3980XGgzfnPf/6TY445Jptvvnmuv/76nHfeeXnyySdz4IEHKqQAgGZjUgqAsnXuuefm5z//ee6666588pOfLDoOtHqvv/56zj///JxzzjlJkp///Of52c9+lm7duhWcDABojZRSAJSthoaG7L333vnrX/+aGTNmpEePHkVHglZp4cKFGTVqVE499dS8+uqrOfTQQzNw4MD07t276GgAQCtmfQ+AslVdXZ1x48bllVdeyZFHHll0HGh16uvrU1tbmy233DI/+9nP8qUvfSlPPfVUzjvvPIUUANDilFIAlLWNNtoow4cPT21tbf7whz8UHQdahcbGxlx33XXp379/DjzwwOy4446pq6vLmDFjssEGGxQdDwBoI6zvAVD2Ghsb89WvfjUPPPBA6urqsvbaaxcdCSrW3XffnYEDB+aRRx7JPvvsk9NOOy077bRT0bEAgDbIpBQAZa+qqiqXXHJJqqur8+Mf/zh+ngIrbsqUKdl3332z9957p6GhIX/6059yxx13KKQAgMIopQCoCGuttVZGjx6dG2+8MZdddlnRcaBiPPHEE9l///2z44475rnnnsvvf//7PPLII/nUpz5VdDQAoI2zvgdARfnhD3+Yq666KtOnT88mm2xSdBwoW3//+99z8sknZ+zYsfnIRz6Sk08+Od/5znfSrl27oqMBACRRSgFQYV577bVsu+22WW+99XLPPfekpqam6EhQVubMmZPTTz89F1xwQbp165ZBgwbl4IMPTqdOnYqOBgDwLtb3AKgo3bt3T21tbR544IGcd955RceBsjFv3rwMHTo0m2yySUaNGpWBAwdm9uzZOeqooxRSAEBZMikFQEU69thjM2LEiEyePDn9+/cvOg4UZuHChRk1alSGDRuWuXPn5qc//WmOP/749O7du+hoAAAfSCkFQEVasGBBdtppp1RXV2fSpEnp2LFj0ZGgpOrr6/Ob3/wmgwcPzvPPP5/vfe97GTJkSDbYYIOiowEALBfrewBUpE6dOmXChAl5/PHHc9JJJxUdB0qmsbEx119/fbbddtt873vfy4ABA1JXV5fLLrtMIQUAVBSlFAAVa7vttsvJJ5+cs846KxMnTiw6DrS4e+65J7vuumv222+/rLPOOnnkkUfy+9//PltvvXXR0QAAVpj1PQAqWn19ffbcc8/861//yrRp09KtW7eiI0GzmzJlSo4//vjcfvvt2XHHHXP66adnn332KToWAMAqMSkFQEWrqanJ+PHj8+9//zvHHHNM0XGgWT3xxBPZf//9s+OOO+bZZ5/NNddck0mTJimkAIBWQSkFQMXbdNNNc95552X06NG56aabio4Dq+zvf/97DjrooPTp0ycPPfRQxowZk7q6unz9619PVVVV0fEAAJqF9T0AWoXGxsZ88YtfzJQpUzJz5sz07t276EiwwubMmZMzzjgjI0eOTNeuXTNo0KAccsgh6dSpU9HRAACanVIKgFbjhRdeSL9+/bLXXnvlmmuuMVFCxZg3b15+9atf5eyzz05DQ0OOOeaYHH300enevXvR0QAAWoz1PQBajXXXXTcXX3xxrr322lx++eVFx4EPtXDhwowcOTKbbrpphg4dmu9///uZPXt2hgwZopACAFo9k1IAtDrf+c53csMNN2TmzJnZYIMNio4D71FfX58rrrgigwcPznPPPZfvfve7GTJkSDbccMOiowEAlIxSCoBWZ+7cuenXr18233zz/OlPf0p1tcFgykNjY2NuuOGGDBo0KLNmzcpXv/rVnHrqqdlmm22KjgYAUHK+Sgeg1enZs2fGjRuXu+++OyNGjCg6DiRJ7r333uy6667Zb7/9stZaa+Xhhx/Otddeq5ACANospRQArdKnPvWpHHHEETnuuOPy5z//ueg4tGFTp07NZz/72XziE5/I4sWLc/vtt+fOO+/Mxz72saKjAQAUyvoeAK3Wm2++mR122CGrrbZaHnroobRv377oSLQhTz75ZE488cRcddVV2WKLLTJs2LB8/etfd1dIAIClTEoB0Gp17tw5EyZMyLRp0zJ06NCi49BG/OMf/8hPfvKTbLPNNnnwwQdz6aWXZtasWfnGN76hkAIAeAeTUgC0eieffHKGDh2aBx54wMoULWbOnDk588wzM3LkyKy22mo5/vjj89Of/jSdOnUqOhoAQFlSSgHQ6i1evDi77bZb5s6dm2nTpqVLly5FR6IVmTdvXoYPH56zzjor9fX1Ofroo3PMMcekR48eRUcDAChr1vcAaPXat2+fCRMm5O9//3t+8YtfFB2HVmLRokW54IILstlmm+WUU07JgQcemGeeeSannHKKQgoAYDkopQBoE7bccsucddZZ+fWvf53bb7+96DhUsPr6+kyYMCFbbbVVjjzyyHz2s5/NE088keHDh2ettdYqOh4AQMWwvgdAm9HQ0JDPfvazmTVrVmbOnJk11lij6EhUkMbGxtx4440ZNGhQ6urqst9+++XUU09Nnz59io4GAFCRTEoB0GZUV1fnsssuy/z583PooYcWHYcKct9992W33XbLV77ylay55pp56KGH8oc//EEhBQCwCpRSFakxycIkryZ5aenHhUsfB+CDrLfeevn1r3+dK6+8MldeeWXRcShzjz32WD73uc9lr732ysKFC3Pbbbflrrvuysc//vGiowEAVDzre2WvIclTSaYs/TUpydQk85fx3C5Jdkiyc5IBS39tHt0jwLs1Njbmf/7nf3LHHXdk5syZ+ehHP1p0JMrMU089lRNPPDG/+93vssUWW+TUU0/N17/+9VRX+28qAEBzUUqVrdlJLk5yaZK5Sx9rn2TxcnzuO5/XM8mPkhycZNNmTQhQyebMmZN+/fqlf//+ufXWW1NVVVV0JMrAP/7xj5xyyikZM2ZM1llnnQwZMiQHHnhg2rVrV3Q0AIBWx4/7ykp9khuTfCbJZknOz/8vpJLlK6T++3lzl77OZktf98al7wPQtvXq1StjxozJbbfdlosuuqjoOBTs5Zdfzi9/+ctsttlmueaaa3LmmWfmqaeeyo9+9COFFABACzEpVTYmJvlekmeS1KRliqO3XneTJLVJdm+B9wCoLIccckhqa2szffr0bL755kXHocTeeOONDB8+PGeddVaWLFmSo48+Osccc0x69OhRdDQAgFZPKVW4+UkGJRmepsG1Ukwx1aTprKojkwxL01lUAG3TG2+8ke222y69evXKxIkTTcW0EYsWLcro0aMzdOjQvPzyyznkkENy/PHHZ+211y46GgBAm2F9r1ATk/RJMiJNd84r1Vpd/dL3G5Gk79IcAG3TaqutlgkTJmTy5Mk544wzio5DC6uvr8/ll1+erbbaKocffnj23XffPPnkkxk+fLhCCgCgxJRShRmZZM8kz6dpaqkIDUmeW5pjZEEZAIr38Y9/PAMHDszJJ5+cKVOmFB2HFtDY2Jibbrop22+/fb7zne+kf//+mTFjRmpra7PRRhsVHQ8AoE2yvldyjUlOTTK46CDLMDRNq4TuQAW0PYsWLcrHP/7xLFiwIFOmTEnnzp2LjkQzue+++zJw4MA8+OCD2WuvvXLGGWfk4x//eNGxAADaPJNSJVeuhVSSnJimM6YA2p4OHTpkwoQJeeaZZzJo0KCi49AMpk2bls9//vPZa6+98uabb+aPf/xj7r77boUUAECZUEqV1IiUbyH1lhNjlQ9oq/r06ZPTTjst559/fu6+++6i47CSnn766fzv//5vtt9++zz99NP53e9+l0cffTT77rtvqqpMAwMAlAvreyUzMU1nN1XCv+6qJPcl2b3oIAAl19DQkL333jvPPPNMZs6cmR49ehQdieX0z3/+M6ecckrGjBmTtdZaK0OGDMmBBx6Y9u3bFx0NAIBlUEqVxPw03WXv+ZTuDnuroibJ+klmJelScBaA0nv22WfTr1+/fPWrX01tbW3RcfgQr7zySs4888yMGDEinTp1yvHHH59DDz3UuWAAAGXO+l5JDErTXe4qoZBKmnI+l+SEooMAFGLDDTfMiBEjMn78+Fx77bVFx+F9vPHGGzn99NOz8cYbZ+TIkTn66KPzzDPP5Oc//7lCCgCgApiUanH3J9krlbG299+s8QFtV2NjY772ta/l/vvvT11dXdZZZ52iI7HUokWLcumll+aUU07Jyy+/nIMPPjiDBg3K2muvXXQ0AABWgFKqRdUn2SLJs6mcKal3qkmyYZInl/4eoG156aWX0rdv3+y888654YYbHJJdsIaGhvz2t7/N4MGD89e//jX/93//l5NPPjkbb7xx0dEAAFgJ1vda1C1JnkllFlJJU+5nktxadBCAQvTu3TujR4/OTTfdlDFjxhQdp81qbGzMTTfdlO233z7/93//l759+2b69OkZP368QgoAoIIppVrUyFT+hFFNkguKDgFQmC9/+cv5wQ9+kJ/97Gd55plnio7T5tx///3ZY4898qUvfSk9e/bMgw8+mOuvvz79+vUrOhoAAKtIKdViZie5I5U7JfWW+iS3p+l6ANqm888/P2uuuWa+973vpb6+0v9erwzTpk3LF77whey5556ZP39+br311txzzz3ZZZddio4GAEAzUUq1mItT+VNSb6lOMqroEACF6d69e8aPH58HHngg5557btFxWrWnn3463/72t7P99tvnqaeeypVXXplHH300n/3sZ53pBQDQyjjovEU0JOmVZG7BOZpTzyRzoscE2rJf/OIXGT58eCZPnpz+/fsXHadV+ec//5mhQ4fm0ksvzVprrZWTTjop3//+99O+ffuiowEA0EKUUi3iiSRbFR2iBTyRprsJArRNCxcuzI477piqqqpMnjw5HTt2LDpSxXvllVdy5plnZsSIEenUqVMGDhyYww47LJ07dy46GgAALczYS4uYUnSAFtJarwtg+XTs2DGXX355/vKXv2Tw4MFFx6lo8+fPzxlnnJFNNtkkI0eOzNFHH51nnnkmxx57rEIKAKCNUEq1iClJWtu6QfsopQCSbbfdNqecckrOPvvsTJw4seg4FWfx4sW56KKLsummm2bw4ME54IADMnv27Jx66qnp2bNn0fEAACgh63stYo8krfEblT2S3Fd0CIDC1dfXZ6+99so///nP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ePHit9cGP2wa650f58+fv8zX69mz53JNY73zY/fu3Z2Twyq4P8leqYy1vXdrbEy++tVeufnmV3PQQQflhBNOyLrrrlt0LAAA2iilVIurpDNH/ltVmr75cgtwirdgwYKVupPhokWL3vNa1dXVH3j4+/t97Nq1q8Pf27zK/mHDkiXJnDldM2/elGy66RZFxwEAoI1TSpVE5a55JOcVHQRWWmNj47vuZLgih78v606G7du3f1eZtbyFljN6WhNr2QAA0FyUUiVRiQfibpCkLm8diAttSWNjY15//fWVupPhsv5K7dSp00rdybBjx44FXD0fzA0sAACguSilSqaS1vje/9bhwPtraGjIq6++ukJTWXPmzMmrr766zNdbbbXVVngqa4011ki7du1KfOVtxewkmxUdoplUJXkqyaZFBwEAoA1TSpXUyCRHFB1iOYxIcnjRIaDNWLJkyUrdyXDevHnLfL3u3buv8FRWz5493cnwQx2b5PxU9pTUW2qSHJ3krKKDAADQhimlSm5oksFFh/gAQ5OcUHQIYDksWrRohYusl19+OW+++eZ7Xquqqmql72TYNg5/b0jSK8ncgnM0p55J5qTpDEEAACg9pVTJNSYZluTEooMsw6lJjk/TWgfQWr355psrdSfDxYsXv+e1ampqVupOhquttlqFlVlPJNmq6BAt4Ik03U0QAABKTylVmJFpurtddYpdBalJ0wTA8FjZA95PY2Nj3njjjZU6/L2+/r1/x3Xo0GGlDn/v3LlzAVefJFckOaCg925JVyT536JDAADQRimlCjUxyXeSPJemYqjUqpNsmGR8HGoOtISGhoYVvpPhnDlzMnfu3GXeybBz584rVWZ16NBhFa/kmDT9MOG902KVq32azjk8p+ggAAC0UUqpws1PMihNk0qlmpp6azrqqDSt7HUpwXsCLL/6+vrMnTt3hdcMX3vttWW+XteuXVe4yFp99dXfcSfDPdL0g4TWZo803W0VAABKTylVNiYm+V6SZ9JUGrVEOfXW626SpDamo4DWZvHixSt0J8O3fv/GG28s8/V69OiRXr3WSF3ds+ncuYiJ1pbWJcm8OEsQAIAiKKXKSn2SW5NckOT2NN/k1FuTUZ9JcliSzy19DIAkWbhw4fsWV6+++mKGDTu36IgtaGGSVV1vBACAFaeUKluzk4xKMjr//xbk7bN855m883k9k/w4yU+SbNqsCQHahlfT9Hdpa/Vqku5FhwAAoA1SSpW9hiRPJ5my9NcjSaam6Syq/9YlyYAkOy/9OCDJZmmauAJg5byUZK2iQ7SgF5P0LjoEAABtkFKqIjWmaRJqQZrWLjom6ZSmCSnnggA0L5NSAADQEtp9+FMoP1VpOv/DGSAALa9T0QFaWGu/PgAAypW9LgD4QB3StB7dGnVJ05QtAACUnlIKAD5QVZIdig7RQgbE2jcAAEVRSgHAh9o5rW+iqH2argsAAIqhlAKADzUgTTeYaE0Wp+m6AACgGEopAPhQrbW8aa3XBQBAJahqbGxsLDoEAJS3hiS9kswtOEdz6plkTvx8CgCAovhKFAA+VHWSHyWpKTpIM6lJ8uP4MgAAgCKZlAKA5TI7yWZFh2gmVUmeSrJp0UEAAGjD/IgUAJbLpkk+ncqflqpJ8pkopAAAKJpSCgCW2+FJ6osOsYrqkxxWdAgAALC+BwDLrz7JFkmeTWWWUzVJNkzyZCp/4gsAgEpnUgoAlltNkto03Y2vEjUkGR+FFAAA5UApBQArZPckR6by/hNaneSoJLsVnAMAAJpY3wOAFTY/SZ8kz6cy1vhqkmyQpC5Jl4KzAABAk0r7MS8AlIEuSSakctb43lrbU0gBAFA+lFIAsFJ2TzK86BDLaXia8gIAQPlQSgHASjs8ySlFh/gQQ9OUEwAAyotSCgBWyQlpKn7K0alJBhUdAgAAlslB5wDQLEbm/9+Vr8jDz2vSdIbU8JiQAgCgnCmlAKDZTEzynSTPpYhD0Ovrk0WL1knnzlfHGVIAAJQ763sA0Gx2TzIryRFJqtI0tVQKNWlsrMq1166X7bZrl9de61+i9wUAgJWnlAKAZtUlyflJ7kuy4dLHWqqceut1N0xV1X3Zaaf788ILr+boo49uofcDAIDmo5QCgBaxe5Ink9yYZJ807+RUzdLX22fp6z+ZZPdstNFGOf/88zNmzJjcfPPNzfReAADQMpwpBQAlMTvJqCSjk8xd+lj7JIuX43Pf+byeSX6c5CdJNn3PMxsbG/PFL34xU6dOTV1dXXr16rVqsQEAoIUopQCgpBqSPJ1kytJfjySZmmT+Mp7bJcmAJDsv/TggyWb5sEHnf/7zn+nbt28++9nP5oorrmi+6AAA0IyUUgBQuMY0TUItSLIwScckndI0IVW1Uq94xRVX5IADDshVV12Vb37zm80VFAAAmo1SCgBaocbGxnzzm9/MPffck1mzZmXttdcuOhIAALyLUgoAWqmXXnopffr0ya677po//OEPqapauakrAABoCe6+BwCtVO/evXPJJZfk+uuvz+WXX150HAAAeBeTUgDQyn33u9/NDTfckLq6uqy33npFxwEAgCRKKQBo9V555ZX069cvffr0yR//+EdrfAAAlAXrewDQyq2++uoZM2ZMbr/99lxyySVFxwEAgCQmpQCgzTj44INz+eWXZ8aMGdlkk02KjgMAQBunlAKANuL1119P//79s/766+eee+5JdbWBaQAAiuOrUQBoI7p165Zx48bl/vvvz/Dhw4uOAwBAG2dSCgDamJ/97Ge56KKLMm3atGy11VZFxwEAoI1SSgFAG/Pmm29m++23T48ePfLAAw+kXbt2RUcCAKANsr4HAG1M586dU1tbm0cffTRnnXVW0XEAAGijTEoBQBs1aNCgnH322Zk8eXK23XbbouMAANDGKKUAoI1auHBhdt555yTJ5MmT06FDh4ITAQDQlljfA4A2qmPHjhk/fnwef/zxnHLKKUXHAQCgjVFKAUAbtu2222bw4ME5/fTT88gjjxQdBwCANsT6HgC0cUuWLMmuu+6a1157LY899lg6d+5cdCQAANoAk1IA0Ma1a9cutbW1+dvf/pZBgwYVHQcAgDZCKQUAZOutt85pp52WX/3qV7nvvvuKjgMAQBtgfQ8ASJLU19fnk5/8ZP7+979nxowZ6dq1a9GRAABoxUxKAQBJkpqamowdOzYvvvhijj322KLjAADQyimlAIC3bbrppjnnnHNy8cUX57bbbis6DgAArZj1PQDgXRobG7Pvvvvmz3/+c+rq6tKzZ8+iIwEA0AqZlAIA3qWqqipjxozJ66+/niOPPLLoOAAAtFJKKQDgPdZff/2MGDEi48ePz3XXXVd0HAAAWiHrewDAMjU2Nma//fbLww8/nFmzZmXNNdcsOhIAAK2ISSkAYJmqqqoyatSo1NfX55BDDomfYwEA0JyUUgDA+1pnnXVy0UUX5Zprrsnvfve7ouMAANCKWN8DAD7U//7v/+a2227LrFmzsu666xYdBwCAVkApBQB8qDlz5qRv374ZMGBAbrzxxlRVVRUdCQCACmd9DwD4UL169cro0aNz8803Z+zYsUXHAQCgFTApBQAstx/84Ae55pprMnPmzGy44YZFxwEAoIIppQCA5fbqq6+mX79+2XzzzXPHHXekutrQNQAAK8dXkgDAcuvRo0cuu+yy3HXXXbnwwguLjgMAQAUzKQUArLDDDjssY8eOzbRp07L55psXHQcAgAqklAIAVtgbb7yRbbfdNmuvvXbuu+++1NTUFB0JAIAKY30PAFhhq622Wmpra/PQQw/lvPPOKzoOAAAVyKQUALDSfvGLX2T48OGZOnVq+vTpU3QcAAAqiFIKAFhpCxYsyIABA9KpU6c8/PDDad++fdGRAACoENb3AICV1qlTp4wfPz7Tp0/PaaedVnQcAAAqiFIKAFglAwYMyKBBg3LqqadmypQpRccBAKBCWN8DAFbZokWL8vGPfzyLFi3KlClT0rFjx6IjAQBQ5kxKAQCrrEOHDqmtrc1TTz2Vk046qeg4AABUAKUUANAs+vXrl1NOOSVnn312HnzwwaLjAABQ5qzvAQDNpr6+Prvvvnv+85//ZNq0aVlttdWKjgQAQJkyKQUANJuamprU1tbmH//4RwYOHFh0HAAAyphSCgBoVltssUXOPPPMjBw5MnfddVfRcQAAKFPW9wCAZtfQ0JB99tkns2fPzsyZM9O9e/eiIwEAUGZMSgEAza66ujqXXXZZXn755Rx99NFFxwEAoAwppQCAFrHRRhvl/PPPz5gxY3LzzTcXHQcAgDJjfQ8AaDGNjY35whe+kGnTpqWuri5rrLFG0ZEAACgTJqUAgBZTVVWVSy+9NAsWLMjhhx9edBwAAMqIUgoAaFEf+chHcsEFF+SKK67INddcU3QcAADKhPU9AKDFNTY25pvf/Gbuvffe1NXVZe211y46EgAABVNKAQAl8dJLL6VPnz7Zbbfdcu2116aqqqroSAAAFMj6HgBQEr17987FF1+c6667LpdffnnRcQAAKJhJKQCgpL7zne/kxhtvTF1dXdZbb72i4wAAUBClFABQUq+88kr69u2bvn375o9//KM1PgCANsr6HgBQUquvvnrGjBmT22+/PaNHjy46DgAABTEpBQAU4ic/+Ul+85vfZMaMGdlkk02KjgMAQIkppQCAQrz++uvp379/Nthgg9x9992prjbADQDQlvjqDwAoRLdu3TJu3Ljcd999GTFiRNFxAAAoMZNSAEChjjrqqIwaNSqPPfZYttpqq6LjAABQIkopAKBQ8+fPz/bbb5+ePXvmgQceSLt27YqOBABACVjfAwAK1aVLl9TW1ubRRx/NWWedVXQcAABKxKQUAFAWjj/++JxzzjmZPHlytt1226LjAADQwpRSAEBZWLhwYXbaaadUV1dn0qRJ6dChQ9GRAABoQdb3AICy0LFjx4wfPz6zZs3K0KFDi44DAEALU0oBAGVju+22y0knnZTTTz89kyZNKjoOAAAtyPoeAFBWlixZkl133TWvv/56pk6dms6dOxcdCQCAFmBSCgAoK+3atUttbW3++te/5oQTTig6DgAALUQpBQCUna233jrDhg3L+eefn/vuu6/oOAAAtADrewBAWaqvr88nPvGJ/OMf/8iMGTPStWvXoiMBANCMTEoBAGWppqYm48aNy7///e8ce+yxRccBAKCZKaUAgLK16aab5pxzzsnFF1+c22+/veg4AAA0I+t7AEBZa2xszL777pvHH388M2fOTM+ePYuOBABAMzApBQCUtaqqqowZMyavvfZajjrqqKLjAADQTJRSAEDZW3/99TNixIjU1tbm+uuvLzoOAADNwPoeAFARGhsb85WvfCWPPPJIZs2alTXXXLPoSAAArAKTUgBARaiqqsoll1ySJUuW5JBDDomfqwEAVDalFABQMdZZZ51cdNFFueaaa/K73/2u6DgAAKwC63sAQMX5n//5n9x+++2ZNWtW1l133aLjAACwEpRSAEDFmTNnTvr06ZOddtopN9xwQ6qqqoqOBADACrK+BwBUnF69emX06NG56aabMm7cuKLjAACwEkxKAQAV6wc/+EGuueaazJw5MxtuuGHRcQAAWAFKKQCgYr366qvp169fNt9889xxxx2prjYEDgBQKXzlBgBUrB49euSyyy7LXXfdlYsuuqjoOAAArACTUgBAxTv00EMzbty4TJs2LZtvvnnRcQAAWA5KKQCg4s2bNy/bbbdd1l577dx3332pqakpOhIAAB/C+h4AUPG6du2acePG5aGHHsp5551XdBwAAJaDSSkAoNU49thjM2LEiEydOjV9+vQpOg4AAB9AKQUAtBoLFizIDjvskC5duuShhx5K+/bti44EAMD7sL4HALQanTp1yvjx4zNt2rScfvrpRccBAOADKKUAgFZlxx13zKBBgzJ06NBMnTq16DgAALwP63sAQKuzaNGifOxjH8vixYszZcqUdOzYsehIAAD8F5NSAECr06FDh4wfPz5PPvlkTjrppKLjAACwDEopAKBV6tevX0455ZScffbZefDBB4uOAwDAf7G+BwC0WkuWLMkee+yROXPmZNq0aenSpUvRkQAAWMqkFADQarVr1y61tbX5+9//noEDBxYdBwCAd1BKAQCt2hZbbJEzzjgjI0aMyN133110HAAAlrK+BwC0eg0NDfnUpz6Vv/71r5kxY0a6d+9edCQAgDbPpBQA0OpVV1dn7NixmTNnTo455pii4wAAEKUUANBGbLTRRjnvvPNy6aWX5pZbbik6DgBAm2d9DwBoMxobG/P5z38+06dPT11dXdZYY42iIwEAtFkmpQCANqOqqiqXXnpp3nzzzRx++OFFxwEAaNOUUgBAm/LRj340F1xwQa644or8/ve/LzoOAECbZX0PAGhzGhsb841vfCP33XdfZs2albXWWqvoSAAAbY5SCgBok1588cX07ds3u+22W6699tpUVVUVHQkAoE2xvgcAtElrrbVWLr744lx33XX5zW9+U3QcAIA2x6QUANCmfec738mNN96Yurq6rLfeekXHAQBoM5RSAECb9sorr6Rv377p169fbr31Vmt8AAAlYn0PAGjTVl999Vx66aW57bbbMnr06KLjAAC0GSalAACSHHTQQbniiisyY8aMbLLJJkXHAQBo9ZRSAABJXn/99fTv3z8bbrhh7rrrrlRXGygHAGhJvtoCAEjSrVu3jB07Nvfee29GjhxZdBwAgFbPpBQAwDscddRRGTVqVKZNm5Ytt9yy6DgAAK2WUgoA4B3mz5+f7bffPquvvnomTpyYdu3aFR0JAKBVsr4HAPAOXbp0SW1tbSZPnpyzzz676DgAAK2WSSkAgGUYOHBgzj333Dz66KPp379/0XEAAFodpRQAwDIsXLgwO+64Y2pqajJp0qR06NCh6EgAAK2K9T0AgGXo2LFjxo8fn1mzZmXo0KFFxwEAaHWUUgAA72P77bfP4MGDc/rpp2fy5MlFxwEAaFWs7wEAfIDFixdn1113zRtvvJEpU6akc+fORUcCAGgVTEoBAHyA9u3bp7a2Ns8880xOPPHEouMAALQaSikAgA+xzTbbZNiwYTnvvPNy//33Fx0HAKBVsL4HALAc6uvrs9dee+WFF17I9OnT07Vr16IjAQBUNJNSAADLoaamJuPGjcu//vWv/OIXvyg6DgBAxVNKAQAsp8022yxnn312Lrrootx+++1FxwEAqGjW9wAAVkBDQ0P23Xff/OUvf8nMmTPTs2fPoiMBAFQkk1IAACuguro6Y8aMyWuvvZajjjqq6DgAABVLKQUAsII22GCDDB8+PLW1tbnhhhuKjgMAUJGs7wEArITGxsZ85StfyaRJk1JXV5c111yz6EgAABXFpBQAwEqoqqrKJZdcksWLF+fQQw8tOg4AQMVRSgEArKR11lknF154Ya666qr87ne/KzoOAEBFsb4HALCKvvWtb+VPf/pT6urqsu666xYdBwCgIiilAABW0X/+85/07ds3O+20U2644YZUVVUVHQkAoOxZ3wMAWEVrrrlmLrnkktx0000ZN25c0XEAACqCSSkAgGby/e9/P7///e9TV1eXDTbYoOg4AABlTSkFANBMXn311fTr1y9bbrllbrvttlRXG0oHAHg/vlICAGgmPXr0yGWXXZY//elPufjii4uOAwBQ1kxKAQA0s0MPPTTjxo3L9OnTs9lmmxUdBwCgLCmlAACa2bx587Lttttm3XXXzb333puampqiIwEAlB3rewAAzaxr164ZN25cHnzwwZx//vlFxwEAKEsmpQAAWsjPf/7zjBw5MlOnTk2fPn2KjgMAUFaUUgAALWTBggXZYYcd0qVLlzz00ENp37590ZEAAMqG9T0AgBbSqVOn1NbWZtq0aTn99NOLjgMAUFaUUgAALWinnXbK8ccfn6FDh+axxx4rOg4AQNmwvgcA0MIWLVqUj33sY1myZEkeffTRdOzYsehIAACFMykFANDCOnTokPHjx+eJJ57IkCFDio4DAFAWlFIAACXQr1+/nHzyyTnrrLPy0EMPFR0HAKBw1vcAAEpkyZIl2X333fPyyy9n2rRp6dKlS9GRAAAKY1IKAKBE2rVrl9ra2jz//PMZOHBg0XEAAAqllAIAKKEtt9wyZ5xxRkaMGJG777676DgAAIWxvgcAUGINDQ3Ze++987e//S0zZsxI9+7di44EAFByJqUAAEqsuro6Y8eOzZw5c/Lzn/+86DgAAIVQSgEAFGDjjTfOeeedl9GjR+fWW28tOg4AQMlZ3wMAKEhjY2M+//nPZ/r06amrq8saa6xRdCQAgJIxKQUAUJCqqqpceumlefPNN/9fe3ceHnV5r3/8nY19ExRUVHYIOwSCCmFxKVVPtba2R6222lrrcupW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kaSkUlpaSl5eHg0bNmTy5MnUqVMndCRJUgpzUaUkSRLRF9unnHIKn332Ga+//rqFlLQbDRo0YNSoUcyZM4ebbropdBxJUoqzlJIkSbXejh07OOOMM5g5cyajR4+mS5cuoSNJSatfv37cfPPN/PGPf2TChAmh40iSUpjL9yRJUq0WiUT45S9/yVNPPcWrr77KCSecEDqSlPQqKioYNmwYK1euZPbs2TRt2jR0JElSCnJSSpIk1Wo33HADjz/+OI8//riFlLSHsrKyePrpp1m7di2XXHJJ6DiSpBRlKSVJkmqtESNGcNttt3H33Xfz05/+NHQcKaW0bduWBx98kKeffpp//vOfoeNIklKQy/ckSVKt9K9//YszzjiDK664gj//+c+h40gpKRKJcMYZZ/DGG29QUlLCYYcdFjqSJCmFWEpJkqRa55133uHEE0/kxz/+MU899RSZmQ6PS/tq7dq19OrViy5duvDmm2/6/5MkaY/5E0OSJNUqM2fO5NRTT+WYY47h8ccf9wW0tJ+aN2/OyJEjeeedd7jvvvtCx5EkpRAnpSRJUq2xbNkyBg4cyBFHHME777xDo0aNQkeS0sZVV13FiBEjKC4uplevXqHjSJJSgKWUJEmqFT777DMGDRpEZmYmEydO5KCDDgodSUorZWVl5OfnE4lEKC4upl69eqEjSZKSnPPqkiQp7W3atImTTjqJLVu28Prrr1tISTWgbt26jBo1isWLF3PttdeGjiNJSgGWUpIkKa1t376dH/7whyxZsoSxY8fSrl270JGktNWzZ0/uuOMO7r33Xt58883QcSRJSc7le5IkKW1VVlZy1lln8dJLL/H6668zbNiw0JGktFdZWcl3v/td3n//febMmUOLFi1CR5IkJSknpSRJUlqKRCL85je/4Z///CfPPvushZSUIJmZmTz55JNs3bqVCy64AN8DlyR9HUspSZKUlu666y7uv/9+HnzwQU477bTQcaRapXXr1jzyyCO8+OKLPPXUU6HjSJKSlMv3JElS2nnyySf5+c9/zo033shNN90UOo5Ua5177rm8+OKLzJ49m/bt24eOI0lKMpZSkiQprYwePZrvf//7nHfeeTz00ENkZGSEjiTVWhs3bqRPnz4ceuihjBs3juzs7NCRJElJxOV7kiQpbUyePJkf//jHnHzyyfz1r3+1kJICa9KkCU8//TST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", "text/plain": [ - "
" + "
" ] }, "metadata": {}, @@ -257,7 +257,7 @@ { "data": { "text/plain": [ - "
" + "
" ] }, "metadata": {}, @@ -592,29 +592,19 @@ }, { "cell_type": "code", - "execution_count": 96, + "execution_count": 7, "metadata": {}, - "outputs": [ - { - "ename": "AssertionError", - "evalue": "", - "output_type": "error", - "traceback": [ - "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[1;31mAssertionError\u001b[0m Traceback (most recent call last)", - "\u001b[1;32mc:\\Users\\Tim\\Documents\\Master\\Semester 4\\Projektgruppe\\aki_prj23_transparenzregister\\documentations\\seminararbeiten\\Verflechtungsanalyse\\mockup_verflechtungsanalyse_with_networkx.ipynb Cell 17\u001b[0m in \u001b[0;36m\u001b[1;34m()\u001b[0m\n\u001b[0;32m 1\u001b[0m net \u001b[39m=\u001b[39m Network(directed\u001b[39m=\u001b[39m\u001b[39mFalse\u001b[39;00m, neighborhood_highlight\u001b[39m=\u001b[39m\u001b[39mTrue\u001b[39;00m, bgcolor \u001b[39m=\u001b[39m \u001b[39m\"\u001b[39m\u001b[39mwhite\u001b[39m\u001b[39m\"\u001b[39m, font_color\u001b[39m=\u001b[39m\u001b[39m\"\u001b[39m\u001b[39mblack\u001b[39m\u001b[39m\"\u001b[39m)\n\u001b[0;32m 3\u001b[0m \u001b[39m# pass networkx graph to pyvis\u001b[39;00m\n\u001b[1;32m----> 4\u001b[0m net\u001b[39m.\u001b[39;49mfrom_nx(s)\n\u001b[0;32m 6\u001b[0m \u001b[39m# set edge options \u001b[39;00m\n\u001b[0;32m 7\u001b[0m net\u001b[39m.\u001b[39minherit_edge_colors(\u001b[39mFalse\u001b[39;00m)\n", - "File \u001b[1;32mc:\\Users\\Tim\\AppData\\Local\\Programs\\Python\\Python39\\lib\\site-packages\\pyvis\\network.py:689\u001b[0m, in \u001b[0;36mNetwork.from_nx\u001b[1;34m(self, nx_graph, node_size_transf, edge_weight_transf, default_node_size, default_edge_weight, show_edge_weights, edge_scaling)\u001b[0m\n\u001b[0;32m 660\u001b[0m \u001b[39mdef\u001b[39;00m \u001b[39mfrom_nx\u001b[39m(\u001b[39mself\u001b[39m, nx_graph, node_size_transf\u001b[39m=\u001b[39m(\u001b[39mlambda\u001b[39;00m x: x), edge_weight_transf\u001b[39m=\u001b[39m(\u001b[39mlambda\u001b[39;00m x: x),\n\u001b[0;32m 661\u001b[0m default_node_size \u001b[39m=\u001b[39m\u001b[39m10\u001b[39m, default_edge_weight\u001b[39m=\u001b[39m\u001b[39m1\u001b[39m, show_edge_weights\u001b[39m=\u001b[39m\u001b[39mTrue\u001b[39;00m, edge_scaling\u001b[39m=\u001b[39m\u001b[39mFalse\u001b[39;00m):\n\u001b[0;32m 662\u001b[0m \u001b[39m\"\"\"\u001b[39;00m\n\u001b[0;32m 663\u001b[0m \u001b[39m This method takes an exisitng Networkx graph and translates\u001b[39;00m\n\u001b[0;32m 664\u001b[0m \u001b[39m it to a PyVis graph format that can be accepted by the VisJs\u001b[39;00m\n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 687\u001b[0m \u001b[39m >>> nt.show(\"nx.html\")\u001b[39;00m\n\u001b[0;32m 688\u001b[0m \u001b[39m \"\"\"\u001b[39;00m\n\u001b[1;32m--> 689\u001b[0m \u001b[39massert\u001b[39;00m(\u001b[39misinstance\u001b[39m(nx_graph, nx\u001b[39m.\u001b[39mGraph))\n\u001b[0;32m 690\u001b[0m edges\u001b[39m=\u001b[39mnx_graph\u001b[39m.\u001b[39medges(data \u001b[39m=\u001b[39m \u001b[39mTrue\u001b[39;00m)\n\u001b[0;32m 691\u001b[0m nodes\u001b[39m=\u001b[39mnx_graph\u001b[39m.\u001b[39mnodes(data \u001b[39m=\u001b[39m \u001b[39mTrue\u001b[39;00m)\n", - "\u001b[1;31mAssertionError\u001b[0m: " - ] - } - ], + "outputs": [], "source": [ + "# visualize using pyvis\n", + "from pyvis.network import Network\n", + "\n", "net = Network(\n", " directed=False, neighborhood_highlight=True, bgcolor=\"white\", font_color=\"black\"\n", ")\n", "\n", "# pass networkx graph to pyvis\n", - "net.from_nx(s)\n", + "net.from_nx(graph)\n", "\n", "# set edge options\n", "net.inherit_edge_colors(False)\n", @@ -641,7 +631,7 @@ "net.show_buttons(filter_=[\"physics\"])\n", "\n", "# save graph as HTML\n", - "net.save_graph(\"./metrics/connected_components_networkx.html\")" + "net.save_graph(\"./metrics/test.html\")" ] } ], @@ -664,7 +654,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.9.13" + "version": "3.11.4" }, "orig_nbformat": 4 }, diff --git a/src/aki_prj23_transparenzregister/ui/assets/network_graph.html b/src/aki_prj23_transparenzregister/ui/assets/network_graph.html index d8a61cf..1ec428f 100644 --- a/src/aki_prj23_transparenzregister/ui/assets/network_graph.html +++ b/src/aki_prj23_transparenzregister/ui/assets/network_graph.html @@ -1,12 +1,12 @@ - + - - + +

@@ -40,7 +40,7 @@ float: left; } - + #loadingBar { position:absolute; top:0px; @@ -109,29 +109,29 @@ border-radius:72px; box-shadow: 0px 0px 10px rgba(0,0,0,0.2); } + - - + #config { float: left; width: 400px; height: 600px; } + - - +
- - + +
- +
0%
@@ -140,10 +140,10 @@
- - + +
- + - + \ No newline at end of file diff --git a/src/aki_prj23_transparenzregister/utils/networkx/Dev.ipynb b/src/aki_prj23_transparenzregister/utils/networkx/Dev.ipynb index 6d3b746..1c0c38e 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/Dev.ipynb +++ b/src/aki_prj23_transparenzregister/utils/networkx/Dev.ipynb @@ -2,7 +2,7 @@ "cells": [ { "cell_type": "code", - "execution_count": 1, + "execution_count": 38, "metadata": {}, "outputs": [], "source": [ @@ -13,17 +13,9 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 39, "metadata": {}, - "outputs": [ - { - "name": "stderr", - "output_type": "stream", - "text": [ - "\u001b[32m2023-09-30 13:33:34.846\u001b[0m | \u001b[34m\u001b[1mDEBUG \u001b[0m | \u001b[36maki_prj23_transparenzregister.utils.sql.connector\u001b[0m:\u001b[36mget_session\u001b[0m:\u001b[36m64\u001b[0m - \u001b[34m\u001b[1mConnection definition: Postgre configuration: username: postgres, password d7fd8b09788c6787d4d0aa9e549e467d, host 172.17.38.210:30432, database db_tim., Mongo configuration: username: aki_transparenzregister, password ZOh0f2KFtJXjTgBD, host stagingdbtransparenzreg.ioappzs.mongodb.net/:None, database transparenzregister.\u001b[0m\n" - ] - } - ], + "outputs": [], "source": [ "session = connector.get_session(JsonFileConfigProvider(\"../../../../secrets.json\"))\n", "query_companies = session.query(entities.Company) # .all()\n", @@ -35,7 +27,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 40, "metadata": {}, "outputs": [ { @@ -63,9 +55,19 @@ " company_hr\n", " company_court_id\n", " company_name\n", + " company_company_type\n", + " company_founding_date\n", + " company_business_purpose\n", " company_street\n", + " company_house_number\n", " company_zip_code\n", " company_city\n", + " company_longitude\n", + " company_latitude\n", + " company_pos_accuracy\n", + " company_capital_value\n", + " company_original_currency\n", + " company_capital_type\n", " company_last_update\n", " company_sector\n", " \n", @@ -77,9 +79,19 @@ " HRB 148048\n", " 1\n", " 0 10 24 Telefondienste GmbH\n", + " GMBH\n", + " 2000-09-18\n", + " Gegenstand des Unternehmens ist die Entwicklun...\n", " Deelbögenkamp\n", + " 4\n", " 22297\n", " Hamburg\n", + " 10.017700\n", + " 53.602620\n", + " 4.0\n", + " 25000.0\n", + " EURO\n", + " STAMMKAPITAL\n", " 2020-05-11\n", " None\n", " \n", @@ -89,9 +101,19 @@ " HRA 301114\n", " 2\n", " 1. Staiger Grundstücksverwaltung GmbH & Co. KG\n", - " Johannes-Bieg-Str.8\n", + " KG\n", + " 2003-07-03\n", + " None\n", + " Johannes-Bieg-Straße\n", + " 8\n", " 74391\n", " Erligheim\n", + " 9.097200\n", + " 49.022500\n", + " 4.0\n", + " 200000.0\n", + " EURO\n", + " HAFTEINLAGE\n", " 2020-05-04\n", " None\n", " \n", @@ -101,9 +123,19 @@ " HRA 720015\n", " 3\n", " 1 A Autenrieth Kunststofftechnik GmbH & Co. KG\n", + " KG\n", + " None\n", + " None\n", " Gewerbestraße\n", + " 8\n", " 72535\n", " Heroldstatt\n", + " 9.664233\n", + " 48.445633\n", + " 4.0\n", + " 146000.0\n", + " EURO\n", + " HAFTEINLAGE\n", " 2016-08-23\n", " None\n", " \n", @@ -113,9 +145,19 @@ " HRB 97262\n", " 1\n", " 01050.com GmbH\n", + " GMBH\n", + " 2006-03-02\n", + " die Entwicklung und Bereitstellung von Dienstl...\n", " Deelbögenkamp\n", + " 4\n", " 22297\n", " Hamburg\n", + " 10.017700\n", + " 53.602620\n", + " 4.0\n", + " 25000.0\n", + " EURO\n", + " STAMMKAPITAL\n", " 2020-05-13\n", " None\n", " \n", @@ -125,9 +167,19 @@ " HRA 17617\n", " 4\n", " 2. Schaper Objekt GmbH & Co. Kiel KG\n", + " KG\n", + " None\n", + " None\n", " Metro-Straße\n", + " 2\n", " 40235\n", " Düsseldorf\n", + " 6.821600\n", + " 51.230100\n", + " 4.0\n", + " 500.0\n", + " EURO\n", + " HAFTEINLAGE\n", " 2021-05-27\n", " None\n", " \n", @@ -142,6 +194,16 @@ " ...\n", " ...\n", " ...\n", + " ...\n", + " ...\n", + " ...\n", + " ...\n", + " ...\n", + " ...\n", + " ...\n", + " ...\n", + " ...\n", + " ...\n", " \n", " \n", " 3142\n", @@ -149,9 +211,19 @@ " HRB 13874\n", " 58\n", " WINGAS Holding GmbH\n", + " GMBH\n", + " 2005-01-18\n", + " Die Beteiligung an Unternehmen, die den Einkau...\n", " Königstor\n", + " 20\n", " 34117\n", " Kassel\n", + " 9.491200\n", + " 51.316600\n", + " 4.0\n", + " 25200.0\n", + " EURO\n", + " STAMMKAPITAL\n", " 2023-03-28\n", " None\n", " \n", @@ -161,9 +233,19 @@ " HRB 71591\n", " 4\n", " WohnServicePlus GmbH\n", + " GMBH\n", + " 2013-11-27\n", + " Die Erbringung von Servicedienstleistungen run...\n", " Flughafenstraße\n", + " 99\n", " 40474\n", " Düsseldorf\n", + " 6.748000\n", + " 51.269600\n", + " 4.0\n", + " 25000.0\n", + " EURO\n", + " STAMMKAPITAL\n", " 2022-03-29\n", " None\n", " \n", @@ -173,9 +255,19 @@ " HRB 5297\n", " 102\n", " Wohnungsbaugesellschaft mit beschränkter Haftu...\n", + " GMBH\n", + " 1989-07-04\n", + " Die Gesellschaft errichtet, bewirtschaftet, be...\n", " Taubenstraße\n", + " 47\n", " 47443\n", " Moers\n", + " 6.667900\n", + " 51.454200\n", + " 4.0\n", + " 6168500.0\n", + " EURO\n", + " STAMMKAPITAL\n", " 2022-02-16\n", " None\n", " \n", @@ -185,9 +277,19 @@ " HRA 48546 B\n", " 12\n", " Zalando Customer Care International SE & Co. KG\n", + " KG\n", + " 2013-08-16\n", + " None\n", " Mühlenstraße\n", + " 15\n", " 10243\n", " Berlin\n", + " 13.439400\n", + " 52.512300\n", + " 6.0\n", + " 100.0\n", + " EURO\n", + " HAFTEINLAGE\n", " 2021-11-26\n", " None\n", " \n", @@ -197,15 +299,25 @@ " HRB 382018\n", " 9\n", " zebotec GmbH\n", + " GMBH\n", + " 2002-04-03\n", + " ist Consulting und Dienstleistungen im Bereich...\n", " August-Borsig-Straße\n", + " 11\n", " 78467\n", " Konstanz\n", + " 9.164900\n", + " 47.674400\n", + " 4.0\n", + " 25000.0\n", + " EURO\n", + " STAMMKAPITAL\n", " 2021-12-15\n", " None\n", " \n", " \n", "\n", - "

3147 rows × 9 columns

\n", + "

3146 rows × 19 columns

\n", "" ], "text/plain": [ @@ -222,36 +334,88 @@ "3145 3146 HRA 48546 B 12 \n", "3146 3147 HRB 382018 9 \n", "\n", - " company_name company_street \\\n", - "0 0 10 24 Telefondienste GmbH Deelbögenkamp \n", - "1 1. Staiger Grundstücksverwaltung GmbH & Co. KG Johannes-Bieg-Str.8 \n", - "2 1 A Autenrieth Kunststofftechnik GmbH & Co. KG Gewerbestraße \n", - "3 01050.com GmbH Deelbögenkamp \n", - "4 2. Schaper Objekt GmbH & Co. Kiel KG Metro-Straße \n", - "... ... ... \n", - "3142 WINGAS Holding GmbH Königstor \n", - "3143 WohnServicePlus GmbH Flughafenstraße \n", - "3144 Wohnungsbaugesellschaft mit beschränkter Haftu... Taubenstraße \n", - "3145 Zalando Customer Care International SE & Co. KG Mühlenstraße \n", - "3146 zebotec GmbH August-Borsig-Straße \n", + " company_name company_company_type \\\n", + "0 0 10 24 Telefondienste GmbH GMBH \n", + "1 1. Staiger Grundstücksverwaltung GmbH & Co. KG KG \n", + "2 1 A Autenrieth Kunststofftechnik GmbH & Co. KG KG \n", + "3 01050.com GmbH GMBH \n", + "4 2. Schaper Objekt GmbH & Co. Kiel KG KG \n", + "... ... ... \n", + "3141 WINGAS Holding GmbH GMBH \n", + "3142 WohnServicePlus GmbH GMBH \n", + "3143 Wohnungsbaugesellschaft mit beschränkter Haftu... GMBH \n", + "3144 Zalando Customer Care International SE & Co. KG KG \n", + "3145 zebotec GmbH GMBH \n", "\n", - " company_zip_code company_city company_last_update company_sector \n", - "0 22297 Hamburg 2020-05-11 None \n", - "1 74391 Erligheim 2020-05-04 None \n", - "2 72535 Heroldstatt 2016-08-23 None \n", - "3 22297 Hamburg 2020-05-13 None \n", - "4 40235 Düsseldorf 2021-05-27 None \n", - "... ... ... ... ... \n", - "3142 34117 Kassel 2023-03-28 None \n", - "3143 40474 Düsseldorf 2022-03-29 None \n", - "3144 47443 Moers 2022-02-16 None \n", - "3145 10243 Berlin 2021-11-26 None \n", - "3146 78467 Konstanz 2021-12-15 None \n", + " company_founding_date company_business_purpose \\\n", + "0 2000-09-18 Gegenstand des Unternehmens ist die Entwicklun... \n", + "1 2003-07-03 None \n", + "2 None None \n", + "3 2006-03-02 die Entwicklung und Bereitstellung von Dienstl... \n", + "4 None None \n", + "... ... ... \n", + "3141 2005-01-18 Die Beteiligung an Unternehmen, die den Einkau... \n", + "3142 2013-11-27 Die Erbringung von Servicedienstleistungen run... \n", + "3143 1989-07-04 Die Gesellschaft errichtet, bewirtschaftet, be... \n", + "3144 2013-08-16 None \n", + "3145 2002-04-03 ist Consulting und Dienstleistungen im Bereich... \n", "\n", - "[3147 rows x 9 columns]" + " company_street company_house_number company_zip_code company_city \\\n", + "0 Deelbögenkamp 4 22297 Hamburg \n", + "1 Johannes-Bieg-Straße 8 74391 Erligheim \n", + "2 Gewerbestraße 8 72535 Heroldstatt \n", + "3 Deelbögenkamp 4 22297 Hamburg \n", + "4 Metro-Straße 2 40235 Düsseldorf \n", + "... ... ... ... ... \n", + "3141 Königstor 20 34117 Kassel \n", + "3142 Flughafenstraße 99 40474 Düsseldorf \n", + "3143 Taubenstraße 47 47443 Moers \n", + "3144 Mühlenstraße 15 10243 Berlin \n", + "3145 August-Borsig-Straße 11 78467 Konstanz \n", + "\n", + " company_longitude company_latitude company_pos_accuracy \\\n", + "0 10.017700 53.602620 4.0 \n", + "1 9.097200 49.022500 4.0 \n", + "2 9.664233 48.445633 4.0 \n", + "3 10.017700 53.602620 4.0 \n", + "4 6.821600 51.230100 4.0 \n", + "... ... ... ... \n", + "3141 9.491200 51.316600 4.0 \n", + "3142 6.748000 51.269600 4.0 \n", + "3143 6.667900 51.454200 4.0 \n", + "3144 13.439400 52.512300 6.0 \n", + "3145 9.164900 47.674400 4.0 \n", + "\n", + " company_capital_value company_original_currency company_capital_type \\\n", + "0 25000.0 EURO STAMMKAPITAL \n", + "1 200000.0 EURO HAFTEINLAGE \n", + "2 146000.0 EURO HAFTEINLAGE \n", + "3 25000.0 EURO STAMMKAPITAL \n", + "4 500.0 EURO HAFTEINLAGE \n", + "... ... ... ... \n", + "3141 25200.0 EURO STAMMKAPITAL \n", + "3142 25000.0 EURO STAMMKAPITAL \n", + "3143 6168500.0 EURO STAMMKAPITAL \n", + "3144 100.0 EURO HAFTEINLAGE \n", + "3145 25000.0 EURO STAMMKAPITAL \n", + "\n", + " company_last_update company_sector \n", + "0 2020-05-11 None \n", + "1 2020-05-04 None \n", + "2 2016-08-23 None \n", + "3 2020-05-13 None \n", + "4 2021-05-27 None \n", + "... ... ... \n", + "3141 2023-03-28 None \n", + "3142 2022-03-29 None \n", + "3143 2022-02-16 None \n", + "3144 2021-11-26 None \n", + "3145 2021-12-15 None \n", + "\n", + "[3146 rows x 19 columns]" ] }, - "execution_count": 3, + "execution_count": 40, "metadata": {}, "output_type": "execute_result" } @@ -262,7 +426,7 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 41, "metadata": {}, "outputs": [], "source": [ @@ -272,17 +436,9 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": 42, "metadata": {}, "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "{'company_1': {'label': '0 10 24 Telefondienste GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_1': {'label': 'Tetau, Nicolas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_2': {'label': 'Dammast, Lutz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_2': {'label': '1. Staiger Grundstücksverwaltung GmbH & Co. KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_3': {'label': 'Tutsch, Rosemarie', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_4': {'label': 'Staiger, Marc', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_5': {'label': 'Staiger, Michaela', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_6': {'label': 'Staiger, Margarete', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_7': {'label': 'Staiger, Bruno', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_8': {'label': 'Hofmann, Nicole', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_3': {'label': '1 A Autenrieth Kunststofftechnik GmbH & Co. KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_9': {'label': 'Autenrieth, Steffen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_10': {'label': 'Bischoff, Stefanie', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_4': {'label': '01050.com GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_5': {'label': '2. Schaper Objekt GmbH & Co. Kiel KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_2213': {'label': 'Multi-Center Warenvertriebs GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_6': {'label': 'AASP Filmproduktionsgesellschaft mbH & Co. Leonie KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_11': {'label': 'Achilles, Christel', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_12': {'label': 'Ackermann, Wilhelm', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_13': {'label': 'Ahrens, Harald', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_14': {'label': 'Al Sibai, Mohamed Maged', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_15': {'label': 'Al-Bazaz, Salim', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_16': {'label': 'Attawar, Marina', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_17': {'label': 'Babic-Pavicic, Ankica', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_18': {'label': 'Bak, Ingo', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_19': {'label': 'Becker, Christoph', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_20': {'label': 'Becker, Olaf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_21': {'label': 'Berg, Rainer', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_22': {'label': 'Berkhout, Pieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_23': {'label': 'Berns, Bernhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_24': {'label': 'Betz, Franz-Hartwig', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_25': {'label': 'Birken, Claus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_26': {'label': 'Blessing, Helmut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_27': {'label': 'Bohnet, Heinz G.', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_28': {'label': 'Boldt, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_29': {'label': 'Bone-Winkel, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_30': {'label': 'Bongartz, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_31': {'label': 'Bongartz, Heinz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_32': {'label': 'Brasse, Hans-Dieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_33': {'label': 'Breman, Frank', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_34': {'label': 'Bremer, Harald C. H.', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_35': {'label': 'Bruns, Franz-Josef', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_36': {'label': 'Busch jun., Norbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_37': {'label': 'Butter, Georg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_38': {'label': 'Butz-Scharf, Kerstin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_39': {'label': 'Bös, Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_40': {'label': 'Canis, Volker', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_41': {'label': 'Comberg, Alfred', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_42': {'label': 'de las Heras, Günther', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_43': {'label': 'Delkeskamp, Claus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_44': {'label': 'Delkeskamp, Stefan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_45': {'label': 'Delkeskamp, Susanne', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_46': {'label': 'Dellhofen, Jens', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_47': {'label': 'Demler, Hans Adolf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_48': {'label': 'Dimitrov, Rumen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_49': {'label': 'Dittmann, Steffen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_50': {'label': 'Dohmen, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_51': {'label': 'Dornieden, Ulrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_52': {'label': 'Dorsch, Andreas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_53': {'label': 'Dutsch, Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_54': {'label': 'Dückerhoff, Helmut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_55': {'label': 'Eckhard, Matthias', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_56': {'label': 'Erren, Walter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_57': {'label': 'Esch, Hans', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_58': {'label': 'Ewald, Bettina', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_59': {'label': 'Ewald, Hans Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_60': {'label': 'Feindt, Helmut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_61': {'label': 'Fleischhut, Jochen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_62': {'label': 'Franke, Jochen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_63': {'label': 'Frey, Bruno', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_64': {'label': 'Fricke, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_65': {'label': 'Friedrichsen, Volker', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_66': {'label': 'Frotz, Hans', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_67': {'label': 'Gabrys, Gregor', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_68': {'label': 'Gann, Horst', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_69': {'label': 'Gassner, Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_70': {'label': 'Gebhardt, Brunhild', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_71': {'label': 'Gerhartz, Peter J.', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_72': {'label': 'Gerten, Georg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_73': {'label': 'Glatzel, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_74': {'label': 'Gorissen, Reinhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_75': {'label': 'Großkreutz, Axel', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_76': {'label': 'Grünke, Friedrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_77': {'label': 'Göhringer, Günther', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_78': {'label': 'Haar, Klaus-Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_79': {'label': 'Hamann, Knud', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_80': {'label': 'Hansen, Joachim', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_81': {'label': 'Haueisen, Bernd', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_82': {'label': 'Haug, Arthur', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_83': {'label': 'Hebeler, Robert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_84': {'label': 'Hefehäuser, Hans Willi', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_85': {'label': 'Heft, Frank', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_86': {'label': 'Helmig, Werner Dieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_87': {'label': 'Helmig, Ursula', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_88': {'label': 'Helmig, Markus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_89': {'label': 'Hemmelgarn, Udo', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_90': {'label': 'Hess, Kurt', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_91': {'label': 'Heyser, Sylvia', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_92': {'label': 'Hiebel, Joachim', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_93': {'label': 'Hilgers, Benno J.', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_94': {'label': 'Hottner, Rainer', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_95': {'label': 'Hunert, Horst', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_96': {'label': 'Hölker, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_97': {'label': 'Höne, Heinz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_98': {'label': 'Hötte, Josef', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_99': {'label': 'Hübner, Detlef W.', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_100': {'label': 'Jochheim, Sabine', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_101': {'label': 'Joenck, Uwe', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_102': {'label': 'Jürgens, Christian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_103': {'label': 'Kabel, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_104': {'label': 'Kahler, Wilhelm', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_105': {'label': 'Kalweit, Alma', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_106': {'label': 'Kamrath, Franz-Josef', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_107': {'label': 'Kaul, Gerd', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_108': {'label': 'Kemper, Kurt', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_109': {'label': 'Kerpen, Hans-Günther', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_110': {'label': 'Kerpen, Edith', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_111': {'label': 'Klein, Manfred', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_112': {'label': 'Klöcker, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_113': {'label': 'Kockskaemper, Andreas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_114': {'label': 'Konopka, Reiner', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_115': {'label': 'Koppe, Heinz-Dieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_116': {'label': 'Kotobi, Nasir', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_117': {'label': 'Kramer, Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_118': {'label': 'Krause, Hermann', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_119': {'label': 'Kross, Klaus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_120': {'label': 'Krätzig, Bernhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_121': {'label': 'Kunze, Stephan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_122': {'label': 'Kurzke, Robert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_123': {'label': 'Köll, Jens Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_124': {'label': 'Langenberger, Barbara', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_125': {'label': 'Lehnen, Monika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_126': {'label': 'Lehnert, Fred', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_127': {'label': 'Lempka, Herbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_128': {'label': 'Leyhausen, Rudolf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_129': {'label': 'Leyhausen, Rolf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_130': {'label': 'Lindenblatt, Ekkehard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_131': {'label': 'Lubach, Dietrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_132': {'label': 'Luksch, Helmut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_133': {'label': 'Luserke, Edith', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_134': {'label': 'Löser, Volker', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_135': {'label': 'Löwe, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_136': {'label': 'Lühe, Erik', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_137': {'label': 'Lüke, Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_138': {'label': 'Machill, Josef', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_139': {'label': 'Maier, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_140': {'label': 'Mann, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_141': {'label': 'Mattern, Coletta', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_142': {'label': 'Matuk, Zein-El Ibad', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_143': {'label': 'Maurer, Manfred', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_144': {'label': 'Mayer, Dieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_145': {'label': 'Melcher, Herbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_146': {'label': 'Meyer, Andrea', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_147': {'label': 'Milde, Rolf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_148': {'label': 'Mirgel, Gerd', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_149': {'label': 'Mohrenweis, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_150': {'label': 'Moosecker, Karlheinz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_151': {'label': 'Morbitzer, Holger', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_152': {'label': 'Morgenstern, Erika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_153': {'label': 'Munsche, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_154': {'label': 'Männlein, Ralf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_155': {'label': 'Möller, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_156': {'label': 'Müller-Methling, Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_157': {'label': 'Nagel, Klaus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_158': {'label': 'Neumann, Rainer', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_159': {'label': 'Neumann, Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_160': {'label': 'Nicklas, Ann', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_161': {'label': 'Niederschuh, Gerd', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_162': {'label': 'Nill, Axel', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_163': {'label': 'Nonhoff, Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_164': {'label': 'Oberheiden, Ralf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_165': {'label': 'Ortmeier, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_166': {'label': 'Otto, Andreas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_167': {'label': 'Paschedag, Dieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_168': {'label': 'Paulus, Alexander F.', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_169': {'label': 'Pawlitzek, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_170': {'label': 'Peitz, Gregor', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_171': {'label': 'Pennekamp, Richard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_172': {'label': 'Platt, Norbert A.', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_173': {'label': 'Platzgummer, Günther', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_174': {'label': 'Plüth, Klaus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_175': {'label': 'Pohle, Klaus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_176': {'label': 'Polzar, Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_177': {'label': 'Pütter, Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_178': {'label': 'Quasdorf, Lutz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_179': {'label': 'Raba, Manfred', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_180': {'label': 'Reitz, Ulrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_181': {'label': 'Richter, Doris', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_182': {'label': 'Rieth, Albrecht', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_183': {'label': 'Rixen, Edgar', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_184': {'label': 'Rudolf, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_185': {'label': 'Ryll, Malte', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_186': {'label': 'Rösing, Hubert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_187': {'label': 'Saur, Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_188': {'label': 'Scheerer, Manfred', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_189': {'label': 'Scherberich, Georg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_190': {'label': 'Schieren, Herbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_191': {'label': 'Schlegel, Gottfried', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_192': {'label': 'Schlenkhoff, Heinrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_193': {'label': 'Schlüter, Inge', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_194': {'label': 'Schlüter, Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_195': {'label': 'Schmidt, Anett', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_196': {'label': 'Schmidt, Christian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_197': {'label': 'Schmitz, Dieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_198': {'label': 'Schnabel, Helmut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_199': {'label': 'Schnüpke, Gabriele', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_200': {'label': 'Scholten, Rainer', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_201': {'label': 'Schorn, Herbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_202': {'label': 'Schulz, Georg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_203': {'label': 'Schunck, Jacqueline', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_204': {'label': 'Schunck, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_205': {'label': 'Schwarz, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_206': {'label': 'Schwarzer, Bernd', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_207': {'label': 'Schäffner, Volker', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_208': {'label': 'Sester, Robert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_209': {'label': 'Sibbert, Dieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_210': {'label': 'Siebert, Helmut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_211': {'label': 'Siekmann, Tan Kai Pascal', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_212': {'label': 'Skorupka, Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_213': {'label': 'Snoek, Hendrik', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_214': {'label': 'Sodan, Helge', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_215': {'label': 'Stegemann, Frank', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_216': {'label': 'Steglich, Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_217': {'label': 'Steimers, Detlev', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_218': {'label': 'Steinau, Frank', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_219': {'label': 'Steinrücke, Egbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_220': {'label': 'Steins, Ralph', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_221': {'label': 'Stendel, Bodo', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_222': {'label': 'Strathausen, Franz-Josef', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_223': {'label': 'Streitenfeld, Hansjörg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_224': {'label': 'Ströher, Immo', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_225': {'label': 'Thomas, Kurt', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_226': {'label': 'Tiemstra, Jan S. T.', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_227': {'label': 'Tigges, Joachim', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_228': {'label': 'Trautwein, Bärbel', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_229': {'label': 'Uhle, Frank', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_230': {'label': 'Ulrich, Klaus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_231': {'label': 'v. Lindeiner-Wildau, Dirk', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_232': {'label': 'van Lengerich, Marie-Luise', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_233': {'label': 'Vankadari, Vijaykumar', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_234': {'label': 'Vierwind, Johannes', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_235': {'label': 'Vogel, Reiner', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_236': {'label': 'Vogt, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_237': {'label': 'von Westphalen, Johannes', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_238': {'label': 'Voß, Martin A.', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_239': {'label': 'Weitz, Gunnar', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_240': {'label': 'Weiß, Claudia', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_241': {'label': 'Wentzel, Wilfried', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_242': {'label': 'Werner, Christian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_243': {'label': 'Werner, Holger', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_244': {'label': 'Wicht, Holger', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_245': {'label': 'Wickop, Günter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_246': {'label': 'Wieland, Susanne', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_247': {'label': 'Williams, Christopher John', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_248': {'label': 'Windelband, Magrit', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_249': {'label': 'Winter, Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_250': {'label': 'Wippel, Steffen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_251': {'label': 'Wittkuhn, Thorsten', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_252': {'label': 'Wohlgemuth, Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_253': {'label': 'Wohlgemuth, Marlies', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_254': {'label': 'Wohlmann, Susanne', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_255': {'label': 'Wolff, Felix', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_256': {'label': 'Wolfram, Hans-Joachim', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_257': {'label': 'Woort-Menker, Maria', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_258': {'label': 'Wust, Heinz-Georg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_259': {'label': 'Zastrow, Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_260': {'label': 'Ziegler, Erwin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_261': {'label': 'Zumegen, Uwe', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_262': {'label': 'Kleinschmitt, Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_263': {'label': 'Hinrichs, Maritta Helene Minna', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_264': {'label': 'Tewes-Diehl, Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_265': {'label': 'Tewes-Diehl, Berthold', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_266': {'label': 'Münch, Fabian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_267': {'label': 'Huther, Anabel', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_268': {'label': 'Laiso, Dario', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_269': {'label': 'Al Romhein, Philip', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_270': {'label': 'Weghmann, Victoria', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_271': {'label': 'Weghmann, Vincent', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_272': {'label': 'Pitzer, Evelin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_273': {'label': 'Wermers, Thorsten', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_274': {'label': 'Werner, Isabel', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_275': {'label': 'Albrecht, Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_276': {'label': 'Reichert, Thilo', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_277': {'label': 'Zeidler, Toni Christov', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_278': {'label': 'Albers, Franziska', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_279': {'label': 'Albers, Matthias', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_7': {'label': 'AgroMyc-Merck GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_280': {'label': 'Leder, Mike', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_8': {'label': 'August Schäffler Verwaltungs GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_281': {'label': 'Schäffler, August', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_282': {'label': 'Schäffler, Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_9': {'label': 'AURELIUS Advisory AG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_283': {'label': 'Hartmann, Anke', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_284': {'label': 'Winkel, Florian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_10': {'label': 'AURELIUS Development Fourty-One GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_285': {'label': 'Depken, Ekhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_11': {'label': 'AURELIUS Development Thirty-Four GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_12': {'label': 'Aurelius Immo GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_286': {'label': 'Groenewold, Kurt', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_287': {'label': 'Moysich, Leila', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_13': {'label': 'Aurelius Ulmenhof GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_14': {'label': '1&1 De-Mail GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_288': {'label': 'Oetjen, Jan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_289': {'label': 'Ludwig, Thomas Matthias', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_290': {'label': 'Charles, Alexander Guy', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_291': {'label': 'Kraft, Dana Monika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_15': {'label': '1&1 Mail & Media Applications SE', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_292': {'label': 'Giese, Rasmus Jonathan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_16': {'label': '1&1 Telecommunication SE', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_293': {'label': 'Huhn, Markus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_294': {'label': 'Nava, Alessandro', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_295': {'label': 'Henkel, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_296': {'label': 'Harries, Robin John Andes', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_297': {'label': 'Brandsma, Cretièn René Gilbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_298': {'label': 'Martin, Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_299': {'label': 'Goebel, Sebastian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_300': {'label': 'Bockelt, Christian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_301': {'label': 'D´Avis, Sascha', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_17': {'label': '1&1 Telecom Service Montabaur GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_302': {'label': 'Koch, Tobias', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_303': {'label': \"D'Avis, Sascha\", 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_18': {'label': 'A 1 Marketing, Kommunikation und neue Medien GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_304': {'label': 'Dommermuth, Ralph', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_19': {'label': 'Admenta Deutschland GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_305': {'label': 'Köster, Tilo', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_306': {'label': 'Jipa, Simona-Lucia', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_20': {'label': 'AKF Bau UG (haftungsbeschränkt)', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_307': {'label': 'Kohlkopf, Andreas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_21': {'label': 'Albert Henkel Verwaltungs-GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_308': {'label': 'Henkel, Werner', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_309': {'label': 'Wider, Roswitha', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_310': {'label': 'Wider, Brigitte', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_22': {'label': 'Ampero GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_311': {'label': 'Methe, Max', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_312': {'label': 'Bittkau, Tobias', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_313': {'label': 'Joas, Philipp', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_23': {'label': 'ATESTEO Beteiligungs GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_314': {'label': 'Schaeffler, Georg F.W.', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_315': {'label': 'Schaeffler, Maria-Elisabeth', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_316': {'label': 'Rosenfeld, Klaus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_317': {'label': 'Zech, Alexandra', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_24': {'label': 'Auda EnBW MA Initiatoren GmbH & Co. KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_318': {'label': 'Wunderlin, Georg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_319': {'label': 'Sradj, Salem Daniel', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_320': {'label': 'Knöfler, Patrick', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_321': {'label': 'Lindhorst, Britta', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_322': {'label': 'von Sydow, Ferdinand', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_323': {'label': 'Hyun, You-Ha', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_324': {'label': 'Börsing, Nico-David', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_325': {'label': 'Dimmerling, Heiko', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_326': {'label': 'Fischer, Lucas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_25': {'label': 'AURELIUS Development Eleven GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_26': {'label': 'AURELIUS Development Fifteen GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_27': {'label': 'AURELIUS Development Thirty-Two GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_28': {'label': 'Aurelius Invest UG (haftungsbeschränkt)', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_327': {'label': 'Dinse, Stephan Maximilian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_29': {'label': 'AEMtec GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_328': {'label': 'Trommershausen, Jan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_329': {'label': 'John, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_330': {'label': 'Schüler, René', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_331': {'label': 'Giertz, Robert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_30': {'label': 'AIB Verwaltungs GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_332': {'label': 'Bauer, Torsten', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_333': {'label': 'Steinert, Oliver', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_334': {'label': 'Gatzki, Christian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_335': {'label': 'Altmeyer, Eric', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_336': {'label': 'Fischer, Jochen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_337': {'label': 'Hirth, Ludwig Bernhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_31': {'label': 'AK-ON Haustechnik e.K. Inh. Musa Akkaya', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_338': {'label': 'Akkaya, Musa', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_32': {'label': 'Alb-Windkraft GmbH & Co. KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_339': {'label': 'Amann, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_340': {'label': 'Autenrieth, Erika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_341': {'label': 'Baberowski, Anita', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_342': {'label': 'Bergner, Dietmar', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_343': {'label': 'Bosch, Johannes', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_344': {'label': 'Bosch, Friedrich-Karl', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_345': {'label': 'Braig, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_346': {'label': 'Braig, Brigitte', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_347': {'label': 'Burger, Christa', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_348': {'label': 'Burk, Günther', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_349': {'label': 'Dursch, Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_350': {'label': 'Ebner, Sieglinde', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_351': {'label': 'Ehmer, Gisela', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_352': {'label': 'Erhardt, Rolf-Heinrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_353': {'label': 'Fink, Katrin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_354': {'label': 'Flogaus, Heinz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_355': {'label': 'Geiger, Hans-Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_356': {'label': 'Geiger, Walter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_357': {'label': 'Göggelmann, Walter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_358': {'label': 'Grieser, Elfriede', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_359': {'label': 'Grupp, Rudi', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_360': {'label': 'Häcker, Alfred', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_361': {'label': 'Hagmeyer, Manfred', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_362': {'label': 'Harder, Walter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_363': {'label': 'Hassler, Georg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_364': {'label': 'Heck, Erich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_365': {'label': 'Herr, Melita', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_366': {'label': 'Hettinger, Rolf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_367': {'label': 'Hieber, Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_368': {'label': 'Hofelich, Klaus-Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_369': {'label': 'Hofelich, Günther', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_370': {'label': 'Hößle, Hermann', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_371': {'label': 'Jäger, Manfred', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_372': {'label': 'Kammer, Karl', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_373': {'label': 'Keller, Reiner', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_374': {'label': 'Klumpp, Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_375': {'label': 'Kohn, Hans', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_376': {'label': 'Kohn, Helene', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_377': {'label': 'Kohn, Hans', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_378': {'label': 'Krieger, Else', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_379': {'label': 'Kröner-Weber, Hanna', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_380': {'label': 'Kübler, Eugen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_381': {'label': 'Kübler, Eugen Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_382': {'label': 'Kukral, Sonja', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_383': {'label': 'Langenbacher, Ralf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_384': {'label': 'Lecjaks, Susanne', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_385': {'label': 'Lenz, Walter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_386': {'label': 'Link, Dieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_387': {'label': 'Lohrmann, Susanne', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_388': {'label': 'Mack, Richard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_389': {'label': 'Maier, Eugen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_390': {'label': 'Marchtaler, Andreas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_391': {'label': 'Maurer, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_392': {'label': 'Meyer, Werner', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_393': {'label': 'Moll, Iris', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_394': {'label': 'Mössmer, Manfred', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_395': {'label': 'Neuburger, Rosemarie', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_396': {'label': 'Neuburger, Günter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_397': {'label': 'Neuburger, Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_398': {'label': 'Neulinger, Ralf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_399': {'label': 'Pfisterer, Norbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_400': {'label': 'Pollak, Margarete', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_401': {'label': 'Rapp, Alexander', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_402': {'label': 'Rapp, Eberhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_403': {'label': 'Reichart, Oliver', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_404': {'label': 'Renner, Achim', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_405': {'label': 'Riedlinger, Rolf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_406': {'label': 'Rinklin, Hubert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_407': {'label': 'Röcker, Klaus-Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_408': {'label': 'Röcker, Ute', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_409': {'label': 'Rommler, Josef', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_410': {'label': 'Rother, Walter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_411': {'label': 'Rother, Eva', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_412': {'label': 'Ruoff, Rudolf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_413': {'label': 'Sauer, Beate', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_414': {'label': 'Sauer, Winfried', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_415': {'label': 'Schabel, Wolf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_416': {'label': 'Scheible, Birgit', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_417': {'label': 'Scheible, Holger', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_418': {'label': 'Schidloch, Roland', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_419': {'label': 'Schied, Frank', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_420': {'label': 'Schied, Carla', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_421': {'label': 'Schlögl, Dietmar', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_422': {'label': 'Schmid, Max', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_423': {'label': 'Schüle, Beate', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_424': {'label': 'Schweizer, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_425': {'label': 'Seiz, Günter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_426': {'label': 'Seybold, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_427': {'label': 'Stanger, Lina', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_428': {'label': 'Stehle, Karl', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_429': {'label': 'Stelzer, Heike', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_430': {'label': 'Stolz, Raimund', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_431': {'label': 'Strobel, Regina', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_432': {'label': 'Ströhle, Marita', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_433': {'label': 'Thierer, Volker', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_434': {'label': 'Thierer, Christel', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_435': {'label': 'Walliser, Karl', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_436': {'label': 'Weber, Markus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_437': {'label': 'Wider, Rotraut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_438': {'label': 'Wölfle, Stephan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_439': {'label': 'Wuchenauer, Ralf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_440': {'label': 'Ziegler, Ernst', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_441': {'label': 'Ziegler, Karl', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_442': {'label': 'Ziegler, Walter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_443': {'label': 'Ziegler, Otmar', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_444': {'label': 'Ziegler, Adolf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_445': {'label': 'Kellner, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_446': {'label': 'Banzhaft, Ursula', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_447': {'label': 'Ströhle, Holger', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_448': {'label': 'Burger, Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_449': {'label': 'Stegmaier, Karlheinz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_450': {'label': 'Schlumpberger-Burger, Elke', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_451': {'label': 'Burkert, Jens', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_452': {'label': 'Ruoff, Elsbeth', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_453': {'label': 'Ruoff, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_454': {'label': 'Wanner, Georg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_455': {'label': 'Bollinger, Gudrun', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_456': {'label': 'Krätschmer, Gisela Melanie', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_457': {'label': 'Ruhland, Ilse', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_458': {'label': 'Schall, Lore', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_459': {'label': 'Kast, Gerlinde', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_460': {'label': 'Huber, Helmut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_461': {'label': 'Schmid, Georg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_462': {'label': 'Erb, Hilde', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_463': {'label': 'Prof. Dr. Mändle, Markus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_464': {'label': 'Maurer, Andrea Maria', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_465': {'label': 'Maurer, Hans Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_466': {'label': 'Gansloser, Christopher Kurt', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_467': {'label': 'Bosch, Anita Doris', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_468': {'label': 'Roller, Klaus-Helmut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_469': {'label': 'Bachmann-Bisle, Sabine', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_470': {'label': 'Bachmann, Hans-Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_471': {'label': 'Ohl, Hildegard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_472': {'label': 'Plicka, Brigitte', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_473': {'label': 'Ogger, Karl', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_474': {'label': 'Barth, Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_845': {'label': 'EnBW Windkraftprojekte GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_475': {'label': 'Schäch, Margarete', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_476': {'label': 'Werner, Annette', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_477': {'label': 'Maurer-Bisetti, Andrea', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_478': {'label': 'Thierer, Sarah-Yasmin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_479': {'label': 'Kruschina, Brigitte', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_480': {'label': 'Straub, Ulrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_481': {'label': 'Kumpf, Christoph Wilhelm Georg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_482': {'label': 'Hellstern, Waltraud Helene', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_483': {'label': 'Maurer, Hermann', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_484': {'label': 'Lederer, Beatrice Raphaela', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_485': {'label': 'Lederer, Stephanie Annette', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_486': {'label': 'Lederer, Ann-Catherine', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_487': {'label': 'Frey, Norbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_488': {'label': 'Trostel, Petra', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_489': {'label': 'Schimpf, Ellen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_490': {'label': 'Leitner, Petra', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_491': {'label': 'Pendic, Ute', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_492': {'label': 'Kruschina, Brigitte Monika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_493': {'label': 'Blessing, Karin Elke', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_494': {'label': 'Weiler, Hannelore', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_495': {'label': 'Thierer, Monika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_496': {'label': 'Lemke, Monika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_497': {'label': 'Rau, Adelheid', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_498': {'label': 'Hofelich, Günther Erwin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_499': {'label': 'Hofelich, Klaus Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_33': {'label': 'AL GRAMM GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_500': {'label': 'Gramm, Alexander Egon', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_34': {'label': 'Anneliese Köster GmbH & Co. KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_1903': {'label': 'INDUS Holding Aktiengesellschaft', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_35': {'label': 'ARKON Grundbesitzverwaltung GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_36': {'label': 'Aurelius Holding UG (haftungsbeschränkt)', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_501': {'label': 'Riener, Korbinian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_37': {'label': 'AURELIUS Investment Advisory AG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_502': {'label': 'Muth, Florian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_503': {'label': 'Albrecht, Donatus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_504': {'label': 'Wölfler, Franz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_38': {'label': '1&1 Mail & Media Development & Technology GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_39': {'label': '1&1 Telecom Holding GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_505': {'label': 'Nava, Alessandro Stefano', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_40': {'label': '1. Guss Maulburg GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_506': {'label': 'Frommann, David', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_41': {'label': 'ABG Apotheken-Beratungsgesellschaft mbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_507': {'label': 'Kranen, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_508': {'label': 'Seifert, Aline', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_509': {'label': 'Kerschen, Marco', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_510': {'label': 'Sommer, Angelika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_511': {'label': 'Tillner, Carsten', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_512': {'label': 'Freiherr von Rodde, Dominik', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_42': {'label': 'adidas Beteiligungsgesellschaft mbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_513': {'label': 'Kapadia, Robin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_514': {'label': 'Richter, Andreas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_515': {'label': 'Voges genannt Wolf, Ernst Moritz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_43': {'label': 'adidas CDC Immobilieninvest GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_516': {'label': 'Dzieia, Christian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_517': {'label': 'Drebes, Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_518': {'label': 'Büscher, Benjamin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_519': {'label': 'Wunderlich, Jochen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_44': {'label': 'Amber Zweite VV GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_520': {'label': 'Kanellopoulos, Konstantina', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_521': {'label': 'Urbansky, Lars', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_522': {'label': 'Weber, Olaf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_523': {'label': 'Akelbein, Torsten', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_524': {'label': 'Bode, Stefan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_525': {'label': 'Ennis, Mark', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_526': {'label': 'Gerß, Robert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_527': {'label': 'Guhr, Stephen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_528': {'label': 'Intek, Kerstin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_529': {'label': 'Koglin, Jens', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_530': {'label': 'Kosch, Jan-Ole', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_531': {'label': 'Schiedung, Katja', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_532': {'label': 'Schindler, Jörg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_533': {'label': 'Späth, Philipp', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_534': {'label': 'Strachardt, Matthias', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_535': {'label': 'Teipel, Henrik', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_536': {'label': 'Weihe, Alexander', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_45': {'label': 'AREF Solar Germany II GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_537': {'label': 'Marg, Holger', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_538': {'label': 'Heyduck, Rainer', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_46': {'label': 'AROTEC Automation und Robotik GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_539': {'label': 'Cottone, Norbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_47': {'label': 'ASSET Immobilienbeteiligungen GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_48': {'label': 'Aurelius Cotta - Konrad Pika Trippel Partnerschaft von Rechtsanwälten mbB', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_540': {'label': 'Konrad, Sabine', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_541': {'label': 'Pika, Maximilian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_542': {'label': 'Trippel, Pierre', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_49': {'label': 'Aurelius Dienstleistungs eG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_543': {'label': 'Schwab, Frank', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_50': {'label': 'AURELIUS Gamma Invest GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_51': {'label': 'Aurelius Horizon UG (haftungsbeschränkt)', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_544': {'label': 'Bau, Jan Jérôme', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_52': {'label': 'AURELIUS Transaktionsberatungs AG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_53': {'label': '1. Freiburger Solarfonds Beteiligungs-KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_545': {'label': 'Wetzel, Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_546': {'label': 'Sladek, Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_547': {'label': 'Eickeler, Hans-Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_548': {'label': 'Hartmann, Hannelore', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_549': {'label': 'Manteufel, Walter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_550': {'label': 'Piest, Rainer', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_551': {'label': 'Probst, Domenikus Christoph Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_552': {'label': 'Schleith, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_553': {'label': 'Traurig, Gertrud', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_554': {'label': 'Marx, Gerhild', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_555': {'label': 'Bächler, Manfred Sebastian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_556': {'label': 'Baumann, Roland', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_557': {'label': 'Bernauer, Ursula Maria', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_558': {'label': 'Bierschneider-Jakobs, Andrea', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_559': {'label': 'Graux, Henri Noel Frederic Charles', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_560': {'label': 'Grether, Wolfgang Reinhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_561': {'label': 'Gruber, Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_562': {'label': 'Heß, Hermann Karl Ludwig', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_563': {'label': 'Jores, Marion', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_564': {'label': 'Kiefer, Klaus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_565': {'label': 'Klötzer, Ralf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_566': {'label': 'Klumb, Wolfgang Georg Friedrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_567': {'label': 'Limbrock, Gerhard Johannes', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_568': {'label': 'Maaßen, Siegrid', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_569': {'label': 'Reemtsma, Mareike', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_570': {'label': 'Ruf, Martin Rolf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_571': {'label': 'Schanz, Johann Jakob', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_572': {'label': 'Scheuber, Klaus Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_573': {'label': 'Seifried, Dieter Hermann', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_574': {'label': 'Sünder, Gerhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_575': {'label': 'Ullrich, Konrad', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_576': {'label': 'Ullrich, Margret', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_577': {'label': 'Völler, Werner', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_578': {'label': 'Weise, Hans-Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_579': {'label': 'Willmann, Alexander', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_580': {'label': 'Willmann, Andrea', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_581': {'label': 'Witzel, Almut Hedwig', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_582': {'label': 'Witzel, Walter Georg Friedrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_583': {'label': 'Karpstein, Klaus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_584': {'label': 'Traurig, Ferdinand', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_585': {'label': 'Götte, Helmut Hermann', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_586': {'label': 'Schelshorn, Rolf Karl', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_587': {'label': 'Steinhauser, Sabine Ursula', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_588': {'label': 'Lehmann, Johanna', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_54': {'label': '1&1 Energy GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_55': {'label': '1 A Blumen Griesbaum, Inh. Philipp Zähringer e.K.', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_589': {'label': 'Zähringer, Philipp', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_56': {'label': 'adidas Insurance & Risk Consultants GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_590': {'label': 'Ditzel, Heiko', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_57': {'label': 'ahg Autohandelsgesellschaft mbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_591': {'label': 'Kramer, Alexander Johannes', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_592': {'label': 'Linderich, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_593': {'label': 'Langhorst, Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_594': {'label': 'Eberle, Holger', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_58': {'label': 'Airport Assekuranz Vermittlungs-GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_595': {'label': 'Schill, Hans Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_596': {'label': 'Hub, Simone', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_597': {'label': 'Kreische, Sabine', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_59': {'label': 'AKG Automobile GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_598': {'label': 'Amelung, Andreas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_599': {'label': 'Kaltenbach, Anke', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_600': {'label': 'Gebauer, Kevin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_60': {'label': 'ALTBERG GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_601': {'label': 'Hecker, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_602': {'label': 'Schneider, Michaela', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_61': {'label': 'ASS Maschinenbau GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_603': {'label': 'Ziewers, Reinhold', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_604': {'label': 'Schwarz, Theodor', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_605': {'label': 'Würstlin, Rolf Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_62': {'label': 'AURELIUS Development Six GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_63': {'label': 'AURELIUS Services Holding GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_606': {'label': 'Forster, Frank', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_64': {'label': 'AURELIUS WK Eleven GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_607': {'label': 'Blumenthal, Eric', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_608': {'label': 'Wagner, Alexander', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_65': {'label': 'ACONITA Grundstücks-Vermietungsgesellschaft mbH & Co. Objekt Niederrad KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_609': {'label': 'Corsepius, Gudrun', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_610': {'label': 'Gabel, Jens', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_611': {'label': 'Göttmann, Klaus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_612': {'label': 'Henkel, Anita', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_613': {'label': 'Herrmann, Burkhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_614': {'label': 'Jässing-Wolgast, Martina', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_615': {'label': 'Käsbauer, Josef', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_616': {'label': 'Kayser, Margot', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_617': {'label': 'Ketscher, Klaus-Dieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_618': {'label': 'Lohmar, Karl-Friedrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_619': {'label': 'Mannschatz, Ortrud', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_620': {'label': 'Piwarz, Renate', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_621': {'label': 'Rosenwinkel, Karl-Heinz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_622': {'label': 'Scheidler, Iris', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_623': {'label': 'Schröder, Richard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_624': {'label': 'Schröter, Jutta', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_625': {'label': 'Schüßler, Harald', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_626': {'label': 'Servos, Alfred', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_627': {'label': 'Staudt, Gerhardt', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_628': {'label': 'Wiltschek, Gerd', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_629': {'label': 'Barmetler, Johann Josef', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_630': {'label': 'Benz, Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_631': {'label': 'Hahn, Hans-Joachim', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_632': {'label': 'Halfwassen, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_633': {'label': 'Riethmüller, Hildegard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_634': {'label': 'Wünsche, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_635': {'label': 'Jansen, Helge', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_636': {'label': 'Netzhammer, Emil', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_637': {'label': 'Willmes, Antonia', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_638': {'label': 'Willmes, Otto', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_639': {'label': 'Rau, Eva-Maria', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_640': {'label': 'Volle, Angelika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_641': {'label': 'Volle, Bettina', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_642': {'label': 'Wiesner, Edith', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_643': {'label': 'Rinke, Hans-Werner', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_644': {'label': 'Stiehler, Gisela', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_645': {'label': 'Köhler, Irmgard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_646': {'label': 'Müller, Helmut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_647': {'label': 'Rohr, Otto', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_648': {'label': 'Vogel, Monika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_649': {'label': 'Vogel, Corinna', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_650': {'label': 'Geenen, Maria Elisabeth', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_651': {'label': 'Geenen, Hans Georg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_652': {'label': 'Jacobs, Albert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_653': {'label': 'Seifert, Eberhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_654': {'label': 'Wüster, Gisela', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_655': {'label': 'Walther, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_656': {'label': 'Keidel, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_657': {'label': 'Schönleber, Angelika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_658': {'label': 'Dunckel, Helga', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_659': {'label': 'Dunckel, Wilfried', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_660': {'label': 'Rude, Maria', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_661': {'label': 'Graf von Bredow, Hans Herbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_662': {'label': 'Dahmen, Marita', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_663': {'label': 'Noelle, Herbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_664': {'label': 'Wilde, Johannes Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_665': {'label': 'Homann, Jens-Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_666': {'label': 'Hoppe, Hans-Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_667': {'label': 'Köcher, Waltraud', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_668': {'label': 'Haverkamp, Ursula', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_669': {'label': 'Rolf, Werner', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_670': {'label': 'Jürgens, Ulrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_671': {'label': 'Hagen, Bernd', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_672': {'label': 'Dorn, Barbara', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_673': {'label': 'Hoefermann, Regine', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_674': {'label': 'Hinrichs, Lars', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_675': {'label': 'Hinrichs, Jan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_676': {'label': 'Wiese, Gertrud', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_677': {'label': 'Streck, Hannelore', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_678': {'label': 'Streck, Sylvia', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_679': {'label': 'Broer, Helga', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_680': {'label': 'Thiele, Heidrun Gisela', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_681': {'label': 'Augenstein, Sigrid', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_682': {'label': 'Busch, Christa', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_683': {'label': 'Seifert, Edeltraut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_684': {'label': 'Wittelsberger, Reinhold', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_685': {'label': 'Riesenkampff, Brigitte', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_686': {'label': 'Schurig, Christa', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_687': {'label': 'Seiler, Eberhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_688': {'label': 'Dreher, Susanne', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_689': {'label': 'Dreher, Friedrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_690': {'label': 'Ihring, Heinz Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_691': {'label': 'Müller, Anna Maria', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_692': {'label': 'Röder, Petra', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_693': {'label': 'Hahn, Patrick', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_694': {'label': 'Hahn, Anke', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_695': {'label': 'Vogel, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_696': {'label': 'Vogel, Walter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_697': {'label': 'Schillig, Trude', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_698': {'label': 'Stammberger, Brigitte Gerda', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_699': {'label': 'Schramm, Jörg', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_700': {'label': 'Frenzel, Maria', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_701': {'label': 'Grötzinger, Anita', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_702': {'label': 'Jonas, Ilse', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_703': {'label': 'Schur, Dorothee', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_704': {'label': 'Vom Berg, Ute', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_705': {'label': 'Langer, Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_706': {'label': 'Gerhardt, Gabriele Maria', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_707': {'label': 'Pisarz, Jörgen Herbert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_708': {'label': 'Broichhausen, Susanne', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_709': {'label': 'Broichhausen, Ulrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_710': {'label': 'Konzack, Theresie', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_711': {'label': 'Enckler, Anke', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_712': {'label': 'Widmann, Gabriele', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_713': {'label': 'Rothmaier, Wolfgang', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_714': {'label': 'Sauer, Vera Anne Katharina', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_715': {'label': 'Kälberer, Joachim', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_716': {'label': 'Schwabedissen, Bodo', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_717': {'label': 'Weber, Gesine', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_718': {'label': 'Johannlükens, Elke', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_719': {'label': 'Johannlükens, Hartmut Helmut Friedrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_720': {'label': 'Pfister, Sabine', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_721': {'label': 'Diaw, Hannegret Felicia Ellinor Odeh', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_722': {'label': 'Drews, Renate Christa Helga', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_723': {'label': 'Haßlacher, Tobias Fabian Jakob', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_724': {'label': 'Bär, Michael', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_725': {'label': 'Willerich, Hanno', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_726': {'label': 'Vogel, Gesche', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_727': {'label': 'Kempf, Laura', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_728': {'label': 'Fischer, Patrick', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_729': {'label': 'Fischer, Frank', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_730': {'label': 'Kübert, Carmen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_731': {'label': 'Greindl, Stephan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_732': {'label': 'Fierle, Frank Roland', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_733': {'label': 'Weiß, Monika', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_734': {'label': 'Hölßig, Sebastian Helmut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_735': {'label': 'Hölßig, Alexander Friedrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_736': {'label': 'Magers, Jutta Maria', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_737': {'label': 'Vogel, Karin Maria', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_738': {'label': 'Kohlmann, Jürgen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_739': {'label': 'Rupp, Oliver', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_740': {'label': 'Pätsch, Christian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_741': {'label': 'Hitzegrad, Ulrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_742': {'label': 'Chudobba, Udo', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_66': {'label': 'Albert Schäffler Elektromeister GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_743': {'label': 'Charnow, Bernd', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_744': {'label': 'Charnow, Verena', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_67': {'label': 'Amprio GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_745': {'label': 'Kasperlik, Tobias', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_746': {'label': 'Göttler, Heiko', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_747': {'label': 'Baumann, Matthias', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_748': {'label': 'Hettesheimer, Sven', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_749': {'label': 'Schwarz, Daniel', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_68': {'label': 'audio.digital NRW GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_750': {'label': 'Kessel, James', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_751': {'label': 'Stähr, Andreas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_752': {'label': 'Petrick, Francie', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_753': {'label': 'Petri, Dirk', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_70': {'label': 'AURELIUS Development Fourty-Seven GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_71': {'label': 'AURELIUS Development Sixteen DS GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_72': {'label': 'AURELIUS Development Twelve GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_73': {'label': 'AURELIUS Epsilon International GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_74': {'label': 'AURELIUS Equity Opportunities SE & Co. KGaA', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_163': {'label': 'AURELIUS Management SE', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_75': {'label': 'Aurelius Immobiliengesellschaft Am Fanny Mendelssohn Platz GmbH & Co. KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_76': {'label': 'AURELIUS IV GER AcquiCo Three GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_77': {'label': 'Aurelius KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_80': {'label': 'Aurelius Verwaltungs GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_754': {'label': 'Esser, Felix', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_755': {'label': 'Esser, Moritz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_756': {'label': 'Esser, Dominique', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_757': {'label': 'Esser, Julian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_758': {'label': 'Esser, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_78': {'label': 'Aurelius Mittelstandskapital GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_79': {'label': 'AURELIUS Real Estate Investments GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_759': {'label': 'Rehbock, Jan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_760': {'label': 'Esser, Felix Benedikt', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_81': {'label': 'AURELIUS WK Fifteen GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_761': {'label': 'Vitense, Nico', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_82': {'label': '99 gramm Management GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_762': {'label': 'Häbold, Marko', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_83': {'label': 'APHS Ambulanter Pflegedienst Hella Schnepel GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_763': {'label': 'Qalae-Nawi, Mohamed Raza', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_84': {'label': 'Aragon 16. VV GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_85': {'label': 'AURELIUS Development Fourty-Five DS GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_764': {'label': 'Ekhard, Depken', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_86': {'label': '2Gramm GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_765': {'label': 'Becker, Patrick', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_766': {'label': 'Meyer, Sebastian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_87': {'label': 'adidas AG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_767': {'label': 'Kürten, Markus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_768': {'label': 'Eichhorn, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_769': {'label': 'Robertson, Michelle', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_770': {'label': 'Deschner, Melanie', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_771': {'label': 'Jäger, Björn', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_772': {'label': 'Ohlmeyer, Harm', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_773': {'label': 'Schumacher, Torben', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_774': {'label': 'Weigl, Günter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_775': {'label': 'Döring, Jörg Volker', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_776': {'label': 'Mende, Daniel', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_777': {'label': 'Griffiths, Nigel', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_778': {'label': 'Mayer, Claus-Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_779': {'label': 'Lipp, Wolfram', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_780': {'label': 'Hintz, Silja', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_781': {'label': 'Zwank, Bernd', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_782': {'label': 'Kuennemann, Sven', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_783': {'label': 'Waller, Philipp', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_784': {'label': 'Arana, Aimee', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_785': {'label': 'Hubert, Andreas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_786': {'label': 'Rautert, Markus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_787': {'label': 'Uncini Manganelli, Alberto', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_788': {'label': 'Bührle, Sigrid', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_789': {'label': 'Mogus, Marina', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_790': {'label': 'Murphy, Carla', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_791': {'label': 'Moser, Sven', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_792': {'label': 'Silva, Claudia', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_793': {'label': 'Zalaznik, Scott', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_794': {'label': 'Heinemann, Jan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_795': {'label': 'Rajkumar, Amanda', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_796': {'label': 'Shankland, Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_797': {'label': 'Wolpert, Christof', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_798': {'label': 'Pui-Moldovan, Laura', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_799': {'label': 'Noya, Eveline', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_800': {'label': 'Gulden, Björn', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_801': {'label': 'Poelman, Saskia', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_802': {'label': 'Höld, Arthur', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_803': {'label': 'Ribeiro, Filipa', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_804': {'label': 'Sidokpohou, Mathieu Nounagnon', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_88': {'label': 'AFS Immobilien GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_805': {'label': 'Schütte, Andreas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_89': {'label': 'Airbus DS Airborne Solutions GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_806': {'label': 'Laack, Holger', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_807': {'label': 'Hastedt, Ralf', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_808': {'label': 'Behrens, Tim', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_809': {'label': 'Winter, Helge', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_810': {'label': 'Quandt, Matthias', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_90': {'label': 'Aragon 14. VV GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_91': {'label': 'Aragon 15. VV GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_811': {'label': 'Gerß, Robert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_92': {'label': 'ATESTEO Management GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_812': {'label': 'Schmitz, Wolfgang Josef', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_813': {'label': 'Kan, Lei', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_814': {'label': 'Willers, Tim', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_815': {'label': 'Görgens, Josef', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_93': {'label': 'AURELIUS Alpha Invest New GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_816': {'label': 'Bennetsen, Mogens', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_817': {'label': 'Adam, Lars-Eric', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_94': {'label': 'AURELIUS Development Twenty-Three GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_95': {'label': 'AURELIUS IV GER AcquiCo One GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_96': {'label': 'AURELIUS Portfolio Management AG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_818': {'label': 'Michel, Kay', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_819': {'label': 'Pötzl, Julian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_820': {'label': 'Zuther, Magnus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_821': {'label': 'Becker, Jan-Christian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_97': {'label': '1 st Class Marketing GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_822': {'label': 'Werner, Sebastian Andreas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_823': {'label': 'Zemke, Henry', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_98': {'label': 'ALBA Neckar-Alb GmbH & Co. KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_824': {'label': 'Keim, Susanne', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_825': {'label': 'Eroglu, Halil', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_826': {'label': 'Minetzke, Stefan', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_827': {'label': 'Martin, René', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_99': {'label': 'Amber Erste VV GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_100': {'label': 'Aufzug - Technik Gramm GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_828': {'label': 'Gramm, Ursula', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_101': {'label': 'AURELIUS Alpha International GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_102': {'label': 'AURELIUS Development Fourty-Four GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_103': {'label': 'AURELIUS Development Fourty GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_104': {'label': 'AURELIUS Development Fourty-Two GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_105': {'label': 'AURELIUS Development Twenty-Four GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_106': {'label': 'AURELIUS Gamma International GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_107': {'label': 'Aurelius Immobiliengesellschaft am Udo Lindenberg Platz GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_108': {'label': 'Aurelius SW11 GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'company_109': {'label': '1&1 Mail & Media Service GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_829': {'label': 'Tralau, Michael Heiko', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_830': {'label': 'Dönmez, Yasemin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_110': {'label': '1&1 Versatel GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_831': {'label': 'Mannshausen, Guido', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_832': {'label': 'Trebst, Sören', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_833': {'label': 'Heyder, Thomas', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_834': {'label': 'Iaconisi, Marko', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_835': {'label': 'Schütze, Marc', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_836': {'label': 'Schulz, Frank', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_837': {'label': 'Nettlenbusch, Sandra', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_838': {'label': 'Fischer, Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_839': {'label': 'Yayan, Ahmet', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_840': {'label': 'Bock, Oliver', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_111': {'label': '1. Alfdorfer Solarbetriebs-GmbH & Co. KG', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_841': {'label': 'Beier, Heinrich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_842': {'label': 'Bühler, Dieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_843': {'label': 'Haack, Martin', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_844': {'label': 'Hinderer, Christoph', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_845': {'label': 'Keicher, Eckhard', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_846': {'label': 'Kühner, Robert', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_847': {'label': 'Kurz, Helmut', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_848': {'label': 'Mahler-Abele, Christine', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_849': {'label': 'Maihöfer, Christian', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_850': {'label': 'Mark, Steffen', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_851': {'label': 'Proske, Petra', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_852': {'label': 'Vögele, Peter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_853': {'label': 'Wahl, Bernd', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_854': {'label': 'Wahl, Erich', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_855': {'label': 'Wahl, Frank', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_856': {'label': 'Walz, Elisabeth', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_857': {'label': 'Abele, Kurt', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_112': {'label': '7pace GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_858': {'label': 'Schaeffler, Marcus Oliver', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_113': {'label': 'AHG Agrar-Holding GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_859': {'label': 'Umhau, Dieter', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_860': {'label': 'Husemeyer, Henrik Cord', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'company_114': {'label': 'AirIT Services GmbH', 'type': 'Company', 'shape': 'dot', 'color': '#729b79ff'}, 'person_861': {'label': 'Thines, Sven', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_862': {'label': 'Oswald, Fritz', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}, 'person_863': {'label': 'Schultz-Fademrecht, Klaus', 'type': 'Person', 'shape': 'dot', 'color': 'blue'}}\n", - "[{'from': 'person_1', 'to': 'company_1', 'label': 'Geschäftsführer'}, {'from': 'person_2', 'to': 'company_1', 'label': 'Prokurist'}, {'from': 'person_3', 'to': 'company_2', 'label': 'Kommanditist'}, {'from': 'person_4', 'to': 'company_2', 'label': 'Kommanditist'}, {'from': 'person_5', 'to': 'company_2', 'label': 'Kommanditist'}, {'from': 'person_6', 'to': 'company_2', 'label': 'Kommanditist'}, {'from': 'person_7', 'to': 'company_2', 'label': 'Kommanditist'}, {'from': 'person_8', 'to': 'company_2', 'label': 'Kommanditist'}, {'from': 'person_9', 'to': 'company_3', 'label': 'Kommanditist'}, {'from': 'person_10', 'to': 'company_3', 'label': 'Prokurist'}, {'from': 'person_1', 'to': 'company_4', 'label': 'Geschäftsführer'}, {'from': 'person_2', 'to': 'company_4', 'label': 'Prokurist'}, {'from': 'company_2213', 'to': 'company_5', 'label': 'Organisation'}, {'from': 'person_11', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_12', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_13', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_14', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_15', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_16', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_17', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_18', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_19', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_20', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_21', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_22', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_23', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_24', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_25', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_26', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_27', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_28', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_29', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_30', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_31', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_32', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_33', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_34', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_35', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_36', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_37', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_38', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_39', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_40', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_41', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_42', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_43', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_44', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_45', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_46', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_47', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_48', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_49', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_50', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_51', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_52', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_53', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_54', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_55', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_56', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_57', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_58', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_59', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_60', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_61', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_62', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_63', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_64', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_65', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_66', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_67', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_68', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_69', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_70', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_71', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_72', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_73', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_74', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_75', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_76', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_77', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_78', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_79', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_80', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_81', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_82', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_83', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_84', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_85', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_86', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_87', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_88', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_89', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_90', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_91', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_92', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_93', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_94', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_95', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_96', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_97', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_98', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_99', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_100', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_101', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_102', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_103', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_104', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_105', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_106', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_107', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_108', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_109', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_110', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_111', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_112', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_113', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_114', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_115', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_116', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_117', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_118', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_119', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_120', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_121', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_122', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_123', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_124', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_125', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_126', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_127', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_128', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_129', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_130', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_131', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_132', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_133', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_134', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_135', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_136', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_137', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_138', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_139', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_140', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_141', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_142', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_143', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_144', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_145', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_146', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_147', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_148', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_149', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_150', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_151', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_152', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_153', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_154', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_155', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_156', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_157', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_158', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_159', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_160', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_161', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_162', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_163', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_164', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_165', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_166', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_167', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_168', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_169', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_170', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_171', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_172', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_173', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_174', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_175', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_176', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_177', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_178', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_179', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_180', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_181', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_182', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_183', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_184', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_185', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_186', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_187', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_188', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_189', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_190', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_191', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_192', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_193', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_194', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_195', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_196', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_197', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_198', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_199', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_200', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_201', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_202', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_203', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_204', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_205', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_206', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_207', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_208', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_209', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_210', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_211', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_212', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_213', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_214', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_215', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_216', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_217', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_218', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_219', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_220', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_221', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_222', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_223', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_224', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_225', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_226', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_227', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_228', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_229', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_230', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_231', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_232', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_233', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_234', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_235', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_236', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_237', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_238', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_239', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_240', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_241', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_242', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_243', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_244', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_245', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_246', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_247', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_248', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_249', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_250', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_251', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_252', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_253', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_254', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_255', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_256', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_257', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_258', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_259', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_260', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_261', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_262', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_263', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_264', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_265', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_266', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_267', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_268', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_269', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_270', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_271', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_272', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_273', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_274', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_275', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_276', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_277', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_278', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_279', 'to': 'company_6', 'label': 'Kommanditist'}, {'from': 'person_280', 'to': 'company_7', 'label': 'Geschäftsführer'}, {'from': 'person_281', 'to': 'company_8', 'label': 'Geschäftsführer'}, {'from': 'person_282', 'to': 'company_8', 'label': 'Geschäftsführer'}, {'from': 'person_283', 'to': 'company_9', 'label': 'Vorstand'}, {'from': 'person_284', 'to': 'company_9', 'label': 'Vorstand'}, {'from': 'person_285', 'to': 'company_10', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_11', 'label': 'Geschäftsführer'}, {'from': 'person_286', 'to': 'company_12', 'label': 'Geschäftsführer'}, {'from': 'person_287', 'to': 'company_12', 'label': 'Geschäftsführer'}, {'from': 'person_286', 'to': 'company_13', 'label': 'Geschäftsführer'}, {'from': 'person_288', 'to': 'company_14', 'label': 'Geschäftsführer'}, {'from': 'person_289', 'to': 'company_14', 'label': 'Geschäftsführer'}, {'from': 'person_290', 'to': 'company_14', 'label': 'Geschäftsführer'}, {'from': 'person_291', 'to': 'company_14', 'label': 'Geschäftsführer'}, {'from': 'person_292', 'to': 'company_15', 'label': 'Vorstand'}, {'from': 'person_288', 'to': 'company_15', 'label': 'Vorstand'}, {'from': 'person_289', 'to': 'company_15', 'label': 'Vorstand'}, {'from': 'person_290', 'to': 'company_15', 'label': 'Vorstand'}, {'from': 'person_291', 'to': 'company_15', 'label': 'Vorstand'}, {'from': 'person_293', 'to': 'company_16', 'label': 'Vorstand'}, {'from': 'person_294', 'to': 'company_16', 'label': 'Vorstand'}, {'from': 'person_295', 'to': 'company_16', 'label': 'Vorstand'}, {'from': 'person_296', 'to': 'company_16', 'label': 'Vorstand'}, {'from': 'person_297', 'to': 'company_16', 'label': 'Vorstand'}, {'from': 'person_298', 'to': 'company_16', 'label': 'Vorstand'}, {'from': 'person_299', 'to': 'company_16', 'label': 'Vorstand'}, {'from': 'person_300', 'to': 'company_16', 'label': 'Vorstand'}, {'from': 'person_301', 'to': 'company_16', 'label': 'Vorstand'}, {'from': 'person_302', 'to': 'company_17', 'label': 'Geschäftsführer'}, {'from': 'person_295', 'to': 'company_17', 'label': 'Geschäftsführer'}, {'from': 'person_303', 'to': 'company_17', 'label': 'Geschäftsführer'}, {'from': 'person_304', 'to': 'company_18', 'label': 'Geschäftsführer'}, {'from': 'person_305', 'to': 'company_19', 'label': 'Geschäftsführer'}, {'from': 'person_306', 'to': 'company_19', 'label': 'Geschäftsführer'}, {'from': 'person_307', 'to': 'company_20', 'label': 'Geschäftsführer'}, {'from': 'person_308', 'to': 'company_21', 'label': 'Geschäftsführer'}, {'from': 'person_309', 'to': 'company_21', 'label': 'Geschäftsführer'}, {'from': 'person_310', 'to': 'company_21', 'label': 'Geschäftsführer'}, {'from': 'person_311', 'to': 'company_22', 'label': 'Prokurist'}, {'from': 'person_312', 'to': 'company_22', 'label': 'Prokurist'}, {'from': 'person_313', 'to': 'company_22', 'label': 'Geschäftsführer'}, {'from': 'person_314', 'to': 'company_23', 'label': 'Geschäftsführer'}, {'from': 'person_315', 'to': 'company_23', 'label': 'Geschäftsführer'}, {'from': 'person_316', 'to': 'company_23', 'label': 'Geschäftsführer'}, {'from': 'person_317', 'to': 'company_23', 'label': 'Geschäftsführer'}, {'from': 'person_318', 'to': 'company_24', 'label': 'Kommanditist'}, {'from': 'person_319', 'to': 'company_24', 'label': 'Kommanditist'}, {'from': 'person_320', 'to': 'company_24', 'label': 'Kommanditist'}, {'from': 'person_321', 'to': 'company_24', 'label': 'Kommanditist'}, {'from': 'person_322', 'to': 'company_24', 'label': 'Kommanditist'}, {'from': 'person_323', 'to': 'company_24', 'label': 'Kommanditist'}, {'from': 'person_324', 'to': 'company_24', 'label': 'Kommanditist'}, {'from': 'person_325', 'to': 'company_24', 'label': 'Kommanditist'}, {'from': 'person_326', 'to': 'company_24', 'label': 'Kommanditist'}, {'from': 'person_285', 'to': 'company_25', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_26', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_27', 'label': 'Geschäftsführer'}, {'from': 'person_327', 'to': 'company_28', 'label': 'Geschäftsführer'}, {'from': 'person_328', 'to': 'company_29', 'label': 'Geschäftsführer'}, {'from': 'person_329', 'to': 'company_29', 'label': 'Geschäftsführer'}, {'from': 'person_330', 'to': 'company_29', 'label': 'Prokurist'}, {'from': 'person_331', 'to': 'company_29', 'label': 'Prokurist'}, {'from': 'person_332', 'to': 'company_30', 'label': 'Geschäftsführer'}, {'from': 'person_333', 'to': 'company_30', 'label': 'Geschäftsführer'}, {'from': 'person_334', 'to': 'company_30', 'label': 'Geschäftsführer'}, {'from': 'person_335', 'to': 'company_30', 'label': 'Prokurist'}, {'from': 'person_336', 'to': 'company_30', 'label': 'Prokurist'}, {'from': 'person_337', 'to': 'company_30', 'label': 'Prokurist'}, {'from': 'person_338', 'to': 'company_31', 'label': 'Inhaber'}, {'from': 'person_339', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_340', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_341', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_342', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_343', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_344', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_345', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_346', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_347', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_348', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_349', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_350', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_351', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_352', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_353', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_354', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_355', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_356', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_357', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_358', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_359', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_360', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_361', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_362', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_363', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_364', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_365', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_366', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_367', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_368', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_369', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_370', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_371', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_372', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_373', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_374', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_375', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_376', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_377', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_378', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_379', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_380', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_381', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_382', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_383', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_384', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_385', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_386', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_387', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_388', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_389', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_390', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_391', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_392', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_393', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_394', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_395', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_396', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_397', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_398', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_399', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_400', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_401', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_402', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_403', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_404', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_405', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_406', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_407', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_408', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_409', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_410', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_411', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_412', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_413', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_414', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_415', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_416', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_417', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_418', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_419', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_420', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_421', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_422', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_423', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_424', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_425', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_426', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_427', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_428', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_429', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_430', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_431', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_432', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_433', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_434', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_435', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_436', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_437', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_438', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_439', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_440', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_441', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_442', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_443', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_444', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_445', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_446', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_447', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_448', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_449', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_450', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_451', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_452', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_453', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_454', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_455', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_456', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_457', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_458', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_459', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_460', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_461', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_462', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_463', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_464', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_465', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_466', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_467', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_468', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_469', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_470', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_471', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_472', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_473', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_474', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'company_845', 'to': 'company_32', 'label': 'Organisation'}, {'from': 'person_475', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_476', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_477', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_478', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_479', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_480', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_481', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_482', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_483', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_484', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_485', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_486', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_487', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_488', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_489', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_490', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_491', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_492', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_493', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_494', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_495', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_496', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_497', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_498', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_499', 'to': 'company_32', 'label': 'Kommanditist'}, {'from': 'person_500', 'to': 'company_33', 'label': 'Liquidator'}, {'from': 'company_1903', 'to': 'company_34', 'label': 'Organisation'}, {'from': 'person_332', 'to': 'company_35', 'label': 'Geschäftsführer'}, {'from': 'person_333', 'to': 'company_35', 'label': 'Geschäftsführer'}, {'from': 'person_334', 'to': 'company_35', 'label': 'Geschäftsführer'}, {'from': 'person_335', 'to': 'company_35', 'label': 'Prokurist'}, {'from': 'person_336', 'to': 'company_35', 'label': 'Prokurist'}, {'from': 'person_337', 'to': 'company_35', 'label': 'Prokurist'}, {'from': 'person_501', 'to': 'company_36', 'label': 'Geschäftsführer'}, {'from': 'person_502', 'to': 'company_37', 'label': 'Vorstand'}, {'from': 'person_503', 'to': 'company_37', 'label': 'Vorstand'}, {'from': 'person_504', 'to': 'company_37', 'label': 'Vorstand'}, {'from': 'person_288', 'to': 'company_38', 'label': 'Geschäftsführer'}, {'from': 'person_289', 'to': 'company_38', 'label': 'Geschäftsführer'}, {'from': 'person_290', 'to': 'company_38', 'label': 'Geschäftsführer'}, {'from': 'person_291', 'to': 'company_38', 'label': 'Geschäftsführer'}, {'from': 'person_505', 'to': 'company_39', 'label': 'Geschäftsführer'}, {'from': 'person_295', 'to': 'company_39', 'label': 'Geschäftsführer'}, {'from': 'person_293', 'to': 'company_39', 'label': 'Geschäftsführer'}, {'from': 'person_506', 'to': 'company_40', 'label': 'Geschäftsführer'}, {'from': 'person_507', 'to': 'company_41', 'label': 'Prokurist'}, {'from': 'person_508', 'to': 'company_41', 'label': 'Geschäftsführer'}, {'from': 'person_509', 'to': 'company_41', 'label': 'Geschäftsführer'}, {'from': 'person_510', 'to': 'company_41', 'label': 'Prokurist'}, {'from': 'person_511', 'to': 'company_41', 'label': 'Prokurist'}, {'from': 'person_512', 'to': 'company_41', 'label': 'Prokurist'}, {'from': 'person_513', 'to': 'company_42', 'label': 'Prokurist'}, {'from': 'person_514', 'to': 'company_42', 'label': 'Geschäftsführer'}, {'from': 'person_515', 'to': 'company_42', 'label': 'Geschäftsführer'}, {'from': 'person_516', 'to': 'company_43', 'label': 'Geschäftsführer'}, {'from': 'person_517', 'to': 'company_43', 'label': 'Geschäftsführer'}, {'from': 'person_518', 'to': 'company_43', 'label': 'Prokurist'}, {'from': 'person_519', 'to': 'company_43', 'label': 'Prokurist'}, {'from': 'person_520', 'to': 'company_44', 'label': 'Geschäftsführer'}, {'from': 'person_521', 'to': 'company_44', 'label': 'Geschäftsführer'}, {'from': 'person_522', 'to': 'company_44', 'label': 'Geschäftsführer'}, {'from': 'person_523', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_524', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_525', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_526', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_527', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_528', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_529', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_530', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_531', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_532', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_533', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_534', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_535', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_536', 'to': 'company_44', 'label': 'Prokurist'}, {'from': 'person_537', 'to': 'company_45', 'label': 'Geschäftsführer'}, {'from': 'person_538', 'to': 'company_45', 'label': 'Geschäftsführer'}, {'from': 'person_539', 'to': 'company_46', 'label': 'Geschäftsführer'}, {'from': 'person_333', 'to': 'company_47', 'label': 'Geschäftsführer'}, {'from': 'person_334', 'to': 'company_47', 'label': 'Geschäftsführer'}, {'from': 'person_332', 'to': 'company_47', 'label': 'Geschäftsführer'}, {'from': 'person_335', 'to': 'company_47', 'label': 'Prokurist'}, {'from': 'person_336', 'to': 'company_47', 'label': 'Prokurist'}, {'from': 'person_337', 'to': 'company_47', 'label': 'Prokurist'}, {'from': 'person_540', 'to': 'company_48', 'label': 'Partner'}, {'from': 'person_541', 'to': 'company_48', 'label': 'Partner'}, {'from': 'person_542', 'to': 'company_48', 'label': 'Partner'}, {'from': 'person_543', 'to': 'company_49', 'label': 'Vorstand'}, {'from': 'person_285', 'to': 'company_50', 'label': 'Geschäftsführer'}, {'from': 'person_544', 'to': 'company_51', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_52', 'label': 'Vorstand'}, {'from': 'person_545', 'to': 'company_53', 'label': 'Persönlich haftender Gesellschafter'}, {'from': 'person_546', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_547', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_548', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_549', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_550', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_551', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_552', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_553', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_554', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_555', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_556', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_557', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_558', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_559', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_560', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_561', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_562', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_563', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_564', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_565', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_566', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_567', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_568', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_569', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_570', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_571', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_572', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_573', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_574', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_575', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_576', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_577', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_578', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_579', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_580', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_581', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_582', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_583', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_584', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_585', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_586', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_587', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_588', 'to': 'company_53', 'label': 'Kommanditist'}, {'from': 'person_288', 'to': 'company_54', 'label': 'Geschäftsführer'}, {'from': 'person_289', 'to': 'company_54', 'label': 'Geschäftsführer'}, {'from': 'person_291', 'to': 'company_54', 'label': 'Geschäftsführer'}, {'from': 'person_589', 'to': 'company_55', 'label': 'Inhaber'}, {'from': 'person_514', 'to': 'company_56', 'label': 'Geschäftsführer'}, {'from': 'person_590', 'to': 'company_56', 'label': 'Geschäftsführer'}, {'from': 'person_517', 'to': 'company_56', 'label': 'Prokurist'}, {'from': 'person_591', 'to': 'company_57', 'label': 'Geschäftsführer'}, {'from': 'person_592', 'to': 'company_57', 'label': 'Geschäftsführer'}, {'from': 'person_593', 'to': 'company_57', 'label': 'Prokurist'}, {'from': 'person_594', 'to': 'company_57', 'label': 'Prokurist'}, {'from': 'person_595', 'to': 'company_58', 'label': 'Geschäftsführer'}, {'from': 'person_596', 'to': 'company_58', 'label': 'Prokurist'}, {'from': 'person_597', 'to': 'company_58', 'label': 'Prokurist'}, {'from': 'person_598', 'to': 'company_59', 'label': 'Geschäftsführer'}, {'from': 'person_599', 'to': 'company_59', 'label': 'Geschäftsführer'}, {'from': 'person_600', 'to': 'company_59', 'label': 'Prokurist'}, {'from': 'person_601', 'to': 'company_60', 'label': 'Geschäftsführer'}, {'from': 'person_602', 'to': 'company_60', 'label': 'Geschäftsführer'}, {'from': 'person_603', 'to': 'company_61', 'label': 'Geschäftsführer'}, {'from': 'person_604', 'to': 'company_61', 'label': 'Prokurist'}, {'from': 'person_605', 'to': 'company_61', 'label': 'Prokurist'}, {'from': 'person_285', 'to': 'company_62', 'label': 'Geschäftsführer'}, {'from': 'person_606', 'to': 'company_63', 'label': 'Geschäftsführer'}, {'from': 'person_607', 'to': 'company_64', 'label': 'Geschäftsführer'}, {'from': 'person_608', 'to': 'company_64', 'label': 'Geschäftsführer'}, {'from': 'person_609', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_610', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_611', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_612', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_613', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_614', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_615', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_616', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_617', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_618', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_619', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_620', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_621', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_622', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_623', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_624', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_625', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_626', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_627', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_628', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_629', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_630', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_631', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_632', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_633', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_634', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_635', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_636', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_637', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_638', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_639', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_640', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_641', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_642', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_643', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_644', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_645', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_646', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_647', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_648', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_649', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_650', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_651', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_652', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_653', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_654', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_655', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_656', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_657', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_658', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_659', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_660', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_661', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_662', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_663', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_664', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_665', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_666', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_667', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_668', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_669', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_670', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_671', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_672', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_673', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_674', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_675', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_676', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_677', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_678', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_679', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_680', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_681', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_682', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_683', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_684', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_685', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_686', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_687', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_688', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_689', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_690', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_691', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_692', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_693', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_694', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_695', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_696', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_697', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_698', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_699', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_700', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_701', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_702', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_703', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_704', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_705', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_706', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_707', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_708', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_709', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_710', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_711', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_712', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_713', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_714', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_715', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_716', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_717', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_718', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_719', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_720', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_721', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_722', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_723', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_724', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_725', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_726', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_727', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_728', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_729', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_730', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_731', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_732', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_733', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_734', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_735', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_736', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_737', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_738', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_739', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_740', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_741', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_742', 'to': 'company_65', 'label': 'Kommanditist'}, {'from': 'person_743', 'to': 'company_66', 'label': 'Geschäftsführer'}, {'from': 'person_744', 'to': 'company_66', 'label': 'Geschäftsführer'}, {'from': 'person_745', 'to': 'company_67', 'label': 'Geschäftsführer'}, {'from': 'person_746', 'to': 'company_67', 'label': 'Prokurist'}, {'from': 'person_747', 'to': 'company_67', 'label': 'Prokurist'}, {'from': 'person_748', 'to': 'company_67', 'label': 'Prokurist'}, {'from': 'person_749', 'to': 'company_67', 'label': 'Geschäftsführer'}, {'from': 'person_750', 'to': 'company_68', 'label': 'Prokurist'}, {'from': 'person_751', 'to': 'company_68', 'label': 'Geschäftsführer'}, {'from': 'person_752', 'to': 'company_68', 'label': 'Geschäftsführer'}, {'from': 'person_753', 'to': 'company_68', 'label': 'Prokurist'}, {'from': 'person_285', 'to': 'company_70', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_71', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_72', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_73', 'label': 'Geschäftsführer'}, {'from': 'company_163', 'to': 'company_74', 'label': 'Organisation'}, {'from': 'person_606', 'to': 'company_74', 'label': 'Prokurist'}, {'from': 'person_286', 'to': 'company_75', 'label': 'Kommanditist'}, {'from': 'person_285', 'to': 'company_76', 'label': 'Geschäftsführer'}, {'from': 'company_80', 'to': 'company_77', 'label': 'Organisation'}, {'from': 'person_754', 'to': 'company_77', 'label': 'Kommanditist'}, {'from': 'person_755', 'to': 'company_77', 'label': 'Kommanditist'}, {'from': 'person_756', 'to': 'company_77', 'label': 'Kommanditist'}, {'from': 'person_757', 'to': 'company_77', 'label': 'Kommanditist'}, {'from': 'person_758', 'to': 'company_77', 'label': 'Persönlich haftender Gesellschafter'}, {'from': 'person_285', 'to': 'company_78', 'label': 'Geschäftsführer'}, {'from': 'person_759', 'to': 'company_79', 'label': 'Geschäftsführer'}, {'from': 'person_758', 'to': 'company_80', 'label': 'Geschäftsführer'}, {'from': 'person_760', 'to': 'company_80', 'label': 'Geschäftsführer'}, {'from': 'person_761', 'to': 'company_81', 'label': 'Geschäftsführer'}, {'from': 'person_762', 'to': 'company_82', 'label': 'Liquidator'}, {'from': 'person_763', 'to': 'company_83', 'label': 'Geschäftsführer'}, {'from': 'person_520', 'to': 'company_84', 'label': 'Geschäftsführer'}, {'from': 'person_521', 'to': 'company_84', 'label': 'Geschäftsführer'}, {'from': 'person_522', 'to': 'company_84', 'label': 'Geschäftsführer'}, {'from': 'person_523', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_524', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_525', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_526', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_527', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_528', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_529', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_530', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_531', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_532', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_533', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_534', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_535', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_536', 'to': 'company_84', 'label': 'Prokurist'}, {'from': 'person_764', 'to': 'company_85', 'label': 'Geschäftsführer'}, {'from': 'person_765', 'to': 'company_86', 'label': 'Geschäftsführer'}, {'from': 'person_766', 'to': 'company_86', 'label': 'Geschäftsführer'}, {'from': 'person_767', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_768', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_514', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_769', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_770', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_771', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_772', 'to': 'company_87', 'label': 'Vorstand'}, {'from': 'person_773', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_517', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_774', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_775', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_516', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_776', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_515', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_777', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_778', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_779', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_780', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_781', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_782', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_783', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_784', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_785', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_786', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_787', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_788', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_789', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_790', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_791', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_792', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_793', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_794', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_795', 'to': 'company_87', 'label': 'Vorstand'}, {'from': 'person_796', 'to': 'company_87', 'label': 'Vorstand'}, {'from': 'person_797', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_798', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_799', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_800', 'to': 'company_87', 'label': 'Vorstand'}, {'from': 'person_801', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_802', 'to': 'company_87', 'label': 'Vorstand'}, {'from': 'person_803', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_804', 'to': 'company_87', 'label': 'Prokurist'}, {'from': 'person_805', 'to': 'company_88', 'label': 'Geschäftsführer'}, {'from': 'person_806', 'to': 'company_89', 'label': 'Geschäftsführer'}, {'from': 'person_807', 'to': 'company_89', 'label': 'Geschäftsführer'}, {'from': 'person_808', 'to': 'company_89', 'label': 'Geschäftsführer'}, {'from': 'person_809', 'to': 'company_89', 'label': 'Prokurist'}, {'from': 'person_810', 'to': 'company_89', 'label': 'Prokurist'}, {'from': 'person_520', 'to': 'company_90', 'label': 'Geschäftsführer'}, {'from': 'person_521', 'to': 'company_90', 'label': 'Geschäftsführer'}, {'from': 'person_522', 'to': 'company_90', 'label': 'Geschäftsführer'}, {'from': 'person_523', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_524', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_525', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_526', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_527', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_528', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_529', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_530', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_531', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_532', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_533', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_534', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_535', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_536', 'to': 'company_90', 'label': 'Prokurist'}, {'from': 'person_520', 'to': 'company_91', 'label': 'Geschäftsführer'}, {'from': 'person_521', 'to': 'company_91', 'label': 'Geschäftsführer'}, {'from': 'person_522', 'to': 'company_91', 'label': 'Geschäftsführer'}, {'from': 'person_523', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_524', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_525', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_811', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_527', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_528', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_529', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_530', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_531', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_532', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_533', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_534', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_535', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_536', 'to': 'company_91', 'label': 'Prokurist'}, {'from': 'person_314', 'to': 'company_92', 'label': 'Geschäftsführer'}, {'from': 'person_315', 'to': 'company_92', 'label': 'Geschäftsführer'}, {'from': 'person_812', 'to': 'company_92', 'label': 'Geschäftsführer'}, {'from': 'person_813', 'to': 'company_92', 'label': 'Geschäftsführer'}, {'from': 'person_814', 'to': 'company_92', 'label': 'Geschäftsführer'}, {'from': 'person_815', 'to': 'company_92', 'label': 'Geschäftsführer'}, {'from': 'person_816', 'to': 'company_93', 'label': 'Geschäftsführer'}, {'from': 'person_817', 'to': 'company_93', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_94', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_95', 'label': 'Geschäftsführer'}, {'from': 'person_818', 'to': 'company_96', 'label': 'Vorstand'}, {'from': 'person_819', 'to': 'company_96', 'label': 'Vorstand'}, {'from': 'person_820', 'to': 'company_96', 'label': 'Vorstand'}, {'from': 'person_821', 'to': 'company_96', 'label': 'Vorstand'}, {'from': 'person_822', 'to': 'company_97', 'label': 'Geschäftsführer'}, {'from': 'person_823', 'to': 'company_97', 'label': 'Geschäftsführer'}, {'from': 'person_824', 'to': 'company_98', 'label': 'Prokurist'}, {'from': 'person_825', 'to': 'company_98', 'label': 'Prokurist'}, {'from': 'person_826', 'to': 'company_98', 'label': 'Prokurist'}, {'from': 'person_827', 'to': 'company_98', 'label': 'Prokurist'}, {'from': 'person_520', 'to': 'company_99', 'label': 'Geschäftsführer'}, {'from': 'person_521', 'to': 'company_99', 'label': 'Geschäftsführer'}, {'from': 'person_522', 'to': 'company_99', 'label': 'Geschäftsführer'}, {'from': 'person_523', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_524', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_525', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_526', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_527', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_528', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_529', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_530', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_531', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_532', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_533', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_534', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_535', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_536', 'to': 'company_99', 'label': 'Prokurist'}, {'from': 'person_828', 'to': 'company_100', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_101', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_102', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_103', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_104', 'label': 'Geschäftsführer'}, {'from': 'person_285', 'to': 'company_105', 'label': 'Liquidator'}, {'from': 'person_285', 'to': 'company_106', 'label': 'Geschäftsführer'}, {'from': 'person_286', 'to': 'company_107', 'label': 'Geschäftsführer'}, {'from': 'person_287', 'to': 'company_107', 'label': 'Geschäftsführer'}, {'from': 'person_286', 'to': 'company_108', 'label': 'Geschäftsführer'}, {'from': 'person_287', 'to': 'company_108', 'label': 'Geschäftsführer'}, {'from': 'person_829', 'to': 'company_109', 'label': 'Geschäftsführer'}, {'from': 'person_830', 'to': 'company_109', 'label': 'Geschäftsführer'}, {'from': 'person_831', 'to': 'company_110', 'label': 'Geschäftsführer'}, {'from': 'person_832', 'to': 'company_110', 'label': 'Geschäftsführer'}, {'from': 'person_833', 'to': 'company_110', 'label': 'Geschäftsführer'}, {'from': 'person_834', 'to': 'company_110', 'label': 'Prokurist'}, {'from': 'person_835', 'to': 'company_110', 'label': 'Prokurist'}, {'from': 'person_836', 'to': 'company_110', 'label': 'Geschäftsführer'}, {'from': 'person_837', 'to': 'company_110', 'label': 'Prokurist'}, {'from': 'person_838', 'to': 'company_110', 'label': 'Geschäftsführer'}, {'from': 'person_839', 'to': 'company_110', 'label': 'Geschäftsführer'}, {'from': 'person_840', 'to': 'company_110', 'label': 'Prokurist'}, {'from': 'person_841', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_842', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_843', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_844', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_845', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_846', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_847', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_848', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_849', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_850', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_851', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_852', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_853', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_854', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_855', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_856', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_857', 'to': 'company_111', 'label': 'Kommanditist'}, {'from': 'person_858', 'to': 'company_112', 'label': 'Geschäftsführer'}, {'from': 'person_859', 'to': 'company_113', 'label': 'Geschäftsführer'}, {'from': 'person_860', 'to': 'company_113', 'label': 'Geschäftsführer'}, {'from': 'person_861', 'to': 'company_114', 'label': 'Prokurist'}, {'from': 'person_862', 'to': 'company_114', 'label': 'Geschäftsführer'}, {'from': 'person_863', 'to': 'company_114', 'label': 'Geschäftsführer'}]\n" - ] - }, { "data": { "text/html": [ @@ -323,7 +479,7 @@ " \n", " 1\n", " person_1\n", - " Tetau, Nicolas\n", + " Nicolas, Tetau\n", " Person\n", " dot\n", " blue\n", @@ -331,7 +487,7 @@ " \n", " 2\n", " person_2\n", - " Dammast, Lutz\n", + " Lutz, Dammast\n", " Person\n", " dot\n", " blue\n", @@ -347,7 +503,7 @@ " \n", " 4\n", " person_3\n", - " Tutsch, Rosemarie\n", + " Rosemarie, Tutsch\n", " Person\n", " dot\n", " blue\n", @@ -359,10 +515,10 @@ "text/plain": [ " index label type shape \\\n", "0 company_1 0 10 24 Telefondienste GmbH Company dot \n", - "1 person_1 Tetau, Nicolas Person dot \n", - "2 person_2 Dammast, Lutz Person dot \n", + "1 person_1 Nicolas, Tetau Person dot \n", + "2 person_2 Lutz, Dammast Person dot \n", "3 company_2 1. Staiger Grundstücksverwaltung GmbH & Co. KG Company dot \n", - "4 person_3 Tutsch, Rosemarie Person dot \n", + "4 person_3 Rosemarie, Tutsch Person dot \n", "\n", " color \n", "0 #729b79ff \n", @@ -372,15 +528,12 @@ "4 blue " ] }, - "execution_count": 5, + "execution_count": 42, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "from aki_prj23_transparenzregister.utils.enum_types import RelationTypeEnum\n", - "\n", - "\n", "def get_data():\n", " nodes = {}\n", " edges = []\n", @@ -428,7 +581,7 @@ " )\n", " if (\"person_\" + str(person.id)) not in nodes:\n", " nodes[\"person_\" + str(person.id)] = {\n", - " \"label\": f\"{person.surname}, {person.name}\",\n", + " \"label\": f\"{person.firstname}, {person.lastname}\",\n", " \"type\": \"Person\",\n", " \"shape\": \"dot\",\n", " \"color\": \"blue\",\n", @@ -477,7 +630,7 @@ }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 43, "metadata": {}, "outputs": [ { @@ -511,46 +664,46 @@ " 0\n", " person_1\n", " company_1\n", - " Geschäftsführer\n", + " RelationshipRoleEnum.GESCHAEFTSFUEHRER\n", " \n", " \n", " 1\n", " person_2\n", " company_1\n", - " Prokurist\n", + " RelationshipRoleEnum.PROKURIST\n", " \n", " \n", " 2\n", " person_3\n", " company_2\n", - " Kommanditist\n", + " RelationshipRoleEnum.KOMMANDITIST\n", " \n", " \n", " 3\n", " person_4\n", " company_2\n", - " Kommanditist\n", + " RelationshipRoleEnum.KOMMANDITIST\n", " \n", " \n", " 4\n", " person_5\n", " company_2\n", - " Kommanditist\n", + " RelationshipRoleEnum.KOMMANDITIST\n", " \n", " \n", "\n", "" ], "text/plain": [ - " from to label\n", - "0 person_1 company_1 Geschäftsführer\n", - "1 person_2 company_1 Prokurist\n", - "2 person_3 company_2 Kommanditist\n", - "3 person_4 company_2 Kommanditist\n", - "4 person_5 company_2 Kommanditist" + " from to label\n", + "0 person_1 company_1 RelationshipRoleEnum.GESCHAEFTSFUEHRER\n", + "1 person_2 company_1 RelationshipRoleEnum.PROKURIST\n", + "2 person_3 company_2 RelationshipRoleEnum.KOMMANDITIST\n", + "3 person_4 company_2 RelationshipRoleEnum.KOMMANDITIST\n", + "4 person_5 company_2 RelationshipRoleEnum.KOMMANDITIST" ] }, - "execution_count": 6, + "execution_count": 43, "metadata": {}, "output_type": "execute_result" } @@ -561,7 +714,7 @@ }, { "cell_type": "code", - "execution_count": 7, + "execution_count": 44, "metadata": {}, "outputs": [ { @@ -596,7 +749,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 49, "metadata": {}, "outputs": [], "source": [ @@ -613,11 +766,1326 @@ "net.set_edge_smooth(\"dynamic\")\n", "\n", "net.repulsion()\n", - "net.show_buttons()\n", + "net.show_buttons(filter_=[\"physics\"])\n", + "\n", + "# net.show_buttons()\n", "\n", "# save graph as HTML\n", "net.save_graph(\"./tmp.html\")" ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'\\n \\n \\n \\n \\n \\n \\n \\n \\n
\\n

\\n
\\n\\n\\n \\n \\n\\n\\n
\\n

\\n
\\n \\n \\n\\n\\n \\n
\\n \\n \\n
\\n
\\n\\n \\n
\\n
\\n
0%
\\n
\\n
\\n
\\n
\\n
\\n \\n \\n
\\n \\n\\n \\n \\n'" + ] + }, + "execution_count": 48, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "net.generate_html(\"./tmp.html\")" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'person_1': array([-0.94645625, -0.09531674]),\n", + " 'company_1': array([-0.94813806, -0.08389861]),\n", + " 'person_2': array([-0.97526002, -0.0871018 ]),\n", + " 'person_3': array([0.54134536, 0.64503521]),\n", + " 'company_2': array([0.51604873, 0.62229675]),\n", + " 'person_4': array([0.5037812 , 0.62973112]),\n", + " 'person_5': array([0.5285213 , 0.65385073]),\n", + " 'person_6': array([0.52969128, 0.61765826]),\n", + " 'person_7': array([0.49968848, 0.60013074]),\n", + " 'person_8': array([0.5363701 , 0.65151918]),\n", + " 'person_9': array([-0.77727145, 0.30530825]),\n", + " 'company_3': array([-0.81598961, 0.32018232]),\n", + " 'person_10': array([-0.8483026, 0.332434 ]),\n", + " 'company_4': array([-0.97412682, -0.09859657]),\n", + " 'company_2213': array([ 0.38867021, -0.93487197]),\n", + " 'company_5': array([ 0.39772275, -0.94155639]),\n", + " 'person_11': array([-0.29175109, -0.17030789]),\n", + " 'company_6': array([-0.29339093, -0.13240719]),\n", + " 'person_12': array([-0.29848012, -0.19507937]),\n", + " 'person_13': array([-0.32924238, -0.13631371]),\n", + " 'person_14': array([-0.35154879, -0.12680687]),\n", + " 'person_15': array([-0.34310305, -0.10627093]),\n", + " 'person_16': array([-0.23552611, -0.16592056]),\n", + " 'person_17': array([-0.24874705, -0.18067214]),\n", + " 'person_18': array([-0.32502359, -0.14743052]),\n", + " 'person_19': array([-0.31562042, -0.09711537]),\n", + " 'person_20': array([-0.34951004, -0.12192237]),\n", + " 'person_21': array([-0.33635387, -0.18849233]),\n", + " 'person_22': array([-0.33080184, -0.12710813]),\n", + " 'person_23': array([-0.24246007, -0.16528203]),\n", + " 'person_24': array([-0.26356915, -0.09336084]),\n", + " 'person_25': array([-0.23849528, -0.12071636]),\n", + " 'person_26': array([-0.30277765, -0.14981653]),\n", + " 'person_27': array([-0.34759021, -0.09525438]),\n", + " 'person_28': array([-0.22937499, -0.1492146 ]),\n", + " 'person_29': array([-0.25415164, -0.17853956]),\n", + " 'person_30': array([-0.27666426, -0.18549836]),\n", + " 'person_31': array([-0.27674809, -0.17531732]),\n", + " 'person_32': array([-0.35591117, -0.15576491]),\n", + " 'person_33': array([-0.27401137, -0.07199298]),\n", + " 'person_34': array([-0.34639099, -0.17925061]),\n", + " 'person_35': array([-0.23612511, -0.15300302]),\n", + " 'person_36': array([-0.34957319, -0.15907429]),\n", + " 'person_37': array([-0.2585243 , -0.14643718]),\n", + " 'person_38': array([-0.27503318, -0.16592352]),\n", + " 'person_39': array([-0.2268457 , -0.14214373]),\n", + " 'person_40': array([-0.33319759, -0.08393148]),\n", + " 'person_41': array([-0.25063512, -0.08446116]),\n", + " 'person_42': array([-0.36065874, -0.14271824]),\n", + " 'person_43': array([-0.2559768 , -0.08336009]),\n", + " 'person_44': array([-0.29265791, -0.11994884]),\n", + " 'person_45': array([-0.28746808, -0.09585708]),\n", + " 'person_46': array([-0.30676436, -0.10049116]),\n", + " 'person_47': array([-0.33626893, -0.10389478]),\n", + " 'person_48': array([-0.29634419, -0.1066076 ]),\n", + " 'person_49': array([-0.25568298, -0.17198077]),\n", + " 'person_50': array([-0.28405654, -0.06668834]),\n", + " 'person_51': array([-0.32179609, -0.13053083]),\n", + " 'person_52': array([-0.2653006 , -0.18520828]),\n", + " 'person_53': array([-0.28927353, -0.20091902]),\n", + " 'person_54': array([-0.28396797, -0.17398784]),\n", + " 'person_55': array([-0.24099757, -0.09950114]),\n", + " 'person_56': array([-0.26412135, -0.11836554]),\n", + " 'person_57': array([-0.33753172, -0.11729389]),\n", + " 'person_58': array([-0.34249121, -0.18461512]),\n", + " 'person_59': array([-0.24211307, -0.10677598]),\n", + " 'person_60': array([-0.34635359, -0.13722599]),\n", + " 'person_61': array([-0.25506011, -0.0984504 ]),\n", + " 'person_62': array([-0.27482426, -0.13117769]),\n", + " 'person_63': array([-0.36155722, -0.11806162]),\n", + " 'person_64': array([-0.35711035, -0.16349809]),\n", + " 'person_65': array([-0.30454987, -0.09386024]),\n", + " 'person_66': array([-0.30570704, -0.12325798]),\n", + " 'person_67': array([-0.26150358, -0.10069295]),\n", + " 'person_68': array([-0.26771837, -0.11121737]),\n", + " 'person_69': array([-0.35327289, -0.1348343 ]),\n", + " 'person_70': array([-0.29553381, -0.18889698]),\n", + " 'person_71': array([-0.36388421, -0.12411621]),\n", + " 'person_72': array([-0.30633852, -0.15865022]),\n", + " 'person_73': array([-0.31611109, -0.15192898]),\n", + " 'person_74': array([-0.33572704, -0.09055942]),\n", + " 'person_75': array([-0.32628727, -0.1879421 ]),\n", + " 'person_76': array([-0.28807777, -0.18834905]),\n", + " 'person_77': array([-0.34216365, -0.15327291]),\n", + " 'person_78': array([-0.23144235, -0.1303439 ]),\n", + " 'person_79': array([-0.29887101, -0.08192118]),\n", + " 'person_80': array([-0.30366912, -0.06944449]),\n", + " 'person_81': array([-0.34248638, -0.14517525]),\n", + " 'person_82': array([-0.33797169, -0.12936948]),\n", + " 'person_83': array([-0.29858708, -0.17432821]),\n", + " 'person_84': array([-0.28869048, -0.1799521 ]),\n", + " 'person_85': array([-0.25333053, -0.12910315]),\n", + " 'person_86': array([-0.3396996 , -0.08197703]),\n", + " 'person_87': array([-0.33310816, -0.17658722]),\n", + " 'person_88': array([-0.30958718, -0.07417209]),\n", + " 'person_89': array([-0.22711581, -0.13401406]),\n", + " 'person_90': array([-0.29502481, -0.1598009 ]),\n", + " 'person_91': array([-0.29545891, -0.20110004]),\n", + " 'person_92': array([-0.28458446, -0.08131039]),\n", + " 'person_93': array([-0.32938036, -0.16172211]),\n", + " 'person_94': array([-0.34091777, -0.12312736]),\n", + " 'person_95': array([-0.25413662, -0.16188113]),\n", + " 'person_96': array([-0.30210349, -0.20136121]),\n", + " 'person_97': array([-0.35971785, -0.10945469]),\n", + " 'person_98': array([-0.34795102, -0.10139088]),\n", + " 'person_99': array([-0.32198447, -0.10080085]),\n", + " 'person_100': array([-0.27565601, -0.11897936]),\n", + " 'person_101': array([-0.32232347, -0.15734047]),\n", + " 'person_102': array([-0.25773147, -0.09014112]),\n", + " 'person_103': array([-0.32007191, -0.10830058]),\n", + " 'person_104': array([-0.33657196, -0.14957471]),\n", + " 'person_105': array([-0.32008606, -0.06953587]),\n", + " 'person_106': array([-0.27546057, -0.10764173]),\n", + " 'person_107': array([-0.31599981, -0.19854243]),\n", + " 'person_108': array([-0.28358132, -0.15003833]),\n", + " 'person_109': array([-0.33064809, -0.15360624]),\n", + " 'person_110': array([-0.30513799, -0.19570234]),\n", + " 'person_111': array([-0.35108596, -0.10630029]),\n", + " 'person_112': array([-0.2699343, -0.1752588]),\n", + " 'person_113': array([-0.30235353, -0.08712091]),\n", + " 'person_114': array([-0.36130774, -0.14949211]),\n", + " 'person_115': array([-0.31118539, -0.19315623]),\n", + " 'person_116': array([-0.32425973, -0.115748 ]),\n", + " 'person_117': array([-0.33773968, -0.1662745 ]),\n", + " 'person_118': array([-0.28248101, -0.16562799]),\n", + " 'person_119': array([-0.28330615, -0.19272357]),\n", + " 'person_120': array([-0.34252441, -0.1751582 ]),\n", + " 'person_121': array([-0.26442012, -0.19363256]),\n", + " 'person_122': array([-0.32087761, -0.09130382]),\n", + " 'person_123': array([-0.24182765, -0.15494514]),\n", + " 'person_124': array([-0.23110683, -0.15691864]),\n", + " 'person_125': array([-0.26984686, -0.1018667 ]),\n", + " 'person_126': array([-0.25849685, -0.190953 ]),\n", + " 'person_127': array([-0.23719391, -0.16029818]),\n", + " 'person_128': array([-0.31414136, -0.07009578]),\n", + " 'person_129': array([-0.3608833, -0.1361005]),\n", + " 'person_130': array([-0.30973211, -0.20032363]),\n", + " 'person_131': array([-0.29182872, -0.06551932]),\n", + " 'person_132': array([-0.31116545, -0.09004549]),\n", + " 'person_133': array([-0.27721065, -0.14235254]),\n", + " 'person_134': array([-0.33111295, -0.18925884]),\n", + " 'person_135': array([-0.3171078 , -0.12261007]),\n", + " 'person_136': array([-0.30786574, -0.17140229]),\n", + " 'person_137': array([-0.26969752, -0.19040138]),\n", + " 'person_138': array([-0.24411146, -0.12569062]),\n", + " 'person_139': array([-0.23618245, -0.10806785]),\n", + " 'person_140': array([-0.33688942, -0.15975361]),\n", + " 'person_141': array([-0.26466373, -0.08654434]),\n", + " 'person_142': array([-0.24481973, -0.17223406]),\n", + " 'person_143': array([-0.25521392, -0.13911767]),\n", + " 'person_144': array([-0.35885474, -0.12687126]),\n", + " 'person_145': array([-0.29341483, -0.09035993]),\n", + " 'person_146': array([-0.24878855, -0.10024062]),\n", + " 'person_147': array([-0.29925019, -0.06536503]),\n", + " 'person_148': array([-0.32028595, -0.19525304]),\n", + " 'person_149': array([-0.27812955, -0.06839554]),\n", + " 'person_150': array([-0.2388086 , -0.17180853]),\n", + " 'person_151': array([-0.27214855, -0.09459578]),\n", + " 'person_152': array([-0.35966849, -0.15716751]),\n", + " 'person_153': array([-0.25879639, -0.1852358 ]),\n", + " 'person_154': array([-0.32128677, -0.07502811]),\n", + " 'person_155': array([-0.23833998, -0.13017254]),\n", + " 'person_156': array([-0.270511 , -0.08618389]),\n", + " 'person_157': array([-0.34483397, -0.09038094]),\n", + " 'person_158': array([-0.26398477, -0.13696922]),\n", + " 'person_159': array([-0.35423067, -0.14922142]),\n", + " 'person_160': array([-0.23377162, -0.12400025]),\n", + " 'person_161': array([-0.3169232 , -0.07871289]),\n", + " 'person_162': array([-0.2913169 , -0.19486848]),\n", + " 'person_163': array([-0.25747752, -0.1231555 ]),\n", + " 'person_164': array([-0.31368151, -0.0841317 ]),\n", + " 'person_165': array([-0.24953678, -0.1195419 ]),\n", + " 'person_166': array([-0.31372544, -0.16174915]),\n", + " 'person_167': array([-0.28781334, -0.11143665]),\n", + " 'person_168': array([-0.25135517, -0.09228915]),\n", + " 'person_169': array([-0.29629523, -0.07150467]),\n", + " 'person_170': array([-0.29029462, -0.08472709]),\n", + " 'person_171': array([-0.25985792, -0.15596719]),\n", + " 'person_172': array([-0.36200643, -0.13082623]),\n", + " 'person_173': array([-0.36532846, -0.13962942]),\n", + " 'person_174': array([-0.33989909, -0.13591783]),\n", + " 'person_175': array([-0.33621931, -0.17149328]),\n", + " 'person_176': array([-0.23595402, -0.10096996]),\n", + " 'person_177': array([-0.26501215, -0.12808612]),\n", + " 'person_178': array([-0.27120963, -0.18224059]),\n", + " 'person_179': array([-0.31634104, -0.18395349]),\n", + " 'person_180': array([-0.34882769, -0.11178296]),\n", + " 'person_181': array([-0.28672624, -0.15867458]),\n", + " 'person_182': array([-0.24731468, -0.16160429]),\n", + " 'person_183': array([-0.33712119, -0.11065499]),\n", + " 'person_184': array([-0.28381744, -0.19959599]),\n", + " 'person_185': array([-0.31166458, -0.14072569]),\n", + " 'person_186': array([-0.24924822, -0.13474645]),\n", + " 'person_187': array([-0.32861003, -0.08866172]),\n", + " 'person_188': array([-0.34983265, -0.17378041]),\n", + " 'person_189': array([-0.32165 , -0.1407997]),\n", + " 'person_190': array([-0.35406747, -0.11852243]),\n", + " 'person_191': array([-0.26341456, -0.17306204]),\n", + " 'person_192': array([-0.33466858, -0.14168544]),\n", + " 'person_193': array([-0.30889809, -0.06642918]),\n", + " 'person_194': array([-0.32865357, -0.18165964]),\n", + " 'person_195': array([-0.24559295, -0.11198439]),\n", + " 'person_196': array([-0.32185495, -0.17998117]),\n", + " 'person_197': array([-0.34442183, -0.16827418]),\n", + " 'person_198': array([-0.24411876, -0.09475746]),\n", + " 'person_199': array([-0.33036637, -0.11796038]),\n", + " 'person_200': array([-0.2671257 , -0.16632527]),\n", + " 'person_201': array([-0.30177242, -0.18231125]),\n", + " 'person_202': array([-0.2930516, -0.0778314]),\n", + " 'person_203': array([-0.23265606, -0.13782749]),\n", + " 'person_204': array([-0.34503484, -0.11642298]),\n", + " 'person_205': array([-0.32178032, -0.08460148]),\n", + " 'person_206': array([-0.2440332 , -0.17839493]),\n", + " 'person_207': array([-0.34902596, -0.15228869]),\n", + " 'person_208': array([-0.27794567, -0.1987088 ]),\n", + " 'person_209': array([-0.26093122, -0.17903952]),\n", + " 'person_210': array([-0.24246714, -0.1406489 ]),\n", + " 'person_211': array([-0.28251511, -0.10261877]),\n", + " 'person_212': array([-0.25291038, -0.15048315]),\n", + " 'person_213': array([-0.30213702, -0.075909 ]),\n", + " 'person_214': array([-0.33364704, -0.07757835]),\n", + " 'person_215': array([-0.33425444, -0.09759662]),\n", + " 'person_216': array([-0.27893758, -0.09419606]),\n", + " 'person_217': array([-0.25221163, -0.18624796]),\n", + " 'person_218': array([-0.25510305, -0.11376907]),\n", + " 'person_219': array([-0.34335935, -0.16070066]),\n", + " 'person_220': array([-0.35045302, -0.16576217]),\n", + " 'person_221': array([-0.22834022, -0.11469944]),\n", + " 'person_222': array([-0.30358118, -0.18917699]),\n", + " 'person_223': array([-0.30903101, -0.1070931 ]),\n", + " 'person_224': array([-0.3277829 , -0.07384476]),\n", + " 'person_225': array([-0.24584529, -0.08897725]),\n", + " 'person_226': array([-0.27297825, -0.15297757]),\n", + " 'person_227': array([-0.32904494, -0.17344593]),\n", + " 'person_228': array([-0.27542794, -0.08266915]),\n", + " 'person_229': array([-0.32282442, -0.1726789 ]),\n", + " 'person_230': array([-0.32615292, -0.19424482]),\n", + " 'person_231': array([-0.35569215, -0.10243949]),\n", + " 'person_232': array([-0.32871997, -0.10612521]),\n", + " 'person_233': array([-0.23283327, -0.11210861]),\n", + " 'person_234': array([-0.24267364, -0.11722376]),\n", + " 'person_235': array([-0.3424325 , -0.08640245]),\n", + " 'person_236': array([-0.25865221, -0.07890566]),\n", + " 'person_237': array([-0.32671022, -0.08038931]),\n", + " 'person_238': array([-0.35250273, -0.09533908]),\n", + " 'person_239': array([-0.34687948, -0.13040006]),\n", + " 'person_240': array([-0.31160167, -0.11439496]),\n", + " 'person_241': array([-0.2690877 , -0.07346647]),\n", + " 'person_242': array([-0.24994205, -0.10633726]),\n", + " 'person_243': array([-0.24139555, -0.13474838]),\n", + " 'person_244': array([-0.23490468, -0.1442053 ]),\n", + " 'person_245': array([-0.34092984, -0.09711611]),\n", + " 'person_246': array([-0.24736744, -0.14519688]),\n", + " 'person_247': array([-0.31944054, -0.18935986]),\n", + " 'person_248': array([-0.35619909, -0.14365619]),\n", + " 'person_249': array([-0.27810174, -0.07709685]),\n", + " 'person_250': array([-0.27147946, -0.19708283]),\n", + " 'person_251': array([-0.28232709, -0.18313722]),\n", + " 'person_252': array([-0.28445387, -0.07459529]),\n", + " 'person_253': array([-0.35533354, -0.17027247]),\n", + " 'person_254': array([-0.31584728, -0.16982235]),\n", + " 'person_255': array([-0.32752156, -0.09587284]),\n", + " 'person_256': array([-0.3488076, -0.1431351]),\n", + " 'person_257': array([-0.2661292 , -0.07928302]),\n", + " 'person_258': array([-0.35565594, -0.11293326]),\n", + " 'person_259': array([-0.30186555, -0.16682148]),\n", + " 'person_260': array([-0.24827398, -0.15470658]),\n", + " 'person_261': array([-0.25962672, -0.10798042]),\n", + " 'person_262': array([-0.32361701, -0.16548169]),\n", + " 'person_263': array([-0.2811338 , -0.08757194]),\n", + " 'person_264': array([-0.29620138, -0.09812378]),\n", + " 'person_265': array([-0.30793014, -0.08066995]),\n", + " 'person_266': array([-0.28939083, -0.07124583]),\n", + " 'person_267': array([-0.25980672, -0.16525091]),\n", + " 'person_268': array([-0.25017574, -0.16947731]),\n", + " 'person_269': array([-0.23954843, -0.14720881]),\n", + " 'person_270': array([-0.27643541, -0.19196527]),\n", + " 'person_271': array([-0.26265508, -0.07424586]),\n", + " 'person_272': array([-0.33781454, -0.18183184]),\n", + " 'person_273': array([-0.29497415, -0.18174928]),\n", + " 'person_274': array([-0.22878696, -0.12270802]),\n", + " 'person_275': array([-0.3079555 , -0.18025157]),\n", + " 'person_276': array([-0.31096753, -0.18747669]),\n", + " 'person_277': array([-0.31447831, -0.17731422]),\n", + " 'person_278': array([-0.26817611, -0.15879087]),\n", + " 'person_279': array([-0.26626343, -0.14641608]),\n", + " 'person_280': array([0.76546466, 0.51142812]),\n", + " 'company_7': array([0.77644122, 0.51908648]),\n", + " 'person_281': array([ 0.14806524, -0.89926249]),\n", + " 'company_8': array([ 0.14003529, -0.86849111]),\n", + " 'person_282': array([ 0.13896646, -0.90096533]),\n", + " 'person_283': array([ 0.80375147, -0.41634136]),\n", + " 'company_9': array([ 0.77352953, -0.39914945]),\n", + " 'person_284': array([ 0.74361908, -0.38244921]),\n", + " 'person_285': array([ 0.302652 , -0.66282827]),\n", + " 'company_10': array([ 0.30911034, -0.69328517]),\n", + " 'company_11': array([ 0.29653847, -0.68200964]),\n", + " 'person_286': array([-0.15678515, -0.77359235]),\n", + " 'company_12': array([-0.16676562, -0.80605441]),\n", + " 'person_287': array([-0.16209953, -0.81855541]),\n", + " 'company_13': array([-0.17181288, -0.79528618]),\n", + " 'person_288': array([ 0.031348 , -0.81539774]),\n", + " 'company_14': array([ 0.03458273, -0.79448736]),\n", + " 'person_289': array([ 0.04263325, -0.81525582]),\n", + " 'person_290': array([ 0.03497952, -0.82879829]),\n", + " 'person_291': array([ 0.04007478, -0.79840034]),\n", + " 'person_292': array([ 0.04545384, -0.86097932]),\n", + " 'company_15': array([ 0.04471132, -0.82503182]),\n", + " 'person_293': array([ 0.0825047 , -0.57439178]),\n", + " 'company_16': array([ 0.08398267, -0.60917449]),\n", + " 'person_294': array([ 0.07371303, -0.63152725]),\n", + " 'person_295': array([ 0.09819786, -0.57835168]),\n", + " 'person_296': array([ 0.09748627, -0.63143951]),\n", + " 'person_297': array([ 0.08360413, -0.6356926 ]),\n", + " 'person_298': array([ 0.06818838, -0.63716394]),\n", + " 'person_299': array([ 0.07728314, -0.64305311]),\n", + " 'person_300': array([ 0.08744648, -0.64503741]),\n", + " 'person_301': array([ 0.09352504, -0.6379596 ]),\n", + " 'person_302': array([ 0.13521369, -0.63663954]),\n", + " 'company_17': array([ 0.12053125, -0.61125791]),\n", + " 'person_303': array([ 0.127349 , -0.64204323]),\n", + " 'person_304': array([-0.89297879, 0.56725734]),\n", + " 'company_18': array([-0.86483884, 0.55060148]),\n", + " 'person_305': array([-0.25162897, 0.9686811 ]),\n", + " 'company_19': array([-0.24565965, 0.93700242]),\n", + " 'person_306': array([-0.23823677, 0.89832532]),\n", + " 'person_307': array([ 0.82969701, -0.13422643]),\n", + " 'company_20': array([ 0.8385421 , -0.12747966]),\n", + " 'person_308': array([-0.92568612, -0.20312753]),\n", + " 'company_21': array([-0.89545161, -0.19460441]),\n", + " 'person_309': array([-0.87389374, -0.19011062]),\n", + " 'person_310': array([-0.89532232, -0.18205003]),\n", + " 'person_311': array([0.29060802, 0.77535838]),\n", + " 'company_22': array([0.27514246, 0.74658656]),\n", + " 'person_312': array([0.28191134, 0.77849835]),\n", + " 'person_313': array([0.26624691, 0.72217286]),\n", + " 'person_314': array([ 0.14276658, -0.47123381]),\n", + " 'company_23': array([ 0.14855844, -0.45495015]),\n", + " 'person_315': array([ 0.13501705, -0.46915165]),\n", + " 'person_316': array([ 0.16086225, -0.46227744]),\n", + " 'person_317': array([ 0.16671902, -0.45515037]),\n", + " 'person_318': array([ 0.4971067 , -0.57231957]),\n", + " 'company_24': array([ 0.53440535, -0.61248386]),\n", + " 'person_319': array([ 0.56149256, -0.6211229 ]),\n", + " 'person_320': array([ 0.52710718, -0.60471123]),\n", + " 'person_321': array([ 0.56334764, -0.62885213]),\n", + " 'person_322': array([ 0.5524115 , -0.64194071]),\n", + " 'person_323': array([ 0.55424458, -0.6328702 ]),\n", + " 'person_324': array([ 0.5616805 , -0.63868028]),\n", + " 'person_325': array([ 0.54411405, -0.64261556]),\n", + " 'person_326': array([ 0.53646982, -0.63239145]),\n", + " 'company_25': array([ 0.30768064, -0.68524772]),\n", + " 'company_26': array([ 0.28846809, -0.6959812 ]),\n", + " 'company_27': array([ 0.31793761, -0.66283512]),\n", + " 'person_327': array([-0.76257575, 0.68681365]),\n", + " 'company_28': array([-0.74745333, 0.67341423]),\n", + " 'person_328': array([ 0.53487509, -0.74886489]),\n", + " 'company_29': array([ 0.52041507, -0.72086573]),\n", + " 'person_329': array([ 0.50829941, -0.72232908]),\n", + " 'person_330': array([ 0.54276437, -0.74355727]),\n", + " 'person_331': array([ 0.4985196 , -0.69002944]),\n", + " 'person_332': array([0.11007923, 0.6949963 ]),\n", + " 'company_30': array([0.11893582, 0.6899637 ]),\n", + " 'person_333': array([0.12611362, 0.70226794]),\n", + " 'person_334': array([0.1192488 , 0.67013222]),\n", + " 'person_335': array([0.11825121, 0.70104545]),\n", + " 'person_336': array([0.13091367, 0.69440413]),\n", + " 'person_337': array([0.10699769, 0.68602943]),\n", + " 'person_338': array([-0.67259526, 0.55194008]),\n", + " 'company_31': array([-0.70192057, 0.5722236 ]),\n", + " 'person_339': array([0.42514554, 0.24329174]),\n", + " 'company_32': array([0.4011074 , 0.20151511]),\n", + " 'person_340': array([0.35758197, 0.23103809]),\n", + " 'person_341': array([0.35184973, 0.18555902]),\n", + " 'person_342': array([0.43520072, 0.164904 ]),\n", + " 'person_343': array([0.45715815, 0.19650966]),\n", + " 'person_344': array([0.46153361, 0.19222358]),\n", + " 'person_345': array([0.37085459, 0.2419187 ]),\n", + " 'person_346': array([0.45350158, 0.2357364 ]),\n", + " 'person_347': array([0.3646358 , 0.16776308]),\n", + " 'person_348': array([0.40618637, 0.18732595]),\n", + " 'person_349': array([0.4561201 , 0.22073708]),\n", + " 'person_350': array([0.38183179, 0.23564015]),\n", + " 'person_351': array([0.36615476, 0.17564949]),\n", + " 'person_352': array([0.40942043, 0.15414228]),\n", + " 'person_353': array([0.39887774, 0.24859387]),\n", + " 'person_354': array([0.45199731, 0.17182067]),\n", + " 'person_355': array([0.38528749, 0.24419653]),\n", + " 'person_356': array([0.35466579, 0.20166345]),\n", + " 'person_357': array([0.44047445, 0.24529846]),\n", + " 'person_358': array([0.37083277, 0.23446025]),\n", + " 'person_359': array([0.45271942, 0.2139522 ]),\n", + " 'person_360': array([0.43278855, 0.15423089]),\n", + " 'person_361': array([0.3907046 , 0.23810819]),\n", + " 'person_362': array([0.44129136, 0.17856967]),\n", + " 'person_363': array([0.39473355, 0.14733578]),\n", + " 'person_364': array([0.45005116, 0.22073051]),\n", + " 'person_365': array([0.41227871, 0.16771895]),\n", + " 'person_366': array([0.37659875, 0.16886902]),\n", + " 'person_367': array([0.4100818 , 0.24598829]),\n", + " 'person_368': array([0.43463564, 0.2323045 ]),\n", + " 'person_369': array([0.38119352, 0.25054732]),\n", + " 'person_370': array([0.36119431, 0.19855255]),\n", + " 'person_371': array([0.36482182, 0.21742579]),\n", + " 'person_372': array([0.44695494, 0.16722707]),\n", + " 'person_373': array([0.43912876, 0.22279555]),\n", + " 'person_374': array([0.40008208, 0.26016292]),\n", + " 'person_375': array([0.36013281, 0.17276374]),\n", + " 'person_376': array([0.42431751, 0.22622386]),\n", + " 'person_377': array([0.45392564, 0.18864293]),\n", + " 'person_378': array([0.3935681 , 0.16738296]),\n", + " 'person_379': array([0.40794998, 0.17667514]),\n", + " 'person_380': array([0.404816 , 0.14571722]),\n", + " 'person_381': array([0.39515689, 0.25649384]),\n", + " 'person_382': array([0.42296523, 0.21628341]),\n", + " 'person_383': array([0.42771825, 0.23392606]),\n", + " 'person_384': array([0.42081803, 0.2344878 ]),\n", + " 'person_385': array([0.38103518, 0.21935572]),\n", + " 'person_386': array([0.35602888, 0.17880383]),\n", + " 'person_387': array([0.36738908, 0.16256924]),\n", + " 'person_388': array([0.44902161, 0.20619908]),\n", + " 'person_389': array([0.35766682, 0.21575159]),\n", + " 'person_390': array([0.34944093, 0.21664242]),\n", + " 'person_391': array([0.45314234, 0.18212554]),\n", + " 'person_392': array([0.43183973, 0.25243217]),\n", + " 'person_393': array([0.4131822 , 0.14731213]),\n", + " 'person_394': array([0.37931034, 0.19287071]),\n", + " 'person_395': array([0.42603785, 0.15135799]),\n", + " 'person_396': array([0.41960129, 0.2573427 ]),\n", + " 'person_397': array([0.43770272, 0.24019012]),\n", + " 'person_398': array([0.41842496, 0.16053428]),\n", + " 'person_399': array([0.43193734, 0.20387551]),\n", + " 'person_400': array([0.42742568, 0.17412159]),\n", + " 'person_401': array([0.44878575, 0.17706238]),\n", + " 'person_402': array([0.37333345, 0.21384428]),\n", + " 'person_403': array([0.41866645, 0.19986305]),\n", + " 'person_404': array([0.39811677, 0.24076864]),\n", + " 'person_405': array([0.38670406, 0.15023343]),\n", + " 'person_406': array([0.4054814 , 0.24008963]),\n", + " 'person_407': array([0.39121994, 0.24875242]),\n", + " 'person_408': array([0.44143182, 0.22903955]),\n", + " 'person_409': array([0.43003073, 0.21207659]),\n", + " 'person_410': array([0.39451391, 0.22964652]),\n", + " 'person_411': array([0.35823566, 0.23780008]),\n", + " 'person_412': array([0.36430132, 0.23538244]),\n", + " 'person_413': array([0.43649587, 0.18406877]),\n", + " 'person_414': array([0.425087 , 0.25038549]),\n", + " 'person_415': array([0.42045212, 0.14851215]),\n", + " 'person_416': array([0.39821824, 0.16063102]),\n", + " 'person_417': array([0.38625583, 0.1617637 ]),\n", + " 'person_418': array([0.42703158, 0.16463439]),\n", + " 'person_419': array([0.38164642, 0.1826493 ]),\n", + " 'person_420': array([0.43742076, 0.25034288]),\n", + " 'person_421': array([0.41741672, 0.18706334]),\n", + " 'person_422': array([0.42688319, 0.1581507 ]),\n", + " 'person_423': array([0.4509567 , 0.19818512]),\n", + " 'person_424': array([0.38518524, 0.22716543]),\n", + " 'person_425': array([0.46181086, 0.20183653]),\n", + " 'person_426': array([0.44139901, 0.17102294]),\n", + " 'person_427': array([0.44760317, 0.24253879]),\n", + " 'person_428': array([0.37754184, 0.24240531]),\n", + " 'person_429': array([0.37013263, 0.24877651]),\n", + " 'person_430': array([0.39710286, 0.15354484]),\n", + " 'person_431': array([0.35742152, 0.22262813]),\n", + " 'person_432': array([0.38871902, 0.17745349]),\n", + " 'person_433': array([0.40237013, 0.21995503]),\n", + " 'person_434': array([0.44164601, 0.19877774]),\n", + " 'person_435': array([0.41451663, 0.22189152]),\n", + " 'person_436': array([0.3972483 , 0.17647752]),\n", + " 'person_437': array([0.4075487 , 0.26087815]),\n", + " 'person_438': array([0.38980779, 0.21562122]),\n", + " 'person_439': array([0.45817655, 0.22767182]),\n", + " 'person_440': array([0.40341276, 0.15172888]),\n", + " 'person_441': array([0.42957637, 0.19458716]),\n", + " 'person_442': array([0.36462805, 0.18945991]),\n", + " 'person_443': array([0.37511814, 0.25225154]),\n", + " 'person_444': array([0.41290578, 0.23394898]),\n", + " 'person_445': array([0.39014938, 0.15614605]),\n", + " 'person_446': array([0.38025647, 0.1538254 ]),\n", + " 'person_447': array([0.37428734, 0.175478 ]),\n", + " 'person_448': array([0.38893527, 0.25859529]),\n", + " 'person_449': array([0.45811349, 0.18116713]),\n", + " 'person_450': array([0.3849389 , 0.25498164]),\n", + " 'person_451': array([0.41013727, 0.25312248]),\n", + " 'person_452': array([0.43774307, 0.15838796]),\n", + " 'person_453': array([0.41728917, 0.24951345]),\n", + " 'person_454': array([0.40304121, 0.25303167]),\n", + " 'person_455': array([0.43870381, 0.19178054]),\n", + " 'person_456': array([0.35156491, 0.21016875]),\n", + " 'person_457': array([0.37258816, 0.18431494]),\n", + " 'person_458': array([0.37172842, 0.22328816]),\n", + " 'person_459': array([0.41339517, 0.25839838]),\n", + " 'person_460': array([0.36443403, 0.22693078]),\n", + " 'person_461': array([0.44825971, 0.23266722]),\n", + " 'person_462': array([0.43127424, 0.22172333]),\n", + " 'person_463': array([0.44668895, 0.18555817]),\n", + " 'person_464': array([0.44341537, 0.16237094]),\n", + " 'person_465': array([0.44295505, 0.23663825]),\n", + " 'person_466': array([0.34848532, 0.20338313]),\n", + " 'person_467': array([0.36867407, 0.19588327]),\n", + " 'person_468': array([0.35975692, 0.2079969 ]),\n", + " 'person_469': array([0.41948336, 0.17786424]),\n", + " 'person_470': array([0.43140286, 0.24324724]),\n", + " 'person_471': array([0.46062303, 0.20817636]),\n", + " 'person_472': array([0.42010874, 0.16858791]),\n", + " 'person_473': array([0.36795196, 0.20760065]),\n", + " 'person_474': array([0.44016275, 0.20560798]),\n", + " 'company_845': array([0.35210893, 0.22583176]),\n", + " 'person_475': array([0.40337527, 0.16843495]),\n", + " 'person_476': array([0.44966778, 0.22666702]),\n", + " 'person_477': array([0.45391095, 0.20628417]),\n", + " 'person_478': array([0.35620868, 0.18987025]),\n", + " 'person_479': array([0.37791184, 0.16088367]),\n", + " 'person_480': array([0.40481946, 0.23021244]),\n", + " 'person_481': array([0.38383639, 0.16930091]),\n", + " 'person_482': array([0.41660151, 0.15415165]),\n", + " 'person_483': array([0.36404973, 0.24373949]),\n", + " 'person_484': array([0.37557301, 0.2028679 ]),\n", + " 'person_485': array([0.38570672, 0.20529574]),\n", + " 'person_486': array([0.4281607 , 0.18399702]),\n", + " 'person_487': array([0.40761143, 0.16097142]),\n", + " 'person_488': array([0.41715351, 0.24184549]),\n", + " 'person_489': array([0.45819679, 0.2142646 ]),\n", + " 'person_490': array([0.44724008, 0.1925278 ]),\n", + " 'person_491': array([0.43911871, 0.21313173]),\n", + " 'person_492': array([0.44415152, 0.21632403]),\n", + " 'person_493': array([0.42634571, 0.25693104]),\n", + " 'person_494': array([0.3518241 , 0.19531693]),\n", + " 'person_495': array([0.37233517, 0.15788324]),\n", + " 'person_496': array([0.43417451, 0.17280313]),\n", + " 'person_497': array([0.37591419, 0.22956552]),\n", + " 'person_498': array([0.36246616, 0.18267053]),\n", + " 'person_499': array([0.3923378 , 0.18985257]),\n", + " 'person_500': array([-0.59277385, -0.9258728 ]),\n", + " 'company_33': array([-0.60637212, -0.94723308]),\n", + " 'company_1903': array([0.73459131, 0.59329832]),\n", + " 'company_34': array([0.72547996, 0.59961599]),\n", + " 'company_35': array([0.12099539, 0.68499517]),\n", + " 'person_501': array([-0.21041225, -0.93496042]),\n", + " 'company_36': array([-0.20198978, -0.90188956]),\n", + " 'person_502': array([-0.74105364, -0.2445958 ]),\n", + " 'company_37': array([-0.78236651, -0.25943914]),\n", + " 'person_503': array([-0.81705397, -0.27204236]),\n", + " 'person_504': array([-0.80727023, -0.26825547]),\n", + " 'company_38': array([ 0.03857515, -0.81962395]),\n", + " 'person_505': array([ 0.0781742 , -0.50889677]),\n", + " 'company_39': array([ 0.08542939, -0.54293036]),\n", + " 'person_506': array([0.84964973, 0.45300704]),\n", + " 'company_40': array([0.82003951, 0.43536586]),\n", + " 'person_507': array([-0.70342696, -0.37877026]),\n", + " 'company_41': array([-0.70214385, -0.36733562]),\n", + " 'person_508': array([-0.73423713, -0.38616475]),\n", + " 'person_509': array([-0.7143414 , -0.35624823]),\n", + " 'person_510': array([-0.72792757, -0.37323922]),\n", + " 'person_511': array([-0.72066134, -0.38507783]),\n", + " 'person_512': array([-0.69460064, -0.38339743]),\n", + " 'person_513': array([ 0.37466952, -0.25757602]),\n", + " 'company_42': array([ 0.34485242, -0.2603521 ]),\n", + " 'person_514': array([ 0.32203496, -0.27331692]),\n", + " 'person_515': array([ 0.32806486, -0.28172782]),\n", + " 'person_516': array([ 0.30176091, -0.28198719]),\n", + " 'company_43': array([ 0.29876676, -0.25028044]),\n", + " 'person_517': array([ 0.30757302, -0.27237582]),\n", + " 'person_518': array([ 0.31141269, -0.23098554]),\n", + " 'person_519': array([ 0.30252463, -0.23535763]),\n", + " 'person_520': array([0.05517333, 0.27127498]),\n", + " 'company_44': array([0.04680906, 0.25936341]),\n", + " 'person_521': array([0.04747488, 0.27557999]),\n", + " 'person_522': array([0.04995235, 0.27146944]),\n", + " 'person_523': array([0.03512469, 0.24862768]),\n", + " 'person_524': array([0.03040545, 0.25816375]),\n", + " 'person_525': array([0.0420857 , 0.27495894]),\n", + " 'person_526': array([0.06089814, 0.26720789]),\n", + " 'person_527': array([0.03159533, 0.26360154]),\n", + " 'person_528': array([0.05836022, 0.25054812]),\n", + " 'person_529': array([0.04753298, 0.24543227]),\n", + " 'person_530': array([0.03749603, 0.27249038]),\n", + " 'person_531': array([0.0405782 , 0.24626713]),\n", + " 'person_532': array([0.05769029, 0.26250264]),\n", + " 'person_533': array([0.05359032, 0.24789846]),\n", + " 'person_534': array([0.03392363, 0.26850545]),\n", + " 'person_535': array([0.05959525, 0.25611785]),\n", + " 'person_536': array([0.03086506, 0.25178018]),\n", + " 'person_537': array([ 0.23194273, -0.87178671]),\n", + " 'company_45': array([ 0.24280252, -0.87599659]),\n", + " 'person_538': array([ 0.23706232, -0.84709704]),\n", + " 'person_539': array([-0.1142306 , -0.91126353]),\n", + " 'company_46': array([-0.10953114, -0.87764883]),\n", + " 'company_47': array([0.11583935, 0.67904103]),\n", + " 'person_540': array([ 0.78104138, -0.65998101]),\n", + " 'company_48': array([ 0.76290965, -0.65351981]),\n", + " 'person_541': array([ 0.75118273, -0.65943998]),\n", + " 'person_542': array([ 0.76178396, -0.666188 ]),\n", + " 'person_543': array([0.31753176, 0.91695797]),\n", + " 'company_49': array([0.30738825, 0.91235828]),\n", + " 'company_50': array([ 0.30820301, -0.70383191]),\n", + " 'person_544': array([ 0.91583979, -0.01010715]),\n", + " 'company_51': array([ 0.94940013, -0.00987044]),\n", + " 'company_52': array([ 0.28425884, -0.68195945]),\n", + " 'person_545': array([ 0.65691799, -0.29309881]),\n", + " 'company_53': array([ 0.63752651, -0.27700272]),\n", + " 'person_546': array([ 0.6629594 , -0.26589403]),\n", + " 'person_547': array([ 0.63079703, -0.31050247]),\n", + " 'person_548': array([ 0.6413241 , -0.24907225]),\n", + " 'person_549': array([ 0.65697867, -0.31454825]),\n", + " 'person_550': array([ 0.67006248, -0.30000466]),\n", + " 'person_551': array([ 0.64845783, -0.25619203]),\n", + " 'person_552': array([ 0.60517424, -0.26017711]),\n", + " 'person_553': array([ 0.65595537, -0.25415796]),\n", + " 'person_554': array([ 0.66752845, -0.25549111]),\n", + " 'person_555': array([ 0.6752699 , -0.25837582]),\n", + " 'person_556': array([ 0.68158376, -0.28496677]),\n", + " 'person_557': array([ 0.64122558, -0.2606329 ]),\n", + " 'person_558': array([ 0.62799394, -0.28963915]),\n", + " 'person_559': array([ 0.65005124, -0.2454986 ]),\n", + " 'person_560': array([ 0.67658806, -0.28954902]),\n", + " 'person_561': array([ 0.63036364, -0.2638658 ]),\n", + " 'person_562': array([ 0.67084438, -0.26455864]),\n", + " 'person_563': array([ 0.6624136 , -0.30265588]),\n", + " 'person_564': array([ 0.61699426, -0.29537022]),\n", + " 'person_565': array([ 0.67864734, -0.29705137]),\n", + " 'person_566': array([ 0.66744614, -0.27557799]),\n", + " 'person_567': array([ 0.6555329 , -0.27419922]),\n", + " 'person_568': array([ 0.64487529, -0.29006341]),\n", + " 'person_569': array([ 0.67144704, -0.28174058]),\n", + " 'person_570': array([ 0.65581095, -0.30674067]),\n", + " 'person_571': array([ 0.6824218 , -0.27750349]),\n", + " 'person_572': array([ 0.62326175, -0.30718923]),\n", + " 'person_573': array([ 0.63870019, -0.30430079]),\n", + " 'person_574': array([ 0.66580844, -0.31157941]),\n", + " 'person_575': array([ 0.67242557, -0.30626875]),\n", + " 'person_576': array([ 0.66247743, -0.24904256]),\n", + " 'person_577': array([ 0.64868474, -0.31708983]),\n", + " 'person_578': array([ 0.61051935, -0.27079254]),\n", + " 'person_579': array([ 0.67520899, -0.27268276]),\n", + " 'person_580': array([ 0.64633143, -0.30986369]),\n", + " 'person_581': array([ 0.66912895, -0.2930043 ]),\n", + " 'person_582': array([ 0.68059897, -0.26753005]),\n", + " 'person_583': array([ 0.62376857, -0.25406221]),\n", + " 'person_584': array([ 0.62568736, -0.2992079 ]),\n", + " 'person_585': array([ 0.61615556, -0.28266093]),\n", + " 'person_586': array([ 0.63837087, -0.31520125]),\n", + " 'person_587': array([ 0.64770645, -0.29995048]),\n", + " 'person_588': array([ 0.66418725, -0.28657612]),\n", + " 'company_54': array([ 0.02908284, -0.82175499]),\n", + " 'person_589': array([-0.85296786, 0.45784444]),\n", + " 'company_55': array([-0.82673132, 0.44529951]),\n", + " 'company_56': array([ 0.3220101 , -0.24859716]),\n", + " 'person_590': array([ 0.34456408, -0.23551469]),\n", + " 'person_591': array([0.86036074, 0.28222594]),\n", + " 'company_57': array([0.89560455, 0.29085609]),\n", + " 'person_592': array([0.90633613, 0.28175071]),\n", + " 'person_593': array([0.91862214, 0.29953763]),\n", + " 'person_594': array([0.93185234, 0.30133742]),\n", + " 'person_595': array([0.07971173, 0.80693489]),\n", + " 'company_58': array([0.07510949, 0.7797364 ]),\n", + " 'person_596': array([0.08348119, 0.81484628]),\n", + " 'person_597': array([0.06575287, 0.73748881]),\n", + " 'person_598': array([-0.13639326, 0.84653085]),\n", + " 'company_59': array([-0.13484603, 0.81138092]),\n", + " 'person_599': array([-0.13818638, 0.83105183]),\n", + " 'person_600': array([-0.13168548, 0.77068758]),\n", + " 'person_601': array([-0.16449033, 0.90570658]),\n", + " 'company_60': array([-0.1622569 , 0.88225722]),\n", + " 'person_602': array([-0.16530171, 0.91891056]),\n", + " 'person_603': array([0.92195457, 0.12401067]),\n", + " 'company_61': array([0.92358601, 0.13731764]),\n", + " 'person_604': array([0.91562903, 0.14813225]),\n", + " 'person_605': array([0.94589484, 0.14055401]),\n", + " 'company_62': array([ 0.28264368, -0.61294073]),\n", + " 'person_606': array([-0.51661307, -0.81210947]),\n", + " 'company_63': array([-0.50371391, -0.81683111]),\n", + " 'person_607': array([-0.61272591, -0.71456945]),\n", + " 'company_64': array([-0.59449285, -0.70333266]),\n", + " 'person_608': array([-0.60245782, -0.7216416 ]),\n", + " 'person_609': array([-0.3866865 , 0.54121912]),\n", + " 'company_65': array([-0.36361757, 0.50176871]),\n", + " 'person_610': array([-0.34181905, 0.47201735]),\n", + " 'person_611': array([-0.39899102, 0.50548702]),\n", + " 'person_612': array([-0.3656745 , 0.53618652]),\n", + " 'person_613': array([-0.4025749 , 0.47876617]),\n", + " 'person_614': array([-0.40417588, 0.54378331]),\n", + " 'person_615': array([-0.3960931 , 0.48212314]),\n", + " 'person_616': array([-0.36383036, 0.55909079]),\n", + " 'person_617': array([-0.37843782, 0.54360098]),\n", + " 'person_618': array([-0.41482955, 0.48363444]),\n", + " 'person_619': array([-0.35522461, 0.46209118]),\n", + " 'person_620': array([-0.36430693, 0.55189711]),\n", + " 'person_621': array([-0.41955656, 0.49630791]),\n", + " 'person_622': array([-0.37637204, 0.49560514]),\n", + " 'person_623': array([-0.34497568, 0.51951039]),\n", + " 'person_624': array([-0.33939978, 0.53274244]),\n", + " 'person_625': array([-0.41338262, 0.50634015]),\n", + " 'person_626': array([-0.40189558, 0.52843457]),\n", + " 'person_627': array([-0.39180177, 0.52023375]),\n", + " 'person_628': array([-0.31765312, 0.48834682]),\n", + " 'person_629': array([-0.372379 , 0.54800403]),\n", + " 'person_630': array([-0.38457495, 0.465305 ]),\n", + " 'person_631': array([-0.34759814, 0.53452301]),\n", + " 'person_632': array([-0.40120766, 0.53578258]),\n", + " 'person_633': array([-0.34114605, 0.49345526]),\n", + " 'person_634': array([-0.39162847, 0.4687328 ]),\n", + " 'person_635': array([-0.33358574, 0.50052792]),\n", + " 'person_636': array([-0.33294028, 0.54158461]),\n", + " 'person_637': array([-0.41225937, 0.5184418 ]),\n", + " 'person_638': array([-0.40854511, 0.52425236]),\n", + " 'person_639': array([-0.40198019, 0.46643168]),\n", + " 'person_640': array([-0.41306478, 0.49665633]),\n", + " 'person_641': array([-0.33626622, 0.46636465]),\n", + " 'person_642': array([-0.31496885, 0.52019364]),\n", + " 'person_643': array([-0.35659251, 0.53449619]),\n", + " 'person_644': array([-0.35053921, 0.54270881]),\n", + " 'person_645': array([-0.40117323, 0.55107933]),\n", + " 'person_646': array([-0.3757678 , 0.48168612]),\n", + " 'person_647': array([-0.32150826, 0.51474553]),\n", + " 'person_648': array([-0.39034155, 0.48628962]),\n", + " 'person_649': array([-0.36563632, 0.47930193]),\n", + " 'person_650': array([-0.38065583, 0.51003909]),\n", + " 'person_651': array([-0.33875847, 0.48034123]),\n", + " 'person_652': array([-0.39609477, 0.46256384]),\n", + " 'person_653': array([-0.36764997, 0.46460885]),\n", + " 'person_654': array([-0.37201098, 0.55410707]),\n", + " 'person_655': array([-0.32519558, 0.53052813]),\n", + " 'person_656': array([-0.41442525, 0.53103548]),\n", + " 'person_657': array([-0.32686567, 0.47684389]),\n", + " 'person_658': array([-0.39793074, 0.47298411]),\n", + " 'person_659': array([-0.32341999, 0.49261349]),\n", + " 'person_660': array([-0.34579608, 0.46477389]),\n", + " 'person_661': array([-0.36814174, 0.52398914]),\n", + " 'person_662': array([-0.31863818, 0.50706118]),\n", + " 'person_663': array([-0.38578627, 0.55647582]),\n", + " 'person_664': array([-0.37137663, 0.56008518]),\n", + " 'person_665': array([-0.38279465, 0.4576517 ]),\n", + " 'person_666': array([-0.41917437, 0.51784116]),\n", + " 'person_667': array([-0.41109106, 0.4771519 ]),\n", + " 'person_668': array([-0.35220757, 0.50188637]),\n", + " 'person_669': array([-0.40143055, 0.5191012 ]),\n", + " 'person_670': array([-0.31360295, 0.51340008]),\n", + " 'person_671': array([-0.40824142, 0.50163019]),\n", + " 'person_672': array([-0.40684772, 0.47178861]),\n", + " 'person_673': array([-0.31570852, 0.49691185]),\n", + " 'person_674': array([-0.37949613, 0.55872309]),\n", + " 'person_675': array([-0.32337776, 0.48373088]),\n", + " 'person_676': array([-0.34896713, 0.45802858]),\n", + " 'person_677': array([-0.35576063, 0.52586359]),\n", + " 'person_678': array([-0.37642774, 0.46422049]),\n", + " 'person_679': array([-0.37997067, 0.54940259]),\n", + " 'person_680': array([-0.38093126, 0.52179414]),\n", + " 'person_681': array([-0.34512609, 0.55621195]),\n", + " 'person_682': array([-0.33169401, 0.51788408]),\n", + " 'person_683': array([-0.41673663, 0.52473783]),\n", + " 'person_684': array([-0.39977339, 0.51343697]),\n", + " 'person_685': array([-0.32509843, 0.53983808]),\n", + " 'person_686': array([-0.4085649 , 0.53827351]),\n", + " 'person_687': array([-0.39511076, 0.54586202]),\n", + " 'person_688': array([-0.31744796, 0.52611214]),\n", + " 'person_689': array([-0.39156133, 0.53473109]),\n", + " 'person_690': array([-0.3614668 , 0.45745534]),\n", + " 'person_691': array([-0.3898176 , 0.45914617]),\n", + " 'person_692': array([-0.39314416, 0.55335605]),\n", + " 'person_693': array([-0.34641251, 0.54900116]),\n", + " 'person_694': array([-0.38379595, 0.52930671]),\n", + " 'person_695': array([-0.3315658 , 0.52671188]),\n", + " 'person_696': array([-0.35666114, 0.47421369]),\n", + " 'person_697': array([-0.35677704, 0.55956769]),\n", + " 'person_698': array([-0.324076 , 0.52169621]),\n", + " 'person_699': array([-0.3904348 , 0.50908351]),\n", + " 'person_700': array([-0.35756633, 0.55189884]),\n", + " 'person_701': array([-0.33255747, 0.54801792]),\n", + " 'person_702': array([-0.36694521, 0.54373121]),\n", + " 'person_703': array([-0.31305042, 0.50451583]),\n", + " 'person_704': array([-0.33357054, 0.5101192 ]),\n", + " 'person_705': array([-0.34908327, 0.47358245]),\n", + " 'person_706': array([-0.40671927, 0.48400214]),\n", + " 'person_707': array([-0.37574211, 0.45579386]),\n", + " 'person_708': array([-0.41819423, 0.51135141]),\n", + " 'person_709': array([-0.33166271, 0.49203119]),\n", + " 'person_710': array([-0.36924329, 0.4577809 ]),\n", + " 'person_711': array([-0.38334072, 0.48985517]),\n", + " 'person_712': array([-0.33379477, 0.47466019]),\n", + " 'person_713': array([-0.39355388, 0.52673769]),\n", + " 'person_714': array([-0.33116809, 0.48392671]),\n", + " 'person_715': array([-0.38865703, 0.47680372]),\n", + " 'person_716': array([-0.35817987, 0.54381442]),\n", + " 'person_717': array([-0.38167745, 0.47315773]),\n", + " 'person_718': array([-0.38788182, 0.54964083]),\n", + " 'person_719': array([-0.37285116, 0.53114301]),\n", + " 'person_720': array([-0.35134482, 0.55410147]),\n", + " 'person_721': array([-0.40745929, 0.51074785]),\n", + " 'person_722': array([-0.33881909, 0.54961312]),\n", + " 'person_723': array([-0.40848666, 0.53229785]),\n", + " 'person_724': array([-0.36156163, 0.46845531]),\n", + " 'person_725': array([-0.37964672, 0.53681076]),\n", + " 'person_726': array([-0.3521046 , 0.51313174]),\n", + " 'person_727': array([-0.32349655, 0.50014853]),\n", + " 'person_728': array([-0.34182885, 0.50723195]),\n", + " 'person_729': array([-0.33960086, 0.52470899]),\n", + " 'person_730': array([-0.32616264, 0.50780821]),\n", + " 'person_731': array([-0.40327337, 0.49051988]),\n", + " 'person_732': array([-0.31946054, 0.5332405 ]),\n", + " 'person_733': array([-0.42006826, 0.50417507]),\n", + " 'person_734': array([-0.41393581, 0.48992458]),\n", + " 'person_735': array([-0.34178501, 0.54228854]),\n", + " 'person_736': array([-0.40217781, 0.49792102]),\n", + " 'person_737': array([-0.3317931 , 0.53524482]),\n", + " 'person_738': array([-0.37301499, 0.47273538]),\n", + " 'person_739': array([-0.39265776, 0.49601743]),\n", + " 'person_740': array([-0.34653988, 0.48592418]),\n", + " 'person_741': array([-0.39556891, 0.53945678]),\n", + " 'person_742': array([-0.35598746, 0.4841516 ]),\n", + " 'person_743': array([0.87209696, 0.30639172]),\n", + " 'company_66': array([0.89883834, 0.32141978]),\n", + " 'person_744': array([0.89351285, 0.33237156]),\n", + " 'person_745': array([0.31651887, 0.66914439]),\n", + " 'company_67': array([0.3257446, 0.6836378]),\n", + " 'person_746': array([0.34715885, 0.707982 ]),\n", + " 'person_747': array([0.34118217, 0.7134003 ]),\n", + " 'person_748': array([0.30574933, 0.6454162 ]),\n", + " 'person_749': array([0.33325514, 0.71497267]),\n", + " 'person_750': array([-0.00372807, 0.73170638]),\n", + " 'company_68': array([4.54644556e-04, 7.80857265e-01]),\n", + " 'person_751': array([-0.00388265, 0.81329817]),\n", + " 'person_752': array([0.0097886, 0.8101123]),\n", + " 'person_753': array([0.00425949, 0.81651282]),\n", + " 'company_70': array([ 0.29980871, -0.69373077]),\n", + " 'company_71': array([ 0.32750151, -0.69562155]),\n", + " 'company_72': array([ 0.31857941, -0.69610423]),\n", + " 'company_73': array([ 0.2885364 , -0.62755293]),\n", + " 'company_163': array([-0.54674244, -0.83015478]),\n", + " 'company_74': array([-0.52797377, -0.80334556]),\n", + " 'company_75': array([-0.14733453, -0.73577708]),\n", + " 'company_76': array([ 0.32541898, -0.67106247]),\n", + " 'company_80': array([0.68770343, 0.31996116]),\n", + " 'company_77': array([0.68218756, 0.33777472]),\n", + " 'person_754': array([0.69035429, 0.3559424 ]),\n", + " 'person_755': array([0.71286774, 0.36032134]),\n", + " 'person_756': array([0.66552877, 0.34192574]),\n", + " 'person_757': array([0.71337616, 0.35137954]),\n", + " 'person_758': array([0.70655304, 0.33676568]),\n", + " 'company_78': array([ 0.33488458, -0.67130208]),\n", + " 'person_759': array([-0.79451728, -0.51925284]),\n", + " 'company_79': array([-0.7749061 , -0.50559825]),\n", + " 'person_760': array([0.7068612 , 0.31264541]),\n", + " 'person_761': array([ 0.89590758, -0.27166176]),\n", + " 'company_81': array([ 0.91913521, -0.27762154]),\n", + " 'person_762': array([ 0.88191408, -0.11768923]),\n", + " 'company_82': array([ 0.88409591, -0.12875454]),\n", + " 'person_763': array([ 0.75653118, -0.61609399]),\n", + " 'company_83': array([ 0.7445817 , -0.61464059]),\n", + " 'company_84': array([0.04371433, 0.25680631]),\n", + " 'person_764': array([0.20910533, 0.7143811 ]),\n", + " 'company_85': array([0.20781709, 0.70205963]),\n", + " 'person_765': array([-0.06244666, 0.92246252]),\n", + " 'company_86': array([-0.06379367, 0.89021957]),\n", + " 'person_766': array([-0.06553224, 0.84942454]),\n", + " 'person_767': array([ 0.34501526, -0.3445237 ]),\n", + " 'company_87': array([ 0.31671801, -0.31850669]),\n", + " 'person_768': array([ 0.29499701, -0.31001022]),\n", + " 'person_769': array([ 0.34851032, -0.30415866]),\n", + " 'person_770': array([ 0.33692113, -0.33850551]),\n", + " 'person_771': array([ 0.33260912, -0.29866493]),\n", + " 'person_772': array([ 0.30774605, -0.33399028]),\n", + " 'person_773': array([ 0.33422875, -0.3580094 ]),\n", + " 'person_774': array([ 0.29939175, -0.35188952]),\n", + " 'person_775': array([ 0.32615072, -0.35718265]),\n", + " 'person_776': array([ 0.2875115 , -0.32489243]),\n", + " 'person_777': array([ 0.34300739, -0.32244605]),\n", + " 'person_778': array([ 0.29508689, -0.32147229]),\n", + " 'person_779': array([ 0.32815602, -0.3398506 ]),\n", + " 'person_780': array([ 0.35550004, -0.32821801]),\n", + " 'person_781': array([ 0.31706885, -0.34175515]),\n", + " 'person_782': array([ 0.29885826, -0.33737326]),\n", + " 'person_783': array([ 0.28980651, -0.33244795]),\n", + " 'person_784': array([ 0.35434473, -0.31455606]),\n", + " 'person_785': array([ 0.34278166, -0.33177772]),\n", + " 'person_786': array([ 0.29717287, -0.34573436]),\n", + " 'person_787': array([ 0.3460685 , -0.35224009]),\n", + " 'person_788': array([ 0.30896565, -0.34815815]),\n", + " 'person_789': array([ 0.3307268 , -0.32509816]),\n", + " 'person_790': array([ 0.30896938, -0.30670816]),\n", + " 'person_791': array([ 0.31827939, -0.36013141]),\n", + " 'person_792': array([ 0.35245338, -0.34234709]),\n", + " 'person_793': array([ 0.35238495, -0.32193604]),\n", + " 'person_794': array([ 0.30892119, -0.35659122]),\n", + " 'person_795': array([ 0.33217731, -0.31081298]),\n", + " 'person_796': array([ 0.28900343, -0.34060469]),\n", + " 'person_797': array([ 0.31922722, -0.35191718]),\n", + " 'person_798': array([ 0.34098998, -0.30196393]),\n", + " 'person_799': array([ 0.32327694, -0.30393237]),\n", + " 'person_800': array([ 0.3290447 , -0.34817627]),\n", + " 'person_801': array([ 0.33839488, -0.3515242 ]),\n", + " 'person_802': array([ 0.30358803, -0.3233135 ]),\n", + " 'person_803': array([ 0.35180345, -0.33498466]),\n", + " 'person_804': array([ 0.34364581, -0.31214663]),\n", + " 'person_805': array([-0.33490261, 0.94091052]),\n", + " 'company_88': array([-0.32449731, 0.93713093]),\n", + " 'person_806': array([-0.74739218, 0.13444334]),\n", + " 'company_89': array([-0.7171644 , 0.12649792]),\n", + " 'person_807': array([-0.68995053, 0.12595682]),\n", + " 'person_808': array([-0.74146587, 0.12114812]),\n", + " 'person_809': array([-0.71740562, 0.14111891]),\n", + " 'person_810': array([-0.75181192, 0.12522842]),\n", + " 'company_90': array([0.0473983 , 0.25596601]),\n", + " 'company_91': array([0.04348825, 0.26270431]),\n", + " 'person_811': array([0.04317451, 0.29845279]),\n", + " 'company_92': array([ 0.12810065, -0.48173082]),\n", + " 'person_812': array([ 0.13292316, -0.50340521]),\n", + " 'person_813': array([ 0.11464564, -0.49958941]),\n", + " 'person_814': array([ 0.14261502, -0.50079423]),\n", + " 'person_815': array([ 0.12381674, -0.50008047]),\n", + " 'person_816': array([ 0.84440643, -0.33791053]),\n", + " 'company_93': array([ 0.85843205, -0.33472812]),\n", + " 'person_817': array([ 0.85963207, -0.32173654]),\n", + " 'company_94': array([ 0.32354167, -0.6871652 ]),\n", + " 'company_95': array([ 0.29821587, -0.70115811]),\n", + " 'person_818': array([ 0.43434018, -0.80767518]),\n", + " 'company_96': array([ 0.44198409, -0.82659864]),\n", + " 'person_819': array([ 0.43058643, -0.8343811 ]),\n", + " 'person_820': array([ 0.45377585, -0.84119254]),\n", + " 'person_821': array([ 0.45814887, -0.8592211 ]),\n", + " 'person_822': array([ 0.5838787 , -0.53342068]),\n", + " 'company_97': array([ 0.55954748, -0.51247764]),\n", + " 'person_823': array([ 0.52991509, -0.48623124]),\n", + " 'person_824': array([-0.00128766, -0.66886115]),\n", + " 'company_98': array([-0.00345409, -0.6999703 ]),\n", + " 'person_825': array([ 0.00908746, -0.70366961]),\n", + " 'person_826': array([-0.00296119, -0.72972929]),\n", + " 'person_827': array([-0.01273154, -0.73023552]),\n", + " 'company_99': array([0.0437482 , 0.25671539]),\n", + " 'person_828': array([ 0.71812105, -0.01341575]),\n", + " 'company_100': array([ 0.74628627, -0.012477 ]),\n", + " 'company_101': array([ 0.2898103, -0.6892643]),\n", + " 'company_102': array([ 0.3329407 , -0.68573648]),\n", + " 'company_103': array([ 0.31697887, -0.6823684 ]),\n", + " 'company_104': array([ 0.31765631, -0.70369923]),\n", + " 'company_105': array([ 0.32372966, -0.65448493]),\n", + " 'company_106': array([ 0.33002514, -0.67894095]),\n", + " 'company_107': array([-0.15816711, -0.80716234]),\n", + " 'company_108': array([-0.15469636, -0.78985238]),\n", + " 'person_829': array([0.58518863, 0.53029549]),\n", + " 'company_109': array([0.58851147, 0.51731086]),\n", + " 'person_830': array([0.60231179, 0.51653248]),\n", + " 'person_831': array([-0.83023608, 0.18837039]),\n", + " 'company_110': array([-0.79970765, 0.18261692]),\n", + " 'person_832': array([-0.75047344, 0.1740799 ]),\n", + " 'person_833': array([-0.82597929, 0.19582444]),\n", + " 'person_834': array([-0.83849508, 0.18460344]),\n", + " 'person_835': array([-0.82964236, 0.18013996]),\n", + " 'person_836': array([-0.77001554, 0.17414036]),\n", + " 'person_837': array([-0.83129287, 0.17272225]),\n", + " 'person_838': array([-0.82572705, 0.20370243]),\n", + " 'person_839': array([-0.77658886, 0.18405917]),\n", + " 'person_840': array([-0.83531344, 0.19609429]),\n", + " 'person_841': array([-0.39780959, -0.68741232]),\n", + " 'company_111': array([-0.37469277, -0.66103411]),\n", + " 'person_842': array([-0.38902673, -0.68364 ]),\n", + " 'person_843': array([-0.39741868, -0.67866868]),\n", + " 'person_844': array([-0.38650751, -0.6912114 ]),\n", + " 'person_845': array([-0.39665788, -0.66324258]),\n", + " 'person_846': array([-0.40551353, -0.67366964]),\n", + " 'person_847': array([-0.37776378, -0.69792807]),\n", + " 'person_848': array([-0.37721109, -0.6861825 ]),\n", + " 'person_849': array([-0.3662118 , -0.68927139]),\n", + " 'person_850': array([-0.35108262, -0.62525022]),\n", + " 'person_851': array([-0.38599989, -0.6982885 ]),\n", + " 'person_852': array([-0.3692925 , -0.64405262]),\n", + " 'person_853': array([-0.35677004, -0.63830072]),\n", + " 'person_854': array([-0.3559714 , -0.61819321]),\n", + " 'person_855': array([-0.39613199, -0.69571918]),\n", + " 'person_856': array([-0.40514314, -0.68293875]),\n", + " 'person_857': array([-0.37028682, -0.69501692]),\n", + " 'person_858': array([0.00884062, 0.67091918]),\n", + " 'company_112': array([0.01073184, 0.69469851]),\n", + " 'person_859': array([ 0.78145403, -0.12372371]),\n", + " 'company_113': array([ 0.75039798, -0.12216124]),\n", + " 'person_860': array([ 0.71012086, -0.12046699]),\n", + " 'person_861': array([-0.9509427 , 0.06077622]),\n", + " 'company_114': array([-0.96681267, 0.06762943]),\n", + " 'person_862': array([-0.95818782, 0.07840208]),\n", + " 'person_863': array([-1. , 0.06918829])}" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import plotly.graph_objects as go\n", + "\n", + "import networkx as nx\n", + "\n", + "G = graph\n", + "pos=nx.fruchterman_reingold_layout(G)\n", + "pos" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
person_1company_1person_2person_3company_2person_4person_5person_6person_7person_8...person_857person_858company_112person_859company_113person_860person_861company_114person_862person_863
0-0.946456-0.948138-0.9752600.5413450.5160490.5037810.5285210.5296910.4996880.536370...-0.3702870.0088410.0107320.7814540.7503980.710121-0.950943-0.966813-0.958188-1.000000
1-0.095317-0.083899-0.0871020.6450350.6222970.6297310.6538510.6176580.6001310.651519...-0.6950170.6709190.694699-0.123724-0.122161-0.1204670.0607760.0676290.0784020.069188
\n", + "

2 rows × 980 columns

\n", + "
" + ], + "text/plain": [ + " person_1 company_1 person_2 person_3 company_2 person_4 person_5 \\\n", + "0 -0.946456 -0.948138 -0.975260 0.541345 0.516049 0.503781 0.528521 \n", + "1 -0.095317 -0.083899 -0.087102 0.645035 0.622297 0.629731 0.653851 \n", + "\n", + " person_6 person_7 person_8 ... person_857 person_858 company_112 \\\n", + "0 0.529691 0.499688 0.536370 ... -0.370287 0.008841 0.010732 \n", + "1 0.617658 0.600131 0.651519 ... -0.695017 0.670919 0.694699 \n", + "\n", + " person_859 company_113 person_860 person_861 company_114 person_862 \\\n", + "0 0.781454 0.750398 0.710121 -0.950943 -0.966813 -0.958188 \n", + "1 -0.123724 -0.122161 -0.120467 0.060776 0.067629 0.078402 \n", + "\n", + " person_863 \n", + "0 -1.000000 \n", + "1 0.069188 \n", + "\n", + "[2 rows x 980 columns]" + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "nodes = pd.DataFrame(pos)\n", + "nodes\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "\n", + "Xv=[pos[k][0] for k in range(N)]\n", + "Yv=[pos[k][1] for k in range(N)]\n", + "Xed=[]\n", + "Yed=[]\n", + "for edge in E:\n", + " Xed+=[pos[edge[0]][0],pos[edge[1]][0], None]\n", + " Yed+=[pos[edge[0]][1],pos[edge[1]][1], None]\n", + "\n", + "trace3=Scatter(x=Xed,\n", + " y=Yed,\n", + " mode='lines',\n", + " line=dict(color='rgb(210,210,210)', width=1),\n", + " hoverinfo='none'\n", + " )\n", + "trace4=Scatter(x=Xv,\n", + " y=Yv,\n", + " mode='markers',\n", + " name='net',\n", + " marker=dict(symbol='circle-dot',\n", + " size=5,\n", + " color='#6959CD',\n", + " line=dict(color='rgb(50,50,50)', width=0.5)\n", + " ),\n", + " text=labels,\n", + " hoverinfo='text'\n", + " )\n", + "\n", + "annot=\"This networkx.Graph has the Fruchterman-Reingold layout
Code:\"+\\\n", + "\" [2]\"\n", + "\n", + "data1=[trace3, trace4]\n", + "fig1=Figure(data=data1, layout=layout)\n", + "fig1['layout']['annotations'][0]['text']=annot\n", + "py.iplot(fig1, filename='Coautorship-network-nx')" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [ + { + "ename": "KeyError", + "evalue": "'pos'", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mKeyError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32mc:\\Users\\trimr\\Projekte\\aki_prj23_transparenzregister\\src\\aki_prj23_transparenzregister\\utils\\networkx\\Dev.ipynb Cell 10\u001b[0m line \u001b[0;36m9\n\u001b[0;32m 7\u001b[0m edge_y \u001b[39m=\u001b[39m []\n\u001b[0;32m 8\u001b[0m \u001b[39mfor\u001b[39;00m edge \u001b[39min\u001b[39;00m G\u001b[39m.\u001b[39medges():\n\u001b[1;32m----> 9\u001b[0m x0, y0 \u001b[39m=\u001b[39m G\u001b[39m.\u001b[39;49mnodes[edge[\u001b[39m0\u001b[39;49m]][\u001b[39m'\u001b[39;49m\u001b[39mpos\u001b[39;49m\u001b[39m'\u001b[39;49m]\n\u001b[0;32m 10\u001b[0m x1, y1 \u001b[39m=\u001b[39m G\u001b[39m.\u001b[39mnodes[edge[\u001b[39m1\u001b[39m]][\u001b[39m'\u001b[39m\u001b[39mpos\u001b[39m\u001b[39m'\u001b[39m]\n\u001b[0;32m 11\u001b[0m edge_x\u001b[39m.\u001b[39mappend(x0)\n", + "\u001b[1;31mKeyError\u001b[0m: 'pos'" + ] + } + ], + "source": [ + "import plotly.graph_objects as go\n", + "\n", + "import networkx as nx\n", + "\n", + "G = graph\n", + "pos=nx.fruchterman_reingold_layout(G)\n", + "edge_x = []\n", + "edge_y = []\n", + "for edge in G.edges():\n", + " x0, y0 = G.nodes[edge[0]]['pos']\n", + " x1, y1 = G.nodes[edge[1]]['pos']\n", + " edge_x.append(x0)\n", + " edge_x.append(x1)\n", + " edge_x.append(None)\n", + " edge_y.append(y0)\n", + " edge_y.append(y1)\n", + " edge_y.append(None)\n", + "\n", + "edge_trace = go.Scatter(\n", + " x=edge_x, y=edge_y,\n", + " line=dict(width=0.5, color='#888'),\n", + " hoverinfo='none',\n", + " mode='lines')\n", + "\n", + "node_x = []\n", + "node_y = []\n", + "for node in G.nodes():\n", + " x, y = G.nodes[node]['pos']\n", + " node_x.append(x)\n", + " node_y.append(y)\n", + "\n", + "node_trace = go.Scatter(\n", + " x=node_x, y=node_y,\n", + " mode='markers',\n", + " hoverinfo='text',\n", + " marker=dict(\n", + " showscale=True,\n", + " # colorscale options\n", + " #'Greys' | 'YlGnBu' | 'Greens' | 'YlOrRd' | 'Bluered' | 'RdBu' |\n", + " #'Reds' | 'Blues' | 'Picnic' | 'Rainbow' | 'Portland' | 'Jet' |\n", + " #'Hot' | 'Blackbody' | 'Earth' | 'Electric' | 'Viridis' |\n", + " colorscale='YlGnBu',\n", + " reversescale=True,\n", + " color=[],\n", + " size=10,\n", + " colorbar=dict(\n", + " thickness=15,\n", + " title='Node Connections',\n", + " xanchor='left',\n", + " titleside='right'\n", + " ),\n", + " line_width=2))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "node_adjacencies = []\n", + "node_text = []\n", + "for node, adjacencies in enumerate(G.adjacency()):\n", + " node_adjacencies.append(len(adjacencies[1]))\n", + " node_text.append('# of connections: '+str(len(adjacencies[1])))\n", + "\n", + "node_trace.marker.color = node_adjacencies\n", + "node_trace.text = node_text" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "fig = go.Figure(data=[edge_trace, node_trace],\n", + " layout=go.Layout(\n", + " title='
Network graph made with Python',\n", + " titlefont_size=16,\n", + " showlegend=False,\n", + " hovermode='closest',\n", + " margin=dict(b=20,l=5,r=5,t=40),\n", + " annotations=[ dict(\n", + " text=\"Python code: https://plotly.com/ipython-notebooks/network-graphs/\",\n", + " showarrow=False,\n", + " xref=\"paper\", yref=\"paper\",\n", + " x=0.005, y=-0.002 ) ],\n", + " xaxis=dict(showgrid=False, zeroline=False, showticklabels=False),\n", + " yaxis=dict(showgrid=False, zeroline=False, showticklabels=False))\n", + " )\n", + "fig.show()" + ] } ], "metadata": { diff --git a/src/aki_prj23_transparenzregister/utils/networkx/networkX_with_sql.ipynb b/src/aki_prj23_transparenzregister/utils/networkx/networkX_with_sql.ipynb new file mode 100644 index 0000000..eb26044 --- /dev/null +++ b/src/aki_prj23_transparenzregister/utils/networkx/networkX_with_sql.ipynb @@ -0,0 +1,923 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [], + "source": [ + "import os.path\n", + "\n", + "import pandas as pd\n", + "\n", + "# if not os.path.exists(\"src\"):\n", + "# %cd \"../\"\n", + "# os.path.abspath(\".\")" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [], + "source": [ + "from aki_prj23_transparenzregister.utils.sql import entities\n", + "from sqlalchemy.orm import aliased\n", + "from sqlalchemy import func, text\n", + "\n", + "# Alias for Company table for the base company\n", + "base_company = aliased(entities.Company, name=\"base_company\")\n", + "\n", + "# Alias for Company table for the head company\n", + "head_company = aliased(entities.Company, name=\"head_company\")" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [], + "source": [ + "from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider\n", + "from aki_prj23_transparenzregister.utils.sql.connector import get_session\n", + "\n", + "session = get_session(JsonFileConfigProvider(\"../secrets.json\"))" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'SELECT base_company.name AS name_company_base, relation.relation AS relation_type, head_company.name AS name_company_head \\nFROM company AS base_company JOIN (relation JOIN company_relation ON relation.id = company_relation.id) ON relation.company_id = base_company.id JOIN company AS head_company ON company_relation.company2_id = head_company.id'" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Query to fetch relations between companies\n", + "relations_query = (\n", + " session.query(\n", + " base_company.name.label(\"name_company_base\"),\n", + " entities.CompanyRelation.relation.label(\"relation_type\"),\n", + " head_company.name.label(\"name_company_head\"),\n", + " )\n", + " .join(\n", + " entities.CompanyRelation,\n", + " entities.CompanyRelation.company_id == base_company.id,\n", + " )\n", + " .join(\n", + " head_company,\n", + " entities.CompanyRelation.company2_id == head_company.id,\n", + " )\n", + ")\n", + "str(relations_query)" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "121 ms ± 9.27 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" + ] + } + ], + "source": [ + "%timeit pd.read_sql_query(str(relations_query), session.bind)" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
name_company_baserelation_typename_company_head
02. Schaper Objekt GmbH & Co. Kiel KGKOMMANDITISTMulti-Center Warenvertriebs GmbH
1Alb-Windkraft GmbH & Co. KGKOMMANDITISTEnBW Windkraftprojekte GmbH
2Anneliese Köster GmbH & Co. KGKOMMANDITISTINDUS Holding Aktiengesellschaft
3AURELIUS Equity Opportunities SE & Co. KGaAHAFTENDER_GESELLSCHAFTERAURELIUS Management SE
4Aurelius KGHAFTENDER_GESELLSCHAFTERAurelius Verwaltungs GmbH
............
573Zalando BTD 011 SE & Co. KGHAFTENDER_GESELLSCHAFTERZalando SE
574Zalando BTD 011 SE & Co. KGKOMMANDITISTZalando Operations GmbH
575zLabels Creation & Sales GmbH & Co. KGHAFTENDER_GESELLSCHAFTERzLabels GmbH
576Zalando Customer Care International SE & Co. KGHAFTENDER_GESELLSCHAFTERZalando SE
577Zalando Customer Care International SE & Co. KGKOMMANDITISTZalando Operations GmbH
\n", + "

578 rows × 3 columns

\n", + "
" + ], + "text/plain": [ + " name_company_base \\\n", + "0 2. Schaper Objekt GmbH & Co. Kiel KG \n", + "1 Alb-Windkraft GmbH & Co. KG \n", + "2 Anneliese Köster GmbH & Co. KG \n", + "3 AURELIUS Equity Opportunities SE & Co. KGaA \n", + "4 Aurelius KG \n", + ".. ... \n", + "573 Zalando BTD 011 SE & Co. KG \n", + "574 Zalando BTD 011 SE & Co. KG \n", + "575 zLabels Creation & Sales GmbH & Co. KG \n", + "576 Zalando Customer Care International SE & Co. KG \n", + "577 Zalando Customer Care International SE & Co. KG \n", + "\n", + " relation_type name_company_head \n", + "0 KOMMANDITIST Multi-Center Warenvertriebs GmbH \n", + "1 KOMMANDITIST EnBW Windkraftprojekte GmbH \n", + "2 KOMMANDITIST INDUS Holding Aktiengesellschaft \n", + "3 HAFTENDER_GESELLSCHAFTER AURELIUS Management SE \n", + "4 HAFTENDER_GESELLSCHAFTER Aurelius Verwaltungs GmbH \n", + ".. ... ... \n", + "573 HAFTENDER_GESELLSCHAFTER Zalando SE \n", + "574 KOMMANDITIST Zalando Operations GmbH \n", + "575 HAFTENDER_GESELLSCHAFTER zLabels GmbH \n", + "576 HAFTENDER_GESELLSCHAFTER Zalando SE \n", + "577 KOMMANDITIST Zalando Operations GmbH \n", + "\n", + "[578 rows x 3 columns]" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "company_relations = pd.read_sql_query(str(relations_query), session.bind)\n", + "company_relations" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [], + "source": [ + "relations_query = (\n", + " session.query(\n", + " entities.Company.name.label(\"name_company\"),\n", + " entities.PersonRelation.relation.label(\"relation_type\"),\n", + " entities.Person.lastname.label(\"lastname\"),\n", + " entities.Person.firstname.label(\"firstname\"),\n", + " entities.Person.date_of_birth.label(\"date_of_birth\"),\n", + " )\n", + " .join(\n", + " entities.PersonRelation,\n", + " entities.PersonRelation.company_id == entities.Company.id,\n", + " )\n", + " .join(\n", + " entities.Person,\n", + " entities.PersonRelation.person_id == entities.Person.id,\n", + " )\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "373 ms ± 25.6 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" + ] + } + ], + "source": [ + "%timeit pd.read_sql_query(str(relations_query), session.bind)" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
name_companyrelation_typelastnamefirstnamedate_of_birth
00 10 24 Telefondienste GmbHGESCHAEFTSFUEHRERTetauNicolas1971-01-02
10 10 24 Telefondienste GmbHPROKURISTDammastLutz1966-12-06
21. Staiger Grundstücksverwaltung GmbH & Co. KGKOMMANDITISTTutschRosemarie1941-10-09
31. Staiger Grundstücksverwaltung GmbH & Co. KGKOMMANDITISTStaigerMarc1969-10-22
41. Staiger Grundstücksverwaltung GmbH & Co. KGKOMMANDITISTStaigerMichaela1971-03-03
..................
14891Wohnungsbaugesellschaft mit beschränkter Haftu...GESCHAEFTSFUEHRERWeirichTorsten1975-07-21
14892Wohnungsbaugesellschaft mit beschränkter Haftu...GESCHAEFTSFUEHRERBrusinskiBastian1980-10-29
14893Zalando Customer Care International SE & Co. KGPROKURISTPapeUte1978-12-13
14894zebotec GmbHGESCHAEFTSFUEHRERNeffWerner1981-11-24
14895zebotec GmbHGESCHAEFTSFUEHRERMorrisRichard1971-01-02
\n", + "

14896 rows × 5 columns

\n", + "
" + ], + "text/plain": [ + " name_company relation_type \\\n", + "0 0 10 24 Telefondienste GmbH GESCHAEFTSFUEHRER \n", + "1 0 10 24 Telefondienste GmbH PROKURIST \n", + "2 1. Staiger Grundstücksverwaltung GmbH & Co. KG KOMMANDITIST \n", + "3 1. Staiger Grundstücksverwaltung GmbH & Co. KG KOMMANDITIST \n", + "4 1. Staiger Grundstücksverwaltung GmbH & Co. KG KOMMANDITIST \n", + "... ... ... \n", + "14891 Wohnungsbaugesellschaft mit beschränkter Haftu... GESCHAEFTSFUEHRER \n", + "14892 Wohnungsbaugesellschaft mit beschränkter Haftu... GESCHAEFTSFUEHRER \n", + "14893 Zalando Customer Care International SE & Co. KG PROKURIST \n", + "14894 zebotec GmbH GESCHAEFTSFUEHRER \n", + "14895 zebotec GmbH GESCHAEFTSFUEHRER \n", + "\n", + " lastname firstname date_of_birth \n", + "0 Tetau Nicolas 1971-01-02 \n", + "1 Dammast Lutz 1966-12-06 \n", + "2 Tutsch Rosemarie 1941-10-09 \n", + "3 Staiger Marc 1969-10-22 \n", + "4 Staiger Michaela 1971-03-03 \n", + "... ... ... ... \n", + "14891 Weirich Torsten 1975-07-21 \n", + "14892 Brusinski Bastian 1980-10-29 \n", + "14893 Pape Ute 1978-12-13 \n", + "14894 Neff Werner 1981-11-24 \n", + "14895 Morris Richard 1971-01-02 \n", + "\n", + "[14896 rows x 5 columns]" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df = pd.read_sql_query(str(relations_query), session.bind)\n", + "df" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
person_id
02520
14993
23202
34611
44095
......
18043565
18053510
1806530
1807536
18084617
\n", + "

1809 rows × 1 columns

\n", + "
" + ], + "text/plain": [ + " person_id\n", + "0 2520\n", + "1 4993\n", + "2 3202\n", + "3 4611\n", + "4 4095\n", + "... ...\n", + "1804 3565\n", + "1805 3510\n", + "1806 530\n", + "1807 536\n", + "1808 4617\n", + "\n", + "[1809 rows x 1 columns]" + ] + }, + "execution_count": 27, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sqlalchemy import func, text\n", + "\n", + "# Subquery to group and count the relations without joins\n", + "grouped_relations_subquery = (\n", + " session.query(\n", + " entities.PersonRelation.person_id,\n", + " )\n", + " .group_by(entities.PersonRelation.person_id)\n", + " .having(func.count() > 1)\n", + ")\n", + "pd.DataFrame(grouped_relations_subquery.all())" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [], + "source": [ + "relations_query = (\n", + " session.query(\n", + " entities.Company.name.label(\"name_company\"),\n", + " entities.PersonRelation.relation.label(\"relation_type\"),\n", + " entities.Person.lastname.label(\"lastname\"),\n", + " entities.Person.firstname.label(\"firstname\"),\n", + " entities.Person.date_of_birth.label(\"date_of_birth\"),\n", + " )\n", + " .join(\n", + " entities.PersonRelation,\n", + " entities.PersonRelation.company_id == entities.Company.id,\n", + " )\n", + " .join(\n", + " entities.Person,\n", + " entities.PersonRelation.person_id == entities.Person.id,\n", + " )\n", + " .filter(entities.PersonRelation.person_id.in_(grouped_relations_subquery))\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
name_companyrelation_typelastnamefirstnamedate_of_birthperson_name
00 10 24 Telefondienste GmbHRelationshipRoleEnum.GESCHAEFTSFUEHRERTetauNicolas1971-01-02TetauNicolas
10 10 24 Telefondienste GmbHRelationshipRoleEnum.PROKURISTDammastLutz1966-12-06DammastLutz
201050.com GmbHRelationshipRoleEnum.GESCHAEFTSFUEHRERTetauNicolas1971-01-02TetauNicolas
301050.com GmbHRelationshipRoleEnum.PROKURISTDammastLutz1966-12-06DammastLutz
4AASP Filmproduktionsgesellschaft mbH & Co. Leo...RelationshipRoleEnum.KOMMANDITISTDellhofenJens1977-04-19DellhofenJens
.....................
7071Wohnungsbaugesellschaft mit beschränkter Haftu...RelationshipRoleEnum.GESCHAEFTSFUEHRERKarounosMarita1971-03-30KarounosMarita
7072Wohnungsbaugesellschaft mit beschränkter Haftu...RelationshipRoleEnum.PROKURISTGrollMichael1967-12-24GrollMichael
7073Wohnungsbaugesellschaft mit beschränkter Haftu...RelationshipRoleEnum.GESCHAEFTSFUEHRERWeirichTorsten1975-07-21WeirichTorsten
7074Wohnungsbaugesellschaft mit beschränkter Haftu...RelationshipRoleEnum.GESCHAEFTSFUEHRERBrusinskiBastian1980-10-29BrusinskiBastian
7075Zalando Customer Care International SE & Co. KGRelationshipRoleEnum.PROKURISTPapeUte1978-12-13PapeUte
\n", + "

7076 rows × 6 columns

\n", + "
" + ], + "text/plain": [ + " name_company \\\n", + "0 0 10 24 Telefondienste GmbH \n", + "1 0 10 24 Telefondienste GmbH \n", + "2 01050.com GmbH \n", + "3 01050.com GmbH \n", + "4 AASP Filmproduktionsgesellschaft mbH & Co. Leo... \n", + "... ... \n", + "7071 Wohnungsbaugesellschaft mit beschränkter Haftu... \n", + "7072 Wohnungsbaugesellschaft mit beschränkter Haftu... \n", + "7073 Wohnungsbaugesellschaft mit beschränkter Haftu... \n", + "7074 Wohnungsbaugesellschaft mit beschränkter Haftu... \n", + "7075 Zalando Customer Care International SE & Co. KG \n", + "\n", + " relation_type lastname firstname \\\n", + "0 RelationshipRoleEnum.GESCHAEFTSFUEHRER Tetau Nicolas \n", + "1 RelationshipRoleEnum.PROKURIST Dammast Lutz \n", + "2 RelationshipRoleEnum.GESCHAEFTSFUEHRER Tetau Nicolas \n", + "3 RelationshipRoleEnum.PROKURIST Dammast Lutz \n", + "4 RelationshipRoleEnum.KOMMANDITIST Dellhofen Jens \n", + "... ... ... ... \n", + "7071 RelationshipRoleEnum.GESCHAEFTSFUEHRER Karounos Marita \n", + "7072 RelationshipRoleEnum.PROKURIST Groll Michael \n", + "7073 RelationshipRoleEnum.GESCHAEFTSFUEHRER Weirich Torsten \n", + "7074 RelationshipRoleEnum.GESCHAEFTSFUEHRER Brusinski Bastian \n", + "7075 RelationshipRoleEnum.PROKURIST Pape Ute \n", + "\n", + " date_of_birth person_name \n", + "0 1971-01-02 TetauNicolas \n", + "1 1966-12-06 DammastLutz \n", + "2 1971-01-02 TetauNicolas \n", + "3 1966-12-06 DammastLutz \n", + "4 1977-04-19 DellhofenJens \n", + "... ... ... \n", + "7071 1971-03-30 KarounosMarita \n", + "7072 1967-12-24 GrollMichael \n", + "7073 1975-07-21 WeirichTorsten \n", + "7074 1980-10-29 BrusinskiBastian \n", + "7075 1978-12-13 PapeUte \n", + "\n", + "[7076 rows x 6 columns]" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "relations_df = pd.DataFrame(relations_query.all())\n", + "relations_df[\"person_name\"] = relations_df[\"lastname\"] + relations_df[\"firstname\"]\n", + "relations_df.rename(columns={'oldName1': 'newName1', 'oldName2': 'newName2'}, inplace=True)\n", + "relations_df" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "node_template = {\n", + " \"id\": \"(company|person)_\\d\",\n", + " \"label\": \"Name from entries\",\n", + " \"type\": \"Company|Person\",\n", + " \"shape\": \"dot\",\n", + " \"color\": \"#729b79ff\",\n", + " # TODO add title for hover effect in graph \"title\": \"\"\n", + " }\n", + "nodes = relations_df\n", + "for index in relations_df.index:\n", + " \n", + " nodes[\"index\"] = {\n", + " \"label\": company_2.name,\n", + " \"type\": \"Company\",\n", + " \"shape\": \"dot\",\n", + " \"color\": \"#729b79ff\",\n", + " }" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import networkx as nx\n", + "import matplotlib.pyplot as plt\n", + "# relations_df[\"person_name\"] = relations_df[\"lastname\"] + relations_df[\"firstname\"]\n", + "\n", + "nodes = \n", + "# create edges from dataframe\n", + "graph = nx.from_pandas_edgelist(relations_df, source=\"name_company\", target=\"person_name\", edge_attr=\"relation_type\")\n", + "\n", + "# update node attributes from dataframe\n", + "nodes_attr = nodes.set_index(\"index\").to_dict(orient=\"index\")\n", + "nx.set_node_attributes(graph, nodes_attr)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from pyvis.network import Network\n", + "\n", + "net = Network(\n", + " directed=False, neighborhood_highlight=True, bgcolor=\"white\", font_color=\"black\"\n", + ")\n", + "\n", + "# pass networkx graph to pyvis\n", + "net.from_nx(graph)\n", + "\n", + "net.inherit_edge_colors(False)\n", + "net.set_edge_smooth(\"dynamic\")\n", + "adj_list = net.get_adj_list()\n", + "\n", + "measure_type = \"degree\"\n", + "measure_vector = {}\n", + "\n", + "if measure_type == \"eigenvector\":\n", + " measure_vector = nx.eigenvector_centrality(graph)\n", + " df[\"eigenvector\"] = measure_vector.values()\n", + "if measure_type == \"degree\":\n", + " measure_vector = nx.degree_centrality(graph)\n", + " df[\"degree\"] = measure_vector.values()\n", + "if measure_type == \"betweeness\":\n", + " measure_vector = nx.betweenness_centrality(graph)\n", + " df[\"betweeness\"] = measure_vector.values()\n", + "if measure_type == \"closeness\":\n", + " measure_vector = nx.closeness_centrality(graph)\n", + " df[\"closeness\"] = measure_vector.values()\n", + "if measure_type == \"pagerank\":\n", + " measure_vector = nx.pagerank(graph)\n", + " df[\"pagerank\"] = measure_vector.values()\n", + "if measure_type == \"average_degree\":\n", + " measure_vector = nx.average_degree_connectivity(graph)\n", + " # df[\"average_degree\"] = measure_vector.values()\n", + " print(measure_vector.values())\n", + "\n", + "# calculate and update size of the nodes depending on their number of edges\n", + "for node_id, neighbors in adj_list.items():\n", + " # df[\"edges\"] = measure_vector.values()\n", + "\n", + " if measure_type == \"edges\":\n", + " size = 10 # len(neighbors)*5\n", + " else:\n", + " size = measure_vector[node_id] * 50\n", + " next(\n", + " (\n", + " node.update({\"size\": size})\n", + " for node in net.nodes\n", + " if node[\"id\"] == node_id\n", + " ),\n", + " None,\n", + " )\n", + "\n", + " \n", + "\n", + "net.repulsion()\n", + "net.show_buttons(filter_=[\"physics\"])\n", + "\n", + "# net.show_buttons()\n", + "\n", + "# save graph as HTML\n", + "net.save_graph(\"./tmp.html\")\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "aki-prj23-transparenzregister-IY2hcXvW-py3.11", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx.ipynb b/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx.ipynb new file mode 100644 index 0000000..1927295 --- /dev/null +++ b/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx.ipynb @@ -0,0 +1,210091 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "68a5fc0a3d3f7c63", + "metadata": { + "collapsed": false + }, + "source": [ + "# Relation queries via SQLAlchemy for networkx" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "b6eea59adeae27d4", + "metadata": { + "ExecuteTime": { + "end_time": "2023-10-07T13:25:27.888866200Z", + "start_time": "2023-10-07T13:25:27.704284300Z" + }, + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "'c:\\\\Users\\\\trimr\\\\Projekte\\\\aki_prj23_transparenzregister'" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import os.path\n", + "\n", + "import pandas as pd\n", + "\n", + "if not os.path.exists(\"src\"):\n", + " %cd \"../\"\n", + "os.path.abspath(\".\")" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f23dbd06", + "metadata": {}, + "outputs": [], + "source": [ + "person_relations_df[[\"from_x\", \"from_y\"]] = (company_df.set_index(\"id\", drop=True)).loc[person_relations_df[\"company_id\"], [\"x\", \"y\"]]\n", + "person_relations_df.head().T" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f3a4e1c1", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 89, + "id": "b9a7841b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
idhrcourt_idnamecompany_typefounding_datebusiness_purposestreethouse_numberzip_code...latitudepos_accuracycapital_valueoriginal_currencycapital_typelast_updatesectorstr_idxy
01HRB 14804810 10 24 Telefondienste GmbHGMBH2000-09-18Gegenstand des Unternehmens ist die Entwicklun...Deelbögenkamp422297...53.6026204.025000.0EUROSTAMMKAPITAL2020-05-11Nonec_1933483.456739-841989.312943
12HRA 30111421. Staiger Grundstücksverwaltung GmbH & Co. KGKG2003-07-03NoneJohannes-Bieg-Straße874391...49.0225004.0200000.0EUROHAFTEINLAGE2020-05-04Nonec_2-366283.693942-775095.283302
23HRA 72001531 A Autenrieth Kunststofftechnik GmbH & Co. KGKGNaTNoneGewerbestraße872535...48.4456334.0146000.0EUROHAFTEINLAGE2016-08-23Nonec_3-181700.159616-623621.867275
34HRB 97262101050.com GmbHGMBH2006-03-02die Entwicklung und Bereitstellung von Dienstl...Deelbögenkamp422297...53.6026204.025000.0EUROSTAMMKAPITAL2020-05-13Nonec_4429817.138155-508933.805398
45HRA 1761742. Schaper Objekt GmbH & Co. Kiel KGKGNaTNoneMetro-Straße240235...51.2301004.0500.0EUROHAFTEINLAGE2021-05-27Nonec_577282.617652-561971.248878
\n", + "

5 rows × 22 columns

\n", + "
" + ], + "text/plain": [ + " id hr court_id name \\\n", + "0 1 HRB 148048 1 0 10 24 Telefondienste GmbH \n", + "1 2 HRA 301114 2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", + "2 3 HRA 720015 3 1 A Autenrieth Kunststofftechnik GmbH & Co. KG \n", + "3 4 HRB 97262 1 01050.com GmbH \n", + "4 5 HRA 17617 4 2. Schaper Objekt GmbH & Co. Kiel KG \n", + "\n", + " company_type founding_date \\\n", + "0 GMBH 2000-09-18 \n", + "1 KG 2003-07-03 \n", + "2 KG NaT \n", + "3 GMBH 2006-03-02 \n", + "4 KG NaT \n", + "\n", + " business_purpose street \\\n", + "0 Gegenstand des Unternehmens ist die Entwicklun... Deelbögenkamp \n", + "1 None Johannes-Bieg-Straße \n", + "2 None Gewerbestraße \n", + "3 die Entwicklung und Bereitstellung von Dienstl... Deelbögenkamp \n", + "4 None Metro-Straße \n", + "\n", + " house_number zip_code ... latitude pos_accuracy capital_value \\\n", + "0 4 22297 ... 53.602620 4.0 25000.0 \n", + "1 8 74391 ... 49.022500 4.0 200000.0 \n", + "2 8 72535 ... 48.445633 4.0 146000.0 \n", + "3 4 22297 ... 53.602620 4.0 25000.0 \n", + "4 2 40235 ... 51.230100 4.0 500.0 \n", + "\n", + " original_currency capital_type last_update sector str_id x \\\n", + "0 EURO STAMMKAPITAL 2020-05-11 None c_1 933483.456739 \n", + "1 EURO HAFTEINLAGE 2020-05-04 None c_2 -366283.693942 \n", + "2 EURO HAFTEINLAGE 2016-08-23 None c_3 -181700.159616 \n", + "3 EURO STAMMKAPITAL 2020-05-13 None c_4 429817.138155 \n", + "4 EURO HAFTEINLAGE 2021-05-27 None c_5 77282.617652 \n", + "\n", + " y \n", + "0 -841989.312943 \n", + "1 -775095.283302 \n", + "2 -623621.867275 \n", + "3 -508933.805398 \n", + "4 -561971.248878 \n", + "\n", + "[5 rows x 22 columns]" + ] + }, + "execution_count": 89, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "company_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 102, + "id": "6ddddb3e", + "metadata": {}, + "outputs": [], + "source": [ + "df_temp_df: pd.DataFrame = company_df.set_index(\"id\", drop=True)\n", + "person_relations_df[[\"company_from_x\", \"company_from_y\"]] = df_temp_df.loc[person_relations_df[\"company_id\"] , [\"x\", \"y\"]].reset_index(drop=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 104, + "metadata": {}, + "outputs": [], + "source": [ + "df_person_tmp: pd.DataFrame = person_df.set_index(\"id\", drop=True)\n", + "person_relations_df[[\"to_person_x\", \"to_person_y\"]] = df_person_tmp.loc[person_relations_df[\"person_id\"] , [\"x\", \"y\"]].reset_index(drop=True)\n" + ] + }, + { + "cell_type": "code", + "execution_count": 105, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
company_idperson_idname_companyrelation_typelastnamefirstnamedate_of_birthfromtocompany_from_xcompany_from_yto_person_xto_person_y
0110 10 24 Telefondienste GmbHRelationshipRoleEnum.GESCHAEFTSFUEHRERTetauNicolas1971-01-02p_1p_1933483.456739-841989.31294395962.083838-188630.575193
1120 10 24 Telefondienste GmbHRelationshipRoleEnum.PROKURISTDammastLutz1966-12-06p_1p_2933483.456739-841989.31294395958.171949-188333.017618
2231. Staiger Grundstücksverwaltung GmbH & Co. KGRelationshipRoleEnum.KOMMANDITISTTutschRosemarie1941-10-09p_2p_3-366283.693942-775095.28330296588.817671-188120.264189
3241. Staiger Grundstücksverwaltung GmbH & Co. KGRelationshipRoleEnum.KOMMANDITISTStaigerMarc1969-10-22p_2p_4-366283.693942-775095.28330295948.882846-188484.386010
4251. Staiger Grundstücksverwaltung GmbH & Co. KGRelationshipRoleEnum.KOMMANDITISTStaigerMichaela1971-03-03p_2p_5-366283.693942-775095.28330295880.896083-188495.232012
..........................................
148913144878Wohnungsbaugesellschaft mit beschränkter Haftu...RelationshipRoleEnum.GESCHAEFTSFUEHRERWeirichTorsten1975-07-21p_3144p_878-765096.839669-873491.37680797434.015153-187858.447324
1489231441840Wohnungsbaugesellschaft mit beschränkter Haftu...RelationshipRoleEnum.GESCHAEFTSFUEHRERBrusinskiBastian1980-10-29p_3144p_1840-765096.839669-873491.37680797545.388505-187920.623746
1489331459359Zalando Customer Care International SE & Co. KGRelationshipRoleEnum.PROKURISTPapeUte1978-12-13p_3145p_9359522713.347552-39987.059093100140.211001-188283.316589
1489431469628zebotec GmbHRelationshipRoleEnum.GESCHAEFTSFUEHRERNeffWerner1981-11-24p_3146p_9628-47380.260514-317024.32346799779.477327-188694.518293
1489531469629zebotec GmbHRelationshipRoleEnum.GESCHAEFTSFUEHRERMorrisRichard1971-01-02p_3146p_9629-47380.260514-317024.32346799727.474626-188750.539842
\n", + "

14896 rows × 13 columns

\n", + "
" + ], + "text/plain": [ + " company_id person_id \\\n", + "0 1 1 \n", + "1 1 2 \n", + "2 2 3 \n", + "3 2 4 \n", + "4 2 5 \n", + "... ... ... \n", + "14891 3144 878 \n", + "14892 3144 1840 \n", + "14893 3145 9359 \n", + "14894 3146 9628 \n", + "14895 3146 9629 \n", + "\n", + " name_company \\\n", + "0 0 10 24 Telefondienste GmbH \n", + "1 0 10 24 Telefondienste GmbH \n", + "2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", + "3 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", + "4 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", + "... ... \n", + "14891 Wohnungsbaugesellschaft mit beschränkter Haftu... \n", + "14892 Wohnungsbaugesellschaft mit beschränkter Haftu... \n", + "14893 Zalando Customer Care International SE & Co. KG \n", + "14894 zebotec GmbH \n", + "14895 zebotec GmbH \n", + "\n", + " relation_type lastname firstname \\\n", + "0 RelationshipRoleEnum.GESCHAEFTSFUEHRER Tetau Nicolas \n", + "1 RelationshipRoleEnum.PROKURIST Dammast Lutz \n", + "2 RelationshipRoleEnum.KOMMANDITIST Tutsch Rosemarie \n", + "3 RelationshipRoleEnum.KOMMANDITIST Staiger Marc \n", + "4 RelationshipRoleEnum.KOMMANDITIST Staiger Michaela \n", + "... ... ... ... \n", + "14891 RelationshipRoleEnum.GESCHAEFTSFUEHRER Weirich Torsten \n", + "14892 RelationshipRoleEnum.GESCHAEFTSFUEHRER Brusinski Bastian \n", + "14893 RelationshipRoleEnum.PROKURIST Pape Ute \n", + "14894 RelationshipRoleEnum.GESCHAEFTSFUEHRER Neff Werner \n", + "14895 RelationshipRoleEnum.GESCHAEFTSFUEHRER Morris Richard \n", + "\n", + " date_of_birth from to company_from_x company_from_y \\\n", + "0 1971-01-02 p_1 p_1 933483.456739 -841989.312943 \n", + "1 1966-12-06 p_1 p_2 933483.456739 -841989.312943 \n", + "2 1941-10-09 p_2 p_3 -366283.693942 -775095.283302 \n", + "3 1969-10-22 p_2 p_4 -366283.693942 -775095.283302 \n", + "4 1971-03-03 p_2 p_5 -366283.693942 -775095.283302 \n", + "... ... ... ... ... ... \n", + "14891 1975-07-21 p_3144 p_878 -765096.839669 -873491.376807 \n", + "14892 1980-10-29 p_3144 p_1840 -765096.839669 -873491.376807 \n", + "14893 1978-12-13 p_3145 p_9359 522713.347552 -39987.059093 \n", + "14894 1981-11-24 p_3146 p_9628 -47380.260514 -317024.323467 \n", + "14895 1971-01-02 p_3146 p_9629 -47380.260514 -317024.323467 \n", + "\n", + " to_person_x to_person_y \n", + "0 95962.083838 -188630.575193 \n", + "1 95958.171949 -188333.017618 \n", + "2 96588.817671 -188120.264189 \n", + "3 95948.882846 -188484.386010 \n", + "4 95880.896083 -188495.232012 \n", + "... ... ... \n", + "14891 97434.015153 -187858.447324 \n", + "14892 97545.388505 -187920.623746 \n", + "14893 100140.211001 -188283.316589 \n", + "14894 99779.477327 -188694.518293 \n", + "14895 99727.474626 -188750.539842 \n", + "\n", + "[14896 rows x 13 columns]" + ] + }, + "execution_count": 105, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "person_relations_df" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Für Company_relation anpassen:" + ] + }, + { + "cell_type": "code", + "execution_count": 111, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
company_from_idcompany_to_idname_company_baserelation_typename_company_headfromtocompany_from_xcompany_from_ycompany_to_xcompany_to_y
0522132. Schaper Objekt GmbH & Co. Kiel KGRelationshipRoleEnum.KOMMANDITISTMulti-Center Warenvertriebs GmbHc_5c_221377282.617652-561971.248878-504679.804986357752.607620
132845Alb-Windkraft GmbH & Co. KGRelationshipRoleEnum.KOMMANDITISTEnBW Windkraftprojekte GmbHc_32c_845482919.713773-248481.984921797890.056666-90110.532477
2341903Anneliese Köster GmbH & Co. KGRelationshipRoleEnum.KOMMANDITISTINDUS Holding Aktiengesellschaftc_34c_1903320129.408339485941.395637-454102.586298-798353.948987
374163AURELIUS Equity Opportunities SE & Co. KGaARelationshipRoleEnum.HAFTENDER_GESELLSCHAFTERAURELIUS Management SEc_74c_163-600937.092069499722.504530876253.923745435382.937847
47780Aurelius KGRelationshipRoleEnum.HAFTENDER_GESELLSCHAFTERAurelius Verwaltungs GmbHc_77c_80360724.373288928534.960282-188072.50905841947.269056
....................................
57331373112Zalando BTD 011 SE & Co. KGRelationshipRoleEnum.HAFTENDER_GESELLSCHAFTERZalando SEc_3137c_311295311.43163768673.638058370173.700376215807.388380
57431373103Zalando BTD 011 SE & Co. KGRelationshipRoleEnum.KOMMANDITISTZalando Operations GmbHc_3137c_310395311.43163768673.638058-546981.819278-685375.436793
57531383113zLabels Creation & Sales GmbH & Co. KGRelationshipRoleEnum.HAFTENDER_GESELLSCHAFTERzLabels GmbHc_3138c_3113-252671.683257651663.943407-139886.436337657339.918258
57631453112Zalando Customer Care International SE & Co. KGRelationshipRoleEnum.HAFTENDER_GESELLSCHAFTERZalando SEc_3145c_3112522713.347552-39987.059093370173.700376215807.388380
57731453103Zalando Customer Care International SE & Co. KGRelationshipRoleEnum.KOMMANDITISTZalando Operations GmbHc_3145c_3103522713.347552-39987.059093-546981.819278-685375.436793
\n", + "

578 rows × 11 columns

\n", + "
" + ], + "text/plain": [ + " company_from_id company_to_id \\\n", + "0 5 2213 \n", + "1 32 845 \n", + "2 34 1903 \n", + "3 74 163 \n", + "4 77 80 \n", + ".. ... ... \n", + "573 3137 3112 \n", + "574 3137 3103 \n", + "575 3138 3113 \n", + "576 3145 3112 \n", + "577 3145 3103 \n", + "\n", + " name_company_base \\\n", + "0 2. Schaper Objekt GmbH & Co. Kiel KG \n", + "1 Alb-Windkraft GmbH & Co. KG \n", + "2 Anneliese Köster GmbH & Co. KG \n", + "3 AURELIUS Equity Opportunities SE & Co. KGaA \n", + "4 Aurelius KG \n", + ".. ... \n", + "573 Zalando BTD 011 SE & Co. KG \n", + "574 Zalando BTD 011 SE & Co. KG \n", + "575 zLabels Creation & Sales GmbH & Co. KG \n", + "576 Zalando Customer Care International SE & Co. KG \n", + "577 Zalando Customer Care International SE & Co. KG \n", + "\n", + " relation_type \\\n", + "0 RelationshipRoleEnum.KOMMANDITIST \n", + "1 RelationshipRoleEnum.KOMMANDITIST \n", + "2 RelationshipRoleEnum.KOMMANDITIST \n", + "3 RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER \n", + "4 RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER \n", + ".. ... \n", + "573 RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER \n", + "574 RelationshipRoleEnum.KOMMANDITIST \n", + "575 RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER \n", + "576 RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER \n", + "577 RelationshipRoleEnum.KOMMANDITIST \n", + "\n", + " name_company_head from to company_from_x \\\n", + "0 Multi-Center Warenvertriebs GmbH c_5 c_2213 77282.617652 \n", + "1 EnBW Windkraftprojekte GmbH c_32 c_845 482919.713773 \n", + "2 INDUS Holding Aktiengesellschaft c_34 c_1903 320129.408339 \n", + "3 AURELIUS Management SE c_74 c_163 -600937.092069 \n", + "4 Aurelius Verwaltungs GmbH c_77 c_80 360724.373288 \n", + ".. ... ... ... ... \n", + "573 Zalando SE c_3137 c_3112 95311.431637 \n", + "574 Zalando Operations GmbH c_3137 c_3103 95311.431637 \n", + "575 zLabels GmbH c_3138 c_3113 -252671.683257 \n", + "576 Zalando SE c_3145 c_3112 522713.347552 \n", + "577 Zalando Operations GmbH c_3145 c_3103 522713.347552 \n", + "\n", + " company_from_y company_to_x company_to_y \n", + "0 -561971.248878 -504679.804986 357752.607620 \n", + "1 -248481.984921 797890.056666 -90110.532477 \n", + "2 485941.395637 -454102.586298 -798353.948987 \n", + "3 499722.504530 876253.923745 435382.937847 \n", + "4 928534.960282 -188072.509058 41947.269056 \n", + ".. ... ... ... \n", + "573 68673.638058 370173.700376 215807.388380 \n", + "574 68673.638058 -546981.819278 -685375.436793 \n", + "575 651663.943407 -139886.436337 657339.918258 \n", + "576 -39987.059093 370173.700376 215807.388380 \n", + "577 -39987.059093 -546981.819278 -685375.436793 \n", + "\n", + "[578 rows x 11 columns]" + ] + }, + "execution_count": 111, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df_temp_df: pd.DataFrame = company_df.set_index(\"id\", drop=True)\n", + "company_relations_df[[\"company_from_x\", \"company_from_y\"]] = df_temp_df.loc[company_relations_df[\"company_from_id\"] , [\"x\", \"y\"]].reset_index(drop=True)\n", + "\n", + "\n", + "company_relations_df[[\"company_to_x\", \"company_to_y\"]] = df_temp_df.loc[company_relations_df[\"company_to_id\"] , [\"x\", \"y\"]].reset_index(drop=True)\n", + "company_relations_df" + ] + }, + { + "cell_type": "code", + "execution_count": 110, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
company_from_idcompany_to_idname_company_baserelation_typename_company_headfromtocompany_from_xcompany_from_y
0522132. Schaper Objekt GmbH & Co. Kiel KGRelationshipRoleEnum.KOMMANDITISTMulti-Center Warenvertriebs GmbHc_5c_2213933483.456739-841989.312943
132845Alb-Windkraft GmbH & Co. KGRelationshipRoleEnum.KOMMANDITISTEnBW Windkraftprojekte GmbHc_32c_845933483.456739-841989.312943
2341903Anneliese Köster GmbH & Co. KGRelationshipRoleEnum.KOMMANDITISTINDUS Holding Aktiengesellschaftc_34c_1903-366283.693942-775095.283302
374163AURELIUS Equity Opportunities SE & Co. KGaARelationshipRoleEnum.HAFTENDER_GESELLSCHAFTERAURELIUS Management SEc_74c_163-366283.693942-775095.283302
47780Aurelius KGRelationshipRoleEnum.HAFTENDER_GESELLSCHAFTERAurelius Verwaltungs GmbHc_77c_80-366283.693942-775095.283302
\n", + "
" + ], + "text/plain": [ + " company_from_id company_to_id \\\n", + "0 5 2213 \n", + "1 32 845 \n", + "2 34 1903 \n", + "3 74 163 \n", + "4 77 80 \n", + "\n", + " name_company_base \\\n", + "0 2. Schaper Objekt GmbH & Co. Kiel KG \n", + "1 Alb-Windkraft GmbH & Co. KG \n", + "2 Anneliese Köster GmbH & Co. KG \n", + "3 AURELIUS Equity Opportunities SE & Co. KGaA \n", + "4 Aurelius KG \n", + "\n", + " relation_type \\\n", + "0 RelationshipRoleEnum.KOMMANDITIST \n", + "1 RelationshipRoleEnum.KOMMANDITIST \n", + "2 RelationshipRoleEnum.KOMMANDITIST \n", + "3 RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER \n", + "4 RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER \n", + "\n", + " name_company_head from to company_from_x \\\n", + "0 Multi-Center Warenvertriebs GmbH c_5 c_2213 933483.456739 \n", + "1 EnBW Windkraftprojekte GmbH c_32 c_845 933483.456739 \n", + "2 INDUS Holding Aktiengesellschaft c_34 c_1903 -366283.693942 \n", + "3 AURELIUS Management SE c_74 c_163 -366283.693942 \n", + "4 Aurelius Verwaltungs GmbH c_77 c_80 -366283.693942 \n", + "\n", + " company_from_y \n", + "0 -841989.312943 \n", + "1 -841989.312943 \n", + "2 -775095.283302 \n", + "3 -775095.283302 \n", + "4 -775095.283302 " + ] + }, + "execution_count": 110, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "company_relations_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 119, + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "hovertext": [ + "0 10 24 Telefondienste GmbH", + "1. Staiger Grundstücksverwaltung GmbH & Co. KG", + "1 A Autenrieth Kunststofftechnik GmbH & Co. KG", + "01050.com GmbH", + "2. Schaper Objekt GmbH & Co. Kiel KG", + "AASP Filmproduktionsgesellschaft mbH & Co. Leonie KG", + "AgroMyc-Merck GmbH", + "August Schäffler Verwaltungs GmbH", + "AURELIUS Advisory AG", + "AURELIUS Development Fourty-One GmbH", + "AURELIUS Development Thirty-Four GmbH", + "Aurelius Immo GmbH", + "Aurelius Ulmenhof GmbH", + "1&1 De-Mail GmbH", + "AURELIUS Development Fifteen GmbH", + "1&1 Mail & Media Applications SE", + "1&1 Telecommunication SE", + "1&1 Telecom Service Montabaur GmbH", + "A 1 Marketing, Kommunikation und neue Medien GmbH", + "Admenta Deutschland GmbH", + "AKF Bau UG (haftungsbeschränkt)", + "Albert Henkel Verwaltungs-GmbH", + "Ampero GmbH", + "ATESTEO Beteiligungs GmbH", + "Auda EnBW MA Initiatoren GmbH & Co. KG", + "AURELIUS Development Eleven GmbH", + "2Gramm GmbH", + "AURELIUS Development Thirty-Two GmbH", + "Aurelius Invest UG (haftungsbeschränkt)", + "AEMtec GmbH", + "AIB Verwaltungs GmbH", + "AK-ON Haustechnik e.K. Inh. Musa Akkaya", + "Alb-Windkraft GmbH & Co. KG", + "AL GRAMM GmbH", + "Anneliese Köster GmbH & Co. KG", + "ARKON Grundbesitzverwaltung GmbH", + "Aurelius Holding UG (haftungsbeschränkt)", + "AURELIUS Investment Advisory AG", + "1&1 Mail & Media Development & Technology GmbH", + "1&1 Telecom Holding GmbH", + "1. Guss Maulburg GmbH", + "ABG Apotheken-Beratungsgesellschaft mbH", + "adidas Beteiligungsgesellschaft mbH", + "adidas CDC Immobilieninvest GmbH", + "bayer Feinwerk GmbH & Co. KG", + "Amber Zweite VV GmbH", + "AREF Solar Germany II GmbH", + "AROTEC Automation und Robotik GmbH", + "ASSET Immobilienbeteiligungen GmbH", + "Aurelius Cotta - Konrad Pika Trippel Partnerschaft von Rechtsanwälten mbB", + "Aurelius Dienstleistungs eG", + "AURELIUS Gamma Invest GmbH", + "Aurelius Horizon UG (haftungsbeschränkt)", + "AURELIUS Transaktionsberatungs AG", + "1. Freiburger Solarfonds Beteiligungs-KG", + "1&1 Energy GmbH", + "1 A Blumen Griesbaum, Inh. Philipp Zähringer e.K.", + "adidas Insurance & Risk Consultants GmbH", + "AURELIUS Development Fourty-Five DS GmbH", + "ahg Autohandelsgesellschaft mbH", + "Airport Assekuranz Vermittlungs-GmbH", + "AKG Automobile GmbH", + "ALTBERG GmbH", + "ASS Maschinenbau GmbH", + "AURELIUS Development Six GmbH", + "AURELIUS Services Holding GmbH", + "AURELIUS WK Eleven GmbH", + "ACONITA Grundstücks-Vermietungsgesellschaft mbH & Co. Objekt Niederrad KG", + "Albert Schäffler Elektromeister GmbH", + "Amprio GmbH", + "audio.digital NRW GmbH", + "AURELIUS APARTMENTS UG (haftungsbeschränkt)", + "AURELIUS Development Fourty-Seven GmbH", + "Fielmann AG & Co. Harburg Sand OHG", + "AURELIUS Development Sixteen DS GmbH", + "AURELIUS Development Twelve GmbH", + "AURELIUS Epsilon International GmbH", + "AURELIUS Equity Opportunities SE & Co. KGaA", + "Aurelius Immobiliengesellschaft Am Fanny Mendelssohn Platz GmbH & Co. KG", + "AURELIUS IV GER AcquiCo Three GmbH", + "Aurelius KG", + "Aurelius Mittelstandskapital GmbH", + "AURELIUS Real Estate Investments GmbH", + "Aurelius Verwaltungs GmbH", + "AURELIUS WK Fifteen GmbH", + "99 gramm Management GmbH", + "APHS Ambulanter Pflegedienst Hella Schnepel GmbH", + "Aragon 16. VV GmbH", + "EnBW Solarpark Rot an der Rot GmbH & Co. KG", + "adidas AG", + "AFS Immobilien GmbH", + "Airbus DS Airborne Solutions GmbH", + "Aragon 14. VV GmbH", + "Aragon 15. VV GmbH", + "ATESTEO Management GmbH", + "AURELIUS Alpha Invest New GmbH", + "AURELIUS Development Twenty-Three GmbH", + "AURELIUS IV GER AcquiCo One GmbH", + "AURELIUS Portfolio Management AG", + "1 st Class Marketing GmbH", + "ALBA Neckar-Alb GmbH & Co. KG", + "Amber Erste VV GmbH", + "Aufzug - Technik Gramm GmbH", + "Airport Cater Service GmbH", + "Bayer. Pilze & Waldfrüchte Uwe Niklas GmbH", + "AURELIUS Alpha International GmbH", + "AURELIUS Development Fourty-Four GmbH", + "AURELIUS Development Fourty GmbH", + "AURELIUS Development Fourty-Two GmbH", + "AURELIUS Development Twenty-Four GmbH", + "AURELIUS Gamma International GmbH", + "Aurelius Immobiliengesellschaft am Udo Lindenberg Platz GmbH", + "Aurelius SW11 GmbH", + "1&1 Mail & Media Service GmbH", + "1&1 Versatel GmbH", + "1. Alfdorfer Solarbetriebs-GmbH & Co. KG", + "7pace GmbH", + "AHG Agrar-Holding GmbH", + "AirIT Services GmbH", + "Bayer Rettungstechnik oHG", + "Albert Scheid Gesellschaft mit beschränkter Haftung", + "Ambulanter Pflegedienst Hella Schnepel e.K.", + "AURELIUS Development Fourty-Eight GmbH", + "AURELIUS Development Ten GmbH", + "AURELIUS Development Twenty-Six GmbH", + "Aurelius GmbH", + "AURELIUS Wachstumskapital SE & Co. KG", + "1&1 Mail & Media GmbH", + "1&1 Logistik GmbH", + "Aachener Bergmannssiedlungsgesellschaft mbH", + "0 10 19 Telefondienste GmbH", + "1&1 Telecom GmbH", + "Fielmann AG & Co. im Centrum OHG", + "21 Gramm Gastro GmbH", + "Athena-Film Hella v. Krottnaurer Filmverleih und Vortragsdienst", + "August Schäffler GmbH & Co KG", + "AURELIUS Development Fourty-Five GmbH", + "AURELIUS Development Fourty-Three GmbH", + "AURELIUS Development Nine GmbH", + "AURELIUS Development Sixteen GmbH", + "Aurelius Digital Ventures UG (haftungsbeschränkt)", + "Aurelius Investment Management Partners GmbH", + "Aurelius Kontor Immobilien GmbH & Co. KG", + "1&1 Telecom Sales GmbH", + "1&1 Versatel Deutschland GmbH", + "ACU PHARMA und CHEMIE GmbH", + "ADAGIO 2. Grundstücksverwaltungsgesellschaft mbH", + "Airplane-Equipment & Services A.E.S. GmbH", + "BASF Niedersächsische Grundbesitz GmbH", + "Amber Dritte VV GmbH", + "Antamira Makler- und Beratungsgesellschaft mbH", + "Apleona PB GmbH", + "AREF Solar Germany I GmbH", + "AURELIUS Active Management Holding GmbH", + "AURELIUS Development Eight GmbH", + "Aurelius-Hof Mainhausen GmbH", + "Aurelius MVZ GmbH", + "Aurelius Witton GmbH", + "1&1 Telecom Service Zweibrücken GmbH", + "1,2,3 fliegenfrei GmbH", + "1-Services GmbH", + "21 GRAMM Music UG (haftungsbeschränkt)", + "AKAD Holding GmbH", + "Allergopharma GmbH & Co. KG", + "BASF Ludwigshafen Grundbesitz SE & Co. KG", + "Alphabet International GmbH", + "amsg gesellschaft für architektur und sige-koordination mbh", + "AURELIUS Beta International GmbH", + "AURELIUS Development Four GmbH", + "AURELIUS Development Seventeen GmbH", + "AURELIUS Management SE", + "Aurelius UG (haftungsbeschränkt)", + "Aurelius Verwaltungsgesellschaft mbH", + "Albert Henkel GmbH &. Co. KG", + "AmpTec GmbH", + "Ancavion GmbH", + "ancotech Holding GmbH & Co. KG", + "Apotheke Neuhausen Inhaber Klaus-Peter Kessler", + "Astra Ambulante Pflege GmbH", + "Aurelius Beteiligungsberatungs AG", + "AURELIUS Development Thirty-Five GmbH", + "\"Auto - Garant\" Fahrzeughandel und -service GmbH", + "AURELIUS Development Thirty-Three GmbH", + "Aurelius Immobilien GmbH", + "1. Weinheimer Bestattungsunternehmen e.G. Vereinigte Weinheimer-Hemsbacher Schreinermeister", + "21 GRAMM Publishing UG (haftungsbeschränkt)", + "Antje Leonie Schindler UG (haftungsbeschränkt)", + "Aufwind BB GmbH & Co. Zweiundzwanzigste Biogas KG", + "AURELIUS Alpha Invest GmbH", + "AURELIUS Development Fourty-Six GmbH", + "AURELIUS Development Three GmbH", + "AURELIUS Development Twenty-Five GmbH", + "AURELIUS Development Twenty-Nine GmbH", + "AURELIUS Epsilon Invest GmbH", + "Aurelius Medical GmbH", + "Autohaus J.B. Lell e.K.", + "Bayer Automaten GmbH", + "Bayer Bauphysik Ingenieurgesellschaft mbH", + "ADAGIO Grundstücksverwaltungsgesellschaft mbH", + "Agheera GmbH", + "Aragon 13. VV GmbH", + "AURELIUS Active Management GmbH", + "AURELIUS Development Seven GmbH", + "AURELIUS Development Thirty-One GmbH", + "AURELIUS Initiative Development GmbH", + "AURELIUS IV GER AcquiCo Four GmbH", + "AURELIUS IV GER AcquiCo Two GmbH", + "AURELIUS MK Two GmbH", + "AURELIUS WK Seventeen GmbH", + "AURELIUS WK Management SE", + "Bayer-Handelsgesellschaft mit beschränkter Haftung", + "Bayer Hausrenovierungen GmbH & Co. KG", + "Bayer Immobilien GmbH", + "Bayer-Moden Inh. Meike Bayer", + "Bayern Bankett Gastronomie GmbH", + "Bayern-Drive Fahrschule GmbH", + "Bayern Express Spedition Ernst Mayer GmbH", + "BASF Catalysts Germany GmbH", + "Auto Grammer e.K.", + "Aurubis Product Sales GmbH", + "AURELIUS WK Nineteen GmbH", + "AZ Electronic Materials GmbH", + "BASF Biorenewable Beteiligungs GmbH & Co. KG", + "BASF Gastronomie GmbH", + "BASF Performance Polymers GmbH", + "Bayer Gesellschaft für Beteiligungen mbH", + "Bayer Grundbesitz GmbH & Co. KG", + "Bayer Montagebau GmbH", + "AURELIUS WK Twenty DS GmbH", + "BASF Coatings GmbH", + "BASF Construction Additives GmbH", + "BASF Leuna GmbH", + "BASF Process Catalysts GmbH", + "Bayer Aktiengesellschaft", + "Bayer J. Automobile international GmbH", + "Bayer Metallbau GmbH", + "Bayern-Fass Rekonditionierungs GmbH", + "BASF Innovationsfonds GmbH", + "BASF Lizenz GmbH", + "BASF Personal Care and Nutrition GmbH", + "BASF Schwarzheide GmbH", + "Bayer Altersversorgung GmbH", + "Bayer Design Service GmbH", + "Bayer Direct Services GmbH", + "Bayer-Dorschner-Bauplanungsgesellschaft mbH & Co. KG", + "Bayern ABS Projektentwicklung GmbH", + "Bayern Card-Services Beteiligungs GmbH & Co. KG", + "Bayern Card-Services Beteiligungsverwaltungs GmbH", + "Bayern Digital Radio GmbH", + "Autohaus Erwin Schmidt GmbH & Co. KG", + "BASF Jobmarkt GmbH", + "BASF Renewable Energy GmbH", + "BauMineral GmbH", + "Bay Anlagenbau GmbH", + "Bayer 04 Immobilien GmbH", + "Bayer-Bräu Inh. Alfred Bayer", + "Bayer CropScience Deutschland GmbH", + "Bayer Design Fritz Bayer GmbH & Co KG", + "Bayer Gesellschaft mit beschränkter Haftung", + "Bayer Glasbau GmbH", + "Bayer Hausrenovierungen Verwaltungs-GmbH", + "Bayern-Film Lieselotte Maurer Nachf. e.K.", + "Aurubis Stolberg GmbH & Co. KG", + "BASF US Verwaltung GmbH", + "BASF watertechnologies Beteiligungs GmbH", + "Bayer CropScience Aktiengesellschaft", + "Bayer Fenster- Türentechnik GmbH", + "Bayern Camper GmbH & Co. KG", + "AURELIUS WK Twenty-Six GmbH", + "AURELIUS WK Twelve GmbH", + "Autohaus Gröbenzell GmbH & Co. Kfz.-Handels KG", + "Autohaus Moderegger GmbH", + "BASF Digital Farming GmbH", + "BASF IP Licensing GmbH", + "BASF Polyurethanes GmbH", + "BASF Venture Capital GmbH", + "BASF Verwaltungstreuhand GmbH", + "Bayer Consulting GmbH", + "Bayer Grabmale Gesellschaft mit beschränkter Haftung", + "Bayer & Hiebl, SHL Sanitär-, Heizungs-, Lüftungsbaugesellschaft m.b.H.", + "Bayer & Kastner GmbH", + "Bayern Card-Services GmbH -S-Finanzgruppe", + "bayern design GmbH", + "\"Bayern\" Immobilien Treuhand Dr. jur. Zembsch GmbH & Co., Anlagen-Verwaltungs-KG", + "Bayer Maschinenbau GmbH & Co. KG", + "AURELIUS WK Twenty-One GmbH", + "Autohaus Karell KG", + "Autohaus Menke GmbH", + "Autohaus Vogl e.K. BMW Vertragshändler", + "Bad Kreuznacher Sonnenpark Betrieb GmbH & Co. KG (KSB)", + "Bayer. Gmain Pflege- und Therapiezentrum GmbH", + "BAYERN CONSULT Unternehmensberatung GmbH", + "Bayern Engineering GmbH & Co. KG", + "Bayern Flug GmbH", + "AURORA Konrad G. Schulz GmbH & Co. KG", + "Autohaus Albert Henkel GmbH", + "BASF Beteiligungsgesellschaft mbH", + "BASF Grenzach GmbH", + "BASF Handels- und Exportgesellschaft mit beschränkter Haftung", + "BASF Lampertheim GmbH", + "BASF SE", + "Bay Beteiligungs GmbH", + "Bayer CropScience Vermögensverwaltungsgesellschaft mbH", + "Bayer GmbH", + "Bayer & Kastner GmbH Personaldienstleistungen", + "Bayern BHKW GmbH", + "Bayern Immobilien Höller/Lechner KG", + "Bayern Camper Verwaltungs GmbH", + "AURELIUS WK Twenty-Four GmbH", + "azeti GmbH", + "BASF Agricultural Solutions GmbH", + "AURELIUS WK Twenty-Three GmbH", + "AURELIUS WK Twenty GmbH", + "Aurubis AG", + "Autohaus Briem GmbH & Co. KG Vertragshändler", + "A. & W. Leoni GmbH", + "BASF Mobilienleasing GmbH & Co. KG", + "BASF Services Europe GmbH", + "BASF VC Beteiligungs- und Managementgesellschaft mbH", + "Bayer 04 Leverkusen Sportförderung gGmbH", + "Bayer Gastronomie GmbH", + "Bayer Gebäudetechnik GmbH & Co.KG", + "Fielmann AG & Co. KG", + "BASF Logistics GmbH", + "BASF Plant Science GmbH", + "BASF Wohnen + Bauen GmbH", + "Bay City Textilhandels GmbH", + "Bayer Aluminiumbau GmbH", + "Bayer-Bräu GmbH.", + "Bayer Gerüstauf- und abbau, Inh. Klaus Thiele e.K.", + "Bayer Geschäftsführungs GmbH", + "Bayer Industrieanlagen e. K.", + "Bayer Karosserie und Lackierzentrum Kassel GmbH", + "Bayern Block GmbH", + "AURELIUS WK Twenty-Five GmbH", + "BASF AGRO TRADEMARKS GmbH", + "BASF Finance Malta GmbH", + "BASF Isocyanate China Investment GmbH", + "BASF Plant Science Company GmbH", + "Bayer 04 physio team GmbH", + "Bayer Beteiligungsverwaltung Goslar GmbH", + "Bayer Betriebs GmbH", + "Bayer Bitterfeld GmbH", + "Bayer Druck Gesellschaft mit beschränkter Haftung", + "Bayer-Gothieu GmbH Transporte", + "BAYERN-CHEMIE Gesellschaft für flugchemische Antriebe mit beschränkter Haftung", + "BAYERN Haus & Wohnbau GmbH", + "BASF 3D Printing Solutions GmbH", + "BASF Deutsche Grundbesitz GmbH", + "BASF Digital Solutions GmbH", + "BASF enviaM Solarpark Schwarzheide GmbH", + "BASF Fuel Cell GmbH", + "BASF Immobilien-Gesellschaft mbH", + "Bautechnik Grammer GmbH", + "Bayer Beteiligungs- und Verwaltungs-GmbH", + "Bayer Gebäudereinigungs GmbH", + "Bayer GmbH & Co KG", + "Bayer Intellectual Property GmbH", + "Aurubis Stolberg Verwaltungs-GmbH", + "AUTO1 Group Operations SE", + "BASF Battery Materials and Recycling GmbH", + "BASF Metabolome Solutions GmbH", + "Bauverein Glückauf GmbH", + "Bayer 04 Leverkusen Fußball GmbH", + "Bayer-Lenzen Stahlbau und angewandte Schweißtechnik GmbH", + "Bayern Auto GmbH", + "AURELIUS WK Nine GmbH", + "AUTO1 Group SE", + "BASF Fuel Cell Pensionsverwaltung GmbH", + "Bayer Bauunternehmen GmbH", + "Bayer Fahrzeugbau Gesellschaft mit beschränkter Haftung & Co. Kommanditgesellschaft", + "Bayer Fleischwaren GmbH", + "Bayer Grundbesitz-Verwaltungsgesellschaft mbH", + "Bayern-Fass Verwaltungsgesellschaft mbH", + "AURELIUS WK Twenty-Two GmbH", + "Aurubis Stolberg Asset GmbH & Co. KG", + "Aurubis Stolberg Asset Verwaltungs-GmbH", + "Autohaus Fulda Krah & Enders GmbH", + "BASF Akquisitions GmbH", + "BASF Battery Technology Investment GmbH & Co. KG", + "BASF Coatings Services GmbH", + "BASF Stationary Energy Storage GmbH", + "BASF Treuhand GmbH & Co. KG", + "BASF Trostberger Grundbesitz GmbH", + "BASF watertechnologies GmbH & Co. KG", + "Bayer GmbH Tor- & Zaunsysteme", + "Bayer kreativ Küchen Innenausbau Inhaber Matthias Bayer e.K.", + "Bayern Boden GmbH", + "Henkel & Söhne Bedachungs GmbH", + "Bayern Connect GmbH", + "Bayern Corporate Services GmbH", + "Bayern Kapital Verwaltungs GmbH", + "Bayern Trucks Holding GmbH", + "Bay GmbH Autohaus Landmaschinen", + "Bayern-Osteuropa OHG Travel Consulting Marketing", + "Bayer + Riedl Personalservice GmbH", + "Bayern Wind GmbH", + "Bayern Tourismus Marketinggesellschaft mit beschränkter Haftung", + "Bayern Treuhand Obermeier & Kilger KG Wirtschaftsprüfungsgesellschaft", + "Bayer Real Estate GmbH", + "Bayer-Unterstützungskasse GmbH", + "Bayer u. Sohn Verwaltungs GmbH", + "bay eurokessel GmbH", + "Bay GmbH Fleischgroß- & einzelhandel", + "Bay Holzwerk GmbH", + "Bay Spedition Verwaltungs-GmbH", + "Bosch BASF Smart Farming GmbH", + "BayWa BGM Verwaltungs GmbH", + "BayWa r.e. AG", + "BayWa r.e. Asset Management GmbH", + "BayWa r.e. Windparkportfolio 1 GmbH & Co. KG", + "Beragon VV GmbH", + "Beteiligungsgesellschaft Hesse Newman Real Estate Nr. 2 mbH", + "BMW INTEC Beteiligungs GmbH", + "Brenntag Germany Holding GmbH", + "Budde Fördertechnik GmbH", + "CMC Consumer Medical Care GmbH", + "Covestro Brunsbüttel Energie GmbH", + "CropEnergies AG", + "Bay-Soft GmbH", + "BayWa Haustechnik GmbH", + "BayWa r.e. Energy Trading GmbH", + "BayWa r.e. Power Solutions GmbH", + "BBG - Berlin-Brandenburger Lager- und Distributionsgesellschaft Biesterfeld Brenntag mbH", + "Berchelmann'sche Apotheke, Inh. Serap Birgül e.K.", + "BIG Immobilien GmbH", + "BMW Finanz Verwaltungs GmbH", + "BMW High Power Charging Beteiligungs GmbH", + "BREAD & butter GmbH & Co. KG", + "Brüderl Projekt Kunigundenstraße GmbH & Co. KG", + "brüderl Projekt Lerchenweg GmbH & Co. KG", + "BSP Berner Schaeffler & Partners GmbH Steuerberatungsgesellschaft", + "CARMAH Verwaltungs GmbH", + "Bayer & Partner Rechtsanwälte Insolvenzverwaltung", + "Bayer & Partner - Rechtsanwälte Steuerberater", + "Bayer Pharma Aktiengesellschaft", + "Bayer. Staatsbad Bad Reichenhall/Bayer. Gmain GmbH", + "Bayer Unternehmensberatung GmbH", + "Bayer US IP GmbH", + "Bayer Vitrotechnic GmbH", + "BayWa r.e. Energy Ventures GmbH", + "BayWa r.e. Solar Energy Systems GmbH", + "BayWa r.e. Wind Verwaltungs GmbH", + "Bay & Wiesenauer Verwaltungs-GmbH", + "Berge & Meer Touristik GmbH", + "BSI ZECH/HOCHTIEF GmbH & Co. oHG", + "Best4Concept GmbH", + "Biomasse Heizkraftwerk Siegerland GmbH & Co. KG", + "Biomet Deutschland GmbH", + "BITIBA GmbH", + "BizLink elocab GmbH", + "Brentwood Europe GmbH", + "CECONOMY AG", + "City Airlines GmbH", + "Covestro Second Real Estate GmbH", + "BayWa Bau Projekt GmbH", + "Bayer u. Sohn Speditions-GmbH", + "Bayer Verwaltungs GmbH", + "BAY-PLAST GmbH", + "BAY Trading GmbH", + "BayWa CS GmbH", + "BayWa Dienstleistung Ost GmbH", + "BayWa r.e. Operation Services GmbH", + "BayWa r.e. Wind 20+ GmbH", + "BeGra Befestigungstechnik Gramm GmbH", + "BE-ON eG", + "Bilfinger Life Science Automation GmbH", + "BMW Vermögensverwaltungs GmbH", + "Bodo on stage e. K.", + "Brüderl Projekt Traunstorfer Straße GmbH & Co. KG", + "Buschjost Magnetventile GmbH & Co. KG", + "CECONOMY Invest GmbH", + "Cognis International GmbH", + "Bay Küchen GmbH & Co. KG", + "BayWa Aktiengesellschaft", + "BayWa ARA 2 GmbH", + "BayWa r.e. Solar Projects Verwaltungs GmbH", + "belboon GmbH", + "Bilfinger Corporate Real Estate Management GmbH", + "BayWa Power Liquids GmbH", + "Bilfinger Engineering & Maintenance GmbH", + "Bayer.Wald Granitwerke K.A. Thiele GmbH & Co. KG", + "BMW i Ventures GmbH", + "BMW Service Moser GmbH & Co. KG", + "Bay GmbH & Co. KG", + "Brenntag Global Services GmbH", + "BAY.RO International Vermittlung von Holz & Brennstoffen e. K.", + "CECONOMY Dreizehnte Gesellschaft für Vermögensverwaltung mbH", + "Cockpitpersonal GmbH", + "Bay Verwaltungs GmbH & Co. KG", + "COMPUTEC GmbH", + "BayWa Bau- & Gartenmärkte GmbH & Co. KG", + "Construction Research & Technology GmbH", + "Covestro Deutschland AG", + "BayWa Energie Dienstleistungs GmbH", + "DHL Global Management GmbH", + "Covestro Procurement Services Verwaltungs GmbH", + "Covestro Thermoplast Composite GmbH", + "BayWa Rent GmbH", + "BENEO GmbH", + "Bilfinger Noell GmbH", + "BMW Car IT GmbH", + "Brenntag Foreign Holding GmbH", + "Brenntag Vermögensmanagement GmbH", + "CECONOMY Retail International GmbH", + "CEE Mainova WP Kirchhain GmbH & Co. KG", + "CLG Lagerhaus GmbH & Co. KG", + "Covestro Intellectual Property GmbH & Co. KG", + "BRENNTAG GmbH", + "Brenntag SE", + "BroadNet Deutschland GmbH", + "BMW M GmbH Gesellschaft für individuelle Automobile", + "BürgerEnergiegenossenschaft EnBW-City eG", + "CM Komplementär 03-020 GmbH & Co. KG", + "Covestro AG", + "Bayer Vermögensverwaltung GmbH", + "Bayern-Park Freizeitparadies GmbH", + "Bayern Treuhand Aktiengesellschaft Wirtschaftsprüfungsgesellschaft", + "BAY Handels-GmbH", + "BayWa r.e. Green Energy Products GmbH", + "Behr-Hella Thermocontrol GmbH", + "BENEO Biodivis Holding GmbH", + "Betek GmbH & Co. KG", + "Bilstein & Siekermann GmbH + Co. KG", + "Birken-Apotheke Marlis Lau e.K.", + "BizLink Robotic Solutions Germany GmbH", + "BlackForxx GmbH", + "BMW Anlagen Verwaltungs GmbH", + "Brüderl Projekt GmbH & Co. KG", + "callmobile GmbH", + "Brenntag European Services GmbH & Co. KG", + "Brüderl Projekt Bad Endorf GmbH & Co. KG", + "Findus Metropol GmbH", + "CECONOMY Retail GmbH", + "CheMondis GmbH", + "Club METROPOLA GmbH", + "Bayern-Park KG", + "Bayern Innovativ - Bayerische Gesellschaft für Innovation und Wissenstransfer mbH", + "Bayer Trauringe GmbH", + "Bayern-Markt Veranstaltungs GmbH", + "Bayer & Raach GmbH", + "Bayer Reitsport GmbH", + "Bayer Textil und Marketing GmbH", + "Bay Logistik GmbH + Co. KG", + "BayWa Finanzservice GmbH", + "BayWa r.e. Windpark Arlena GmbH", + "BCA Beteiligungs GmbH", + "Betreibergesellschaft Verteilzentrum GmbH", + "Bücherstube Leonie Konertz Nachf. Helmut Krüger", + "CECONOMY Data GmbH", + "CECONOMY Digital GmbH", + "CCG DE GmbH", + "CM Komplementär 03-018 GmbH & Co. KG", + "Bayer und Preuss GmbH", + "BayWa EEH GmbH", + "BayWa r.e. Data Services GmbH", + "BF Germany GmbH", + "Bioenergie Harald Gramm Verwaltungs-GmbH", + "Bioenergie Merk UG (haftungsbeschränkt) & Co. KG", + "BMW Bank GmbH", + "BMW Fahrzeugtechnik GmbH", + "Bock GmbH", + "Brenntag Holding GmbH", + "BRENNTAG International Chemicals GmbH", + "Connected Retail GmbH", + "Bayern Tele GmbH Fernsehproduktion Bayerischer Zeitschriftenverlage", + "Bayer-Reisen GmbH", + "Bayer Vital GmbH", + "BAY-GmbH", + "Bay & Söhne Transport GmbH", + "BayWa Greentechpark Development GmbH", + "BayWa r.e. Rotor Service GmbH", + "BELETAGE Liegenschaften GmbH", + "Bellevue Bad Heilbrunn GmbH & Co. KG", + "BENEO-Palatinit GmbH", + "Beton - Bohr- u. Sägedienst Johann Schäffler e.K.", + "BGD Bodengesundheitsdienst Gesellschaft mit beschränkter Haftung", + "BMW Beteiligungs GmbH & Co. KG", + "Brenntag Beteiligungs GmbH", + "BRI - ON - Musik + Verlag Inhaberin Britta Onnen e.K.", + "Ceragon VV GmbH", + "Covestro First Real Estate GmbH", + "Covestro Intellectual Property Verwaltungs GmbH", + "Bayern PV GmbH", + "BAYERN-RALLYE Karussellbetrieb OHG", + "BAY Investment GmbH", + "BayWa Mobility Solutions GmbH", + "BFE Institut für Energie und Umwelt GmbH", + "BizLink Special Cables Germany GmbH", + "Bode Chemie GmbH", + "brüderl Projekt Amalienstraße GmbH & Co. KG", + "BuMa Gebäudeservice GmbH", + "CM Komplementär 03-019 GmbH & Co. KG", + "Bayer Verwaltung UG (haftungsbeschränkt)", + "Bay I GmbH", + "Bay Küchen Verwaltungs GmbH", + "BAY-Verwaltungs GmbH", + "BayWa r.e. Asset Verwaltungs GmbH", + "BayWa r.e. Solardächer II GmbH & Co. KG", + "BayWa r.e. Wind GmbH", + "BMVV Baumaschinen Vermietungs- und Vertriebs GmbH", + "bonnie boutique Hella Wolter", + "CMC Technologies GmbH & Co. KG", + "Cognis IP Management GmbH", + "Com On Network e.K.", + "Covestro Invest GmbH", + "Covestro Resins (Germany) GmbH", + "FOM / LEG Generalübernehmer GmbH & Co. KG", + "Bayer-Uphues GmbH", + "BayWa r.e. IPP Verwaltungs GmbH", + "BayWa r.e. Italia Assets GmbH", + "BayWa r.e. Offshore Wind GmbH", + "Berlinovo Wohnquartier GmbH", + "Bilfinger Corporate Insurance Management GmbH", + "BRAWO SYSTEMS GmbH", + "Brenntag Real Estate GmbH", + "Buchhandlung Winnemuth e.K. Inhaberin: Julia Erlen", + "CLAAS Nordostbayern GmbH & Co. KG", + "Cognis Holding GmbH", + "Covestro Procurement Services GmbH & Co. KG", + "Bayern Tourist GmbH (BTG) Gesellschaft für touristisches und gastgewerbliches Marketing in Bayern", + "Bayern Kapital GmbH", + "Bayer Versicherungsmakler GmbH", + "BAY-Schnellrestaurant GmbH & Co. KG", + "BayWa Obst Beteiligung GmbH", + "BayWa Obst GmbH & Co. KG", + "BayWa Venture GmbH", + "BCD Chemie GmbH", + "Bond-Laminates GmbH", + "BTS 18 Projekt GmbH", + "Chemiepark Bitterfeld-Wolfen GmbH", + "Bayern Treuhand International Auditing & Assurance GmbH Wirtschaftsprüfungsgesellschaft", + "Bayer + Raach Neue Energien GmbH & Co. KG", + "BAY GmbH Wirtschaftsprüfungsgesellschaft Rechtsanwaltsgesellschaft", + "BayWa Agrar Beteiligungs GmbH", + "BayWa Agrarhandel GmbH", + "BayWa Forderungsmanagement GmbH", + "BayWa Global Produce GmbH", + "BayWa Handels-Systeme-Service GmbH", + "BayWa Hochhaus Verwaltung GmbH", + "BayWa Pensionsverwaltung GmbH", + "BayWa r.e. EMEA IPP Holding GmbH", + "BayWa r.e. Rotor Service Vermögensverwaltungs GmbH", + "BayWa r.e. Solar Projects GmbH", + "BEKI-Beteiligungsgesellschaft mit beschränkter Haftung", + "BETOMAX systems GmbH & Co. KG", + "Bilfinger ISP Europe GmbH", + "BizLink Industry Germany GmbH", + "BREMER & LEGUIL Gesellschaft mit beschränkter Haftung", + "BTC Europe GmbH", + "Bucher Merk Process GmbH", + "Chemitra Gesellschaft mit beschränkter Haftung", + "CLAAS Main-Donau GmbH & Co.KG", + "Cronon GmbH", + "DATAGROUP Business Solutions GmbH", + "CropEnergies Beteiligungs GmbH", + "Fielmann AG & Co. Bad Cannstatt OHG", + "Daimler Truck AG", + "Deutsche Post DHL Facility Management Deutschland GmbH", + "CSB Christian Schäffler Bauingenieurdienstleistungs GmbH", + "Deffland & Merck GmbH", + "Delivery Hero Kitchens Holding GmbH", + "Deutsche Post Customer Service Center GmbH", + "Deutsche Post E-POST Solutions GmbH", + "Deutsche Wohnen Berlin 5 GmbH", + "Deutsche Wohnen Berlin I GmbH", + "DHL Express Customer Service GmbH", + "DHL Freight Germany Holding GmbH", + "DHL Global Forwarding Management GmbH", + "DMG MORI Academy GmbH", + "CropEnergies Bioethanol GmbH", + "DEFAG Beteiligungsverwaltungs GmbH I.", + "Delivery Hero Local Verwaltungs GmbH", + "Dessauer Schaltschrank- und Gehäusetechnik GmbH", + "Deutsche Post Adress Beteiligungsgesellschaft mbH", + "Deutsche Post Adress GmbH & Co. KG", + "Deutsche Post Immobilien GmbH", + "Deutsches Rotes Kreuz Leipzig-Land Wohnen und Service gemeinnützige GmbH", + "DeWoBa Deutsche Wohn Bau eG", + "DHL Express Germany GmbH", + "Deutsche Baumanagement GmbH", + "Deutsche Post Expansion GmbH", + "Deutsche Post Pensionsfonds AG", + "Deutsches Rotes Kreuz Rostock Wohnen und Pflege gemeinnützige GmbH", + "Deutsche Wohnen Reisholz GmbH", + "Fielmann AG & Co. Buer OHG", + "Deutsche Wohnen SE", + "Deutsche WohnInvest GmbH", + "DFI Verwaltungs GmbH", + "DHL Data & Analytics GmbH", + "DHL Freight GmbH", + "DHL Global Forwarding GmbH", + "DHL Supply Chain VAS GmbH", + "DMG MORI Bielefeld Hilden GmbH", + "Deutsche Post Fleet GmbH", + "Deutsches Rotes Kreuz Wohnen, Pflege und Service im Muldental GmbH", + "Deutsche Wohnen Management GmbH", + "DHL Sorting Center GmbH", + "DA Jupiter Wohnanlage GmbH", + "DHL Supply Chain Management GmbH", + "Danzas Deutschland Holding GmbH", + "Delivery Hero (Pakistan) UG (haftungsbeschränkt) & Co. KG", + "DHL Hub Leipzig GmbH", + "DEM Merck Holding UG (haftungsbeschränkt)", + "Deutsche Post InHaus Services GmbH", + "Deutsche Post Investments GmbH", + "Deutsche Wohnen Multimedia Netz GmbH", + "DHL Solutions GmbH", + "Daimler Vermögens- und Beteiligungsgesellschaft mbH", + "Cross Match Technologies GmbH", + "Delivery Hero HF Kitchens GmbH", + "DC-Datacenter-Assets GmbH", + "Delivery Hero (Philippines) UG (haftungsbeschränkt) & Co. KG", + "Deutsche Annington Holdings Fünf GmbH", + "Deutsche Post Adress Geschäftsführungs GmbH", + "Deutsche Post Assekuranz Vermittlungs GmbH", + "Deutsche Post DHL Real Estate Deutschland GmbH", + "Deutsche Post IT Services GmbH", + "Deutsche Post Shop Hannover GmbH", + "Deutsche Post Verwaltungs Objekt GmbH", + "DHL FoodLogistics GmbH", + "Deutsches Rotes Kreuz - Kreisverband Stade - Wohn- und Langzeiteinrichtungen gemeinnützige GmbH", + "Deutsches Rotes Kreuz Leben und Wohnen Gütersloh GmbH", + "Delivery Hero (India) UG (haftungsbeschränkt) & Co. KG", + "Diermeier Energie GmbH", + "DEFAG Beteiligungsverwaltungs GmbH III", + "Deutsche Bau- und Siedlungs-Gesellschaft mit beschränkter Haftung", + "Deutsche Post Shop München GmbH", + "DHL Paket GmbH", + "DMG MORI Global Service GmbH", + "Deutsche Post Beteiligungen Holding GmbH", + "Deutsche Post DHL Corporate Real Estate Management GmbH & Co. Objekt Weißenhorn KG", + "Deutsche Wohnen Berlin X GmbH", + "Deutsche Wohnen Berlin XV GmbH", + "Deutsche Wohnen Kundenservice GmbH", + "Deutsche Wohnen Zweite Fondsbeteiligungs GmbH", + "Deutsche Wohn-Inkasso GmbH", + "DHL 2-Mann-Handling GmbH", + "DMG MORI Ultrasonic Lasertec GmbH", + "detailM GmbH", + "Deutsche Post Pensions-Treuhand GmbH & Co. KG", + "Deutsche Wohnen Asset Immobilien GmbH", + "Deutsche Wohnen Care SE", + "Deutsche Wohnen Immobilien Management GmbH", + "DHL Global Event Logistics GmbH", + "DHL International GmbH", + "DMG MORI Vertriebs und Service GmbH", + "Deutsche Post DHL Express Holding GmbH", + "Deutsche Wohnen Berlin 7 GmbH", + "Deutsche Wohnen Berlin III GmbH", + "Deutsche Wohnen Beteiligungsverwaltungs GmbH & Co. KG", + "Deutsche Wohnen Corporate Real Estate GmbH", + "Deutsche Wohnen Direkt Immobilien GmbH", + "Deutsche Wohnen Dresden I GmbH", + "DHL Airways GmbH", + "DHL Consulting GmbH", + "Deutsche Wohnen Fondsbeteiligungs GmbH", + "DHL Automotive GmbH", + "DMG MORI Deutschland GmbH", + "Docter Optics SE", + "Delivery Hero Austria GmbH", + "Delivery Hero Stores Holding GmbH", + "Der neue Stöckach GmbH & Co KG", + "Deutsche Post DHL Beteiligungen GmbH", + "Deutsche Post Grundstücks-Vermietungsgesellschaft beta mbH & Co. Objekt Leipzig KG", + "Deutsche Post Transport GmbH", + "Deutsche Wohnen Berlin XIII GmbH", + "Deutsche Wohnen Berlin XVIII GmbH", + "Deutsche Wohnen Management- und Servicegesellschaft mbH", + "Deutsche Wohnen Technology GmbH", + "Fielmann AG & Co. Dresden Neustadt OHG", + "DHL Home Delivery GmbH", + "DIAGRAMMATIC DESIGNS GmbH", + "DER Reisecenter TUI GmbH", + "Deutsche Post AG", + "Deutsche Post Mobility GmbH", + "Deutsche Post Zahlungsdienste GmbH", + "Deutsche Wohnen Berlin II GmbH", + "Deutsche Wohnen Dresden II GmbH", + "Deutsche Wohn- und Gewerbebau KG", + "Delvag Versicherungs-AG", + "Deffland & Merck Immobilien GmbH", + "DAS GRAMM e.K.", + "Deutsche Post Dialog Solutions GmbH", + "Deutsches Rotes Kreuz Nienburg pflegen & wohnen gGmbH", + "EnBW Offshore 2 GmbH", + "DHL Supply Chain (Leipzig) GmbH", + "DMG MORI AKTIENGESELLSCHAFT", + "DMG MORI Global Marketing GmbH", + "Delivery Hero SE", + "Deutsche ibw Wohn- und Hausbaugesellschaft mbH", + "Deutsche Lufthansa Aktiengesellschaft", + "Deutsche Post Altersvorsorge Sicherung e.V. & Co. Objekt Gronau KG", + "Deutsche Wohnen Construction and Facilities GmbH", + "DHL Supply Chain Operations GmbH", + "DMG MORI Frankfurt GmbH", + "Daimler Truck Vermögens- und Beteiligungsgesellschaft mbH", + "Dematic Holdings GmbH", + "Deutsche Lufthansa Unterstützungswerk Gesellschaft mit beschränkter Haftung", + "Deutsche Post DHL Research and Innovation GmbH", + "Henkel Haus- und Grundstücksverwaltung GmbH & Co. KG", + "Deutsches Rotes Kreuz Wohnen im Alter Zittau GmbH", + "Deutsche Wohnen Berlin 6 GmbH", + "Deutsche Wohnen Berlin XVI GmbH", + "DHL Automotive Offenau GmbH", + "DHL Express Network Management GmbH", + "DMG MORI Finance GmbH", + "deSter GmbH", + "Deutsche Post Direkt GmbH", + "Deutsche Post Shop Essen GmbH", + "Deutsche Wohnen Berlin XII GmbH", + "Deutsche Wohnen Beteiligungen Immobilien GmbH", + "EDITION METRO e.K.", + "Dräger Interservices GmbH", + "Dräger Safety Verwaltungs AG", + "E & A Internationale Explorations- und Produktions-GmbH", + "Dr. O.K. Wack Chemie GmbH", + "E.ON Bioerdgas GmbH", + "Dräger Medical ANSY GmbH", + "Eisenwerk Weilbach Gesellschaft mit beschränkter Haftung", + "Elring Klinger Motortechnik GmbH", + "EnBW France GmbH", + "EnBW Kraftwerk Lippendorf Beteiligungsgesellschaft mbH", + "EnBW Offshore 3 GmbH", + "EnBW Offshore 7 GmbH", + "EnBW Omega 125. Verwaltungsgesellschaft mbH", + "EnBW Omega 132. Verwaltungsgesellschaft mbH", + "EnBW Omega 139. Verwaltungsgesellschaft mbH", + "EnBW Omega 141. Verwaltungsgesellschaft mbH", + "EnBW Omega Neunundachtzigste Verwaltungsgesellschaft mbH", + "EnBW REG Beteiligungsgesellschaft mbH", + "EnBW Solarpark Weesow-Willmersdorf GmbH", + "EnPV GmbH", + "E.ON Business Solutions Deutschland GmbH", + "E.ON Energie 38. Beteiligungs-GmbH", + "Due Leoni GmbH", + "EnBW He Dreiht GmbH & Co. KG", + "ecowo GmbH", + "ElringKlinger AG", + "ElringKlinger Logistic Service GmbH", + "E. Merck KG", + "EnBW Bürgerbeteiligung Wind 1 GmbH", + "EnBW Central and Eastern Europe Holding GmbH", + "EnBW Kommunale Beteiligungen GmbH", + "EnBW Ostwürttemberg DonauRies Aktiengesellschaft", + "EnBW WindInvest Management GmbH", + "EnBW Wind Onshore 1 GmbH", + "E.ON 46. Verwaltungs GmbH", + "E.ON 47. Verwaltungs GmbH", + "E.ON 54. Verwaltungs GmbH", + "E.ON Bayern Verwaltungs AG", + "Henkel + Bast Inh. Sabine Bast e.K.", + "EnBW Real Estate GmbH", + "EnBW Senergi Immobilien GmbH", + "EnBW Solarpark Lindenau GmbH & Co. KG", + "EnBW VersicherungsVermittlung GmbH", + "EnBW Windkraftprojekte GmbH", + "EnBW Übertragungsnetz Immobilien Verwaltungsgesellschaft mbH", + "E.DIS AG", + "Elektro Haustechnik Schäffler GmbH", + "EnBW Biomasse GmbH", + "EnBW Immobilienbeteiligungen GmbH", + "EnBW Netze BW Beteiligungsgesellschaft mbH", + "EnBW Offshore 4 GmbH", + "EnBW Offshore 5 GmbH", + "EnBW Offshore Service GmbH", + "EnBW Omega 124. Verwaltungsgesellschaft mbH", + "EnBW Omega 134. Verwaltungsgesellschaft mbH", + "EnBW Omega 140. Verwaltungsgesellschaft mbH", + "EnBW Smart Meter GmbH", + "EnBW Solarpark Gickelfeld GmbH & Co. KG", + "E.ON 51. Verwaltungs GmbH", + "E.ON 55. Verwaltungs GmbH", + "E.ON Beteiligungsholding GmbH", + "Dr. Schäffler-Expert GmbH", + "Dräger Gebäude und Service GmbH", + "DWRE Halle GmbH", + "E.A. S a r t o r i u s Verwaltungs GmbH", + "EnBW Baltic 1 Verwaltungsgesellschaft mbH", + "EnBW City GmbH & Co. KG", + "EnBW New Ventures GmbH", + "EnBW Omega 145. Verwaltungsgesellschaft mbH", + "EnBW Solarpark Gückelhirn GmbH & Co. KG", + "E.ON 52.Verwaltungs GmbH", + "E.ON Drive Infrastructure Germany GmbH", + "Henkel Besitz GmbH & Co. KG", + "Dräger TGM Gesellschaft mit beschränkter Haftung", + "EnBW Mainfrankenpark GmbH", + "EnBW Omega 123. Verwaltungsgesellschaft mbH", + "EnBW Solarpark Birkenfeld GmbH", + "EnBW Solarpark Gottesgabe GmbH", + "EnBW Solarpark Sonnewalde GmbH & Co. KG", + "EnBW Wind Onshore Portfolio 2019 GmbH", + "Energieversorgung Gaildorf OHG der EnBW Kommunale Beteiligungen GmbH und der NWS REG Beteiligungsgesellschaft mbH", + "ENEXIO Germany GmbH", + "E.ON Energie AG", + "DR. PAUL, HARTMANN & COLL. GmbH Wirtschaftsprüfungsgesellschaft Steuerberatungsgesellschaft", + "EDGITAL GmbH", + "Einhorn-Apotheke Hella Dierking", + "EnBW Grundstücksverwaltung Rheinhafen GmbH", + "DRAWIN Vertriebs-GmbH", + "Drägerwerk Verwaltungs AG", + "Josef Schäffler Elektrizitätswerk GmbH & Co. KG", + "DWRE Leipzig GmbH", + "Dräger Medical International GmbH", + "EBB HochTief UG (haftungsbeschränkt)", + "EBV Gesellschaft mit beschränkter Haftung", + "Eisengießerei Dinklage GmbH", + "Emanuel-Merck-Vermögens-KG", + "EnBW Baltic 2 Management GmbH", + "EnBW International Markets GmbH", + "EnBW Neue Energien GmbH", + "EnBW Onshore Portfolio GmbH", + "EnBW Solar GmbH", + "EnBW Telekommunikation GmbH", + "S. Görig Söhne e.K.", + "EnBW Windpark Buchholz III GmbH", + "energiehoch3 GmbH", + "E.ON 53. Verwaltungs GmbH", + "eltherm production GmbH", + "EnBW Albatros Management GmbH", + "EnBW Renewables International GmbH", + "EnBW Solarpark Kroppen GmbH & Co. KG", + "EnBW Wind Onshore Verwaltungsgesellschaft mbH", + "Energieversorgung Strohgäu Verwaltungs GmbH", + "Engel-Apotheke Dr. Emanuel Merck Inhaberin Renate Koehler e.K.", + "EnPulse Ventures GmbH", + "E.ON 9. Verwaltungs GmbH", + "E.ON Accounting Solutions GmbH", + "E.ON Beteiligungen GmbH", + "EnBW Contracting Service GmbH", + "E.ON Digital Technology GmbH", + "E.ON Drive Infrastructure GmbH", + "EnBW Omega 144. Verwaltungsgesellschaft mbH", + "EnBW Solarpark Lauenhagen GmbH", + "ElringKlinger Kunststofftechnik GmbH", + "EMPA Hochtief Elektroinstallation UG (haftungsbeschränkt)", + "EnBW Baltic Windpark Verwaltungsgesellschaft mbH", + "EnBW Contracting GmbH", + "EnBW Cyber Security GmbH", + "EnBW He Dreiht Management GmbH", + "EnBW Hohe See GmbH & Co. KG", + "EnBW Nachhaltige Quartiere GmbH", + "EnBW Omega 121. Verwaltungsgesellschaft mbH", + "EnBW Vertriebsbeteiligungen GmbH", + "EnBW Übertragungsnetz Immobiliengesellschaft mbH & Co. KG", + "E.ON 57. Verwaltungs GmbH", + "E.ON Business Solutions GmbH", + "Karl Simon GmbH & Co. KG", + "E.ON Drive GmbH", + "EnBW Biogas GmbH", + "EnBW Offshore 6 GmbH", + "EnBW Omega 107. Verwaltungsgesellschaft mbH", + "EnBW Omega 122. Verwaltungsgesellschaft mbH", + "EnBW Rückbauservice GmbH", + "EnBW WindInvest GmbH & Co. KG", + "EnBW Windpark Aalen-Waldhausen GmbH", + "Energy Air GmbH", + "E.ON 11. Verwaltungs GmbH", + "E.ON 58. Verwaltungs GmbH", + "E.ON Energie Deutschland GmbH", + "Dräger Medical Deutschland GmbH", + "Drägerwerk AG & Co. KGaA", + "eltherm GmbH", + "EnBW Hohe See Management GmbH", + "EnBW Omega 133. Verwaltungsgesellschaft mbH", + "EnBW Energie Baden-Württemberg AG", + "EnBW Baltic 1 GmbH & Co. KG", + "EnBW Energy Factory GmbH", + "EnBW mobility+ AG & Co. KG", + "EnBW Betriebs- und Servicegesellschaft mbH", + "EnBW Omega 108. Verwaltungsgesellschaft mbH", + "EnBW Solar Verwaltungsgesellschaft mbH", + "EnBW SunInvest GmbH & Co. KG", + "EnBW Wind Onshore Instandhaltungs GmbH", + "Energie Sachsenheim Verwaltungs-GmbH", + "E.ON 45. Verwaltungs GmbH", + "EnBW Windpark Kleinliebringen GmbH", + "EnergieServicePlus GmbH", + "E.ON Country Hub Germany GmbH", + "Dr. Beckers Central Apotheke Roman Götz e.K.", + "Dräger Holding International GmbH", + "eBoD GmbH", + "Emanuel Merck GmbH", + "EMG EuroMarine Electronics GmbH", + "EnBW Baltic 2 GmbH & Co. KG", + "EnBW Solarpark Tuningen GmbH", + "EnBW Windpark Ober-Ramstadt GmbH", + "Energie Kirchheim unter Teck Verwaltungs-GmbH", + "EEA-Dr. Schäffler, Germany GmbH", + "Dr. Wack Holding GmbH & Co. KG", + "Elektro Grammer GmbH", + "EnBW Albatros GmbH & Co. KG", + "EnBW Bürgerbeteiligung Solar 1 GmbH", + "EnBW Kernkraft GmbH", + "EnBW Offshore 1 GmbH", + "EnBW Omega 126. Verwaltungsgesellschaft mbH", + "EnBW Solarpark Emmingen-Liptingen GmbH & Co. KG", + "EnBW Solarpark Groß Lübbenau GmbH & Co. KG", + "EnBW SunInvest Management GmbH", + "EnBW vernetzt Beteiligungsgesellschaft mbH", + "EnBW Windpark Prötzel GmbH", + "Dräger MSI GmbH", + "DWRE Dresden GmbH", + "DWRE Hennigsdorf GmbH", + "Dörenhagen Windenergieanlagen GmbH & Co. KG", + "E. Merck Beteiligungen KG", + "EnBW Etzel Speicher GmbH", + "EnBW NAG-Beteiligungsgesellschaft mbH", + "EnBW Perspektiven GmbH", + "EnBW Solarpark Göritz GmbH & Co. KG", + "EnBW Solarpark Ingoldingen GmbH", + "EnBW Urbane Infrastruktur GmbH", + "EnBW Windpark Hemme GmbH", + "E.ON Energie Deutschland Holding GmbH", + "E.ON Hydrogen GmbH", + "E.ON Energy Markets GmbH", + "E.ON Inhouse Consulting GmbH", + "E.ON Grund&Boden GmbH & Co. KG", + "E.ON Finanzanlagen GmbH", + "E.ON Energy Projects GmbH", + "E.ON Solarpark 7 GmbH & Co. KG", + "E.ON Solarpark 5 GmbH & Co. KG", + "EVGA Grundstücks- und Gebäudemanagement GmbH & Co. KG", + "Evonik Operations GmbH", + "Fielmann AG & Co. Brackwede KG", + "Fielmann AG & Co Bramfeld KG", + "Fielmann AG & Co. Centrum OHG", + "Fielmann AG & Co. Elberfeld OHG", + "Fielmann AG & Co. Hiltrup OHG", + "Fielmann AG & Co. Ochsenzoll OHG", + "Fielmann AG & Co. Rahlstedt OHG", + "Fielmann AG & Co. Rethelstraße OHG", + "Frank Schäffler e. K.", + "Eurowings Technik GmbH", + "NWS Grundstücksmanagement GmbH & Co. KG", + "freenet Direkt GmbH", + "FS-BF GmbH & Co. KG", + "E.ON Solar GmbH", + "E.ON Solarpark 3 GmbH & Co. KG", + "Eurowings GmbH", + "Evonik Industries AG", + "Fashion Circle GmbH", + "Fielmann AG & Co. City-Arkaden OHG", + "Fielmann AG & Co. Dresden Altstadt KG", + "Fielmann AG & Co. Leipziger Straße OHG", + "Fielmann AG & Co. Mülheim OHG", + "Fielmann AG & Co. Oberkassel OHG", + "fielmann Fielmann GmbH", + "FraSec Services GmbH", + "Freiberger Internationale Beteiligungs GmbH", + "E.ON Gas Mobil GmbH", + "E.ON Energy Solutions GmbH", + "E.ON Insurance Services GmbH", + "Erste WohnServicePlus GmbH", + "Eurafrica Baugesellschaft mit beschränkter Haftung", + "Erste End of Runway Development Leipzig GmbH", + "Evonik Catering Services GmbH", + "Evonik Digital GmbH", + "Evonik Risk and Insurance Services GmbH", + "Fielmann AG & Co", + "Fielmann AG & Co. Eimsbüttel OHG", + "Fielmann AG & Co. Venloer Straße OHG", + "Fielmann AG & Co. Wandsbek OHG", + "Fielmann Finanzservice GmbH", + "FIMMUS Grundstücks-Vermietungsgesellschaft mbH", + "FläktGroup Deutschland GmbH", + "Forster GmbH", + "Fraport Casa Commercial GmbH", + "FRA - Vorfeldkontrolle GmbH", + "freenet Datenkommunikations GmbH", + "freenet Shopping GmbH", + "GALERIA Holding GmbH", + "E.ON Solarpark 11 GmbH & Co. KG", + "E.ON US Holding GmbH", + "Eumatic GmbH Kunststoffverarbeitung", + "Facilma Grundbesitzmanagement und -service GmbH & Co. Besitz KG", + "Fielmann AG & Co. Essen-Steele OHG", + "Fielmann AG & Co. Höchst OHG", + "Fielmann AG & Co. Jahnplatz OHG", + "Fielmann AG & Co. OHG", + "Fielmann AG & Co. oHG Kalk", + "Fielmann AG & Co. Ottensen OHG", + "Fielmann AG & Co. Rheydt oHG:", + "Fortimo GmbH", + "Fraport Casa GmbH", + "freenet Shop GmbH", + "Gamma Unternehmensverwaltungs GmbH", + "E.ON Gruga Objektgesellschaft mbH & Co. KG", + "E.ON Pensionsfonds AG", + "E.ON Solarpark 9 GmbH & Co. KG", + "Epurex Films GmbH & Co. KG", + "EUROGREEN GmbH", + "Eurowings Aviation GmbH", + "Fielmann AG & Co. am Markt KG", + "Fielmann AG & Co. Paunsdorf-Center OHG", + "Fielmann AG & Co-Volksdorf OHG", + "Fontane Apotheke Klaus Kirchmeier e. K.", + "freenet DLS GmbH", + "Freiberger Lebensmittel GmbH", + "GEA Germany GmbH", + "E.ON Solarpark 4 GmbH & Co. KG", + "Evonik Venture Capital GmbH", + "European Air Transport Leipzig GmbH", + "Evonik IP GmbH", + "Ferrostaal Oil & Gas GmbH", + "Fichthorn GmbH & Co. KG", + "Fielmann AG & Co. oHG City-Galerie", + "Fielmann AG & Co. Othmarschen OHG", + "fielmann-optic Fielmann GmbH + Co.", + "Fraport AG Frankfurt Airport Services Worldwide", + "freenet.de GmbH", + "Gartenstadt Hotel Inhaberin Beate Becker e. K.", + "GEA Erste Kapitalbeteiligungen GmbH & Co. KG", + "GEA Group Aktiengesellschaft", + "E.ON Solarpark Gerdshagen GmbH & Co. KG", + "E.ON Vermögensverwaltungs GmbH", + "Eurowings Digital GmbH", + "EWE Go HOCHTIEF Ladepartner GmbH & Co. KG", + "Gate Gourmet Lounge GmbH", + "GEA Bischoff GmbH", + "GEA Diessel GmbH", + "E.ON Grund&Boden Beteiligungs GmbH", + "E.ON One GmbH", + "E.ON Pensionsfonds Holding GmbH", + "E.ON Ruhrgas Portfolio GmbH", + "E.ON Service GmbH", + "E.ON Solarpark 6 GmbH & Co. KG", + "E.ON Stiftung gGmbH", + "Ernst Feyerabend, Pächter: Dieter Grammer", + "Fahrzeugbau GmbH Geisa", + "Faro & Leoni UG (haftungsbeschränkt)", + "Fielmann AG & Co. Barbarossaplatz OHG", + "Fielmann AG & Co. Bonn-Bad Godesberg OHG", + "Fielmann AG & Co. im Alstertal-Einkaufszentrum OHG", + "Fielmann AG & Co. oHG Marktplatz-Center", + "fielmann Farmsen Fielmann GmbH & Co.", + "formart Immobilien GmbH", + "Frankfurter Siedlungsgesellschaft mbH (FSG)", + "Fraport Objekte 162 163 GmbH", + "Fraport Objekt Mönchhof GmbH", + "Fritz Schäffler GmbH & Co.", + "Kernkraftwerk Obrigheim GmbH (KWO)", + "freenet Cityline GmbH", + "freenet Logistik GmbH", + "Frye Ströer Legehennen KG", + "GEA Food Solutions Germany GmbH", + "E.ON Fünfundzwanzigste Verwaltungs GmbH", + "E.ON Grid Solutions GmbH", + "E.ON Iberia Holding GmbH", + "E.ON Group Innovation GmbH", + "E.ON International GmbH", + "E.ON Ruhrgas GPA GmbH", + "E.ON Solarpark 12 GmbH & Co. KG", + "E.ON Verwaltungs GmbH", + "Esso Station Hochhaus Dipl.-Ing. Andreas Hochhaus e.K.", + "Evonik Real Estate GmbH & Co. KG", + "Faragon V V GmbH", + "FarmFacts GmbH", + "FarmFacts Holding GmbH", + "FUCHS Finanzservice GmbH", + "E.ON Energie Dialog GmbH", + "E.ON Finanzholding Beteiligungs-GmbH", + "Evertaste GmbH", + "Evonik Logistics Services GmbH", + "Fielmann AG & Co. Barmen OHG", + "E.ON RAG-Beteiligungsgesellschaft mbH", + "Fielmann AG & Co. im Centrum KG", + "Fielmann AG & Co. oHG im Centrum", + "Fielmann Augenoptik AG & Co. oHG", + "Fraport Real Estate Verwaltungs GmbH", + "FraSec Fraport Security Services GmbH", + "Füger Grundstücks- und Vermögensverwaltungs UG (haftungsbeschränkt) & Co. KG", + "Füger Verwaltungs UG (haftungsbeschränkt)", + "Gasnetzverwaltungsgesellschaft Schorndorf GmbH", + "E.ON Sechzehnte Verwaltungs GmbH", + "E.ON Perspekt GmbH", + "E.ON TowerCo GmbH", + "Exner Wäscherei, Reinigung e.K.", + "Fielmann AG & Co. oHG Lütten Klein", + "Fernwärme-Verbund Saar Gesellschaft mit beschränkter Haftung", + "Fielmann AG & Co. Derendorf OHG", + "Fielmann AG & Co. oHG Ludwigsplatz", + "Fielmann AG & Co. oHG Rhein-Center", + "Fielmann AG & Co. Pferdemarkt OHG", + "Fielmann AG & Co. Zentrum KG", + "Flughafen Frankfurt - Hahn GmbH", + "FMD - Facility Management Dienstleistungen GmbH", + "Fraport Real Estate 162 163 GmbH & Co. KG", + "Fraport Real Estate Mönchhof GmbH & Co. KG", + "FSB Flugplatz Beteiligungsgesellschaft mbH", + "FUCHS LUBRICANTS GERMANY GmbH", + "FUCHS PETROLUB SE", + "Gastauer Reisen GmbH", + "Gate Gourmet Objekt- und Verwaltungsgesellschaft mbH", + "GEA Brewery Systems GmbH", + "E.ON Finanzholding SE & Co. KG", + "E.ON Gruga Geschäftsführungsgesellschaft mbH", + "E.ON impulse GmbH", + "E.ON Portfolio Services GmbH", + "E.ON Real Estate GmbH", + "E.ON Solarpark 10 GmbH & Co. KG", + "E.ON Solarpark 8 GmbH & Co. KG", + "Evonik Functional Solutions GmbH", + "EW Discover GmbH", + "FCS Frankfurt Cargo Services GmbH", + "Fielmann AG & Co. Ebertplatz KG", + "Fielmann AG & Co. Klosterstraße OHG", + "Fielmann AG & Co. Oberhausen OHG", + "Fielmann AG & Co Rathaus OHG", + "Fielmann Augenoptik AG & Co. oHG Harburg-City", + "FIMMUS Grundstücks-Vermietungsgesellschaft mbH & Co. Objekt Lübeck KG", + "Fraport Ausbau Süd GmbH", + "Fraport Beteiligungsgesellschaft mbH", + "Fraport Brasil Holding GmbH", + "Fraport Immobilienservice- u.-entwicklungs GmbH &Co.KG", + "FraSec Flughafensicherheit GmbH", + "Fuels Services GmbH", + "Garben-Apotheke e.K.", + "GEA AWP GmbH", + "E.ON Portfolio Solutions GmbH", + "Fielmann AG & Co Wattenscheid KG", + "Fielmann Augenoptik AG & Co.", + "E.ON SE", + "E.ON Verwaltungs AG Nr. 1", + "Evonik Dahlenburg GmbH", + "Evonik Materials GmbH", + "Fachklinik für Anästhesie und Intensivmedizin Vahrenwald GmbH", + "Field Service Deutschland FSD GmbH", + "Fielmann AG & Co. Bergedorf KG", + "Fielmann AG & Co. oHG Allee-Center", + "Fielmann Aktiengesellschaft", + "FIRST Travel GmbH", + "GEA Farm Technologies GmbH", + "E.ON Solarpark 13 GmbH & Co. KG", + "E.ON Solarpark Diepoldshofen GmbH & Co. KG", + "E.ON Solutions GmbH", + "Eragon VV GmbH", + "Erste Logistik Entwicklungsgesellschaft MG GmbH", + "Evonik Beteiligungs-GmbH", + "EWE HOCHTIEF Ladepartner Verwaltungs-GmbH", + "Fielmann AG & Co. Bornheim KG", + "Fielmann AG & Co. Essen-Rüttenscheid OHG", + "GBS Gesellschaft für Unternehmensbeteiligungen mbH", + "E.ON Gastronomie GmbH", + "Everschop-Apotheke Inhaberin Hella Behm e.Kfr.", + "Fielmann AG & Co. Hamborn OHG", + "Fielmann AG & Co. Roßmarkt OHG", + "Fielmann AG & Co. Westliche Kaiserstraße KG", + "Finanzen im Ganzen Ströer UG (haftungsbeschränkt)", + "freenet Energy GmbH", + "Freiberger Holding GmbH", + "Freiberger Osterweddingen GmbH", + "E.ON Rhein-Ruhr Werke GmbH", + "Ersatzteilversorgung historischer BMW Kraftfahrzeuge GmbH", + "E WIE EINFACH GmbH", + "Fielmann AG & Co. An der Rothenburg OHG", + "Fielmann AG & Co. Billstedt KG", + "Fielmann AG & Co. Chorweiler KG", + "Fielmann AG & Co. oHG Hindenburgstraße", + "Fielmann Augenoptik GmbH & Co. Luxemburg KG", + "fielmann INTER-OPTIK GmbH & Co.", + "FraGround Fraport Ground Handling Professionals GmbH", + "Fraport Facility Services GmbH", + "Fraport Passenger Services GmbH", + "Group Engine Management GmbH", + "Grundstücksgesellschaft DuHa mbH", + "freenet AG", + "GASCADE Gastransport GmbH", + "GELSENWASSER Entwicklungsgesellschaft Dresden mbH", + "GEA Mechanical Equipment GmbH", + "GELSENWASSER Industrieservice Schkopau GmbH", + "GELSENWASSER Polska GmbH", + "Gesellschaft für nukleares Reststoffrecycling mbH", + "GKF Vermögensverwaltungsgesellschaft mbH", + "Goldhand Lebensmittel- und Verbrauchsgüter-Vertriebsgesellschaft mit beschränkter Haftung", + "Grammer Deutschland GmbH", + "GRAMME - REVIT GmbH", + "GVMS Grundstücksverwaltung Service GmbH & Co. KG", + "Wohnen am Lerchenberg GmbH & Co. KG", + "Hamburger Gesellschaft für Flughafenanlagen mit beschränkter Haftung", + "Haus Aurelius Immobilien Verwaltungs GmbH", + "Hella Aglaia Mobile Vision GmbH", + "Hella GmbH", + "HELLA GmbH & Co. KGaA", + "Hella Gutmann Holding GmbH", + "Hella Innenleuchten-Systeme GmbH", + "Hella Krause e.K.", + "Henkel-Bau GmbH", + "Henkel Erste Holding GmbH", + "Henkel oHG, Formular-Verlag Inhaber Marc Henkel e.K.", + "Henkel & Seickert Immobilien GmbH & Co. KG", + "HENKEL SEMAtronic UG (haftungsbeschränkt)", + "henkel´s Verwaltungs GmbH", + "Henkel vorm. Kleinz Heizung & Sanitär e. K.", + "GEA Westfalia Separator Group GmbH", + "GELSENWASSER 14. Beteiligungs-GmbH", + "GEA Group Services GmbH", + "GEA Messo GmbH", + "Henkel & Rühaak Steuerberatungsgesellschaft PartmbB", + "GEA TDS GmbH", + "GELSENWASSER Dresden Gesellschaft mit beschränkter Haftung", + "GeWo Gesellschaft für Wohnungs- und Städtebau mbH", + "GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Mönchengladbach ZV II KG", + "Gladbau Baubetreuungs- und Verwaltungs-Gesellschaft mbH", + "GRAMMER Immobilien Technik GmbH", + "Haus Aurelius - SZB Aachen Immobilien GmbH & Co. KG", + "HBPO GmbH", + "Hella Krauß Inhaber Thomas Krauß", + "Hella Stiftung GmbH", + "Henkel Architektur Planungs- und Projektentwicklungsgesellschaft mbH", + "Henkel Bauelemente GmbH", + "Henkel Beauty & IB Holding GmbH", + "Henkel Beratung und Beteiligungen UG (haftungsbeschränkt)", + "Henkel & Geflitter GmbH", + "Henkel Industrial Services GmbH", + "Henkel Klinikservice GmbH", + "Henkel License GmbH", + "HENKEL + ROTH GmbH", + "Henkel Umform- und Fügetechnik GmbH", + "GELSENWASSER Stadtwerkedienstleistungs-GmbH", + "Gerresheim Festausstattung GmbH", + "Gramm Technik GmbH", + "Gramm Verwaltung GmbH", + "Hapag-Lloyd Schiffsvermietungsgesellschaft mbH", + "Heinrich Schäfermeyer GmbH", + "Heizkraftwerk Stuttgart GmbH", + "Hella Geschäftsführungsgesellschaft mbH", + "Hella Gutmann Anlagenvermietung GmbH", + "Henkel Dental - Labor Inh. Barbara Henkel e.K.", + "Henkel Entsorgung GmbH", + "Henkel Gesellschaft mit beschränkter Haftung", + "Henkel Industrieconsulting UG (haftungsbeschränkt)", + "Henkel IP Management and IC Services GmbH", + "Henkel & Scheel Klinkerbau GmbH", + "GELSENWASSER 6. Beteiligungs-GmbH", + "LANXESS Deutschland GmbH", + "Gemeindewerke Brühl Verwaltungs-GmbH", + "Going On !!! Mediaservices Inh. Mirko Heintz e.K.", + "Grammers S UG (haftungsbeschränkt)", + "Guano-Werke GmbH & Co. KG", + "Henkel Parts GmbH", + "Henkel Vermögensverwaltungs GmbH", + "Henkel Wasch- und Reinigungsmittel GmbH", + "GELSENWASSER 11. Beteiligungs-GmbH", + "GELSENWASSER Service GmbH", + "GGR Wohnparks Kastanienallee GmbH", + "Gramm.Architektur GmbH", + "GRAMMER Aktiengesellschaft", + "GRAMME-REVIT INTERNATIONAL GmbH", + "GRAMMER Interior Components GmbH", + "Gramm Fertigungstechnik GmbH", + "Gramm Profiltechnik GmbH", + "GSW Corona GmbH", + "hairdesign by Hella Ballin GmbH", + "Hapag-Lloyd Aktiengesellschaft", + "Hapag-Lloyd Grundstücksholding GmbH", + "HASA GmbH", + "Hella Richert Vermögensverwaltungs-GmbH", + "Hella & Tom Media GmbH", + "Helmut Rübsamen GmbH & Co. KG, Metalldrückerei-Umformtechnik", + "Henkel Assekuranz Makler UG (haftungsbeschränkt)", + "Henkel GmbH Formular-Verlag", + "Henkel Investment GmbH", + "Henkel Management AG", + "Henkel Steuerberatungsgesellschaft mbH", + "Henkel-Versand Karl-Heinz Henkel e.K.", + "GEA Refrigeration Germany GmbH", + "GELSENWASSER 13. Beteiligungs-GmbH", + "GELSENWASSER 9. Beteiligungs-GmbH", + "GELSENWASSER Energienetze 9. Beteiligungsgesellschaft mbH", + "GELSENWASSER Magdeburg GmbH", + "Geragon VV GmbH", + "Gramm Energie GmbH", + "GRAMOLERA Grundstücksvermietungsgesellschaft Objekt Ticino mbH", + "Hella Priem Beflockungs-GmbH", + "Henkel Bedachung GmbH", + "Henkel Innovation Investments GmbH", + "Gelsenberg GmbH & Co. KG", + "GELSENWASSER Beteiligungen SE", + "GRAMMER Automotive Metall GmbH", + "GRAMMER System GmbH", + "Grundstücksgesellschaft Karower Damm mbH", + "Haus Aurelius SZB Aachen Alten- und Pflegeheim GmbH", + "Heine Resistors GmbH", + "Hella Koch Mineralöltransporte GmbH", + "Henkel-Augenoptik Gesellschaft mit beschränkter Haftung", + "Henkel Familien KG", + "Henkel & Partner mbB Patentanwaltskanzlei", + "Henkel Verwaltungs GmbH", + "Henkel Zehnte Verwaltungsgesellschaft mbH", + "GKF Vermögensverwaltungsgesellschaft mbH & Co. Gewerbegrundstücke KG", + "GEHAG Erste Beteiligungs GmbH", + "GEA Lyophil GmbH", + "GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Saar-Grund KG", + "Gramm medical healthcare GmbH", + "Gramm Oberflächentechnisches Institut Bodensee GmbH", + "Gramm Spenglerei GmbH", + "Hanspeter Grassl KG", + "Hella Corporate Center GmbH", + "Hella Matthiesen Kunststoffspritzguß Inh. Hans Georg Berger e.K.", + "Henkel Beteiligungs- und Verwaltungs-GmbH", + "Henkel Holding KGaA & Co. KG", + "Henkel Holz- und Massivbau GmbH", + "HENKEL med. PERSONAL Düsseldorf GmbH", + "Henkel & Nilles UG (haftungsbeschränkt) & Co. KG", + "Henkel-Tuning GmbH", + "Henkel Vermietungs GmbH", + "GEA Real Estate GmbH", + "Gesellschaft zur Förderung der Lackkunst mbH", + "GEHE Pharma Handel GmbH", + "GEHAG Grundbesitz III GmbH", + "GEHAG Zweite Beteiligungs GmbH", + "GELSENWASSER 12. Beteiligungs-GmbH", + "Georg Schäffler GmbH", + "GGR Wohnparks Süd Leipziger Tor GmbH", + "GRAMMER Immobilien Verwaltung GmbH", + "Grammer Solar Photovoltaik GmbH", + "Gramm Geschäftsführung GmbH", + "Gramm Spiegel+Licht GmbH", + "Gramm Verwaltungs GmbH", + "Kabel Deutschland Holding AG", + "Gravis - Computervertriebsgesellschaft mbH", + "G. Stranzinger Bauprojekt GmbH & Co. KG", + "Hans Joachim Jetschke Industriefahrzeuge (GmbH & Co.) KG", + "HARTMANN Venture GmbH", + "Hella Distribution GmbH", + "Henkel AG & Co. KGaA", + "HENKEL Anlagen- und Prozesstechnik GmbH", + "Henkel Eigentümer Dienste GmbH", + "Henkel Immo GmbH", + "Henkel Verwaltungs UG (haftungsbeschränkt)", + "GEA Wiegand GmbH", + "GELSENWASSER 3. Projektbeteiligungsgesellschaft mbH", + "GELSENWASSER Energienetze GmbH", + "Gemeinnützige Eisenbahn-Wohnungsbau-Gesellschaft mit beschränkter Haftung Wuppertal", + "Gerresheimer Wertheim GmbH", + "GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Hamm KG", + "Grammer Railway Interior GmbH", + "gramm.genau GmbH", + "Gramm, Lins & Partner Patent- und Rechtsanwälte PartGmbB", + "Grünau Illertissen GmbH", + "GSW Grundvermögens- und Vertriebsgesellschaft mbH", + "Hansaport Hafenbetriebsgesellschaft mit beschränkter Haftung", + "Heinzelmann Mineralöle Inhaber Wolfgang Sartorius e.K.", + "HELLA VON SINNEN + CORNELIA SCHEEL Komikzentrum GmbH", + "Hella Werkzeug Technologiezentrum GmbH", + "Henkel Beiz- und Elektropoliertechnik GmbH & Co. KG", + "Henkel Elektro-Installation e.Kfr.", + "Henkel Elfte Verwaltungsgesellschaft mbH", + "Henkel GmbH", + "Henkel KG Generalagentur", + "Henkel Verwaltung GmbH", + "Henkel & Volic GmbH", + "GEA Tuchenhagen GmbH", + "GELSENWASSER-Stiftung gGmbH", + "MEC METRO-ECE Centermanagement GmbH & Co. KG", + "Gemeinnützige Gesellschaft zur Förderung des E.ON Energy Research Center mbH", + "Gramm GmbH & Co. KG", + "GVV Grevener Vermietungs- und Verpachtungs-GmbH & Co. KG", + "Hamburg On Air e.K.", + "Hella Gutmann Solutions GmbH", + "Hella Pagid GmbH", + "HELLA Sonnenschutztechnik GmbH", + "Helmut Gramm Möbelhandel und Verpachtung Inhaberin Marion Gramm e.K.", + "Henkel Beiz- und Elektropoliertechnik Verwaltungsgesellschaft mbH", + "Henkel GmbH + Co.", + "Henkel Italia Holding Verwaltungs GmbH", + "henkel's Höfe GmbH & Co. KG", + "henkel's LDH GmbH & Co. KG.", + "GEHAG Grundbesitz I GmbH", + "Grammer Verwaltungs GmbH", + "Gramm GmbH", + "Gramm Immo Verwaltungs GmbH", + "Grundstücksgesellschaft Pfingstanger Salzgitter Bad KG", + "Guido's Pizzeria Inhaber Giorgio Puma e.K.", + "Hapag-Lloyd Reisebüro Hagen GmbH & Co. KG", + "Hapag-Lloyd Reisebüro Hagen Verwaltungs GmbH", + "hella good e.K. Inh. Hella Kocks", + "Henkel Beteiligungsgesellschaft mbH", + "Henkel GmbH & Co KG", + "Henkel & Jung Transport Recycling GmbH", + "Henkel-Loctite-KID GmbH", + "Henkel & Reiß Elektro- und Kältetechnik GmbH", + "Henkel Rohrverformungstechnik GmbH", + "GELSENWASSER 10. Beteiligungs-GmbH", + "GELSENWASSER AG", + "GELSENWASSER Digital GmbH", + "GRAMMER Solar GmbH", + "GRAMM Holding UG (haftungsbeschränkt)", + "Hella Holding International GmbH", + "Henkel Bodenbeläge GmbH", + "Henkel Elektromaschinenbau GmbH", + "Henkel Gasarmaturen GmbH", + "Henkel & Gerlach Rügen Elektro-Handel GmbH & Co. Kommanditgesellschaft", + "Henkel + Henkel GmbH & Co. KG", + "Henkel Modellbau GmbH", + "Henkel Transporte GmbH", + "Henkel und Gärtner GmbH", + "Henkel-Vision Gesellschaft für Creatives Marketing mbH, Darmstadt", + "KSB Financial Consulting UG (haftungsbeschränkt)", + "GEHE Immobilien Verwaltungs-GmbH", + "Gemeindewerke Schermbeck Verwaltungsgesellschaft mbH", + "Gerlach Zolldienste GmbH", + "GIP Holding GmbH", + "GKF Vermögensverwaltungsgesellschaft mbH & Co. 25. Objekt - KG", + "Hamburg-Amerika Linie G.m.b.H.", + "Hella Kelling", + "Hella Seifen Hildegard Schipporeit Großhandel e.K.", + "Hella Vermögensverwaltungs GmbH & Co. KG", + "Henkel IP & Holding Verwaltungs GmbH", + "henkel-TK GmbH", + "Henkel-Vertrieb, Manfred J. Henkel", + "GEA Group Holding GmbH", + "GELSENWASSER 1. Beteiligungs-GmbH", + "GELSENWASSER Projektgesellschaft mbH", + "Gerhard Bechthold GmbH", + "Grainli GmbH & Co. KG", + "Gramm Immo GmbH & Co. KG", + "Gramm technical GmbH", + "Gram techno GmbH", + "GSR Ventiltechnik GmbH & Co. KG", + "Hapag-Lloyd Damietta GmbH", + "Infineon Technologies Vermögensverwaltungsgesellschaft mbH", + "GWN Gemeinnützige Wohnungsgesellschaft Nordwestdeutschland GmbH", + "Hans Rüssel Buchhandlung Inh. Benedikt Rüssel", + "\"Hebbel-Apotheke\" Hella Behm e.Kfr.", + "Hella Fahrzeugkomponenten GmbH", + "Hellma Gastronomie-Service GmbH", + "Henkel Bedachungen GmbH", + "Henkel Dach und Wand GmbH", + "Henkel & Gerlach GmbH & Co.", + "Henkel + Henkel Verwaltungs GmbH", + "Henkel IP & Holding GmbH", + "henkel's GmbH & Co. KG", + "GEA Refrigeration Technologies GmbH", + "Germanwings GmbH", + "Gerresheim Verwaltungs-GmbH", + "GGR Wohnparks Nord Leipziger Tor GmbH", + "GRAMMER Immobilien Projektentwicklung GmbH", + "LEONI Kabelsysteme GmbH", + "Haragon VV GmbH", + "HARTMANN Beteiligungen GmbH", + "Hartmann GmbH", + "HAUFF-TECHNIK GmbH & Co. KG", + "Henkel-Beteiligungs-GmbH", + "Henkel & Gerlach Rügen Elektro-Handel GmbH", + "Henkel Karosseriebau-Fachbetrieb GmbH", + "HOCHTIEF PPP Bundeswehrpartner FWK München GmbH & Co. KG", + "imeco GmbH & Co. KG", + "Immobilienverwaltung AB GmbH", + "Infineon Technologies Dresden Verwaltungs GmbH", + "Infineon Technologies Holding GmbH", + "jw-marhoffer GmbH", + "K a r l O s t e r GmbH", + "K.E.S. Isoliertechnik GmbH", + "K.L.E.S.C.H. Hausdienste GmbH", + "Krankenhaus Service-Westmecklenburg GmbH", + "KSB Erneuerbare Energien Eins GmbH & Co. KG", + "KSB INTAX v. Bismarck Rechtsanwälte Wirtschaftsprüfer Steuerberater PartGmbB", + "IPETRONIK GmbH & Co. KG", + "KSB International Trading GmbH", + "KSB Projektgesellschaft II UG (haftungsbeschränkt)", + "KSB Stahlbau Berlin GmbH", + "K & S Citystore OHG", + "K & S GmbH Projektmanagement", + "K.S. Immobilien GmbH", + "K.S. Schnitzler GmbH alles fürs Büro", + "K U B U S GmbH Planen & Bauen", + "KUKA Aktiengesellschaft", + "Köster & Co. GmbH", + "LEG Immobilien SE", + "Leibniz-Service GmbH", + "LL Plant Engineering AG", + "HOCHTIEF Engineering GmbH", + "HOCHTIEF Insurance Broking and Risk Management Solutions GmbH", + "HOCHTIEF Offshore Development Fünf GmbH", + "HOCHTIEF Solutions 3. Beteiligungs GmbH", + "Hoch- und Tiefbau Kishk GmbH", + "Holz- und Baustoffhandlung Hella Ostheim Inh. Volker Ostheim e. K.", + "IEF - Werner GmbH", + "INDUS Epsilon GmbH & Co. KG", + "Infineon Technologies 2. Vermögensverwaltungsgesellschaft mbH", + "Infineon Technologies Bipolar Verwaltungs GmbH", + "Infineon Technologies Dresden GmbH & Co. KG", + "Infineon Technologies Gamma GmbH", + "internetstores GmbH", + "IONOS Holding SE", + "KOB GmbH", + "KS ATAG Beteiligungsgesellschaft m.b.H.", + "KSB Erneuerbare Energien Drei GmbH & Co. KG", + "KSB Haus GmbH", + "KSB - Menü GmbH", + "KSB Solarfeld Tellig Zwei GmbH & Co. KG", + "KSB Wohnbau GmbH & Co. KG", + "K&S Mechatronik GmbH", + "K.S.R. Euro Handel & Logistik, Nachf. Octavio da Conceicao Ribeiro e.K.", + "K + S Stahl- & Behälterbau GmbH", + "K & S - Systemhaus GmbH", + "K+S Versicherungsvermittlungs GmbH", + "Kuka Bau GmbH", + "KUKA Deutschland GmbH", + "IONOS Service GmbH", + "Karagon VV GmbH", + "Kernkraftwerke Isar Verwaltungs GmbH", + "KUKA Unterstützungskasse GmbH", + "Lackwerkstatt Eschweiler KSB GmbH", + "LANXESS Trademark GmbH & Co. KG", + "LEG Rheinland Köln GmbH", + "Lesezirkel Aus Aller Welt Telse Moeller e.K.", + "LODUR Energieanlagen GmbH", + "Lufthansa Asset Management Leasing GmbH", + "HOCHTIEF Labore Kassel GmbH", + "HOCHTIEF PPP 1. Holding GmbH & Co. KG", + "HOCHTIEF PPP 1. Holding Verwaltungsgesellschaft mbH", + "HOCHTIEF PP Südosthessen Vermietungs GmbH", + "HY Beteiligungs GmbH", + "IAB Ionenaustauscher GmbH Bitterfeld", + "Infineon Technologies Mantel 29 GmbH", + "K & S Personalleasing GmbH", + "K H S Autoteile GmbH", + "Kino im Schloßhof GmbH", + "K. Meyer R.M.S. GmbH", + "K.M.S. Karin Schilling", + "Knorr-Bremse Systeme für Schienenfahrzeuge Ibero Holding GmbH", + "KOB Medical Devices (Deutschland) GmbH", + "Kramer-Werke GmbH", + "KSB Holding GmbH", + "KSB Immobilien GmbH & Co. KG", + "KSB Kies- und Sandwerke Boddin GmbH", + "KS Grundstücksverwaltung GmbH & Co. KG", + "K & S Hagedorn GmbH", + "K. & S. Handels-GmbH", + "K+S Hotel GmbH", + "K & S New Fustex GmbH", + "K.S. Verblend GmbH", + "K & S Zahntechnik GmbH", + "K und S Gerüstbaugesellschaft mbH", + "K u. S Autohandel GmbH", + "LEG Niedersachsen Süd GmbH", + "Linde Material Handling Rental Services GmbH", + "HOCHTIEF Offshore Crewing GmbH", + "Peiseler GmbH & Co. KG", + "HOCHTIEF PPP Operations GmbH", + "HOCHTIEF PPP Schulpartner Braunschweig GmbH", + "HOCHTIEF PP Südosthessen Bewirtschaftungs GmbH", + "HUGO BOSS Internationale Beteiligungs-GmbH", + "Hüttensand Salzgitter Verwaltungs GmbH", + "IHO Management GmbH", + "IHO Verwaltungs GmbH", + "Infineon Technologies Campeon Verwaltungsgesellschaft mbH", + "j-fiber GmbH", + "K.C.S Brandschutz GmbH", + "Knorr-Bremse Aktiengesellschaft", + "K O M O S, Ing. Ernst August Müller, VDI, Maschinenkonstruktionen - Vermessungstechnik", + "K+S Aktiengesellschaft", + "K & S Bau GmbH", + "KSB Beteiligungsgesellschaft mbH", + "Optik Schäffler Walter Schäffler", + "KSB Grundbesitz GmbH", + "KSB Wind GmbH & Co. KG", + "K & S Gesellschaft für Informatik mbH", + "K+S GmbH Modell- und Formenbau", + "KUKA Industries GmbH & Co. KG", + "KUKA Real Estate Management GmbH", + "Kurt Tweesmann GmbH", + "LANXESS Performance Materials GmbH", + "LEG Wohnen NRW GmbH", + "Leoni June Consulting UG (haftungsbeschränkt)", + "LSG South America GmbH", + "Hitex GmbH", + "HOCHTIEF BePo Hessen Bewirtschaftung GmbH", + "HOCHTIEF Offshore Development Solutions GmbH", + "Hornbach Baustoff Union GmbH", + "Horst Henkel, Metallwaren, Suhl-Mäbendorf e.K.", + "Immobilien-Vermietungsgesellschaft von Quistorp GmbH & Co. Objekt Altlandsberg KG", + "Infineon Technologies Semiconductor GmbH", + "Infrastrukturgesellschaft Plochingen Verwaltungs GmbH", + "Jannis Beteiligungsgesellschaft mbH", + "Johann Grammer", + "j-plasma GmbH", + "K + S Studios GmbH", + "JS Financial Services GmbH", + "Kaufhof Köln Hohe Straße GmbH", + "K e i s e r Gesellschaft mit beschränkter Haftung", + "Kiepe Electric GmbH", + "Kneipp Werbe-Agentur u. Vertriebs-GmbH", + "KSB Energie GmbH", + "KSB INTAX Datenschutz GmbH", + "KSB INTAX Projekt GmbH", + "KSB Kita Sodenmatt Bremen GmbH", + "KS Grundstücksverwaltung Beteiligungs-GmbH", + "K.S. Logistic Verwaltungs GmbH", + "KuKa Export-Import GmbH", + "LANXESS Middle East GmbH", + "LEG Neunte Grundstücksverwaltungs GmbH", + "LEONI Cable Assemblies GmbH", + "Leonie Kesseler Vermögensverwaltungs- GmbH & Co. KG", + "Leoni GmbH & Co. KG", + "Linde Material Handling GmbH", + "LSY GmbH", + "H. Heitz Furnierkantenwerk GmbH & Co. KG", + "HOCHTIEF Labore Kassel Bewirtschaftungs GmbH", + "HOCHTIEF PPP Schulpartner Frankfurt am Main Verwaltungs GmbH", + "Hospitality Digital GmbH", + "Infineon Technologies Memory Solutions Germany GmbH", + "Johann Schäffler, Inh. Roland Schäffler e.K.", + "KION GROUP AG", + "Knorr-Bremse SteeringSystems GmbH", + "K+S An-Instituts Verwaltungsgesellschaft mbH", + "KSB Apartments GmbH", + "KSB Architekten + Ingenieure GmbH", + "KSMA Karl-Heinz Sitzler Maschinen- und Anlagenbau GmbH", + "KUKA Bauelemente & Immobilien GmbH", + "K.u.K.-´s Delphin Sport- und Schwimmschulen Betriebsgesellschaft mit beschränkter Haftung", + "K.W.S.-Massivbau & Betreuungsgesellschaft mbH", + "LANXESS Aktiengesellschaft", + "LEONIE DMS DVB GmbH", + "Leonie Isabel Appels Beteiligungs GmbH", + "Leonie Lackmann-Wißkirchen GmbH", + "LSG Lufthansa Service Europa/Afrika GmbH", + "HOCHTIEF Solutions AG", + "HOCHTIEF Solutions Real Estate Beteiligungsverwaltungsgesellschaft mbH", + "HOCHTIEF ÖPP Projektgesellschaft mbH", + "HTP Immo GmbH", + "Infineon Technologies Delta GmbH", + "Infineon Technologies Mantel 27 GmbH", + "K+S Verbrauchermarkt GmbH u. Co. KG", + "KUKA Real Estate GmbH & Co. KG", + "Interconnector GmbH", + "ISARIA Objekt Preußenstraße GmbH", + "ITG GmbH Internationale Spedition und Logistik", + "Kelvion Brazed PHE GmbH", + "K.H.S. Leasing und Versicherungsvermittlungs GmbH", + "KION Information Management Services GmbH", + "Knorr-Bremse Beteiligungsgesellschaft mbH", + "KSB Armaturen Verwaltungs- und Beteiligungs-GmbH", + "KSB Automatenaufsteller GmbH", + "KSB Beratungs UG (haftungsbeschränkt)", + "KSB Consulting GmbH", + "KSB Erneuerbare Energien Fünf GmbH & Co. KG", + "K+S Beteiligungs GmbH", + "KSB Klinikberatung GmbH", + "KSB Projektentwicklungs GmbH", + "KSB SE & Co. KGaA", + "K & S Elektroservice Kirch & Stallmann GmbH", + "K.S. Gourmet Partyservice und Catering e.K.", + "KS Large Bore Pistons Germany GmbH", + "K S M Biegetechnik GmbH", + "LANXESS Trademark Management GmbH", + "LBBW Immobilien Kommunalentwicklung GmbH", + "H.J. Merck & Co. GmbH", + "HOCHTIEF Aktiengesellschaft", + "HOCHTIEF Americas GmbH", + "HOCHTIEF Construction Management Middle East GmbH", + "HOCHTIEF ViCon GmbH", + "Hotel Metro oHG - Inhaber: Edith Richter und Frieda Richter", + "hvs Verpflegungssysteme GmbH", + "IDKOM AG", + "IHO Holding GmbH & Co. KG", + "IMD Natural Solutions GmbH", + "IMPARK MAINOVA Hessische Parkhausbetriebe UG (haftungsbeschränkt) & Co. KG", + "Infineon Technologies Mantel 26 AG", + "INNO FRICTION GmbH", + "In&Out Ventures GmbH", + "Iragon VV GmbH", + "MN Münsterland Netzgesellschaft mbH & Co. KG", + "JeNaCell GmbH", + "J. G. Merckens Meß- und Regelsysteme GmbH", + "KION Warehouse Systems GmbH", + "KSB GmbH Klügel Schwinn Beschläge", + "KSB Kabel- & Signalbau GmbH", + "KSB Projekt Gesellschaft III GmbH", + "KSB Wasch- und Reinigungsmittel GmbH", + "K & S Media GmbH", + "K & S Systemboden GmbH", + "LANXESS Organometallics GmbH", + "Laragon VV GmbH", + "Lavendel Apotheke Maren Guthold e.K.", + "Leonie Grimberg Holding GmbH", + "LEONI Kabel GmbH", + "Linde Material Handling Rhein-Ruhr GmbH & Co. KG", + "Litec-LLL GmbH", + "Henkel Zweite Holding GmbH", + "HOCHTIEF PPP Schulpartner Köln Rodenkirchen GmbH & Co. KG", + "HOCHTIEF PPP Verwaltungs GmbH", + "Hubert Schäffler GmbH", + "HUGO BOSS Beteiligungsgesellschaft mbH", + "iLove GmbH", + "IONOS SE", + "Kaufhalle GmbH", + "Kelvion Germany GmbH", + "Kelvion Industriebeteiligungen GmbH", + "Ketziner Beteiligungsgesellschaft mbH", + "KION Financial Services GmbH", + "Kneipp GmbH", + "Knorr-Bremse Investment GmbH", + "Kraftwerk Hattorf GmbH", + "KSB Kreyenbrücker Servicegesellschaft \"BreeWater\" mbH", + "K & S Fassaden Technik GmbH", + "K.S.H. Elektroheizungsservice GmbH.", + "K & S Systeme Tord Steinbock e.K.", + "K.T.S. GmbH", + "KUKA Assembly & Test GmbH", + "KUKA ENTERTAINMENT GmbH", + "Kunststoffbeschichtung Hochberg GmbH", + "LBBW Immobilien Development GmbH", + "LEG Achte Grundstücksverwaltungs GmbH", + "LEG Niedersachsen GmbH", + "LEG West Immobilien GmbH", + "LEONI Kerpen GmbH", + "LeoniSolution UG (haftungsbeschränkt)", + "HINO & TRATON Global Procurement GmbH", + "HOCHTIEF DCX GmbH", + "LEG Wohnungsbau Rheinland GmbH", + "HOCHTIEF Infrastructure GmbH", + "HOCHTIEF PANDION Oettingenstraße GmbH & Co. KG", + "HOCHTIEF PPP Lifecycle 1 GmbH", + "HOCHTIEF PPP Solutions GmbH", + "HOCHTIEF Trade Solutions GmbH", + "HORNGROUP Holding GmbH & Co. KG", + "Hugo Boss Stiftung gGmbH", + "Hörsel-Apotheke Inhaber: Apothekerin Regina Gramm e.Kfr.", + "IDKOM Networks GmbH", + "Interlubes GmbH", + "Jacob Bek Gesellschaft mit beschränkter Haftung", + "K a r l B o s c h", + "Kelvion PHE GmbH", + "Leoni31 GmbH", + "K & S EDV-Consulting GmbH", + "K.I.S. Kronauer Industrieschilder GmbH", + "K.L.E.S.S. Häusliche Alten- und Krankenpflege GmbH", + "KMS Verwaltungsgesellschaft mbH", + "KOCHWERK Catering GmbH", + "K P S Konstruktions- & Planungs Service GmbH", + "KSB Bauträger und Immobilien GmbH", + "KSB European Investment AG", + "KSB Krankentransport Service Berlin GmbH", + "K + S - Blechbearbeitung GmbH", + "KSB Project Invest GmbH", + "KUKA home GmbH", + "Kuka Zimmerei GmbH", + "K ü s t e r m a n n G m b H .", + "Lapp Gesellschaft mit beschränkter Haftung Kabelwerke", + "LEG Objekt Krefeld-Bockum Verwaltung GmbH", + "LEG Siebte Grundstücksverwaltungs GmbH", + "LEONI HighTemp Solutions GmbH", + "LSG Asia GmbH", + "HOCHTIEF Asia Pacific GmbH", + "HOCHTIEF Projektentwicklung GmbH", + "Hotmobil Deutschland GmbH", + "HUGO BOSS AG", + "Ignaz Schäffler e.K.", + "InterMetro Industries B.V. Zweigniederlassung Maisach", + "Kaufhalle GmbH & Co. Objekt Lager Apfelstädt KG", + "K - B - S Busreisen GmbH", + "Kirchner Maschinenbau Inhaber Andreas Gramm e.K.", + "K&K HR-Services GmbH", + "Knorr-Bremse Systeme für Schienenfahrzeuge GmbH", + "Krone Kälte + Klima Vertriebs-GmbH", + "K & S Automobile GmbH", + "K + S Basalyk GmbH", + "KSB Energieinvest GmbH & Co. KG", + "KSB INTAX TREUHAND GmbH Wirtschaftsprüfungsgesellschaft Steuerberatungsgesellschaft", + "KSB INTAX Versicherungsschadenmanagement GmbH", + "KSB KFZ Service Bochum UG ( haftungsbeschränkt )", + "K & S Blitzschutztechnik GmbH", + "K + S Gesellschaft für Kies und Sand mbH & Co. Kommanditgesellschaft", + "K + S Immobilienmanagement GmbH", + "K + S Kassensysteme GmbH", + "K-S-M Rechtsanwälte Krekels & Partner", + "K & S Service GmbH", + "LBBW Immobilien Management GmbH", + "LEONI AG", + "Lufthansa AirPlus Servicekarten GmbH", + "HOCHTIEF PPP Bundeswehrpartner FWK München Verwaltungs GmbH", + "HOCHTIEF Solarpartner GmbH", + "HORNBACH Holding AG & Co. KGaA", + "HUGO BOSS Dienstleistungs GmbH", + "HUGO BOSS Vermögensverwaltung GmbH & Co. KG", + "IMMO - LADEN GMBH", + "INA-Holding Schaeffler GmbH & Co. KG", + "Infineon Technologies 3. Vermögensverwaltungsgesellschaft mbH", + "Inten GmbH", + "Ionisos GmbH", + "K n a u e r und R ö s c h GmbH Werkzeug- und Maschinenbau", + "KSB Berliner Kanalsanierung GmbH", + "KSB Beteiligungs- und Beratungsgesellschaft mbH", + "KSB DU277 GmbH & Co. KG", + "KSB GmbH & Co. KG", + "KSB Harburg UG (haftungsbeschränkt)", + "KSB-Klinik-Service-Betriebe GmbH", + "KSB Projektgesellschaft I UG (haftungsbeschränkt)", + "KSB Solarprojekte GmbH & Co. KG", + "K. & S. Taxibetrieb GmbH", + "KUKA Systems GmbH", + "Kulturclub Metropol GmbH", + "LEG Fünfte Grundstücksverwaltungs GmbH", + "LEONI Carservice GmbH", + "Leoni Werner UG (haftungsbeschränkt) & Co. KG", + "LR Intralogistik GmbH", + "Ludwig Henkel e.K.", + "Lufthansa Asset Management GmbH", + "HOCHTIEF DN Capital 1 GmbH", + "Hildegard Gramm-Bräuer GmbH & Co. Vermögensverwaltungs KG", + "HOCHTIEF Ladepartner GmbH", + "HUGO BOSS Trade Mark Management GmbH & Co. KG", + "HUGO BOSS Trade Mark Management Verwaltungs-GmbH", + "IDEAL Automotive GmbH", + "INDUS Holding Aktiengesellschaft", + "Infineon Pension Trust Immobilien Holding GmbH", + "INFOSCREEN GmbH", + "ISOCHEM Holding GmbH", + "Jettainer GmbH", + "Josef Sartorius GmbH & Co. KG", + "K. C. S. Eichner Baugesellschaft mbH & Co. KG", + "Kelvion Machine Cooling Systems GmbH", + "Kieback GmbH & Co. KG", + "K.L.A.S. Dienstleistungs GmbH", + "K.M.S. Doruk Computer Systeme OHG", + "Kommanditgesellschaft Steindamm - Grundstücks- und Metro Hotelgesellschaft mit beschränkter Haftung & Co.", + "Kramer-Areal Verwaltungs GmbH", + "KSB GmbH", + "KSB Kontakt Schaltanlagen Bau GmbH", + "KSB Kölner Service und Beratungs GmbH", + "KSB Windfeld Parstein GmbH & Co. KG", + "KSB Windfeld Süderland III GmbH & Co. KG", + "K + S Ingenieurbüro für technische Gebäudeausrüstung GmbH", + "K+S Minerals and Agriculture GmbH", + "Kurt Engel Inh. Leonie Engel e.K.", + "Königlich privilegierte Löwenapotheke e. K. Inh. Hella Behm", + "Leger Immobilien GmbH", + "LEG Projektgesellschaft 2 GmbH & Co. KG", + "Litarion GmbH", + "LMH Immobilien GmbH & Co. KG", + "Hoch-Tief-Landschaftsbau Schöneck GmbH", + "HOCHTIEF PPP Schulpartner Köln P 1 GmbH & Co. KG", + "HOCHTIEF Soziale Infrastruktur Europa GmbH", + "Hüttensand Salzgitter GmbH & Co. KG", + "IHO Beteiligungs GmbH", + "Infineon Technologies AG", + "Infineon Technologies Bipolar GmbH & Co. KG", + "it4logistics GmbH", + "KMS - Kretschmer-Bauplan GmbH", + "KSB Service GmbH", + "KSB Windfeld Brehna Zwei GmbH & Co. KG", + "K&S Verwaltungsgesellschaft mbH", + "K + S Wohnungsbau GmbH", + "Leoni247 UG (haftungsbeschränkt)", + "LEONI Bordnetz-Systeme GmbH", + "l´tur GmbH", + "Henkel Zwölfte Verwaltungsgesellschaft mbH", + "Hesse Newman Immobilienmanagement GmbH", + "HEV Hohenloher Energie Versorgung GmbH", + "HOCHTIEF Bau und Betrieb GmbH", + "HOCHTIEF BePo Hessen GmbH", + "KSB Bau GmbH", + "HOCHTIEF OBK Vermietungsgesellschaft mbH", + "HOCHTIEF PANDION Oettingenstraße Verwaltungs-GmbH", + "HOCHTIEF PPP Schulpartner Köln Rodenkirchen Verwaltungs GmbH", + "HOCHTIEF PPP Transport Westeuropa GmbH", + "HOCHTIEF Solutions Real Estate GmbH", + "hte GmbH the high throughput experimentation company", + "i Leoni GmbH", + "Imtron GmbH", + "Industriewerk Schaeffler INA-Ingenieurdienst-, Gesellschaft mit beschränkter Haftung.", + "IONOS Group SE", + "Jeans On Hans-Jürgen Pape e.K.", + "Kfz-Wirtschaftsgesellschaft der BMW Vertragshändler mbH", + "klarmobil GmbH", + "KSB Abbruch UG (haftungsbeschränkt)", + "KSB Energie AG", + "KSB TransferNET UG (haftungsbeschränkt)", + "KSB Vertriebsgesellschaft mbH & Co. KG", + "KSB Windfeld Ost GmbH & Co. KG", + "K + S Management GmbH", + "KuKa Immobilien GmbH", + "LEG JADE GmbH", + "LEG Management GmbH", + "LEG West VIII. GmbH", + "LEONIE Verwaltungs GmbH", + "LMH Immobilien Holding GmbH & Co.KG", + "HOCHTIEF PPP Schulpartner Frankfurt am Main GmbH & Co. KG", + "inge GmbH", + "Johannes Berg GmbH, Weinkellerei", + "Knorr-Bremse Services GmbH", + "KSB DU277 Verwaltungs GmbH", + "KSB Energie Verwaltungs GmbH", + "Leonie Mergen GmbH", + "MVV Alpha drei GmbH", + "KSB Klingler Schaumbeton GmbH", + "KSB Management SE", + "KSB Massivhaus GmbH", + "KSB Planungsgesellschaft für Architektur und Landschaftsarchitektur mbH", + "KSB Verwaltungs GmbH", + "KS Gleitlager GmbH", + "K + S Handelsgesellschaft für Klebstoffe und Spezialpapiere mbH", + "K & S Industrieservice GmbH", + "K & S KABELVERLEGUNG UND STRASSENBAU BETEILIGUNGS- GESELLSCHAFT mbH", + "KS KOLBENSCHMIDT GmbH", + "K + S Sauer Herrenmoden, Inhaber Markus Sauer e.K.", + "LANXESS Global Business Services GmbH", + "LBBW Immobilien Management Gewerbe GmbH", + "LEG NRW GmbH", + "LEONI Industry Holding GmbH", + "LiftEquip GmbH Elevator Components", + "LSG Lufthansa Service Holding AG", + "Lufthansa Aviation Training Germany GmbH", + "Lufthansa Group Digital Hangar GmbH", + "Lufthansa Group Business Services GmbH", + "Mainova Wind Onshore Verwaltungs GmbH", + "Löwen-Apotheke Leonie Eulzer e.K.", + "Lufthansa CityLine GmbH", + "Lufthansa Technik Aktiengesellschaft", + "Lufthansa Technik Immobilien- und Verwaltungsgesellschaft mbH", + "LWS Plus GmbH", + "Mainova WebHouse Management GmbH", + "Merck 44. Allgemeine Beteiligungs-GmbH", + "Merck Finck Privatbankiers Unterstützungskasse GmbH", + "Mercedes-Benz Mobility Beteiligungsgesellschaft mbH", + "Merck Foundation gGmbH", + "Merck Holding GmbH", + "MERCK Kommanditgesellschaft auf Aktien", + "METRO Asia Investment GmbH", + "Metro Hotel & Villa GmbH", + "METRO LOGISTICS Germany GmbH", + "Lufthansa Seeheim GmbH", + "MAGRA Maile + Grammer GmbH", + "Mainova Erneuerbare Energien Verwaltungs GmbH", + "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Porta-Westfalica KG", + "Mainova Windpark Niederhambach GmbH & Co. KG", + "Medpro-Personal GmbH", + "MAN Marken GmbH", + "MCC Trading Deutschland GmbH", + "Merck 20. Allgemeine Beteiligungs-GmbH", + "MCC Trading International GmbH", + "Merck Export GmbH", + "MEG Marine Electronics Holding GmbH", + "Merck Performance Materials GmbH", + "Metro Hop Technik GmbH", + "Merck 16. Allgemeine Beteiligungs-GmbH", + "METRO Leasing GmbH", + "Merck Performance Materials Holding GmbH", + "MetroMedia UG (haftungsbeschränkt)", + "METRO Dritte Verwaltungs GmbH", + "metronom Eisenbahngesellschaft mbH", + "METRO Markets GmbH", + "Légère Hotel Messe Erfurt Immobilien Verwaltungs GmbH", + "Mainova Erneuerbare Energien GmbH & Co. KG", + "Mainova Windpark Siegbach GmbH & Co. KG", + "MAN GHH Immobilien GmbH", + "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Schwelm KG", + "MAN Grundstücksgesellschaft mbH & Co. Epsilon KG", + "MEDIA BROADCAST GmbH", + "Merck 15. Allgemeine Beteiligungs-GmbH", + "Mercedes-Benz Vermögens- und Beteiligungsgesellschaft mbH", + "Merck 43. Allgemeine Beteiligungs-GmbH", + "Merck 25. Allgemeine Beteiligungs-GmbH", + "Metro Administration GmbH", + "Merck 37. Allgemeine Beteiligungs-GmbH", + "METRO Asset Management Services GmbH", + "Merck 41. Allgemeine Beteiligungs-GmbH", + "METRO CLOUD Provider GmbH", + "Merck Family Foundation gGmbH", + "Metro Grundbesitz- und Beteiligungs GmbH & Co. KG", + "Merck Gernsheim Holding GmbH", + "METRO Insurance Broker GmbH", + "Merck Life Science KGaA", + "METRO-Gastronomie-Gesellschaft mit beschränkter Haftung", + "Lufthansa Job Services Norderstedt GmbH", + "Lufthansa Industry Solutions AS GmbH", + "Lufthansa Commercial Holding Gesellschaft mit beschränkter Haftung", + "Lufthansa Technik Objekt- und Verwaltungsgesellschaft mbH", + "Maragon VV GmbH", + "LuK Unna GmbH & Co. KG", + "Merck Healthcare KGaA", + "Merck Patent Gesellschaft mit beschränkter Haftung", + "Lufthansa Technik AERO Alzey GmbH", + "Mainova Beteiligungsgesellschaft mbH", + "Marien-Apotheke, Inhaberin Martina Unger e.K.", + "Master Builders Solutions Deutschland GmbH", + "McKesson Europe Holdings GmbH & Co. KGaA", + "MDH Secundus GmbH", + "ME digital GmbH", + "Mercedes-Benz AG", + "Merck 42. Allgemeine Beteiligungs-GmbH", + "Merck 49. Allgemeine Beteiligungs-GmbH", + "Merck LS RTU GmbH", + "Merck Real Estate GmbH", + "Merck Schuchardt OHG", + "MetroPolis Grundstücks oHG", + "METRO Achte Verwaltungs GmbH", + "Metro Cash & Carry Grundstücksverwaltungsgesellschaft mbH", + "Mainova Erneuerbare Energien Management GmbH", + "Massivhauspark Kaarst Verwaltung GmbH", + "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Hamburg-Altona KG", + "Merck 26. Allgemeine Beteiligungs-GmbH", + "Merck 29. Allgemeine Beteiligungs-GmbH", + "Merck 38. Allgemeine Beteiligungs-GmbH", + "Merck Wohnungs- und Grundstücksverwaltungsgesellschaft mbH", + "METRO Cash & Carry China Holding GmbH", + "Metro Grundbesitz-, Beteiligungs- und Verwaltungs GmbH", + "metrologx GmbH", + "Metro - Oberflächentechnik GmbH", + "Mainova Gemeinschaftswindpark Hohenahr GmbH & Co. KG", + "Mainova PV_Park 1GmbH & Co. KG", + "MATIS Immobilien OHG", + "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt München-Pasing KG", + "Merck 45. Allgemeine Beteiligungs-GmbH", + "Merck Chemicals GmbH", + "METRO Campus Services GmbH", + "METRO Dienstleistungs-Holding GmbH", + "Léonie Corentin GmbH", + "Lufthansa Technik Logistik Services GmbH", + "Lünener Wohnungs-und Siedlungsgesellschaft mit beschränkter Haftung", + "MAN Truck & Bus Deutschland GmbH", + "Media Broadcast TV Services GmbH", + "Merck 12. Allgemeine Beteiligungs-GmbH", + "Merck Financial Trading GmbH", + "Merck Healthcare Holding GmbH", + "Mesutronic Gerätebau GmbH", + "METRO Abbruch & Baumanagement GmbH", + "METRO Advertising GmbH", + "Metrocab Taxi- und Handels-GmbH", + "METRO Erste Erwerbsgesellschaft mbH", + "METRO Neunte Verwaltungs GmbH", + "Metro-Pol - Dienstleistungen GmbH & Co. KG", + "McKesson Europe Services GmbH", + "Media-Direktservice GmbH", + "MEMBERS-ON-LINE e.K.", + "Mainova Windpark Kloppenheim GmbH & Co. KG", + "Maschinenfabrik Berner GmbH & Co. KG", + "merckens development support GmbH", + "Merck Finck, a Quintet Private Bank (Europe) S.A. branch", + "Merck International GmbH", + "Merck Site Management GmbH", + "Merck Vierte Allgemeine Beteiligungsgesellschaft mbH", + "METRO & METRO Schuhe international GmbH", + "Lufthansa Industry Solutions BS GmbH", + "Lufthansa Industry Solutions GmbH & Co. KG", + "Mainova PV_Park 3 GmbH & Co. KG", + "Markus Schäffler Bauunternehmung - Baustoffe e.K.", + "MBS Oldenburger Grundbesitz GmbH", + "Medi Metropole GmbH", + "Menacher u. Schäffler GmbH & Co. KG", + "Merck 21. Allgemeine Beteiligungs-GmbH", + "Merck Financial Services GmbH", + "MAN Brand GmbH & Co. KG", + "METRO Deutschland Consulting GmbH", + "METRO Gastro Equipment Holding GmbH", + "METRO Immobilien Gesellschaft mbH & Co. KG", + "Lufthansa Aviation Training GmbH", + "Mainova ServiceDienste Gesellschaft mbH", + "Mainova Windpark Hohenlohe GmbH & Co. KG", + "MAN Truck & Bus SE", + "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Berlin-Friedrichshain KG", + "MEC METRO-ECE Centermanagement Verwaltungs GmbH", + "Merck 13. Allgemeine Beteiligungs-GmbH", + "Merck Display Trading GmbH", + "Merck Electronics KGaA", + "Merck GmbH", + "Merck Internationale Beteiligungen GmbH", + "Merk UG (haftungsbeschränkt)", + "METRO-BAU UG (haftungsbeschränkt)", + "METRO Financial Services GmbH", + "Lufthansa Industry Solutions Verwaltungs GmbH", + "Magdalena Schäffler GmbH", + "Lufthansa Cargo Aktiengesellschaft", + "Lufthansa Technik Logistik GmbH", + "MA3 Schäffler Haus GmbH & Co. KG", + "Mainova Windpark Kaisten GmbH & Co. KG", + "M. Braun Inertgas-Systeme GmbH", + "Merck 27. Allgemeine Beteiligungs-GmbH", + "Merck Surface Solutions GmbH", + "Merk Verwaltungs UG (haftungsbeschränkt)", + "Metro Administration GmbH & Co. Grundbesitz KG", + "METRO Digital GmbH", + "Metro Großhandelsgesellschaft mbH", + "Metro Models GmbH", + "Lufthansa Process Management GmbH", + "Lufthansa Systems GmbH & Co. KG", + "Menacher u. Schäffler Verwaltungs-GmbH", + "Merck 40. Allgemeine Beteiligungs-GmbH", + "MATINA GmbH", + "med!go-on e.K.", + "METRO AG", + "METRO Hospitality Digital Holding GmbH", + "Merck 24. Allgemeine Beteiligungs-GmbH", + "Merck 28. Allgemeine Beteiligungs-GmbH", + "Merck 39. Allgemeine Beteiligungs-GmbH", + "Merck 47. Allgemeine Beteiligungs-GmbH", + "Merck Healthcare Germany GmbH", + "Merck Life Science Holding GmbH", + "MERK Wohnbau GmbH", + "METRO Cash & Carry International GmbH", + "METRO Deutschland GmbH", + "METRO FSD Holding GmbH", + "METRO Fulfillment GmbH", + "METRO INTERNATIONAL SUPPLY GmbH", + "Mainova Aktiengesellschaft", + "Mainova WebHouse GmbH & Co. KG", + "Mainova Windpark Remlingen GmbH & Co. KG", + "Max Lobenhofer GmbH", + "Merck 46. Allgemeine Beteiligungs-GmbH", + "Merck 48. Allgemeine Beteiligungs-GmbH", + "Merck Consumer Health Holding Germany GmbH", + "Metroer Aluminium Glass Systems GmbH", + "METRO Fünfte Verwaltungs GmbH", + "METRO Groß- und Lebensmitteleinzelhandel Holding GmbH", + "METRO Immobilien Verwaltungs GmbH", + "M. Grammer GmbH & Co. KG", + "Metro-Pol Verwaltungs GmbH", + "Michael Schäffler GmbH", + "metropress presseagentur gesellschaft mit beschränkter haftung", + "MEWESTA Hydraulik GmbH & Co.KG", + "METRO Re AG", + "MIGUA Fugensysteme GmbH", + "Modellbau Henkel Gesellschaft mit beschränkter Haftung", + "MS Motorservice International GmbH", + "Multi-Center Warenvertriebs GmbH", + "MVV Grüne Wärme GmbH", + "Nordex Windpark Beteiligung GmbH", + "NWind Windparkbetriebsgesellschaft Oedelum mbH", + "OBUK Haustürfüllungen GmbH & Co. KG", + "PHOENIX Holdings Verwaltungs GmbH", + "MS Motorservice Deutschland GmbH", + "MVV EnergySolutions GmbH", + "Netzgesellschaft Elz-Neckar Verwaltungs GmbH", + "Nordex Energy SE & Co. KG", + "Nordex Germany GmbH", + "Paul Hartmann & Co. Gesellschaft mit beschränkter Haftung", + "PUMA Blue Sea GmbH", + "Regeneratives Land GmbH", + "Rheinmetall Dermalog SensorTec GmbH", + "MTU Maintenance Berlin-Brandenburg GmbH", + "MWFS Zwischenholding Management GmbH", + "NatürlichSonne Trogen Verwaltungs GmbH", + "Netze Hechingen Verwaltungs GmbH", + "NORDEX Windpark Hochfeld GmbH & Co. KG.", + "nugg.ad GmbH", + "Peter Frey GmbH", + "Petit RUNGIS express GmbH", + "Pierburg GmbH", + "PONTUS Grundstücks-Vermietungsgesellschaft mbH & Co. Objekt BMW München KG", + "Projektentwicklungs-GmbH Friesenheimer Insel", + "Rhein-Main Wohnen GmbH", + "Rheinmetall Eastern Markets GmbH", + "Rheinmetall Immobilien St. Leon-Rot GmbH", + "Rheinmetall Technical Assistance GmbH", + "mg capital gmbh", + "Rhein-Pfalz Wohnen GmbH", + "METRO PROPERTIES Holding GmbH", + "MIP METRO Holding Management GmbH", + "MOLSTANDA Vermietungsgesellschaft mbH", + "MVV Enamic Korbach GmbH", + "MVV Umwelt Ressourcen GmbH", + "MVV Windenergie GmbH", + "NA GrammE E GmbH", + "Neue Apotheke und Apotheke am Rathaus Inhaber Markus Bell e. K.", + "Nisterhammer Maschinenbau GmbH & Co. KG", + "Nordex Beteiligungen GmbH", + "Nordex Forum II GmbH & Co. KG", + "Nordex Forum II Verwaltungs GmbH", + "OTC On-The-Chin e. K.", + "ProTel Gesellschaft für Kommunikation mbH", + "PuMA Pflege- und Management Akademie UG (haftungsbeschränkt)", + "PuMa Verwaltungs GmbH", + "renerco plan consult GmbH", + "METRO Zwölfte Verwaltungs GmbH", + "MVV Alpha fünfzehn GmbH", + "mg Altersversorgung GmbH", + "Minebea Intec Aachen Verwaltungs-GmbH", + "Minebea Intec Bovenden GmbH & Co. KG", + "MIP METRO Group Intellectual Property GmbH & Co. KG", + "MSE Mobile Schlammentwässerungs GmbH", + "Netzeigentumsgesellschaft Rheinstetten Verwaltungs-GmbH", + "Nordex SE", + "OSRAM Licht AG", + "PCI Augsburg GmbH", + "Pellog GmbH", + "Preussag Beteiligungsverwaltungs GmbH IX", + "PRIMA Wohnbauten Privatisierungs-Management GmbH", + "Puma Musikverlag GmbH", + "PUMA.sh GmbH", + "Metro SB-Großmärkte GmbH & Co. Kommanditgesellschaft", + "Pumax UG (haftungsbeschränkt)", + "MobilCom Multimedia GmbH", + "PuMa Zander GmbH & Co. KG", + "MS \"HELLA\" Schiffahrtsgesellschaft mbH & Co. KG", + "REMKO GmbH & Co. KG Klima- und Wärmetechnik", + "Netzgesellschaft Vaihingen Verwaltungs-GmbH", + "Rheinmetall Immobilien Hamburg GmbH", + "NWind GmbH", + "NWS Finanzierung GmbH", + "OSRAM Beteiligungsverwaltung GmbH", + "PUMA Vermögensverwaltungs GmbH", + "Raiffeisen Waren GmbH Hallertau-Jura", + "Rheinmetall Project Solutions GmbH", + "MVV Enamic GmbH", + "MVV Umwelt GmbH", + "Neckarwerke Stuttgart GmbH", + "Netze BW Wasser GmbH", + "Nordex Food Deutschland GmbH", + "Nordex Manufacturing GmbH", + "OSRAM GmbH", + "Pierburg Pump Technology GmbH", + "Plankenstein 8 GmbH & Co. KG", + "PUMA International Trading GmbH", + "Raguse Gesellschaft für medizinische Produkte mbH", + "RCL TUI Cruises German Verwaltungs GmbH", + "Regalit GmbH", + "Reinhard, Grammes & Partner mbB Wirtschaftsprüfer, Steuerberater", + "Retail in Motion GmbH", + "Rheinmetall Immobilien Neckarsulm GmbH", + "Rheinmetall MAN Military Vehicles GmbH", + "METRO PROPERTIES GmbH & Co. KG", + "METRO Wholesale Real Estate GmbH", + "MGL METRO Group Logistics Warehousing Beteiligungs GmbH", + "Minebea Intec Aachen GmbH & Co. KG", + "MSN 1359 GmbH", + "Mönch-Kunststofftechnik Gesellschaft mit beschränkter Haftung", + "Netzgesellschaft Schwetzingen Verwaltungs GmbH", + "Nordex-Glas oHG", + "Nordex Windpark Verwaltung GmbH", + "OSRAM Beteiligungen GmbH", + "PLIXXENT Verwaltungs GmbH", + "Plusnet Infrastruktur GmbH & Co. KG", + "PUMA Europe GmbH", + "PUMA Mostro GmbH", + "PUMA Sprint GmbH", + "RBS wave GmbH", + "Reha - Service Loose GmbH", + "Retail Media Group GmbH", + "Rheinmetall Automotive AG", + "Rheinweg Grundstücksgesellschaft mbH", + "M.O.D. Media On Demand Hans Kleiner e.Kfm.", + "MVV Energie AG", + "MVV Netze GmbH", + "Netze Pforzheim-Region Verwaltungs GmbH", + "MMS Retail International GmbH", + "Nordex Employee Holding GmbH", + "novotegra GmbH", + "OSRAM OLED GmbH", + "Plusnet GmbH", + "Ravensberger Heimstättengesellschaft mit beschränkter Haftung", + "Reisecenter Reinwald e.K.", + "Rhein Lippe Wohnen Gesellschaft mit beschränkter Haftung", + "Rheinmetall Aktiengesellschaft", + "Rheinmetall Aviation Services GmbH", + "Rheinmetall Immobilien Kassel GmbH & Co. KG", + "metropress presseagentur GmbH & Co. KG - Agentur für Kommunikation", + "METRO Retail Real Estate GmbH", + "MTU Aero Engines AG", + "Möbelhaus W. Starke Inh. Hella Lorenz e.K.", + "Norbert Henkel e.K.", + "Nordex Grundstücksverwaltung GmbH", + "On Board Courier Land-Wasser-Luft Volker Rauh e.K.", + "ON Grundstücksverwaltung e.K.", + "OSD SCHÄFER Verwaltungs-GmbH", + "Otto Finanzplus GmbH Versicherungsvermittlung", + "Peiseler Holding GmbH", + "Perlon-Monofil GmbH", + "Privatkinderheim Hella Doll GmbH", + "Progroup Power 1 GmbH", + "puma Architekten Pundt & Mardersteig, Partnerschaftsgesellschaft mbB", + "PUMA GmbH IP Solingen", + "Reisebüro Bönisch GmbH", + "Rheinmetall Immobilien Hamburg Friedensallee GmbH", + "Rheinmetall Maschinenbau GmbH", + "Rheinmetall Technical Publications GmbH", + "Rheinmetall Technology Center GmbH", + "METRO Sechste Verwaltungs GmbH", + "MFI Asset Management GmbH", + "Miles & More GmbH", + "Netzgesellschaft Leinfelden-Echterdingen GmbH", + "NORDEX e.K.", + "Paul Gerd Hartmann Zimmerei, Holzbau und Holzhandel GmbH", + "planetroll GmbH & Co. KG", + "PLIXXENT GmbH & Co. KG", + "Projektgesellschaft Konrad-Adenauer-Ufer Köln GmbH & Co. KG", + "Pu. Ma Kulturbetriebe GmbH", + "Reederei Deymann GmbH & Co. KG TMS Leonie Deymann", + "Rheinmetall Immobilien Hafenmole GmbH", + "Rheinmetall Verwaltungsgesellschaft mbH.", + "Rheinmetall Waffe Munition GmbH", + "Minebea Intec Bovenden Verwaltungs-GmbH", + "METRO Sourcing GmbH", + "MOTEON GmbH", + "Muhrbeck-Apotheke Hella Riebes e.Kfr., Inhaber Claudia Semlow", + "MVV Umwelt Asset GmbH", + "neogramm GmbH & Co. KG", + "Nordex International GmbH", + "Ofa Bamberg GmbH", + "PAB Pumpen- und Armaturen- Beteiligungsgesellschaft mit beschränkter Haftung", + "MVV Alpha zwei GmbH", + "NIGRA Verwaltung GmbH & Co. Objekt Neunkirchen KG", + "NORDEX Handel GmbH", + "PAUL HARTMANN AG", + "Paul Hartmann AG & Co. Logistikzentrum Süd oHG", + "Pro Gramma Informationssysteme GmbH", + "Projekt Aichach S7 GmbH & Co. KG", + "ProVerMa GmbH", + "PROVIS Steuerungstechnik GmbH", + "PUMA SE", + "PUMA Spielautomaten GmbH", + "Rheinmetall Brandt GmbH", + "Rheinmetall Immobilien VEGA GmbH & Co. KG", + "Rheinmetall Landsysteme GmbH", + "METRO PROPERTIES Management GmbH", + "METRO Siebte Verwaltungs GmbH", + "MGC METRO Group Clearing GmbH", + "Minebea Intec GmbH", + "MINI-KIT - Merchandising GmbH", + "MIP METRO Group Intellectual Property Management GmbH", + "MIRA GmbH", + "NWS REG Beteiligungsgesellschaft mbH", + "Photo-Drogerie-Hella Peter Hellendahl Farbengroßhandel Inh. Käthe Hellendahl", + "PumaXX GmbH", + "recucare GmbH", + "recusana GmbH", + "RE.source White Puma GmbH & Co. KG", + "Rheinmetall Berlin Verwaltungsgesellschaft mbH", + "Rheinmetall IT Solutions GmbH", + "Rheinmetall PolyCharge GmbH", + "Rheinmetall Soldier Electronics GmbH", + "metrotek GmbH", + "MGL METRO Group Logistics GmbH", + "METRO Zehnte Verwaltungs GmbH", + "MTU Maintenance Hannover GmbH", + "MNV Münsterland Netz-Verwaltungsgesellschaft mbH", + "MVV Industriepark Gersthofen GmbH", + "Mönnich GmbH", + "MVZ DaVita Salzgitter-Seesen GmbH", + "NetCom BW GmbH", + "N & NF Trading GmbH", + "Netzgesellschaft Besigheim Verwaltungs GmbH", + "Nordex Bau e.K.", + "OSRAM SL GmbH", + "On Point Agency e.K.", + "Portfolio EDL GmbH", + "OnTrack Inh. Thomas Johanterwage e. K.", + "Prinz 5 GmbH", + "Paul Hartmann Spenglerei und Installations GmbH & Co. KG", + "puma.bär GmbH", + "Reha und Rollstuhl Handels GmbH", + "\"PETER G. OHG,\" - Men & Women", + "PROTEXiON e.K.", + "Rheinmetall Protection Systems GmbH", + "Rheinmetall Insurance Services GmbH", + "PUMA Trading GmbH", + "Qimonda Dresden GmbH & Co. oHG", + "RCL TUI Cruises German Holding GmbH & Co. KG", + "r.e Bioenergie Betriebs GmbH & Co. Zehnte Biogas KG", + "Rheinmetall Electronics GmbH", + "Rheinmetall Financial Services GmbH", + "Rheinmetall Immobilien Flensburg GmbH & Co. KG", + "Rheinmetall Immobilien GmbH", + "Rheinmetall Immobilien Neuss GmbH", + "Rheinmetall Industrietechnik GmbH", + "Rheinmetall Invent GmbH", + "METRO Vierte Verwaltungs GmbH", + "MORCAR Grundstücksgesellschaft mbH & Co. oHG", + "MS \"Leonie\" Jens u. Waller GmbH & Co. KG", + "MVV RHE GmbH", + "MWFS Zwischenholding GmbH & Co. KG", + "neogramm Verwaltungsgesellschaft mbH", + "Neunte LXS GmbH", + "OPUS Personaldienstleistungen Gesellschaft mit beschränkter Haftung", + "OSPT IP Pool GmbH", + "Portokali Property Development III SE & Co. KG", + "Puma-Werk Lauterjung & Sohn Beteiligungs-GmbH", + "Puna UG (haftungsbeschränkt)", + "REWE-Markt Ströer OHG", + "seo2b GmbH", + "Rhein-Mosel Wohnen GmbH", + "Rundschau Verlagsgesellschaft mbH", + "RHZ Handwerks-Zentrum GmbH", + "Salzgitter Anlagenbau GmbH", + "Salzgitter Hydroforming GmbH & Co KG", + "Sartorius Aktiengesellschaft", + "Sartorius Stedim Cellca GmbH", + "S.B.D. - Seniorenberatung Deutschland e.K.", + "Schaeffler-Areal 2. Liegenschaften GmbH", + "Schaeffler Invest GmbH", + "Schaeffler Verwaltungsholding Drei GmbH", + "SCHERDEL Wiesauplast Deutschland GmbH & Co. KG", + "SCHERDEL Wiesauplast GmbH & Co. KG", + "Schäffler GmbH, Maler- und Lackierermeisterbetrieb", + "Senioren-Wohnpark Meppen/Nödike Ströer & Gorsler KG", + "Siemens Finance & Leasing GmbH", + "Siemes GmbH & Co. KG", + "Siemens Healthineers Beteiligungen Verwaltungs-GmbH", + "Salzgitter Digital Solutions GmbH", + "Salzgitter Mannesmann Stahlhandel Gesellschaft mit beschränkter Haftung", + "Schaeffler IDAM Beteiligungs GmbH", + "Schaeffler Verwaltungsholding Eins GmbH", + "Schaeffler Verwaltungsholding Vier GmbH", + "Schradenbiogas GmbH & Co. KG", + "s e h b l i c k Augenoptiker-Meister Friedemann Sorg e.K.", + "Siedlung Niederrhein Gesellschaft mit beschränkter Haftung", + "Siemens Healthcare Diagnostics Products GmbH", + "Siemer Jachtservice Hunte-Ems GmbH", + "Siemer Vermögensverwaltung GmbH & Co. KG", + "Richard Henkel GmbH", + "Salzgitter Eurologistik GmbH", + "Sartorius-Herbst Beteiligungen II GmbH", + "Schaeffler-Areal 1. Liegenschaften GmbH", + "Scheffler Management GmbH", + "Schäffler Bau- und Möbelschreinerei GmbH", + "Schäffler und Lüneborg Partnerschaft, Krankengymnast, Physiotherapeut", + "RMW Projekt GmbH", + "RRS - MITCOS Rheinmetall Rohde&Schwarz Military IT and Communications Solutions GmbH", + "Ringeltaube Airport Markt GmbH", + "Rolko Kohlgrüber GmbH", + "Rolls-Royce Motor Cars GmbH", + "SALTIGO GmbH", + "RWE Wind Onshore & PV Deutschland GmbH", + "Salzgitter Automotive Engineering Immobilien Verwaltungsgesellschaft mit beschränkter Haftung", + "Salzgitter Güterverwaltung Gesellschaft mit beschränkter Haftung", + "S.A.M. Stephan Albert Magnetic Products e.K.", + "Sartorius Immobilien UG (haftungsbeschränkt) & Co KG", + "SBB Solar GmbH", + "SCANIA Real Estate Deutschland GmbH", + "Schaeffler Aerospace Germany GmbH & Co. KG", + "Schaeffler Bühl Auslandsholding GmbH", + "Schaeffler Europa Logistik GmbH", + "S. Freiburg e. K. - WS Kreatives Holz, Inh. Wolfgang Scheffer", + "Schaeffler Raytech Verwaltungs GmbH", + "Schaper Grundbesitz-Verwaltungsgesellschaft mbH", + "Schonheim GmbH", + "Siemens Energy Power Control GmbH", + "Siemer Beteiligungsgesellschaft mbH", + "Siemers-Haus KG (GmbH & Co.)", + "Siemer Verwaltung GmbH", + "Siemes Beteiligungs-GmbH", + "Robert Röhlinger GmbH", + "Salzgitter Kesselservice GmbH", + "Salzgitter Klöckner-Werke GmbH", + "Salzgitter Mannesmann Forschung GmbH", + "Salzgitter Mannesmann Grobblech GmbH", + "SANIMED GmbH", + "Sartorius-Herbst Beteiligungen I GmbH", + "Sartorius KG", + "Sartorius Lab Instruments GmbH & Co. KG", + "\"SARTORIUS\" NOVA-SIGNAL GmbH", + "Sartorius Ventures GmbH", + "Schaeffler Digital Solutions GmbH", + "Schaeffler Industrial Remanufacturing Services AG & Co. KG", + "Schaeffler KWK Verwaltungs GmbH", + "Schaeffler Ultra Precision Drives GmbH", + "Schuster Klima Lüftung GmbH & Co. KG", + "Schäffler Immobilien GmbH & Co. KG", + "Siemens Aktiengesellschaft", + "Salzgitter Automotive Engineering Beteiligungsgesellschaft mit beschränkter Haftung", + "Salzgitter Business Service GmbH", + "Salzgitter Europlatinen Gesellschaft mit beschränkter Haftung", + "Salzgitter Hydroforming Verwaltungs GmbH", + "Salzgitter Mannesmann Renewables GmbH", + "Sartorius Corporate Administration GmbH", + "Sartorius Stedim Systems GmbH", + "SARTORIUS Verwaltungs GmbH", + "Schaeffler IAB Verwaltungs GmbH", + "Siemer GmbH & Co. KG", + "Schaeffler Versicherungs- Vermittlungs GmbH", + "Schäffler GmbH & Co. KG", + "Siemens Healthineers AG", + "\"Siemer Elektro Gesellschaft mit beschränkter Haftung\"", + "Siemers-Elektro GmbH", + "Siemer Verpackung GmbH", + "Salzgitter Automotive Engineering Verwaltungsgesellschaft mit beschränkter Haftung", + "Salzgitter Mannesmann Stahlservice GmbH", + "Sartorius GmbH", + "Sartorius Xell GmbH", + "Schaeffler Aerospace Germany Beteiligungs GmbH", + "Schaeffler AG", + "Schaeffler Bühl Beteiligungs GmbH", + "Schaeffler IAB Beteiligungs GmbH", + "Schäffler GmbH", + "Scheffler GmbH & Co. KG", + "RWE Aktiengesellschaft", + "Salzgitter Energy Services GmbH", + "Sartorius-Herbst Verwaltungs GmbH", + "Sartorius Lab Holding GmbH", + "Sartorius Metalltechnik GmbH", + "Sasse Beteiligungsgesellschaft mbH", + "Schaeffler Engineering GmbH", + "Schäffler Verwaltungs GmbH", + "Selzer Systemtechnik GmbH", + "Siemens Electronic Design Automation GmbH", + "Siemers Transporttechnik GmbH", + "Siemer Verwaltungsgesellschaft mbH", + "Salzgitter Aktiengesellschaft", + "Salzgitter Flachstahl GmbH", + "Salzgitter Mannesmann Stainless Tubes Deutschland GmbH", + "Scania CV Deutschland Holding GmbH", + "SCANIA DEUTSCHLAND Gesellschaft mit beschränkter Haftung", + "Schloss-Apotheke Inh.: Dr. Stefanie Klose e.Kfr.", + "Schaeffler AS Auslandsholding GmbH", + "Schaeffler ByWire Technologie GmbH & Co. KG", + "Schaeffler Verwaltungsholding Sechs GmbH", + "Schaeffler Wälzlager Beteiligungsgesellschaft mbH", + "Schuhhaus Peter e.K. Inh. Schäffler", + "S C H U K O Metallbedachung GmbH", + "Schäffler Bauträger und Baubetreuung GmbH & Co KG", + "Schäffler Steuerberatungsgesellschaft mbH", + "Semet Maschinenbau GmbH & Co. KG", + "Siemens Healthineers Holding III GmbH", + "Ruhr-Lippe Wohnungsgesellschaft mit beschränkter Haftung", + "RWE Power Aktiengesellschaft", + "Salzgitter Forschungswasserkraftanlage Bannetze-Hornbostel GmbH", + "Salzgitter Mannesmann Dritte Verwaltungsgesellschaft mbH", + "s.a.p. e. K.", + "Sartorius Fassaden GmbH", + "Sartorius Weighing Technology GmbH", + "Schaeffler Bühl Holding GmbH", + "Schaeffler Consulting GmbH", + "Schaeffler Vermögensverwaltungs GmbH", + "Schiffahrts GmbH & Co. KG MS \"Leonie P\"", + "Schmidt's Leoni-Stuben Eunice Schmidt", + "Schwan-Apotheke Dietmar Bohlmann e.K.", + "Schäffler Immobilien Beteiligungsgesellschaft mbH", + "Selzer Holding GmbH", + "Robert Decker Wohnbau München GmbH & Co. KG", + "Salzgitter Mannesmann International Gesellschaft mit beschränkter Haftung", + "RWE Trading Services GmbH", + "RWE Supply & Trading GmbH", + "Robinson Club GmbH", + "RP Finanz GmbH", + "RWE Brise Windparkbetriebsgesellschaft mbH", + "Sabena Maintenance International GmbH", + "Schaeffler Automotive Buehl GmbH & Co. KG", + "Schaeffler Bühl Verwaltungs GmbH", + "Schaeffler ELMOTEC STATOMAT GmbH", + "Schaeffler Monitoring Services GmbH", + "Schäffl Haus und Garten UG (haftungsbeschränkt)", + "S C Isolierungen Sascha Celan e.K.", + "Rock' n Bowl e. K.", + "ROSATA Grundstücks-Vermietungsgesellschaft mbH & Co. Objekt Metzingen KG", + "Sartorius CellGenix GmbH", + "Sartorius Stedim North America Holding GmbH", + "SARTORIUS Werkzeuge Beteiligungs-GmbH", + "Schaeffler Services GmbH", + "Schaeffler Technologies AG & Co. KG", + "Schaeffler Verwaltungsholding Zwei GmbH", + "Schleicher Electronic GmbH & Co. KG", + "Schäffler Transport GmbH", + "SGS-Schwarzheider Gastronomie und Service GmbH", + "Siemens Healthineers Innovation GmbH & Co. KG", + "Safetec GmbH", + "Salzgitter Classics UG (haftungsbeschränkt)", + "Sartorius Verwaltungs UG (haftungsbeschränkt)", + "Schaeffler Friction Products GmbH", + "Schaeffler Immobilien AG & Co. KG", + "S.C.H. Wohnungsverwaltung e.K.", + "Schaeffler Schweinfurt Beteiligungs GmbH", + "Schaeffler Teppichwerke GmbH & Co. KG", + "Siemens Healthineers Innovation Verwaltungs-GmbH", + "Siemers GmbH", + "Siemes & Co.", + "Salzgitter Mannesmann Handel GmbH", + "Salzgitter Panscheberg Nr. 17 Projekt GmbH", + "SARTORIUS Invest GmbH & Co. KG", + "Sartorius Verwaltungs-Gesellschaft mit beschränkter Haftung", + "SARTORIUS Werkzeuge GmbH & Co. KG", + "SCANIA Vertrieb und Service GmbH", + "Schaeffler Automotive Aftermarket GmbH & Co. KG", + "Schaeffler Beteiligungsverwaltungs GmbH", + "Schäffler Präzisionsschleiferei GmbH", + "Secop Beteiligungs GmbH", + "Secop Verwaltungs GmbH", + "Siemens GmbH & Co. KG", + "RuhrEnergie GmbH, EVR.", + "Salzgitter Automotive Engineering GmbH & Co. KG", + "Salzgitter Automotive Engineering Immobilien GmbH & Co. KG", + "Schaeffler ByWire Management GmbH", + "Siebte Verwaltungs GmbH", + "Siemens Gerüstbau Gesellschaft mit beschränkter Haftung", + "Siemens Healthineers Beteiligungen GmbH & Co. KG", + "Siemens Healthineers Holding I GmbH", + "Siemers Pet-Shop Tierfutter & Zubehör Inh. Jan Siemers e.K.", + "Siemer Verwaltungs GmbH", + "RUDU Verwaltungsgesellschaft mbH", + "Ruhland-Kallenborn & Co. GmbH", + "Saloodo! GmbH", + "Salzgitter Mannesmann GmbH", + "Salzgitter Maschinenbau AG", + "Sanitär + Heizungsbau Manfred Schäffler e.K., Inhaber: Ralf Wenkenbach", + "Sartorius Stedim Biotech GmbH", + "Ströer Digital Group GmbH", + "Sartorius Stedim Plastics GmbH", + "Schaeffler Sondermaschinenbau AG & Co. KG", + "Schäfer GmbH & Co. KG", + "Schäfer Holding GmbH", + "S. Dembitzer e.K.", + "Selzer Fertigungstechnik GmbH & Co. KG", + "Siemens Financial Services GmbH", + "Siemers Grundbesitz GmbH & Co. KG", + "Siemes GmbH & Co. Kommanditgesellschaft Sand- und Kiesbaggerei", + "S.K.I.P. Datentechnik GmbH (System Konzepte Für Innovative Produkte)", + "S & K Metallverarbeitung Verwaltungs-GmbH", + "SPV Solarpark 102. GmbH & Co. KG", + "SPV Solarpark 103. GmbH & Co. KG", + "S S K Malergesellschaft mit beschränkter Haftung", + "S.T.O.C.K GmbH", + "Ströer Content Group GmbH", + "Stuttgart Netze GmbH", + "SUPRENUM-Gesellschaft für numerische Superrechner mbH", + "Süddeutsche Wohnen Grundstücksgesellschaft mbH", + "Südwest Presse + Hapag-Lloyd Reisebüro Verwaltungs GmbH", + "TICS GmbH Touristische Internet und Call Center Services", + "TRATON SE", + "tricontes360 Gera GmbH", + "tricontes360 Hof GmbH", + "Turmbau Steffens & Nölle GmbH", + "United Internet Corporate Holding SE", + "United Internet Corporate Services GmbH", + "Unternehmerstadt GmbH", + "Tradebyte Software GmbH", + "VOLKSWAGEN AKTIENGESELLSCHAFT", + "Volkswagen Automobile Hannover GmbH", + "Volkswagen Group Logistics GmbH", + "Volkswagen Group Real Estate GmbH & Co. KG", + "Volkswagen Insurance Brokers GmbH", + "Volkswagen Retail Dienstleistungsgesellschaft mbH", + "Volkswagen Vermögensverwaltungs-GmbH", + "Volkswagen Vierte Leasingobjekt GmbH", + "S&K Gastrobetriebsgesellschaft mbH", + "S & K Holding International Verwaltungs GmbH", + "S.K. Management GmbH", + "S.K. Marine Supplies GmbH", + "S.K.S. Autozubehör Produkte Vertriebs GmbH", + "S.K.U.B. Fotostudio GmbH", + "SPIE Energy Solutions GmbH", + "Stromnetzgesellschaft Ebersbach Verwaltungs GmbH", + "Südzucker Holding GmbH", + "TUI Asset Management and Advisory GmbH", + "TUI BLUE DE GmbH", + "TUI Insurance & Financial GmbH", + "United Internet Sourcing & Apprenticeship GmbH", + "Volkswagen Autoversicherung AG", + "Volkswagen Versicherung Aktiengesellschaft", + "S & K Europe GmbH.", + "S+K Handels GmbH", + "S.L. Die Tanzschule e.K.", + "Ströer Content Group Sales GmbH", + "Ströer Content Group X GmbH", + "Ströer Digital Publishing GmbH", + "Ströer Sales & Services GmbH", + "Ströer SE & Co. KGaA", + "Ströer-Verwaltungs-GmbH", + "TESSOL Kraftstoffe, Mineralöle und Tankanlagen Gesellschaft mit beschränkter Haftung", + "TRATON Beteiligungsverwaltungs GmbH", + "TUI Cruises GmbH", + "United Internet Management Holding SE", + "Volkswagen AirService GmbH", + "Volkswagen Automobile Rhein-Neckar GmbH", + "Volkswagen Bank Gesellschaft mit beschränkter Haftung", + "Volkswagen Immobilien BLUE GmbH & Co. KG", + "Volkswagen Sachsen GmbH", + "Volkswagen Siebte Leasingobjekt GmbH", + "Volkswagen Software Asset Management GmbH", + "\"Siemes Verwaltungs-GmbH\"", + "S-K-I Immobilien Birgit Salz e.K.", + "The Cloud Networks Germany GmbH", + "S. K. Management- und Beteiligungs GmbH", + "SODIAS GmbH", + "Tivoli Garden GmbH & Co. KG", + "TSP - TechnikServicePlus GmbH", + "TUI Customer Operations GmbH", + "TUI Deutschland GmbH", + "TUI InfoTec GmbH", + "Vivawest GmbH", + "Volkswagen Immobilien GmbH", + "Volkswagen Sechste Leasingobjekt GmbH", + "S.K. Beteiligungen GmbH", + "S.N. Stefan Neist Versicherungsmakler e.K.", + "Solarpark Aries GmbH & Co. KG", + "Ströer Begrünungen GmbH", + "Ströer Precision X GmbH", + "TKS Telepost Kabel-Service Kaiserslautern GmbH", + "trinamiX GmbH", + "THESEO Deutschland GmbH", + "TUI Aviation GmbH", + "United Internet Media GmbH", + "Volkswagen Immobilien Investment GmbH", + "Volkswagen Osnabrück GmbH", + "S + K Verwaltungs- und Beteiligungs-GmbH", + "SMIGHT GmbH", + "Ströer Core Verwaltungs GmbH", + "Ströer media brands GmbH", + "Südwestdeutsche Nuklear-Entsorgungs-Gesellschaft mbH (SNE)", + "Südzucker Verwaltungs GmbH", + "Thyssen Stahl GmbH", + "TLT Urlaubsreisen GmbH", + "tricontes360 Frankfurt Oder GmbH", + "TRINAC GmbH", + "Tilman Sartorius GmbH", + "Tobias Schäffler GmbH PC's and more", + "TUI AG", + "TUI Group Services GmbH", + "TUI ReiseCenter Jürgen Jehle e.K.", + "Ulrike Theophile-Albrecht und Hella Albrecht Grundstücksverwaltungs GmbH & Co. KG", + "Union Bauzentrum Hornbach GmbH", + "u-plus Umweltservice GmbH", + "Volkswagen Group Future Center Europe GmbH", + "Volkswagen Zentrum Karlsruhe GmbH", + "Siemes Grundbesitz GmbH & Co. KG", + "SIV Grone 1 GmbH & Co. KG", + "S&K Anlagentechnik GmbH", + "S.K. Consulting GmbH", + "S. K. Vermögensverwaltung Beteiligungs und Verwaltungs GmbH", + "Strom am Antoniusberg GmbH & Co. KG", + "Ströer News Publishing GmbH", + "Süddeutsche Wohnen GmbH", + "TARONA Verwaltung GmbH & Co. Alpha KG", + "tricontes360 solutions GmbH", + "TUI Airline Service GmbH", + "Uniper Anlagenservice GmbH", + "Verwaltung MS \"Leonie P\" GmbH", + "Volkswagen-Versicherungsdienst Gesellschaft mit beschränkter Haftung", + "Siltronic AG", + "S + K Vermögensverwaltung GmbH", + "Solarpark Lupus GmbH & Co. KG", + "S. Otto Müller Inhaber: Frank Müller e.K.", + "SPK Mix Handels GmbH", + "STKNB Marketing Sales Solutions GmbH", + "Ströer Digital Media GmbH", + "S. u. F. Schwengel Inh. Falk Schwengel e. K.", + "Tatin GmbH", + "United Internet AG", + "United Internet Investments Holding AG & Co. KG", + "TPLUS GmbH", + "United Internet Service SE", + "Unternehmerstadt Verwaltungsgesellschaft mbH", + "Vogel-Verzahntechnik GmbH + Co. KG", + "Volkswagen Autoversicherung Holding GmbH", + "Volkswagen Infotainment GmbH", + "S + K Handelsgesellschaft m.b.H.", + "S & K Holding International GmbH & Co. KG", + "S & K International Beteiligungen GmbH", + "S + K Retail GmbH", + "S. Rahvar e.K.", + "S & S Dienstleistungs- und Logistikunternehmen Sandy Schattmann e. K. Inhaberin: Sandy Wagner", + "S-T-O Kfz Meisterbetrieb e.K.", + "S-Tronics e.K.", + "Ströer Social Publishing GmbH", + "Sun Chemical Colors & Effects GmbH", + "Swisslog GmbH", + "SW Westfalen Invest GmbH", + "Tectareal Asset Services GmbH", + "Telefónica Deutschland Holding AG", + "tricontes360 Verwaltung Hamburg GmbH", + "TUIfly Vermarktungs GmbH", + "TUI Immobilien Services GmbH", + "Volkswagen Automobile Berlin GmbH", + "Volkswagen Automobile Frankfurt GmbH", + "Volkswagen Dritte Leasingobjekt GmbH", + "Volkswagen Group Info Services AG", + "Volkswagen Group Partner Services GmbH", + "Volkswagen nuwo team Vertriebsgesellschaft für Nutz- und Freizeitfahrzeuge Koblenz mbH", + "Siemes Verwaltungsgesellschaft mit beschränkter Haftung", + "S.K. Physio-Service GmbH Meuselwitz", + "S + K Textil-Service GmbH", + "S-K-Ö Schornsteinelemente, Kamineinsätze, Öfen, Luftheizungsbau Vertrieb und Montage GmbH", + "\"s'Küfer-Hus\" Wein- und Spirituosenhandlung - Branntwein-Brennerei - Spezialitäten Inh. Christian Stüdle e.K.", + "Solarpark Samas GmbH", + "SPIE Energy Solutions Harburg GmbH", + "Spiel u. Sport Hella u. Günter Grob (Spielwaren und Sportartikel) Inh. Rainer Bliefernicht", + "Starkenberger Baustoffwerke GmbH", + "STRATO Customer Service GmbH", + "Stromnetzgesellschaft Heilbronn Verwaltungs-GmbH", + "Ströer DERG Media GmbH", + "Ströer Media Deutschland GmbH", + "Ströer Next Publishing GmbH", + "Südwest Presse + Hapag-Lloyd Reisebüro GmbH & Co. KG", + "TECALEMIT GmbH & Co. KG", + "tricontes360 Itzehoe GmbH", + "tricontes360 Münster GmbH", + "Uangyih Immobilien GmbH", + "\"Urbana Teleunion\" Rostock GmbH & Co. KG", + "Vivawest Ruhr GmbH", + "S. K. Beteiligungen GmbH & Co. KG", + "S. Owusu-Sekyere e.K.", + "Volkswagen Leasing Gesellschaft mit beschränkter Haftung", + "SIL Verwaltung GmbH & Co. Objekt Haidach KG", + "Stadtwerke Recklinghausen GmbH", + "Stadtwerke Voerde Gasnetz Verwaltungs GmbH", + "Stage10 GmbH", + "Ströer Deutsche Städte Medien GmbH", + "Ströer Digital Commerce GmbH", + "Studienkreis Holding GmbH", + "Taunus Beteiligungs GmbH", + "TB Digital Services GmbH", + "Telefónica Germany GmbH & Co. OHG", + "TK Aufzugswerke GmbH", + "VLI Vivianne Leger Immobilien GmbH", + "Volkswagen Beteiligungsverwaltung GmbH", + "Volkswagen Group IT Solutions GmbH", + "Volkswagen Group Services GmbH", + "Volkswagen Konzernlogistik GmbH & Co. OHG", + "S. Stutzenbacher Inhaber Guido Wekemann e.K.", + "S + K Consulting & Events GmbH", + "S. K. Holding Verwaltungs GmbH", + "S+K Verwaltungs und Handels GmbH", + "Strahlentherapeutische Gemeinschaftspraxis Hella Kops, Petra Schneider, Dr. Dieter Ross, Dr. Ralf Keymer, Strahlentherapeuten, Partnerschaft", + "Ströer SSP GmbH", + "Sun Chemical Color Solutions GmbH", + "Südzucker AG", + "Textilwaren Josef Gramm Inh. Rosita Gramm e.K.", + "time:matters GmbH", + "TransnetBW GmbH", + "TUI TRAVEL Star - Reisebüro Battermann GmbH", + "Umspannwerk Klein Bünsdorf GmbH & Co. KG", + "Volkswagen Automobile Hamburg GmbH", + "Volkswagen Fünfte Leasingobjekt GmbH", + "Siemes Schuhcenter GmbH & Co. KG", + "SIV Weende GmbH & Co. KG", + "S + K Beteiligungs und Verwaltungs GmbH & Co. KG", + "S + K GmbH Haus- und Energietechnik", + "S.K.I. Verwaltungs GmbH Skikonstruktionsinstitut", + "S.M.A. Metalltechnik GmbH & Co. KG", + "Solutions30 Field Services Süd GmbH", + "StreetScooter GmbH", + "Ströer Management SE", + "Ströer Sales Group GmbH", + "Süddeutsche Wohnen Gebäude GmbH", + "Südzucker Versicherungs- Vermittlungs-GmbH", + "tricontes360 Hamburg GmbH", + "TUI Business Services GmbH", + "TUIfly GmbH", + "TUI Hotel Betriebsgesellschaft mbH", + "TUI Leisure Travel Service GmbH", + "Unterstützungseinrichtung der BayWa Aktiengesellschaft in München GmbH", + "vitrado GmbH", + "Volkswagen Belegschaftsgenossenschaft für regenerative Energien am Standort Emden eG", + "Volkswagen Original Teile Logistik GmbH & Co. KG", + "Simon Sinterlutions GmbH & Co. KG", + "S & K Autoverwertungs GmbH", + "S & K Verwaltungs GmbH", + "Spitzlberg GmbH & Co. KG", + "S. Schulte e.K. Apparatebau Inh. W. Liebing", + "Stanniol GmbH für IT & PR", + "Stromnetzgesellschaft Albershausen Verwaltungs GmbH", + "Ströer Core GmbH & Co. KG", + "STW Grundstücksverwaltung GmbH", + "TEC Holding GmbH & Co. KG.", + "Tectareal Property Management GmbH", + "tricontes360 Bremerhaven GmbH", + "T-Systems International GmbH", + "TUI Beteiligungs GmbH", + "Volkswagen Erste Leasingobjekt GmbH", + "VOLKSWAGEN FINANCIAL SERVICES AKTIENGESELLSCHAFT", + "Volkswagen Gebrauchtfahrzeughandels und Service GmbH", + "Siemes-Schuh-Treff Verpachtung GmbH", + "Simon Systems GmbH & Co. KG", + "S K A GmbH Elektroservice und Gebäudemanagement", + "S & K GmbH Industrieservice und Beratung", + "S.K.M. Informatik GmbH", + "S + K Sauer und Krewett GmbH", + "Vodafone Customer Care GmbH", + "STILL Gesellschaft mit beschränkter Haftung", + "STRATO AG", + "Ströer Content Group Product & Tech GmbH", + "Ströer Vermögensverwaltung GmbH & Co. KG", + "SVG Steinwerder Verwaltungsgesellschaft mbH", + "synexs GmbH", + "Südtrans GmbH", + "Taubernetze Verwaltungs-GmbH", + "ThyssenKrupp Steel Europe AG", + "TRATON Dritte Beteiligungs GmbH", + "TWS Kernkraft GmbH", + "UIS-United Internet Service, Inhaberin: Jacqueline Zielke, e.Kff.", + "Ventelo GmbH", + "VOLKSWAGEN Automobile Leipzig GmbH", + "Volkswagen Automobile Stuttgart GmbH", + "Volkswagen Economy Service Erdle Bernhard Erdle GmbH", + "Volkswagen Financial Services Digital Solutions GmbH", + "Volkswagen Group Charging GmbH", + "Volkswagen Zentrum Aachen Jacobs Automobile GmbH", + "Siems fenster + türen Gesellschaft mit beschränkter Haftung", + "S & K GmbH Trockenausbau", + "S & K Handels- und Vermittlungs GmbH & Co. KG", + "S + K Robotertechnik GmbH", + "S + K Verkaufsförderungsgesellschaft mbH", + "Solarpark Aquarius GmbH & Co. KG", + "SPECHT Sonnenschutztechnik GmbH", + "Stadtwerke Wiesloch - Strom - Verwaltungs-GmbH", + "STEAG GmbH", + "Steindamm-Grundstücks- und Metro Hotelgesellschaft mit beschränkter Haftung", + "STILL Financial Services GmbH", + "Ströer Aussenwerbung GmbH & Co. KG", + "Ströer Werbeträgerverwaltungs GmbH", + "TKH Deutschland GmbH", + "TUI 4 U GmbH", + "TUI Aviation Holding GmbH", + "ViA6West Service GmbH", + "Vivello GmbH", + "Volkswagen Immobilien Management GmbH", + "Volkswagen Original Teile Logistik Beteiligungs-GmbH", + "Volkswagen Zentrum Nürnberg-Marienberg GmbH", + "Volkswagen Zentrum Osnabrück GmbH & Co. KG", + "Vonovia Elbe Berlin III GmbH", + "Volkswagen Zubehör GmbH", + "Vonovia Elbe GmbH", + "Vonovia Technischer Service Süd GmbH", + "Windpark Kamionka GmbH", + "Wintershall Dea Middle East GmbH", + "WEINERT Fiber Optics GmbH", + "Westenergie Aqua GmbH", + "WZ-WundZentren GmbH", + "Würth Leasing Verwaltungsgesellschaft mbH", + "Zalando Customer Care DACH SE & Co. KG", + "Vonovia Energie Service GmbH", + "Vonovia Elbe Berlin II GmbH", + "Vonovia Kundenservice GmbH", + "Vonovia Eigentumsverwaltungs GmbH", + "VWR International GmbH", + "Wintershall Dea Vermögensverwaltungsgesellschaft mbH", + "Wolman Wood and Fire Protection GmbH", + "Zalando Logistics Mönchengladbach SE & Co. KG", + "Vonovia Mess Service GmbH", + "Waldhusen KSB Verwaltungs GmbH", + "Willi Göttling GmbH", + "Walsum Immobilien GmbH", + "Werkzeugbau Walldürn Gesellschaft mit beschränkter Haftung", + "Windpark Wilhelmshöhe GmbH & Co. KG", + "Wohnbau Auguste Victoria GmbH", + "Zalando Lounge Content Solutions SE & Co. KG", + "Zalando Stores GmbH & Co. KG", + "Zentra Verwaltungs-GmbH", + "Vonovia Elbe Dresden I GmbH", + "Vonovia Elbe Wohnen GmbH", + "Vonovia Modernisierungs GmbH", + "Wacker-Chemie Versicherungsvermittlung GmbH", + "Wacker Neuson SE", + "WealthCap Objekt Bogenhausen GmbH & Co. KG", + "Windfeld Hohenfelde Vier GmbH & Co. KG", + "Vonovia Operations GmbH", + "Vonovia Pro Bestand Nord Real Estate GmbH", + "Wacker Neuson Produktion GmbH & Co. KG", + "Windpark Hessenweiler GmbH & Co. KG", + "Windpark Hettstadt GmbH & Co. KG", + "Windpark Velgen-Bornsen GmbH", + "Windpark Wilhelmshöhe III GmbH & Co. KG", + "Wolfgang Sartorius GmbH & Co. KG.", + "Zalando Beauty Store GmbH", + "Zalando Lounge Logistics SE & Co. KG", + "zLabels Platform Services GmbH & Co. KG", + "Weidemann GmbH", + "Vonovia Engineering GmbH", + "Vonovia Immobilienservice GmbH", + "Vonovia SE", + "Wacker Neuson Aftermarket & Services GmbH", + "Weinkellerei Thomas Rath GmbH", + "Windpark Grüntal GmbH", + "Windpark Uphuser Mark GmbH & Co. KG", + "Zalando Logistics Gießen SE & Co. KG", + "Zalando Studios Berlin GmbH", + "Zwiebelzwerg Verlag, Inhaber Leonie Laufenburg e. K.", + "Vonovia Immobilienmanagement two GmbH", + "Wintershall Aktiengesellschaft", + "Zalando Logistics Süd SE & Co. KG", + "Zalando Payments GmbH", + "ZweiPuma GmbH", + "Zweite Mainova Erneuerbare Energien Verwaltungs GmbH", + "Westconnect GmbH", + "Vonovia Technischer Service Nord GmbH", + "Wacker Biotech GmbH", + "Wacker-Chemie Zwölfte Venture Gesellschaft mit beschränkter Haftung", + "Wacker Neuson SGM Verwaltungs GmbH", + "Wilhelmshöhe Infrastruktur GmbH & Co. KG", + "Windpark Finkenbach-Gersweiler GmbH & Co. KG", + "Windpark Wilhelmshöhe II GmbH & Co. KG", + "Zalando BTD 007 SE & Co. KG", + "Zalando BTD 010 SE & Co. KG", + "Windpark Spechenwald GmbH & Co. KG", + "Wipro Business Solutions GmbH", + "Wolteritzer Agrar GmbH", + "Vonovia Eigentumsservice GmbH", + "Wolters Rundreisen GmbH", + "Yello Solar GmbH", + "Yello Strom GmbH", + "Vonovia Dritte Berlin GmbH", + "Vollkornbäckerei Sartorius Inhaber Strauß und Kaleske OHG", + "Vonovia Immobilienmanagement GmbH", + "Vonovia Wohnumfeld Service GmbH", + "VULKAN INOX GmbH", + "Wacker-Chemie Elfte Venture Gesellschaft mit beschränkter Haftung", + "Weinisch GmbH & Co. KG", + "Wenczel Zahntechnik GmbH", + "Windpark Holle-Sillium GmbH & Co. KG", + "Wohnanlage Leonberger Ring GmbH", + "Wohnbau Westfalen GmbH", + "Zalando Outlets GmbH", + "VWR International Immobilien GmbH", + "Wacker-Chemie Achte Venture Gesellschaft mit beschränkter Haftung", + "Wacker Neuson Immobilien GmbH", + "Windpark Lindchen GmbH & Co. KG", + "WPB Water Pump Bearing GmbH & Co. KG", + "XX-ON LINUX Services Huhle e. K.", + "Zalando Customer Care Central Services SE & Co. KG", + "Zalando Lounge Service GmbH", + "Zalando Operations GmbH", + "zooplus SE", + "Wacker Chemie AG", + "Wacker Neuson PGM Verwaltungs GmbH", + "Wacker Neuson Vertrieb Deutschland GmbH & Co. KG", + "Wiech Autohandelsgesellschaft mbH", + "Windpark Schnellwettern GmbH", + "Wohnungsgesellschaft Münsterland mit beschränkter Haftung", + "Zalando Marketing Services GmbH", + "Zalando SE", + "zLabels GmbH", + "Vonovia Immobilienmanagement one GmbH", + "Vonovia Elbe Ost GmbH", + "Willibald Grammer GmbH & Co. KG", + "Windpark Bella GmbH", + "Windpark Quelkhorn GmbH", + "Wohnen am Tiergarten Deutsch Evern GmbH", + "Zalando BTD 003 GmbH", + "Zweite Bad Kreuznacher Sonnenpark Betrieb GmbH & Co. KG (KSB II)", + "Zweite Hapag-Lloyd Schiffsvermietungsgesellschaft mbH", + "Vonovia Elbe Wannsee I GmbH", + "Vonovia Managementverwaltung GmbH", + "WIBG GmbH", + "Windpark Freimersheim GmbH & Co. KG", + "Wohn + Stadtbau Wohnungsunternehmen der Stadt Münster GmbH", + "Weigand Bau GmbH", + "Volkswagen Zentrum Oldenburg GmbH", + "Volkswagen Zweite Leasingobjekt GmbH", + "Vonovia Pro Bestand Nord GmbH", + "Vonovia Pro Bestand Nord Invest GmbH", + "web care LBJ GmbH", + "Windpark Pferdsfeld GmbH & Co. KG", + "Wintershall Libyen Oil & Gas GmbH", + "Zalando BTD 009 SE & Co. KG", + "Zalando BTD 011 SE & Co. KG", + "zLabels Creation & Sales GmbH & Co. KG", + "Zweckverband Wasserversorgung Gramme-Aue", + "Westfälische Hochtief und Straßenbau GmbH", + "Windpark San Lupo GmbH", + "WINGAS Holding GmbH", + "WohnServicePlus GmbH", + "Wohnungsbaugesellschaft mit beschränkter Haftung \"Glückauf\"", + "Zalando Customer Care International SE & Co. KG", + "zebotec GmbH" + ], + "mode": "markers", + "name": "DataFrame 1", + "type": "scatter", + "x": [ + 933483.4567391834, + -366283.69394185964, + -181700.15961593334, + 429817.1381553038, + 77282.61765229338, + -894216.5057303684, + -340099.1897493526, + 458352.946828549, + 683996.0178905013, + 233201.9544420003, + -884245.3767823352, + -347699.8273738099, + 465403.5083914787, + 183588.8342892922, + 332347.5294036897, + -554819.1953686934, + 950439.392680525, + -956642.0026505338, + 801315.0897775844, + 856763.4161872992, + 543040.1381149603, + -190477.9447491629, + -316220.8201520302, + 470707.5911725738, + -40084.87664969729, + 330812.40467371355, + 909323.2027302729, + -968835.1525967998, + 902764.2360196946, + 896641.9692342175, + -21448.410189587543, + 957697.1302399324, + 482919.71377339005, + -922113.7465409437, + 320129.40833918104, + -115988.0603293435, + 320720.9523268768, + -183915.13182539286, + 467586.5371865227, + 155810.07246206168, + -255273.7184953122, + 683377.9850822419, + -820786.1217632035, + -514479.34659976815, + 324337.7237462275, + -158992.66117613608, + 674390.0901959051, + -545638.2423811845, + 604934.7306536661, + -162966.46759127188, + 914467.6632273761, + -881198.5201276346, + 393875.6303361353, + -173691.57445018858, + 101734.4186530189, + 102890.59825682867, + -709061.166520672, + -704117.2696122591, + -78921.56012487228, + 82695.01147360781, + 892639.6045231073, + -407373.19441791973, + -542090.163883535, + 383602.4527648727, + 587710.1196072107, + 326147.5533448339, + -995533.7825129096, + -534018.0751121859, + -830220.9718566176, + 736765.1546685816, + -377702.94197033683, + -261148.38158098143, + 662042.6234050796, + -883231.0328140896, + 487333.2756261608, + 793285.0618945669, + 884802.6012272596, + -600937.0920693981, + 379335.77436914813, + -840629.2261889379, + 360724.37328794546, + 881922.3999063373, + -78715.90056435295, + -188072.50905787342, + 93214.08443516676, + 212406.3833148444, + 42356.860080162485, + 864742.738718304, + 466495.4269516823, + -72851.75443980707, + 296865.7210732206, + 201690.5001386915, + -809602.3854719092, + 455089.0566991821, + -421789.7677491984, + -730099.8140962289, + 941129.1135389946, + 869007.5350815292, + 717990.2465833629, + 197134.69020416553, + -894718.6391275503, + -723155.4734128875, + -8379.412339935, + -909596.9341151802, + -292082.4385481624, + 153864.8390642192, + 712361.2951724086, + 914316.0572963407, + -919652.1895690879, + 626046.287861095, + -671624.2805811912, + -564517.9022853523, + -836089.2335397754, + -727307.2831803005, + -63184.91059391906, + 168229.98075621086, + 645979.5543442839, + 438081.87126206444, + 826920.9352810534, + 602407.9673077478, + 631265.6698211387, + 777914.9540390078, + -547642.2852201579, + 526877.4573910712, + -38327.955008397694, + 418566.19868298183, + 197973.49488166915, + 184766.2002418735, + 715784.4905156529, + -516221.8913464849, + -434623.4691013651, + -5596.113939467129, + 648246.2669582678, + -400567.27083104127, + 76755.93591468189, + 663904.7617724848, + -897623.4682337678, + -857957.9247302185, + 517837.1986306305, + 232161.74846487082, + -321727.77392575116, + 538787.438030321, + 617187.9259473727, + 704105.6988044545, + -169312.1842001153, + 739393.8950776226, + 27058.202771294447, + 21387.915970575654, + -898957.63764533, + -96792.91913518484, + -21227.49778743449, + 276976.17238035274, + -755074.7222507059, + -3151.853730977372, + 447205.8626187305, + -409297.7949012127, + 721040.7630583367, + -551799.6409460857, + -495134.76313686476, + -566236.2561708712, + -383589.25783163536, + 520674.05570668046, + -379083.4425797596, + 714780.540659039, + -604109.0475752635, + 792749.3740975467, + -695748.732719113, + -841161.2589156998, + -195189.11757277558, + 431924.74953544035, + 876253.9237453884, + -969676.0286274004, + -814469.2956539985, + -203858.51979069636, + 987883.3246678433, + -754434.0508021094, + 56220.819532364796, + 291351.1195352343, + -877967.6203988978, + -616004.2932641512, + 650337.6304247482, + 767568.1344808547, + 615619.3556276786, + -205710.37365605726, + -452877.2624604085, + 170430.45436057568, + 66750.84993936031, + -771349.5296019091, + -76184.7834570475, + 223240.49951923918, + 47468.46409605654, + -900078.2113245784, + -707282.1263826032, + 498738.2468210295, + 623681.4455269715, + -439114.2156817536, + 712395.3589967475, + -67881.32275742265, + -903849.429763719, + -761921.4177536746, + -289319.9518633871, + 430326.2401265009, + 526519.186730167, + 628334.3788628908, + 141499.46505001077, + -25360.886258957606, + -709849.9682138389, + 472144.8048529735, + 642676.881996413, + 985082.8450351985, + 177913.9037321007, + -475020.10876459733, + 829759.5568487745, + 621840.5604610262, + 241848.8026121215, + 272875.8067462236, + -434770.8766206291, + 806359.0699789898, + -863812.5608722302, + 675721.386773738, + -792990.950272441, + 79002.14739262879, + 773503.3528407407, + 267310.8001232671, + -49360.913627868984, + 81010.32478152437, + 698548.8043876948, + -777612.1742197457, + 25182.32358250505, + -459999.322682785, + -530206.2725823066, + -285897.65920436603, + -338463.1555088351, + -441941.0409727664, + 507573.35056005995, + -668626.5976141022, + 690145.8497871232, + -89085.74572926975, + 915263.3573844782, + 713479.5856259892, + -767480.6633687961, + -359558.8897121338, + 202408.6912441687, + -472765.09146025503, + -224465.75825735682, + 40079.99249920036, + -257529.7647083643, + 850913.531484576, + -907282.0446569585, + 843622.9094645538, + 115292.52144101188, + 284988.9338097777, + -401281.38711647975, + -486049.0391869989, + -623176.5609360784, + 157004.07763181155, + 978318.5934822272, + -822372.6879477986, + 625086.0530151355, + 398851.1180425776, + -982531.8952967137, + -388346.84791477025, + 32321.233344296375, + 829256.0232519812, + 157263.60815314978, + 850940.5457161552, + -652873.5736363298, + -165877.75686732464, + 400648.1628683858, + -844246.5819693888, + -484658.3050507276, + 27244.414390010574, + -235998.43433836033, + 832880.6118917629, + 990684.9044964272, + -878821.3304950048, + -458711.1024669723, + 802251.3174304304, + 408034.5906397866, + -504542.1352043298, + 561261.9310804654, + 97633.05212708894, + 502900.9484947351, + -405277.08141188713, + -641913.5259541672, + 15427.685521914647, + 292571.0942710789, + 942482.3561708895, + 324668.65708667634, + -95612.21767736993, + 280237.001949774, + -823020.539712868, + -970779.9930329554, + -486550.24362551223, + 231074.82024078374, + -547870.9118915705, + -702264.0646188254, + 158951.22444749888, + -573579.8815497239, + 291482.05335721734, + -662208.9345963952, + 113379.54184456533, + 718826.5521028038, + 670560.6168920255, + 381475.48544957186, + -964533.0899372523, + -573964.3844729715, + 860516.1611720189, + -641961.420259417, + 940801.7662788922, + 444032.79606093984, + -484224.4518047343, + -149110.68317453036, + 975774.1818193704, + 900636.500591634, + 725677.6911089884, + -611806.3248940435, + 328217.0229704833, + 431602.0630810575, + -96395.66533854649, + -230307.1527079439, + -866085.6054143156, + 596873.7891156799, + 728757.2302041758, + 185469.61189416988, + 506079.2433519592, + 186411.39583669396, + 661913.0057686664, + 99207.88555998539, + 852437.5161791889, + -134443.11900166151, + -124462.9076692243, + 6274.1707185636205, + 505074.68310500745, + -640937.7577869985, + 348115.135016678, + 752993.026601618, + -798864.8616855099, + -862762.1182790956, + -356820.70111571206, + 177560.89683188248, + -697806.9091883699, + 228554.08877429407, + -104591.68288544696, + 596758.7520509677, + 684264.4055752846, + 38860.38466092723, + -293966.9337601134, + 205575.50894640197, + -238955.24483877773, + -887559.5147387895, + -810392.7287200175, + -384269.55450074596, + 825928.0205778476, + -630743.5726622504, + 602845.2465308853, + 254733.63076877088, + -223735.95682974058, + 857326.5405612354, + -606908.4936988576, + 327038.5420484947, + 900407.8115062198, + 570248.7195378274, + -196417.42374274827, + 302746.5200068291, + -185247.41886056017, + 661833.7999114355, + 342718.2897794898, + 21877.881505122376, + 897967.5960706323, + 426984.0513968357, + -910074.4476692642, + 290487.3206044216, + -648161.226738482, + -96665.56418908923, + 235712.27042544284, + -597264.9068567748, + -837885.1665043108, + 882596.9345251996, + 159141.450872055, + 381868.0890948134, + 978774.8671757412, + -588807.6533459923, + -194279.80743491635, + -596759.6697357827, + -520404.53542439133, + 839521.0558089447, + 288080.60505450726, + 771674.8466703555, + -215057.2188755595, + -102229.42822348347, + 376753.80948773184, + -25705.236251931663, + 235382.84267939447, + -768077.3568489492, + -13964.755390297512, + 660747.1133854709, + -435531.37121292826, + 988256.9959860345, + 28339.46953594202, + 967043.4622880626, + 926635.0133391499, + -535039.744551085, + -666783.5869524132, + -212732.11676849678, + -359443.6248692099, + 92578.11928373361, + -150943.60975530808, + 942137.0889056928, + 263248.3851843943, + 159066.9874468782, + 435040.8329212534, + -268079.75936596474, + 403899.78181010886, + -405306.02044891764, + -476745.24667233275, + -88739.66357379004, + -655098.6365330735, + 286552.26150755887, + -252963.25799429885, + 486620.05816211493, + -328431.293413165, + 986835.0736272966, + -41600.750115048155, + 629509.3608464187, + -653765.5633018771, + 487810.7120183575, + 79696.72280020501, + 342674.5313034989, + 93058.14653318057, + 792119.881503258, + 167826.07426211916, + -38509.35045387782, + 464766.31972976757, + 502981.5468323673, + 868139.6588996886, + -170207.19763056102, + -443329.20444239624, + -525909.7546974054, + 578051.3518156023, + 61547.78938514394, + 522257.1386652817, + 577392.8090613643, + 665091.1247342328, + 786778.6542879742, + 39590.950316552575, + 815950.3189379036, + 586091.0234255437, + 38830.39103194141, + -635979.9761410847, + -651013.7192327545, + 811131.8183294842, + 190593.36686297934, + 588024.254014322, + 316053.7349427122, + 587577.2507856083, + 351301.77422378736, + 848868.644806498, + -299923.25938496925, + -360885.8773834229, + -345441.7571526054, + 437694.3292319815, + 947333.3380176532, + 916183.0371557598, + 388152.5796828631, + -789394.6420817033, + -84551.7835832943, + 946906.6064106144, + 608890.8180953821, + 677591.4524686069, + 521072.90601517487, + -178216.50664417076, + -14463.351502338017, + 554892.5945752865, + -387963.4681192348, + 717447.7001192871, + 180005.58774911758, + 698099.5531065653, + -656436.9674364273, + 733527.2827753351, + -580427.8565184487, + 345722.8774127468, + -150377.71014886748, + 155998.46897914205, + 65171.48029580055, + -181637.07161457854, + 308041.3932794368, + -287412.34625400434, + -656253.5214717102, + -648310.0496600611, + -746381.2366853913, + 83622.16583016257, + -19364.354844584097, + -625569.4912948359, + 185128.5230804234, + 854658.2178867612, + -502221.2423468795, + -233364.95639678233, + -941688.012740526, + 561686.4496072094, + 961212.1187088809, + 755173.4644584443, + -476509.16832876677, + 287186.1271102667, + -561334.5561021474, + 227756.20584921018, + 506936.28230545484, + 264911.4833220334, + 485523.02644619404, + -374210.50593961857, + 712593.3587444853, + -105937.42716478017, + -482613.4945723788, + 414860.97835098446, + -452038.74419801694, + -535310.6977113642, + 381373.32463077886, + -974324.3390105796, + 806644.7911977044, + 127035.20726680085, + -613747.5981969669, + -825092.242771966, + 987745.54077045, + 807729.8305085383, + 820212.0126397252, + -911815.111465116, + 489670.6800430286, + 959231.5187373273, + -927929.0330374057, + 588029.7165107527, + -171353.0669321337, + 993726.2469277983, + 77338.04827971746, + -426997.16687418986, + 712085.8290284196, + 435772.6139411109, + -440084.7440775184, + 710759.9155269597, + -215550.8344180117, + 891032.4039561477, + 790332.191399174, + 963066.2603491714, + -685442.0011943391, + 57957.366801817625, + -730374.7417052435, + -47892.04997571828, + 610875.7945680574, + 632616.1117033211, + -553534.4002918107, + 823874.0941544147, + 787091.7877283216, + 669797.903895613, + 951883.2032729578, + -610474.3031996711, + -359953.17372292135, + 800919.0893525608, + 288707.8838759225, + -788593.7694426945, + -699791.7379094269, + -576254.7272775868, + 962442.7194031442, + 193663.74090908578, + 192898.7761189127, + -636627.180160112, + -678923.3564325646, + -536139.8345770207, + 483038.4019771743, + -615542.8321597268, + -425154.8175794468, + 389129.0935796654, + -622531.8936491543, + -942230.4813874803, + -702245.1002356531, + 167597.5150278466, + 426236.00695759256, + 901070.8355996925, + 102710.81065561782, + 292658.47368995537, + 772772.6984495806, + 966475.7136151139, + 787936.2857831245, + 417358.92862643854, + 530081.4122312207, + -761342.1567954683, + -290976.6678246506, + -532125.9656384134, + 28934.677807041397, + 337954.1081590967, + 244901.82551867145, + -166247.8824189475, + -676791.1366678317, + 711185.3610915573, + -492150.0337925884, + -672459.1537540519, + 391637.40453810303, + 301584.1595675015, + -728121.2615781027, + 944314.1496489326, + -645320.261332402, + -270676.14341981197, + 296918.82281927473, + -797857.9983668334, + -613602.9955438446, + -259651.77389573512, + 676283.1023599645, + 362932.4315698379, + -926960.4448085378, + 343087.31060714746, + -670836.4706392518, + 118341.36735152123, + -702119.1055820582, + -839634.4902872923, + 342991.9322557311, + 758907.6565430774, + -264607.122813989, + 291461.7572568536, + -573251.5566775127, + -471326.4887253379, + -34270.002993454174, + 896594.9176006076, + -146728.84329680348, + 907629.9728597652, + 778318.4083408179, + -868290.3040404802, + -735155.8654195756, + -45679.01742848979, + -97941.64126586735, + -892081.6025005636, + -813369.5244834947, + -266277.8424595926, + 499966.1047499513, + -163970.4374781452, + 706091.1703498379, + 245960.7519979834, + 233684.57456860182, + -926848.5189596672, + -51883.16139370164, + -462205.5848496869, + 81873.6562964113, + 145994.06525380543, + -64795.584166803535, + 254279.6946992969, + 306373.6140003388, + -624947.0977210656, + -966781.2640380245, + 460032.0894692578, + -397043.7914764817, + -330148.6543510428, + 542536.1597444247, + -563315.1228241045, + 949568.659661479, + -357140.1701558412, + 225969.41310828787, + 216192.12300347246, + -203812.76400936677, + -852481.3244450431, + 699178.8707138866, + 121511.70759860253, + 932707.054767189, + -669959.8044202978, + 471252.6446453877, + -418007.2471374858, + -545416.2893863735, + -481867.3056995857, + -595545.0990912922, + -998353.339486974, + -794489.958155848, + 335634.35548853973, + -242831.30498189954, + -580395.9993417307, + -751958.7094608329, + 578302.6554046244, + -745776.6332386915, + -70504.44002347355, + 405209.7695122363, + 109205.8892351293, + 586607.876237558, + -712531.0858282759, + -653203.1728910306, + -684804.0449314632, + 942573.4499942933, + 242950.78076844878, + -19300.152901333688, + -580762.4057397209, + -191488.59545737063, + -77572.38474831896, + 529076.7318097918, + 36891.53405376744, + -759955.1160411198, + 589971.9146077507, + -901190.6291528433, + 499075.9648008205, + -376632.64586787904, + -737243.4192446303, + 853135.4107512173, + 686457.484463654, + 521281.92136153625, + 436109.83555232076, + -806662.233202842, + 910837.6132632548, + -57990.46711172173, + 705446.5746370952, + -335142.5920204685, + -740869.9580183655, + -222547.52258726262, + -832582.2800456601, + 752502.5085062573, + -355715.62235270557, + -340834.80306814297, + 428799.7229905596, + 825623.1467348118, + 864376.9474193164, + -590701.5223808518, + 226406.7560612437, + -190301.22204413003, + 117844.33198406918, + -167083.48793762305, + -918312.1848531989, + 706355.099357429, + -689526.4698726246, + -139916.09976592124, + 937041.4017451311, + -105081.2965803316, + -313056.76625531854, + -642695.7852381483, + -477291.66072254523, + -479638.8660145041, + -954606.2705035188, + -764170.8582776308, + -204790.6833328741, + 388801.7469946561, + -582315.3533217438, + -264500.0476571513, + 855596.2450162555, + 615016.0555362441, + -529690.6065362472, + -92293.23122608424, + -977538.4639587627, + 162333.8569723003, + 831880.4547810224, + 71904.65654530453, + 675024.5044104133, + 72375.46008868323, + 46135.90915074761, + 355766.25091383286, + 532252.0967147304, + -198592.19940670926, + 485939.57244768913, + 729754.7566167935, + 258128.7709562441, + -728546.1606056102, + -630700.5539374348, + -200619.29049779504, + -773476.9110081785, + 488523.16278449906, + 479337.6307810131, + -271896.07094580337, + 964709.7956724573, + -50300.24303033032, + -150561.66474866783, + -743883.5859656468, + 6067.961335880279, + -834076.6783541171, + 390848.29142426414, + -744704.8915039272, + 148673.7205464348, + 130164.00155151908, + -739805.0759459997, + -606712.3381309088, + 543108.1443403312, + 168551.44621210094, + -414611.0283050124, + -174433.36460080495, + -417367.8461293129, + -66996.95100886682, + -247523.22942080896, + 851726.2346237586, + -382806.5929270614, + -764137.0198895781, + -144882.33504458336, + -287041.85032694094, + 922144.5453300388, + -438724.37629613816, + -194690.83075642347, + -238963.84272863713, + -830756.8210522116, + -998872.3625218678, + -735897.559121462, + -11490.554677258791, + -551483.7339817027, + 130910.4232699998, + 311550.7252590313, + -797945.4411613465, + 13303.11779384674, + -410427.3486838355, + 26724.00570022315, + 820769.508205695, + -623841.5453229153, + 714809.7032498644, + 178509.2018106782, + -558219.8487983729, + 391479.0624586482, + 322721.38939944515, + 270285.70623006474, + 225652.9409437853, + 329288.4568519665, + 479297.22540408594, + 72393.98898358118, + 480997.48548787157, + -63407.82252240862, + -106200.53386350947, + -862100.7045863331, + -800151.1762025431, + 897190.8479211597, + -208079.4572164033, + -944846.5041680955, + -417134.1848025454, + -290539.2420382984, + -887279.9756945478, + -651653.1621533652, + -568650.6221028853, + 993745.8997021096, + 363619.80312148435, + -773588.2394005709, + -86410.67840110871, + 795103.7666010536, + 388097.2852283364, + 389360.08405924926, + 265851.2953266563, + -270637.2190499677, + -43689.021691403206, + 896292.0975587853, + 145659.90931488003, + -707573.6735011062, + -414518.1562494407, + 388940.7237708673, + -332757.17185846076, + -109478.99206912171, + -253272.44746278966, + 837230.831091525, + 35545.38425009501, + 495908.44835821545, + 633373.1055499234, + 627513.0531605089, + 5777.368955611983, + 969500.6935214978, + -628672.3052450034, + -988360.2995223184, + 955674.4657398859, + 857473.9729792982, + 79213.30937647352, + 544791.106235158, + -588655.115372228, + -584061.8464251115, + 295371.4252235613, + -27949.358020108895, + 797890.0566661789, + -113679.02802626473, + 310251.22360131843, + 164283.0055700728, + 989816.9831035233, + 314454.13470897754, + -954595.6174402137, + -933962.716237892, + -510.3139191593442, + 590120.0921364109, + -692982.0177167297, + -553070.1308286763, + -448513.0443459069, + -334263.55628303875, + -250006.68051605744, + -807962.1075369099, + -902649.6626201568, + -402653.8862268767, + -80624.23169326305, + 552387.6544885327, + -244246.73564486898, + 205076.87753395643, + 606747.1336211909, + -691607.6877215977, + 279178.27722758945, + 131674.4182435794, + 612362.2882014046, + -71914.47212366264, + 225545.22028382996, + -925298.2728422172, + 91195.20050579122, + 735378.9273222877, + 349647.39931373636, + 145479.8058977542, + -947552.8736429994, + -688198.1244644225, + 788237.1509982867, + -18287.692185093187, + -12554.053268992948, + -134804.31729459565, + 63748.03762520176, + 798123.2330098836, + -730693.6302666769, + 991252.3220477656, + -724237.2665346239, + -213759.13286812452, + 869304.3468442438, + 499943.2657077738, + -579686.7700302646, + 867438.5397914342, + -4827.577509003644, + -702870.8634419405, + -268633.07539224834, + -131930.58197698227, + 700768.4067999736, + 614951.4848368847, + 458579.5987339245, + -911098.2844415642, + 317601.92327939294, + 504389.96755462553, + -401022.0090703962, + -708616.5556564817, + 294994.05839854374, + 924757.8050174923, + -249865.37102783157, + -427540.7100207227, + 823338.5231087147, + 250755.82625401815, + -380771.6027278605, + -445182.7447094121, + 855370.8433321096, + 540689.0465774519, + -896844.2337849404, + -439966.5707033511, + 309854.33003742876, + -156030.00790683596, + -941903.7408313074, + 15657.746200550937, + -764227.7601215485, + -190501.65951282083, + 926306.3770224456, + 542915.3159955675, + -871340.918829856, + 327602.8913810769, + 408629.83762795135, + 750911.3760363817, + 840277.1209069031, + 639627.5654747885, + -805200.8901203491, + -751563.4689428771, + -555548.58774043, + -527930.7890435532, + 147982.52449250926, + -604309.8816956244, + -66662.88622797457, + -142276.73243965567, + 195841.51413321306, + -765345.5907933846, + 224531.28390583687, + 526520.4578980436, + 479163.58732411556, + 901577.2016848045, + 240478.33947415854, + 398039.6335712524, + -485795.3631268366, + -914154.7524448048, + 872437.5789128591, + 849668.834493184, + 644733.2242558899, + -460879.7702003471, + -989885.9851187116, + 183309.3946068618, + -824909.8451051109, + 687404.268907857, + -429108.25412861933, + -595990.473675589, + -181390.3292990644, + -686538.3272101553, + 208812.12265455473, + 821746.0434958095, + -238610.32768447953, + -570111.8851928166, + 797758.6314379035, + 561758.7789009119, + 843756.7231722763, + -31810.158001698506, + -171957.9345640796, + -114038.38839013437, + -368898.693234492, + -863832.567187541, + 787162.6919805454, + -222170.71458106406, + 121858.85247747663, + -772067.9564600968, + -784157.5552125777, + 158571.17886839612, + 177798.96221545432, + -620869.2866417456, + -180971.23048847297, + -5574.809952380689, + 233972.66599604284, + 116245.11793368476, + -134478.26459281886, + -666823.288382161, + 579455.079592233, + -467262.6148439527, + 294975.2601213742, + 543888.6076355122, + -245507.55541121028, + 758539.5335840486, + -859686.782273051, + -141632.02029586319, + 108260.35873663887, + 251197.94471248414, + -972132.6558257593, + 981186.9044304946, + 957377.2427948934, + -38673.82262208263, + 883506.9779315428, + -811148.5473097427, + -232038.3512543973, + -608990.7118987952, + 524049.83397608064, + 850729.4896499905, + -644057.7138295526, + -459114.2883209851, + -978545.948621703, + 403910.2770509948, + 799750.1403151368, + -906109.1085695425, + -603784.8030093274, + -294101.62692507624, + -504573.22072466405, + 763622.7483051696, + 85185.09216985381, + 937964.2752123139, + -819933.6966757734, + 117414.68728588545, + -529632.8416100357, + 407849.35765214736, + 306181.0172647059, + 170270.17455860748, + 724853.3688152217, + -937535.5504195595, + -859985.4705176337, + -688032.7238607942, + 557391.947496803, + -560661.2367481291, + -187084.41612170535, + 662360.6947379261, + -576159.619036896, + -519623.84609460743, + -832944.397357346, + -215800.92803963114, + 199075.24870778405, + 394614.72439210746, + 352366.57067190215, + -623029.4332761565, + -603707.9177931123, + 10360.260927728903, + -548271.1296783158, + 21788.795921174886, + -769299.1530569749, + -821186.9636366412, + 900779.2194563157, + 182241.99218478377, + 272834.1028016543, + 971904.6866248937, + 764825.2585659927, + 362827.25527501915, + 541692.996148921, + -925406.735275438, + 308985.1726458357, + -96153.49873239044, + 346831.7239236365, + 503378.7038212665, + 586886.7109516746, + 595780.2402537148, + -963728.5844242207, + 318664.61664875766, + 279402.88259371225, + -491878.34233527817, + -409101.8929978014, + -866017.5489527519, + -251516.68698053743, + -299647.1643384531, + -83799.97128770666, + 448362.05638158624, + -533859.336437661, + 962736.9650975642, + -28443.047712939817, + -301208.0583927057, + -353833.05990219815, + 167452.6822446154, + -746593.9791985748, + 955947.5418821241, + -499328.8053326861, + 316232.58918972244, + 366636.79277629725, + -288547.1455220523, + 245195.9363499303, + 235888.86308776337, + -552997.699364014, + 593303.1260341944, + 489050.00710199587, + 539313.0418165693, + -315125.91695923463, + 534719.4402519176, + 793149.2200619061, + -868389.8986401182, + -172331.15737877958, + -91761.8873428805, + -210116.35963346652, + 395606.2910396527, + 264162.3282401524, + -647784.1034083248, + 345839.8296194911, + -461608.042010762, + 202813.21901563354, + -940957.0717831916, + -109983.74705520587, + 845084.6710773596, + -752765.3016842231, + 436452.16607724025, + -25086.872014054683, + -967602.7232259676, + -251233.1686301623, + 974085.6677052858, + 313601.9890748296, + 497399.5391862629, + 664537.2889734871, + 667260.2455580661, + -392080.3345065982, + -303519.81932502234, + 922918.7525526405, + -21113.56907745132, + 962506.391907379, + -41909.80183653714, + -642915.2614714748, + 970902.747844056, + -697653.5920095402, + 484438.90283956594, + -399022.00141791574, + -303424.29995457444, + -991422.9130151526, + -976119.2708692483, + -426009.1013400598, + -498362.87473521114, + 153911.72895294524, + 738202.9022251036, + 808881.7666505064, + -316101.8344371189, + 442656.2126676581, + 461854.7596796827, + -914818.184835072, + -818285.8088131602, + -740268.1102057132, + 887110.8021155552, + -200447.47217449464, + -953049.0807226555, + -176233.96315346574, + 829080.011192042, + 458315.88583769836, + -313508.638729566, + -635298.0399664217, + -494510.68649583595, + 889116.6813086162, + -28336.207287975813, + -804871.496733351, + 479027.0055964698, + 29261.851543776364, + 518329.40171165596, + 963742.9327330225, + 132402.84519054813, + 146669.8955315029, + 980867.726299704, + -427500.822387743, + -589376.471258098, + -10632.05328570671, + 115065.27643567743, + -365883.03657564067, + 439530.6615365946, + -589328.8578121014, + 597885.198668642, + -170929.1070357075, + 388957.0261418009, + 9216.576356292138, + -471235.0368947404, + -103892.01976106044, + 20603.31430457385, + 890370.37680295, + -575990.3314369438, + 415033.51132967125, + 68047.90214285994, + -647328.0505657532, + 664130.1603214218, + 434627.21160258865, + -928160.5234004618, + 34730.5396936699, + 803291.2345585454, + 383509.55259038025, + 130582.23727285955, + -250639.40379351468, + 763333.6052188507, + 456729.16084220127, + -454744.80523948825, + 130968.58000013855, + -140678.6939033493, + 414844.49911879183, + -593975.1245301302, + 173335.4152895037, + -368465.52757314546, + 262822.0069579461, + 987602.5222118099, + -348818.8071499936, + 285759.05408772104, + -9325.835499452318, + -855993.513669304, + -363304.084007612, + 597488.8439013408, + 97243.28617677136, + -330603.60724479664, + 187416.40021586226, + 513200.7984407272, + 883476.0808413689, + -678012.3070365165, + 973943.1413844374, + -213351.52521131895, + -688941.1203990141, + 997060.3803065763, + 858702.8823411855, + 496214.383788554, + -902170.3626385045, + 516690.6578063111, + -184543.5533949662, + 292546.4053266724, + -511780.23028340604, + 305418.7888558184, + 141961.07855290908, + 477707.52879901003, + 786586.3643007085, + 116773.74337990231, + 681783.0260473767, + -414040.5033991677, + -737201.9158822978, + 48518.55827067442, + 961334.6481529024, + -899941.1162503663, + -501203.37687945925, + -281942.56904985005, + 818145.42828364, + -122918.52270650638, + 268358.33778312645, + 141177.99544073062, + 329575.5437074153, + -224657.15208471648, + -699024.9894883564, + 212764.59058188114, + 639174.1551015093, + 315825.2202857208, + -962821.1685407511, + 45038.88428834024, + -40001.9478849829, + -362662.6819606953, + 135736.3299043617, + -519778.9557248058, + -690686.5458962872, + 338708.1359236277, + 285567.91232418123, + -516422.410481439, + 694585.2892694366, + 916976.391376023, + 921449.6082577311, + 353726.4989900804, + -722819.454318375, + 760367.0677509868, + 431360.37653621216, + 588702.1503026002, + 977431.0548240622, + -71305.48074092303, + 264187.7242668955, + 662876.7514379941, + 689114.4503598423, + 560353.2055427589, + 311194.9506587801, + 117413.10839336138, + -471752.52777544106, + -706738.7165228054, + 158146.76917570524, + -140307.1091033965, + 518090.9715671851, + -835844.2832427493, + -51311.687570270384, + 60068.20128321699, + 749782.78602511, + 589476.7167951651, + -245263.81653464303, + -158667.86160354884, + -490007.7283662494, + -596989.1835686882, + -134853.19484929525, + -622066.3543018827, + 280245.87520040467, + 738282.357878187, + -865560.5696594018, + 216240.78674699776, + -32287.15480217259, + 652708.8801697731, + 129788.61205502313, + -762202.6042816064, + 763945.952812722, + -832234.8822527956, + -469280.4748211241, + 27722.900338855274, + -393641.6868286554, + 913546.7331465943, + 507031.81580640865, + 168493.94236804362, + -838832.7416371386, + 753783.9474351837, + -889394.71155233, + 170139.08991868232, + -710301.453440974, + 99342.00873687638, + 833194.5002041856, + -583783.441878583, + 120119.52351069843, + 181388.9330170395, + -54131.994661522185, + 529911.8462952606, + -905168.2172854192, + -307621.3753141221, + -134360.58051355326, + 658211.6389574832, + 396366.7115537972, + 85375.24264389295, + -526336.875606502, + -863785.5534936865, + -583416.5324594367, + -253729.6061651857, + -196094.90074728007, + -826303.0724632896, + -923976.9127758634, + 237664.32216878107, + -246484.8215855435, + 209247.97697195175, + -856877.464903594, + 609289.6605710064, + -229306.221338597, + 528809.1194949202, + 479224.44014622376, + -620249.6465113134, + -870709.3195085292, + 940928.5555615677, + -214745.5466234993, + 158349.37394422878, + 578800.4616899969, + -249996.33057604908, + -533815.784824959, + 962372.2516135185, + 84632.311267965, + 319997.8309322886, + -954093.7938510344, + 183082.6978152391, + 555040.297907369, + -341097.19850871636, + 131539.29842401246, + -616098.0705638843, + -132562.22722753554, + -989913.6785975819, + 129350.42221795623, + -840160.7034473713, + 555775.2087518979, + 523648.64436214865, + -737025.2528853267, + 762871.0989849903, + -281994.5994935653, + 460924.6672494573, + 506621.0251963719, + -802765.4660821371, + 942841.3108829072, + 220662.17221334772, + 376978.08038987726, + 769579.465255393, + 558504.3280265343, + 980629.6755579311, + 654485.6471802179, + 495801.67408827535, + 129447.64082344729, + 923774.2404548015, + -682740.1806915688, + -2917.845693345633, + 300120.60168348206, + 771021.6826783862, + 216814.21171666915, + 983669.8479852641, + 522184.2219951631, + -57688.27594316695, + 32364.15907100687, + -55439.36829194895, + -994148.807324925, + 491786.9150110139, + -847974.5782801093, + -763214.2720794901, + 907179.9555902134, + 17746.742534135552, + -749668.8616756058, + 848628.075328612, + -462685.5170257047, + -532274.1595739651, + 654319.808631495, + -388373.37044140673, + -234710.58963889236, + 631836.7783493767, + -898684.4538619114, + -757335.8586361238, + -965680.8157041208, + -389286.9432001715, + -116604.43736277215, + -61066.52629965414, + -521127.90471048956, + -690882.513588184, + -832977.1136049168, + -765221.1890699823, + -689940.7288496743, + -423162.0623450449, + 292048.0804847625, + -649140.7604522945, + 645225.7201356861, + -437651.1229683682, + 96261.60597609812, + 496978.7903337752, + 226869.87029863225, + 564814.8385043796, + -994345.2328199345, + 642222.8940694192, + -408102.14470317896, + -131330.69872609692, + -517582.0916435896, + 787348.938940307, + -765225.9265476459, + -14533.452107377887, + -868422.3051897995, + -520745.37280179147, + -835109.3085778262, + 353450.35915400437, + -846901.4625385914, + 570583.3936024603, + 936902.9256027128, + 351513.36267687404, + -306348.9049036565, + 152630.10089153095, + 97500.28702682334, + 284631.0803318657, + 102102.88920947263, + 432701.41868746845, + -251795.942190735, + 124714.8449397597, + -301960.7960044615, + 725370.5511825124, + 453988.4332138819, + -50755.00588856885, + -670141.3084741643, + 735157.0149800046, + -447422.07637325994, + -885549.3930211904, + 619838.2272940421, + -783075.662140444, + 690886.0627200694, + -795379.7646641119, + -851475.84217996, + -592066.7969136455, + 320145.1439044749, + 880296.6008044586, + 828180.753663547, + -307232.07802182186, + -104209.35985784263, + -272242.8171063103, + -291880.8315045398, + -414706.66756262875, + 85024.16391676481, + -12967.29595703483, + 759455.2651088751, + 116035.4771232741, + 876187.7490770671, + -220281.20520430393, + 773093.7103720052, + 941517.4682520899, + -218460.67021362158, + 745049.2320966134, + 826469.3724807461, + -355920.18368328817, + -684422.458829026, + 936477.1456922367, + -314940.9668901484, + 993002.1840262049, + -626099.8362312544, + 713888.612141427, + -182281.42270725666, + 418352.4765965143, + 688654.6811400496, + -831784.810699766, + 86733.52914857025, + -435120.2020086695, + 617980.3893940063, + 546832.9797995964, + 756544.2136237443, + -743324.068039647, + 613932.4047206119, + -575846.6534108464, + -69041.78580059405, + 836814.6131660759, + 834726.281686301, + -738880.1499345918, + 590242.7408380024, + 422821.111985086, + -899544.7196734758, + 701409.3470021723, + 122626.10348296144, + 941096.4653885924, + -322216.5135631014, + 193255.53151425766, + 872827.2862087636, + -141368.3314694094, + 719633.3486966738, + -24691.683230473325, + 375449.65403399686, + -551583.4845394818, + -620123.2388139662, + 680206.4276647655, + -812275.2303485412, + 195086.13083660498, + -174058.26582650418, + -812961.0599522929, + -621623.8211913281, + -560481.0148626955, + -981915.8445563326, + -542030.4493615504, + -589323.8025723731, + -413423.2600189891, + 809709.7942928735, + 308153.7498309956, + 619308.0630507796, + 537840.9156152819, + -286866.67126349616, + 33451.05922846181, + -757496.9683906252, + -782374.9224350818, + 253309.69590722895, + -912814.4042082427, + 609661.7085588456, + 352261.73826783017, + 954286.742199924, + 103561.59770858775, + -927452.79349884, + 475911.34230118117, + 704654.1693466278, + 205264.41106035808, + 870699.9909441038, + 948683.2053705341, + -34062.63872300941, + -528338.3130711259, + 822896.6027357654, + 278735.46393854485, + -40579.02243977685, + -915749.8364950258, + 659553.9807078792, + -277287.05549408804, + 707214.1956142053, + -895238.0062655665, + 135886.97236071347, + -149241.45499329368, + -63149.16562952666, + 466563.67026671243, + -553672.9216486475, + -229737.17947482708, + 113925.30652771593, + -172048.08512232607, + -605258.6830432644, + -488931.8392681961, + 566270.3725964733, + -833663.1349255899, + 468169.234948705, + 810267.8812994177, + -33415.96103081268, + -242188.22048817002, + -483647.64822008996, + 775502.1634759973, + 789545.6216895065, + 715286.5455839083, + -347233.63810323924, + -124253.01602342409, + 770043.638701771, + -679498.5498179456, + -615312.6904394762, + 739097.3112064815, + 736903.9424725301, + 393077.1877881871, + -198409.42961073393, + 326585.03110612556, + -689434.7713754772, + -239391.44912980747, + -32215.420918962456, + 994419.3723565864, + 79648.96258700316, + 869230.1802750863, + 121796.49071001686, + 844705.9589892165, + 403404.4722209218, + -543139.2374956814, + -372596.9855982447, + -205928.61463833012, + 947168.0769080623, + -977956.3393926435, + 520480.70397851244, + -249433.65271970475, + 631691.3630226009, + -41047.21677271139, + 124960.29178509848, + -988442.5820359281, + 972544.7861681466, + 984950.5065303954, + 925303.2915818018, + -551466.6660725278, + -147377.78182514606, + 279074.6128246222, + -924243.1569144647, + 417410.9512642459, + -695399.0694842241, + -145541.14968434616, + 10727.28426359526, + -338665.9898400157, + -810224.4186979295, + 56722.9360080097, + 861981.966217582, + -439714.1738429704, + -196013.41830216802, + -609793.0347722003, + 190720.7410380365, + -509071.59399098426, + 236506.215392416, + 67187.6065373942, + -928466.9435540672, + 310342.9292630211, + -805675.2833671364, + -527666.5990605796, + -356328.671811996, + -288075.12424565805, + 303224.6802901042, + 284167.0171261672, + -738858.0728741565, + -791000.0656844944, + -358749.8174963055, + 282936.27102726715, + 409571.7583330114, + -782786.5184386442, + -716952.6715066084, + -358590.7451860484, + 527387.1458490185, + -250713.7522315739, + 256300.37060520827, + -697301.7507719572, + 417339.39992854797, + -860336.7506371288, + -924972.0571454045, + -481340.4617895702, + 751175.9252958652, + -567978.7127955292, + 558620.9289424835, + 320136.0617984872, + 707320.9052024276, + -627703.3977639938, + -102503.19197401626, + 729402.6218670637, + 964595.392484441, + -509383.2271404166, + 559173.6530199205, + -470816.4104811543, + 931290.0789234064, + -307372.2410636328, + -7676.840612845792, + -845116.4701019463, + 243627.10163159028, + 84973.33970087784, + 772569.7862625618, + -50809.318772638835, + 524751.6952832949, + -81312.31733415434, + 132234.4480619735, + 104612.17629805897, + -84218.98128980599, + 530964.126127407, + 947440.0938244332, + -825682.5413160255, + -739219.8039864064, + 683000.4284023332, + -863828.3042814046, + 106696.88574342361, + 201119.44299399888, + -931431.7060271222, + -866910.5069906206, + 460688.562183279, + 782396.7437699332, + -682263.0977308097, + -900824.8650649182, + 239697.59166171477, + 747926.9815318972, + 856771.7907479047, + -829757.5890186785, + 443454.6284123364, + 377161.62360497884, + 317544.30553904234, + -75632.39730388705, + 478308.24354802124, + -104883.05833223733, + 999015.61465987, + -286987.95187603985, + -305045.69730364793, + -357944.0118375539, + -892978.5965803307, + -966462.7489620914, + 775131.4148253885, + 593772.0425514368, + -405925.8679461517, + 591050.5234070861, + 17065.276408608555, + 276519.2093188691, + 791621.2481697167, + -340937.84932309366, + 530308.6334495109, + 296367.39607173903, + 344390.17559937056, + -951475.1084669182, + 204357.5254801606, + 971022.9951529492, + 613772.3420304295, + 276545.8422374891, + 798243.2792879139, + 648054.6948441812, + -557037.2814512706, + 196216.62456335654, + -596037.4341912175, + 759937.9527852299, + -979770.2207373817, + 985171.4920396586, + 589533.3045783183, + 120576.86989363447, + 111284.91891042925, + 821064.1488298398, + 929454.9399675176, + -633507.3707911023, + 697423.2590773421, + -326868.2114938957, + 648817.5145515474, + 953719.7890397777, + -916497.6085319059, + 373721.05327601155, + 47663.33989681448, + -93790.0061594068, + 141487.62533589388, + -439056.0987347607, + -920486.1781743885, + 363949.53894583293, + 721912.0685070913, + -691544.9409809167, + 352872.19326222275, + -951551.0421738087, + -471187.12068855384, + 240952.9217686328, + -445496.9252113277, + -371120.74698793964, + 862786.0745609485, + 973813.3464054499, + 680168.2324098508, + -364318.19122620544, + 623903.4854554744, + -905849.1001528237, + 977863.8776084996, + -139186.7655470047, + -145255.79515025512, + -555600.1655529413, + -667474.0913689303, + -888930.6197847205, + -760149.4230184667, + -951646.9750301093, + 152819.4083321528, + 237850.61871997715, + 464169.62633509695, + -159519.74000705048, + -422049.8748792363, + 776751.1209218337, + 658084.9323840506, + 227286.1010118763, + 505604.86355553434, + 316169.9514436445, + -846093.7023891874, + -34061.2467586372, + -943123.2765050895, + 946307.0467768089, + 23274.593973314993, + -521564.73293207405, + -293524.2719411146, + -866234.9319131919, + -661448.478602066, + -296371.75177707407, + -29583.8881174344, + -235505.52792304024, + -333402.4664941595, + 860229.794141804, + -338131.97180013364, + 766088.0973761603, + 553609.6930637724, + 818236.9752655978, + 499670.7325811123, + 451154.6139304736, + 621781.6560029044, + -254941.06479757116, + 478724.9905237874, + 482685.24794928334, + -64131.87226822847, + 221594.5267462014, + 360393.8675889349, + 980320.9721807307, + 820421.2425567443, + 486939.8239928835, + 56570.961797699936, + -226071.57558055845, + 190124.83147423965, + -594469.8220476481, + -886462.6573892627, + -987526.1725025544, + -346815.0341306657, + 779903.8494166494, + 570099.3708950124, + 602003.7409044337, + 356097.60594827234, + 13142.064982992973, + -99821.81800508361, + -88667.0633129989, + -303699.3162004098, + 10143.727770741905, + 583785.1235861715, + 648536.6726233534, + -543098.5469692507, + -583033.1723371831, + 813566.487213899, + 734825.3565112803, + -328855.3062946333, + -466181.3222802531, + -365479.9084505409, + 228372.32525247696, + 903934.3780284302, + 320727.1588662637, + -320383.30347257736, + -860049.2925058996, + -952327.836973756, + -228157.47754152227, + 782624.7715087956, + -426445.81035255233, + -112544.68212304625, + -971010.4224158174, + -441847.32085370994, + -418327.90384353546, + 345048.25542075903, + 994327.3674548118, + 608889.7739436816, + 669688.702007017, + -301691.96709017124, + -905703.1160207894, + -977907.519841735, + -631623.6249763279, + 499862.48325552186, + 171016.39441702553, + 388685.3922678901, + -422694.0721096835, + -878307.6414912663, + 550143.9271309747, + -336398.84910382587, + -756511.3462728874, + -912599.3077388391, + -618194.7345493917, + -390670.22463477973, + 794374.6793098185, + -731922.7386281167, + 950520.9405276891, + -854733.8545677027, + 541486.834250211, + -861410.3882175988, + 249761.57438166125, + 150644.44400739018, + 295328.6415237062, + 807385.6146040938, + 66739.46051902791, + -436897.60210636817, + -134417.1446968374, + 815789.0877785081, + 640216.308506157, + -865992.2514942115, + -660342.1055368074, + 512701.9041428378, + 355423.21677749377, + -70009.51815623413, + 345187.76924801985, + 349814.3658093178, + 181674.71189755612, + 930780.8357906794, + 262706.7544336994, + 48223.20635042265, + -424374.5680725546, + 424755.65046534536, + 236557.87223559475, + 913139.7718660278, + 941144.152200399, + -454102.586298186, + 194304.5691078511, + -136917.6932770111, + -354412.68626613164, + 581036.1480066619, + 910852.0920602485, + -238770.87110864758, + -519975.3647664729, + -374922.1653882484, + -980354.2252625735, + -52779.7952836504, + 926032.2731800559, + -225025.392634997, + 116872.79161366248, + -295744.19989571575, + -320875.60537628556, + -307751.5469476992, + -65132.54734917773, + 576024.1777804472, + 301379.51554337563, + 159426.05803298336, + 577226.6413117722, + 4664.21505131942, + 798580.4599391682, + -401261.4412802744, + 266995.3016585989, + 808045.9233775726, + -621784.3596358845, + 547554.522703148, + -340891.51386623963, + 888754.5034339421, + -157916.3099396197, + 965810.4953762245, + -475203.53294961626, + -116908.34008703077, + -199161.7199842195, + -233660.9642220957, + 894050.8535461549, + 44489.13091515072, + -492008.83867498545, + -873116.3832666307, + -648100.703862506, + 595732.8868098641, + 718339.1568646942, + 605367.2874301472, + 914384.596585353, + -221209.96221077992, + 603137.8048185287, + 462305.83652924537, + -864130.6121854298, + 528757.7981371396, + -506008.40391131083, + -633597.1107892569, + 577552.1941889198, + 912345.2228098568, + 578520.1572902172, + -96072.69883837311, + -101423.73392416882, + -113894.19503511599, + 432865.33585521614, + -270425.98007576447, + 596801.3489205797, + 253117.49588625054, + 493124.36218234425, + -112288.82137357688, + 134012.77358148622, + 238669.43887709934, + -951494.7367034319, + -146677.65481210337, + 699835.9126720852, + -942444.2012530356, + -212552.6430438953, + 971386.6902436607, + -339120.88280133635, + -200805.42058790484, + -802814.8518692915, + -9910.157261713515, + -145721.03503708367, + -728307.274642908, + 43615.277812140586, + -742932.4318120556, + -646027.8283170635, + 369888.62879991834, + -973097.1547492513, + -631698.9280214333, + -273744.563421626, + -417287.63810848957, + -164427.75295124302, + -148428.60327384554, + -167801.14028511717, + -489426.9334935224, + -278793.91134173615, + -340296.8578388577, + -556484.4102847719, + 438655.2061440006, + -276452.37121939694, + -312836.70772736374, + 929222.3654516859, + 893714.4238273806, + -473746.73484195507, + 531559.2164937468, + -802521.718652915, + -905290.688275465, + -237000.90195947853, + -147293.3787711459, + 291600.58864682534, + 986399.2788948404, + -485075.06632204156, + -870289.9228691126, + 624760.6382367495, + -790288.250497408, + 752269.0566820236, + 467576.6729269193, + -865994.9152429418, + -793110.5030413155, + -474701.8137908143, + -306263.615920803, + 567195.3729509839, + -734916.236970009, + 492843.5812387413, + -391624.37866300024, + 164122.44981536551, + -232944.89130545105, + 975469.726241246, + 844287.7477090895, + 404011.35944655776, + -640305.2951774928, + 42875.41627960634, + 214010.42808227433, + 740215.7473042416, + 80541.06876468725, + -818263.035605683, + 117358.92862004315, + -389524.4486992695, + 980386.5459952197, + 32881.61159634773, + -228878.40701000005, + 167355.87941127262, + -184207.09026324135, + -322222.1009867254, + -911386.255718227, + 468397.0603039731, + -145881.92459988635, + 20289.13467154059, + -130695.57461700997, + 654920.198646014, + 719850.4607971632, + -355735.5679648002, + 345443.24182197993, + -730479.4858215358, + 252781.59937537214, + -74231.81779072153, + -615785.4515998511, + -540369.6251237015, + 383112.4033338451, + -511216.2264416995, + -501092.138278501, + -965567.9043428504, + -839433.4613511378, + -532429.9512088739, + -178821.4939386541, + -822448.5803251842, + -633310.1915515151, + 686027.6814889505, + 231928.85951641772, + -238922.6945320282, + 19343.09191528283, + -12639.75195559186, + -188801.82759107277, + -744755.3782537222, + 749280.2816982729, + -705496.3797711047, + -978498.9729623264, + -412114.2968546636, + -359182.9439650376, + -631168.3449491494, + -436244.0560767935, + 126147.95625243768, + 495248.3460312427, + 872207.2549893862, + 763815.8244084439, + 538774.1780694057, + -403730.25814271515, + 819782.3778926807, + -273122.6818702672, + 59096.47112054128, + -672168.527766483, + 881841.866364834, + 350907.38638445805, + 604854.8886693304, + 315731.06400445325, + -70636.49318735088, + 220402.07476972108, + 10276.306437494442, + -327893.4539160956, + -836192.0242930638, + 988222.3716726251, + 817117.7813975348, + -382381.57208321156, + 317152.90156630107, + 472977.4384703318, + 524509.9575316767, + -70957.70632608756, + 578095.1169898873, + -460262.6208950564, + 932693.0546655076, + 669242.1796192825, + 898594.7373659344, + 482810.96346390503, + 46614.397469187716, + 613503.9349926028, + -328667.46486920473, + -375082.42819396954, + 554434.3536955196, + -152235.5548132317, + -509390.545380086, + -32784.668225617206, + -501202.2611890803, + -157964.47741868568, + 524473.4985496274, + 591290.7650467849, + -997624.8203061946, + 58262.989303087044, + -561307.7408716826, + -410503.7659081976, + -714948.8255658642, + 728526.3339241468, + -919555.6882750937, + 629500.2194310939, + 504822.0883629118, + 461006.2733798683, + 993169.8272048872, + -190372.42927670528, + -833592.4892739374, + -719753.6594739618, + -938210.1990110476, + 828057.8115786785, + -238202.51522141646, + -958559.1409717347, + -24438.436745954696, + -83509.411334598, + -359737.5232536628, + 635658.6298983895, + 346033.81218879245, + -584065.5313868428, + -424191.7750400952, + -795188.4583446136, + -926390.3870031927, + -192314.89519482836, + 837315.5068836316, + 947912.7199171691, + -315901.9337075899, + -413380.78296095703, + 607344.6876092256, + -82009.2978524103, + -16617.17929283868, + -483953.7495870241, + -480353.54303317115, + -115491.68593012604, + -237962.22102295837, + -36646.96630013054, + 476471.5152563388, + 978014.421760589, + 166990.14919309053, + -75256.5164660608, + 704061.1470914854, + 760545.8185140528, + 271707.9082764273, + -766792.2989184954, + 752371.0571407238, + 685002.0750843509, + -152387.7131267184, + -38615.33669416017, + -982653.453731932, + 665420.1517247125, + 989118.9587806035, + 780812.1694900701, + 988444.0564038804, + -122241.26006716251, + 541462.0618325197, + 549303.7161436194, + -648806.7077126907, + 415501.4804787651, + -134815.93054463016, + 122351.19856486021, + -289838.61323574843, + -938958.6288578539, + 210809.50595830084, + -43728.42986289638, + -655509.619102224, + 648375.4654321772, + -831518.0754764182, + -240776.02362994765, + 26639.230505501655, + 32440.555743900703, + 640243.7745336627, + -993279.8238941705, + 334421.2859764597, + 932139.9698931639, + -267927.02472327545, + -833849.6950161174, + -455186.4174345987, + 742726.859209176, + 375032.87676424923, + -901061.6611573094, + -200680.5681862598, + -29098.322258459542, + -969099.5620265845, + 606470.9157401051, + 688047.7310671486, + -504679.8049857015, + 791956.2605699479, + -881551.4400428921, + -302741.91980461904, + 638370.066355362, + -532379.4632399773, + -112437.22020383018, + 998204.9462851814, + 221673.05812289938, + -435490.14728919585, + -602451.2772119255, + 838428.4977580552, + 640429.952443936, + -864861.2267447675, + -484302.508192239, + 109128.89678128313, + -20328.54839748688, + 828995.4951326104, + -487462.2273071969, + 713017.6155422061, + 101094.90244385455, + -615236.0198332516, + 407851.9899300057, + 738444.4700362957, + -326348.93110190454, + 549713.8383506504, + -789031.5682618187, + 927239.5313433468, + -644852.66152537, + -848674.8403956364, + -90327.43701721956, + 344851.7126963531, + 582211.9868980944, + 494938.47216756403, + -398224.02858665097, + -13117.584241160828, + -476422.65956851083, + 463827.87232882984, + -198483.34034838344, + 861800.3364449494, + -536551.0299197846, + -564971.5754824718, + -438391.1547383694, + -284302.4138421264, + -763138.098079924, + -45475.32864353476, + 882993.5418502439, + -795097.813606658, + 778033.6674893287, + -2418.8129155333636, + -669045.763451928, + 852396.2366923961, + -867435.6178178153, + 141130.79943615815, + 5859.207615196205, + -430016.71368114057, + -311136.1816182663, + -92202.74906087144, + 726396.9774056793, + 203275.99120218464, + 609164.9786011094, + -820893.9356755016, + -976925.7991053668, + 908116.9482987425, + 50135.352156308596, + 307470.6809337242, + 624935.1013253545, + 750077.1034427078, + -637976.1884960186, + 25448.887234835736, + -550020.0952087349, + -746197.0227358456, + -973658.3178920841, + 978186.6826866972, + 680227.57286416, + -950532.6006931318, + -985116.223945313, + 276446.1342637452, + 555812.3774844274, + -561906.6680129834, + 585465.9502753434, + -183246.98086339253, + -300315.4713015126, + -618267.1634012104, + 820535.9739558253, + -104275.09765960963, + -5346.58817616851, + -864617.2015054823, + -11397.760439159965, + -422153.3977464358, + -905977.0547811708, + 157507.68378500603, + 173869.07234280757, + -856254.0526185319, + 11332.246300312487, + -306103.04654401954, + -956467.8967193629, + 351871.0630276667, + -53051.63699602034, + -799163.3175611261, + 742842.9453996242, + 272709.27656412945, + -794318.9590493409, + 990134.2905889245, + -758069.4118136786, + -709608.5416866865, + -596240.2829503573, + 774885.9141317729, + -690494.1635634536, + 990929.230161747, + 896250.5405987363, + -278399.4663815832, + 188803.00874917165, + -857047.8676380799, + -371863.4527597935, + 404092.4098476062, + 4639.789714036447, + -286453.57823014626, + -719632.5292042802, + 888654.7196585234, + 709150.6721742977, + -17131.11180112037, + 410570.8990221861, + 286646.4790530028, + 996029.5025672762, + 148476.7391556827, + 509349.41798587487, + 210255.15073168412, + 926686.2733395682, + 853052.2156470184, + 154181.9189454976, + 361502.5767059032, + -637520.4295303245, + -22692.749180103, + -972902.5106377238, + -941306.8841809924, + 125310.90758352548, + 448987.6137132358, + -470790.5889628796, + 272112.8848982979, + 688402.4103696209, + -782225.0600537152, + 337320.4438815547, + 585685.6956678807, + 782037.4540348713, + 323611.34131160576, + 962111.1065153991, + -708972.5664482788, + 785076.1176649188, + -613759.6537262494, + 874620.6567376726, + 519880.2158460802, + -240080.77759907919, + 867303.4894966078, + 18586.59640843885, + 718317.2618722233, + -109884.420690743, + 60893.88399643325, + -793863.2538143109, + -823096.4695055234, + 541984.3046998187, + 502612.91624473524, + 850451.3240314535, + -443566.7466770268, + 76572.42006685339, + 752175.587599917, + -691661.6245944632, + -420109.50775639876, + -923914.2776682483, + -96873.89215060804, + 861993.7621760052, + 312068.956212292, + 393104.88502786536, + 413417.946519302, + -623742.7982681545, + -988864.157823258, + -496497.2335478825, + 495836.4964779549, + 667658.0968566479, + 183159.6345591602, + 548791.2674250366, + -530794.2353924422, + -872106.4705118968, + -967081.6457778057, + -295675.77862820606, + 489241.69586654374, + 114351.63197177456, + 928656.4360568917, + -481332.9520845115, + 205154.82978101927, + 809021.1094255167, + 648386.6148555946, + 624035.630911147, + 111741.56162165417, + 462622.3479891516, + 847774.294941535, + 866910.0309817701, + 983925.2318834744, + -177176.59501690042, + -389312.6651434737, + 797430.990397737, + 989151.7564085644, + 244878.55848080153, + -485502.753489353, + 46774.670624054605, + 60435.485430123445, + -898449.5125900214, + -744796.6017609286, + -862882.6783479553, + -157888.66223432563, + -972803.6790509165, + 470136.2829271827, + -975688.118474598, + 152992.7080337581, + -23354.031071151305, + -668333.625705809, + -876205.9164195886, + -883069.9837239113, + 426598.1861566983, + -869287.3247835517, + 879853.569689026, + 546594.4866078043, + -99509.8622748074, + -302744.5540407543, + -731855.0644453203, + -272627.68700988713, + -278223.8655805169, + 888957.9283436493, + 660108.9266092846, + 917268.780933918, + 669599.9344263385, + 727831.5920271352, + -978525.2021719315, + -404913.5781783684, + -34753.84899003142, + -71156.82005439771, + -802907.5131513008, + -700850.6394597387, + -921930.2499325539, + -162433.55914885437, + -334808.4674539402, + 435073.6914931985, + 845636.7029966115, + 207135.67822526558, + -96026.04785172586, + 199428.4919916447, + -424082.1046796668, + -16898.45075365981, + -957590.3912369654, + 139886.54128272305, + 394217.39772983023, + 844416.4301755194, + -653140.4056687764, + -834119.4183135683, + -156832.36929292322, + 551304.5390955278, + 176337.7315588448, + -663101.676063939, + -67259.71288117827, + -773420.1471329172, + -182063.7869665904, + -955268.3965395592, + 327514.9676002464, + 642530.0727235521, + 973285.9105600205, + 951858.9912748337, + -969172.2595629728, + 846551.2772597088, + -61163.42131961572, + -93877.61484184742, + 979221.1718722845, + -920741.4436678549, + -594515.5212872077, + 452862.83363979706, + -728781.7413482134, + -919477.2161480862, + -882764.4693958461, + -264757.4637711385, + 841593.6916205434, + -757659.8021381089, + -999019.2228408539, + -596917.6177809017, + -459175.655123353, + -716602.890959771, + -500483.8474121998, + -840020.8231140387, + 989875.9171430891, + 433627.0314213238, + 655071.8827625411, + -129107.77606289559, + 77293.70857259043, + 428432.3133948817, + 541975.5819624048, + 664882.759408806, + -716933.2276750136, + 570423.3463876566, + -745832.2744820971, + -566363.5393751377, + -155364.70874316798, + 972210.0894667978, + -464628.53244664235, + 921176.4067803072, + -40357.7575256151, + -193500.85153562092, + -980076.2235248009, + 918901.7331085308, + 881432.2925423266, + -507099.1839085488, + -332661.5783185198, + 587733.3523546178, + -636959.5999525497, + -141133.73722255696, + -264003.21528352035, + 220983.1286203139, + 725863.2890422947, + -543648.030735856, + -950317.5831300783, + 223913.6095940133, + -362353.8430032773, + -194579.08321879857, + 286151.61766757537, + 977660.498099364, + -176377.3243333846, + -768821.8593968159, + 80553.70193168665, + 215160.03113057947, + 133973.190815301, + 14309.102496320447, + 618782.1244699516, + 359096.88520256465, + -565747.685903387, + 889600.3765064016, + -777124.9274659591, + 309531.6997973414, + -75919.07408138998, + -454143.96940854273, + -785630.3454262159, + -694477.9817728173, + 92575.85894631903, + -212228.4886969661, + 473307.8813019951, + 203860.33817112638, + -221340.06115960414, + -981006.9289098473, + -975437.2548396133, + -385536.93670941814, + 728597.5080182458, + -562186.4477946741, + -389225.06415039336, + 25621.028918850985, + 430823.64465525333, + 740392.9498443081, + 678633.3729158305, + -85018.46833585591, + -878045.9821414341, + -118007.17027903684, + 487321.3323061261, + 874324.767502872, + 127017.29514174654, + -436085.1153599603, + 348440.3443451778, + 309205.80936487106, + 972247.6583574327, + 763742.4912586879, + 897545.3621887406, + -502720.5229167948, + -153319.72724914667, + -205680.67829882586, + 545787.881592392, + -227452.0543237959, + -258491.8809154342, + -621266.9560449793, + 47304.82415004889, + -648693.9622705946, + -997858.9143206262, + 270633.6365727273, + -223806.04027736007, + -300981.25730592496, + 763076.761484927, + 642887.5529332205, + -432338.062561755, + -163576.2588385341, + -963363.6620967619, + -683224.2199831498, + 856808.2197890275, + -987666.2676369658, + 479609.2251199442, + -80915.26052497078, + -201293.44341346656, + -173683.12627848348, + -508387.3170630311, + -435191.4569828126, + 584313.785397261, + -109722.51489403195, + 481190.76916848094, + 108791.43831964266, + 68776.18660720675, + 622369.486735215, + -209513.53982177845, + 650541.4866307242, + 754712.0658988255, + 813752.8634957385, + -298356.292464911, + -61215.42033610039, + 436744.9224343889, + -330041.7260647648, + -334831.8316804262, + 91967.98304206277, + 28156.969675589895, + 547236.7988988012, + -374049.4180060154, + 565668.6981676611, + -785453.5126606135, + -532090.325297228, + 185154.70142665124, + -497283.4969205837, + 860027.8346385706, + -814959.3364254577, + -282139.9481285012, + 820268.1822956883, + 256237.40116499417, + -275552.67409980064, + 485113.3110041772, + -959288.5572765302, + -29150.728584728335, + -606306.4889926997, + 431974.4612779708, + -115658.87291454802, + -141340.8033040664, + -639476.1138294744, + -873604.5512851904, + 356698.278740061, + -922327.874832231, + -157176.03664447056, + 683041.7962712235, + -580535.0009915861, + -905786.7234813663, + 323574.0994880893, + 419768.9946689729, + -948491.9834279742, + 687938.8977342619, + 26380.444313031992, + 79963.71184017637, + 190785.54963623497, + -340201.3266911328, + 91426.61387893325, + 245229.65292556954, + -687731.9975273454, + 422619.73028283607, + 82640.69749756575, + 409409.64705632086, + 541844.3062241749, + 241268.21754474158, + -873262.8003619645, + 344162.29020153667, + 322244.7211868584, + 31269.583853828386, + 877970.1559976565, + 43613.1252557781, + -696935.8982222822, + -235858.8432603941, + -399988.58295613027, + -64152.80407367008, + 432237.3287891819, + 201644.68375252697, + -52105.695444468525, + 536949.0200655625, + -30057.02775410657, + 245155.6867537943, + -156326.66866772072, + -509475.2787714667, + -410466.1960566309, + -196989.70373274927, + 112978.40715750973, + 802669.2471139152, + -99956.64532868864, + -868964.024109765, + -420588.6028962258, + -988293.7621873369, + -661473.0315575114, + -19098.448603173558, + -885452.1533373225, + -546358.1912804205, + 905081.4248111472, + 459545.7111017087, + 246807.37620190406, + 329745.09348034876, + 929943.7776050983, + 145914.46635007087, + -614194.6682511497, + -9454.240677924774, + 412366.0488617531, + -707537.8309552954, + 803685.9727040591, + 687019.9141633249, + -55943.551977541974, + 817441.6620766443, + 412043.04027081974, + -852743.0058874162, + 620344.7129535171, + 262995.39292433404, + 4713.401427909769, + -109873.48881074932, + -877041.3220525215, + -371779.5231673671, + -588533.723513192, + 302563.74099995, + -839618.4403552366, + 509332.08212782064, + 118186.19450077206, + -295941.11791942647, + -751610.2740211206, + 838850.8886677693, + -680242.5560828301, + -529541.2451326133, + 910213.1889249687, + -335333.1016434902, + -968678.9895839087, + 271258.7525951278, + 162547.29342908724, + 91138.2414169597, + -916202.9862435139, + -297488.8215832743, + -188031.03752062246, + 492982.5007140298, + -987259.2489581831, + 518416.15780345496, + -713094.3552406557, + 853275.3857174022, + 418861.95206048526, + 916586.6606952572, + 167728.63143532324, + 532745.2118939633, + -520667.63225461997, + -504160.0284549923, + -904957.3092744924, + -260124.91458338237, + 510580.43232968386, + 528461.408536822, + 787801.8957278694, + 655661.7208644759, + 756042.0510962665, + 817517.6184635771, + -216897.53904829256, + -210776.7984364153, + 115189.32586343955, + -478824.9638186075, + -468807.7269477244, + -844258.0720995346, + 972414.3212990139, + 344833.1258162722, + -56113.64655117135, + -624188.6237682998, + 685277.6504690781, + 485920.86118686263, + -278312.632114432, + -75043.35641322468, + -906194.686836411, + 365577.9556860479, + 19524.356422792043, + 922216.6246370509, + 689391.3961049088, + 840927.0014726613, + 200331.60443690835, + -869431.3932861725, + 878422.5888265629, + 973432.5209783085, + -578674.823105952, + 294351.2971138873, + -690023.2138685087, + -962916.4945133477, + -857485.9930342253, + -832025.8563876976, + 974341.1500846075, + -396898.56550470815, + -668756.5633246308, + -360457.8358762485, + 331181.2894073336, + -311866.74036477105, + 242219.15211919253, + -943557.6307255606, + -375938.89714875387, + 22484.12914812681, + -575213.0918223544, + 82307.76394413941, + 153899.09959843685, + 594127.4211885713, + -159090.79238988232, + -450971.1288868068, + -507492.7913564229, + 467626.3560175302, + 957484.420567825, + -635565.4457632827, + 404504.59733543464, + -741242.8093463316, + 910929.0860177912, + -361367.1534870784, + 156410.9969402554, + 189214.3652513325, + -54.2568822701206, + 174232.51026043718, + -494773.24245352607, + -454723.27737979847, + 213984.13246461056, + 212063.2508260616, + 98546.0352022065, + 5378.334789895911, + 810093.3127857712, + 147997.73536322935, + 783102.3012779879, + 987880.7432751495, + -229434.9756673648, + 869493.7651605841, + -139076.3587987369, + -557161.2076048016, + 21155.026715105276, + -264766.361332601, + 618322.4255131544, + -816467.0925546531, + 556012.1707017187, + 88392.64235999744, + 197187.47226018296, + -283815.70254962816, + 553023.1095252107, + -945830.8209615549, + 238023.91201015905, + -480028.44922189624, + -17626.68976837234, + 252398.93652451606, + 484001.7828030414, + 741815.5580859713, + 390351.85620191856, + 685395.2527809612, + -906494.5300026286, + -276101.1173961465, + -17294.304320395026, + 557569.8153357534, + 609855.5595821952, + -943525.6187202075, + -906970.2892897038, + -431298.00250892347, + -842679.0553811144, + -562682.5666189257, + -637593.3515710594, + 284628.80755777564, + 797637.7142915607, + 257071.35954504667, + -598042.7588701511, + 479923.3402769547, + 28237.085443992837, + -319240.40852889733, + 445429.38310308644, + -143741.54132754912, + -913908.5084884344, + 224066.6061014116, + -409529.2008980156, + 77009.76021396478, + -393132.08359290817, + -842425.1254184563, + -980481.7983934435, + -109963.52214518002, + -596984.3194120133, + 421593.864468248, + -255769.34934627914, + -155143.96571447953, + -84665.76993441532, + 446213.02711451636, + -579121.0566209126, + -3228.701671307732, + 422613.975917554, + -233788.34968304684, + 698643.5599005307, + -856922.3159138297, + 873464.2431898396, + -473563.7949953864, + -947625.5678334567, + 532425.4066042482, + -911525.2637976729, + -916676.4657064084, + -676742.7713677248, + 14421.365019352317, + 367702.68646524154, + 808630.5937924972, + -982040.7794521189, + -535376.4961007346, + -316730.30129867507, + -727573.9994552474, + -279049.32792091276, + 62214.743431753704, + -868796.5174837488, + -543476.9883716386, + 230747.02239104948, + 930874.6640197869, + -934200.4703555017, + -563127.2950407254, + -160756.6281830879, + 636913.0432592356, + 404332.35672016774, + -400521.93774480396, + 424573.34137293044, + 188394.46814925777, + -561527.6895167028, + 987334.5055397842, + -917283.6942899865, + -931296.9096755133, + -84068.07931226678, + 329765.5710312666, + 990895.9715608172, + -179331.26887436467, + 274.18633228437625, + -534743.3847973393, + -780534.1698024244, + -482484.08376243623, + -216949.4434647421, + 748912.3287694999, + 986293.5598681071, + 232516.50339234597, + 50846.95541483297, + -175943.21991923524, + 791478.2809348404, + -681612.1072798342, + 58127.60924020877, + 42778.568602323205, + 234092.96390270052, + -261676.87664463822, + -636028.5534186077, + 562431.0076399741, + -411947.4321157499, + -597153.8200546785, + -916947.7880325463, + -705242.712674034, + -191469.61416820795, + -949088.1151979893, + -333822.0089222828, + -182133.5816642613, + -66015.35047639784, + 368087.1511835344, + -353697.4321993922, + -536604.9882410902, + 473884.56721989793, + 605658.9584223814, + -404709.8207523263, + -54742.5545743947, + 961215.176165372, + 115729.24020113629, + -414253.68741960253, + 752739.6761999896, + 666862.340182689, + 67661.06601563026, + 503951.37492533016, + -388621.97157925804, + -515275.23605421965, + -757491.9347915816, + 612555.9659177166, + 489261.3941316415, + -982996.6467930258, + 83626.01656723223, + 230434.85581427548, + -21114.28305604135, + -90428.70967066064, + 296478.7950444805, + -966846.883209967, + -780598.5460331015, + -967735.6926779113, + -461059.92481831735, + 786610.187710862, + 879140.1641903842, + 43314.5011843421, + 278136.2868301425, + 698183.1032720456, + 806349.2268740733, + -397630.8008376086, + -358879.3970287651, + 285684.8037062269, + 604605.5558427592, + -947059.649165231, + 158191.3515991018, + 485965.6338905141, + -158879.87491432432, + 129367.15688846845, + 198184.73217274746, + 978196.8533225895, + 713214.7743347823, + 468122.63845769176, + -381307.2731673779, + 615398.963360069, + -247645.52530044725, + -873048.7024753812, + -82438.67513839564, + -301517.9391769822, + 381569.32568402844, + -72564.69520485065, + -847974.8310260638, + -624372.4635593375, + -576730.2765561315, + -168577.86934006037, + -296564.50380124897, + -364361.71433323674, + -492597.56048871763, + 35296.47857337159, + 420021.4463546965, + 454944.5971178281, + -945800.6513390202, + -855620.7987899301, + -182147.10911050468, + -632719.2284925724, + 51871.86163710788, + 295433.30983351177, + 521813.52874387166, + -883109.8371806932, + 587329.6188037973, + 180684.47590905178, + -10809.982021956044, + -769038.096146106, + -534457.2735356829, + 505084.0013940303, + 919420.8622752513, + 123252.75945565072, + -349338.01725310687, + 28975.45331310436, + 133053.16122446588, + -200571.0906061211, + -468513.2612679026, + 309822.871813791, + -479063.14112764824, + 579875.3899708529, + 934442.9915052219, + 103074.37200741231, + 323347.94712743163, + 348004.32941321866, + -80993.48269999007, + -800860.1520748159, + -965068.5226402589, + 348004.553076968, + 702962.7869214141, + -271911.56605665025, + -415611.3770407321, + -267938.64974705374, + 940918.9806430914, + -884217.0166808323, + -112606.7555153969, + 844909.9028802278, + -708295.0091724356, + -634052.0019617239, + 367228.9420504924, + -327624.1032940919, + -305604.27895617834, + -90300.13158459483, + -520174.5447660726, + -569480.4406807517, + 94387.71254925072, + -386358.7164788742, + -954381.1545288572, + 299747.16771257494, + -559491.0604224965, + -542498.5120243762, + -139417.79463834924, + 688013.3415562162, + 348954.6036298228, + 205465.37858689384, + 213992.4096621415, + 82812.26538328546, + -915628.1553359362, + 316048.90945018484, + -640389.7847236581, + 738716.8665764598, + -161139.7085490225, + 106607.11054417393, + 921187.0400892184, + -922699.7788318148, + 48594.74153787469, + -559258.3662861967, + 254491.79811641076, + 33251.61082166583, + -179827.40244080508, + 195024.71952536894, + 566140.97336386, + 903381.1962119655, + -300273.9307739282, + 309648.1670935587, + -471111.2544004563, + 764523.5890097027, + 409624.55964518554, + -546981.8192781708, + -195992.2281424531, + -974830.3194987258, + -555914.7275795464, + -384676.9757273485, + -968027.7259005957, + 131087.03356579586, + -377491.11454555416, + -679827.2293925458, + 370173.70037625066, + -139886.43633667342, + 634398.7676863831, + 235017.74655142004, + -580102.0592951766, + 486322.3932047258, + -358908.16408815375, + -602593.546620462, + 636112.1519604072, + 264304.76402528334, + -654743.8559167729, + -913624.2327944491, + -742081.2395013996, + 760169.1365827494, + 465303.56751728075, + -885331.0880299909, + -791916.4137905741, + -666169.5161705825, + 541182.5300775139, + 366950.8470799496, + -380691.4509125823, + -527287.0321356482, + 387152.3805970955, + 922796.3082957211, + -641075.7681453216, + 95311.43163698363, + -252671.6832573741, + 882358.5801086217, + 105372.60614969513, + -989867.9563227106, + 626113.7243081916, + -923944.8699588646, + -765096.8396685073, + 522713.3475521484, + -47380.26051355648 + ], + "y": [ + -841989.31294275, + -775095.2833023075, + -623621.8672748602, + -508933.80539782916, + -561971.2488781825, + -785168.8110406864, + 438056.862237691, + -427115.71569997055, + -459779.53796019853, + 796480.9210348161, + 16228.446847255995, + -10117.113578631543, + -53631.432702805796, + 831976.0985445925, + 774172.9920404115, + 159844.88204567993, + -6243.166011681511, + -521021.30094780907, + 694713.1899190526, + -910162.6660223072, + -774909.9996208384, + 320117.776495078, + -547323.1177429256, + 654473.3768154809, + -554026.6105989073, + 40335.22057385208, + 135508.08662869086, + -279877.61613975046, + 585072.4377650085, + 405049.85986093513, + 232440.3037218077, + -25362.31872866912, + -248481.98492127337, + -560953.9048498886, + 485941.3956374863, + -519433.26064300345, + 184701.89774695545, + 893827.7421553927, + -828817.328114863, + 750487.891196061, + 508993.2816321345, + 540210.7149106248, + -373173.5110220982, + -303596.317152965, + 522818.3144789189, + 414595.30767788057, + 19484.603545775193, + -461024.5494484895, + -47611.78987915504, + 88180.55865862906, + 988228.6950640721, + 357677.7559037796, + 121526.15548473045, + 698793.2608907002, + -487152.4830132172, + -955940.2429958172, + -701703.5223337576, + 229654.94053449653, + 513842.68831132515, + -395110.0598072463, + 257602.165830513, + 121612.0765485973, + 406139.1365539877, + 873399.66086256, + 948537.932093139, + 925076.9258288649, + -94842.01072127352, + -172396.12733221232, + 160389.7146379405, + -373730.5674296345, + 505960.80348878325, + -62591.644013108904, + 722670.2405123094, + -729278.0097360006, + -884989.3737237633, + 5179.2626380713355, + 701035.689142802, + 499722.50452963763, + 106126.88316707186, + -820824.4388997552, + 928534.9602815487, + 218781.86384893983, + 11373.293613078373, + 41947.26905584045, + 425564.55518506933, + -285905.4255897964, + -144410.63028630795, + -740040.9963485603, + -492289.95560486434, + -191699.3365552453, + 970316.6821376963, + -838140.8058459905, + -466086.6372245687, + 786495.8184204455, + -136641.84111491195, + 551026.796179372, + -118245.65945172361, + -429303.758173051, + 289274.8799673728, + 370829.5671062389, + 112566.34725016635, + 938564.7538542207, + -458932.0946854003, + -112653.8955686256, + 887022.3671904237, + -979024.3953836804, + 935855.7791733175, + 392777.02472150634, + -634539.2530658016, + -733324.4431803057, + -721643.7739481903, + 227876.3792840539, + -232102.3256213983, + -971248.6088668206, + 715376.7179565134, + 959367.4194005737, + -373546.1317002338, + -700231.0711965273, + -963576.0897303212, + -278579.9440264758, + 100376.22156342186, + -326112.20207237767, + 981521.6684350774, + -482595.47826915927, + 648660.3447864088, + 843644.3832424028, + 732209.4835010477, + -153041.8691462083, + -599028.9563257105, + -296776.4651412641, + 859557.5830612996, + 965780.9909117548, + -63516.7902884326, + 477161.9168648309, + -940358.2636980952, + -632418.384718779, + -365382.38695398584, + -239563.19322688025, + -239304.6913621528, + 432969.83003249887, + -615440.0230895698, + -554931.4032421844, + 896897.3146678181, + -346647.9730130474, + 64189.91681325048, + -38732.925036637054, + -537662.0371003775, + 966495.4235025916, + 969717.6194514378, + 783870.0048633596, + -74587.61620013266, + 831651.3050455592, + -34707.954877353455, + 132464.72896881544, + 244292.06611394117, + -723699.6589583688, + -289391.2403450825, + 382873.505401377, + -182000.41286751878, + 714299.0223519965, + 26156.182082637035, + 294215.4611805308, + 200268.81118485073, + -640258.5646004735, + -807273.5584057267, + 45655.76911556612, + -792789.8279053174, + 101492.81294258627, + -146176.85529026692, + -30810.42899432007, + 435382.93784721714, + -322459.2340622958, + -174970.74177023242, + 26905.66458774213, + -947156.7174291624, + 548994.2918747881, + -830265.2484131423, + -80771.06041622107, + 933396.9389264802, + -298576.4863351168, + 981905.2432800552, + -386181.65959297324, + 672698.2694803685, + 269049.57331865886, + 82853.81087077859, + 867446.6458449088, + 730782.4794822566, + -730793.4428424267, + 636929.57350753, + 529693.9688298834, + -258215.03400263525, + -697221.9707553786, + 508239.4434232529, + -22932.213957937318, + -441964.9317826, + -487813.6298938742, + -354283.3441196564, + 596646.8317409, + 173346.7010389238, + -532732.7823888039, + 922786.3563789611, + -644701.2051098609, + 94435.49249267735, + -347927.73612048425, + -590558.1079634632, + 436659.297220233, + -123683.88473853997, + -688526.3661659575, + 316655.25208180136, + 916492.8733069033, + -384164.92908829, + 320792.0802057198, + 779329.0476945671, + 45889.27917682817, + -253784.5924087889, + -934164.0465042376, + -656028.3240911526, + 248447.30831388495, + -189224.20790707073, + 822378.6475941191, + -411076.1745670002, + 632391.1711196257, + 736518.2931963585, + -234070.1943759147, + -988385.3949405677, + -256534.5830081587, + -581501.1925851901, + 101762.26026891544, + -640495.1551968363, + -204040.0324043048, + 267036.07940844476, + 577995.7473875738, + -176993.74511697164, + 327564.2604767903, + 376214.41089156637, + -262351.8632592727, + 303277.8993777547, + 549892.402684508, + -44412.02884230089, + 541172.2541876618, + -871317.3856770733, + 569631.0496447363, + 576377.5612561785, + -957608.7704076947, + -773571.3315946127, + 79467.55808399919, + -592926.183109103, + -511913.7106276921, + -363660.75017817743, + 258840.60215001003, + 774502.1446493892, + 281063.3683157227, + 74526.5651385103, + -44382.38128250083, + 444682.40044604125, + 728585.773056967, + -299820.94540707394, + -852890.6146932214, + 163635.05716330896, + 910905.3678832464, + 648026.9528531422, + -257961.92877510114, + -19486.05532677794, + 140476.45945029764, + -303089.9316090217, + 702957.956639624, + 535360.6304546237, + -582178.1698576073, + -122981.7689829138, + 975052.8974165997, + -580163.7149676814, + -763095.0042941425, + -24819.552881023334, + -173346.57451710323, + -417201.7659561833, + 440051.72985487495, + 167007.07363240785, + 844123.2156411576, + -259445.79781511502, + -441582.8475081609, + -202506.6013903658, + -716399.6943027051, + 256931.79497122642, + 666829.5187873732, + -149172.65446396644, + 227772.45012929238, + -598982.9203597307, + 894017.2524725694, + 826749.0806877838, + 98101.3374158497, + -149638.04410942073, + 892984.7573596186, + -446380.38475321437, + 348686.85801109846, + 555197.2759476387, + 858631.2968465331, + -535266.8793977569, + 347729.6376490493, + 155824.0474256294, + 289323.7154408901, + 229215.98538537679, + -118967.65056689085, + 710262.5151851682, + -838054.4841425869, + -896069.0167068348, + 980573.850637422, + -951730.5169718482, + -972626.8602657677, + -540573.4524308392, + 362491.91229326796, + 739083.9627370343, + -875175.6763282787, + 761101.2880335036, + -542593.2626462264, + 653538.7381658673, + -41310.81616053112, + -140734.16671022752, + -276889.34631344833, + -789429.4666513097, + -969264.7181389591, + -199631.75714235005, + -899703.0741891128, + 767753.8548466698, + 11381.849727401639, + -597056.648969767, + -147378.84394593493, + -998483.13613964, + -634279.3874322197, + 471549.12624123367, + 37895.3198298011, + -521723.8195950371, + -436016.97311427223, + 833605.513880483, + 353085.1610704648, + -183570.00335379926, + -107725.31857915646, + 899733.8398479873, + -582787.3823669469, + -494752.4029342287, + 951061.619790907, + 892548.3513514869, + 943135.0387208643, + -392684.0079784355, + 277405.723798744, + 852722.9520124804, + -9577.618462380588, + -196380.71636330645, + -843456.7971308902, + 984973.4491142076, + -385401.5701649929, + 168756.03714719633, + -941058.7217523911, + 173992.82715078935, + -928462.3937940064, + -650586.8280954399, + -316288.188440164, + 424294.7417604994, + -138.98425530056713, + -488546.23140684003, + 718066.3755134307, + -329842.4340128823, + 859589.5780032114, + 900770.1960220302, + 325060.2886201035, + 848396.560279614, + 888292.8972825181, + 621808.7016435225, + -427243.4059970509, + 681698.0658289792, + -544882.6051615201, + -238668.58589913577, + 168749.41483386618, + -89607.81465368229, + -702869.8868079968, + 800160.8210043467, + -8911.961060123818, + 622638.0385672044, + -929952.2855720208, + -800941.8133173318, + 564903.2666182425, + -845799.5709180704, + 902372.4385321912, + -403349.64446440444, + 479812.5750510687, + 687313.4145299001, + 891543.560257879, + 309357.5824183621, + 875070.4434268685, + -851332.7030446829, + -152933.8315019162, + 94206.78527900539, + 349569.01094111404, + -533399.1458938323, + -397745.37628812244, + -484725.09919369535, + 144159.2999215613, + 694026.5122361657, + -882195.7653029837, + -254949.26705717092, + -462491.0589268401, + -430007.8911960938, + -536448.641531344, + -564353.4323777468, + 349059.9686039351, + -514225.7770431149, + 757689.3317536355, + 444122.59639426676, + -430408.69367142377, + 86268.5009564601, + -156068.9752368236, + -52730.798036135115, + -246207.73709491672, + 478973.0794877556, + 119281.5836990242, + 388189.0314436558, + -548820.6798487583, + -524230.97112853, + -17390.03349064716, + -791736.2387877613, + -249018.1239022182, + 425687.551390582, + 541551.3039466413, + 777474.9590574694, + -308779.8303713793, + -585205.0374690447, + -109038.59249090897, + -476955.21757166047, + 89599.82920407894, + 961579.467886285, + -202663.00039897067, + 40745.30815238342, + -984531.7167255103, + -972130.0647174548, + 273270.0597006592, + -599291.6704083991, + 750002.6005460201, + 756890.1641414585, + 264180.56110761315, + 804859.604823416, + -178356.25676065582, + 707865.61845407, + -119638.06642065445, + 896088.1357434693, + 764306.5082644378, + 738347.6293918168, + 676240.9125848004, + 298009.30941031687, + 735881.3147751786, + 876862.1278722695, + -996033.6480989374, + 960523.7131412292, + -380830.05584140925, + 166563.21910749128, + 534859.9422349943, + -132114.9342579806, + 80900.4134705249, + -579394.7183499117, + 819699.6980095763, + 386546.83880120324, + 821573.6475867204, + 981695.7421767967, + 614305.8973532458, + 77534.99257079021, + 626708.9342158604, + 952690.7658094943, + 116504.86283671646, + -420122.1368730317, + -538892.5293056685, + 171879.1916242357, + -584452.5975392128, + 573054.9331839461, + 884904.7618596369, + 72455.83117650512, + 829740.9884726934, + -331959.35190203565, + -428399.58301674377, + -679954.6677934721, + 84986.55436247282, + -490268.42281844106, + -763867.361534357, + -223739.6026945686, + 406002.0457023177, + 665655.8201887235, + -527494.4459784911, + 982085.9587471285, + -488694.0909168389, + -583140.1465101166, + 354225.66150667076, + 216506.6744153916, + 154619.27963724674, + 25136.598539379218, + 492489.28452569584, + -433884.56447279954, + 234279.8583667003, + -703929.9198451278, + 441346.21397511364, + 943963.3176441911, + -325456.00848321256, + 172395.02771845582, + 749192.7196467996, + 624359.6727765179, + 480229.27434392227, + -696677.5803865421, + 293712.9911647245, + 387741.5291431936, + -393729.73948702647, + 21266.019672495862, + 723937.979277689, + -232458.25080596138, + -387304.96830664296, + 2464.0321624218586, + -122681.34997729407, + -546694.4807160796, + -919715.6513476778, + -18247.514801625897, + 194804.46059409328, + 772791.1447093579, + 235715.32964076058, + -491094.78861466685, + 4389.73784561969, + 833497.7104795736, + 408212.97885851806, + 60087.40868944673, + -603153.4418319811, + 49207.25516157076, + -33771.355710310316, + 496911.4186762655, + 154504.9866469945, + -912578.2146259764, + -452817.84163980297, + -823375.6845463197, + -220228.04861147137, + -19009.048525427508, + 887978.6196577046, + -661416.3336804246, + -428227.62305677007, + -98018.59328603357, + 661880.6475154626, + -117998.84324321552, + -483940.39773233776, + 945279.7207307717, + 493187.76874040184, + -998343.7313215322, + 213652.26322442287, + 392420.49640112574, + -399813.58192147256, + 847862.16445857, + 252398.00249854306, + -684115.2014550567, + 764290.832324826, + -965373.510477915, + 366595.0386351318, + 549108.2103193712, + 478391.1169981494, + -477039.16144049476, + -66359.28264260315, + -666477.8792067101, + 927578.3245770739, + 223346.97203642075, + 417199.34494340996, + -588673.8683068216, + -579415.6741968989, + -326642.1044466499, + -650987.8956618933, + 7794.401001574247, + -692135.5560318063, + 862693.8081331758, + -737450.0551246805, + -475462.72028761625, + -878946.7812968763, + -960923.7018518934, + -309835.924111922, + -581931.2077126874, + -193151.43113910628, + -320810.1968006805, + 500517.2008975121, + 735584.2491990248, + 869357.6704794308, + 571406.0633091565, + -31191.862881997156, + -482301.2879788475, + -273644.2666449306, + -564572.1511337791, + -879096.8240374251, + 379673.6622571082, + 793099.5767054925, + -952798.8971456996, + -149710.44541620172, + 889595.896146304, + -102568.09583422144, + 762500.2191414066, + -22716.52292029125, + 136389.57166886012, + 266170.89144465566, + -826419.6040586666, + 646550.0102152668, + 84316.47222800476, + 380558.86255500093, + -66295.78751266396, + -320680.4303555664, + -161087.1510793015, + -245428.7859749458, + 863696.1061838248, + 418532.5789514507, + -361290.0378441568, + -819539.6921890886, + 192046.37210451692, + -751367.5420591463, + -735759.1562203469, + 724722.810501609, + -207066.86437837928, + -795145.3172717491, + -498759.0724904585, + 928584.7087924086, + 81570.77897059928, + 886515.2558534868, + 703933.813051105, + -759838.0592273521, + -922081.8135161714, + -132416.60859760086, + -218972.67346888926, + 13818.849598194349, + -913806.807334844, + 79464.11354751293, + 122637.11055587168, + 97597.4683300218, + -174625.63217878868, + 373394.38677931833, + -714996.4838749898, + 10252.349704644947, + -660680.6145188995, + -462110.3608096893, + 455892.6217447536, + -535112.677073226, + 3911.094098997037, + 72292.76301260934, + -90507.11688419111, + 378102.4269270648, + 966152.9417313348, + 79337.08644471959, + -50237.45464432694, + 564623.901389222, + 623939.0339062072, + 506867.44054355135, + -192296.55248183585, + -777596.2486685179, + 72739.48121619588, + -954970.2603642094, + -620853.2682690438, + 551182.2412351213, + -674019.7569945076, + 54784.03969693768, + -720095.8036049366, + 822138.64566469, + -47346.06044089551, + 62391.96068110253, + -875201.8303563707, + 967445.2806940004, + 958787.536150757, + -382108.9823580639, + 919189.2935045864, + -992345.9364680276, + 404723.2180889369, + 997213.669409986, + 952840.433231553, + 550710.7702603323, + 933319.8270814269, + -523305.0171275595, + 509566.2861527783, + 316096.2532068496, + -897669.6856093955, + -67566.3739176584, + -218590.26375370118, + 629055.0600847739, + -476273.1276913652, + -355544.32129848766, + -75823.76965706561, + -79758.51347698936, + -318771.349164201, + -625215.1530637145, + 375014.63923092704, + -338049.83702911227, + -244798.270919373, + -553806.0605058732, + -491426.49649520864, + -220221.85793093784, + 229679.68777632585, + -203202.8496723799, + 727580.7571288531, + 471484.1313835601, + 538581.6812406041, + 889486.0527244122, + -627652.7624554386, + 678974.6430273592, + 604703.2521112361, + 966498.0231884173, + 646535.0494848475, + 850385.1823211137, + -30617.184481109172, + 573036.1843657114, + -780642.6791009626, + -692731.8407902428, + -253511.70198395633, + -63923.52194272921, + 489281.1246976911, + 71974.61310020725, + 553815.2987792586, + -323135.21116795397, + 813510.8955703874, + -979571.5908281115, + 220563.890526426, + -134102.19614022932, + 479796.9444313115, + -864641.2507939684, + -470994.50507539365, + 732140.4368222537, + -992301.8822729974, + -419704.208904025, + -580527.2293163982, + 24394.25363660064, + 98269.37060043894, + -970829.4887846556, + -515101.155136761, + 693334.1676186498, + -532837.1019315652, + 312690.9817721462, + 94496.24908857013, + 789083.0129621236, + -871114.3760307438, + -779501.7598786278, + -114068.46116910873, + -53451.68392937527, + -589758.1704130357, + 192869.30876058683, + -42924.75634887327, + -794708.5843885579, + -924153.0319926756, + -288908.0632793164, + 376858.4882169239, + 249702.09713593672, + 8818.411749580424, + -805272.5958235402, + 572325.2596580883, + 128904.54596308776, + -188192.19126370922, + 806270.5669295674, + 136502.6693726241, + 127116.18728415664, + -351135.5082606136, + -929243.6389838627, + 190817.3862176308, + -45942.83334304072, + 380993.60744429234, + 963973.7162607927, + 476074.24726750236, + -288308.5317146299, + 416475.59817846667, + -462162.1689652695, + -689547.3493082294, + 843027.1883691631, + -794403.9911178367, + 612150.1382190977, + 3836.93751836911, + 60461.02823090482, + -75822.35864524622, + 383273.06434668775, + 549682.6323680055, + -595157.3190656254, + -304226.8823228318, + 358382.03894130484, + 292554.6723110448, + -386798.3329973039, + -214146.76381866448, + -338326.6163107801, + 137583.62112648715, + -582636.258864279, + 139482.7059297896, + -35828.56855087835, + -268700.5869158339, + -733697.972407694, + -215813.43397299357, + 497715.8718366275, + -915396.8586483792, + 871283.7193049146, + 142223.9800062537, + -101145.03213600123, + -630486.3814454532, + -79474.85355562934, + 209782.39493010787, + 575.8668680553303, + 68151.39254053793, + -78095.17976986169, + -606653.173591252, + -136104.99555572896, + -561597.6192656367, + 217095.92044642134, + 873519.5874235153, + 628121.1916257495, + -367435.62853026245, + -336578.15586134186, + -830638.2862848014, + 857514.673338029, + 884458.6595319561, + -76985.75595470514, + 519901.9790160115, + 66670.82624645438, + 135488.6983138013, + 247187.5887809003, + 88801.42731279906, + -513465.205472746, + -101600.36970390851, + 232499.70550344078, + -819006.6344866324, + -502993.3709036374, + -603505.0550010825, + 502142.0191154666, + 414102.7616245319, + 852085.2891045103, + -468848.57129865675, + 16074.100333912655, + -556220.9989995821, + -892515.2876406967, + 446442.5022736762, + 622077.8967108367, + -874813.7811802271, + -898474.4290936495, + 762531.2292543738, + 627776.660442612, + -256340.4034917387, + 664982.6383284642, + -783291.1862152896, + 127937.02638926497, + 541807.9999676651, + 484705.37470108276, + -765900.6841113974, + -146430.8193315389, + -960876.8746968672, + -383679.5085456639, + -305318.21105346514, + -19338.677839469077, + -84479.25940606504, + 128190.18375011181, + -518113.7384506194, + 797067.1024426548, + -563760.468537992, + -452303.6428948102, + -191374.50010450598, + -121011.8964476985, + 703094.1992824653, + -686072.8482771723, + 888625.1190525909, + 292569.08828272833, + -871313.1841874028, + 319555.00694304326, + 1424.04536477736, + -129236.77030937442, + -90110.53247666068, + -24313.27562736585, + 931112.5011514312, + -134838.0775581628, + -184149.876436303, + 268853.4083945595, + -22519.486652571974, + -403559.0498918922, + 825087.6995604406, + 933249.8778389026, + -449391.02156814584, + 673970.6854957517, + 613858.0967166929, + 671492.5465389483, + -215212.36870023963, + 292257.18803351343, + 151640.87530193425, + 204777.29563670533, + 692705.8729247755, + 266932.96340006567, + -755674.8847893564, + -298779.0390392642, + 172776.39778918587, + 678004.0310460662, + -125961.78769924004, + -560548.0086359909, + -271848.2326017628, + 300907.48855033977, + 550333.8640074043, + -841411.7446565034, + -381686.69805748604, + 480024.8836847267, + 848296.4146114427, + -613085.5754542606, + -177165.35287526748, + 967221.0614340424, + 28124.84738651744, + -980550.0423792796, + -141861.18531139157, + -327525.2377763698, + 544148.3491250776, + 231020.33848242476, + -650884.1248669295, + -579992.0208613314, + -310269.1411414409, + 366041.96609572903, + 174502.5657355064, + -960820.0535281613, + 725984.1323569188, + -81445.73796501686, + 859211.7646863435, + 808268.4572660825, + 937245.51693087, + 339621.7175567653, + 253007.03606810738, + 901305.5534958246, + -281861.2816452772, + 136222.14212906436, + 959131.602846453, + -132466.62475941994, + 899676.7881677743, + -915799.5750366243, + -549111.3284440929, + -724694.0778011659, + 857546.9650280003, + 437941.08743882074, + -652590.1100167118, + 712363.3543888695, + -413975.42633119476, + -245781.28787741528, + 320909.72118435655, + 946066.9131307018, + -172189.2714204001, + -383445.2583876535, + -323113.58246088726, + 442172.937764985, + 254753.27629518163, + -36564.652562478535, + 740760.0470586661, + -940155.2562409498, + 199354.43155930942, + 977200.1263900738, + 438382.6024387276, + 974268.9863897339, + -939521.6065702572, + 187754.78403474975, + 834173.6718428055, + -652192.8989637223, + 102961.5788348115, + 266050.5058661415, + -552066.0398650034, + 880639.5810816756, + -198878.95025185842, + -493093.87531766033, + 840013.3947613569, + 321542.4574105814, + -37136.79364762767, + -428325.0850813558, + 491600.42273094493, + 908956.388232641, + 484361.0181471585, + -301558.8723111855, + -453672.98578462045, + -510390.8927654517, + 857925.4332927195, + 956071.4113171669, + -648244.991695707, + 952426.1295610137, + 822736.0575970106, + 574679.1810264156, + 865706.3551566248, + 23807.509457727916, + 224836.1004435684, + -728553.4342004756, + -722571.7068587577, + 913429.841837456, + -511835.10056549683, + 260741.21551704343, + -784861.3787511815, + 749134.5679189034, + 120993.43216715397, + 562648.8493792063, + 973414.7171401097, + 447557.6300054158, + -932327.2246133625, + 843234.2942952029, + -543941.1366439497, + -60508.439142465286, + 341146.0634225707, + 781903.2576086764, + -118092.75045200462, + -284296.4366729572, + -344354.6868694591, + -387874.15356474096, + 830512.8542510525, + -823888.9510353649, + 94873.53493206397, + -289167.7009437907, + -834932.9188757506, + 656668.1397421645, + -406149.3184089657, + -327830.46824779507, + 352822.69366063137, + 853979.6219467405, + 247555.24983851163, + -836313.5130040584, + -757911.1218427268, + -966219.6706865311, + 19522.633023092872, + -639305.3749117295, + 93923.50386986781, + -397325.79993978015, + 747393.3392633463, + -581374.6737350507, + -455152.81498195435, + 845274.0830091678, + 485606.01256713085, + -959671.4299609079, + 107535.74130592613, + 283553.45440684387, + -332697.2613470871, + 342276.9805058741, + 442757.68484231894, + -281876.8290873008, + -101908.16367861743, + -796663.8820716641, + 555486.2492075114, + 59490.81845283599, + 134934.53742226126, + -570501.502856549, + 512418.37301278405, + -65291.32830599527, + -711912.2875698687, + 838336.938930091, + 214188.2986562089, + -154009.85026286574, + -376327.766113145, + 870215.2245688253, + 387300.6773259897, + 435675.9543220927, + 912041.9573953251, + -799736.3030984818, + -624532.9673721221, + 231374.89672372237, + -210574.73860159615, + 183436.9666462683, + -577322.6600181434, + -829625.6193241415, + -366075.9996291276, + -310614.24844851147, + -130555.42373303797, + 220644.76755980577, + 698418.5056545942, + -912718.1510051532, + 109317.84347090745, + 818606.8272731304, + 421477.352429507, + 506889.9266023268, + -802261.2450242597, + -653765.8448555958, + 545516.0128226359, + 25678.158926161654, + -219395.20648038146, + 657999.7938922734, + -467747.56417511945, + -392765.2344766095, + -924492.6775443134, + 95349.34911518356, + -760413.5928514852, + 758420.5201432063, + 620765.0222902297, + -140825.24586075306, + 916884.1682795306, + -113298.15784897534, + -208402.89834646165, + 659244.5748592799, + -310478.54345557524, + -785865.0095857626, + 293930.06716588844, + 838674.96759672, + 650248.1538546915, + -666473.7360947039, + -90280.97580804983, + 413803.4222025198, + -31146.021709068882, + 882947.452932908, + 774958.776786431, + -589152.4602179294, + -233621.28006460404, + 803746.361269374, + -74368.39836164122, + 677463.3047772581, + -251685.18929949467, + 678466.7520823777, + -8648.759734667166, + 909171.3263044639, + -196716.7221214079, + -954409.3123139339, + 613176.8523483612, + -363283.9762819693, + 684712.2143138787, + 666379.2225509048, + -309319.07085461717, + 430180.92259001796, + 466185.5428740693, + 702824.6129750293, + -98629.10623629561, + 101744.15727309017, + -502378.70341935765, + 43199.25500628297, + 386200.5625216758, + -296827.8058275355, + 748596.7069872333, + 941268.757939586, + 408134.9017570932, + 270725.0578564309, + 297280.7498650554, + -426006.3258049323, + -84621.92258431122, + -588391.8530006724, + -510801.6717335797, + 683750.181706735, + 17153.320272977668, + -936957.2324216786, + -522030.80812948424, + 500517.7634105318, + -421230.6879023977, + 607624.9161345457, + 347841.0080592684, + 272940.83481633133, + 350008.61990598484, + 162042.82434157014, + 414781.51858094917, + 531596.7078054, + -453561.11218037776, + -197984.2200390063, + -513137.2306663264, + 70997.7278172833, + 109497.47980675429, + -224363.60706957182, + -627941.7089981949, + -769026.7762885543, + 997568.5634025513, + 603112.8272869086, + -30638.4478799393, + -975396.1203003096, + 554909.908468568, + 292661.9114359159, + 863126.8405000392, + -839572.1651004707, + -501399.5057806011, + 779704.0847932189, + 758973.3167365722, + 721811.2719822265, + 319500.8404837876, + -645030.7083339719, + -653595.4715169637, + -874956.6896985277, + 650641.4543708412, + 915010.2254520352, + 137675.70726929267, + 40270.85110940454, + 596288.2648833905, + -986806.826001901, + 140591.72348361136, + -246803.87626276334, + -847609.7351244596, + 599860.9598946855, + 318745.418627697, + -355481.36179190635, + 342215.9767921329, + -714442.3601567178, + -928988.2919660928, + 51580.304142182955, + -413556.5515011554, + 455840.6126544421, + -882679.9161115387, + 65147.734505308195, + 230819.71521598144, + 351698.6855914275, + 567773.0140704353, + -540660.3535253434, + 699643.3008171428, + -304466.032980671, + -710978.3471097426, + 463497.44530656055, + 489699.4114248838, + 193658.34138873962, + 731333.7640762463, + 796680.2599351093, + -672391.9749307974, + -801460.5173520414, + -679272.8628710771, + -444069.51839433506, + 247118.8111931879, + 640988.3770942535, + 414385.6458062591, + 695694.3671672498, + -604255.4496560888, + -315271.42525554553, + -945452.0958848412, + -932199.0060099425, + -975542.6918392427, + -577172.4812160785, + 314223.9036003482, + 683488.1063427635, + -250634.23417695984, + 43887.28158708321, + 649195.0729432589, + -844321.5682371721, + -27105.320221544327, + -603944.8929317786, + -797742.5961456918, + 729024.8063747798, + 875687.0414890216, + 41641.151139011345, + 475881.5475176148, + -216300.48508606592, + 75401.25466241987, + 329360.6656545258, + 764829.9319246195, + 167948.69104019218, + -438161.0781283405, + -15630.980615955803, + -760686.0449235209, + 995551.9902090093, + 354402.7904876312, + -209509.89970261103, + -108126.05066147652, + -931759.0623611843, + 321159.96306917793, + 396806.3164396791, + -767352.3357087842, + -679587.6662188853, + -621983.6116557595, + 433099.3009053603, + -203213.93538844123, + 366920.97539637156, + -242258.15629503745, + -145531.0621780288, + 634378.457943556, + 340582.6030686423, + -232491.90823941212, + 374674.25598944357, + -514055.07099646307, + -259426.3160916983, + 728291.2871302987, + -737198.0039603662, + 50713.016569662315, + -444255.4196952413, + -306661.8202763516, + 639610.3292748012, + -334406.0414485144, + 920800.0918776382, + -276564.13162570324, + 860254.5911322159, + -806828.2551321511, + 924809.5387281177, + 286321.1706357509, + -478278.68657509895, + -515462.8047398662, + -233063.26254950615, + -43590.24737013506, + 740071.0560837049, + 472065.97600446566, + 436639.42526444455, + -970824.1073798132, + -345163.6333388848, + 610331.9836901133, + 857544.0572051647, + -779687.2793674718, + -838708.5879016098, + -324611.83470549074, + -595244.3325915864, + -542884.34456587, + 466249.3426644711, + 95900.24312155254, + 156599.56808004272, + 165133.00164725963, + -846570.4633197617, + 348333.45096258505, + -771546.1556484185, + -855146.2721229801, + 986489.6906019467, + 603863.5539849293, + 610252.5358888202, + 140011.1809209714, + -95033.6351602028, + -84524.83828230939, + 262573.53623278876, + -840038.0061571873, + -197890.95535939062, + -479564.35747890925, + 728995.5095796643, + -31112.6298263551, + -284214.27169543836, + 516645.18594375707, + 918483.1057696905, + -574633.8720491563, + 852055.4752580493, + -92538.64743070416, + -472477.1206077489, + 288871.9954343542, + -223881.87161972374, + -699004.9477200075, + 769529.5288868764, + 756073.0489544501, + 168555.33314674086, + -1880.8949058986002, + 148976.32960702566, + -853583.6814727968, + 634403.7393172119, + 142257.15154682894, + 30586.908304849338, + 781718.6248935732, + 894335.8287506866, + 548608.0329402523, + 598875.8360151552, + -903604.6934704852, + -88900.08985195874, + -366527.8803815715, + -174420.44282620682, + -629355.8199032496, + -553927.1684126186, + -428173.7897695694, + -252301.87898084754, + 313245.34172328963, + 366030.307913177, + -474347.61995963927, + -154325.02170322902, + 731177.2570996343, + 436945.6847641666, + 498296.7288118161, + 793027.1812014345, + 312655.433136634, + 183653.72642319743, + -851873.463671051, + -437404.8582437142, + 646454.6060582794, + 823004.9339651726, + -751952.5217245396, + 97531.28218776696, + -895882.3753819929, + 805815.2186982868, + -95428.18565364386, + -703347.6564091174, + -359517.17154064757, + -95759.15574261452, + 550323.1997206839, + 842099.8382991485, + 551252.8146404718, + 941472.1784700857, + -680551.2487416336, + -518736.24636695336, + -491167.2773408815, + 834480.5155909725, + 771970.2137992999, + -998826.9548514923, + -224268.6747803544, + -129079.36143563958, + -409060.8608443083, + 119498.78235309663, + -669221.2864820848, + 74032.02254632647, + 686187.6314717144, + 336999.1951496174, + -181928.604992045, + -941902.1765725806, + 148481.05912251852, + -357608.0204913703, + -125199.30365065268, + 507312.85928665823, + 410683.2206831499, + 207584.0871651611, + 738220.2672021105, + -866986.0214052041, + -734681.8392605066, + -152474.62674095668, + 111597.88902606205, + -53049.65260569516, + -616518.3855797068, + -377964.17195417086, + -398970.95834330964, + 472498.884107279, + -630291.2896075221, + -977507.7794531077, + 104785.02517838529, + -894456.4907495503, + -577531.3099235204, + -868352.1091554569, + -664598.1969277215, + -872467.031419987, + -848793.7889502881, + -150996.5685952206, + 880565.8085885945, + -753356.7470928162, + 670522.2159651503, + -591695.5540900438, + 703707.629045234, + -32467.379151202014, + 158082.23444922164, + -13109.78059693646, + 333126.0673578338, + 152265.36739361496, + -235259.18422654324, + -377292.3568701216, + 865059.0151271991, + -560746.0258996962, + 784763.8331658464, + 282283.9461677047, + -401736.4576638147, + -580763.4995592819, + 830447.5868304016, + 174784.16232451587, + 488938.878118701, + -157609.0002382695, + -689920.4462558852, + -307136.97078122926, + 442465.0286733711, + -83118.03664461049, + 735881.3698394555, + -454696.33022476465, + -338128.1989951814, + 756738.0367657318, + -292074.8922043432, + 130607.54613930082, + -169797.0939182838, + 178546.58044182113, + -732269.5048050025, + -996776.3899438271, + 862390.8184633066, + 795479.1857620578, + -757854.0561086511, + -820510.7975162807, + -121152.52714987613, + -518664.6106508654, + 596643.6455388488, + -461956.5983016678, + 848803.1738579615, + 489998.48093460005, + 698751.5051396186, + 465682.3850358889, + 816455.702057093, + 844750.2218133402, + -240980.06123384243, + -176984.32577647205, + -242509.45372394362, + -419118.9608432577, + -655325.8309618591, + -442098.36472090916, + 836392.4587400098, + 483952.37676486524, + -154547.57874865277, + -735282.9353248354, + -40942.95824396909, + 348517.6876881515, + -232731.8953144042, + 261680.09555965144, + -892336.6355854166, + -445685.5096079706, + 789427.2454475953, + -322362.6205055701, + 395049.55154209863, + -689821.0650496801, + -550820.1754531395, + -336561.8233300327, + -949166.7854389496, + -658825.2281227594, + -764190.0773305794, + 446542.65288409765, + 657361.9528847854, + 834948.3959982314, + -537561.5643833827, + 60489.98701520203, + -778719.5295647866, + -865442.9888989801, + -946784.9582334957, + 699606.6979539392, + -808662.7823848294, + -886374.0222182613, + 143445.50592646166, + 717122.7283950439, + -189959.3157990438, + -294612.8855194881, + 225655.51302383802, + -932057.8489668514, + 617398.8332351065, + -788404.1067635256, + -582293.9717377771, + 511902.40143023914, + -732371.5710033076, + 148300.96025899908, + 111516.48396057267, + -686750.1936856447, + 816027.4322492258, + -277181.2146530834, + -650354.5495611209, + 52583.00219727241, + 549407.6083453385, + -603906.0618509586, + 677030.0873836093, + 775498.3056201561, + 819283.9668034418, + 929319.730744125, + -911811.2245158883, + -877535.7425372708, + 485565.4253061228, + -209583.60273924214, + -431242.7768930298, + -379811.79012542387, + -152840.43600500975, + 370267.603869475, + 161781.35858539667, + -356600.38477580127, + -215931.34886113452, + -810019.2761558522, + -575583.2200346614, + 805375.0664091872, + -839320.5411553384, + -317849.9585191015, + 966880.140237979, + -998021.5723692257, + -286323.65232082235, + 59289.81596642169, + 81757.63874707754, + 740677.9698150854, + 47452.42070068389, + -699687.4008961509, + 396050.1530931395, + -217496.56425047625, + 381615.33921536314, + -380574.2408321684, + 546470.1528018337, + -927552.671774267, + 372473.6258653911, + -351816.8698252324, + 876326.4205485648, + 856031.4368242417, + -742427.5389398369, + 912983.8340727295, + 989995.2788715458, + 923331.1010417473, + -358187.39609211823, + -284437.81619076483, + 765944.7318797669, + -243705.17765533295, + 418100.3885747867, + -426249.84344446124, + -168035.18639889493, + -164721.8119388929, + -328187.87404652004, + -974685.7749259599, + 415316.73564771056, + -53696.519706066145, + -767183.6569094082, + 602078.4762886771, + -49070.491632454025, + -762804.2714178236, + 288349.8604819221, + 507209.4891702097, + -369510.7035062415, + 286868.6018142987, + 374168.31954809715, + -627037.0604927718, + 373946.061906882, + -515368.61785647226, + 303500.1739670362, + -299412.9414421751, + -221631.96688117724, + 11248.774428656905, + -238717.63511473866, + -946821.9131313665, + 198154.0287545416, + -751849.211181693, + 683315.5816703807, + 202934.74039581793, + -236603.71256760904, + 36408.8020560569, + -362994.0593956116, + -598763.9544661037, + 792317.1504136241, + 158018.6288753369, + -69469.41685494123, + 800665.2979139157, + 734952.9037321925, + -494621.1823249269, + -272169.0607458098, + 977246.3289523004, + 542741.2172675028, + -58308.21822495414, + 56779.25919522075, + 599370.9956578608, + -240496.21047430957, + -557338.875464903, + -264925.39578065986, + 611297.9576772155, + 516108.10813642474, + 780473.511102833, + 281070.6682159227, + 792808.1007920295, + 823971.8142868538, + 528578.5969288304, + -573985.4043063368, + 889666.0962224933, + 834267.7229605693, + -373293.73769750894, + 776361.0253164197, + 255919.22204453876, + -927728.9869023431, + -224297.45639048028, + 744081.0099810675, + -98598.89577669834, + -955453.1900511223, + -639064.0003676105, + 485143.6431168461, + 860108.424798722, + -852964.868720755, + -492521.2859908892, + 363692.67162079224, + -236750.07882047127, + 998273.3642931383, + -906820.7500754176, + 337655.85349100234, + 194860.98403774376, + 751987.7741559888, + -796313.746522699, + -789651.5713798298, + -577385.8632610905, + -673572.2445082628, + -264689.8509489843, + -704619.0310263032, + 377958.8558851479, + -882278.6701103802, + -789057.4462423074, + 573823.2357526305, + -651094.5599219921, + -340574.61258254707, + 570143.284222858, + -501096.76291175996, + 913601.0077770718, + -177247.68046096506, + 85369.60815294848, + -379461.71527349716, + -294354.25914785516, + -487902.85752242536, + 906121.3876679564, + 213963.33845066495, + 136486.19753145796, + -322460.16978844104, + 110115.53470343571, + -76940.04934945142, + -709594.0750426356, + 127416.82008068355, + 873827.8648224331, + 569426.2010368409, + -315978.7563100804, + -344096.31277788646, + 467024.203364437, + 972404.7415354928, + 734257.7118133808, + -884979.6716525995, + -644284.6772222108, + 351292.39595967345, + -805530.2155011293, + 157126.94414015303, + 531672.8204095991, + 313879.38597633113, + -669750.0200522619, + -928069.3183483853, + 120533.10990977817, + 611253.3017903763, + -370018.15223551524, + -942237.9914748644, + 29094.702913485147, + 456638.2703999801, + 498889.0433708926, + 650595.4471786204, + 948552.6966291937, + -44361.25266287183, + 269488.26230879617, + 711084.0809312062, + 301743.96901413146, + 678513.3711636302, + 74974.79250578131, + 409828.0535749066, + 876923.1848843993, + 119299.04595912255, + -813618.8294160923, + 873610.259105017, + 509167.0649891251, + -901544.5432644939, + -699412.6159477539, + -709837.0488870345, + -319564.47245621856, + -761353.3296419324, + -739339.2768077732, + 261103.5971783753, + 515860.3188855304, + 714563.8411949562, + 952556.4851485806, + -780781.6397329741, + 937465.6825038469, + -803178.7938823747, + 581333.6039827648, + 839809.9332398885, + -913740.6460254149, + 449965.08249840606, + 658170.6193614552, + -704356.956066998, + 295231.45466173405, + 517998.0410790452, + 118317.46762684148, + -148474.97347387817, + 650507.6796735725, + 660995.5173192346, + -746639.7855100826, + -671458.6684294994, + 125954.79310564039, + 299312.16857639066, + -331983.8634966854, + -690698.4084337917, + -484313.6484722672, + -402702.14202527056, + -963336.6658876128, + -477159.1464606759, + 462407.16931254667, + 154823.87797654007, + 410855.58359993744, + 238456.91042636207, + -716791.7994726019, + 767524.2517304522, + -187317.4150911252, + -577768.8469843285, + 769829.8963626355, + 580744.6310600439, + -66295.44301636248, + -623149.4310074068, + -966750.4701256802, + 60030.82193173204, + 889111.7196432959, + -772605.5623288198, + -398966.9055641287, + -173813.66418468236, + 573297.0105229771, + 544971.4421925842, + 181622.0054271791, + -298137.6711303969, + 483968.4326952378, + 902426.8942792382, + -346178.9411309759, + -327693.93233395205, + 250849.45875833053, + 965903.1348087577, + -437336.5666268163, + -99917.64837306038, + -333329.424926774, + 302022.53350511345, + 588812.9221087539, + 455922.0597099005, + 284910.8960690885, + 451817.43569772557, + -934437.2704777415, + -949314.0955752035, + -628291.5742878261, + -567056.6420176353, + -553334.3038154889, + 34459.1673726824, + -170319.34577101283, + -397338.3358545259, + -433213.56688659417, + -121097.83481917735, + -594130.4823077797, + -742846.4822017557, + -254740.26899740277, + 236335.85621669862, + -448151.80118110985, + -639964.1950726409, + 760944.3599253844, + -544053.0926553826, + 328794.91046241194, + -298109.89953366265, + -597620.5523672891, + -589346.3961094103, + 5083.626322929913, + -719700.2996779762, + 820706.8041417582, + 304143.8322525611, + 820671.3921052602, + -713140.5043605723, + 519512.47056427976, + 915710.5015427669, + -284044.9823208684, + -407308.96062071744, + -807753.3321592043, + -895212.9018650372, + 831622.9627949215, + -21822.849019256242, + -47369.454295688614, + 658717.0317048321, + 33906.610152312, + -275211.2261045234, + 968259.6440143192, + 835136.0668277784, + 484134.21860388597, + -754957.0583677647, + -468251.9595479606, + 480112.5758800815, + 504764.67328162934, + 72859.90429030487, + -822308.6965159456, + 199914.8599883669, + -796323.3217591847, + -970006.6669622916, + -995864.6395551743, + -784552.3041507332, + -893058.5320538153, + 735476.3387120038, + 190460.07572083035, + 285623.10212868435, + -731081.2798080504, + 989908.6480350614, + 447666.11805934244, + 251113.04515835896, + -535004.0450121616, + 933808.4401420316, + 660013.812155916, + 688871.7650333842, + 647276.643477577, + -508186.5495762881, + 435115.7196843101, + 403971.4732690698, + -629085.7574144776, + 285420.35348792427, + 441558.3182356082, + -249967.74442184644, + 983833.889543259, + -766680.0445626559, + -887114.8502687125, + 117349.01599864812, + 977760.9485467655, + 13346.937350257493, + -335131.7746287854, + 8798.389445823896, + 547533.0917250862, + -787491.8742771259, + 947228.8200541938, + 529516.5063822762, + -943421.065859572, + 963308.8941907522, + -921631.2863583902, + 329841.6101123851, + -653642.8870488249, + 482531.9781019357, + -325047.43107249844, + -113626.03578299191, + 763063.5826122563, + -559481.1363294352, + -821808.7488555277, + -859935.5712430583, + 680840.6182936446, + -322080.8295212627, + -313404.86650861445, + -55687.2200791303, + -936524.2344424634, + -883576.624901446, + -769953.5282208321, + -190553.45310046757, + -785223.3313241292, + -737077.4683679981, + -414734.1141206713, + -672342.4549689328, + 945205.042025586, + -427203.3246298399, + 822662.4299963674, + -18707.672116918595, + 756385.0249515868, + -516567.4010384933, + -849704.0016547204, + 572320.8428699595, + -671618.5881212282, + 277843.63690074533, + 911483.0590294146, + -804013.6284772945, + 478395.24314106494, + -811029.0018434132, + -262800.2394146558, + 327407.6902258893, + -583997.4980967278, + -132798.82766355676, + 686682.9246791515, + 881433.7867519683, + -798423.059573356, + 686503.780660142, + 353142.65775506914, + 162917.21209013386, + -199528.66333103247, + -634451.3586160667, + 306476.69254405075, + -768139.0297084656, + 361673.2606361384, + -501626.78964226146, + -772553.4183609884, + 815548.3840356627, + 359494.7123972616, + 627949.1086363485, + 446744.234024286, + 842828.5032186918, + -23824.039308904645, + -552997.0419693318, + 825926.8853153714, + 689581.9221533792, + -700041.574958739, + 646508.2778071713, + -798353.948987244, + 124715.51371617772, + -114574.81299207517, + 515243.0958648966, + -311938.85143241484, + -216056.05943976957, + 811550.3917825834, + 44372.16707737912, + 710621.462635788, + -157386.44279620706, + 71666.34815168793, + -684483.5026680101, + 614094.6530508824, + 471804.0876488623, + -725149.545740764, + -351956.7330889226, + 188128.43718252136, + -866514.3614885394, + -630117.1074336501, + 294602.1335758904, + -995604.5266617624, + 770640.9057752877, + -262331.95853938593, + 391952.0217685493, + 634766.34154365, + 587585.9178245267, + -89436.05632266593, + 898976.4466029222, + -466342.9318166086, + -105816.72333048165, + 687323.5626654901, + 894519.3453401669, + -481307.03273023135, + -813416.9652355734, + 592300.3179471269, + 875726.1590746323, + -722596.0243192979, + 644837.9977576598, + 421167.2155853159, + 701559.9779968335, + 485971.59148750425, + 302647.944265386, + -724397.206895517, + -70322.04924529139, + -614623.6409889816, + -453457.31822680426, + -522797.78178239014, + 365295.4622661484, + 337825.2395308705, + 507377.45493051835, + -270807.8192827681, + -190347.71864474888, + -755164.0160033961, + -553684.2499992875, + 839161.0429270562, + -716880.9093409365, + -668018.2719246101, + -917394.7814196957, + -69024.52566176032, + -834815.7310607014, + 4350.687905292805, + -991261.5008008269, + -661537.053660477, + -759530.4932528293, + 647709.274558641, + -546822.917316347, + -502705.02418117615, + -343567.90440601157, + -486064.244873063, + -42071.592649032485, + 121972.1823623685, + 999897.6670972623, + 338340.5416757388, + -344873.2929242737, + 9448.143559748212, + -305152.41467422683, + -247291.40289358466, + 263262.65327425057, + -264903.34007845505, + 679573.7148579349, + -914576.5272579557, + 236067.89188540712, + -569584.4355122246, + 537152.8490186827, + 796447.3075263916, + -884217.1484318104, + -859982.534647588, + 68689.99080125948, + 403167.7242535845, + -812009.2621897155, + -10517.666407116045, + -470159.9464817261, + -234897.76073823342, + 906262.1963999255, + -125520.06373675306, + 156747.9630301749, + -215233.83876435796, + -846488.4087327451, + -358278.1071324539, + -124201.84824884584, + 64533.46222676193, + -516532.4346334024, + -601925.180863301, + 76267.47379551646, + 879237.306230467, + 587178.3124311878, + -110891.19005942516, + -992505.0080537414, + -347573.6906266138, + -249762.4005705108, + 581608.9138414848, + -673449.0473919732, + -583388.5461944022, + -398770.7661075126, + -682971.5566636538, + 75045.7278098271, + 733293.9663070794, + -172173.40924431678, + -859801.2276585189, + -39699.752065404995, + -528541.0184098254, + 396547.85146663676, + -859019.3411548728, + 66115.61697118229, + 485462.12887555675, + 875453.3860975011, + 261969.46205185045, + -832074.4771624613, + -329380.4874791255, + 634752.2479267404, + 816231.5974027463, + 391026.096153821, + 622783.2295132176, + 833688.2097718827, + -280470.3948263092, + -643016.9490523296, + -814663.8308455332, + -278635.94826224336, + -847529.4094604702, + 156230.57247712513, + -185189.46272013735, + 360501.5741433544, + 247676.40367115295, + -609034.0689518001, + 475632.1974685982, + 617692.8317964126, + 738342.9123406038, + 12344.534517868544, + 443615.7707014767, + -801414.7210330585, + -77607.2675421009, + 791949.2743768111, + 514630.5911500952, + 509601.1149630109, + -137730.35026066683, + -431269.4059996236, + -461322.83010281896, + -230376.6095375437, + 762857.2261425807, + -695106.36332362, + -978780.3284945971, + 618291.6678365247, + -482784.08950718644, + -957174.4361632362, + -503122.43016750214, + 776859.7362429261, + -36874.44108803395, + -784412.370957266, + 572637.8357205411, + 141095.33374262418, + -469765.18773476436, + 467427.5361281046, + 872029.1293564575, + -166705.29505833786, + -603842.6884476498, + -354912.0221829971, + -410780.0013696317, + -686316.29631507, + 549729.2280166266, + -489027.0382248907, + -46719.77261728788, + 786271.565680674, + -168409.56876262836, + 157813.52760825484, + -267618.4977445102, + 172402.89748255865, + -838650.7902619013, + 461796.1306292808, + -529231.4892591364, + -336522.1500353555, + -320880.23612436233, + -544265.8592832119, + -523785.3568719608, + -733047.0406079699, + 448874.760253114, + 479484.3428275586, + 216532.24708716245, + -780875.0823880362, + -723940.1258097029, + 888909.7011801832, + 744827.109608174, + -617037.075316593, + -912028.3900739019, + 29385.88676009113, + 586949.343676858, + -622095.8867204549, + 614147.55875165, + -992218.6521357324, + 989434.9253573411, + -724120.8482295065, + -531590.0589222254, + -517539.6093437106, + -832600.8520342072, + 960657.0863384738, + -403313.3561328359, + 87057.397775818, + 473844.1775961697, + -932896.1480319446, + -284687.2146843804, + 762744.0281450697, + 255781.5076003691, + -715732.0726698671, + 219944.192367312, + -652702.3833335503, + -843879.8580154654, + -254283.220152955, + -835309.4386230248, + 379080.1014418121, + 954466.6890934415, + 617442.6579088056, + -169468.39691167593, + 901418.6408841481, + -150703.16303114616, + -764170.0293921556, + -640758.4138955986, + 824527.8530807551, + -222694.5693989979, + 619981.793830797, + 279966.3557332164, + -914673.3685312772, + -791770.6571829433, + -313272.6240859962, + 972029.7401187477, + -251228.87390526992, + -633038.7243176452, + -384675.07445503556, + -522086.82581271295, + 11832.718016612009, + 179371.645326152, + 636092.5386892926, + 609483.8675344911, + 366688.05597804586, + -48063.084374938335, + 762698.081509219, + -26080.976877237204, + 502711.74062719924, + 844788.3121640276, + -142850.86605370956, + -771220.5894601896, + 132802.6613966191, + -174406.65199651616, + 628578.5710833605, + 259264.65565098057, + 246518.6521715306, + -541891.5181151051, + -80035.79353996515, + 52799.93731020172, + 733975.4046907515, + 314832.61957444774, + 148996.70697011813, + -144786.70996532906, + -882340.5246306022, + -752028.669463045, + -745732.6219238873, + 361752.31905428396, + 798734.7303217083, + -415442.9643692379, + -777165.9702765666, + -884738.9864203825, + -277182.4185244145, + -457645.9664899786, + 550292.6909928769, + 724108.3396727841, + 923589.1589958405, + -293866.91262378695, + -433026.9609451467, + -573110.3335846213, + -59698.049883428306, + 363536.6080183029, + 900826.1743858807, + -976423.1859303191, + -859410.1442000796, + -760084.8701635192, + -842143.6918360303, + 20139.574385072745, + -826095.3877290103, + -799011.3258797685, + 812835.5056128355, + -447067.87029947614, + 511252.9117934932, + 55632.74931077089, + 19535.79334010014, + 502546.1747023512, + 705980.3444020525, + -394587.71773398516, + -948217.241158128, + 474913.6801791001, + 261298.26907160637, + -30805.978761354603, + 770284.6974537217, + 357752.60761996574, + -659173.8471420365, + -607142.0939847548, + 756989.76902336, + -183734.46821322138, + -226462.21423056055, + 814564.2739968564, + 436022.5666919102, + 980550.6513249411, + 733890.3528976466, + -857210.6008207247, + -280459.9112554971, + 72859.50574240019, + 811549.3468269572, + 43966.68862290909, + -652547.7636939208, + -770159.5710452267, + -585083.3333271506, + -391618.4376336367, + 140529.45087793624, + -487443.5497208198, + 35108.89198067102, + -482918.9907786271, + -846680.9229505205, + -852794.1473676561, + 39601.71120246314, + 968483.4972324665, + 731551.6008894293, + 931716.0405018902, + -434113.91021663113, + 767140.0943679847, + -661499.3217699834, + -347514.7059202179, + -899428.5669430122, + -657067.1260960137, + -57594.343926136826, + -419449.09347852156, + 395764.47480919043, + 972847.21586345, + -452068.9759557437, + 642975.4186289314, + -489219.00989599497, + 71612.73869665319, + 644562.9847490258, + -724018.0838348367, + 711232.3954089215, + 649724.0495641192, + -657294.9622241316, + -842501.5882254431, + 649048.0069551194, + -367437.6788716265, + -71177.65862594072, + -230178.665734591, + -599737.6381537707, + -362731.3319319623, + 593164.9777333252, + -916458.8033821614, + 708074.4627284872, + -951269.9169275134, + -767390.0800439158, + -54233.57042392984, + 112384.06148844416, + -676940.6075903261, + -343585.79410295165, + 380622.1951797597, + -666028.1096000503, + 18210.50005219149, + 403988.55034623813, + 49131.36946225971, + 581717.9326907796, + -391624.7702485367, + -121953.9898486115, + 859.4224751392599, + -927510.8238268774, + -402763.3932162509, + -922274.2110410016, + -363559.17552459304, + 443600.81590450194, + 876804.5751917672, + -644913.9091309493, + 645181.1008316732, + -744999.9975197095, + 711200.1155450429, + -718802.6131773075, + -589628.3293142844, + -894528.010753233, + 720543.1219287761, + -713261.4345312329, + 901661.4551144018, + -717615.8912460882, + 267533.919953002, + -633358.5379277682, + 419377.253912127, + -177647.96475387624, + -516920.72330550285, + 327583.7853509598, + 520819.1797847843, + 350300.77329405886, + -988112.5284260073, + 710588.3397859995, + 981568.7111589207, + -665552.294781591, + -793009.9464237521, + 414451.74655842787, + -25397.666070078983, + -853894.7347639932, + 895106.4409199255, + 874899.8829013575, + -762397.6890746496, + 944744.2742735195, + -98837.54922764609, + -664586.3797982429, + -603809.8066668194, + -232917.36539511156, + -491465.765949666, + -451261.8660916994, + -33288.69234465115, + 852952.552650305, + 577002.2922082945, + -560907.084419437, + -933706.2391850161, + -145745.15460832504, + 1938.6771421989745, + -960149.4011226915, + -170562.29233685217, + -794180.2774817024, + 15332.272683221016, + -422457.7351126812, + 147525.3688103151, + 563571.2037184937, + 843537.6298581809, + -593892.9974055766, + 839879.5367851306, + 269579.3687983612, + -744255.6475110647, + -583637.7633800403, + 46654.21494484701, + -938189.4735793832, + 197523.79915031936, + 626100.1524561009, + -326881.78359177813, + 261730.41322840817, + 953940.1852560709, + 725392.1070335926, + -40816.19360819411, + 781691.1883219513, + 376257.19351697294, + 486573.73041888373, + 657365.6271911011, + 725064.5635545201, + -190529.09336950275, + 547085.6629513345, + 639871.2131202575, + -97755.5419205729, + -793736.0839922765, + -19243.173219408938, + 623149.3488257058, + 173524.2846866225, + 427642.3792832327, + 609165.9469071773, + -247226.5888012395, + 931755.2990700259, + -291397.89419018046, + -286954.5439037293, + 477530.9380740094, + -481614.238657514, + 940375.9347545557, + -580124.6294640541, + -399243.91364627663, + 96591.05548042878, + 566053.544113681, + 47356.756173632995, + 505225.1470925639, + -417203.4697296623, + 923865.7641213705, + 621154.761918006, + 588640.7653873737, + 344544.86669026373, + 859483.3846366437, + 660873.4936120859, + 251603.31935460123, + -192795.72125363487, + -520570.2923372526, + -414535.4131803336, + 481073.6871555208, + -174678.51560619674, + -560003.9311959768, + -538167.5108347839, + 13672.764967209927, + 716978.4937935866, + 162207.48993686552, + -80303.8085281187, + 973923.865699531, + 568283.3247184058, + 376498.38097867725, + -286797.8761373708, + 938768.5079328278, + 961565.4936674045, + -181547.56032793727, + 728138.6112311399, + -517616.55068056524, + 208964.39088211505, + -911472.1705976703, + 475539.1936354372, + 932828.4950779648, + -41484.59441157515, + -292785.1467195832, + -208235.12011670187, + 529866.5661184035, + -126066.11356799724, + -714976.481596677, + -722173.4700041352, + 669967.4397389148, + -266975.0828028985, + 242770.36301391176, + 853999.189949245, + -639181.6756478499, + 953286.4661460969, + -163004.20189170993, + 117436.916022011, + -520854.41586435447, + -925407.45800769, + 976421.9711462008, + 621248.0563987199, + -946404.4164239902, + -166596.28416809902, + 799547.4470635839, + -518919.559648898, + -437763.71614300436, + 338060.38912244386, + 85558.24486552832, + -102620.39420632063, + -856130.2587879092, + 465493.9134888114, + 754820.6144688388, + 21149.414609380023, + 670562.580638201, + 114617.33030475196, + 908835.9212057517, + 811454.0545861686, + 608252.4483112211, + 16846.093687938213, + 124689.37349683506, + -719120.2540195603, + -185967.00629360985, + 251276.7288205573, + 345322.7548513471, + 175654.55575578203, + -184925.6289728385, + 208014.14493150782, + -596190.3623041562, + 847244.947215345, + 965924.0629816033, + 849192.1518362842, + -218792.4808529762, + 474560.8713147029, + -353802.3690026599, + 882542.3876617637, + -830367.7983778841, + -856967.643465035, + 594035.3427447336, + 577005.0155212749, + -981236.3021448804, + 391432.8582566971, + 467585.50844156963, + 186281.10617004, + -889204.8750537693, + 642302.539452164, + -851656.9539887982, + 630311.1215989785, + 709202.9972589033, + -984443.754792288, + -926492.4763239211, + -142908.3601240049, + 238526.66936074442, + 242861.37442372713, + 939021.8107404687, + 484043.0763757415, + 412828.91489878536, + -316041.1193335713, + -289249.35773951386, + -502211.641743636, + 588781.0390879728, + -62403.741817278926, + 96259.00147687094, + -469011.4100421072, + -896851.449704493, + -674882.3298679556, + -781400.8241404402, + -420226.37046262925, + 369217.6840910224, + 33970.114188952124, + 395338.8679812806, + 748710.6674800661, + -435287.268844972, + -865376.4197376512, + 13670.049556162134, + 680624.4733972524, + 581152.7634022386, + -77663.05117718808, + 779032.0051422941, + 769677.0959349022, + 377602.8953901793, + -505216.3400228422, + 472490.8127912777, + 741362.340338394, + 668437.3542852009, + -872142.6696618686, + 97799.5080948848, + -535402.1726515543, + 914518.5026417575, + 582408.612480416, + -625162.2955819138, + 359600.8996375646, + -77689.02431914392, + 777464.8291627526, + 803162.7979981209, + -38513.65021055542, + -709908.5384347928, + 462794.34181832644, + 96575.3459309424, + 199373.09183552544, + 440095.9144918901, + -762503.5863252002, + -415631.97884143685, + -254411.09377694948, + 649189.4635545341, + -858059.900750348, + -164605.596558983, + -201077.28893387367, + -818182.9581517259, + 654105.9168274747, + -337660.3714587161, + 881905.5805816231, + -859643.0888836095, + -388784.2862025195, + -21930.679526495966, + -810146.7985419923, + 886485.6278713045, + 110277.74298156422, + -564123.1406095624, + 290387.64113112923, + -686264.0680444405, + 867403.4583285084, + -566920.8575921854, + 972996.8672718583, + -21521.297983716493, + 24312.166688685633, + 113749.21988860809, + 457473.2055230315, + 777227.6485370373, + -438738.9201148422, + -233676.8901925197, + 882819.5976580817, + -921449.5136107212, + -738250.8289512641, + -354129.5147390149, + -402408.7478065912, + -385424.31273816514, + -838993.4959292777, + 507378.02590130677, + 646170.6406003737, + 784761.7050422058, + 830485.6108744567, + 262852.5569912026, + -700201.7741508895, + 530262.3749639206, + -737700.4080162377, + -932914.7869766891, + 888629.0454641348, + 296927.8049937179, + -136967.12925162812, + 716165.8203689172, + 256073.36007168845, + -711707.8120755384, + 124439.40015480792, + -268805.31342992355, + 283288.817844483, + -519489.6134254383, + 653341.1729396186, + -620946.1527198094, + -234994.1008880867, + -806931.8481202696, + -4976.705928132929, + -407488.15567177755, + -904761.7440831801, + 826838.430149214, + -415880.93938508665, + -926118.3904840451, + 850990.9068012859, + -310084.4261053883, + -509161.19873339485, + -479407.23628669925, + 643840.22925911, + 496815.64558863454, + 934633.8751740366, + 331258.51466960856, + -741368.0881708044, + -410120.8163161709, + -82229.01262198134, + -808842.7489688051, + -75534.16139719138, + -715769.8613540266, + -826577.6302597478, + -931565.7291341546, + -606702.0857310273, + 131661.61168409584, + 488348.07006892335, + -354116.92921856616, + -218247.22728333468, + -802010.5200497974, + 9184.204864025825, + -581160.2834020411, + -603074.508616982, + 341170.63919401926, + -800837.6617120674, + -83680.22099230177, + -137244.66114671397, + 538141.078381243, + -826110.2473572615, + 986406.3465074698, + 348890.6842165733, + -57940.58857880402, + -300232.6904947266, + 221805.89972327836, + 983373.6232215092, + -201155.26620201574, + -745592.3007043626, + -712099.4135573988, + 172114.88332742974, + 103155.53849642423, + 61420.38844754105, + 440011.11677464744, + -308332.6421673376, + -877320.0060132788, + -736998.4731007031, + 964441.4853303196, + 908876.6390714764, + 775052.8029047525, + -621549.2270214213, + -91362.21869818706, + -315118.1681512076, + 399299.81825602544, + -641075.3967708645, + 576023.9557127396, + -124297.29107141796, + 931461.8027367103, + -817190.3837038144, + 840771.9919093266, + 378069.3632749952, + 599252.30687665, + -852208.751482923, + -540542.6400731581, + -680520.4512217782, + 398541.8875847939, + 761319.1116145841, + 405766.8310312914, + 976910.9262818396, + -832881.8174814439, + -982994.0183115755, + -821159.0402301083, + -484973.5855545574, + 213425.38409035193, + 279232.43458775105, + 467720.5003638012, + -132428.6571244011, + 47709.33066836736, + 778862.7287934438, + -979433.8046944189, + 851841.9414116873, + 358624.547645054, + 436948.97429062915, + -670891.9752106941, + 461153.4304324787, + -351061.2898070766, + 724373.0706768062, + 620508.4366388454, + -40653.77880764709, + 813753.4664497739, + -63686.52939129737, + -12346.95449959089, + 466494.25602173846, + -49348.148369764865, + 481303.76852291176, + 133172.07709387023, + 623247.4671390118, + -590724.2040751552, + 40410.314155049586, + 912953.7619585326, + 950198.0908976065, + -250075.1615211585, + 355350.20461515774, + 182544.54816455534, + 454206.2174427357, + -978933.0168164918, + 723078.0152313494, + -790220.7334142552, + -656209.2681317817, + 600555.6653247031, + -383421.7496351753, + 105241.21352496452, + 8892.875564424196, + 249114.6831977078, + -572481.8459122027, + 330099.73042332043, + 391008.8021984532, + -785159.3608965493, + -115632.45672334133, + -929889.7998569495, + -411442.6588002102, + 392250.3372571382, + 204119.26274795333, + -892387.6203992722, + -129834.85944242057, + -290728.7227344462, + 47703.38567113508, + -379841.2204523918, + 515004.6609351537, + 401359.5327105304, + -623879.0242070497, + -198235.10558341196, + 171407.97345287018, + -665530.4115471472, + -221969.43917431787, + 637454.6364377964, + 746263.1207972703, + -226085.59164477192, + -643394.4476332346, + -164772.54528390904, + 911751.1883955674, + 80637.57086429212, + -769697.7001177241, + -634213.2428996119, + -171461.6177613406, + 419074.7867421041, + 563669.531549778, + -5806.101008093423, + -694365.3254648447, + -591110.0236427236, + -351263.2208071609, + -861922.3330318397, + 582272.8815668636, + -464040.1906666423, + 304839.71822132316, + 155209.55773237822, + 146151.69875515942, + 939387.8814044792, + 89392.0010538074, + 88504.46521250955, + -551569.2383591364, + 382275.0290451855, + 130807.69262596847, + 574965.3108112316, + 144588.25855479616, + -695930.1670214523, + -809505.2563139173, + 167778.28909679648, + 132798.95607938318, + 232760.82477561454, + 834353.4599736367, + 961407.8641807245, + -191264.664644198, + 812631.2353458247, + -809537.1679288428, + -565486.3616008074, + 676120.1647257245, + 312714.7132557424, + -721774.2162854061, + 919696.3084822039, + -458472.05661537574, + -88416.98227460726, + -859192.8248415752, + -930718.7800558052, + 533098.7816619514, + 967775.075928561, + 731919.7897291412, + -713492.3095151149, + -74506.2387431672, + -714189.0828118752, + 833575.2523278559, + -348161.0746322301, + -398455.2386472033, + 902504.6875094931, + -144692.3498769983, + 606489.5048804722, + -399282.10217610595, + 266736.25648825493, + 459354.45504684956, + 91931.06655805062, + 936215.0867877726, + -53560.8475211351, + -630462.6412781388, + -700482.1367019257, + 13524.709942484225, + 122037.62369447513, + -61382.04524773561, + -758687.0591673969, + -510685.7518910386, + 166769.98989532853, + -726548.2972093573, + 421500.75917593564, + 82656.04473228261, + 699626.086429872, + 438607.9337618587, + 907527.3296872355, + -884580.1316959251, + -18212.394740603875, + -661254.2635482625, + -951507.0350719219, + 958907.2573543316, + 248561.20845968378, + 98126.38844718169, + -443928.09909167094, + -585180.5770447358, + -402754.9519062004, + -371587.9002042368, + 794855.0392209099, + 985536.8801980193, + -304225.6591469479, + 330204.2688496827, + 381208.5054556966, + 40248.517964020844, + -301253.76670295536, + 265011.59239499096, + 854594.3107089731, + 450711.3220843908, + -420250.475265294, + 543096.7968595752, + 806773.8181366586, + 330472.70884639455, + 780219.056294958, + 552869.4717635097, + 560429.3115116293, + -538351.9093926519, + -719436.4380447371, + 537632.8057280607, + -320281.2658976477, + -825066.7708782809, + 468273.61513134534, + -699651.3324599189, + -217631.09935391034, + 955421.6910545222, + -37234.99369478933, + 671668.4960131556, + 799156.2998690367, + 35552.25106564253, + 609125.4597263669, + -97412.82818523067, + 461608.2594798423, + -678832.8511908093, + -230250.13056481746, + -333345.3961773145, + -819524.2473664981, + -791670.9977404197, + 665081.539322953, + -287081.77178865136, + 327420.21049277525, + 433046.90950860403, + -243241.49311669442, + 253694.2167738676, + 789575.2428913856, + -632689.3766926593, + -382301.55323161255, + -389371.1165283773, + -276951.33679181593, + 300489.61733938253, + -143017.60599759428, + -108483.88662385577, + 882861.9230177786, + -790078.3016030424, + 401098.0585440047, + 58081.404704023895, + -503229.49347082415, + -516166.86088075256, + 451346.79566602444, + 903728.271659594, + 797287.4867424826, + -294160.9967236554, + 980122.8557217953, + -906551.3941280053, + -92182.90756983793, + -860137.3572249926, + 867420.3304084598, + 292496.15142819076, + -579047.2424306716, + 617844.2015491157, + -221022.5224701168, + 467074.80832512974, + -608446.069910384, + 488928.88524644286, + -198644.54249264507, + 911352.5813257177, + -137953.9645391652, + -733520.2290329352, + 103265.52651505772, + 598693.5131562235, + -319558.55418052815, + -660231.0883890716, + 556010.7216273776, + -118091.56975420288, + 974369.1884044865, + 314475.51255708595, + -541821.0095913267, + -561929.4027061852, + 788146.8262313139, + -244721.49285771616, + -542258.2071940432, + -114659.49664475494, + -529158.4997269838, + 800176.1648421335, + -594466.1741608985, + 839230.0626320523, + 472077.23961767467, + 195000.09877010572, + -222791.0167788476, + 889536.5810561178, + -925408.5950043334, + 869230.0455926161, + -215464.5704450986, + -313501.00551293505, + -606904.34134762, + 703609.1234092067, + -275361.9095670772, + -959584.1221476196, + -408199.66874220624, + -539735.3471405284, + 892664.0282068334, + -18869.465932070285, + 180349.67474503905, + -762158.4317981976, + -207687.9957212705, + -890945.354502799, + 361870.09642792447, + -334036.1646177474, + -409583.36704583245, + 884800.9847202292, + -326387.8974587404, + 890228.5196394926, + -876598.2964159332, + 333447.2130126558, + -312114.94122071646, + -108137.38481648905, + 432137.1407241159, + -574066.2570546287, + -141079.84721057786, + -256354.4513338414, + -835033.0048714681, + -134699.36722514287, + 842730.9756153929, + -238053.5735034419, + 973048.6883565593, + -106885.47174873154, + 284769.34556681453, + -742214.1563278204, + 249682.13885541135, + 47520.98024428397, + -800570.2489250514, + -601419.2479553013, + 125194.82913864266, + -979634.5067537284, + 246355.29399315393, + 642754.3630776387, + -781166.1587707603, + 741123.9832342, + 698264.5800532494, + -882673.1103672587, + 917973.3102436778, + 439632.11805041705, + 583310.6403040404, + 3248.862588606238, + 152657.6155992363, + 771190.5433660143, + -909712.5038274741, + -924725.4666325129, + 31695.4348391707, + 581207.6723088049, + -303737.7752301655, + 718803.2194755813, + 407747.7319779439, + 302223.85721211275, + 626975.8618097032, + -555577.0776657347, + -372538.1768851792, + 393761.97459584585, + -120274.37850419265, + -78058.97834357456, + 758868.1953611489, + 32541.26034559768, + 325532.0490863307, + 121838.7832995862, + 673690.111951591, + -270019.43797918403, + 40992.187396631685, + 703641.656901796, + 546801.7210152452, + -647437.8739925013, + 624866.3640141645, + 984541.540488832, + -872584.0010188981, + -842044.9763167446, + 999523.6971017229, + 451061.4026367941, + -783714.1538043644, + 913517.9097674524, + 921122.4288276345, + -436971.9280807165, + 423913.7363855321, + 412823.53685668524, + 642847.0387226039, + -854210.4399346987, + 969373.1855498615, + -912793.8211064308, + -675544.39536996, + -104704.25963279163, + 361050.779728199, + -48784.054381242335, + 271366.43278342934, + 946204.5724373694, + -908705.5713468881, + -946075.1316669954, + -685954.4456943838, + 28113.428232126036, + 300937.7278295571, + 645758.2149665427, + 978712.3751622173, + -133869.6936606516, + -612230.7435148311, + 678016.0743584111, + -600373.0473810056, + -864140.0676472915, + -566282.5537314933, + 749796.7623490723, + 604037.0030399809, + -509640.7415089887, + -216706.73802920227, + 549882.9129817148, + 16726.018219827667, + -638205.7306452933, + -855512.2221158913, + 808622.5623023391, + -390721.48305335874, + 212475.90960610195, + -928689.3966780811, + 214183.55257498223, + -820164.5975064138, + 251932.14804251696, + 460553.05239914946, + 110511.34103057093, + -186845.44473889188, + -660448.9107881075, + 707538.2163043232, + -736062.2053512099, + -63311.286504623255, + -836698.577788465, + -329243.70121681655, + -365312.7924887023, + 951306.2097244962, + -783341.6135948261, + 916474.6722630681, + -604876.4661773534, + -727436.4036086585, + 362136.9669187524, + -349079.1710379566, + -867116.7023433555, + 767518.2495107739, + -777689.0489512988, + -44659.937128784135, + 372870.847969698, + -286460.2217828114, + -742281.4632809429, + -580871.8623989486, + -234950.24425660828, + -135134.21473901777, + 385173.54088815517, + 47727.774492929195, + 523663.9864736594, + -783889.916719223, + -738001.6384320635, + -598964.6551841439, + -212071.8731585296, + -220125.595222187, + -150204.22749384755, + 221274.26456686706, + -685375.4367931215, + 937112.5241186297, + -90098.76840059672, + -294044.6431997588, + 32838.698558043776, + -925735.9463018979, + -410925.7297657842, + -26736.47282568403, + -571589.3988285122, + 215807.38837979842, + 657339.9182578097, + -157946.2963706557, + -53642.54056548501, + 505808.866275802, + 95554.43324296719, + 512939.618519509, + -567938.9299301436, + -212600.76390527427, + 644897.4747924516, + -463838.0100479056, + 381893.68662886, + 935612.7734646391, + -996789.163573987, + -508841.12739114685, + 681081.6694636388, + -937461.1972945685, + 116412.45005795131, + 988005.4977559051, + 622222.8734993594, + -881302.7481469609, + -385207.44806337, + 305693.03914191906, + -405045.1338857135, + -429534.3235379718, + 68673.63805819892, + 651663.9434072415, + -325930.39784147893, + 216382.66624430314, + -291561.60560353595, + -301302.61834368424, + 833760.6881373913, + -873491.3768074213, + -39987.05909251843, + -317024.3234668078 + ] + }, + { + "hovertext": [ + "Nicolas", + "Lutz", + "Rosemarie", + "Marc", + "Michaela", + "Margarete", + "Bruno", + "Nicole", + "Steffen", + "Stefanie", + "Christel", + "Wilhelm", + "Harald", + "Mohamed Maged", + "Salim", + "Marina", + "Ankica", + "Ingo", + "Christoph", + "Olaf", + "Rainer", + "Pieter", + "Bernhard", + "Franz-Hartwig", + "Claus", + "Helmut", + "Heinz G.", + "Peter", + "Thomas", + "Wolfgang", + "Heinz", + "Hans-Dieter", + "Frank", + "Harald C. H.", + "Franz-Josef", + "Norbert", + "Georg", + "Kerstin", + "Michael", + "Volker", + "Alfred", + "Günther", + "Claus", + "Stefan", + "Susanne", + "Jens", + "Hans Adolf", + "Rumen", + "Steffen", + "Wolfgang", + "Ulrich", + "Andreas", + "Gerhard", + "Helmut", + "Matthias", + "Walter", + "Hans", + "Bettina", + "Hans Jürgen", + "Helmut", + "Jochen", + "Jochen", + "Bruno", + "Peter", + "Volker", + "Hans", + "Gregor", + "Horst", + "Michael", + "Brunhild", + "Peter J.", + "Georg", + "Wolfgang", + "Reinhard", + "Axel", + "Friedrich", + "Günther", + "Klaus-Peter", + "Knud", + "Joachim", + "Bernd", + "Arthur", + "Robert", + "Hans Willi", + "Frank", + "Werner Dieter", + "Ursula", + "Markus", + "Udo", + "Kurt", + "Sylvia", + "Joachim", + "Benno J.", + "Rainer", + "Horst", + "Wolfgang", + "Heinz", + "Josef", + "Detlef W.", + "Sabine", + "Uwe", + "Christian", + "Peter", + "Wilhelm", + "Alma", + "Franz-Josef", + "Gerd", + "Kurt", + "Hans-Günther", + "Edith", + "Manfred", + "Thomas", + "Andreas", + "Reiner", + "Heinz-Dieter", + "Nasir", + "Michael", + "Hermann", + "Klaus", + "Bernhard", + "Stephan", + "Robert", + "Jens Peter", + "Barbara", + "Monika", + "Fred", + "Herbert", + "Rudolf", + "Rolf", + "Ekkehard", + "Dietrich", + "Helmut", + "Edith", + "Volker", + "Thomas", + "Erik", + "Michael", + "Josef", + "Peter", + "Wolfgang", + "Coletta", + "Zein-El Ibad", + "Manfred", + "Dieter", + "Herbert", + "Andrea", + "Rolf", + "Gerd", + "Thomas", + "Karlheinz", + "Holger", + "Erika", + "Wolfgang", + "Ralf", + "Wolfgang", + "Jürgen", + "Klaus", + "Rainer", + "Martin", + "Ann", + "Gerd", + "Axel", + "Jürgen", + "Ralf", + "Thomas", + "Andreas", + "Dieter", + "Alexander F.", + "Peter", + "Gregor", + "Richard", + "Norbert A.", + "Günther", + "Klaus", + "Klaus", + "Gerhard", + "Jürgen", + "Lutz", + "Manfred", + "Ulrich", + "Doris", + "Albrecht", + "Edgar", + "Wolfgang", + "Malte", + "Hubert", + "Gerhard", + "Manfred", + "Georg", + "Herbert", + "Gottfried", + "Heinrich", + "Inge", + "Martin", + "Anett", + "Christian", + "Dieter", + "Helmut", + "Gabriele", + "Rainer", + "Herbert", + "Georg", + "Jacqueline", + "Thomas", + "Peter", + "Bernd", + "Volker", + "Robert", + "Dieter", + "Helmut", + "Tan Kai Pascal", + "Gerhard", + "Hendrik", + "Helge", + "Frank", + "Gerhard", + "Detlev", + "Frank", + "Egbert", + "Ralph", + "Bodo", + "Franz-Josef", + "Hansjörg", + "Immo", + "Kurt", + "Jan S. T.", + "Joachim", + "Bärbel", + "Frank", + "Klaus", + "Dirk", + "Marie-Luise", + "Vijaykumar", + "Johannes", + "Reiner", + "Peter", + "Johannes", + "Martin A.", + "Gunnar", + "Claudia", + "Wilfried", + "Christian", + "Holger", + "Holger", + "Günter", + "Susanne", + "Christopher John", + "Magrit", + "Jürgen", + "Steffen", + "Thorsten", + "Michael", + "Marlies", + "Susanne", + "Felix", + "Hans-Joachim", + "Maria", + "Heinz-Georg", + "Jürgen", + "Erwin", + "Uwe", + "Martin", + "Maritta Helene Minna", + "Martin", + "Berthold", + "Fabian", + "Anabel", + "Dario", + "Philip", + "Victoria", + "Vincent", + "Evelin", + "Thorsten", + "Isabel", + "Gerhard", + "Thilo", + "Toni Christov", + "Franziska", + "Matthias", + "Mike", + "August", + "Martin", + "Anke", + "Florian", + "Ekhard", + "Kurt", + "Leila", + "Jan", + "Thomas Matthias", + "Alexander Guy", + "Dana Monika", + "Rasmus Jonathan", + "Markus", + "Alessandro", + "Thomas", + "Robin John Andes", + "Cretièn René Gilbert", + "Michael", + "Sebastian", + "Christian", + "Sascha", + "Tobias", + "Sascha", + "Ralph", + "Tilo", + "Simona-Lucia", + "Andreas", + "Werner", + "Roswitha", + "Brigitte", + "Max", + "Tobias", + "Philipp", + "Georg F.W.", + "Maria-Elisabeth", + "Klaus", + "Alexandra", + "Georg", + "Salem Daniel", + "Patrick", + "Britta", + "Ferdinand", + "You-Ha", + "Nico-David", + "Heiko", + "Lucas", + "Stephan Maximilian", + "Jan", + "Thomas", + "René", + "Robert", + "Torsten", + "Oliver", + "Christian", + "Eric", + "Jochen", + "Ludwig Bernhard", + "Musa", + "Wolfgang", + "Erika", + "Anita", + "Dietmar", + "Johannes", + "Friedrich-Karl", + "Wolfgang", + "Brigitte", + "Christa", + "Günther", + "Jürgen", + "Sieglinde", + "Gisela", + "Rolf-Heinrich", + "Katrin", + "Heinz", + "Hans-Peter", + "Walter", + "Walter", + "Elfriede", + "Rudi", + "Alfred", + "Manfred", + "Walter", + "Georg", + "Erich", + "Melita", + "Rolf", + "Martin", + "Klaus-Gerhard", + "Günther", + "Hermann", + "Manfred", + "Karl", + "Reiner", + "Gerhard", + "Hans", + "Helene", + "Hans", + "Else", + "Hanna", + "Eugen", + "Eugen Michael", + "Sonja", + "Ralf", + "Susanne", + "Walter", + "Dieter", + "Susanne", + "Richard", + "Eugen", + "Andreas", + "Wolfgang", + "Werner", + "Iris", + "Manfred", + "Rosemarie", + "Günter", + "Martin", + "Ralf", + "Norbert", + "Margarete", + "Alexander", + "Eberhard", + "Oliver", + "Achim", + "Rolf", + "Hubert", + "Klaus-Peter", + "Ute", + "Josef", + "Walter", + "Eva", + "Rudolf", + "Beate", + "Winfried", + "Wolf", + "Birgit", + "Holger", + "Roland", + "Frank", + "Carla", + "Dietmar", + "Max", + "Beate", + "Wolfgang", + "Günter", + "Wolfgang", + "Lina", + "Karl", + "Heike", + "Raimund", + "Regina", + "Marita", + "Volker", + "Christel", + "Karl", + "Markus", + "Rotraut", + "Stephan", + "Ralf", + "Ernst", + "Karl", + "Walter", + "Otmar", + "Adolf", + "Thomas", + "Ursula", + "Holger", + "Gerhard", + "Karlheinz", + "Elke", + "Jens", + "Elsbeth", + "Thomas", + "Georg", + "Gudrun", + "Gisela Melanie", + "Ilse", + "Lore", + "Gerlinde", + "Helmut", + "Georg", + "Hilde", + "Markus", + "Andrea Maria", + "Hans Michael", + "Christopher Kurt", + "Anita Doris", + "Klaus-Helmut", + "Sabine", + "Hans-Peter", + "Hildegard", + "Brigitte", + "Karl", + "Gerhard", + "Margarete", + "Annette", + "Andrea", + "Sarah-Yasmin", + "Brigitte", + "Ulrich", + "Christoph Wilhelm Georg", + "Waltraud Helene", + "Hermann", + "Beatrice Raphaela", + "Stephanie Annette", + "Ann-Catherine", + "Norbert", + "Petra", + "Ellen", + "Petra", + "Ute", + "Brigitte Monika", + "Karin Elke", + "Hannelore", + "Monika", + "Monika", + "Adelheid", + "Günther Erwin", + "Klaus Gerhard", + "Alexander Egon", + "Korbinian", + "Florian", + "Donatus", + "Franz", + "Alessandro Stefano", + "David", + "Peter", + "Aline", + "Marco", + "Angelika", + "Carsten", + "Dominik", + "Robin", + "Andreas", + "Ernst Moritz", + "Christian", + "Jürgen", + "Benjamin", + "Jochen", + "Konstantina", + "Lars", + "Olaf", + "Torsten", + "Stefan", + "Mark", + "Robert", + "Stephen", + "Kerstin", + "Jens", + "Jan-Ole", + "Katja", + "Jörg", + "Philipp", + "Matthias", + "Henrik", + "Alexander", + "Holger", + "Rainer", + "Norbert", + "Sabine", + "Maximilian", + "Pierre", + "Frank", + "Jan Jérôme", + "Jürgen", + "Michael", + "Hans-Jürgen", + "Hannelore", + "Walter", + "Rainer", + "Domenikus Christoph Martin", + "Thomas", + "Gertrud", + "Gerhild", + "Manfred Sebastian", + "Roland", + "Ursula Maria", + "Andrea", + "Henri Noel Frederic Charles", + "Wolfgang Reinhard", + "Martin", + "Hermann Karl Ludwig", + "Marion", + "Klaus", + "Ralf", + "Wolfgang Georg Friedrich", + "Gerhard Johannes", + "Siegrid", + "Mareike", + "Martin Rolf", + "Johann Jakob", + "Klaus Peter", + "Dieter Hermann", + "Gerhard", + "Konrad", + "Margret", + "Werner", + "Hans-Jürgen", + "Alexander", + "Andrea", + "Almut Hedwig", + "Walter Georg Friedrich", + "Klaus", + "Ferdinand", + "Helmut Hermann", + "Rolf Karl", + "Sabine Ursula", + "Johanna", + "Philipp", + "Heiko", + "Alexander Johannes", + "Thomas", + "Michael", + "Holger", + "Hans Jürgen", + "Simone", + "Sabine", + "Andreas", + "Anke", + "Kevin", + "Thomas", + "Michaela", + "Reinhold", + "Theodor", + "Rolf Martin", + "Frank", + "Eric", + "Alexander", + "Gudrun", + "Jens", + "Klaus", + "Anita", + "Burkhard", + "Martina", + "Josef", + "Margot", + "Klaus-Dieter", + "Karl-Friedrich", + "Ortrud", + "Renate", + "Karl-Heinz", + "Iris", + "Richard", + "Jutta", + "Harald", + "Alfred", + "Gerhardt", + "Gerd", + "Johann Josef", + "Michael", + "Hans-Joachim", + "Peter", + "Hildegard", + "Wolfgang", + "Helge", + "Emil", + "Antonia", + "Otto", + "Eva-Maria", + "Angelika", + "Bettina", + "Edith", + "Hans-Werner", + "Gisela", + "Irmgard", + "Helmut", + "Otto", + "Monika", + "Corinna", + "Maria Elisabeth", + "Hans Georg", + "Albert", + "Eberhard", + "Gisela", + "Thomas", + "Thomas", + "Angelika", + "Helga", + "Wilfried", + "Maria", + "Hans Herbert", + "Marita", + "Herbert", + "Johannes Michael", + "Jens-Peter", + "Hans-Martin", + "Waltraud", + "Ursula", + "Werner", + "Ulrich", + "Bernd", + "Barbara", + "Regine", + "Lars", + "Jan", + "Gertrud", + "Hannelore", + "Sylvia", + "Helga", + "Heidrun Gisela", + "Sigrid", + "Christa", + "Edeltraut", + "Reinhold", + "Brigitte", + "Christa", + "Eberhard", + "Susanne", + "Friedrich", + "Heinz Peter", + "Anna Maria", + "Petra", + "Patrick", + "Anke", + "Peter", + "Walter", + "Trude", + "Brigitte Gerda", + "Jörg", + "Maria", + "Anita", + "Ilse", + "Dorothee", + "Ute", + "Michael", + "Gabriele Maria", + "Jörgen Herbert", + "Susanne", + "Ulrich", + "Theresie", + "Anke", + "Gabriele", + "Wolfgang", + "Vera Anne Katharina", + "Joachim", + "Bodo", + "Gesine", + "Elke", + "Hartmut Helmut Friedrich", + "Sabine", + "Hannegret Felicia Ellinor Odeh", + "Renate Christa Helga", + "Tobias Fabian Jakob", + "Michael", + "Hanno", + "Gesche", + "Laura", + "Patrick", + "Frank", + "Carmen", + "Stephan", + "Frank Roland", + "Monika", + "Sebastian Helmut", + "Alexander Friedrich", + "Jutta Maria", + "Karin Maria", + "Jürgen", + "Oliver", + "Christian", + "Ulrich", + "Udo", + "Bernd", + "Verena", + "Tobias", + "Heiko", + "Matthias", + "Sven", + "Daniel", + "James", + "Andreas", + "Francie", + "Dirk", + "Felix", + "Moritz", + "Dominique", + "Julian", + "Peter", + "Jan", + "Felix Benedikt", + "Nico", + "Marko", + "Mohamed Raza", + "Depken", + "Patrick", + "Sebastian", + "Markus", + "Thomas", + "Michelle", + "Melanie", + "Björn", + "Harm", + "Torben", + "Günter", + "Jörg Volker", + "Daniel", + "Nigel", + "Claus-Peter", + "Wolfram", + "Silja", + "Bernd", + "Sven", + "Philipp", + "Aimee", + "Andreas", + "Markus", + "Alberto", + "Sigrid", + "Marina", + "Carla", + "Sven", + "Claudia", + "Scott", + "Jan", + "Amanda", + "Martin", + "Christof", + "Laura", + "Eveline", + "Björn", + "Saskia", + "Arthur", + "Filipa", + "Mathieu Nounagnon", + "Andreas", + "Holger", + "Ralf", + "Tim", + "Helge", + "Matthias", + "Robert", + "Wolfgang Josef", + "Lei", + "Tim", + "Josef", + "Mogens", + "Lars-Eric", + "Kay", + "Julian", + "Magnus", + "Jan-Christian", + "Sebastian Andreas", + "Henry", + "Susanne", + "Halil", + "Stefan", + "René", + "Ursula", + "Michael Heiko", + "Yasemin", + "Guido", + "Sören", + "Thomas", + "Marko", + "Marc", + "Frank", + "Sandra", + "Martin", + "Ahmet", + "Oliver", + "Heinrich", + "Dieter", + "Martin", + "Christoph", + "Eckhard", + "Robert", + "Helmut", + "Christine", + "Christian", + "Steffen", + "Petra", + "Peter", + "Bernd", + "Erich", + "Frank", + "Elisabeth", + "Kurt", + "Marcus Oliver", + "Dieter", + "Henrik Cord", + "Sven", + "Fritz", + "Klaus", + "Dirk", + "Heiko Friedrich Ralf", + "Frank", + "Claudia", + "Stephan Andreas", + "Alexander", + "Christine", + "Philipp", + "Matthias", + "Svenja Karola", + "Marcell", + "Ralf", + "Marita", + "Michael", + "Torsten", + "Tilo", + "Cretièn", + "Daniel", + "Jeremias", + "Barbara", + "Sebastian", + "Dominik", + "Christopher Sven Erik", + "Georg Daniel", + "Franz", + "Gerhard Donatus", + "Frank", + "Jürgen", + "Volker", + "Volker", + "Thomas", + "Katja", + "Christian", + "Mike", + "Frank Alexander", + "Reinhard Helmut", + "Ralf J.", + "Heinrich", + "Cornelius", + "Michael", + "Helen", + "Martin", + "Catharina", + "Hanjo", + "Anja", + "Gabriel", + "Sedat", + "Catia", + "Christof Aurelius", + "Ralph Kurt", + "Eberhard", + "Christian", + "Patrick Max", + "Marc Henning Simon", + "Elisabeth Vera Josepha", + "Markus", + "Juan", + "Michael", + "Christiane", + "Matthias", + "Fritz", + "Richard", + "Nicolas", + "Cornelius", + "Stephan Karl", + "Matthias Wolfgang", + "Peter", + "Guido", + "Angelika", + "Doris", + "Christopher", + "Nils Holger", + "Klaus", + "Patrick", + "Antje Leonie", + "Stephan Peter", + "Ismir", + "Björn", + "Jürgen", + "Ralf", + "Dietmar", + "Markus", + "Heinz", + "Johann Baptist", + "Normajean", + "Jürgen", + "Ralf", + "Wolfgang", + "Stephan", + "Alexandra", + "Rolf", + "Anita", + "Marcus", + "Bernd", + "Meike Elisabeth", + "Stefan", + "Angelika", + "Johann", + "Bernhard", + "Thomas", + "Marcus", + "Matthias", + "Manuel", + "Andreas", + "Stephan", + "Matthias", + "Roswitha", + "Maria", + "Udo", + "Stefan", + "Ewald", + "Carl Christian", + "Hanno", + "Marco", + "Anne Boel", + "Marko", + "Marco", + "Christof", + "Oliver", + "Dirk", + "Thomas", + "Mark", + "Gerhart", + "Volker", + "Roland", + "Helmut", + "Angelika", + "Thomas", + "Bernhard", + "Jens-Dieter", + "Martin", + "Frank", + "Harald", + "Thomas", + "Thomas", + "Ingo", + "Peter", + "Jürgen", + "Martin", + "Antonius", + "Oliver", + "Egon", + "Christiane", + "Andreas", + "Sascha", + "Robert", + "Jörg", + "Wolfram", + "Harald", + "Markus", + "Tobias", + "Roar", + "Michael", + "Dave", + "Marina", + "Christian", + "Chris", + "Hanna Lena", + "Christopher Howard", + "Marcos", + "Frank", + "Stanislav", + "Matteo", + "Jürgen", + "Florian", + "Ditmar", + "Mathias Eugen", + "Patrick", + "Gregor", + "Ralf", + "Reinhard", + "Thomas", + "Klaus", + "Oscar", + "Martin", + "Michael", + "Christian", + "Roland", + "Peter", + "Robert", + "Andreas", + "Ulf Jürgen", + "Jörg", + "Elke", + "Rudolf", + "Alexander", + "Stefan", + "Andreas", + "Frank", + "Jörg", + "Frank", + "Claudia", + "Diane", + "Frank", + "Martin", + "Michael", + "Stefan", + "Jochen", + "Sven", + "Elke", + "Bernd-Peter", + "Armin", + "Gabriele", + "Miriam", + "Frank", + "Ralph", + "Dorian", + "Henning", + "Alexander", + "Oliver", + "Isabelle", + "Thomas", + "Max", + "Lothar", + "Lars", + "Wolfram", + "Cornelia", + "Frank", + "Miriam", + "Thomas", + "Maria Cristina", + "Dirk", + "Christoph", + "Marco", + "Uwe", + "Michael", + "Bernhard", + "Sven", + "Ralf", + "Christoph", + "Thomas", + "Olivia", + "Gerd", + "Christian", + "Jörg", + "Caroline", + "Christiane", + "Wolfgang", + "Martina", + "Olaf", + "Lars", + "Gerhard", + "Eva", + "Udo", + "Steffen", + "Wolfram", + "Matthias", + "Axel", + "Antje", + "Holger", + "Arndt", + "Martin", + "Frank", + "Timo", + "Martin", + "Oliver", + "Beate", + "Barbara", + "Michaela", + "Bettina", + "Steffen", + "Friedemann", + "Joachim", + "Oliver", + "Bernhard", + "Bernd", + "Carola", + "Michael", + "Hendrik", + "Thomas", + "Claus", + "Stefan", + "Alexander", + "Oliver", + "Hartmut", + "Frank", + "Stefan", + "Antje", + "Ralf", + "Harald", + "Jens", + "Thomas", + "Johann", + "Patrick", + "Ute", + "Ingmar", + "Carlos", + "Jeanne", + "Paul Wilhelm", + "Xin", + "Ursula", + "Björn", + "Frank", + "Yuliya", + "Karsten", + "Sylvia", + "Jan", + "Heiko", + "Marcel", + "Tobias", + "Philipp", + "Dieter", + "Jan", + "Arnd", + "Wolfgang", + "Birgit", + "Birgit", + "Oliver", + "Bijoy", + "Kirstin", + "William", + "Sara", + "Gabriele", + "Olivier", + "Manfred", + "Dirk", + "Gerhard", + "Axel", + "Marco", + "Katrin", + "Christian", + "Melanie", + "Frank Nils", + "Maik", + "Sarena", + "Maik", + "Thomas", + "Angela", + "Matthias", + "Bernd", + "Dominik", + "Heike", + "Martin", + "Maurizio", + "Gregor Christoph", + "Daniela", + "Heiner", + "Deny-Jean", + "Rodrigo", + "Elisabeth", + "Axel", + "Konstanze", + "Tobias", + "Heiko", + "Sascha", + "Klaus", + "Birgit Silke", + "Miriam", + "Astrid", + "Dirk", + "Solveig", + "Marianne", + "Björn", + "Carlos", + "Ralf", + "Nicola", + "Kristina", + "Ruedeger", + "William N.", + "Jutta", + "Veit", + "Johann", + "Michael", + "Mark", + "Peter", + "Annalena", + "Thomas", + "Jürgen", + "Christoph", + "Wolfgang", + "Christoph", + "Goldes", + "Rainer Manfred Reinhold", + "Markus", + "Georg", + "Patrick", + "Ben", + "Michael", + "Jürgen", + "Andreas", + "Stephan", + "Martina", + "Dirk", + "Wolfgang", + "Klaus", + "Agustin", + "Tobias", + "Gisbert", + "Claus Christoph", + "Oliver", + "Tilman", + "Elmar", + "Stefan", + "Michael", + "Gisela", + "Peter Michael", + "Jürgen", + "Anne", + "Peter", + "Bernd", + "Jana", + "Marc", + "Jens", + "Julie", + "Stefan", + "Peter", + "Silvio", + "Christian", + "Luisa", + "Ulrich", + "Gilbert", + "Imke", + "Christian", + "Christoph", + "Zoran", + "Derya", + "Andreas", + "Gerhard", + "Johann Nepomuk", + "Eric", + "Susanne", + "Sandra", + "Ingmar", + "Michael", + "Johanna", + "Christopher", + "Horatio Karl-Philipp Arne", + "Britta", + "Malte", + "Thomas", + "Tobias", + "Jörg", + "Dirk", + "Burkhard", + "Karin", + "Martin", + "Andreas", + "Felix", + "Fernando", + "Claudia", + "Marcus", + "Marco", + "Katharina", + "Miriam", + "Björn", + "Andreas", + "Karin", + "Carolin", + "Hans-Peter", + "Michael Georg", + "Jochen", + "Karl-Heinz", + "Maximilian", + "Anita Katharina", + "Oliver", + "Birka", + "Frank", + "Marc", + "Alice", + "Thomas", + "Xenia", + "Stefan", + "Cristina", + "Ulrike", + "Thomas Frederik", + "Stefan", + "Ludwig", + "Günter", + "Tobias Benjamin", + "Ulf Adolf", + "Cornelia", + "Alois", + "Marketa", + "Thomas", + "Britta", + "Viola", + "Michael", + "Eileen Ilona", + "Konstantin", + "Roald", + "Thomas", + "Burchard Graf", + "Stefan", + "Volker", + "Kunibert", + "Rüdiger", + "Christopher", + "Simon Silvester", + "Jens", + "Barbara", + "Nikolas", + "Iran", + "Christina", + "Joachim", + "Carsten", + "Guido", + "Markus", + "Michael", + "Klaus", + "Holger", + "Martin", + "Hans-Jürgen", + "Heiko", + "Sandro", + "Thomas Joachim", + "Ferdinand", + "Monika Gerda", + "Andreas", + "Frank", + "Nadine", + "Peter", + "Raimund", + "Margret", + "Michael", + "Sonja", + "Gisbert", + "Sebastian", + "Oliver", + "Martin", + "Jürgen", + "Markus", + "Erich", + "Wolfgang", + "Volker", + "Andreas", + "Michael", + "Marius Achim", + "Holger Thomas", + "Dagmar", + "Hans", + "Christian-Matthias", + "George Joseph", + "Francesc", + "Guido", + "Claudia", + "Hartmut", + "Martin", + "Petra", + "Wolfgang", + "Linda Joanna", + "Michael", + "Thomas", + "Thomas", + "Wolfgang", + "Wolfgang", + "Richard", + "Daniel", + "Martin", + "Jochen", + "Roland", + "Hartwig", + "Eckhard", + "Ulrich", + "Thomas", + "Philipp", + "Thomas Peter", + "Eckart", + "Maximilian", + "Thomas", + "Markus", + "Detlef", + "Anne", + "Edgar", + "Thomas", + "Sascha", + "Christoph", + "Robert", + "Sascha", + "Peter", + "Daniela-Maria", + "Christoph", + "André", + "Thomas", + "Julia", + "Sebastian", + "Dominicus", + "Stefan", + "Jordi", + "Andreas", + "Klaus", + "Michael", + "Hendrik", + "Elke", + "Birgit", + "Kristina", + "Stefan", + "Stefan", + "Oliver", + "Thomas", + "Christian", + "Josef", + "Lothar", + "Edgar", + "Karin", + "Bernd", + "Frank", + "Stefan", + "Jürgen", + "Thorsten", + "Thomas", + "Ralf", + "Henrik", + "Guiscard", + "Wolfram", + "Uta", + "Susanne", + "Joachim", + "Uwe", + "Henricus Maria Martinus", + "Johannes", + "Bernhard", + "Theodore", + "Stefan", + "Patrick", + "Uwe", + "Andreas", + "Detlef", + "Jörg", + "Martin", + "Alissa", + "Christian", + "Christoph", + "Adrian", + "Lars", + "Tilmann", + "Christian", + "Christian", + "Julia", + "Roland", + "René", + "Marc", + "Carola", + "Bernhard", + "Dominik", + "Thomas", + "Wolfgang", + "Michael", + "Olaf", + "Carla", + "Josef", + "Lars", + "Ulf", + "Sören", + "Jürgen", + "Dirk", + "Axel", + "Jan", + "Dirk Steffen", + "Torsten", + "Dirk", + "Lars", + "Markus", + "Gert", + "Anup", + "Oliver", + "Melanie", + "Nicole", + "Markus", + "Thomas", + "Juan Carlos", + "Jobst Rüdiger", + "Sven", + "Horst", + "Achim", + "Christian", + "Ralf", + "Reiner", + "Livio", + "Julia", + "Patricia", + "Angela", + "Agustin", + "Fabio Henrique", + "Michael", + "Andreas", + "Alba", + "Piyada", + "Jan-Peter", + "Michael", + "Matthew", + "Katrin", + "Andreas", + "Knut", + "Thorsten", + "Matthias", + "Andreas", + "Andreas", + "Beatrice", + "Marco", + "Lode", + "Markus", + "Peter", + "Romy", + "Andrea", + "Tanja", + "Markus", + "Frank", + "Christoph", + "Daniel", + "Bart", + "Christian", + "Frank", + "Bernd", + "Jörg", + "Robert", + "Michael", + "Christian", + "Gabriele", + "Marcelo", + "Jens Christian", + "Stefan", + "Marco", + "Daniela", + "Andrea Karen", + "Heather", + "Katja", + "Boris", + "Mirko", + "Martin", + "Simone", + "Julia", + "Steffen", + "Sven", + "Dennis", + "Francisco", + "Kristina", + "Gerald", + "Marko", + "Christophe", + "Heiko", + "Frederick", + "Steven", + "Thomas", + "Veit", + "Nina", + "Melanie", + "Tobias", + "Andreas", + "Giovanni", + "Christoph", + "Bernd", + "Stefan", + "Claus", + "Helmut", + "Dorothee", + "Helya", + "Doreen", + "Sören", + "Peder Lindbjerg", + "Shah", + "Philip", + "Daniel", + "Johannes", + "Mia Anna", + "Christiane", + "Diana", + "Thieu-Luan", + "Daniel", + "Patrick", + "Alexander", + "Raimund", + "Sabrina", + "Christine", + "Sven", + "Elmar", + "Philip", + "Carsten", + "Matthew", + "Jens", + "Tobias", + "Taren", + "Verena", + "Tatjana", + "Lena", + "Ulrich", + "Patrick", + "Matthias", + "Tobias", + "Gustavo", + "Benjamin", + "Johannes", + "Virginia-Beatrice", + "Julia", + "Lisa", + "Sabine", + "Stefanie", + "Stefan", + "Clemens", + "Joachim", + "Thomas", + "Hugues", + "Ingrid", + "Tatiana", + "Peter", + "Christian", + "Tobias", + "Andras", + "Johannes", + "Horatio", + "Jan", + "Jan", + "Melanie", + "Amber", + "Tuelin", + "Yatindra", + "Thomas", + "Volker", + "Thorben", + "Götz", + "Dietrich", + "Sven K.", + "Lydie", + "Markus", + "Brieux Andre Daniel", + "Nicolas", + "Jens", + "Philipp", + "Peter", + "Caren-Sabine", + "Claudia", + "Stephan", + "Ketan", + "Daniel", + "Daniel", + "Alexander", + "Carmen", + "Mary", + "Dirk", + "Tobias", + "Thomas", + "Michael", + "Daniel", + "Peter", + "Tanja", + "Pia", + "Annegret", + "Tina", + "David", + "Stefan", + "Maximilian", + "Michael", + "Sara-Anja", + "Erwin", + "Werner", + "Margarita", + "Sebastian", + "Harald", + "Philipp", + "Harald Erich Josef", + "Mirko", + "Christina", + "Eileen", + "Björn Carsten", + "Michael", + "Nicholas", + "Thomas", + "Ralf", + "Dirk", + "Hans", + "Christiane", + "Klaus", + "Michael", + "Thomas", + "Michael Hellemann", + "Andrea", + "Jörg", + "Holger", + "Inge Emiel", + "Heiko", + "Roland Alois", + "Rainer", + "Richard", + "Wolfram", + "Andreas-Heinrich", + "Jürgen", + "Gunilla", + "Rajesh Shivratan", + "Francisco Javier", + "Sebastian", + "Franziska", + "Oliver", + "Lars", + "Sascha", + "Ines", + "Dieter", + "Tobias", + "Daniel", + "Marko", + "Jürgen", + "Karin", + "Oliver", + "Christine", + "Stephan", + "Heiko", + "Elisabeth", + "Mirko", + "Jan-Peter", + "Andrea", + "Marco", + "Berit", + "Carsten", + "Robert", + "Claudia", + "Berkan", + "Attila", + "Cemil", + "Georg", + "René Heinz", + "Helge", + "Dörte Katharina Julia", + "Claudia", + "Thomas Michael", + "Frank", + "Anne", + "Lars", + "Caroline", + "Sibylle", + "Morten", + "Frank", + "Ronny", + "René", + "Marion", + "Gerrit", + "Harry Leo", + "Wolfgang", + "Guido", + "Susanne", + "Carmen", + "Kateryna", + "Jeroen Johannes Hendrikus", + "Christian", + "Anke", + "Martin Bernhard", + "Ferenc", + "Stefan Ulrich", + "Patrick", + "Jens", + "Lars", + "Ilka", + "Petra", + "Marc", + "Thomas", + "Robert", + "Erik", + "Steffen", + "Carsten", + "Bernhard Peter", + "Kilian", + "Alexandra Katinka", + "Arnold", + "Michael", + "Markus", + "Stefan", + "Florian", + "Frank", + "Kristina", + "Christian", + "Frank", + "Christine", + "Elisabeth", + "Ina", + "Heinrich", + "Jürgen", + "Florian", + "Robert", + "Stefan", + "Andreas", + "Benjamin", + "Christian David Karl", + "Markus Wilhelm", + "Robert", + "Christian", + "Timo", + "Hennicke", + "Jenny", + "Oliver", + "Bastian", + "Meinolf", + "Fabian", + "Holger", + "Simon", + "Markus", + "Eva-Maria", + "Uwe", + "Oliver-Ciprian", + "George-Cristian", + "Philipp Nikolaus", + "Christian", + "Markus", + "Sonja Bianca", + "Ralf", + "Christian", + "Mechthild Margarete Martina", + "Ruth Katharina", + "Friedrich Wilhelm genannt Fritz", + "Ulrich", + "Peter", + "Peter Nikolaus", + "Martin", + "Christian", + "Mirko", + "Jukka", + "Kirill", + "Frank", + "Uwe", + "Heike", + "Constantin", + "Matthias Christian", + "Rupert Kaspar", + "Caspar", + "Nicholas Anthony", + "Michele", + "Paul Michael", + "Günter", + "Thomas", + "Frank", + "Georg", + "Monika", + "Markus", + "Wolfgang", + "Klaus Peter", + "Rosi", + "Jürgen", + "Ulli", + "Sam Rafael", + "Annette", + "Rainer", + "Eugen", + "Anna", + "Robert", + "Holger", + "Christian", + "Markus", + "Barbara", + "Wolfgang", + "Hugo", + "Michael", + "Siegfried", + "Albert", + "Iram", + "Andreas", + "Roland", + "Ralf", + "Hans", + "Peter", + "Ulrich", + "Tamara", + "Michael", + "Christian", + "Hans-Josef", + "Birgit", + "Hagen", + "Christian", + "Mustafa", + "Matthias Albrecht Paul", + "Manuel", + "Markus", + "Michael", + "Oliver", + "Martin", + "Matthias", + "Günter", + "Thomas", + "Frank", + "Alexander", + "Tobias", + "Andrea", + "Jan", + "Benedikt", + "Jonas", + "Mihaela", + "Dirk", + "Kay", + "Florian", + "Kerstin", + "Jonathan", + "Andreas", + "Alexander", + "Stefan", + "Stefan", + "Martin", + "Christian Werner", + "Tanja", + "Ewout Martijn", + "Frank", + "Markus", + "Frank Jürgen Michael", + "Kristin", + "Rainer", + "Birgit", + "Benjamin", + "Martin", + "Oliver", + "Rolf Heinrich", + "Jan", + "Andrea", + "Sophie", + "Mathias", + "Bernhard", + "Stephan", + "Marco", + "Benjamin", + "Fritz Georg", + "Jürgen", + "Helmut", + "Martin", + "Peter Georg", + "Thomas", + "Hans-Georg", + "Peter", + "Markus", + "Jürgen", + "Yordanka", + "Sven", + "Daniel", + "Adnan", + "Oliver", + "Edmund", + "Steven", + "Stephan", + "Constantin", + "Sven", + "Marc Norbert", + "Susanne", + "Serap", + "Marc", + "Jakob", + "Bernd", + "Maike", + "Rainer", + "Peter", + "Joachim", + "Georg", + "Georg", + "Martina", + "Ulrike", + "Maria", + "René", + "Thomas", + "Manuela", + "Martin", + "Stefan", + "Christian", + "Rainer", + "Frank", + "Andreas", + "Florian", + "Olivier", + "Gerald", + "Dirk", + "Peter", + "Jochen", + "Frank Nikolaus", + "Ulrich", + "Grigoriy", + "Friedhelm", + "Frank", + "Steffen", + "Christian", + "Michael", + "Marie-Luise", + "Christian", + "Jörg", + "Udo", + "Jan", + "Karsten", + "Meike", + "Julian", + "Michael", + "Marcus", + "Markus", + "Andreas", + "Marcus", + "Jan", + "Tanja", + "Linda", + "Ansgar", + "Jörg", + "Christopher", + "Heidi", + "Horst", + "Peter", + "Marcel", + "Timo", + "Thomas", + "Tobias", + "Friedrich Maximilian Johannes", + "Oliver", + "Ole", + "Mischa", + "Andreas", + "Jochen", + "Bettina", + "Alejandro Gabriel", + "Geoffroy", + "Elk", + "Thomas Ludwig", + "Chien-Hua", + "René", + "Stefan Andreas", + "Andreas", + "Juan-Carlos", + "Niklas", + "Peter", + "Caitlin Rye", + "Walter James", + "Eugene Francis", + "Clinton Hawk", + "Kristin", + "Cengiz", + "Anna-Karina", + "Natalia", + "Karsten", + "Marc", + "Iris Gertrud", + "Roman David", + "Kai-Ulrich", + "Marco", + "Jens", + "Jan Ralf", + "Carola", + "Stephan", + "Julius", + "Steffen", + "Christopher", + "Martin", + "Bert", + "Felix", + "Franziska", + "Frederik", + "Bülent", + "Johann", + "Marion", + "Christoph", + "Max", + "Dominik", + "Josef", + "Axel", + "Nadine", + "Tobias", + "Elmar Detlef", + "Patrick Paul", + "Stephan", + "Matthias Alexander Ottmar", + "Roland", + "Andreas", + "Anita Carola", + "Reinhard", + "Daniel", + "Bodo", + "Manuela", + "Marc", + "Joachim", + "Oliver", + "Andreas", + "Mark-Roderich", + "Michael", + "Martin", + "Jörg", + "Reinhard", + "Lothar", + "Wolfgang", + "Wolfgang", + "Uwe", + "Ralf Tobias", + "Jochen", + "Marcus", + "Tobias", + "Uwe", + "Benedikt", + "David", + "Stephan", + "Andreas", + "Marlen", + "Michael", + "Isabella", + "Stefanie", + "Philipp", + "Simone", + "Marc", + "Franz Anaximandros -gen. Franzis-", + "Christian", + "Katharina", + "Susanne", + "Wolfgang", + "Ralph", + "Jörg", + "Volker", + "Dietmar", + "Herbert", + "Ralf", + "Dennis", + "Oliver", + "Volker", + "Jessica", + "Bernd", + "Dieter", + "Patrick", + "Katharina Maria", + "Holger", + "Roderich Günther", + "Theodor", + "Karsten", + "Ralf", + "Heinz", + "Jürgen", + "Lisa", + "Karl", + "Markus", + "Harald", + "Dorothea", + "Karl-August", + "Claudia", + "Sohaila Ilham", + "Marcus", + "Inga", + "Norbert", + "Norbert Martin", + "Christian", + "Elisabeth", + "Dorin Dietmar", + "Gido", + "Karl", + "Fabian", + "Yvonne Katrin", + "Aik", + "Bernhard", + "Sibylle", + "Rolf", + "Susanne", + "Jürgen", + "Hans-Peter", + "Hans-Jürgen", + "Bianca", + "Carsten", + "Joseph-Christopher", + "Hermann Josef", + "Stefan", + "Mark", + "Christoph", + "Karsten", + "Wolfgang", + "Karsten", + "Hanno", + "Frank", + "Jörg", + "Martin", + "Michael", + "Michael", + "Andreas", + "Raul", + "Ferdinand", + "Carsten", + "Martin", + "Thomas", + "Joachim", + "Thorsten", + "Klaus", + "Alexander", + "Matthias", + "Dietrich", + "Christine", + "Jens", + "Birte", + "Andreas", + "Jacques", + "Jörg", + "Guido", + "Frank", + "Markus", + "Thomas", + "Daniel", + "Uwe", + "Birte", + "Katrin", + "Carin", + "Andrea", + "Walter", + "Sucheta", + "Tobias", + "Thomas", + "Christine", + "Heiko", + "Lynette", + "Sophie", + "Torsten", + "James Kenneth", + "Markus", + "Victor", + "Carsten", + "Thomas", + "Dirk", + "Jens", + "Markus", + "Andreas", + "Nicole", + "Thomas", + "Reinhard", + "Ina", + "Carsten", + "Matthias", + "Stefan", + "John", + "Markus", + "Dominique", + "Andreas", + "Christoph", + "Michael", + "Henrik", + "Nies Erik", + "Roland", + "Wolfgang", + "Roland", + "Caroline", + "Johannes Friedrich", + "Lutz Philipp", + "Michael", + "Chris", + "Thomas", + "Petra", + "Jörg", + "Marcus", + "Bernd", + "Ralf", + "Kahraman", + "Frank", + "Marc-Norbert", + "Tim", + "Colin Rafael Douglas", + "Alain", + "Henri Steven Johannes", + "Tobias", + "Benjamin", + "Sven", + "Norman Ingo", + "Sebastian", + "Thomas", + "Maria Johanna Gerarda", + "Gabriele", + "Robert Ingo", + "Verena", + "Thomas", + "Svenja Vanessa", + "Axel", + "Marco Anton Maria", + "Ulrike", + "Trevor", + "Jonathan James", + "Dirk", + "Frank Jürgen MIchael", + "Dagmar", + "David Michael", + "Andreas Robert", + "Stefan", + "Kuan-Rong Michelle", + "Anastasios", + "David Alexander", + "Michael Björn", + "Jörg", + "Hans-Bert", + "Carina", + "Wolfgang", + "Tobias", + "Silke", + "Sven Alexander", + "Ronald", + "Katrin", + "Silke", + "Eva", + "Michael", + "Nihat", + "Christian", + "Bernd", + "Peter", + "Ralph", + "Michael", + "Sascha", + "Andreas", + "Erich", + "Matthias", + "Johann Friedrich Christoph", + "Sebastian", + "Niels Erik", + "Marlis", + "Peter", + "Sven Heye", + "Christof", + "Jörg", + "Peter", + "Alexander", + "Matthias", + "Antonius Reiner", + "Patrick", + "Cornelia", + "Irene", + "Maximilian", + "Eugen", + "Marcus Hans-Günter", + "Alexandra", + "Florian", + "Angelika", + "Sebastian", + "Rainer", + "Henrik", + "Konstantin", + "Sebastian", + "Rudolf", + "Florian", + "Gerald", + "Madeleine", + "Bo", + "Wolfgang", + "Jakob", + "Frank", + "Kathrin", + "Franciscus", + "Oliver", + "Björn", + "Hendrik", + "Michael Karl-Heinz Konrad", + "Bernd Michael", + "Daniel Michael Alfred", + "Markus", + "Florian", + "Simon Peter", + "Ulrich", + "Hans-Peter", + "Tobias", + "Harald", + "Andreas", + "Hans-Peter", + "Winfried", + "Kathrin Monika", + "Reinhold", + "Joachim", + "Christian", + "Torsten", + "Robert", + "Roland", + "Marcus", + "Jan-Torben", + "Alexander", + "Uwe", + "Uwe", + "Francis René", + "Robert James", + "Jeroen Martijn", + "Michael", + "Horst Jörg", + "Aafke", + "Katja Frauke", + "Daniel", + "Gerd", + "Ansgar", + "Andreas", + "Lisanne", + "Alamelu", + "Anina", + "Tino", + "Julia", + "Christoph", + "Ulrike", + "Inge", + "Carolin Andrea", + "Iren Ivonne", + "Daniel", + "Susanne Antonie", + "Melita", + "Susanne", + "Frank Eberhard", + "Tobias", + "Carolin", + "Klaus", + "Michael", + "August", + "Andreas", + "Georg", + "Dominik", + "Ryan", + "Kai", + "Muris", + "Ingolf", + "Christian", + "Bodo", + "Dominik", + "Gebhard Hermann", + "Sven", + "Gerald", + "Britta", + "Jochen", + "Anja", + "Rudolf", + "Maria Margarete", + "Christine", + "Maximilian", + "Youngjun", + "Bernd Alfons Herbert", + "Christian", + "André Matthias", + "Holk", + "Till Henning", + "Thomas", + "Siemen-Jannes", + "Hendrik", + "Florian", + "Henning", + "Andrea", + "Thomas Alexander", + "Thorben", + "Jordi", + "Arne-John", + "Burhan", + "Alexander Peter", + "Jan Hendrik", + "Antje", + "Ercan", + "Heinz Udo", + "Julian Felix", + "Hauke", + "Beate", + "Achim", + "Kurt", + "Andreas", + "Petra", + "Heike", + "Claudia", + "Rüdiger", + "Stefanie", + "Gilbert", + "Klaus", + "Sven Wilhelm", + "Maurice Wilhelmus Petrus Laurentius", + "Uwe", + "Heidi", + "Lisa", + "Peter", + "Bernd", + "Georg", + "Martina", + "Orlando Sébastien Paulin", + "Lorenzo", + "Felipe", + "Ricardo", + "Jennifer", + "Alf", + "Constanze", + "Thorben", + "Carsten", + "Manuela", + "Jörg", + "Gebhard", + "Regine Annette", + "Achim Bernd", + "Claus Christian", + "Gunter", + "Michael", + "Johannes", + "Julia", + "Isabella", + "Klaus", + "Dirk", + "Gabriel", + "Kristal", + "Ingo", + "Niels", + "Christian Thorsten", + "Frank", + "Sascha", + "Tobias", + "David", + "Florian", + "Volkhard", + "Fabian", + "Michael", + "Michael", + "Christian", + "Sandra", + "Tobias", + "Christian", + "Thomas", + "Thomas", + "Jonas", + "Thomas", + "Beate", + "Petrea", + "Max", + "Patrice", + "Kai Uwe", + "Heiko", + "Ralph", + "Erika Elisabeth", + "Michaela", + "Karl-Christian", + "Tobias", + "Henning", + "Andreas", + "Ingo", + "Jan", + "Dennis", + "Stefan", + "Harald", + "Matthias", + "Katelyn", + "Bastian", + "Joachim", + "Andreas", + "Matthias Florian", + "Orlando", + "Günther", + "Tino", + "Stephanie", + "José", + "Jörg", + "Guido", + "Sebastian", + "Bernd", + "Frank", + "Manfred Josef", + "Andreas", + "Jörg", + "Frank", + "David", + "Ulrich Matthäus", + "Holger Werner", + "Marina", + "Christoph", + "José", + "Andreas", + "Mayur", + "Singh", + "Simon", + "Ayhan", + "Peter-Ulrich", + "Stephan", + "Rose Lea", + "Sylvia", + "Anna", + "Melanie", + "Michael", + "Björn Frederik", + "Stephan", + "Ludwig", + "Hartmut", + "Marc", + "Jan-Christoph", + "Ralf", + "Bernhard", + "Heike", + "Jürgen Bernd", + "Martin", + "Jochen", + "Jürgen", + "Gesa", + "Marcus", + "Uwe", + "Andreas", + "Frank", + "Thomas", + "Yaris", + "Wolfram", + "Andreas", + "Stefan", + "Rene", + "Axel", + "Joachim", + "Marcus", + "Stefan", + "Thomas", + "Mirko", + "Matthias", + "Bernd", + "Hauke", + "Petra", + "Ulrich", + "Lutz", + "Peter", + "Claus", + "Christian", + "Jörg", + "Till", + "Patrick", + "Alexander", + "Andreas", + "Dennis", + "Sandra", + "Achim", + "Uwe", + "Valeria", + "Karin", + "John", + "Andreas", + "Stephan", + "Jan-Michael", + "Manuel", + "Florian", + "Andreas", + "Iris", + "Kerstin", + "Christian", + "Jörg", + "Florian", + "Jürgen", + "Joachim", + "Klaus", + "Lars", + "Sonja", + "Wolfgang", + "Uwe", + "Thomas", + "Harry", + "Thorsten", + "Karl Anton", + "Carsten", + "Michael", + "Miriam Valerie", + "Jochen", + "Jürgen", + "Franziska", + "Benjamin", + "Dennis", + "Johannes", + "Thomas", + "Dominik", + "Kai-Peter", + "Andre", + "Markus", + "Olaf", + "Mark", + "Winfried", + "Heinz", + "Kathrin", + "Klaus", + "Volker", + "Holger", + "Hueseyin", + "Stefan", + "Matthias", + "Nicolas Michael", + "Christian", + "Jeanine", + "Frank", + "Sandra", + "Andreas", + "Christian", + "Christian", + "Dominik", + "Michael", + "David Pieter-Jan", + "Joseph", + "Faraz", + "Sylvia", + "Frank", + "Anna", + "Stefanie", + "Christoph", + "Benjamin", + "Norbert", + "Leonid", + "Bernd", + "Steffan", + "Swen", + "Eduard", + "Sven", + "Stefan", + "Markus Claudius Victor", + "Corinna", + "Matthias", + "Pal", + "Kris David Gert", + "Eva-Maria", + "Annett", + "Katharina", + "Jessica", + "Uwe", + "Antje", + "Thomas", + "Barteld", + "David", + "Till", + "Frank", + "Thomas", + "Thomas", + "Guido", + "Bernd", + "Mazen Ephram", + "Jan", + "Hendrik", + "Thorsten", + "Peter", + "Niklas", + "Andreas-Werner", + "Jörg", + "Aleksandar", + "Adolf", + "Steffen", + "Oliver", + "Klaus", + "Matthias", + "Andreas", + "Helmut", + "Remco Pieter", + "Heike", + "Matthias", + "Christoph", + "Andreas", + "Dennis", + "Daniel", + "Katharina", + "Frank-Peter", + "Thomas", + "Uwe", + "Susanne", + "Iris", + "Christian", + "Tanja", + "Marcel", + "Knut", + "Elias", + "Christian", + "Mark", + "Astrid", + "Christian", + "Zuhal", + "Dietmar", + "Karsten", + "Timo", + "Tobias", + "Holger", + "Jutta", + "Melanie", + "Thomas", + "Mario", + "Patrick", + "Tobias", + "Verena", + "Lisa", + "Julia", + "Markus", + "Erik", + "Boris", + "Sebastian", + "Wolfram", + "Peter", + "Christian", + "Peter", + "Holger", + "Benedikt", + "Manfred", + "Christian", + "Volker", + "Jürgen", + "Malte", + "Jochen", + "Fahim", + "Kevin", + "Oliver", + "Björn", + "Sabine", + "Katrin", + "Ole Wassily", + "Renate Monika", + "Gero", + "Janina", + "Georg", + "Thomas", + "Sascha", + "Christof", + "Martin", + "Stefan", + "Werner", + "Torsten", + "Andreas", + "Dirk", + "Christian", + "Daniel", + "Birgit", + "Horst", + "Thomas", + "Stefan", + "Sebastian", + "Dominik", + "Mirco", + "Jürgen", + "Matthias", + "Wolfgang", + "Andreas", + "Michael", + "Omar", + "Thomas", + "Werner", + "Simon", + "Markus", + "Robert", + "Hendrik", + "Peter", + "Gunter", + "Thorsten", + "Beatrice", + "Norman-Moritz", + "Yannick Tim", + "Dittmar", + "Johannes", + "Götz", + "Martin", + "Gerd", + "Ante", + "Sven", + "Moritz", + "Frank", + "Michael", + "Mathias", + "André", + "Kirsty", + "Lothar", + "Peter", + "Ingo", + "Joachim", + "Frank", + "Thomas", + "Sebastian", + "Heiner", + "Bettina", + "Frank", + "Philipp", + "Meyer", + "Alexander", + "Lutz", + "Nicole", + "Steffen", + "Hans Tilmann", + "Tobias", + "Andy", + "Christopher", + "Mato", + "Walter", + "Ole", + "Felix", + "Efrem", + "Christian", + "Philipp", + "Sönke", + "Simon", + "Götz", + "Florian", + "Thorsten", + "Sandra", + "Dominik", + "Patric", + "Andreas", + "Dirk", + "Hans", + "Dirk", + "Thorsten", + "Ton", + "Jan-Willem", + "Manfred", + "Markus", + "Dieter", + "Angelika", + "Michael", + "Mathias", + "Arndt", + "Kristin", + "Anna", + "Ralph", + "Linda", + "Margarete", + "Stefan", + "Bettina", + "Malte", + "Christopher", + "Daniela", + "Ulrich", + "Guido", + "Anna", + "Philip", + "Andreas", + "Susanne Maria", + "Bettina", + "Andreas", + "Frank", + "Lars", + "Lutz", + "Karsten Peter", + "Christoph Josef", + "Rolf", + "Helene", + "Peter", + "Hennig", + "Daniel", + "Roland", + "Michael", + "Gitta", + "Frederik", + "Tobias", + "Jörg", + "Olaf", + "Manuel", + "Oliver", + "Horst", + "Christoph", + "Majida Nadyne", + "Kristin", + "Stefan", + "Jörg", + "Maik", + "Simon", + "Marco", + "Michael", + "Lisa", + "Prisca Olivia", + "Murat", + "Markus", + "Bastian", + "Rainer Fred", + "Katrin", + "Guido", + "Marie", + "Alexandra", + "Rainer", + "Fabian", + "Klaus", + "Julia Anne", + "Kathryn", + "Steven James", + "Christopher", + "Ferdinand", + "Ralf", + "Fabian", + "Wolfgang", + "Christoph", + "Carsten", + "Anselm", + "Hugh", + "Rainer", + "Heiko", + "Andrea", + "Rudolf", + "Marco", + "Edwin", + "Andreas", + "Martin", + "Roland", + "Jan", + "Michael", + "Karin", + "Frank", + "Stephan", + "Thomas", + "Anja", + "André", + "Joachim", + "Norman", + "Ute", + "Patricia", + "Jan", + "Dirk", + "Marcia", + "Benedikt Paul Wolfgang", + "Uwe", + "Dennis", + "Ilka", + "Robert", + "Florian", + "Thomas", + "Pierre", + "Bernd", + "Richard", + "Winfried", + "Hans", + "Michael", + "Heiko", + "Christian", + "Ole", + "Frank-Uwe", + "Oliver", + "Thomas", + "Niclas Florian", + "Udo", + "Jutta", + "Dr. Thomas", + "Niels", + "Sascha", + "Adam", + "Marion", + "Carola Maria", + "Christian", + "Oliver", + "Agapi", + "Christoph", + "Beate", + "Henning", + "Maik", + "Tim", + "Torsten", + "Andreas", + "Mario", + "Carsten", + "Thomas", + "Dirk", + "Jessica", + "Fadzlun", + "Mathias", + "Joseph George", + "Peter", + "Mario", + "Matthias", + "Steve", + "Rüdiger", + "Elio Massimo Antonello Maria", + "Jörg", + "Tatiana", + "Riccardo", + "Karsten", + "Yvonne", + "Corinna", + "Thomas Maximilian Walter", + "Martin", + "Patrick", + "Marco Daniel", + "Jens", + "Franz Anaximandros", + "René", + "Thomas", + "Achim", + "Patrick", + "Hans Gregor", + "Alexander", + "David", + "Steffen", + "Ulrich", + "Verena", + "Frank", + "Markus", + "Raphael", + "Jacqueline", + "Darko", + "Rainer", + "Manfred", + "Ronny", + "Jan", + "Lars", + "Oliver", + "Markus", + "Martin", + "Julio Javier", + "Sven", + "Chloé", + "Giuseppe", + "Herbert", + "Elias", + "Johannes", + "Florian", + "Milena", + "Matthias", + "Christian", + "Alexander", + "Detlef", + "Angelo", + "Klaus", + "Jonathan", + "Carolin", + "Matthias", + "Jana Daniela", + "Renate", + "Jean-Carl", + "Christine", + "Philipp", + "Torsten", + "Dirk", + "Martin", + "Thomas", + "Martin", + "Dietrich", + "Anne", + "Dirk-Eberhard", + "Gordon", + "Melanie", + "Kimberlee", + "Christoph", + "Thomas", + "Gerhard", + "Tim", + "Thomas", + "Oliver", + "John", + "Bernd", + "Tobias", + "Sebastian", + "Adam Robert", + "Monika", + "Oscar", + "Volker", + "Lillian", + "Ralph", + "Tanja", + "Remco", + "Pablo Ignacio", + "Yin", + "Nikola", + "Christian", + "Dietmar", + "Markus", + "Max Alexander", + "Udo", + "Martin", + "Dietmar", + "Ottmar", + "Andreas", + "Andreas", + "Martin", + "Tobias", + "Patrick", + "Ulrike", + "Joachim", + "Christian", + "Katharina", + "Marcus", + "Martin", + "Bruno", + "Klaus", + "Timo", + "Patrick", + "Alexander", + "Björn", + "Christian", + "Martin", + "Michael", + "Hirokai", + "Ralf", + "Irene", + "Zoran", + "Lars Niklas", + "Emmanuel Francois Jean-Claude Laurent", + "Hans-Dieter", + "Jürgen", + "Andreas", + "Carsten", + "Stephan", + "Axel", + "Jörg", + "Detlef", + "Remco Jan", + "Thomas", + "Claudia", + "Klaus Bernhard", + "Michael", + "Christina", + "Stefanie", + "Jörg", + "Ellen", + "Harry Walter", + "Jens", + "Kerstin", + "Karl-Hermann", + "Torsten", + "Heiko", + "Henrik", + "Jendrik", + "David", + "Jens", + "Jan", + "Frank", + "Lars", + "Alexander", + "Eva-Marie", + "Christian", + "Judith", + "Oliver", + "Claus Jürgen", + "Andreas", + "Johannes", + "Katja", + "Thomas Werner", + "Heike", + "Katrin", + "Jens", + "Katja", + "Konstantin Frederik", + "Sabine", + "Lars", + "Stefan", + "Roy", + "Stefanie", + "Nils", + "André", + "Manfred", + "Hubert Johann Wilhelm", + "Christian", + "Robert", + "Inga", + "Jürgen", + "Thomas", + "Stef", + "Matteo", + "Friederike Isabel", + "Petra", + "Martina", + "Karl-Ulrich", + "Stephan", + "Regina", + "Christof Markus", + "Stefan", + "Gert-Hartwig", + "Anton", + "Rainer", + "Reiner", + "Claus-Martin", + "Jürgen", + "Birgit", + "Peter Erik", + "Kay-Axel", + "Gero", + "Kai", + "Carola", + "Jens", + "Arnoldus", + "Holger Otto", + "Enno", + "Cay-Uwe", + "Richard", + "Karsten", + "Robert", + "Henrik", + "Ingo Erich", + "Bernd", + "Thomas", + "Caroline", + "Thomas", + "Jan Kristof", + "Andrea", + "Stefanie", + "Melanie", + "Thomas William", + "Daniela", + "Ann-Marie", + "Malcolm", + "Sebastian", + "Bernhard", + "Robert Frank", + "Michael Wolfgang", + "Andreas", + "Robert", + "Jian Hua (genannt Amily)", + "Michael", + "Tatjana", + "Tobias", + "Kristin", + "Martin", + "Mathias", + "Sylke", + "Aleksander", + "Stefan", + "Ralph", + "Joachim Fritz", + "Renate", + "Harald", + "Stephan", + "Claus Martin", + "Christian Carsten", + "Ronald", + "Ralph", + "Christian", + "Rico", + "Andreas", + "Christof Martin", + "Jürgen", + "Harald", + "Michael", + "Rainer", + "Holger", + "Michael", + "Martin", + "Fabian", + "Tilman", + "Thorsten", + "Daniel", + "Bernhard Ernst", + "Massimo", + "Stefan", + "Alexander", + "Volker", + "Cornelia", + "Felix", + "Sandra", + "Chen-Chien", + "Lin", + "Klaus", + "Maureen", + "Daniel", + "Thomas", + "Susanne", + "Beate", + "Natascha", + "Reinhard", + "Christof", + "Peter", + "Andreas", + "Dirk", + "Thomas", + "Klaus", + "Jorin", + "Bernd", + "Mark", + "Andreas", + "Reiner Hartmut", + "Wojtek", + "Stefan", + "Oliver", + "Oliver", + "Gunnar", + "Peter", + "Stephan", + "Jochen", + "Pascal", + "Markus", + "Jeanne Anja Danica", + "Thilo", + "Frank", + "Dorothee", + "Elisabeth", + "Alexandra", + "Christine", + "Christian", + "Victor", + "Adelheid", + "Johannes", + "Matthias", + "Philipp", + "Anncharlott", + "Jannis-Raffael", + "Johannes", + "Martin", + "Peter", + "Harald", + "Annette", + "Stefan", + "Alexander Emanuel", + "Margarete Rebecca Sophie", + "Christian", + "Jonathan", + "Barbara", + "Clemens", + "David", + "Wolfgang", + "Georg Julius", + "Jakob", + "Justus", + "Konrad Jesko Johannes", + "Sophie Berte", + "Teresa", + "Babor", + "Jan", + "Aline", + "Barbara", + "Siegfried", + "Christiane", + "Leonhard", + "Sabine", + "Anna Katharina", + "Manuel", + "Susanne", + "Renate", + "Johann Heinrich", + "Karoline", + "Katharina", + "Annegret", + "Caroline", + "Albrecht", + "Andrea", + "Katharína", + "Katja", + "Peter Emanuel", + "Tobias", + "Maximilian", + "Bettina", + "Heilwig", + "Jim Anton", + "Herta", + "Friedrich", + "Georg", + "Johann", + "Susanna", + "Justus", + "Sibylla", + "Barbara", + "Dorothea", + "Johanna", + "Franziska", + "Karl", + "Clemens", + "Cornelia", + "Elisabeth", + "Johannes", + "Markus", + "Nikolaus", + "Teresa", + "Cornelia", + "Daniel", + "Raphael", + "Simon", + "Tobias", + "Friederike", + "Marie-Louise", + "Dorothea", + "Paul-Gerhard", + "Christian", + "Ferdinand", + "Ricarda", + "Kristina", + "Theresa", + "Benedikt", + "Georg", + "Gustav", + "Isabel", + "Otto", + "Franziska Eva", + "Margarethe", + "Christiane", + "Christiane", + "Carl Christoph", + "Beate", + "Johannes", + "Laura", + "Raphael", + "Emanuel", + "Justus", + "Theresia", + "Michaela", + "Bonny", + "Lisa", + "Alexander", + "Karin", + "Klara", + "Franziska", + "Paul", + "Anna-Katharina", + "Maximiliane", + "Oskar", + "Livia", + "Carl-Vincent", + "Julius-Maria", + "Jon", + "Antonius", + "Constantin", + "Felicitas", + "Daniel", + "Maximilian", + "Sophia", + "Lisa", + "Thomas", + "Benedikt", + "Elisabeth", + "Elisabeth", + "Dorothea", + "Belén", + "Dabin Sebastian", + "Florian", + "Klara", + "John", + "Natalie", + "Jonathan", + "Charlie", + "Gregor", + "Niko", + "Christian", + "Kai", + "Marcus", + "Georg-Friedrich", + "Anna", + "Friederike", + "Helena", + "Petra", + "Stephanie", + "Ute", + "Eva", + "Elena", + "Matthias", + "Robert Charles", + "Jonja Leon Danh", + "Lilly Lou Shalinh Marie", + "Philipp", + "Karoline Dorothea", + "Marlene Elisabeth", + "Maximilian Luca", + "Elisabeth", + "Leoni", + "Philip Joachim", + "Caroline", + "Atisha Jonas", + "Karl-Konstantin", + "Jakob", + "Madita", + "Charlotte Wilhelmine", + "Johanna Mathilde", + "Amelie Paulina", + "Cosima", + "Octavia", + "Phyllida", + "Ludwig Flurin", + "Anna Rosina", + "Jonas", + "Jakob", + "David", + "Eleonore Marie Toscana", + "Emil Friedrich Achilles", + "Samuel", + "Joshua Tobias", + "Benjamin Daniel Thomas", + "Simon", + "Raphael", + "Seobin", + "Antonius", + "Peter", + "Johann Cornelius", + "Maxwell Oliver", + "Mathilde Sophie", + "Elliot Arthur", + "Sophia Helene", + "Aurelia", + "Gregor", + "Viola", + "Ruth", + "Olivia", + "Paul", + "Alma", + "Lorena", + "Peter", + "Helmut", + "Johannes", + "Frank", + "Sebastian", + "Roland", + "Dominic", + "Andreas", + "Jochen", + "Carsten Heinz Joachim", + "Moritz Edgar", + "Jochen", + "Claus", + "Hermann", + "Simon", + "Anke", + "Ralf", + "Martin Richard", + "Horst", + "Christian", + "Dirk", + "Alexander", + "Jürgen", + "Daniela", + "Jens", + "Eric", + "Johann", + "Johann Jakob", + "Wolfram", + "Michael", + "Bernhard", + "Stefan", + "Michael", + "Michael", + "Thomas", + "Manuel", + "Stefan", + "Celina", + "Dermot", + "Christian", + "Erik-Jan", + "Jürgen", + "Crispin", + "Stefanie Gertrud", + "Arie Johan", + "Sebastian Björn", + "Sukhjinder", + "Bernhard", + "Christian", + "Christian", + "Michael", + "Moritz", + "Thorsten Ernst", + "Daniel Andreas", + "Ulrich", + "Mark James Morgan", + "Stephan", + "Mario", + "Rainer", + "Christian", + "Franz", + "Horst", + "Thomas", + "John-Oliver", + "Carolin", + "Sabrina", + "Marko", + "Marc", + "Maximilian", + "Franziska", + "Bernd", + "Joachim", + "Martin", + "Jürgen", + "Christian", + "Guido", + "Jakob Bernd Hermann", + "Jürgen August", + "Steffen", + "Inga", + "Marcus", + "Eva Marion", + "Lutz", + "Jörn", + "Patrick", + "Steffen", + "Matthias", + "Thomas", + "Holger Otto", + "Stefanie", + "Thomas", + "Christian", + "Rolf", + "Jan", + "Claus Michael", + "Daniel", + "Benjamin", + "Wolfgang", + "Lars", + "Jürgen", + "Dirk", + "Dominic", + "Rebecca", + "Daniel", + "Michael", + "Jakob Johannes", + "Heiko", + "Stefan", + "Hans-Peter", + "Matthias", + "Axel", + "Christine", + "Florian", + "Karin", + "Norbert", + "Andreas", + "Sebastian", + "Matthias", + "Claus-Christian Richard Ernst", + "Veit", + "Stefan", + "Christoph", + "Peter", + "Holger", + "Stefan", + "René", + "Daniel", + "Marc", + "Markus", + "Marika", + "Stefan", + "Michael", + "Sebastian", + "Christopher", + "Mario", + "Gatse Gerrit", + "Tormod", + "Christian", + "Alexander", + "Jens", + "Christian", + "Verena", + "Dirk", + "Sönke", + "Stefan", + "Thorsten", + "Holger", + "Uwe", + "Raik", + "Jürgen", + "Markus", + "Harald", + "Martin", + "Georg Alexander Paul", + "Sergej", + "Andreas", + "Frank Peter", + "Roman", + "Hartwig Bernhard", + "Jörn", + "Nils", + "Gareth Elwyn", + "Stefan", + "Jörn", + "Anna Helene", + "Michaela", + "Jonas", + "Mathias", + "Nico", + "Alexandra", + "Christoph", + "Stephan", + "Lars", + "Oliver", + "Jörg Lothar", + "Reiner", + "Susanne", + "Daniel", + "Gordon Charles", + "Marco Alfred", + "Udo", + "Jan", + "Verena", + "Rolf", + "Torsten", + "Artur", + "Sarah", + "Martin", + "Michael", + "Volker", + "Rainer", + "Volker", + "Kai", + "Matthias", + "Adrienne Héon", + "Frank", + "Tristan", + "Thomas Klaus-Peter", + "Mirjam", + "Andrea", + "Frank", + "Ulrich", + "Wieland", + "Christoph", + "Klaus", + "Markus", + "Andreas", + "Joachim", + "Bettina", + "Thomas", + "Susanne", + "Filip", + "Lars", + "Elisabeth", + "Thomas", + "Sasa", + "Danilo", + "Bernhard", + "Thomas", + "Arndt", + "Jens Michael", + "Katharina", + "Benjamin", + "Wolfgang", + "Dorothee", + "Simone", + "Levke", + "Uwe", + "Matthias", + "Thomas Andreas", + "Colette", + "Georgios Nikolaos genannt Georg", + "Andreas", + "Claus", + "Lars", + "Volker", + "Simone", + "Manfred Volker", + "Heiko", + "Alexandra", + "Markus", + "Volker", + "Ulrike", + "Joachim", + "Michael", + "Marc", + "Christian Götz Andreas", + "Marcus Uwe", + "Andreas", + "Andre", + "Imko Harry", + "Timo Dieter", + "Marcel", + "Heidi", + "Roman", + "Marko", + "Alyna", + "Ralf", + "Ulrich", + "Iris", + "Rando", + "Burkhard", + "Alexandru", + "Malte", + "Matthias", + "Stefan", + "Stefan", + "Martin", + "Günter", + "Oskar", + "Oscar", + "Claus", + "Christoph", + "Volker", + "Thomas", + "Detlef Johannes", + "Stefan", + "Bernd", + "Jan", + "Margarethe", + "Alexander", + "Margarete", + "Georg", + "Konrad", + "Sophie", + "Katharina", + "Susanne", + "Theresa Maria Luise", + "Gustav", + "Atisha Jonas Fontanive", + "Cosima Elisabeth", + "Octavia Vivienne", + "Phyllida Adeline", + "Sophia", + "Gregor", + "Viola", + "Ruth", + "Olivia", + "Paul", + "Alma", + "Lorena", + "Peter", + "Martina", + "Tilman", + "Niklas", + "Daniel Gerhard", + "Hilke Karoline", + "Monika", + "Jost Friedrich Karl", + "Gabriël Johannes Maria Bernardus", + "Katharina", + "Frank", + "Andreas Stefan", + "Yvonne Konstanze", + "Stefan", + "Nadia", + "Marco", + "Sven", + "Anne", + "André Sebastian", + "Anna Barbara", + "Theresa", + "Kim", + "Cora Constanze", + "Susanne", + "Kristina Laura", + "Tobias", + "Jan", + "Thomas", + "Manfred", + "Markus", + "Rainer", + "Andreas", + "Jürgen", + "Christian", + "Matthias", + "Ludger", + "Christoph", + "Angela", + "Walter", + "Kersten", + "Cornelius", + "Thomas", + "Andreas", + "Jan Christoph", + "Stefan", + "Heiko", + "Bernhard", + "Michael", + "Arne", + "Oliver", + "Kerstin", + "Andreas", + "Arndt", + "Rainer", + "Ludger", + "Karsten", + "Randolf", + "Michael", + "Kai", + "Götz", + "Thomas", + "Bernhard", + "Bernd", + "Diana", + "Heike", + "Paula", + "Mario", + "Johannes", + "Frank", + "René", + "Jörg", + "Michael", + "Marco", + "Christian", + "Beate", + "Steffen", + "Gabriele", + "Christoph", + "Joachim", + "Lauren", + "Alexandra", + "Johann-Caspar", + "Emmanuel", + "Gerhard", + "Anne Carina", + "Frank", + "Christian", + "Gaetano", + "Yann", + "Svenja", + "Ralf", + "Jörg", + "Martin", + "Peter", + "Markus", + "Stefan Michael", + "Heidi", + "Harald", + "Christian", + "Steffen", + "Jens-Uwe", + "Andreas", + "Dirk", + "Andreas", + "Joachim", + "Axel", + "Inamarie", + "Susanne", + "Gerd", + "Holger", + "Ralph", + "Franz", + "Bernhard", + "Volker", + "Ingmar", + "Patrick", + "Max", + "Armin", + "Thomas", + "Dirk", + "Markus", + "Thomas", + "Doris", + "Matthias", + "Norbert", + "Bernd", + "Sanjeev", + "Michael", + "Robert", + "Roberto", + "Bernd", + "Thomas", + "Walter", + "Katrin", + "Christian", + "Dirk", + "Thomas", + "Olga", + "Udo", + "Dirk", + "Alexander", + "Hermann", + "Ute", + "Hans-Rolf", + "Ulrich", + "Elias", + "Stefan", + "Helena Song-Hi", + "Stefan", + "Claudine", + "Greta", + "Gerrit", + "Sabine", + "Manja Lisa", + "Simone", + "Peter", + "Frank", + "Friedrich Claas", + "Thomas Ludwig", + "Tim Christopher", + "Jens", + "Anja", + "Sebastian", + "Sascha", + "Kai", + "Edi", + "Norbert", + "Ludger", + "Anke", + "Claus", + "Rüdiger", + "Lars", + "Christian", + "Melanie", + "Peter", + "Tim", + "Thomas", + "Christine", + "Christian", + "Robert", + "Harald", + "Anke", + "Guido", + "Claudia", + "Holger", + "Henrik", + "Dirk", + "Viviane", + "Annette", + "Norbert", + "Matthias", + "Anne", + "Maike", + "Thomas", + "Justyna", + "Kenneth", + "Silvia Brigitte", + "Martin", + "Roberto", + "Georg Alexander", + "Sascha", + "Serkan", + "Werner", + "Steffen", + "Uwe", + "Carsten", + "Siegfried", + "Olaf", + "Christian Rudolf", + "Erik", + "Desislava", + "Nils", + "Martin", + "Sonja-Verena", + "Patrick", + "Frank", + "Thorsten", + "Diana", + "Steffen", + "Georg", + "Holger", + "Hannes", + "Marc", + "Michael", + "Andreas", + "Christoph", + "Oliver", + "Natascha", + "Henrik Jürgen Helge", + "Yves Gorat", + "Matthias", + "Thorsten", + "Dirk", + "Till", + "Lothar", + "Stefan", + "Marc David Günther", + "Jörg", + "Özlem", + "Markus", + "Lars", + "Nadine", + "Matthias", + "Herbert", + "Fabian", + "Jörg", + "Stefan", + "Roland", + "Susanne", + "Jörn", + "Andreas", + "Ingo", + "Antonius", + "Markus", + "Bernhard", + "Timo", + "Lutz", + "Florian", + "Bernhard Andreas", + "Martin", + "Stefan", + "Michael", + "Franziska", + "Stefanie", + "Jochen", + "Nicole", + "Christian", + "Hans-Joachim", + "Stefan", + "Dietmar", + "Johannes", + "Peter", + "Nadja", + "Mareike", + "Michael", + "Klaus", + "Rickmann", + "Simone", + "Dirk", + "Andreas", + "Torsten", + "Tammo", + "Felix", + "Benjamin", + "Oliver", + "Oliver", + "Thomas", + "Manuel", + "Diana", + "Melanie", + "Holger", + "Jürgen", + "Frank", + "Nick", + "Hendrik", + "Christian", + "Michael", + "Guido", + "Daniela", + "Jörg Nils", + "Sebastian", + "Annette", + "Markus", + "Matthias", + "Katja", + "Stefanie", + "Srinivas", + "Oliver", + "Christoph Georg", + "Malcolm David", + "Kristin", + "Jana", + "Steffen", + "Manuel", + "Jochen", + "Miguel", + "Arnd", + "Oliver", + "Jörg", + "Karl-Heinz", + "Michael", + "Matthias", + "Christoph", + "Jürgen", + "Ulrich", + "Harald", + "Anke", + "Martin", + "Dieter", + "Thorsten", + "Stephanie", + "Wolfgang", + "Pierre Dominique", + "Stefan", + "Markus", + "Monika", + "Alexander Sven", + "Denitza", + "Holger", + "Mathias", + "Ivonne-Kerstin", + "Stefan", + "Thomas", + "Julia", + "Daniel", + "Lutz", + "Beate", + "Bernd", + "Marco", + "Andreas", + "Tobias", + "Erkul", + "Michael", + "Christian", + "Oliver", + "Detmar", + "Matthias", + "Bastian", + "David", + "Ismail", + "Oliver", + "Hartmut Stefan", + "Stefan", + "Marcus André", + "Christian", + "Stephan", + "Alexander", + "Michael", + "Johannes", + "Ulrich", + "Daniela", + "Anne", + "Stephanie", + "Zsolt", + "Florian", + "Holger", + "Guntram", + "Rainer", + "Christof", + "Jill", + "Nadine", + "Oliver", + "Nikolaos", + "Jean-Victor", + "Jochen", + "Gerd Friedrich", + "Ralph", + "Angela", + "Moritz", + "Johannes", + "Wolfgang", + "Tonja", + "Jan", + "Matthias", + "Carsten", + "Smail", + "Miguel", + "Dieter", + "Jens", + "Andreas", + "Peter", + "Jarkko", + "Lars", + "Jennifer", + "Heinrich", + "Florian Raphael", + "Nicole", + "Tim Martinus Johannes", + "Stefan Wilfred", + "Stefan Walter", + "André", + "Zsolt", + "Peter", + "Horst Manfred", + "Stephan", + "Patrick", + "Andreas", + "Michael", + "David", + "Marcus", + "Torsten", + "Mario", + "Arnd", + "Bastian", + "Stephan", + "Martin", + "Linda", + "Reinhard", + "Georg", + "Jürgen", + "Andreas", + "Carsten", + "Olaf", + "Martin", + "Friedrich Ernst", + "Stephan Matthias", + "Moritz", + "Horst", + "Christopher", + "Felix", + "Werner", + "Olav", + "Rainer", + "Karina", + "Ingo", + "Sebastian-Jochen", + "Malte", + "Christian", + "Anne", + "Knut", + "Michael", + "Johanna", + "Stephan", + "Michael", + "Ingo Frederik", + "Nicole", + "Michaela", + "Anja Alexandra", + "Christian", + "Karyn", + "Lioudmila", + "Munib", + "Mark Oliver", + "David", + "Stefanie", + "Ulrich", + "Henryk", + "Christian", + "Andreas", + "Thomas", + "Bernhard", + "Guido", + "Ulf", + "Carolin", + "Pascal", + "Thomas", + "Felix", + "Nikolaus", + "Ralph Roland Richard", + "Silke", + "Wencke", + "Tobias", + "Isabelle", + "Tanja", + "Ulrich", + "Simone", + "Dirk", + "Anneka", + "Jan", + "Hubertus", + "Jan", + "Christoph", + "Nora", + "Marcus", + "Thomas", + "Annette", + "Isabelle", + "Jennifer", + "Moritz", + "Ronald Albert", + "Stefan", + "Daniel", + "Christoph", + "Hans-Joachim", + "Andreas", + "Frank", + "Martin", + "Stefan", + "Christoph", + "Berthold Johannes", + "Torsten", + "Xaver", + "Stephan", + "Dirk", + "Thorsten", + "Axel", + "Carsten", + "Jürgen", + "Ralf", + "Martin", + "Thomas", + "Florian", + "Hexin", + "Andreas", + "Peter", + "Stefan", + "Jörg", + "Kay Peter", + "Susanne", + "Lucas-Christopher", + "Stefan R.", + "Ralph", + "Timo", + "Carsten", + "Klaus", + "Axel", + "Karin", + "Christine", + "Holger", + "Matthias", + "Florian", + "Thomas", + "Bruno", + "Tim", + "Sebastian", + "Christian", + "Chistian", + "Jonny", + "Ralf", + "Thomas", + "Reinhard", + "Carsten", + "Andreas", + "Thomas", + "Thomas", + "Schrödel", + "Sabine", + "Steffen", + "Monika", + "Steffen Paul Georg", + "Monika Anna", + "Nicolas", + "Ulrich Helmut", + "Horst Ingo", + "Engin", + "Kristian", + "Daniel", + "Alexander", + "Stefan", + "Nils", + "Wolfgang", + "Marcel", + "Helmut", + "Marco", + "Bernd", + "Claus", + "Markus", + "Michel", + "Sirous", + "Thorsten", + "Alexander Harry", + "Ruth", + "Michael", + "Wolfgang", + "Alfred", + "Leonie", + "Siegrid", + "Tobias", + "Sergej", + "Nehir", + "Oliver", + "Rainer", + "Jürgen Wilhelm", + "Wolfgang", + "Stephan", + "Matthias", + "Christian", + "Thomas Wilhelm", + "Marc", + "Alan", + "Thomas", + "Thomas", + "Marc Christian", + "Bernd", + "Victoria", + "Leonhard", + "Lisbeth", + "Christoph", + "Patrick", + "Harald Wolfgang Heinrich", + "Berthold", + "Axel", + "Claudia Maria", + "Bernd", + "Dirk", + "Dennis", + "Axel", + "Jürgen", + "Rüdiger", + "Bastian", + "Marc", + "Katja", + "Beate", + "Dieter", + "Fabian", + "Reinhard", + "Markus", + "Kai", + "Thomas", + "Peter", + "Katja", + "Henrik", + "Ulrich", + "Andreas", + "Mark", + "Ralf", + "Holger", + "Oliver", + "Liang", + "Astrid", + "Jon", + "Matthias", + "Ralf", + "Sven", + "Jona Sebastian", + "Alexandru", + "Philipp", + "Alexander", + "Rainer", + "Urs", + "Michael", + "Gabriela", + "Dominik", + "Dirk", + "Piotr", + "Christoph", + "Oliver", + "Stefan", + "Michael", + "Kai", + "Hella", + "Lennard", + "Oliver Matthias", + "Stephan", + "Christiane", + "Michael", + "Yves", + "Stephanie", + "Karl Michael Moritz", + "Volker Andreas", + "Arnd", + "Heinz-Otto", + "Stefan", + "Martin", + "Katja", + "Johannes", + "Julian", + "Stephan Franz Josef", + "Christoph Alexander", + "Dirk", + "Mira", + "Carsten Karl-Heinz", + "Nicole", + "Christian", + "Thomas", + "Martin", + "Mathias", + "Claudia", + "Brigitte", + "Christoph", + "Ludger", + "Christoph-Sweder", + "Sven", + "Sönke", + "Ulrich", + "Oliver", + "Michael", + "Klaus", + "Michael", + "Martin", + "Martin", + "Thomas", + "Maria", + "Bernhard", + "Leszek", + "Dennis Philipp", + "Anja", + "Andreas Jürgen", + "Ingo", + "Jörg", + "Klaus", + "Juliane", + "Georg", + "Holger", + "Klaus", + "Lydia", + "Niels", + "Michael Xavier", + "Bernhard", + "Armin", + "Gerd", + "Lars", + "Kathrin", + "Dirk Volker", + "Nils Ulrich", + "Johannes Antonius Maria", + "Kay", + "Hella Karin", + "Jürgen", + "Edgar", + "Christof", + "Heiko", + "Matthias", + "Christoph", + "Frank", + "Gerold", + "Detlev", + "Anke", + "Jens", + "Joachim", + "Daniel", + "Dirk-Alexander", + "Frank", + "Andreas", + "Sascha", + "Ingo", + "Peter", + "Bernard", + "Stefan", + "Martin", + "Michael", + "Jörg", + "Marcel", + "Barnabas", + "Felix", + "Michael", + "Heiko", + "Heiko", + "Ludger", + "Tobias", + "Guido", + "Nicole", + "Lennart", + "Jens", + "Christoph", + "Frank", + "Sebastian", + "Arnd", + "Saskia", + "Carlos", + "Felix", + "Michel", + "David", + "Silke", + "Svenja", + "Jörg", + "Torsten", + "Karsten", + "Christian", + "Clèment-Minoru", + "Ralf", + "Mary-Anne", + "Thomas", + "Ondrej", + "Ulf", + "Jörg", + "Rolf", + "Stephan", + "Benedikt", + "Andreas", + "Ansgar", + "Christoph", + "Hella Elke", + "Reinhard", + "Anja", + "Sandro", + "Heinz", + "Michael Jürgen", + "Marc", + "Martin", + "Christian", + "Bernhard", + "Rainer", + "Simon", + "Stefan", + "Markus", + "Jürgen", + "Heinrich", + "Tobias", + "Nick", + "Wolf-Dietrich", + "Erich", + "Markus", + "Andreas", + "Alexander", + "Ulrich", + "Markus", + "Sarah", + "Malte", + "Almut", + "Oliver", + "Birger", + "Martin", + "Uwe", + "Thomas", + "Julian", + "Dieter", + "Oliver", + "Andreas", + "Krunoslav", + "Tom", + "Daniel Gerhard", + "Willi", + "Robertus Petrus Maria", + "Timo", + "Ludger", + "Peter", + "Guido", + "Wolfgang", + "Heinz-Jürgen", + "Lasse", + "Sascha", + "Steffen", + "Jürgen", + "Gunda", + "Jörg-Christian", + "Hayriye", + "Armin", + "Lars", + "André", + "Thomas", + "Ralf", + "Martin", + "Bernward", + "Raffaele", + "Anja", + "Peter", + "Jürgen", + "Roland", + "Kathrin", + "Ulrike", + "Alexander", + "Karan", + "Sonja", + "Mark Fabian", + "Roland", + "Recep Erkan", + "Iris", + "Ralf", + "Matthias", + "Dorothea", + "Dieter", + "Timm", + "Olaf", + "Karl", + "Barbara", + "Andreas", + "Rainer", + "Markus", + "Alexander Jürgen", + "Cordula", + "Matthias", + "Juliane", + "Gerhard", + "Peter", + "Ingo", + "Thomas", + "Daniel", + "Michael", + "Björn", + "Markus", + "Yves", + "Stefan", + "Benedikt Sebastian", + "Barbara", + "Hendrick Sebastian Thomas", + "Elmar", + "Gerd", + "Rüdiger", + "Bettina", + "Anita", + "Nora", + "Manuel Enzo Michael", + "Tino", + "Matthias", + "Anika", + "Frank Oliver", + "Andreas", + "Mirko", + "Bastian", + "Fritz Toni", + "Michael Günther", + "Wolfgang", + "Thomas Gerd", + "Claus-Torsten", + "Frank", + "Paul", + "Maren Kristina", + "Sandra", + "Brett Jacob", + "Jurate", + "Holger", + "Eva", + "Georg", + "Jens", + "Andreas", + "Jürgen-Clemens", + "Peter-Thomas", + "Uwe Udo", + "Niels", + "Uwe", + "Steffen", + "Kay", + "Andreas", + "Michael Karsten", + "Nadia", + "Michael", + "Rolf Eric", + "Andres", + "Uwe", + "Dheeraj", + "Juan Pablo", + "Mark", + "Maximilian", + "Danny Joanna F.", + "Hans", + "Ulf", + "Anders Sveel", + "Donya-Florence", + "Martin", + "Stuart", + "Oliver Carsten", + "Laura", + "Hella-Sophia", + "Tom", + "Daniela", + "Ralph Thomas", + "Reinhard Werner", + "Alberta", + "Michael J.", + "Birgit", + "Stefan Gerhard", + "Markus Lothar Heinrich", + "Joachim", + "Harald", + "Regina", + "Uwe", + "Katrin", + "Carsten", + "Frank", + "Marie-Laure", + "Klaus", + "Thomas", + "Friederike", + "Dirk", + "Oliver", + "Ann-Kristin", + "Stefanie", + "Nicolas", + "Sylvie", + "Marco", + "Ulrich", + "Lars", + "Matthias", + "Wolfgang", + "Mark Oliver", + "Dmitrij", + "Thomas", + "Tom", + "Martin", + "Thomas", + "Oliver", + "Henirk", + "Ivica", + "Nikolai Florian Clifford", + "Matthias", + "Thomas", + "Harald", + "Milan", + "Peter-Thomas", + "Daniel", + "Bianca", + "Karin Maria", + "Johannes", + "Anna-Lena", + "Til", + "Patrick", + "Gabriele", + "Andre", + "Ralf", + "Markus", + "Harmut", + "Eva", + "Anna", + "Thomas", + "Elisa", + "Niklas", + "Marcus", + "Ekkehard", + "Philippe", + "Winfried-Franz", + "Ute", + "Daniel", + "Manfred", + "Benjamin", + "Rudolf", + "Marc", + "Sebastian", + "Maximilian", + "Stefan", + "Hans Georg", + "Sabine", + "Jan-Henrik", + "Claudia", + "Johannes Falk Hagen", + "Dieter", + "Thomas", + "Thomas", + "Marlies", + "Peter", + "Gerd", + "Marcus", + "Martin", + "Gabriele", + "Dennis", + "Hartmut", + "Heinz-Peter", + "Frank", + "Jörg", + "Gönna", + "Thomas", + "Andrea", + "Monika", + "Susanne", + "Denise", + "Tanja", + "Turan", + "Klaus Helmut", + "Andreas", + "Boris", + "Jochen", + "Andreas", + "Janine", + "André", + "Aleksandra", + "Achim", + "Christof", + "Florian", + "Sven", + "Reminta", + "Stephan", + "Thomas", + "Christian", + "Patrick", + "Christian", + "Götz", + "Jörg", + "Tino", + "Herbert", + "Sandra", + "Daniel", + "Andreas", + "Henry", + "Matthias", + "Carmen", + "Susan", + "Kai", + "Vesna", + "Katharina Maria", + "Udo", + "Roman", + "Alexander", + "Michael", + "Dominik", + "Siegfried", + "Rolf", + "Corinna", + "Gerhard", + "Marc", + "Christian", + "Peter", + "Dierk Oliver", + "Marius", + "Albert", + "Adrian", + "Thomas-Gerd", + "Ulrich", + "Michael Günter Wilhelm", + "Fabian", + "Herbert", + "Harald Heinrich", + "Frank", + "Edgar", + "Sarah", + "Michael", + "Ulrich Wilhelm", + "Frank", + "Thilo", + "Manfred", + "Christian", + "Ralph", + "Sven", + "Volker", + "Andreas", + "Andreas", + "Timo", + "Franziska", + "Jenny", + "Hanns-Peter", + "Christian Stefan", + "Kai", + "Stefan", + "Jan", + "Sebastian", + "Andreas", + "Thorsten", + "Henrik", + "David Ben", + "Marcus", + "Sascha André", + "Wolfgang", + "Anna-Maria", + "Grit", + "Jutta", + "Thomas", + "Simone", + "Ronny", + "Volker", + "Gregor", + "Stefan", + "Georg", + "Ivan", + "Franz-Josef", + "Karsten", + "Tatjana", + "Falk", + "Bastian", + "Guido", + "Abhishek", + "Christina", + "Fernando Miguel", + "Annika", + "Steffen", + "Michael", + "Bärbel", + "Judith", + "Helge", + "Rik Wivina Anna Adelson", + "Frank-Detlef", + "Mark", + "Inken", + "Jürgen", + "Fabian", + "Peter", + "Philipp", + "Jörg", + "Lars", + "Knut", + "Jörg", + "Christian", + "Ingo", + "Sebastian", + "Marion", + "Benedikt", + "Sven", + "Horst", + "Uwe", + "Friederike Elisabeth", + "Frank", + "Ute", + "Martin", + "Sandra Ingrid", + "Günter", + "Andreas", + "Giorgio", + "Dieter", + "Klaus", + "Hella", + "Walter", + "Regina", + "Norbert", + "Robin", + "Markus", + "Ricardo", + "Frithjof", + "Gunda", + "Henning", + "Dirk", + "Eva Lucia", + "Friedrich", + "Joachim", + "Joachim", + "Wolfgang", + "Miriam Henriette", + "Agnes Emilie", + "Bernhard", + "André", + "Almut", + "Robert", + "Tobias", + "Michaela", + "Uwe", + "Reiner", + "Uwe", + "Jürgen", + "Gabriele", + "Jochen", + "Gisela", + "Christoph", + "Eduard", + "David", + "Philip", + "Mirco", + "Jan Paul", + "Hubert", + "Ewa", + "Thomas", + "Sebastian", + "Thomas", + "Klaus", + "Hella", + "Marco", + "Dirk", + "Jens", + "Gerhard", + "Marcus Matthias", + "Andreas", + "Bernd Georg", + "Stefanie", + "Michael", + "Adolf", + "Marco", + "Matthias", + "Fritz", + "Gerda", + "Philippe", + "Michael", + "Devrim", + "Kai", + "Oliver", + "Sarah", + "Oliver", + "Stefan", + "Ina", + "Eva Susanne", + "Michael", + "Ralf", + "Karin", + "Mirko", + "Walter", + "Karl-Dieter", + "Andreas", + "Hans-Henning", + "Raik", + "Dominik", + "Thomas", + "Andreas", + "Thomas", + "Reiner", + "Stefan", + "Elke", + "Ejup", + "Morris", + "Michael", + "Volker", + "Grit", + "Matthias", + "Ralf", + "Thomas", + "Karl-Heinz", + "Valentin R.", + "Michael", + "Christian", + "Thomas", + "Jan-W.", + "Sascha", + "Til", + "Marc", + "Nicolas", + "Stephan", + "Ralf", + "Miriam", + "Philipp", + "Friedrich", + "Björn", + "Mathias", + "Tobias", + "Mansour", + "Fatemeh Baradaran", + "Olga", + "Thomas", + "Gesine Tanja", + "Carsten", + "Richard Lourens", + "Matthias", + "Sven", + "Simon", + "Peter", + "Marcus", + "Peter", + "Frank", + "Wilfried", + "Antje", + "Peter Georg", + "Bastian", + "Florian", + "Christine", + "Dirk", + "Quirin", + "Robert", + "Simon", + "Alexander", + "Marianne", + "Zvetomir", + "Andreas", + "Sabrina", + "Alexander", + "Markus", + "Michael", + "Thomas", + "Torben Christian", + "Martin", + "Marcus", + "Wolfgang", + "Thomas", + "Matthias", + "Ralf", + "Wiebke", + "Lukas", + "Erol", + "Julian", + "Jochen", + "Detlef", + "Boje", + "Michael", + "Joachim", + "Dirk", + "Jürgen", + "Volker", + "Manfred", + "Stefan", + "Beatrice", + "Bernd", + "Jirko", + "Björn", + "Thomas", + "Torsten", + "Hüseyin", + "Achim", + "Martin", + "Arthur", + "Anne Claudia", + "Britta", + "Markus Leander", + "Manfred", + "Martin", + "Florian", + "Achim", + "Anja", + "Marcus", + "Gerd", + "Dagmar", + "Patricia", + "Christoph", + "Frank", + "Robert", + "Norbert", + "Alessandra", + "Hartmut", + "Axel", + "Josef", + "Martin", + "Carola", + "Tino", + "Peter", + "Martin", + "Wolfgang", + "Katharina", + "Tilman", + "Octavio", + "Uwe", + "Mandy", + "Andreas", + "Jörg", + "Thomas", + "Birgit", + "Rainer", + "Fatos", + "Visar", + "Leonhard", + "Abdullah", + "Edmund", + "Gerhard", + "Kristina", + "Peter", + "Erich", + "Sabine", + "Tobias", + "Kai", + "Hui", + "Fabian", + "Christan", + "Maike", + "Judith", + "Birgid", + "Markus", + "Stephan", + "Jürgen", + "Matthias", + "Bertram", + "Matthias", + "Markus", + "Marco", + "Nathalie", + "Irmgard", + "Jörg", + "Frank", + "Volker", + "Michael", + "Esther", + "Henning", + "Alexander", + "Urs", + "Stefan", + "Markus", + "Christoph Alexander", + "Michael", + "James", + "Rebecca", + "Christoph", + "Eva", + "Pascal", + "Georg", + "Dirk", + "Melanie", + "Stefanie", + "Michael", + "Franciscus", + "Marcel", + "Ulrich", + "Carmen", + "Michaela", + "Anastasia", + "Michael", + "Carsten", + "Christoph", + "Jan-Per", + "Stefan", + "Carsten", + "Peter", + "Harald", + "Kai", + "Thomas", + "Christian Charles", + "Martin", + "Ghenadie", + "Karl", + "Stephan", + "Ewald", + "Kurt", + "Arash", + "Siamak", + "Pirooz", + "Saman", + "Homeira", + "Aristea", + "Bouke Christiaan", + "Sascha", + "Doris", + "Christophe", + "Monika", + "Jörg", + "Dirk", + "Andrea", + "Raik", + "Matthias", + "Miroslaw", + "Ralf", + "Georg F. W.", + "Harald", + "Maria-Elisabeth", + "Wolfgang", + "Matthias", + "Torsten", + "Ulrich", + "Reinhold Frank", + "Jian", + "Harald", + "Eva-Maria", + "Max", + "Andreas", + "Jürgen", + "Andreas", + "Christian", + "Klaus", + "Rasso Helmut", + "Moritz", + "Frank Markus", + "Ilona", + "Claudia", + "Bernd", + "Claudia", + "Ludwig", + "Marc", + "Oliver Patrick", + "Burkhard", + "Dirk", + "Michael", + "Jens Christian", + "Andrea", + "Stephan", + "Barbora", + "Christian H.", + "Carin-Martina", + "Gerhard", + "Matthias", + "Hans Jörg", + "Wolfgang", + "Kadir Serdar", + "Vadim", + "Evgeny", + "Julia", + "Stefan", + "Knut", + "Kai", + "Holger", + "Ralf", + "Dmitri", + "Rudolf", + "Annette", + "Fabian", + "Richard", + "Darina", + "Peter Hanjo", + "Thomas", + "Thorsten", + "Dirk", + "Michael", + "Axel", + "Christina", + "Stephen", + "Peter", + "Anneleen", + "Andrea", + "Andrea", + "Franz-Josef", + "Markus", + "Andreas", + "Alexander", + "Kerstin", + "Anne-Marie", + "Axel", + "Leoni June", + "Jan-Peter", + "Tobias", + "Jörg", + "Andreas", + "Marco", + "Christian", + "Robert", + "Alexander", + "Stefanie", + "Horst", + "Susanne", + "Michaela", + "Daniel", + "Thorsten", + "Martina", + "Hans-Otto", + "Sabine", + "Ulrich", + "Wolfgang Hans", + "Heinz Willi", + "Paul", + "Christian", + "Knut", + "Barbara", + "Bruno", + "Marcus", + "Oliver", + "Josef", + "Marcus", + "Christian", + "Thomas Roland", + "Oliver", + "Ulrich", + "Thomas", + "Alexander", + "Velimir", + "Andreas", + "Frank Mark", + "Alexander", + "Isabelle", + "Jan", + "Florian", + "Thomas", + "Tim", + "Holger", + "Guido", + "Bernd", + "Stephan", + "Albin", + "Oliver", + "Sinah", + "Andreas", + "Irina", + "Hans-Joachim", + "Leonie", + "Philipp", + "Hans-Georg", + "Christoph", + "Viktoria", + "Veronika", + "Frank", + "Axel", + "Klaus", + "Jacques", + "Konrad", + "Florian", + "Reinhard", + "Thomas", + "Torsten", + "Andreas", + "Volker", + "Christian", + "Elena", + "Stephan", + "Ching Pong", + "Joachim", + "Thomas", + "Michael", + "Monika Stefanie", + "Ruth", + "Bernhard", + "Harald", + "Patrick", + "Kerstin Brigitte", + "Dirk", + "Karoline", + "Lars", + "Carsten", + "Massimiliano", + "Hasan", + "Henry", + "Richard Robinson (genannt Rob)", + "Marcus Antonius", + "Valeria Jimena", + "Mark", + "Rainer Konrad", + "Nico", + "Markus", + "Joska", + "Oleg", + "Martin", + "Barbara", + "Siegfried Johannes", + "Manuela", + "Hans-Martin", + "Heiko", + "Simon", + "Matthias", + "Claus", + "Tim", + "Michael", + "Hubert", + "Carina", + "Jens-Christian", + "Ulrike", + "Simon", + "Thomas", + "Anno", + "Marcel", + "Katja", + "Hermann", + "Rolf", + "Martin", + "Frederique", + "Angela", + "Leonie Isabel", + "Leonie", + "Ingo", + "Thomas", + "Philip", + "Elmar", + "Claudia", + "Peter", + "Jochen", + "Nikolaus", + "José Ignacio", + "Peter", + "Wolfgang", + "Andrea", + "Dirk", + "Hinrich", + "Martina", + "Adrienne", + "Javier", + "Markus", + "Peter Renè", + "Marco", + "Daniel", + "Eva", + "Andreas", + "Pascal", + "Jessica", + "Nadja", + "Thomas", + "Patrick", + "Holger", + "York Silvan", + "Alexander", + "Sebastian", + "Helmut", + "Holger", + "Hansjörg", + "Rolf", + "Jochen", + "Andrea", + "H. Stefan", + "Matthias", + "Aldrit", + "Kai-Andre", + "Kay Uwe", + "Kirsten", + "Nikolai", + "Stefan", + "Bernd", + "Soenke", + "Hans Stefan", + "Michael", + "Peter", + "Jens", + "Christian", + "Christian", + "Jens", + "Thomas", + "Helmut", + "Harald", + "Marco", + "Dieter", + "Martina", + "Bernd", + "Andreas", + "Michael", + "Michael", + "Frank", + "Raoul", + "Christopher", + "Norbert", + "Ralf", + "Josef", + "Ulrich Stefan", + "Ralf Andreas", + "Aljona", + "Peter", + "Jürgen", + "Stefan", + "Wilfried", + "Berthold", + "Markus", + "Matthias", + "Holger", + "Michael", + "Urs", + "Markus", + "Torsten", + "Gerald", + "Michael", + "Manfred Adolf", + "Holger", + "Oliver", + "Ansgar", + "Andreas", + "Bettina", + "Wolfgang", + "Wolfgang", + "Joachim", + "Karsten", + "Ralf", + "Andreas", + "Mario", + "Michael", + "Joachim", + "Michael", + "Thomas", + "Jens-Hendrik", + "Dirk Arthur Margriet", + "Thomas Magnus", + "Dominik", + "Stefan", + "Ralf", + "Matthias", + "Stefan", + "Thomas", + "Frank", + "Janmarc", + "Bernd", + "Rolf", + "Sergio", + "David", + "Amalia", + "Gabriele", + "Ulrich", + "Daniela", + "Edison", + "Falko", + "Andreas", + "Paris", + "Gabriele", + "Karin", + "Alexander", + "Ulrich Rembert", + "Matthias Franz", + "Hartwig", + "Martin", + "Anselm", + "Markus", + "Bertram", + "Kai", + "Felix", + "Markus", + "Margarethe", + "Hilke Maria", + "Rudolf", + "Bernd", + "Lars", + "Mischa", + "Javier", + "Jörg", + "Ángel Manuel", + "Juan", + "Christian", + "Ulrich", + "David Alonso", + "Thomas", + "Dominik", + "René", + "Michael", + "Denis", + "Klaus", + "Bernd", + "Jil-Mercedes", + "Rudolf", + "Vera", + "Christian", + "Frank", + "Stefan", + "Dana", + "Simon", + "Erich", + "Jürgen", + "Tobias", + "Jens", + "Sven", + "Stefan Jean", + "Matthias", + "Knut", + "Michael", + "Ralf", + "Niklas", + "Lothar", + "Martin", + "Alexander", + "Carsten", + "Maren Sofie", + "Léonie", + "Richard", + "Markus", + "Rainer", + "Björn", + "Stefan", + "Hubert", + "Thomas", + "Achim", + "Janna", + "Björn Christian", + "Ramona Friederike", + "Kristina", + "Christian", + "Dagna", + "Wolfgang", + "Christian", + "Jürgen", + "Birgit", + "Andreas", + "Sven-Olaf", + "Florian", + "Tobias", + "Florian", + "Michael", + "Marc", + "Ralf", + "Tord", + "Frank", + "Monika", + "Lisa", + "Michael", + "Andrea", + "Michael", + "Timo", + "Melanie", + "Jan-Christoph", + "Tammo", + "Jörn", + "Norbert", + "Robert", + "Thomas", + "Knuth", + "Mirjam", + "Johannes", + "Uwe", + "Wolfgang", + "Patrick", + "Mario Christian", + "Jerry", + "Hiroyuki", + "Yunus", + "Heribert", + "Frank", + "André", + "Stephan", + "Gunter", + "Ingo", + "Klaus", + "Ansgar", + "David Jerome", + "Daniel Heinrich", + "Yves Marc", + "Dorothee", + "Regina", + "Benjamin", + "Sven", + "Robert", + "Marcus", + "Herbert", + "Bernd", + "Frank", + "Steffen", + "Peter", + "Günter", + "Gesa", + "Roy", + "Philipp", + "Björn", + "Kivilaht", + "Stefan", + "Anja", + "Stefan Andreas", + "Mario", + "Harald", + "Johann", + "Grzegorz", + "Veronika", + "Gary", + "Heiko", + "Gregor", + "Joachim", + "Matthias", + "Urs Christoph", + "Klaus Rudolf", + "Christian", + "Peter René", + "Marc", + "Bernd Adolf", + "Uwe", + "Michael", + "Ralf Martin", + "Jörg Gerhard", + "Katharina", + "Jochen", + "Oliver Reinhard", + "Rainer", + "Luis Gonzaga", + "John, George", + "Donald John", + "Elke Johanna Petronella", + "Bradford Dean", + "Brigitte", + "Marcel", + "Peter", + "Karl", + "Volker", + "Terry", + "Karen", + "Silke", + "Frank", + "Hartmut", + "Bernhard", + "Peter Hugo Ludwig", + "André", + "André", + "Torsten", + "Nicolas", + "Frank", + "Matthäus", + "Helge", + "Martin", + "Maximilian", + "Thomas", + "Mario Bernd", + "Holger", + "Marco", + "Hans-Peter", + "Barbara", + "Thomas", + "Michael", + "Valentin", + "Frank", + "Maren", + "Sabine", + "Monika", + "Bianca", + "Isabelle", + "Michael", + "Ralf", + "Ralf", + "Fred", + "Christian", + "Torsten", + "Oliver", + "Claus", + "Jörg", + "Michael", + "Christian", + "Sabine", + "Nils Ingo", + "Diana", + "Oliver", + "Anika", + "Nuray", + "Sebastian", + "Eduard", + "Jan", + "Peter", + "Frank", + "Alexander", + "Petra", + "Thomas", + "Lena", + "Björn Pascal", + "Dominik", + "Christian", + "Stefanie", + "Jürgen", + "Christian", + "Christoph", + "Gerd", + "Ingo", + "Ursula", + "Harald", + "Hans-Joachim", + "Raffael", + "Kathrin", + "Michael", + "Sebastian", + "Andreas", + "Oliver", + "Stefan", + "Helena Marthe", + "Carmen Ursula", + "Christoph Klaus", + "Erik", + "Kexiao", + "Thomas", + "Andreas", + "Rasim", + "Manfred", + "Mirko", + "Hubertus", + "Ingolf", + "Béatrice", + "Jan Patrick", + "Thomas", + "Jens Fritz", + "Daniel", + "Christoph", + "Stefan", + "Bernd", + "Jens", + "Olaf", + "Christoph", + "Valentina", + "Maximilian", + "Klaus Hans Richard", + "Frank", + "Joachim", + "Tim", + "Imren Yasar", + "Thomas", + "Marcel", + "Norman", + "Omid", + "Mustafa Sohail", + "Klaus", + "Jochen", + "Joachim", + "Gerald", + "Hans-Peter", + "Thomas", + "Alexander", + "Özhan", + "Angelika", + "Maximilian", + "Ulf", + "Constantin", + "Leoni", + "Christian", + "Fritz", + "Christoph", + "Klaus Markus", + "Jörg", + "Katja", + "Arne", + "Nils", + "Jana", + "Paul Anthony", + "Sabine", + "Thomas", + "Jörg", + "Stefan", + "Martina", + "Mike", + "Johannes", + "Rudolf", + "Ulrich", + "Peter", + "Axel", + "Jörn", + "Armin", + "Anne", + "Alexander", + "Andreas", + "Ingeborg", + "Thomas", + "Elisabeth", + "Johannes", + "Heidelinde", + "Klaus Martin", + "Christian", + "Marwin", + "Jens", + "Markus", + "Saban", + "Kemal", + "Andrea", + "Birgit", + "Isabella", + "Manuela", + "Stephanie", + "Thomas", + "Claudia", + "Julia Susanne", + "Martin Ulrich", + "Jürgen", + "Christoph Peter", + "Andreas", + "Andreas Werner", + "Krzysztof", + "Gunter", + "Michael", + "Ralf Ernst", + "Wilhelm", + "Patrizia", + "Christian", + "Markus", + "Georg", + "Christina", + "Leonie Ferike", + "Thomas Robert", + "Antje", + "Sankar", + "Richard", + "Mike", + "Alf", + "Peter", + "Horst", + "Jeannette", + "Christian", + "Regina", + "Peter", + "Alexander", + "Dominik", + "Jochen", + "Peter Walter", + "Thomas", + "Andrea", + "Angelique", + "Bernd", + "Markus", + "Peter", + "Rudolf", + "Roland", + "Rutger", + "Sven", + "Andreas", + "Constanze", + "Adam", + "Lutz Rainhard Erich", + "Marc Oliver", + "Franz Stefan", + "Dieter", + "Reinhard", + "Michele", + "Jürgen", + "Manfred", + "Werner", + "Ursula", + "Walter", + "Hannes", + "Lars", + "Peter", + "Xavier Pascal Claude", + "Jürgen", + "Norbert", + "Frank", + "Ralph", + "Sandra", + "Ulrich", + "Marc", + "Isabelle", + "Ulrich", + "Tilmann", + "Thomas", + "Robert", + "Philipp", + "Reinhold", + "Jörg", + "Robert", + "Reinhold", + "Alexander", + "Andreas", + "Alexander", + "Wolfram Rainer", + "Denis Erich Konrad", + "Stefan", + "Michael Gerhard", + "Julia", + "Karsten", + "Alexander Gerhard", + "Fernando Francisco", + "Jürgen", + "Jan", + "Claus", + "Marc", + "Roswitha", + "Hans-Jürgen", + "Peter", + "Susanne", + "Konstantinos", + "Amer", + "Hermann", + "Tim Sebastian Robert", + "Anja", + "Werner", + "Monika", + "Semih", + "Kazim", + "Susanne", + "Ilhan", + "Markus", + "Marion", + "Andrea", + "Ulf", + "Menno", + "Norbert", + "Heike", + "Bernard Michel Luc", + "Bertrand Pierre", + "Andreas", + "Martin", + "Bernhard", + "Thomas", + "Ludwig Maximilian", + "Michael", + "Eva", + "Peter", + "Jean Michel", + "Roland", + "Stephan Jörg", + "Ralf", + "Stephan", + "Bernhard", + "Peter", + "Katrin", + "Axel", + "Rüdiger", + "Thorsten", + "Heinz", + "Ralf", + "Nadine", + "Achim", + "Christian", + "Thorsten", + "Daniela", + "Tim", + "Vincent", + "Marion", + "Armin", + "Klaus", + "Markus", + "Anita", + "Hakan", + "Christian", + "Rolf", + "Leonie Kristin", + "Patrick", + "Sebastian", + "Florian", + "Felix", + "Erdmann Ferdinand", + "Alfred", + "Holger", + "Andrea", + "Alexandra", + "Jens", + "Oliver", + "Sebastian", + "Marc", + "Jörg", + "Frank", + "Christoph", + "Tobias", + "Leonie", + "Wolfgang", + "Frank", + "Jens Joachim", + "Henning", + "Klaus", + "Frank", + "Sören", + "Inga", + "Janna", + "William Harmens", + "Thomas", + "Harald", + "Yunus", + "Ewald", + "Oliver", + "Christina", + "Jens", + "Anna Malgorzata", + "Vanessa", + "Karin", + "Rasha", + "Julia Christina", + "Peter Ulrich", + "Stefan", + "Natalia", + "Mathias", + "Arno", + "Michael", + "Francois", + "Petra", + "Michael", + "Manfred", + "Markus", + "Sabine", + "Volker", + "Jörg Bernd", + "Robert", + "Jörn", + "Matthias", + "Dietmar", + "Michael", + "Dieter", + "Jens", + "Hans-Joachim", + "Dietmar", + "Philip", + "Hendrik", + "Philipp", + "Jörg", + "Jonas", + "Roman Morten", + "Matthias", + "Markus", + "Thomas", + "Wolf Hendrik", + "Joachim", + "Sonja", + "Alexander", + "Stephan", + "Volker", + "Tim", + "Barbara Sabine Bianca", + "Reinhild", + "Lynn", + "Stefan", + "Britta", + "Joern-Peter", + "Kathrin", + "Cordula", + "Andreas", + "Heike", + "Marco", + "Kerstin", + "Katrin", + "Dan Pinhas Bar", + "Mario", + "Joachim", + "John", + "Jens", + "Hans", + "David", + "Alessandro", + "Sabia", + "Laura", + "Paolo", + "Khadija", + "Christoph", + "Jan-Patrick", + "Nils", + "Michael", + "Ralf", + "Ashok Prasad", + "Armin", + "Mirja", + "Thorsten", + "Mareike", + "Arnd Philipp", + "Dirk", + "Patrick", + "Thomas", + "Martin", + "Rüdiger", + "Ina", + "Apollonia", + "Matthias", + "Michael", + "Samuel Jean-Pierre", + "Hervé", + "Emmanuel", + "Christian", + "Melanie", + "Cathrin", + "Ingo", + "Michael", + "Michael", + "Benedikt", + "Rüdiger", + "Martin", + "Tanja", + "Michael", + "Andreas", + "Tobias", + "Bruno", + "Kshitija", + "Sylvia", + "Guido", + "Denise Angelika Carola", + "Ikenna Jackson", + "Kai", + "Uwe", + "Philipp", + "Florian Nicolai Olaf", + "Jan Philipp", + "Stefan", + "Caspar", + "Annette", + "Djordje", + "Matthias Alexander", + "Sven", + "Stephan", + "Arnd", + "Rüdiger", + "Stephan", + "Peter", + "Jörg", + "Udo", + "Lea Rose", + "Wolfgang", + "Andreas", + "Klaudia", + "Marie-Luise", + "Hans", + "Klaudia", + "Jean-Christophe Gérard Paul", + "Eric Peter", + "Torsten Werner", + "Peter", + "Lars Henning", + "Christina", + "Emil", + "Kurt", + "Walter", + "Michael", + "Sandra", + "Andreas Michael", + "Wolf Hendrik", + "Marc", + "André", + "Philipp", + "Martina", + "Sebastian", + "Jörn", + "Ingo", + "Steffen", + "Stephan", + "Adrian", + "Frank Ralph", + "Trudbert", + "Matthias", + "Tobias", + "Christian", + "Constantin", + "Diana", + "Peter", + "Martin", + "Martina", + "Bianca Susanna", + "Julian", + "Norman", + "Ronald", + "Stephan", + "Harry", + "Frigga-Felicitas", + "Jürgen", + "Patricia", + "Thomas", + "Jens", + "Paul", + "Ola", + "Jörg", + "Renata", + "Sabine", + "Markus", + "Britta", + "Volkmar", + "Jürgen", + "Frank", + "Ronny", + "Nicole", + "Matthias", + "Matthias", + "Hans-Bahne", + "Kersten", + "Ulf", + "Marcus", + "Michael", + "Georges", + "Thomas", + "Alexander", + "Gorden", + "Michael", + "Dirk", + "Jason", + "Torsten", + "Joerg", + "Gunnar", + "Alexandra", + "Joerg", + "Matthias", + "Bettina", + "Karl", + "Andreas", + "Roland", + "Ekhard", + "Andreas", + "Frank", + "Georg", + "Ulrike", + "Katrin", + "Carsten", + "Sabine", + "Jan", + "Corinna", + "Juergen", + "Christian", + "Wolfgang", + "Annette", + "Corinna", + "Eckehard", + "Simone", + "Annette", + "Fabian", + "Ute", + "Martin", + "Carmen", + "Michael", + "Hans-Peter", + "Udo", + "Michaela", + "Heike", + "Marietta", + "Axel", + "Klaus", + "Thomas", + "Mario", + "Kevin", + "Burkhard", + "Sebastian", + "Udo", + "Matthias", + "Mark", + "Tim", + "Thomas", + "Marc", + "Hugo", + "Uwe", + "Klaus", + "Carsten", + "Harald", + "Robert", + "Michael", + "Marc-Oliver", + "Alexander", + "Jens", + "Klaus", + "Simon", + "Emmerich", + "Marcus", + "Stephanie", + "Vittorio", + "Carsten", + "Axel", + "Peter", + "Roberto", + "Jens", + "Clemenz", + "Uwe", + "Alexander", + "Michael", + "Jochen", + "Michael", + "Oliver", + "Claudia", + "Felix", + "Tatiana", + "Karin", + "Teilhard", + "Marc", + "Angela", + "Florian", + "Frank", + "Jens", + "Magnus", + "Leslie Go", + "Johannes", + "Regina", + "Hubertus", + "Joachim", + "Jörg", + "Stefan", + "Alexander", + "Ida", + "Achim", + "Andreas", + "Mathias", + "Doreen", + "Tim", + "Heiko", + "Marco", + "Anouck", + "Marcus", + "Stefanie", + "Birgit", + "Benjamin", + "Jing", + "Francesco", + "Elke", + "Christoph", + "Tilo", + "Philipp", + "Sebastian", + "Steffen", + "Dominik", + "David Perdomo", + "Gaby", + "Silke", + "Philipp", + "Sonja Melanie", + "Kathrin", + "Carsten", + "Elmar", + "Aziz", + "Carsten Daniel", + "Lukas", + "Boris", + "Jochen", + "Dominik Tobias Heinz Rudolf", + "Andreas Michael", + "Markus", + "Bernd", + "Oliver", + "Donat", + "Andreas", + "Mina", + "Klaus Markus", + "Gregor", + "David", + "Ralf", + "Ekaterina", + "Gerald", + "Eduard", + "Vyacheslav Antoliyovych", + "Reinhard", + "Karin", + "Petra", + "Klaus-Jürgen", + "Gudela", + "Rico", + "Peter Uwe", + "Zhiyun", + "Denis", + "Michael", + "Jochen", + "Arnd", + "Michael", + "Andreas", + "Jianshen", + "Ursula", + "Joachim", + "Ralf", + "Martina", + "Jörgen", + "Frank", + "Gerhard", + "Franz", + "Bogumila", + "Karin", + "Charlotte", + "Rainer", + "Bernhard", + "Zeynep Ayse", + "Katharina", + "Franziska", + "Heinrich", + "Han", + "Ulrike", + "Thomas", + "Jochem", + "Annette", + "Friederike", + "Willi", + "Andreas", + "Ingo", + "Johann-Friedrich", + "Richard", + "Johannes", + "Christine", + "Thomas", + "Stefanie", + "Holger", + "Sonja", + "Henrik", + "Kerstin", + "Iris", + "Volker", + "Barbara", + "Olivier", + "Andrea", + "Ingrid", + "Harald", + "Wolfgang", + "Helmut", + "Dirk", + "Hanns Heinrich", + "Monika", + "Nicole", + "Andriy", + "Alfredo", + "Olaf", + "Susanne", + "Anna", + "Ilona", + "Kerstin", + "Dirk", + "Wolfgang", + "Robert", + "Aldona", + "Martin", + "Gerda", + "Claudia", + "Hauke", + "Nancy", + "Ingrid", + "Sebastian", + "Thilo", + "Runa", + "Karin", + "Agnes", + "Jörg", + "Claudia", + "Sebastian", + "Carl-Wilhelm", + "Burkhard", + "Peter", + "Stefanie", + "David", + "Stephanie", + "Ellen", + "Jens", + "Dandy", + "Lia", + "Martin", + "Mathilde", + "Peter", + "Runhao", + "Thomas", + "Gerd", + "Jan", + "Helene", + "Volker", + "Gudrun", + "York", + "Oscar", + "Doris", + "Markus", + "Matthias", + "Karina", + "Cristiana", + "Jörg", + "Stefan", + "Dirk", + "Rolf", + "Andreas", + "Sebastian", + "Arndt", + "Nicole", + "Robert", + "Caprice", + "Nicola", + "Stephan", + "Claudia", + "Vladimir", + "Otto", + "Winrich", + "Sylke", + "Holger", + "Roland", + "Harald", + "Seyed Mohammad", + "Brigitte", + "Christine", + "Horand", + "Nevin", + "Levent", + "Elisabeth", + "Stella", + "Julius", + "Ekkehard", + "Michael", + "Wolf Christian", + "Rupert", + "Carsten", + "Hans Günter", + "Peter", + "Hasan Ali", + "Zeynep", + "Biljana", + "Florian", + "Michael", + "Angelika", + "Norbert", + "Thomas", + "Katja", + "Nicholas", + "Stephan", + "Hans-Jürgen", + "Georg", + "Rebekka", + "Ulrich", + "Michael", + "Stefan", + "Margarete", + "Frank", + "Michael", + "Reinhard", + "Philipp", + "Sabrina", + "Helga", + "Dieter", + "Elisabeth", + "Thomas", + "Peter", + "Angela", + "Alisa", + "Kirsten", + "Oda", + "Yuyi", + "Erich", + "Annette", + "Sebastian", + "Andreas Roland", + "Barbara", + "Winfried", + "Markus", + "Sabine", + "Jürgen", + "Alexander", + "Miron", + "Lev", + "Raphaela", + "Matthias", + "Anja", + "Sibille", + "Helmut", + "Richard", + "Sarah Julia", + "Lena Eleonore", + "Maja Bernadette", + "Benjamin", + "Jörn", + "Thomas", + "Yi", + "Natthinee", + "Sonia Susanna", + "Florian Peter", + "Manuel", + "Franziska Luise Dorothea", + "Moritz", + "Melanie", + "Lars", + "Dirk", + "Volker", + "Ralf", + "Karlheinz", + "Güven", + "Serge", + "Jörn Gerald", + "Patrick", + "Patrizia Nathalie", + "Karsten", + "Christian", + "Lars", + "Corentin Francis Louis", + "Léonie", + "Peter", + "Frank", + "Anja", + "Zvonko", + "Andreas", + "Marc", + "Ronald", + "Christoph", + "Mario", + "Georg", + "Katrin", + "Jörg", + "Manfred", + "Erwin", + "Christian", + "Clemens", + "Michael", + "Karl-Josef", + "Andreas", + "Hans-Dieter Hermann", + "Nuno", + "Paolo", + "Frank Graham", + "Usha Mary", + "Ros-Marie", + "Peter-Heinz", + "Klaus", + "Johanna", + "George", + "Anne Ruth", + "Yves Jean-Marie", + "Antoine Rémi Francois", + "Marco Giovanni", + "Nicholas Rory", + "Alla", + "Jörg", + "Robin", + "Petra", + "Andreas", + "Daniel", + "Angela", + "Frank", + "Thomas", + "Andrea", + "Rainer", + "Reinhard", + "Johanna", + "Frank Jean-Claude", + "Marie-Christine", + "Jan", + "Klaus", + "Frank", + "Dirk", + "Stefan", + "Sönke", + "Bert Tomas", + "Ulrike Stefanie", + "Patrick", + "Manfred", + "Florian", + "Thomas", + "Nathalie", + "Anke", + "Guido", + "Christoph", + "Gudrun", + "Stefan", + "Andreas", + "Guido", + "Thorben", + "Joachim", + "Thorsten", + "Waltraud", + "Stefan", + "Marcel", + "Katrin", + "Niels Jörn", + "Bernhard", + "Roswitha", + "Markus", + "Marlena", + "Thomas", + "Stefan", + "Thi Thuy Huong", + "Franz", + "Georg", + "Anita", + "Theresia", + "Gabriele", + "Oliver", + "Andreas", + "Jan", + "Svetlana", + "Joern Peter", + "Matthias", + "Maria Teresa", + "Tobias", + "Katja", + "Peter", + "Kerstin", + "Kathrin", + "Frank", + "Martin", + "Matthias", + "Sami", + "Raymund", + "Daniela", + "Martin", + "Niki", + "Marco", + "Michael", + "Frederik", + "Johan", + "Wolfgang", + "Ingo", + "Franz", + "Andreas", + "Martin", + "Josef", + "Uwe Jens", + "Lukas", + "Ulrich", + "Dennis", + "Münür", + "Gerd", + "Jörg", + "Roman", + "Alexander", + "Jessica", + "Stephan", + "Sebastian", + "Boris", + "Christopher", + "Benjamin", + "Stephan", + "Michael", + "Andre", + "Gerd", + "Peter", + "Thomas", + "Tobias", + "Dietmar", + "Barbaros", + "Markus", + "Thorsten", + "Inka", + "Arne", + "Andreas", + "Mikael", + "Friedrich", + "Torsten", + "Alexander", + "Murat", + "Ursula", + "Thomas", + "Yvonne", + "Steffen", + "Simone", + "Laura", + "Christian", + "Ingrid", + "Kerstin", + "Kyriaki", + "Robert", + "Christian", + "Jörg", + "Sebastian", + "Cathérine", + "Fabian", + "Dirk", + "Axel", + "Robin Billy", + "Michael", + "Eleonore", + "Heinz Nikolaus", + "Ilona", + "Hildegard", + "Anselm Werner Aretin", + "Gunnar", + "Peter", + "Ashwin", + "Dietmar", + "Mathias", + "Volker", + "Ina", + "Andreas", + "Esther", + "Lena", + "Andreas", + "Matthias", + "Michael", + "Daniel Christian", + "Hans Helmut", + "Patrick", + "Stephan Manuel", + "Eva", + "Stephan", + "Tassilo", + "Timo Johannes Georg", + "Frank", + "Christof", + "Volker", + "Martin Arnold Benedikt", + "Matthias", + "David Roberto", + "Stefan", + "Stephanie", + "Philip", + "Evelyn", + "Franz Xaver", + "Eva-Maria", + "Katharina Gisela", + "Armin", + "Hans-Dieter", + "Markus", + "Rafael", + "Steffen", + "Claude", + "Christiane", + "Markus", + "Melanie", + "Matthias", + "Oliver", + "Stella", + "Sadik", + "Stefan", + "Erol", + "Klaus", + "Marco", + "Guido", + "Swen", + "Thomas", + "Lars", + "Erkan", + "Kai", + "Christian", + "André", + "Stefan", + "Stefanie", + "Guillaume", + "Allen David", + "Marco", + "Edgar", + "Guido", + "Thomas", + "Alexander", + "Jean-Philippe", + "Jörg", + "Kersten Paul", + "Dr. Marc Thorsten", + "Winand Will", + "Peter Hans", + "Harald", + "Ömer", + "Klaus", + "Erika", + "Nuno Filipe", + "Michael", + "Jörg", + "Jan", + "Aleksandra", + "Holger", + "Markus", + "Stefan", + "Jürgen", + "Regis", + "Jonas", + "Marcus", + "Bernd", + "Patxi Xabier", + "Alexander", + "José Luis", + "Hajo Franziskus", + "Ilya", + "Nils", + "Marion", + "Gabriele", + "Michael", + "Sebastian", + "Simona Lucia", + "Bernd", + "Frank", + "Andreas", + "Ferdinand Nikolaus", + "Leif Christian", + "Sebastian", + "Benjamin Michael", + "Johannes", + "Thorsten", + "Christian", + "Alexander Volkmar", + "Joachim", + "Christian", + "Ibrahim", + "Karsten", + "Michael Georg Franz", + "Andreas", + "Florian", + "Wim", + "Miguel", + "Joachim Hviid", + "Christian", + "Constantin", + "Volker", + "Eike Johannes", + "Ulf", + "Felipe Álvaro", + "Jochen", + "Tobias", + "Frank", + "Hubert", + "Günther Willi Otto", + "Marc", + "Steffen-Daniel", + "André", + "Thomas", + "Dominik Michael", + "Xaver", + "Frank Ralf", + "Gunter", + "Markus", + "Reiner", + "Monika", + "Cornelia", + "Gerd", + "Bernhard", + "Henrike", + "Silke", + "Thomas", + "Günter", + "Stefan", + "Uwe", + "Gerd", + "Klaus-Dieter", + "Karsten", + "Peter", + "Jörg", + "Erwin", + "Klaus", + "Carola", + "Peter", + "Markus", + "Jörg", + "Clarissa Ilse", + "Katharina", + "Alexander Heinz", + "Dorothee Kordia", + "Stephan", + "Uwe", + "Jakob", + "Michael", + "Rainer Werner", + "Karsten", + "Andreas", + "Dirk", + "Thomas", + "Timo", + "Berthold", + "Andreas", + "Frank", + "Johannes", + "Christoph Alexander", + "Klaus Jürgen", + "Susanne", + "Jörg", + "Reiner", + "Thomas", + "Wolfgang", + "Jürgen", + "Frederick", + "Nils", + "Oliver", + "Torsten Patrik", + "Gunther", + "Jörn", + "Stephan Manfred", + "Olaf", + "Stefan", + "Michael", + "Peter Franz", + "Petra", + "Eileen", + "Clemens", + "Lars", + "Alexander", + "Judith", + "Marcus", + "Nicole", + "Bernhard", + "Ernst", + "Christoph", + "Maik", + "Markus", + "Matthias", + "Isolde", + "José Luis Blanco", + "Anja", + "Robert", + "Ellen Klara", + "Anette", + "Tim", + "Tilo", + "Dagmar Maria", + "Oliver", + "Karl Christoph", + "Lutz Axel", + "Helmut", + "Stephanie-Manina", + "Anna Sophie", + "Marlen", + "Laura", + "Leo", + "Thorsten", + "Markus Jürgen", + "Patxi", + "Kai", + "Roland", + "François-Xavier", + "Babette", + "Aldo", + "Josef", + "Hans-Jürgen", + "Jürgen", + "Michael", + "Uwe", + "Franz von Sales", + "Frank", + "Holger", + "Christian", + "Markus", + "Andreas", + "Stephan", + "Marc", + "Ulrich", + "Herbert", + "Christian", + "Andreas Heinrich", + "Jan Markus", + "Stefan", + "Georg", + "Roland", + "Matthias", + "Bernd", + "Sebastian", + "Arnd", + "Kirsten", + "Frank", + "Maciej Eugeniusz", + "Mehmet Yekhan", + "Hubert", + "Alexander", + "Yunus", + "Elsa", + "Matthias", + "Fabian Phillip Julien", + "Franz", + "Georg", + "Michael", + "Christian", + "Deniz", + "Christian", + "Martin", + "Johannes Franz", + "Mathias", + "Christian", + "Uwe", + "Nadine", + "Harald", + "Morten", + "Martin Aagaard", + "Frederik Willem Arend Leonard", + "Rainer", + "Junfei (Adam)", + "Matthias", + "Mario", + "Martin", + "Arno", + "Arne Michael", + "Dietmar", + "Thomas", + "Jens", + "Ralf", + "Alfredo Antonio", + "Antje", + "Ralf", + "Karl-Thomas", + "Jochen", + "José", + "Nils", + "Carina", + "Michael", + "André", + "Alexander", + "Heiko", + "Thomas", + "Michael", + "Jörg", + "Dieter", + "Andreas", + "Kai", + "Nils Wolfgang", + "Oliver Thorsten", + "Thomas", + "Albane Elisabeth Pierrette Christine", + "Enea", + "Martin", + "Martina", + "Lars", + "Ali Hakan", + "Sevgi", + "Siegbert", + "Jörg Thomas", + "Ronald", + "Carsten", + "Georg Franz Wilhelm", + "Peter", + "Richard", + "Arne", + "Holger", + "Erwin", + "Frank", + "Nikolai", + "Karl-Heinz", + "Peter Sebastian", + "Dagmar", + "Hans", + "Christoph", + "Bernhard", + "Georg", + "Eberhard", + "Ralf", + "Philipp", + "Simon", + "Klaus", + "Marco", + "Verena", + "Joachim", + "Hansjörg", + "Daniela", + "Alexander", + "Volker", + "Tilman", + "Isabelle", + "Thorsten", + "Florian", + "Joachim", + "Bernd", + "Kristof", + "Thomas", + "Alexander", + "Alexander", + "Stefan", + "Anke", + "Wolfgang", + "Michael", + "Veronika", + "Ulrich", + "Zofia", + "Armin", + "Vera", + "Karsten", + "Volker", + "Klaus", + "Mike", + "Sören", + "Lara Marie", + "Wiebke", + "Ulrich", + "Michael", + "Klaus", + "Peter", + "Lars", + "Frank", + "Uwe", + "Ottmar", + "Stefan", + "Silke", + "Hella", + "Volker", + "Olaf", + "Dirk Heinrich", + "Ulrich Franz", + "Sebastian", + "Peter", + "Stephan", + "Arnd", + "Bernd", + "Florian", + "Michael Thomas", + "Frank", + "Andreas Hilmar", + "Ulf Jakob Stigson", + "Ines Margarethe", + "Helene", + "Rene", + "Roland", + "Gerhard", + "Philipp", + "Mike", + "Klaus", + "Wladislaw", + "Stefan", + "Henric", + "Jürgen", + "Torben", + "Carlo", + "Heinrich-Ernst", + "Hendrik Hubertus", + "Dennis", + "Thomas", + "Stephan", + "Stefanie", + "Jörg", + "Christoph", + "Heinrich", + "Johann Peter", + "Claudia", + "Jürgen", + "Andrea Ferreira", + "Christian", + "Claus", + "Thorsten", + "Johann-Philipp", + "Eva-Maria", + "Gerald", + "Peter", + "Rupert", + "Evgeniy", + "Michael Holger", + "Stephan", + "Dunja", + "Ralf", + "Hendrik", + "Leonie Anna", + "Thomas", + "Peter", + "Wolfgang", + "Eberhard", + "Roman", + "Matthias", + "Constantin", + "Malte", + "Christian", + "Christoph", + "Denny", + "René", + "Bruno", + "Patrick", + "Willy-Sebastian", + "Stefan", + "Claude Laurent", + "Philip", + "Bernd", + "Claudia", + "Matthias", + "Andre", + "Johannes", + "Frank", + "Kai Steffen", + "Stephan Andreas Wilhelm", + "Ilya Taka", + "Christian", + "Markus", + "Rainer", + "Thomas", + "Wolfgang", + "Eckhard", + "Enno", + "Markus", + "Clemens", + "Per Markus", + "Axel", + "Thomas-Garry", + "Bernhard", + "Stefanie", + "Arthur", + "Stefan", + "Michael", + "Laurent", + "Britta", + "Achim", + "Maximilian", + "Bernhard", + "Thomas", + "François Luc", + "Lüder", + "Alexander", + "Stefan", + "Sebastian", + "Martin", + "Ralf", + "Jens", + "Silvia", + "Mariam", + "Heinz Stefan", + "Erhard", + "Achim", + "Stephanie", + "Till", + "Benedikt Nikolas", + "Angelika", + "Ulrich", + "Martin", + "Dirk", + "Cornelia Simone", + "Mathias", + "Uwe", + "Günter", + "Maik", + "Anne-Laure", + "Maria", + "Egon", + "Dirk", + "Martin", + "Andreas", + "Marc", + "Oliver", + "Eduardo-Jansen", + "Imke", + "John", + "Michael", + "Jens Tobias", + "Malte", + "Stefan", + "Benjamin", + "Thomas", + "Nathan", + "Carsten Dirk", + "Dennis", + "Björn", + "Alexander", + "Stefan", + "Johannes", + "Marius", + "Hi-Zin", + "Sascha", + "Marco", + "Camelo", + "Jan", + "Ralf", + "Olaf", + "Tanja", + "Rüdiger", + "Jörg", + "Peter William", + "Wolf Dieter", + "Reiner", + "Wolfgang", + "Kabella", + "Katharina Johanna genannt Käthe", + "Steffen", + "André", + "Johanna", + "René", + "Daniela", + "Benjamin", + "Tilo T.", + "Matthias", + "Hasan", + "Frank-Michael", + "Steven", + "Alexander", + "Zeno Wilhelm", + "Harald", + "Andreas", + "Alexander", + "Martin", + "Frank", + "Jaap", + "Petra", + "Sandra", + "Holger", + "Markus", + "Matthias", + "Bernhard", + "Markus", + "Christian", + "Gabriele", + "Werner", + "Antra", + "Manfred", + "Cemil", + "Tobias", + "Olaf", + "Lena", + "Fabian", + "Nils-David", + "Jochen", + "Wolfgang Nicholas", + "Matthias", + "Bastian", + "Tobias", + "Roland", + "Uwe", + "Danail Ivanov", + "Gabriel", + "Barbara", + "Frauke", + "Kai", + "Thomas", + "Arne", + "Johannes Kristian Thomas", + "Markus Ludwig", + "Sarah", + "Marcel", + "Dirk", + "Heiko", + "Frank", + "Leonie", + "Daniela", + "Maja", + "Inge", + "Harald", + "Stefan G.", + "Munkhzul", + "Alexander", + "Klaus-Gunter", + "Regina", + "Andreas", + "Jens", + "Joel", + "Christian", + "Felix", + "Thomas", + "Christian", + "Stefan", + "Sascha", + "Stefan", + "Enrico", + "Tim", + "Christoph Gilg Reinhard Jürgen", + "Andreas Ingo", + "Ralf", + "Matthias", + "Thomas", + "Thomas", + "Björn", + "Ana Maria", + "Björn", + "Dieter Helmut", + "Silvio", + "Manfred", + "Stefan", + "Malte Kristian", + "Damian", + "Stefan", + "Susanne", + "Lutz", + "Thorsten", + "Torsten", + "Achim", + "Ralf", + "Haluk", + "Dirk", + "Thomas", + "Michael", + "Martin", + "Kai-Uwe", + "AxeL", + "Thomas", + "Eckhardt", + "Fritz", + "Joachim", + "Rainer", + "René", + "John Gerard", + "Peer", + "Jens Michael", + "Katrin", + "Christian", + "Alexandra", + "Heike", + "Vanessa", + "Hugo", + "Michaela", + "Andrejs", + "Niels", + "Peter", + "Olaf", + "Friedrich", + "Andreas", + "Christina", + "Klaus", + "Rainer", + "Holger", + "Philip", + "Rainer", + "Karsten", + "Sebastian", + "Arne", + "Thomas", + "Martin", + "Mario", + "Jörg", + "Hans-Ludwig", + "Gunnar-Sönke", + "Wolfgang", + "Mijo", + "Johann", + "Steffen", + "Axel", + "Karl-Friedrich", + "Herbert", + "Heike", + "Alexander", + "Wolfgang", + "Alexander", + "Karl-Heinz", + "Thorsten", + "Martin", + "Peter", + "Anne-Karina", + "Jan", + "Robert", + "Jörg", + "Mike Jens", + "Tobias", + "Oliver", + "Jeaninne", + "Daniel", + "Kjell", + "José Javier", + "Sebastian", + "Rolf", + "Christian", + "Friedemann", + "Frank", + "Anett", + "Tobias Benjamin", + "Heinz-Jürgen Werner", + "Patricia", + "Alexander", + "Christhard", + "Marion", + "Kai-Uwe", + "Susanne", + "Michael", + "Alexander", + "Dirk", + "Thomas", + "Johannes Christoph", + "Gernot Gerd", + "Roland", + "Christian Peter", + "Jürgen", + "Jochen", + "Christoph", + "Christian", + "Udo", + "Marc", + "Jens Alexander", + "Antje", + "Dirk", + "Torsten", + "Frank", + "Thomas", + "Torsten", + "Mihiar", + "Robert", + "Markus", + "Thomas", + "Ernst-Michael", + "Christoph", + "Melanie", + "Bengt-Olof Johannes", + "Nicole", + "Mathias", + "Anja", + "Jens-Dirk", + "Daniel", + "Anton", + "Knut", + "Jörg", + "Olaf", + "Stefan", + "Ulrich", + "Hartmut", + "Wolfgang", + "Harald", + "Marie", + "Urs", + "Mats Niklas", + "Matthias", + "Timo", + "Ulrich", + "Dominik", + "Rüdiger", + "Tim Frank", + "Andreas", + "Edmund", + "Stephan", + "Ramin", + "Marco", + "Burkhard", + "Andreas", + "Heiko", + "Peter-Michael", + "Reena", + "Michael", + "Ulrike", + "Björn", + "Gunnar", + "Nicolaus", + "Martin Norbert", + "Thorsten", + "Benedikt", + "Thomas", + "Fabian", + "Juliane", + "Elke", + "Oliver", + "Julia", + "Beatrice", + "Tony", + "Stephan", + "Axel", + "Henning", + "Hans-Jaan", + "Thorsten", + "Alexander", + "Frank Karl", + "Rainer", + "Andreas", + "Ansgar", + "Sven", + "Meik", + "Carolin", + "Thomas", + "Ralf Peter", + "Roberto", + "Jens", + "Harald", + "Bastian", + "Reinhold", + "Christopher", + "Mathias", + "Bianka", + "Martina", + "Michael", + "Dirk", + "Werner", + "Frank", + "Sabine", + "Sabine", + "Pascal", + "Karl-Heinz", + "Thomas", + "Michaela", + "Uwe", + "Zsolt", + "Joerg", + "Stefan", + "Christian", + "Andreas", + "Jürgen", + "Daniel", + "Michael", + "Christian", + "Karl", + "Jürgen", + "Antonie", + "Kai-Eberhard", + "Johannes", + "Dirk", + "Christian", + "Wolfgang", + "Bernd", + "Axel", + "Alexander", + "Claus", + "Klaus", + "Frank", + "Thorsten", + "Stefan", + "Dietmar", + "Jörg", + "Yves", + "Andreas", + "Stephan", + "Martin", + "Norbert", + "Klaus", + "Ralf P.", + "Beat", + "Horst-J", + "Norbert", + "Jan-Erik", + "Nina", + "Henning", + "Gerhard", + "Michael", + "Susanne", + "Joos", + "Eckard", + "Tim Alexander", + "Klaus", + "Hardi", + "Andreas", + "Jochen", + "Cedrik", + "Veronika", + "Robert", + "Annette", + "Axel", + "Michael", + "Thomas", + "Peter", + "Georg", + "Jürgen", + "Michael", + "Yves", + "Peter", + "Christian", + "Thomas Werner", + "Georg", + "Michael", + "Hermann", + "Aymeric", + "Sabine", + "Jelena", + "Kathy", + "Robert", + "Rainer", + "Peter", + "Hanna", + "Susanne", + "Michael", + "Rudolf", + "Saar", + "Judith", + "Matthias", + "Martin", + "Harald", + "Eva", + "Achim", + "Ingy", + "Peter Chi Shun", + "Henning", + "Christopher", + "Roland", + "Meiko", + "Dirk Leonidas", + "Heiko Thomas", + "Steffen", + "Martin", + "Georg", + "Mesut", + "Margherita", + "Jan-Michael", + "Heike", + "Jürgen", + "Eva-Maria", + "Markus", + "Markus", + "Thomas", + "Jürgen", + "Axel", + "Eva", + "Ingo", + "Thilo", + "Michael", + "Vlasta", + "Christof", + "Matthias", + "Detlef", + "Thomas", + "Nils", + "Kerstin", + "André", + "Matthias", + "Patrick", + "Jörg", + "Jörg", + "Peter", + "Stephan", + "Martin", + "Torsten", + "Beatrix", + "Ariane", + "Jens", + "Bernhard", + "Felix", + "Carsten", + "Hildegard", + "Nikolaus", + "Christian", + "Ted Oliver", + "Brigitta", + "David", + "Jan", + "Martin", + "Astrid", + "Marco", + "Katja", + "Bernhard", + "Michael", + "Benedikt", + "Jürgen Thomas", + "Jochen", + "Darleen", + "Gernot", + "Änne", + "Elisabeth", + "Ilka Alexandra", + "David", + "Christoph Albert", + "Michael", + "Guido", + "Maren", + "Laura", + "Andreas", + "Sascha", + "Thomas", + "Michael", + "Michael Sean", + "Uta", + "Frederic", + "Kevin", + "Stefan", + "Tobias", + "Christoph", + "Alexandru", + "Armin", + "Edgar", + "Eric Sandy", + "Stefan", + "Corinna", + "Martin", + "Uwe", + "Achim", + "Nadja", + "Jens", + "Dirk-Oliver", + "Katja", + "Stefan", + "Andreas", + "Ilona", + "Daniel", + "Gerrit", + "Wolfgang", + "Clemens", + "Otger", + "Thomas", + "Gabriele", + "Christoph", + "Stephanie", + "Ulrich", + "Rolf Uwe", + "Dirk", + "Armin", + "Malte", + "Edgar", + "Zvezdana", + "Michael", + "Jan Philipp", + "Markus", + "Ulrike", + "Kunal", + "Udo", + "Torsten", + "Malgorzata", + "Frank", + "Dirk", + "Ingo", + "Gregor Karl", + "Klaus", + "Thomas", + "Frank", + "Harald", + "Stephan", + "Friederike", + "Christian", + "Alexander", + "Sandrina", + "Markus", + "Thorsten", + "Nicole", + "Silvio", + "Ingo", + "Rabindra", + "Ulrich", + "Markus", + "Ralf", + "Jürgen", + "Michael", + "Thomas", + "Maik", + "Roland", + "Alexander", + "Friedrich", + "Jens", + "Timo", + "Phillip", + "Jennifer", + "Susanne", + "Holger", + "Gerd", + "Mike", + "Eike", + "Vitali", + "Roland", + "Frank", + "Florian", + "Christophe", + "Dirk", + "Karl Göran Gunnar", + "Christian", + "Daniel Carsten", + "Nina Susan", + "Juraj", + "Normen", + "Heinz", + "Florian", + "Andrea", + "Susanne", + "Christian", + "Ludwig", + "Dirk", + "Stefan", + "Frank", + "Karsten", + "Gabriele", + "Jens", + "Stephan", + "Erik", + "Lars", + "Thomas", + "Michael", + "Markus", + "Andree", + "Bart", + "Karl-Heinz", + "Gert", + "Harald", + "Thomas", + "Elmar", + "Michael", + "Evgenij", + "Tilmann", + "Kemal", + "Carsten", + "Heiko", + "Dirk", + "Paulo", + "Marten", + "Thomas", + "Marie-Cecil", + "Steffen", + "Alexander", + "Volker", + "Frederick", + "Frank", + "Carsten", + "Mario", + "Hardy", + "Christian", + "Stefan", + "Dietmar", + "Angelika", + "Michael", + "Thorsten", + "Patricia", + "Stephan", + "Frank", + "Alexander", + "Stephan", + "Jörg Peter Eugen", + "Sandra", + "Anja", + "Carsten", + "Karsten", + "Markus", + "Karl-Peter", + "Holger Hans Walther", + "Christian Harald", + "Karl-Heinz", + "Hendrik", + "Magdalena", + "Mathis", + "Joaquin", + "Matthias", + "Nigel", + "Paul", + "Thomas", + "Mark", + "David Anthony", + "Jacob Niklas", + "Russell James", + "Mathias", + "Michael William Maxwell", + "Richard James", + "Terri Louise", + "Adrian", + "Edward Alfred Dirk", + "Robert", + "Frank", + "Javier Andres", + "Richard", + "Matthew John", + "Heinz", + "Peter Hubert", + "Andree", + "Julian Francis", + "Dietrich", + "Viral", + "Sara", + "Frank", + "Matthew Alan", + "Christian", + "Lucy Margaret", + "Eva-Maria", + "Christina", + "Kostas", + "David Michael", + "Martina", + "Moritz", + "Julian Philipp", + "Ulf", + "Martin", + "Andreas", + "Thomas", + "Guido", + "Gunhild", + "Judith Grace", + "Madlen", + "Maximilian", + "Astrid", + "Carsten", + "Sebastian", + "Joaquín", + "Hans Jörg", + "Jade", + "Matthew", + "Kirsten", + "Anthony", + "Susan", + "Judith", + "Klaus", + "Andrew Peter", + "Chris", + "Helen Wendy", + "Barbara", + "Sarah", + "Simon Mark", + "Dominik", + "Olaf", + "Emma", + "Oliver", + "Bernd", + "Victoria", + "Sarah Louise", + "Gerd Klemens August", + "Bernd", + "Myriam", + "Bengt-Olof", + "Kai", + "Franziska", + "Isalyne", + "Stéphane", + "Laurent Georg", + "Klaus", + "Christoph", + "Jürgen", + "Florian", + "Peter", + "Andreas", + "Clement", + "Roland", + "Jochen", + "Rainer", + "Dieter", + "Jochen", + "Joachim", + "Mike", + "Sven", + "Thomas", + "Philipp", + "Reinhold Maximilian", + "Tobias", + "Sascha", + "Franz", + "Bernd", + "Felicia", + "Daniel", + "Michaela", + "Helge", + "Özcan", + "Ivica", + "Christoph", + "Chris", + "Peter", + "Andreas", + "Thomas", + "Alexander", + "Boris", + "Ralf", + "Lars", + "Matthias", + "Rauli", + "Petru-Catalin", + "Wilhelm", + "Heino Alexander", + "Mark", + "René", + "Thomas", + "Benjamin", + "Rudolf", + "Hans-Jürgen", + "Sascha", + "Carsten", + "Clément", + "Jan", + "Christian", + "Tatjana", + "Mirco", + "Andreas", + "Jana Gertrud", + "Erika", + "Jochen", + "Tim", + "Timo", + "Gunther", + "Pablo Omar", + "Michael", + "Gunnar", + "Ralph", + "Dirk", + "Lars", + "Markus", + "Jochen", + "Christian Werner Hans", + "Peter", + "Stephan Josef", + "Lutz", + "Cemal", + "Steven", + "Dirk", + "Wolfgang", + "Joachim", + "Gerhard", + "Ralf", + "Jens", + "Daniel", + "Herbert", + "Kuno", + "Thomas", + "Klaus", + "Heino", + "Daniel", + "Gisela", + "Hakan", + "Andreas", + "Sven", + "Robert", + "Sascha", + "Christian", + "Eduardo", + "Maik", + "Matthias", + "Reiner", + "Frank", + "Stephan", + "Arnd", + "André", + "Stefan", + "Martin", + "Laurenz", + "Guntram", + "Arnd", + "Stefanie", + "Dirk", + "Mirko", + "Oliver", + "Anja", + "Ibrahim", + "Clemens", + "Rainer Bernd", + "Thomas", + "Frank", + "Ralf", + "Michael", + "Bernd", + "Steffen", + "Sebastian", + "Daniel", + "Olaf", + "Oliver", + "Frank", + "Stefan Toni", + "Matthias", + "Marc", + "Cathrin", + "Matthias", + "Daniel", + "Meik", + "Vlasta", + "Sina", + "Richard Wolfgang", + "Marc", + "Christopher", + "Stephan", + "Oliver", + "Arvid Tristram", + "Marlies", + "Frederic", + "Stephan", + "Frank", + "Benjamin", + "Antonio Roberto", + "Christian", + "Klaus", + "Wolfgang", + "Alexandra", + "Michael", + "Christian", + "Horst", + "Mathias", + "Karsten", + "Martin", + "Darcy", + "Catharina", + "Michael", + "Kathrin", + "Steffen", + "Martin", + "Robert", + "Ralf", + "Lutz", + "Thomas Christian", + "Markus Johannes", + "Hubert", + "Ingrun-Ulla", + "Ralph", + "Thomas", + "Berend", + "Thorsten", + "Jörn", + "Jesko", + "Hartmut", + "Thomas", + "Josef", + "Alfred", + "Karlheinz", + "Manfred", + "Christian", + "Christian", + "Egon", + "Achim", + "Oliver", + "Gunnar", + "Clemens", + "Björn", + "Stefan", + "Thomas", + "Wolfgang", + "Philip", + "Stefan", + "Uwe", + "Markus", + "Roman", + "Arne", + "Abdallah Fawzi", + "Carsten", + "Christian", + "Karl", + "Christiane", + "Dirk", + "Rainer", + "Olaf", + "Elke", + "Gernot", + "Thomas", + "Arno", + "Astrid", + "Martin", + "Lars", + "Stefan", + "Michael", + "Wai Fong", + "Jutta", + "Ralf", + "Klaus", + "Marzena", + "Rolf", + "Manfred", + "Hauke", + "Hubert", + "Marcus", + "Silke Katharina", + "Arnd", + "Marcus Gerhard", + "Andrea", + "Thomas", + "Kai", + "Imelda", + "Patrik Andreas", + "Helge", + "Andreas", + "Dr. Michael", + "Hildegard", + "Klaus", + "Oliver", + "Ludwig", + "Dirk", + "Vassilia", + "Günther", + "Cornelius", + "Michael", + "Frank", + "Dirk", + "Jens", + "Olaf", + "Henri", + "Ines", + "Stephan Joachim", + "Simon", + "Oliver", + "Nils", + "Phillip", + "Thorsten", + "Áine", + "Lars", + "Matthias", + "Günter", + "Jörg", + "Ulrich", + "Peter", + "Kerstin", + "Matthias", + "Albin", + "Alexander", + "Gesine", + "Madelene Maria Helene", + "Annette", + "Jens", + "Andreas", + "Florian", + "Achim", + "Werner", + "Sigmund", + "Florian", + "Katharina Kiran", + "Shaminder", + "Thorsten", + "Silvie", + "Ute", + "Andreas-Michael", + "Sascha", + "Bianca", + "Markus", + "Rainer", + "Daniel", + "Gabriele", + "Stephan", + "Markus", + "Artur", + "Jano", + "Will", + "Anica", + "Hauke", + "André", + "Nicole", + "Peter", + "Marc Georg", + "Jochen", + "Simona", + "Christa", + "Andreas", + "Hendrik", + "Michael", + "Erik", + "Michael", + "Ursula", + "Jürgen", + "Aaron", + "Christian", + "Erik", + "Friedrich", + "Waldemar", + "Bernd", + "Stefan", + "Manfred Josef", + "Michael", + "Niko", + "Mark", + "Tobias", + "Sven", + "Christian", + "Michael", + "Birgit", + "Dirk", + "Stefan", + "Alexander", + "Günter", + "Joachim", + "Hubert", + "Frank", + "Wybcke", + "Amely", + "Elen", + "Julian", + "Friedrich-Christian", + "Albin Heinz", + "Luzian", + "Uwe", + "Michael", + "Christian", + "Volker", + "Meiko", + "Nicola", + "Roman", + "Oliver", + "Joachim", + "Antje", + "Thomas", + "Aneka", + "Anika", + "Benjamin", + "Thomas", + "Robert", + "Lukáš", + "Martin", + "Annett", + "Birgit", + "Stefan", + "Sascha", + "Sirko", + "Hugo Phillip", + "Michael", + "Mathias", + "Heinz-Hermann", + "Sebastian", + "Sandra", + "Patrick", + "Dietrich", + "Olaf", + "Peter", + "Stefan", + "Matthias", + "Susanne", + "Niels", + "Normen", + "Michael", + "Michael", + "Stefan", + "Gunnar", + "Cerstin", + "Martin", + "André", + "Andre Josef", + "Isabelle", + "Melanie", + "Frank", + "Ralf", + "Christian", + "Rainer", + "Stephan", + "Carsten", + "Uwe", + "Fabian", + "Dirk Günter", + "Meno", + "Ulrich", + "Hardy", + "Stefan", + "Jürgen Hans Hermann", + "Oliver Michael", + "Florian", + "Christoph", + "Axel", + "Annekatrin", + "Patrick", + "Isabel", + "Stefan", + "Wilfried", + "Christian", + "Ingmar Hellmut", + "Arnaud", + "Jochen", + "Patricia", + "Christoph", + "Marco", + "Simon", + "Rasmus", + "Timo Alexander", + "Jörn", + "Klaus", + "Christoph", + "Guido", + "Christopher", + "Robin", + "Oliver", + "Hermann", + "Tim", + "Thomas", + "Berthold Josef", + "Dieter", + "Michael", + "Arnd", + "Peter", + "Tim", + "Christoph", + "André", + "Sigmund", + "Thorsten", + "Karsten", + "Thomas", + "Tarik", + "David", + "Erik", + "Jürgen", + "Florian", + "Christian", + "Sybille", + "Nina Daniela", + "Mathias", + "Sebastian", + "Karsten Rudolf", + "Jürgen", + "Hella", + "Tim", + "Jan-Peter", + "Johanna Elisabeth Ursula", + "Friederike Juliane", + "Nanna", + "Peter", + "Ulrike", + "Christian", + "Thorsten", + "Thomas", + "Heinz-Willi", + "Hartmut", + "Andreas", + "Heinrich", + "Tobias Fabian", + "Thomas", + "Ralf", + "Dagmar", + "Florian", + "Thorsten", + "Stefan", + "Matthias F.", + "Kathrin", + "Doreen", + "Holger", + "Dominik", + "Stefan", + "Carsten", + "Michael Jakob", + "Martin", + "Frank", + "Timo", + "Armin", + "Mike", + "Claudia", + "Rüdiger", + "Bernhard", + "Rainer", + "Andreas", + "Florens", + "Klaus", + "Martin", + "Thomas", + "Christian", + "Frank", + "Rupert", + "Marion", + "Julia", + "Juan Ramon", + "Michael", + "Jörg", + "Michael", + "Sven", + "Andreas", + "Annette", + "Richard", + "Falk", + "Manina Juliette", + "Claudia", + "Wolfgang", + "Marianne", + "Olaf", + "Franz", + "Tobias Jilanie", + "Bernhard", + "Peter", + "Viola", + "Tim", + "Yannick", + "Torsten", + "Uwe", + "Marko", + "Shahin", + "Sandy", + "Sergej", + "Shinobu", + "Franziska", + "Stefan", + "Mark", + "Klaus", + "Mehran", + "Elitsa", + "Joachim", + "Tobias", + "Evi", + "Gerd", + "Markus Stefan", + "Heino", + "Thomas", + "John", + "Jens Christian", + "Manuela", + "Heinz", + "Roland", + "Andreas", + "Annette", + "Tobias", + "Markus", + "Nicole", + "Alfons Johann", + "Markus", + "Valentina", + "Yelamate Mallikarjuna", + "Achim", + "Jürgen", + "Ralf", + "Jürgen", + "Tilman", + "Tobias", + "Gerda", + "Marc", + "Ingo", + "Uwe", + "Gunnar", + "Jörg", + "Jörg", + "Andreas", + "Frank", + "Sascha Klaus Eric", + "Patricia", + "Rafael", + "Gabriele Martha", + "Frank", + "Jan Felix Filemon", + "Doreen", + "Andre", + "Christian", + "Christian", + "Gerd", + "Ralf", + "Kai", + "Thomas", + "Claudia-Susann", + "Oliver", + "Peggy", + "Sandro", + "Kevin", + "Erik", + "Alexander", + "Dirk", + "Arne", + "Rolf", + "Manuel", + "Kükenshöner", + "Stefan", + "Tom", + "Ralph-Dieter", + "Stephen", + "Ekkehard", + "Beatrice-Alexandra Gabriele", + "Sebastian", + "Wilm", + "Anne", + "Peter", + "Petra", + "Michael", + "Eric Marie Karl Rene", + "Jan", + "Stefan", + "Karsten", + "Bernhard Johannes", + "Alexander", + "Javier Angel", + "Michael", + "Vivianne", + "Dirk", + "Stephan", + "Dirk", + "Jens", + "Thorsten", + "Hagen", + "Bodo", + "Michael", + "Helge Knut", + "Hendrik", + "Oliver", + "Alfons", + "Gerhard", + "Manuela", + "Bernd", + "Siegmund", + "Holger", + "Sven", + "Helene", + "Petra", + "Dieter", + "Ralf", + "Markus", + "Abdelkader", + "Thomas", + "Jessica", + "Martijn", + "Dirk", + "Kai", + "Berthold", + "Jürgen", + "Friedrich-Wilhelm", + "Nikolai", + "Arno", + "Dominik", + "Rainer", + "Jens", + "Thomas", + "Johann", + "Stefan", + "Marijn", + "Philipp", + "Wolfgang", + "Wolfgang", + "Otto", + "Waldemar", + "Georg", + "Markus", + "Ralf", + "Thorsten", + "Claus", + "Cornelia", + "Niels", + "Ingrid-Helen", + "Markus", + "Wolfgang", + "Hans-Peter", + "Lars", + "Rainer", + "Werner", + "Michael", + "Martin", + "Ines Ricarda", + "Martina", + "Christin", + "Wolfgang Ernst", + "Dirk", + "Norbert Karl-Josef", + "Gerd", + "Andreas", + "Tim", + "Nina", + "Kai-Uwe", + "Alexander", + "Leonard", + "Anja", + "Felix", + "Jürgen", + "Manuel", + "Annette", + "Georg", + "Petra", + "Luc Jan", + "Baptiste Raymond", + "Anna Felicitas", + "Arndt Jörg", + "Sandra", + "Armin", + "Rainer", + "Henning", + "Udo", + "Christian", + "Norbert Frank", + "Sebastian", + "Martin", + "Reinhold", + "Christoph", + "Frits", + "Stefan", + "Birte", + "Florian", + "Stefan", + "Gunnar", + "Oliver", + "Dieter", + "Stephan", + "Peter", + "Nicola", + "Marion", + "Ilka", + "Martin", + "Egon", + "Wolfgang", + "Jörg", + "Rainer", + "Klaus", + "Knut", + "Michael", + "Matthias", + "Nicole", + "Frank", + "Thomas", + "Dennis", + "Volker", + "Jens", + "Max Werner gen. Werner", + "Guido", + "Alexander", + "Matthias", + "Eva", + "Tina", + "Roland", + "Gertrud", + "Ingo", + "Stefanie", + "Jürgen", + "Thomas", + "Christoph", + "Olaf", + "Jan", + "Georg", + "Andreas", + "Peter", + "Jörn", + "Tina", + "Marc", + "Jan", + "Tobias", + "Christoph", + "Dirk", + "Till", + "Thomas", + "Adel Bedry", + "Andreas", + "Andy", + "Jan", + "Carsten", + "Jürgen", + "Norman", + "Klaus", + "Tanja", + "Christian", + "Urs Michael", + "Björn", + "Laura", + "Dirk", + "Maik", + "Georg", + "Janine", + "Gregory", + "Thomas", + "Jochen", + "Frank", + "Jens", + "Heiko", + "Ralf", + "Martin", + "Alexandra", + "Ernst-Jan", + "Anthony", + "Christian", + "Kathrin", + "Sven", + "Jan", + "Alena", + "Holger", + "Meike", + "Michael", + "Alban Kornelius", + "Thomas", + "Antonino", + "Lars", + "Ralf", + "Andreas", + "Christian", + "Holger", + "Hans-Thomas", + "Frank", + "Marco", + "Frank", + "Michael", + "Dirk", + "Heinrich", + "Ralf", + "Alexander", + "Christian", + "Mikinari", + "Stephan", + "Thomas", + "Karl", + "Peter", + "Massimo", + "Marina", + "Bernd", + "Stefanie", + "Elke-Sabine", + "Sven Olaf", + "Carolin", + "Ralf", + "Frederik", + "Peter Stefan", + "Dieter", + "Klaus", + "Jan", + "Andreas", + "Bert", + "Jörg", + "Christine", + "Thomas", + "Ralf", + "Andreas", + "Katharina", + "Dirk Michael", + "Mario", + "Rasmus", + "Jens", + "Michael", + "Ulrich", + "Christian", + "Günter", + "Andy", + "Niels", + "Harald", + "Volker", + "Axel", + "Christian", + "Timo", + "Dennis", + "Andreas", + "Hans-Peter", + "Peter", + "Marc", + "Volker", + "Veit", + "Volker", + "Wolfgang", + "Marcus", + "Diethard", + "Jens", + "Anna", + "Marcus", + "Jürgen", + "Markus", + "Lutz-Martin", + "Markus", + "Rüdiger", + "Karsten", + "Annette", + "Gerrit Arnd", + "Andreas", + "Andreas", + "Carsten", + "Thomas", + "Michael", + "Markus", + "Matthias", + "Ingo", + "Andre", + "Christian", + "Bernhard", + "Matthias", + "Jörg", + "Arnd", + "Markus", + "Ulf", + "Uwe", + "Jan", + "Guido", + "Chris", + "Anton", + "Stefan", + "Ayten", + "Oliver", + "Joachim", + "Peter", + "Jendrik", + "Holger", + "Henning", + "Stefan", + "Alexandra", + "Carsten", + "Markus", + "Astrid", + "José Miguel", + "Chris", + "Markus", + "Marie Sophie", + "Stefan", + "Hans", + "Slobodan", + "Carolyn", + "Jessica", + "Andreas", + "Frederik", + "Andreas", + "Lars", + "Erika", + "Michael", + "Burkhard", + "Ulrich", + "Harald Gerhard", + "Andreas", + "Markus", + "Hans-Jörn", + "Karsten", + "Dirk", + "Christian", + "Birgit", + "Heike", + "Christian", + "Simon", + "Volker", + "Karina", + "Helge", + "Tobias", + "Frank", + "Ralf", + "Anita", + "Jan Heinrich", + "Gerlach Alexanders", + "Jasmin", + "Henning", + "Robert", + "Oliver Johannes", + "Jacqueline", + "Ralph", + "Christian", + "Annett", + "Anne", + "Vera", + "Mirana", + "Andrea", + "Martin", + "Arnd", + "Guido", + "Angelika", + "Alexandra", + "Mark", + "Jörg", + "Bernhard", + "Matthias", + "Martin", + "Tobias", + "Mark", + "Simon", + "Andreas", + "Matthias", + "Dietmar", + "Daniel", + "Andreas Werner", + "Marcus", + "Alexander Anton", + "Karl Andreas", + "Karl-Wilhelm", + "Jürgen", + "Ercan", + "Hans-Peter", + "Thorsten", + "Marko Cornelius Peter", + "Rüdiger Karl", + "Stephan", + "Dirk", + "Karl", + "Verena", + "Hans Wolf", + "Joachim", + "Max", + "Kai", + "Ulrike", + "Markus", + "Tobias", + "Rainer", + "Andreas", + "Ralf", + "Erik", + "Ralf", + "Niels-Jakob", + "André", + "Rodica", + "Andreas", + "Maximilian", + "Nana Ruth", + "Henk", + "Johannes Marius Alexander", + "Robert", + "Simon", + "Elie", + "Tobias", + "Simon", + "Frieder", + "Thomas", + "Sven", + "Kai", + "Marcus Christian", + "Markus", + "Judith", + "Michael", + "Markus", + "Ann-Cathrin", + "Uwe", + "Tim", + "Johann Börries", + "Wolfgang Hans", + "Stephanie", + "Andreas", + "Olaf", + "Christian", + "Helge Christian", + "André", + "Axel", + "Oliver", + "Christian", + "Ralf", + "Simon", + "Michael", + "Ute", + "Stefan", + "Benjamin", + "Moritz", + "Christoph", + "Saskia", + "Silvia", + "Helmut", + "Jörn", + "Kamila", + "Andreas", + "Heiko", + "Christian", + "Robert", + "Silvia Susanne", + "Uwe", + "Ulf", + "Ralf", + "Bernhard Herbert", + "Axel Christian", + "Eric", + "Masood", + "Carsten", + "Thomas", + "Stefan", + "Dieter", + "Maik", + "Thomas", + "Ralph Michael", + "Tim", + "Michael Jürgen", + "Chang", + "Helene", + "Sebastian", + "Ralf", + "Daniel", + "Torsten", + "Thomas", + "Christian", + "Andreas", + "Alexander", + "Anton", + "Felix", + "Karl", + "Christoph", + "Sandra", + "Sascha", + "Andreas", + "Franz-Josef", + "Thomas", + "Jan-Bernd", + "Henning", + "Simone", + "Marco", + "Peter", + "Dagmar", + "Detlev", + "Matthias", + "Nils", + "Frank", + "Dennis", + "Helene", + "Wina", + "Dirk", + "Ulrich", + "Lena", + "Bernd", + "Jörg", + "Markus", + "Steffen", + "Ralf", + "Marco", + "Stefan", + "Marcel", + "Henning", + "Sebastian", + "Marcus", + "Mirko", + "Anne", + "Sven", + "Sascha", + "Thomas", + "Michael", + "Robert", + "Michael", + "Susan-Katrin", + "René", + "Mareike", + "Timm", + "Sandra", + "Sascha Marco", + "Ingolf", + "Andreas", + "Rene", + "Walter", + "Klaus", + "Karsten", + "Klaus", + "Heike", + "Andreas", + "Elmar", + "Tobias", + "Daniela", + "Catrin", + "Elke", + "Philip", + "Timo", + "Christopher", + "André", + "Andrew", + "Reinhold", + "Matthias", + "Anne Sybille", + "Leonie", + "Thomas", + "Sergey", + "Alexander", + "Jörn", + "Kai-Uwe", + "David", + "Thomas Reinhard", + "Tessa", + "Martin", + "Mareike", + "Ingo", + "Christian", + "Nils", + "Ansgar", + "Markus", + "Robin", + "Jan", + "Jens", + "Matthias", + "Carsten", + "Guido", + "Melanie", + "Susanne", + "Alexandra", + "Axel", + "Thomas", + "Thomas", + "Michael", + "Udo", + "Arindam", + "Karin", + "Rico", + "David", + "Christian", + "Mathias", + "Volker", + "Mathias", + "Michael", + "Ralph", + "Matthias", + "Nicoletta", + "Marc", + "Josef", + "Fanni Tünde", + "Dorothee", + "Holger", + "Lennart Christopher", + "Ian", + "Tobias", + "Maximilian", + "Gero", + "Karen", + "Andre", + "Jan-Hendrik", + "Frederic", + "Markus Franz", + "Peter", + "Stephan", + "Jörg", + "Peter", + "Henri", + "Bernhard", + "Jörg Peter", + "Jochen", + "Christian", + "Erk Thorsten", + "Rolf", + "Thomas", + "Robert", + "Christoph", + "Frank", + "Vassiliki", + "Andreas", + "Thomas", + "Thomas", + "Benedikt", + "Marcus", + "Christian", + "Andrea", + "Robert", + "Christian", + "Uwe", + "Martin", + "Christian", + "Andreas", + "Tobias", + "Christoph", + "Christian", + "Wolfgang", + "Laurent", + "Martin", + "Konrad", + "Rainald", + "Sieglinde", + "Hans-Christof", + "Ronald", + "Thomas", + "Jutta", + "Markus", + "Torsten", + "Stefan", + "Wolfgang", + "Angela", + "Martina", + "Thomas", + "Frank", + "Jan", + "Muhamed", + "Bianca", + "Peter", + "Eva", + "Ilaria", + "Thomas", + "Markus", + "Thomas", + "Christian", + "Matthias", + "Christian", + "Stefan", + "Michael", + "Sebastian", + "Helmut", + "Stefan", + "Reinhard", + "Albrecht", + "Hans-Peter", + "Robert", + "Diana Yemi Elise", + "Dinesh", + "David", + "Astrid", + "Sandra", + "Anne", + "Bruno", + "Sara Maria", + "Matthias", + "Martin", + "Heike Ursula Erna", + "Gert Günter Willi", + "Egbert", + "Matthias", + "Sebastian", + "Stefan", + "Sabrina", + "Max", + "Marco", + "Ingo", + "Stefan", + "Marc", + "Lars", + "Nils Lars", + "Torge", + "Monika", + "Safet", + "Valerio", + "Werner", + "Richard" + ], + "mode": "markers", + "name": "DataFrame 2", + "type": "scatter", + "x": [ + 95962.08383797004, + 95958.17194866823, + 96588.81767117835, + 95948.88284577774, + 95880.89608253656, + 96750.96023331824, + 96510.55405575983, + 95767.91624828705, + 96740.50167159707, + 97209.95143029183, + 97361.55787856234, + 96730.38048016379, + 96981.97292405601, + 97064.56846526945, + 96996.94863760758, + 95612.3798589922, + 97025.10002004895, + 97085.03905872672, + 97181.50823801635, + 97107.98327536366, + 96671.54609170722, + 96264.44273321965, + 97372.74334299575, + 97234.35747194423, + 97271.91592592461, + 97377.86830334815, + 97325.9129722734, + 97061.7840428774, + 97215.01978405566, + 97358.31856309062, + 97190.77820654793, + 96441.85290714615, + 97203.18137378134, + 96615.52267587048, + 97362.57990476971, + 96430.3182329276, + 97216.0877466562, + 97087.72560216134, + 96827.37265721356, + 97471.93322774443, + 96478.42530029602, + 97500.18404094946, + 96989.78155035034, + 98448.42923749553, + 97143.83269179585, + 97369.40146033755, + 97339.71103793576, + 96553.64509810388, + 97302.65739635656, + 97335.30821090189, + 96554.76711541406, + 97344.39094759998, + 98269.13543855402, + 97120.93183600294, + 97096.28494217026, + 96822.6506902651, + 97442.83746991267, + 96832.47969398995, + 97815.81719436, + 98066.53944077659, + 97949.99254977489, + 97258.58975162834, + 97072.87553268592, + 97177.44060503879, + 98940.06816975218, + 98016.83324711236, + 97830.47996234937, + 97767.76658830828, + 96641.47157063635, + 97299.95033359852, + 97365.44574077036, + 97290.08489077912, + 97322.93543564298, + 97060.5787311115, + 97049.53534278259, + 97242.69405553193, + 98081.17812602762, + 97249.66244594876, + 97854.52508088839, + 97955.02720756274, + 97077.71122197901, + 96385.16496434633, + 97510.89358759671, + 98459.92232309152, + 97615.68830856765, + 98138.33403478275, + 97827.98206777098, + 96467.8745823571, + 95886.51435711926, + 98461.45076976992, + 98367.57183739317, + 96854.14568860013, + 97266.32321649927, + 97363.0231077364, + 97395.40628065314, + 96172.41683035072, + 96250.45766620964, + 95520.1645763566, + 98448.70225290018, + 96321.45254240566, + 97264.50790734109, + 97236.52009824176, + 97339.43922054533, + 97243.18425457999, + 97315.50747893736, + 97215.05533166551, + 96750.67919465902, + 96758.2131173848, + 96298.09511180542, + 95861.24531062585, + 96714.78752865449, + 97410.9196281361, + 96859.54396498862, + 96181.25693811684, + 96930.48088011655, + 97770.14515646077, + 97490.27494702111, + 97286.18570891903, + 97389.10178705663, + 97331.16186692334, + 96488.13453110759, + 96074.87019613585, + 97074.27772427908, + 96074.67218939119, + 97117.04988156656, + 96276.76290288504, + 96138.27909570166, + 97145.57365835275, + 96646.8046235456, + 95954.7235059804, + 97344.23333565774, + 97312.16899856621, + 97226.77467613107, + 97363.94242415007, + 96602.40260405943, + 95405.95241141658, + 97026.79872519187, + 96882.48118360608, + 96170.99341163754, + 96129.26226123162, + 97352.31659100096, + 96609.21495158957, + 98432.06023611217, + 96466.10004162915, + 95721.84547331538, + 97171.80979185148, + 96673.26868148368, + 97242.36535343947, + 96662.13325458604, + 95361.48898776405, + 96723.71649615404, + 96577.78689065653, + 96304.89053116819, + 96020.02948032114, + 94721.83869654656, + 97298.65959230787, + 96640.12295334176, + 96271.64391619014, + 96408.13622599524, + 97309.18348925584, + 97289.56699193796, + 97270.2903153982, + 96874.40221688445, + 96746.46975225132, + 96348.29844805674, + 96668.17509388815, + 96090.94263214861, + 96360.12432055575, + 96792.48106870924, + 96829.16589823875, + 96813.03260829017, + 96852.64814433026, + 97324.36613168383, + 97379.06355223498, + 96719.96913872726, + 96565.3052812955, + 96062.65271303893, + 96318.63129865125, + 96775.11425416196, + 97357.37235340624, + 97277.72395289454, + 97289.76170017247, + 97321.48237207504, + 97227.68741107298, + 97204.20955384977, + 96229.06326601339, + 97325.19271104848, + 97617.21646735941, + 98449.27256362812, + 96581.33099308431, + 97228.58212383334, + 97299.24309043337, + 97252.41548140156, + 97357.81547028142, + 97236.43218292532, + 97305.00730192695, + 97195.88804075729, + 97218.59509104007, + 96261.3196088678, + 93808.41622785716, + 96850.96393927754, + 96537.12189876002, + 96361.20003453246, + 96470.92604424445, + 96487.89609305817, + 96645.9713144198, + 96399.42211136232, + 96412.58182949589, + 95545.86201701668, + 96748.01232561683, + 96556.53529112086, + 96657.04377656122, + 96611.79891677048, + 97214.1761793492, + 96131.39404043475, + 96721.96485809215, + 96569.72587527646, + 96176.22696258772, + 96122.91322426367, + 96198.64527732105, + 97964.68713880659, + 97183.30733835287, + 92882.88036181602, + 93947.1652778539, + 96330.25949972049, + 97170.81081425113, + 95845.43465437011, + 94883.17834351698, + 96709.27952791477, + 96667.2918950391, + 95837.80625601206, + 96820.63808370597, + 96806.18517489852, + 97280.51740997269, + 96714.28622859313, + 96088.28655554891, + 96842.71240942011, + 96636.80398752526, + 96814.47946325276, + 96686.4149689825, + 96733.90105315663, + 96744.78801527941, + 96492.3193299354, + 96406.73123341237, + 96335.82539154506, + 96082.8637414932, + 96567.91127200374, + 96501.22061638958, + 96231.57047597128, + 96447.73644124497, + 96907.51876847682, + 96140.78208609398, + 96791.93089613823, + 96773.1294794952, + 97215.55371993229, + 96989.24436251477, + 96715.92227964214, + 96692.76062085203, + 96896.91552525175, + 96737.85869639236, + 95444.01440252263, + 96447.8287589237, + 96639.08049903584, + 97213.58157620984, + 96349.45899615414, + 96911.82889073166, + 96584.25000074002, + 97638.83972944805, + 97141.32121371166, + 97589.68831697167, + 96754.87507754394, + 97436.04173144014, + 96829.7050884141, + 96707.30691234408, + 96535.511292164, + 96405.25838544288, + 96596.4969197861, + 96957.15143187257, + 98108.28736915902, + 97092.03590641617, + 95739.18477075809, + 95638.78273951489, + 96868.09370002619, + 96840.061255232, + 97740.36484145897, + 97228.17238280359, + 96287.81181504241, + 97306.68660394431, + 97519.14188663122, + 96800.95464898097, + 96931.14707892697, + 96653.93028602129, + 96612.17178282065, + 94019.39320785269, + 96918.79607718707, + 95778.09112358528, + 94801.82599832956, + 94998.66487738185, + 95681.96009977852, + 95501.99445714205, + 95451.74998648891, + 97377.6500584912, + 96959.17409848377, + 97453.56935622763, + 97492.36374902399, + 97452.67144706869, + 97467.97384514623, + 96643.07015445872, + 96616.28197124632, + 96611.07880435153, + 95591.49480913648, + 96743.02101349403, + 96450.68991158345, + 96877.98110658897, + 97082.82303991095, + 98237.07311872549, + 97435.85714721317, + 96347.73945345664, + 98753.0342330029, + 97389.05654094371, + 97350.06903114164, + 97254.23934987192, + 96919.826641072, + 97357.32608817489, + 97311.70614692672, + 96312.49145069612, + 97342.74090899815, + 97676.19241492003, + 97533.87560124022, + 96983.61207113188, + 97042.01258952515, + 97651.32746016643, + 97136.55546326986, + 97605.64203060168, + 97499.57548817585, + 97615.00090956, + 97672.92128722146, + 97634.83104178979, + 95512.48672079766, + 95520.58581704031, + 96295.26828740547, + 96282.43445699873, + 96568.35948892368, + 96305.70007753118, + 96281.6988740464, + 96634.97232577665, + 96658.50723704832, + 96327.25960947742, + 96412.87128274282, + 95612.05251687022, + 96308.17494820403, + 96460.09274444025, + 96049.36643690022, + 96412.62955632774, + 96616.7559403405, + 96519.5204681799, + 97093.69642855125, + 96679.99009179635, + 95633.12109295135, + 96619.3340165115, + 96150.03424362313, + 95937.7713444444, + 96585.71992460922, + 96491.68898578656, + 95350.83394336532, + 96134.20248253406, + 96072.38567279669, + 96772.82588738113, + 96977.58687203821, + 96304.58681365351, + 96251.19968281969, + 96108.91834438108, + 96778.70350523331, + 96382.02705846845, + 94634.35092199444, + 96601.97537172223, + 96473.43688595422, + 96422.64317562626, + 96431.47888012671, + 96636.83424445745, + 96056.19248735494, + 96515.11905526402, + 96660.38035113053, + 95774.24926109349, + 97585.87618383576, + 96583.5257472604, + 95122.89837108535, + 96605.90599322402, + 96038.36554774032, + 96031.4993704607, + 96675.71260270195, + 97049.512435505, + 96433.845799983, + 95897.07037264043, + 96960.27176327427, + 96307.85692216411, + 96242.35848519257, + 96819.81129369602, + 97249.8102467086, + 96108.87427334944, + 97349.66316971318, + 97012.3360267975, + 96330.17839103569, + 98400.16393508099, + 96728.43531848033, + 95819.22417527653, + 97357.92552252565, + 96299.78998071494, + 97385.46389592621, + 97411.8360170104, + 97204.89839977278, + 96463.30750173924, + 96598.60562028212, + 95896.43296916565, + 96091.45432140626, + 97311.35174306807, + 96200.70472225144, + 97500.53674710442, + 96082.33537164425, + 96477.12621197902, + 96347.4403938442, + 96763.1280194511, + 96773.35799206587, + 96670.27291581893, + 94870.7294183785, + 96530.4881400899, + 95996.08028297019, + 95648.0622321095, + 95765.59330845765, + 96347.57634764894, + 96313.51649151853, + 96240.89790514634, + 97253.59328958677, + 96585.02524485815, + 97110.64567914454, + 96401.05087142391, + 97634.16117706981, + 97632.23610323192, + 96476.9266197321, + 96143.59715704634, + 96442.3959926909, + 97173.67520609817, + 97452.54296459325, + 98764.71093073962, + 94675.58068459465, + 96584.45858311476, + 96074.51018899358, + 96941.3855747379, + 96481.93148257826, + 96194.20097196527, + 96410.63417003947, + 96268.58433157318, + 96844.08726268722, + 96732.61589548577, + 97054.54306076036, + 96736.36947326055, + 95950.87856285187, + 96058.5884161396, + 96074.46008448287, + 96373.61215631547, + 96774.68889401545, + 95954.6226953649, + 97375.91125894338, + 96762.60907180404, + 96892.63356474544, + 96499.75723381033, + 96294.09088720444, + 96966.39468034501, + 96109.50994722702, + 96088.99615148573, + 96447.29551553998, + 95819.44644735986, + 96218.35482989937, + 95899.18906383448, + 96769.01595020863, + 96274.30300397708, + 96042.0069575773, + 97385.79270355738, + 96229.39248836122, + 96126.32784334563, + 96635.17803046739, + 96526.03756640776, + 96032.39838433285, + 97463.6827927217, + 95854.85581067526, + 96404.04885412315, + 96940.5437378161, + 96906.44900909, + 96406.17290872385, + 97193.59098538685, + 97229.6312230193, + 96433.95166449582, + 97275.9101009866, + 96243.29294451735, + 97395.09075685765, + 96491.31294403854, + 96377.89286649457, + 96395.26906016511, + 97324.02537320471, + 97620.07637011069, + 96147.39169169297, + 97643.64988982778, + 97033.93508477152, + 97602.881367329, + 97155.50811563137, + 98171.17574764158, + 96541.43397278279, + 96167.45474416234, + 95870.52327035548, + 96926.74644690406, + 96878.0650637567, + 96356.62202527624, + 97610.48729478249, + 97375.10606040448, + 98168.55916640947, + 97401.99871940678, + 96722.2929728447, + 97054.36607374287, + 96603.25260090239, + 98932.31091884513, + 98926.20655583622, + 98881.20399257346, + 98873.6590998779, + 98776.08147395353, + 98916.08043593282, + 98775.64297666437, + 98833.5386160878, + 98779.4951496633, + 98769.87019965112, + 98763.69912444155, + 98715.38337956829, + 98838.01226486915, + 98731.25835265023, + 98794.9356782363, + 98875.12446310604, + 98845.6917714939, + 97598.41715003968, + 97191.15673842629, + 97554.49945784982, + 96994.3545714313, + 96415.73464421919, + 96234.84158094184, + 97792.47295206528, + 96462.81227754163, + 97852.29653105894, + 97497.28727853562, + 97343.57538035887, + 97366.39316478191, + 97781.84828947709, + 98514.4612858039, + 98281.43831840085, + 97921.70930511011, + 97902.18401137421, + 98983.632695647, + 99203.2809335762, + 98509.44614370928, + 96494.98600367835, + 98740.78608913493, + 99612.16066233935, + 100399.53610597138, + 99242.27473376936, + 97873.62352691275, + 98601.01896303026, + 97723.80989181406, + 98367.93488464183, + 98698.73643764145, + 98474.73668821216, + 97769.5225019777, + 98424.79828892439, + 98849.99134497087, + 97153.8202347327, + 97784.87511330319, + 98488.59232974793, + 97835.98880603131, + 98697.76296828069, + 98425.30418388022, + 97352.5478411118, + 99087.60514794616, + 99562.51936967154, + 97438.32392949228, + 99581.18821252153, + 98484.49246054886, + 98589.19418356709, + 99047.9458477898, + 97904.87372888521, + 98685.34030967425, + 97236.56543939441, + 98552.63522931661, + 97440.7506574999, + 96448.97691094204, + 97272.57643613985, + 96709.59744547942, + 98547.70620576198, + 97115.24870623546, + 96930.11819667481, + 97074.16623154836, + 96568.92366528956, + 98713.83774017166, + 98345.9554260893, + 97740.55752143663, + 97988.18684320113, + 99349.28939642792, + 96556.14889918086, + 99625.77747749203, + 98427.86290460796, + 97468.41119559384, + 97532.46968364714, + 97025.5243570638, + 97403.19800982128, + 99189.38105820611, + 99130.3078520612, + 98512.10297397664, + 98519.8177010953, + 99017.67985713482, + 97619.72683427205, + 98914.83209812317, + 98147.84267591721, + 97949.55637290105, + 99502.83924873942, + 98872.0205731119, + 98390.87404103394, + 99053.11429206465, + 102016.60254936705, + 98075.21405525423, + 99162.58751241713, + 99982.38307176298, + 98292.59127337417, + 100060.98457894419, + 99185.22072761349, + 97947.04358444022, + 97474.60738990385, + 99170.7047386012, + 98052.15218821482, + 98616.68136712202, + 99500.63364741569, + 98316.9751512879, + 99176.98993944687, + 99162.04598470115, + 97788.31675277463, + 100348.89954635833, + 99148.26930216937, + 100486.82668676783, + 99758.98817475478, + 96889.7794321626, + 99026.6226858807, + 99069.25619307961, + 101823.31476410347, + 98379.14339417113, + 101380.81652138675, + 99254.27452910501, + 99227.13583415966, + 98212.04884196128, + 99094.77135415385, + 98915.86627395742, + 98121.78812235915, + 99010.43098706538, + 99006.76819217965, + 98421.28339426052, + 98918.94691074, + 98809.12475691538, + 99070.331362437, + 97874.19535094783, + 98942.96036569965, + 98368.76399286573, + 97911.02555719024, + 98818.24534258251, + 99191.65795239966, + 99272.95214509276, + 98629.16309416488, + 98896.61825153053, + 97353.8831923671, + 98413.72450899602, + 99048.52954857876, + 99860.44427206193, + 99875.65907184825, + 98991.31426615387, + 98545.72335094343, + 99143.15955432564, + 97910.12779784399, + 98656.64266720755, + 98406.94597948619, + 97476.14534117641, + 97524.08090876219, + 99171.65872471192, + 99548.50572708945, + 97949.35571979226, + 99391.34679357102, + 98722.02495329459, + 99374.50165106604, + 97825.10446462789, + 97650.77807951198, + 99091.39852136569, + 98663.5728126574, + 98159.03165818081, + 99060.55516943279, + 99070.36691418258, + 94807.18741906618, + 99956.68584656977, + 99881.38194405592, + 99269.75421848508, + 98657.65560967932, + 99187.14420424569, + 99130.37213728795, + 98433.94367818839, + 98598.39852284717, + 99397.67295607875, + 100062.94026884029, + 99683.93197275087, + 98942.47918301482, + 98372.2920372052, + 99106.89445006047, + 99057.76069575727, + 98225.6719769043, + 98965.17216239334, + 99161.06627467804, + 100038.45200630881, + 99231.69745173643, + 99643.13410786055, + 99121.89628822553, + 98896.0953062042, + 98996.3949186886, + 99010.23040006083, + 99067.43224177675, + 98982.5538246546, + 99326.93888038411, + 97455.17599729972, + 98980.69875328755, + 99685.34161040152, + 100612.93716200726, + 99244.69832153102, + 99226.22079845401, + 99091.55472439228, + 99026.64548034257, + 98688.75667619119, + 99060.11730816362, + 99629.11999021804, + 99571.7539254891, + 99395.9830884571, + 99183.91384425001, + 99022.60912279715, + 98991.26055747598, + 99097.9010589485, + 98904.92041991555, + 98790.64444216965, + 98653.03461351694, + 98528.28228471124, + 96470.76012407262, + 98077.79681744472, + 99214.362436891, + 98581.61307739322, + 97662.82472168292, + 97762.19782518726, + 98322.0050156767, + 98186.65877994802, + 98241.1113495342, + 98809.36210538005, + 98799.40792106478, + 98692.54803294275, + 98857.10511058902, + 98818.13714193161, + 97358.46679886585, + 96071.64726551576, + 98184.18254674674, + 98420.51887894224, + 99085.54243090276, + 99105.27578480003, + 98161.02751086211, + 98705.71088691853, + 98721.31378803315, + 98128.91359559372, + 98293.07266113821, + 97827.63907828067, + 98054.0065827654, + 98251.89202247094, + 98211.55320628641, + 96475.17933169345, + 98568.00044350624, + 98364.36914082733, + 98331.41182590384, + 98163.10895570937, + 97554.9960699299, + 98038.14058948433, + 98858.81885856122, + 96255.92043157357, + 98120.00401419179, + 99907.08283776883, + 97770.11547186453, + 98260.97237711879, + 98649.88742805325, + 98112.09979592523, + 98728.80932783807, + 98743.18237840163, + 96497.28753916033, + 99041.0309662276, + 98538.18176070268, + 98404.5074674531, + 98168.58123872355, + 99485.28366531829, + 98727.3121423661, + 98706.38695246876, + 98212.5660722969, + 96338.9907537572, + 94647.79050717162, + 98994.41997788764, + 96237.3014003704, + 94688.11906145522, + 96639.48963731402, + 95635.79388111227, + 95971.63945756324, + 96148.36985614852, + 97265.23793720463, + 96888.812856475, + 96702.93382964614, + 96685.11446346446, + 96692.14973493623, + 97854.41540216467, + 96886.64740803099, + 96012.22372465217, + 95855.37346994528, + 96019.51490257688, + 95928.73602388412, + 95655.37022945724, + 96175.94057358746, + 98401.53156330762, + 95386.7915315098, + 95383.19508052658, + 92604.63107627998, + 95893.574265848, + 96026.40843242637, + 96114.05896419227, + 95834.93768300924, + 95619.17778565394, + 96108.40628370653, + 95731.71785167878, + 95777.00472574684, + 95353.54589236321, + 95800.17831353597, + 95203.24310226098, + 95930.34153333298, + 95903.12103009703, + 96914.4073833856, + 97103.69288164194, + 96898.52471952, + 96820.8105552239, + 96112.34947297389, + 96008.4744666249, + 96893.41939654587, + 96865.8409444725, + 97240.38028997074, + 96876.82259242256, + 96619.39742322621, + 96882.99940588712, + 96861.44317975816, + 96768.5817251259, + 96559.08563953191, + 96649.40356388739, + 96625.72014898527, + 97992.50506999153, + 97617.39505268811, + 96070.12571463303, + 95866.20481677107, + 95662.62644960554, + 96100.86678198376, + 95405.1846400074, + 98524.57731541038, + 98061.51654616423, + 98127.50014794023, + 98433.46713226559, + 98303.3954720316, + 96465.29272664362, + 96421.49499570957, + 95652.29809552783, + 95574.25352251745, + 94671.14162737239, + 97196.83695998523, + 97409.25368271414, + 97234.04346137235, + 97434.01515339047, + 97272.13864563021, + 95567.54268381129, + 97324.16299961129, + 97481.45108043253, + 95459.71080597503, + 95521.93192587548, + 96559.7026621268, + 96622.87666955806, + 96449.25631444062, + 94919.54440569754, + 94171.18973519026, + 98378.94284214679, + 94645.87712676502, + 96735.91203018947, + 97334.69528656456, + 95915.62243658677, + 94473.57318014126, + 96498.2979299931, + 97046.83129228091, + 96532.6646683294, + 96214.62212633847, + 96146.8337078855, + 95343.9410888273, + 95506.46666204746, + 95380.57975889063, + 95213.69401511893, + 94761.32003739124, + 96370.41426861439, + 96556.18686331193, + 96600.23269030724, + 95312.03621158424, + 95103.86724211255, + 94154.4683582202, + 96651.05281133259, + 95926.00835539421, + 95794.56902475153, + 95275.96542639584, + 92619.51334005372, + 95388.1231928088, + 96533.09552389133, + 96602.4666381394, + 95710.95963260993, + 96173.23715080458, + 96169.80106348639, + 96919.26178312073, + 96999.24006270662, + 96911.02758063171, + 96767.7608495193, + 95402.18303854323, + 95963.6655367038, + 96323.93164666534, + 96035.94449947504, + 95826.13450428299, + 95894.3821805092, + 95735.81320135522, + 96785.2273252981, + 96844.44949459478, + 96450.55318015978, + 96234.86536056163, + 95910.45905898156, + 97216.8097752767, + 95733.15082062641, + 97623.71573684271, + 96003.07301754713, + 95855.84606940606, + 90620.59321338178, + 94139.8012458913, + 94032.80335215264, + 93807.67468704915, + 94732.86002550159, + 96955.0168977828, + 96373.51181593174, + 96024.31193605777, + 96039.53114090665, + 96558.40139577903, + 96648.53242134354, + 96344.26723680123, + 96248.28034246547, + 96483.28090692386, + 96054.44520130524, + 96524.24227801626, + 96583.58536032659, + 95881.63940456003, + 95096.87780489783, + 94429.634403017, + 96769.24653086865, + 95885.77494615254, + 97401.66966851291, + 96529.94166735753, + 96400.6315649038, + 96701.50888855853, + 96563.36738665988, + 96663.0086169134, + 96404.13831153684, + 95923.70592479738, + 95540.24503251979, + 95920.065981809, + 96456.96747554903, + 96427.6516351581, + 96826.02448370877, + 95922.0581596575, + 95802.9629154136, + 95957.78104570328, + 96331.52105283472, + 96392.03219267243, + 95481.26094749449, + 96072.651127653, + 96107.71912624051, + 95682.31879557903, + 96011.6169628847, + 98745.28871415959, + 98737.9075507478, + 98260.19273313228, + 92403.72030892958, + 92552.59924319923, + 94130.55860663287, + 92453.32910364396, + 92636.97281790803, + 94694.68806398017, + 93639.94569899137, + 94259.03278558327, + 91080.58784143622, + 93850.41662442079, + 92357.81244688503, + 92015.08959235293, + 92793.59818111316, + 94015.54400806065, + 93415.0685794173, + 92661.92845541582, + 92700.30450697383, + 92811.56373493784, + 88980.87619367571, + 93666.16904241925, + 92727.31906879041, + 92625.18394918887, + 92710.21548334243, + 92730.67067426581, + 92599.58217260841, + 92761.81424118878, + 92651.26372829395, + 92548.69810217191, + 94753.5297564697, + 92642.4602856306, + 91676.43793576607, + 92695.15487336805, + 93155.38758721903, + 89305.71197876369, + 94890.65745591454, + 93887.36045593988, + 93682.44991506475, + 92689.24617566908, + 93904.56333636155, + 92764.63612228677, + 93226.39690794115, + 93143.11311426201, + 94983.58739011025, + 93345.5384733388, + 93475.56240329082, + 93855.61888073095, + 95749.39705457314, + 94465.17063363985, + 92913.17761014139, + 91312.64033973779, + 92365.60828492136, + 93034.01413382801, + 96232.6883024668, + 97197.31119879312, + 97345.58098981141, + 96319.04144083924, + 94787.68098338218, + 94304.28587484072, + 95375.71980775791, + 96010.91751038717, + 94846.74238052499, + 95360.36419013362, + 95443.67008227661, + 95781.4838692387, + 95621.74045129302, + 94709.05739456239, + 95069.66525755977, + 95628.14642198732, + 94459.15082891459, + 95527.20667464145, + 94762.37057915328, + 94658.19240918643, + 94716.98202491149, + 94759.00609204093, + 94646.88730549908, + 95292.52782742439, + 95093.22706462545, + 98085.07588417802, + 95163.75908553116, + 96006.77287976355, + 95274.60828290615, + 94773.27914431288, + 94843.32769305678, + 94756.04785280023, + 94693.04021624882, + 95274.55463163379, + 94205.42306946588, + 94740.62358451245, + 94914.46333674647, + 95731.94340542807, + 94554.58874211222, + 96091.204926268, + 95643.38624755875, + 95405.5970323345, + 94965.90340529142, + 94090.45690331612, + 92687.32405817328, + 94400.56846677243, + 94532.99011271482, + 94838.88278888688, + 94912.71843664766, + 94702.53619375687, + 94259.06712940332, + 95687.5583436565, + 94745.48610069028, + 94924.7628056497, + 94836.83100987966, + 94635.31494511566, + 95171.36460552194, + 94428.00833897035, + 91875.6118444357, + 94818.5478788063, + 94803.47505405096, + 94609.06856092627, + 95243.05174065192, + 94579.1668497888, + 94710.98077661607, + 94636.4031377064, + 95594.04154313843, + 94853.46116542409, + 95262.41295878915, + 94996.61867838957, + 95427.51893881544, + 95141.30835602302, + 95135.73958053072, + 94811.20964058898, + 95308.98963794683, + 95213.77887412795, + 94550.01100453151, + 94616.6585852082, + 94915.01791906256, + 94779.60175355068, + 95651.87929649846, + 94969.43121341393, + 94871.66004225804, + 94698.2564749882, + 98122.6370414771, + 94609.75573408123, + 95744.51531875192, + 95569.49080974681, + 94553.34862649688, + 94068.90013805934, + 94911.10914154527, + 93841.09081628201, + 95055.96301467503, + 94973.76103672285, + 93860.33853556491, + 94666.08189515283, + 94804.05777877627, + 95192.48874345585, + 94682.03972500942, + 94318.87336662205, + 98071.86657727559, + 95074.67859421566, + 95052.34933786246, + 94847.03071224976, + 94712.39449672872, + 94681.03509595625, + 94662.70335696908, + 94530.9667988148, + 94394.743184273, + 93236.21560331441, + 95228.59152965351, + 95599.18088294458, + 92172.3185204082, + 94730.79640190289, + 95015.49625623692, + 94674.89580671789, + 95460.7576657949, + 94694.88936601186, + 94637.44384110306, + 94023.65044193376, + 94711.8919185092, + 94639.7976547818, + 94969.34668009236, + 94867.71860626241, + 94499.29954296813, + 94412.16071475198, + 94500.6446202604, + 94316.72565507321, + 94747.77428662438, + 94831.09840327874, + 94872.79287174557, + 94598.10840219341, + 94789.93569354182, + 94645.92150016353, + 94772.43466967792, + 94783.49907630085, + 94624.56371474003, + 95782.49090316397, + 94352.71458049152, + 94039.43659745945, + 94724.12280359474, + 94549.95722461416, + 95172.62949097781, + 94748.03678735308, + 95142.30696566738, + 94079.97573473441, + 92867.65170326555, + 95137.86898625335, + 94657.09089040948, + 94592.18007251328, + 91386.79521336866, + 94302.9983659527, + 95035.60486780475, + 95213.0622434433, + 95306.71022996533, + 94700.77181220899, + 94617.81259757694, + 94535.68576734806, + 94750.88896059677, + 94470.20509490756, + 94511.66669647257, + 94490.98493329533, + 94846.70037648812, + 94034.72001872609, + 94559.50779408682, + 94466.7376842554, + 95513.58278963793, + 94305.51369188944, + 94851.28150629238, + 94772.25786639804, + 94518.72288699445, + 92600.87220891484, + 94385.63245566067, + 96765.01998356344, + 94624.67668233525, + 95320.26347648272, + 94187.4208589902, + 96407.8149457741, + 93866.57023587385, + 96732.86821624868, + 95848.64233101926, + 96229.66105626737, + 98178.17510730785, + 96273.17959649833, + 92820.89814897874, + 96599.13805686972, + 95659.94479562767, + 96357.58676902352, + 95689.95404916865, + 95858.68960868126, + 95814.95649081406, + 97069.64943071302, + 95560.28088297267, + 96806.8541605258, + 96947.40675273385, + 96920.50398772888, + 96767.50358245717, + 96817.66055571858, + 97237.89195347154, + 96888.97576383248, + 97141.56965571626, + 97272.16196531034, + 97095.49525391203, + 96704.00303777175, + 97189.19276118421, + 97208.55798356787, + 97237.84080032888, + 97406.36037264415, + 97126.32920940703, + 97194.39851002919, + 96183.9812972283, + 96795.31918949624, + 97051.71285679028, + 96645.4446535775, + 97016.89968225527, + 98970.15914526228, + 96164.31165177577, + 96955.80310269099, + 96766.57575414197, + 96880.45975619479, + 97320.49185837018, + 96510.18842656737, + 97003.43303968408, + 96660.51533943972, + 96966.02647052168, + 96859.70450714213, + 96932.30642163414, + 96852.77079415339, + 96081.2975453023, + 97015.25817987997, + 96839.05193444177, + 97817.707556705, + 96743.47300321168, + 96633.1960028662, + 96915.22190900354, + 96645.1229128067, + 97004.95986761729, + 96566.99750987656, + 96241.34047154605, + 96094.8508150237, + 96329.29923380495, + 96303.92041500923, + 95909.7739787418, + 96400.51278286969, + 95574.39534418302, + 95694.79665191291, + 96078.87408767999, + 96745.54904144225, + 96885.45509832901, + 96570.03585592323, + 96847.7893432129, + 96580.26314007488, + 96283.38222595652, + 96330.75641404516, + 96505.76788267054, + 95933.78130606312, + 95969.93628717288, + 96241.8368167467, + 96516.24082699847, + 96352.37619288662, + 95977.4908427389, + 96086.9490860762, + 96094.51833331272, + 96758.39095887466, + 96034.32749733706, + 96026.76816689323, + 96158.4488359556, + 96031.66005598055, + 96864.42186310086, + 96587.15552488458, + 96788.89525885877, + 97189.5131054329, + 97669.69791198618, + 97278.5656163335, + 96896.58750176255, + 97154.72425616732, + 96987.80225378742, + 96695.54475332797, + 96726.40817559678, + 96767.46602322998, + 96813.4343547639, + 96791.18101461837, + 95389.10664694483, + 95472.00274613315, + 95935.5419641612, + 96253.58305118927, + 96263.70637434645, + 96534.04849627241, + 96198.74714645866, + 96023.10216322435, + 97066.1566770924, + 96512.6439304231, + 96656.65493202257, + 98642.78682170947, + 98026.80584910973, + 97317.9470175812, + 97558.53189592143, + 97354.04987112107, + 98156.10361722215, + 97559.12810431966, + 98672.80035077463, + 97608.46722365031, + 97720.70350653208, + 97761.99442165645, + 96752.4665017377, + 97746.8391580485, + 97819.4972376039, + 97811.11864279254, + 97693.57749236286, + 97735.9507021614, + 97384.36803091576, + 97155.80752875579, + 97787.10318478926, + 96725.27797613826, + 96656.51605951994, + 96621.34244090467, + 96787.80852813035, + 97481.5752702023, + 96763.64967872995, + 98517.20808727229, + 97409.50882998393, + 96746.40104686156, + 96387.0378486012, + 96137.27428645456, + 96447.65576692639, + 96500.05485471405, + 96602.41413482858, + 96347.26384012886, + 96798.05259841571, + 97123.64353111561, + 98810.40128605721, + 98748.83379870633, + 98766.84037371344, + 98595.68155874425, + 95432.28216788654, + 95102.33265077158, + 96969.06747778888, + 98047.49514396398, + 97477.31474980435, + 97384.80366070305, + 98571.74309474658, + 95476.30474211962, + 96247.39210484998, + 95988.61012463992, + 97164.97647400496, + 97510.69098668513, + 98349.87077216271, + 98009.1006468227, + 96860.00354930486, + 97218.18359466371, + 96532.6513290047, + 96476.99449429182, + 96460.3440809962, + 93363.71919768747, + 93502.02146333765, + 93218.26568575818, + 96605.96850560357, + 96834.80703834713, + 95965.26838759349, + 94954.26355620637, + 96061.1094111204, + 98472.89573129527, + 98477.25442843478, + 96663.3347349886, + 97182.40630309808, + 98498.41434807747, + 96705.80879914662, + 96932.7889750408, + 96884.50148839512, + 96614.16469347998, + 96666.70966909935, + 96700.68589331902, + 96643.9005120101, + 96541.9681406362, + 97087.54671590365, + 96751.41823297429, + 97088.14880740178, + 96691.22132401943, + 96809.66561279182, + 96774.85380189044, + 96773.12113524246, + 96537.39245144221, + 96631.60109535737, + 96479.84660377468, + 96957.50399046045, + 96802.58799326436, + 97026.39229748285, + 97321.50714071444, + 96685.14736048535, + 96659.44539572205, + 96476.29445285945, + 98504.94937934296, + 96505.43473450017, + 96630.14481112546, + 97079.77003968997, + 97164.16435672548, + 96758.34868779706, + 96814.38545725966, + 97131.06442362265, + 96587.63072624992, + 96701.44181961339, + 96868.32753094017, + 96485.2623043036, + 96544.79575713704, + 96879.06539514555, + 96650.5251142157, + 97056.66087663827, + 97018.7876594228, + 96726.97841332003, + 96785.79342645025, + 96719.79877048176, + 96500.3647531615, + 96920.00376965974, + 96805.25180958064, + 96511.27388316976, + 97143.69979917424, + 96785.52822630318, + 96751.7242293975, + 98488.89658362548, + 96527.82964364873, + 96815.18595416151, + 96727.94539580634, + 96877.61190695128, + 96674.53853073626, + 96755.77967969238, + 97629.85915951653, + 96896.55417266351, + 96874.61155723894, + 96781.7373211774, + 96671.25152661269, + 96934.94898597764, + 97005.77074047142, + 96964.78110583073, + 96640.3915108683, + 96561.11544487227, + 96787.83212641206, + 97117.91370467145, + 96752.7630566314, + 97904.95870247688, + 97287.61876639193, + 96977.41506513029, + 96672.9812022687, + 96586.3268270632, + 96797.33031385214, + 96770.78381407568, + 96767.69056492882, + 96916.62444917303, + 96736.187248987, + 96497.40326486343, + 96981.69606403777, + 97757.99670975313, + 97360.13554374868, + 96792.24969134637, + 97386.8040364756, + 97041.45585776801, + 96624.01938254207, + 96974.28350714296, + 97156.22383491664, + 96954.62064886169, + 97046.79482101345, + 95844.28052724677, + 96795.23928720718, + 96772.56610132441, + 96821.18944890518, + 97037.54167528427, + 97304.17187437204, + 97045.7174310999, + 97031.3088470609, + 96973.7313647934, + 96827.27721865964, + 96836.63104835567, + 96915.11359133502, + 96603.10265344591, + 96572.35122948136, + 96562.71215702499, + 96669.45654037285, + 96608.97450213194, + 96780.12324046777, + 96759.8367076845, + 96729.07888575827, + 96451.36476325426, + 96426.58864894029, + 96654.61006042475, + 98502.39684963804, + 96710.20852553143, + 97529.59178857305, + 98492.45967203799, + 97097.47714912827, + 96949.62066620833, + 96872.36708461096, + 97572.7954448912, + 96534.13113359883, + 96670.03282167818, + 96915.56474058192, + 96690.79996780091, + 97081.73959470788, + 96645.28675952984, + 96845.49984264001, + 96791.42873166909, + 96848.6019348336, + 96653.33167046132, + 96798.09730894824, + 96830.20824198317, + 96974.68588435129, + 95329.09589374838, + 96625.20312840438, + 96583.08101942415, + 96848.58357963007, + 96685.21610856292, + 96647.86296497285, + 96749.19177745887, + 96667.27172199388, + 96915.00366898013, + 95683.09108910317, + 96463.21403142411, + 96884.74639022724, + 97951.06604016566, + 96603.17113805444, + 95950.60579597944, + 96582.65960470523, + 96864.74890763631, + 96899.74561231451, + 96767.43202743762, + 96984.0156607433, + 96697.59306293263, + 96742.76428952735, + 96935.54268135317, + 96991.60346683899, + 96580.8583468943, + 96480.30494028228, + 97026.73007218333, + 96873.58873560156, + 97214.28101702654, + 96962.13430709024, + 96445.14131578358, + 96952.0852964525, + 96485.30175383571, + 98188.17126174309, + 98087.3338631131, + 97264.08371499478, + 96567.84669526415, + 96692.64254266855, + 96954.5126568193, + 96442.24721615986, + 96675.1674827983, + 96911.71700742826, + 96559.09520602223, + 96964.90990095795, + 96368.1267297445, + 96354.29226248538, + 95704.0871202312, + 96138.82096969092, + 96702.30104154837, + 95863.078617055, + 96928.70418989572, + 96875.43456713467, + 96712.85163544948, + 96210.68445716402, + 97643.43217333438, + 96875.38177626212, + 97277.67379891923, + 97650.21348938807, + 97380.97035221593, + 95912.88033660327, + 96875.44858847588, + 97090.26472678532, + 96986.78948010856, + 96355.34401319342, + 98484.83314214389, + 96480.80058099459, + 96582.01402568171, + 96882.04031575473, + 96747.25944879792, + 96853.94619098958, + 95902.58151687872, + 98205.92395781298, + 97674.61704340234, + 96816.42131470822, + 96625.30102032366, + 96574.89605254125, + 97026.03297053343, + 96755.84845242432, + 96494.99482485962, + 96639.0949732792, + 96550.01108530164, + 96575.31613115326, + 96810.72873758491, + 96896.94014138209, + 96693.47055992209, + 96951.68482481911, + 97105.86446933058, + 96683.343489294, + 96700.50651493037, + 97613.5093531771, + 97632.10124528216, + 96831.69055597908, + 96828.99548296859, + 97813.18960016311, + 97805.18437428074, + 96640.17245945708, + 96731.09231285357, + 96542.83564645311, + 95421.91735289371, + 96934.21301456064, + 96053.80630400538, + 96579.76590487406, + 96621.95641731111, + 96695.15836873942, + 96467.60417095249, + 97510.01962082756, + 96836.22412942452, + 96686.3684942306, + 97774.42866113664, + 96427.1842433544, + 96602.9455448259, + 98341.41820230329, + 96759.39098466327, + 96654.14513994215, + 97094.20573290615, + 96534.89129183585, + 97845.68054608024, + 96714.32338601344, + 98362.46614454236, + 96555.05094020838, + 96417.4243506057, + 96624.55409529047, + 96913.27672047008, + 96613.64565810803, + 96882.63562796098, + 97785.31723795002, + 96921.65832155356, + 96574.44776110545, + 96722.32663398494, + 96695.61808666041, + 97113.91196565128, + 96976.68282643448, + 96054.400615084, + 96278.15788483768, + 96861.56370770434, + 97796.07080948977, + 96611.246762707, + 96530.79253993953, + 95901.82083235442, + 96962.41375364321, + 96900.49410984787, + 96440.3614255588, + 96738.66732022622, + 97200.14076518768, + 96926.75612600744, + 96651.84522301337, + 97627.58936686792, + 97563.98838997139, + 96560.8916778657, + 96729.69482051903, + 96715.7628390581, + 97379.01812972916, + 94485.92993817783, + 95302.46268343864, + 95505.88427993505, + 95182.96656441354, + 95083.07696160226, + 95260.63775038713, + 95343.04710668822, + 95077.9137547502, + 95200.52568374142, + 95457.42674465815, + 98692.43143064567, + 97571.51683328462, + 97573.23040616274, + 97722.41636121254, + 96711.97005754894, + 98202.27708314388, + 97820.56830441093, + 98259.11178546748, + 97235.2488696914, + 97297.7274926661, + 97293.5203062695, + 98708.3190257109, + 97802.97859779913, + 97828.5668503006, + 97770.18528248275, + 97622.16011647054, + 96887.45716809586, + 97090.03432996322, + 97697.42848707616, + 97701.66892815946, + 97585.79298176516, + 97486.26616142577, + 96505.5934631506, + 97579.4448614383, + 97691.63703682291, + 96515.60149309262, + 96526.16766938524, + 96542.88730412883, + 95826.70973681552, + 95195.45569059276, + 95229.32767677493, + 94971.08522590312, + 95259.91296974945, + 95151.27865865134, + 95457.42579193789, + 96625.91253011048, + 96650.26887770933, + 95953.43758977612, + 96414.9173008834, + 96657.44331032071, + 96774.09206013042, + 98370.08752364217, + 98185.39228188255, + 96866.57408532791, + 97930.86589331932, + 96177.19856058512, + 97176.04373508078, + 97153.25597882869, + 95838.54674259001, + 96532.8341303869, + 98997.74271020413, + 99362.59751327203, + 99276.9196152002, + 99226.83402346286, + 99522.14887276676, + 97465.09518672612, + 96648.9363700922, + 97362.29677323089, + 97352.27827718583, + 97314.13790026988, + 95480.79812433262, + 98668.36393861687, + 97838.4175081634, + 97754.15865943547, + 97387.10298484987, + 97017.6751012583, + 97715.03542524244, + 97428.2088550206, + 97045.79560002222, + 97717.63943455054, + 97512.25460842131, + 97068.03081922044, + 97443.46951981564, + 97329.89355877684, + 97519.79955646732, + 97844.94572301708, + 97678.1464428742, + 98526.54572504741, + 98430.07797759793, + 97500.16873207534, + 96981.97321773143, + 94617.5959694371, + 95301.3607194778, + 95227.77092314835, + 95402.52158220478, + 95276.97798041081, + 94853.13681242797, + 96019.73206058989, + 95949.12131101474, + 95997.16066474574, + 95427.65531943327, + 96645.63733017922, + 96622.44802724649, + 96637.20944908995, + 96402.067408069, + 96546.81074094832, + 96396.69753430235, + 96935.23882458691, + 96582.14749337402, + 96220.7703218342, + 96871.32320011256, + 96963.41552878823, + 96210.59439600962, + 96315.24613181091, + 96028.2888002032, + 95489.22963590887, + 95828.46924619444, + 95482.44304451962, + 95066.06523441382, + 95488.52095752831, + 95505.50501741502, + 95397.10356995185, + 95504.42605081353, + 95949.84954429526, + 95510.02889292239, + 96156.074298552, + 96344.83157727902, + 96192.16190696902, + 95914.16367038043, + 95991.06452640316, + 95745.4694082097, + 96072.76062132008, + 96296.57518040262, + 96237.23840449286, + 96100.16964314734, + 96577.18594978366, + 96564.47351993735, + 96768.15156923435, + 96405.88036665124, + 96370.19303826737, + 97545.38850460328, + 96249.72659060232, + 97705.70304050583, + 96647.32091240633, + 96573.99731256816, + 96536.36409486223, + 94888.48155674861, + 95501.8125864358, + 96398.60994140033, + 97087.09725827706, + 95858.67269394762, + 94889.58026607656, + 95744.0722676581, + 96539.2876843912, + 96488.71126504915, + 96574.07459048775, + 94476.68554039652, + 94952.05763640381, + 94960.14806309502, + 95868.93237525053, + 95844.61270594754, + 95987.03936165375, + 94066.51607848209, + 93976.18462674941, + 96358.25249911078, + 96321.80373689976, + 96114.11946368766, + 95768.86401324993, + 96245.67690227392, + 97449.2228277016, + 96919.80862750238, + 95714.35022151601, + 96636.93741201112, + 96668.40960032, + 96517.34543879435, + 97008.15894636505, + 96807.74423569046, + 95387.72814612064, + 95418.41077655359, + 95472.67938384521, + 98114.52152816013, + 98111.97280969669, + 97753.21078683695, + 98142.06219207752, + 97488.66800355395, + 98144.87686544789, + 96528.57510021586, + 96901.55938078823, + 94256.97992301545, + 94390.62485294472, + 94474.18506646619, + 96818.20189981317, + 96638.80405463175, + 95888.00973910451, + 95799.49717635973, + 95761.360020285, + 95802.05331128874, + 96973.49939574185, + 96633.26092124682, + 97052.8332660283, + 97011.81451068369, + 97113.70285257122, + 97210.3004088966, + 97188.26787866931, + 97056.56327204366, + 97626.44431224155, + 97350.90150160708, + 97162.69508453069, + 97817.20098235017, + 96022.18132064518, + 95680.02527851156, + 95894.41366117746, + 95794.3620644187, + 96845.07860198681, + 97276.29878619949, + 97481.0467852597, + 96200.64224390368, + 96069.95563247148, + 96759.80185472532, + 97151.48266936177, + 97525.66398682565, + 98129.8335044742, + 95869.4969027973, + 95947.6612354604, + 97219.2344849453, + 97524.9702327776, + 97462.76341227313, + 97570.78852224046, + 97965.90473223805, + 98426.11814680099, + 97400.88013760047, + 97830.50425286932, + 97563.51909740941, + 97959.05424320973, + 97250.30982328247, + 96876.62587606598, + 97177.84417040872, + 97044.98522321004, + 96890.44446357607, + 95746.74077759727, + 95514.38455692613, + 96085.91161839501, + 95540.81075134124, + 95161.64737314533, + 97743.37633435942, + 97368.18786729996, + 97400.16397729573, + 97615.97056569872, + 97788.7651245566, + 97923.16505107327, + 97749.77214743374, + 97737.47168433828, + 97643.42074759667, + 97749.29069670282, + 98137.79198213125, + 97782.44112987598, + 97566.10709216155, + 97247.41509419652, + 98703.6866543077, + 97300.96068285858, + 97415.93818773415, + 97789.92707115466, + 96750.40498635444, + 97809.32654645263, + 97809.59302628535, + 97788.58031988013, + 97768.46861576667, + 97504.52578621544, + 96578.02421964555, + 96409.96532967011, + 96325.12988946559, + 96767.96478692938, + 96753.02617057231, + 96869.39684947954, + 95763.40443589797, + 95719.63523794102, + 95771.1095203462, + 95203.1376507783, + 96270.15699232905, + 95244.0575474311, + 96476.2244248884, + 96533.83917036175, + 95627.6655653288, + 96487.74751288781, + 95709.93291907338, + 95658.32063821593, + 97536.70985088356, + 98229.18483310309, + 95989.76467211267, + 97600.72228126202, + 97959.01602952153, + 98371.01061870782, + 97789.64547242364, + 95737.0210501743, + 96247.5730261708, + 96716.89120782126, + 97052.70205106144, + 96826.71329736618, + 96991.17451689237, + 96760.3513556949, + 96464.55718535923, + 96534.278171482, + 96405.88296277358, + 97516.13365436997, + 94593.1532092616, + 94062.66633331862, + 93616.21500771031, + 96780.96571153034, + 96527.45528447787, + 95617.05222697879, + 96115.57754246322, + 96350.897783121, + 95713.33557938566, + 95448.68746731608, + 95293.92851935429, + 96424.48707246192, + 96049.17164979059, + 97200.7730276014, + 97446.90168966807, + 96440.9774229316, + 97474.17223906965, + 96627.09595023748, + 96508.0649915055, + 96252.73601927159, + 96912.8602518081, + 96640.9561634297, + 96548.78849614567, + 97092.6033555316, + 96137.93531003897, + 97681.82650463261, + 96900.36956234596, + 99054.93251049488, + 97621.5308801509, + 96840.81091989319, + 97398.68149419299, + 96052.90997742687, + 97140.91541633583, + 96883.35271778212, + 96961.63219735424, + 96593.15685874, + 96942.49668912489, + 97329.44637332104, + 97283.72077280736, + 96411.51796021752, + 96339.24938310328, + 97736.94813016456, + 97910.96993785165, + 96786.0414096176, + 99128.8683145138, + 96211.67174914089, + 95720.51419720666, + 96607.09318109117, + 95599.53684369884, + 97078.78573950223, + 95886.98258580548, + 96463.65900406071, + 96509.39820433313, + 96509.4296845907, + 96099.61138898744, + 97122.96681206446, + 95950.47769478709, + 98675.12932763455, + 97289.15046436754, + 97014.53523334138, + 97526.53767625983, + 97181.11827309501, + 98660.63217404629, + 98412.44821844941, + 97765.48056752425, + 97130.87354039263, + 97611.64317798252, + 96607.81846515763, + 97565.68134613338, + 97878.18936700777, + 98088.69457083048, + 102537.64337792993, + 97336.72314742803, + 97384.85502032931, + 97739.50461726454, + 97790.18756915494, + 98423.75905911079, + 92914.29701391104, + 94521.0965568673, + 96813.45598094136, + 96835.92874774396, + 96172.09176973494, + 96100.97014585767, + 95705.40993449507, + 96827.38300101372, + 96461.24693139427, + 96535.82894445845, + 96054.16110461712, + 96003.46856538253, + 96117.67522368413, + 96380.27321562011, + 96039.52555482746, + 96091.70581400175, + 96269.04428473447, + 97245.37390852053, + 96333.93226534751, + 96524.6669755778, + 96558.43883318681, + 97209.46385807885, + 96281.59320080571, + 97334.199382075, + 96164.9303846309, + 95667.80679021226, + 95658.32343165908, + 95648.34307354958, + 95901.87035986596, + 95796.6220412549, + 95732.4030502184, + 96335.57621806604, + 96407.22560594323, + 96440.07084499848, + 95514.95574487532, + 97442.1178182285, + 96871.98342831364, + 96189.19527054564, + 97753.78297929207, + 96341.35508815081, + 95819.77591622746, + 95836.41008943335, + 96259.9082581497, + 96624.18025269137, + 96595.38846744089, + 96273.9014736457, + 97698.15736668535, + 96237.38326345755, + 96272.62459980143, + 96297.69636707871, + 95372.37969661041, + 96464.1710890281, + 96300.0043841075, + 95976.46298115156, + 96423.89730001795, + 97225.12273154467, + 96380.40661308727, + 96196.257368652, + 97687.97327166176, + 97764.93718471118, + 97964.99194759796, + 97077.67459906588, + 96053.464316358, + 95950.13199504191, + 95847.60434582221, + 96119.17908740342, + 95905.42580827077, + 95919.99780721203, + 96185.37627813521, + 95946.3884071162, + 96244.27988515895, + 96196.74025182828, + 96174.10171537164, + 96538.8108213843, + 97589.77077865561, + 96255.53165206172, + 96989.12139942696, + 96386.3485642869, + 96209.17705200447, + 96404.94279951866, + 95582.13652811556, + 96075.92114230867, + 96933.47649225005, + 96208.32555016727, + 96486.76296481364, + 96310.8706914388, + 96156.77295171334, + 96208.35637264428, + 96987.0677801975, + 96412.81309344785, + 95605.5078529397, + 95576.46893477392, + 95889.53071914573, + 95560.7221366576, + 95552.49574202929, + 95550.8641318485, + 96405.3198620752, + 95915.425645233, + 96264.80700176922, + 96174.34018844058, + 95670.97648775595, + 95372.88665283406, + 95667.97156819428, + 96281.8187118494, + 96786.33551603762, + 95652.45140521994, + 96204.29166956923, + 96273.36385473177, + 96163.50814490586, + 96142.15372609507, + 96246.21706337249, + 95604.22358935632, + 96630.39978608028, + 96866.28592075064, + 96564.72992711587, + 95596.36627113551, + 96182.32358713142, + 96286.66809125463, + 95814.45750461605, + 97301.69481913165, + 96886.2262880243, + 96912.85156473947, + 97085.38663455553, + 97355.69179208958, + 97043.19055357405, + 97406.83103336953, + 97508.64091238416, + 97596.85822151981, + 97281.93703232154, + 97339.53315472855, + 97182.15385952276, + 98255.45010528169, + 96708.5597033612, + 97342.9103563253, + 97298.42341187966, + 98020.16838808233, + 97476.84212265511, + 97585.2552421273, + 97850.09960847285, + 97800.77052809988, + 97497.40137546581, + 97172.85679925286, + 97230.27471512488, + 97465.08902518246, + 97572.7293771363, + 97060.83487204376, + 97373.64682205649, + 97530.9950602946, + 97230.78206970361, + 97683.2450611929, + 97367.93418176113, + 97194.9145170215, + 98030.3922687115, + 98164.50513674611, + 97211.33338583425, + 97167.07602680264, + 98102.01760177093, + 97473.4025173577, + 96869.55087283194, + 98618.6314379455, + 97980.37305163042, + 98040.98610521741, + 97099.06003533595, + 98609.76983635421, + 97732.09002327014, + 97154.99065747266, + 97218.35146138504, + 97299.95816584109, + 97626.13132471772, + 97112.35613433391, + 97560.98718189307, + 97185.7097878747, + 97559.13458489727, + 97201.16002150408, + 97516.02947908005, + 97270.02110151788, + 97433.41068898393, + 97833.68675936971, + 97325.64609840355, + 97103.12815964877, + 97473.72704771126, + 96893.86441244776, + 95331.67170746473, + 96586.20076828018, + 96137.68930318531, + 96950.1808551135, + 96390.43113801478, + 96858.54175843939, + 97167.39841072715, + 97743.58448295263, + 97449.0985514171, + 97642.36452938811, + 97990.33956338989, + 98636.37989407925, + 97499.45757321935, + 97494.95806383107, + 96707.92401672102, + 97387.15964980441, + 96595.88973241366, + 96547.16032979287, + 96300.87116130441, + 96004.06807647034, + 97343.70893048414, + 98022.64385800273, + 97909.08890877801, + 97379.30529940335, + 97912.68866754905, + 97483.5508578201, + 97453.80616460227, + 97390.56459064402, + 97854.95892464767, + 97689.45585714692, + 96459.9064706218, + 98220.8617121839, + 97896.16988465277, + 97276.66123026267, + 97720.29522867472, + 97988.47049740942, + 98169.99665670788, + 97706.1575554865, + 97314.87265253808, + 97929.82001151697, + 97928.27341274354, + 97607.80752654132, + 97786.29869250092, + 97805.14139405916, + 98093.39526957169, + 97448.93124443709, + 97659.20648661858, + 97773.13707838414, + 97290.81332207196, + 97691.44923546405, + 98040.70809859729, + 97682.17810885303, + 97902.9875639131, + 98103.51583993803, + 97433.16878255778, + 98011.69742537098, + 97956.78235187841, + 97712.75424892707, + 97337.3673240496, + 96357.32745947987, + 96262.42166171632, + 95826.03997621946, + 98066.1726574899, + 97701.3804478227, + 98084.85055027793, + 97165.59160948182, + 97482.29772041427, + 98201.32974009505, + 98883.68742329624, + 98667.49767503393, + 97488.73626458432, + 96010.7115980084, + 96872.15210964113, + 96379.22200820879, + 96906.24888628504, + 96854.63537850163, + 97264.45498533218, + 98010.49563338193, + 97612.43902974202, + 97623.61756268641, + 97499.04801278567, + 97608.46277176453, + 95934.14872105536, + 97455.35219073194, + 97335.19348886795, + 98225.34302642361, + 98229.77888928792, + 97482.53862767345, + 97276.46828922024, + 97499.88151314572, + 96299.26984037684, + 96500.32458861038, + 96778.83528846483, + 96483.80491367223, + 100136.85344995526, + 99551.68465587133, + 100437.39062185503, + 99551.98543303015, + 99562.25712118535, + 99359.06703624275, + 98574.50972172228, + 98538.96596090084, + 99762.90131115422, + 98977.8256826855, + 97325.59157415244, + 100141.87894949828, + 99845.35414701192, + 98971.68304848456, + 99673.93123472382, + 99291.99320881635, + 99276.35931151945, + 99120.91791864607, + 99397.55134035554, + 99184.60882109228, + 99142.08519452307, + 99316.2243501031, + 98622.91972235353, + 98628.35943001318, + 96995.58808119217, + 96874.32517213062, + 96984.11595684849, + 97109.16179890749, + 97136.19437689305, + 97491.9260662067, + 96362.21507081333, + 96805.5627237504, + 98078.46725482005, + 97340.80449807804, + 97488.0322813689, + 96435.9592073502, + 97411.333447029, + 97430.46651931974, + 97362.69630546733, + 97147.4098591697, + 96935.63520473371, + 97289.22073553668, + 97850.12598200802, + 97597.36616865019, + 96412.37649005053, + 97375.63672739729, + 96830.34367432375, + 96727.0857416317, + 96968.7576874346, + 98028.98765417963, + 97254.19037202669, + 98343.20918176853, + 98178.54170307206, + 98199.86102071151, + 97744.85805549823, + 98056.94048479544, + 97951.56325025932, + 97888.06964139262, + 98115.52004533702, + 99023.4635169911, + 99401.61250638886, + 98987.744183523, + 99579.00966292991, + 98635.38198452107, + 100098.40192877872, + 98017.95961808166, + 99022.78768529206, + 96435.29713124092, + 96931.12324851674, + 96463.50079272543, + 96120.0822298696, + 96240.44430881485, + 96101.99869734746, + 96315.36819369205, + 95937.25203342551, + 96235.33414286007, + 96530.33748860421, + 96182.08723044166, + 96258.26403190757, + 98709.8651975024, + 99109.15521458666, + 100640.4787093486, + 100235.20982182995, + 102213.573130387, + 100665.20298807592, + 101380.72545035236, + 99856.27897972005, + 99786.36456658994, + 99683.00699846164, + 98812.91818171015, + 97843.27029212235, + 97728.72992702796, + 98904.72563619397, + 98942.09530630929, + 98891.2416273708, + 98417.88816057792, + 97988.12714007127, + 98185.14683392025, + 98502.26373555082, + 98563.51548863579, + 98515.43976060345, + 96994.13649214181, + 98899.25788886541, + 98911.1768536842, + 98350.05034462475, + 97442.5837413775, + 96877.27316989908, + 96504.96941037805, + 97237.72508581873, + 99586.27547231995, + 99232.31835984743, + 99900.79355708066, + 99953.84555270121, + 100010.22175620866, + 100488.19339995636, + 99050.91600599952, + 100300.1455608082, + 99125.08385354279, + 100865.26021198924, + 98730.97463170756, + 99515.36066611517, + 99419.17564342206, + 98962.18713370281, + 97366.57493092174, + 98539.96016607621, + 98539.20822724189, + 96191.69901840627, + 96265.19900264395, + 95997.27711720114, + 98500.0361551715, + 98246.11805337203, + 98850.07485794366, + 98011.22054926708, + 101377.60794729496, + 98957.24165577488, + 98961.50436798272, + 98935.5010496066, + 96824.95283232043, + 96894.77232507731, + 97119.02524363514, + 96134.33859468818, + 96133.66483574735, + 99362.4122499512, + 98980.06656171624, + 98577.91639424925, + 98301.5427103644, + 97911.65322441417, + 99947.23103246646, + 99525.32125049765, + 100615.97017651156, + 99091.59936505146, + 96193.09435285682, + 96209.32610496953, + 96157.43262757578, + 96039.16378214146, + 95666.6047695683, + 101027.38756222327, + 100491.07919538966, + 99965.07519503396, + 98540.85216934852, + 99052.2124935182, + 97895.64290700338, + 99076.34984414672, + 98336.60564073424, + 98674.7174457713, + 99271.76461161645, + 99265.99329452899, + 97961.22502344675, + 97330.30197024634, + 98153.0005023464, + 97996.06129807832, + 98230.51101716988, + 98279.26861206899, + 99626.79604297405, + 99000.02707953496, + 99142.62317278316, + 100188.52114244823, + 99265.28429092855, + 98832.24946054372, + 98597.7964869281, + 98557.67286605883, + 98374.27664176481, + 98475.73906360153, + 97731.41157443785, + 98308.24242195391, + 97840.92878276923, + 97886.2552796078, + 98672.42439807321, + 98993.730905672, + 99280.86800505298, + 102128.56689301181, + 105318.17245295613, + 101417.57039700724, + 102629.20595000873, + 100636.49150263055, + 102559.4749251737, + 98019.20026379389, + 99501.46206268593, + 98810.35406462688, + 100839.09741193936, + 98877.03574041717, + 99714.32506825263, + 99140.32285163709, + 101435.76546972904, + 100379.20660771398, + 100494.1604689617, + 100444.83349810736, + 100171.78786335049, + 99691.16026545654, + 98069.36909948081, + 98992.20989010415, + 99218.7411313723, + 99412.54200822763, + 99155.63016872654, + 98981.42825942171, + 98756.61116861763, + 98771.61564503152, + 98894.44972464189, + 99331.7744747594, + 97816.61219866003, + 102530.11405078055, + 100158.43034755554, + 98870.69224118859, + 99495.77993367877, + 98896.60676749866, + 99061.38220264099, + 99749.23255553393, + 99863.46008168485, + 101253.85143735835, + 101066.18080243433, + 100833.069541554, + 100216.65510336985, + 101097.55034226578, + 101618.20433424404, + 100357.48060133551, + 100059.12439104206, + 100338.86353601632, + 99586.51857910478, + 99951.0659012268, + 97856.81262960663, + 96575.13863198814, + 96162.4303606248, + 95209.07740315559, + 95825.30565065744, + 96286.13541218151, + 98427.35866005206, + 100540.34287442153, + 97698.73432565104, + 104834.05247099117, + 102345.37784253916, + 101736.15467046229, + 102333.66889929863, + 100557.2821983049, + 99212.64656167013, + 98977.62128580881, + 98312.73735572214, + 99304.290069593, + 101567.70440058614, + 101580.24476163396, + 101735.09643628406, + 101809.73928647002, + 101785.06810363055, + 101573.83309184245, + 102953.17211273103, + 104198.31260714601, + 106233.53305936579, + 102017.0341341957, + 99527.77886408713, + 101917.25635551335, + 101976.86435161783, + 100243.014205219, + 99932.49537425906, + 102190.88209432086, + 100124.12507747632, + 101885.99912176745, + 101697.96826814402, + 101829.23480550414, + 101522.08525588791, + 100597.08688634772, + 100353.70323921503, + 102178.3682577673, + 101779.84963144422, + 99852.88185831445, + 99990.35940967675, + 102063.12360975276, + 101781.56537819619, + 101749.04159536793, + 101634.82305426827, + 102437.23538334639, + 101962.97098059615, + 100466.67560792255, + 100113.74493313026, + 100858.32947002299, + 99975.85497357504, + 101430.14405480694, + 102278.80486131168, + 101812.8020162423, + 101588.15862456126, + 102563.3206054858, + 100748.96797238242, + 101678.99297077536, + 100750.28187529245, + 101454.990611554, + 100838.817421307, + 100730.67229205805, + 99990.30313700912, + 102022.7910616867, + 99646.19840781609, + 99629.49033305429, + 101905.45676874653, + 100837.07785367471, + 101545.97635361711, + 101489.69453765085, + 101743.09284030006, + 101836.64612097175, + 101856.42797018508, + 101839.95878378669, + 101729.67598101968, + 101661.94211903469, + 101780.85634799347, + 101558.64005120956, + 101330.36334771957, + 100698.24029410268, + 101614.75611960207, + 98644.28600268529, + 99737.09642278514, + 100879.74390370514, + 101077.31846050268, + 102156.91580320336, + 101765.97063868862, + 100219.71623880966, + 100725.71208858925, + 102143.24639139706, + 101792.06935951588, + 101942.69325653883, + 101650.40513567929, + 101988.60520862282, + 103450.9949418264, + 101511.31310826991, + 101648.40427836328, + 102018.88919342995, + 101741.66784545634, + 101581.9987428239, + 99468.2559944489, + 99601.83878035982, + 99603.45577850576, + 99040.76425546396, + 99172.24243406764, + 99528.31511285559, + 98769.65877246718, + 99287.60100382363, + 99475.57144267684, + 98297.39646140915, + 97418.97603097925, + 98936.37152899419, + 99182.20687722552, + 99227.14373040265, + 98821.68699083632, + 98717.22176373757, + 98584.01431051758, + 99272.0781529895, + 97965.80143681738, + 98982.5031332364, + 98027.13708713652, + 97615.38809747441, + 97503.33387121037, + 97752.58113868252, + 98136.58032128063, + 98061.10715277967, + 98614.1806245494, + 98136.20709255511, + 97999.91203126067, + 97958.47457130344, + 98009.09509648604, + 97850.60195378115, + 98005.5574452993, + 97776.72898296927, + 98631.78626191251, + 99140.68926056154, + 98536.86418508874, + 98910.03636312029, + 100242.68992519718, + 97891.04268537596, + 99023.62442100499, + 98951.56237964176, + 98742.84185261693, + 98636.11447862479, + 98715.24476448026, + 98700.92429371181, + 98641.93221348678, + 98583.13027911846, + 99072.54185715798, + 99135.47449879821, + 97232.70911561699, + 98615.37677009653, + 98917.96441057288, + 98434.35971075694, + 97681.16946907644, + 96856.72362255462, + 97895.28004870834, + 98831.79765712937, + 98438.58130728804, + 99371.02994235742, + 99231.0427929239, + 99676.63268184493, + 98900.44369968983, + 99700.42917263086, + 99577.40761315082, + 98426.5533743314, + 99776.94011289947, + 98899.60200925548, + 100154.96563673523, + 98520.33361422195, + 98367.5384870807, + 98334.70594223429, + 98691.85046989784, + 97255.41454495481, + 97352.47846420809, + 97313.7618367065, + 97296.61777493556, + 96665.07370474232, + 96859.96292458837, + 98321.87992748909, + 97182.47078555363, + 97884.83964830039, + 97540.60877193058, + 97276.55612119116, + 97459.95104458535, + 97893.0352520524, + 97962.17985493861, + 97344.09093533971, + 98205.86697164566, + 93644.68272986174, + 98101.62417688777, + 98271.36712487994, + 97452.24353701598, + 98361.52070775314, + 98166.8451977046, + 97487.35358808235, + 97647.87367032644, + 98497.56819029221, + 97393.78304664446, + 97502.76078478833, + 97564.08079360449, + 97516.18869947606, + 97435.17397362897, + 97736.81995700866, + 97446.32329700516, + 98582.527096305, + 97809.54483551205, + 98878.34647466309, + 99154.02606674639, + 99172.02697912694, + 100490.49130040826, + 100142.88953715774, + 99388.84212708821, + 100563.74448489815, + 100746.00755669444, + 97652.12794157442, + 97864.25906949551, + 99227.43848031209, + 99361.9255445475, + 99174.69010994876, + 98657.9373151273, + 98047.59460307116, + 98808.2037529869, + 98641.99704060325, + 98573.86688152544, + 98037.7546833775, + 98063.33951976198, + 98238.09327133199, + 98454.91999809204, + 98622.72131256308, + 99683.02342130439, + 98748.13851273438, + 98736.6487431001, + 98461.56188963, + 98591.3906492825, + 98735.88204679007, + 98760.83345788409, + 98669.98695044409, + 98554.81272175781, + 98551.32201482294, + 98537.48831459216, + 98994.10656357431, + 99119.57616554244, + 97344.39651735617, + 98722.34383571171, + 98882.4958894141, + 97303.13866203713, + 96302.24669832372, + 98647.5348287252, + 98608.5215316511, + 98222.80841969991, + 98819.65784093091, + 99036.66961313797, + 98624.20331564605, + 97819.31095483244, + 97721.18147869087, + 98271.70807917252, + 98519.86918764931, + 98606.63667538292, + 98519.39123710812, + 98765.77024442171, + 98568.58464013341, + 98724.09688274346, + 98551.33786774045, + 98642.19574069705, + 97931.34716549548, + 98666.49334653927, + 98631.64406060676, + 98838.9801057053, + 98827.92913925355, + 98790.2159527499, + 98181.72232625872, + 98063.19422735604, + 98475.91698744615, + 98570.43191653062, + 98455.4277807688, + 98813.72618994876, + 98846.89766234448, + 97228.42625405909, + 97394.11022522849, + 97532.22883965746, + 97344.33342659262, + 97272.0006070915, + 96925.47458412843, + 97092.16772009524, + 97209.90565041362, + 97856.84020013195, + 98009.61286792412, + 97211.79938472387, + 97045.9347960569, + 96871.14124722035, + 97372.91158673672, + 97023.36540561469, + 97191.67156979971, + 97414.64038417542, + 96885.06814180473, + 97914.23819876518, + 97340.71979094419, + 96805.4528033362, + 97391.61070686534, + 97277.04466695724, + 97953.10373989804, + 97109.44347958003, + 96731.40431617344, + 98037.69686647393, + 96844.05757802, + 98053.21280174737, + 97454.12338544696, + 97565.17353076243, + 96943.34146960913, + 97216.68390135047, + 97325.96467730298, + 97320.6256117, + 96737.12013794533, + 96149.9240314162, + 97714.7246102844, + 97723.43671189145, + 97537.88311195365, + 97408.99246023723, + 99182.43123350566, + 99265.87966805445, + 99944.07306174988, + 99900.64834271275, + 99812.21227412489, + 99420.92430477343, + 99177.62291174373, + 99488.52585196453, + 99587.48173322152, + 99937.87696465585, + 99591.60747183427, + 99048.9116417464, + 99607.88973258882, + 96915.07628650902, + 99990.2370091159, + 101343.89990262453, + 99709.43474110542, + 99222.80666593021, + 99744.15222602605, + 99679.73750040874, + 99788.15934489542, + 99889.87039027306, + 98529.60002690525, + 98918.42807769222, + 99077.64957318998, + 97845.28481450288, + 99041.95245865517, + 99058.18978821568, + 99443.36056428892, + 99938.9075507464, + 99123.1886578178, + 98975.4583568785, + 96764.93858259599, + 97558.91318648357, + 97906.28247623073, + 97718.55252171961, + 96152.1057643561, + 98062.51604299857, + 97964.38553712035, + 98023.44519196717, + 97561.8035357872, + 97762.95601633764, + 98326.83556515438, + 99016.5581620588, + 99240.9405426935, + 98641.53479851007, + 99095.8319111279, + 99642.41138351153, + 88590.85511713462, + 95956.16594891516, + 95103.80826824161, + 95849.92383113039, + 95705.12403974576, + 96150.57574768981, + 96295.31083736721, + 96244.53594836782, + 95503.21802046116, + 96107.21446370435, + 94297.22907899908, + 95769.18345824692, + 95854.58816461003, + 95472.03336553831, + 95497.96761435788, + 100266.60888331049, + 100515.1022038416, + 100780.13173749707, + 100275.49487326102, + 99308.59414610175, + 100993.81994431307, + 98998.48843958214, + 99497.63865967996, + 98414.55375540078, + 98275.0868761614, + 99287.0655957827, + 99168.38311213651, + 99294.3343501885, + 97827.76197200979, + 98414.55316263932, + 98257.85820299109, + 98418.17015609592, + 100175.0607969374, + 100123.4034196032, + 99203.1995445626, + 100259.94700165218, + 99150.71873965448, + 99176.45733464141, + 98536.71552534091, + 100486.68654940001, + 99798.83508838428, + 101233.72050294731, + 100304.51471837264, + 99369.55175238507, + 99459.89574901403, + 99497.65911985919, + 99334.08753749864, + 100439.05341443338, + 99891.87571608167, + 99787.73624613034, + 99837.0082125705, + 99338.62761306738, + 99398.32512040935, + 97937.7823995534, + 98960.49823630943, + 99134.05776587574, + 97772.18600703926, + 99187.00950581132, + 99076.17431450075, + 97063.32877705898, + 99009.06890021921, + 99244.62898283631, + 98895.86594871506, + 101287.53163759898, + 100667.31521747577, + 99440.37140141985, + 98829.92293140064, + 100008.8185640341, + 99630.27697060951, + 98199.99210205229, + 99364.76795754352, + 99587.45269788787, + 99204.80764182155, + 99472.18090796605, + 99584.74778173275, + 99446.27946308655, + 98780.33197584302, + 99746.53204017173, + 100408.86536513967, + 98968.71992266763, + 99390.22164459903, + 99420.43636760573, + 99004.39514221971, + 99328.58010501186, + 99704.67044515068, + 99356.71931442092, + 100275.50143084832, + 96938.66295867188, + 97964.63401886185, + 97535.23793520761, + 97420.7621020905, + 97390.08288766422, + 99574.3677856123, + 99273.85480193101, + 99615.64332690387, + 99572.0458167728, + 99982.59484908597, + 100442.43446705127, + 98917.55283849573, + 100405.62380636072, + 99264.01286919507, + 101880.18878218585, + 101201.13786259948, + 101261.17342969753, + 100802.37593631717, + 101061.65052979656, + 99928.46775743726, + 100746.53951262421, + 100868.33657813334, + 100812.8197399703, + 101531.87027489231, + 100295.24230126226, + 99417.48192028531, + 101239.75080883966, + 98930.33399893016, + 99586.53541170484, + 99162.91558583234, + 99368.70015947068, + 99328.89319402496, + 99358.76293373808, + 100016.85978108921, + 100664.31901839633, + 99767.26452719056, + 100029.98747600272, + 100412.32402265836, + 99065.72480630428, + 98156.27282406032, + 98227.70254427848, + 100038.33560601297, + 101143.74462846812, + 98467.10096591972, + 99388.04981308476, + 99160.28669960532, + 96279.30869943406, + 96388.18293816505, + 96692.27028903799, + 99054.46710922422, + 96793.04034680343, + 102477.24885418148, + 99962.03299582665, + 99408.87948140925, + 99568.49510955371, + 97652.86342630182, + 97627.2235694482, + 99106.21684464924, + 98595.84891148518, + 99156.63257376007, + 99241.701769924, + 98691.20212375972, + 97995.16766578473, + 97878.09063826728, + 98401.52424464934, + 99578.9140767699, + 99232.9372120856, + 99103.70219305377, + 98247.25370404207, + 99183.89896358912, + 99108.02772477719, + 99457.6410217742, + 97381.90305652776, + 97539.68362575934, + 97454.32557679321, + 95643.87509548519, + 98164.19533467619, + 98940.87869445772, + 99064.5138791314, + 99697.0870632984, + 99422.03795312622, + 99658.1811796683, + 99310.43005941642, + 99291.88291924677, + 99357.41168283236, + 99519.81617905492, + 99461.9154620648, + 99503.27823687728, + 99428.27940191151, + 97479.47272277385, + 97966.35131578807, + 99676.52384181802, + 99561.79056971268, + 99432.35372583236, + 99446.59225735396, + 99428.01341337721, + 99232.69699144822, + 99392.972033571, + 99460.35192451965, + 99250.82737975198, + 99528.08669879334, + 99236.5763742713, + 99339.81667170062, + 99356.35133098044, + 99311.28191822488, + 99347.20154555528, + 99326.09755068594, + 99398.38474298466, + 99425.06404185461, + 99459.37878349259, + 99293.81229317529, + 99329.49500884015, + 99294.94935916096, + 99397.89778849662, + 99370.73468447644, + 98364.9237598564, + 98314.28463324666, + 98297.57158816028, + 98299.16730691226, + 98488.44888265227, + 98341.92538182945, + 98498.18579690327, + 98221.26321802658, + 98440.65799241852, + 98505.26245324187, + 98273.63810369174, + 98449.01702979534, + 98458.30573058059, + 98435.56007553921, + 98828.88194167838, + 98734.89174003295, + 98753.36326823733, + 98738.05385712087, + 98806.68843808728, + 98927.51583449688, + 98809.76404802127, + 98831.44278769466, + 98721.32609049382, + 98611.23290157397, + 98554.33836951133, + 98662.26737231707, + 98569.50298295039, + 98444.26480191355, + 98440.84097603508, + 98388.22622587845, + 97562.5173703681, + 97659.90156596046, + 97539.18470334534, + 97562.28204297766, + 97628.5805035853, + 97532.78555592157, + 97521.31251635685, + 97457.12642131757, + 97469.56881373974, + 97463.881171705, + 97266.57307609903, + 97538.36994649333, + 97506.04706104075, + 97565.8070193732, + 97567.95672647221, + 97576.65796976959, + 97433.00403301486, + 97663.14027350585, + 97624.84001903216, + 97484.1141530828, + 97600.38916390667, + 97509.90124758272, + 98185.41172751482, + 99058.37892612514, + 99224.34320360345, + 96043.45140605627, + 96074.1773250052, + 98353.82046727034, + 100096.5789219651, + 100142.84366050502, + 100114.8346992164, + 100137.00458558447, + 100088.57204356979, + 100165.51947574422, + 100131.45217606793, + 100011.84304283973, + 97683.34960749114, + 97662.15750716739, + 98531.37287469098, + 98471.56463893122, + 98391.64714900294, + 98877.55812845338, + 99029.5519099041, + 99040.32401506804, + 98939.85298657045, + 99071.00654345889, + 98134.38177364993, + 99281.8124720996, + 99410.76891600141, + 99265.15415167905, + 99570.35524851363, + 98734.64536633549, + 98817.70091073363, + 98705.86338872745, + 98779.15100171715, + 98743.88825326356, + 98722.95539743864, + 98669.66450254756, + 98727.04413925752, + 98603.20304504342, + 98657.34511910615, + 98306.9719599773, + 98410.69904555679, + 98438.62268190562, + 96262.06027998815, + 94859.96864376472, + 96176.9141455721, + 94389.95972141267, + 94306.38229315246, + 94318.7006224086, + 94419.1947747694, + 94392.82814914087, + 94389.95371194034, + 94437.83155434212, + 94218.23975158927, + 94194.02296244045, + 94008.58638880895, + 94284.66655702308, + 94573.07039112478, + 94372.80806801579, + 94272.01261469895, + 94240.6896417481, + 94249.69397963368, + 94597.4481398317, + 94435.28319563705, + 94303.52270668159, + 94178.90319153182, + 94243.63550838632, + 94421.52405973361, + 94205.67563602903, + 94202.7117129383, + 94320.52454245155, + 94293.7942434875, + 94267.58695307715, + 94495.40317446586, + 94170.06170101493, + 94211.52030884504, + 94212.18498423915, + 94330.95096713639, + 94270.53763976666, + 94390.87449225048, + 94287.89529624995, + 94446.13153450796, + 94354.97654559696, + 94346.09109533348, + 94480.69700103143, + 94273.99317481946, + 94289.85535250117, + 94170.9041715765, + 94324.79195247918, + 94132.7057344337, + 94074.80621416663, + 94249.39377209143, + 94426.37056546453, + 99555.46875574846, + 99804.62331523834, + 99331.72440120617, + 96160.81025461864, + 96205.75452273182, + 96164.94304166912, + 96091.27355284609, + 96321.48275816297, + 94366.87186140705, + 94306.37066336245, + 94529.97922971226, + 94434.94919736736, + 94500.55053658024, + 97122.97557930264, + 97100.77454563488, + 97135.42971177665, + 95489.19345695784, + 95488.26419210226, + 96125.26064461117, + 95919.73918913995, + 96370.02373932622, + 96858.89753394539, + 96901.72588249666, + 96528.33303416053, + 98392.21001148615, + 96053.05650289368, + 95450.25417539202, + 95972.78915436483, + 95970.95308075754, + 95961.04765530549, + 95722.21440872799, + 95729.23859344584, + 95670.62443730164, + 95481.39560671317, + 95340.12961580537, + 95303.17115160594, + 96179.6045501681, + 96109.17619897892, + 98530.61451075874, + 99053.41371146425, + 98605.97144397798, + 98976.19477847009, + 99267.27734915515, + 98691.31264841248, + 99232.44990568829, + 95257.82795586446, + 95506.86434038139, + 95292.85212499998, + 95262.32950182882, + 95354.57773115158, + 95458.13438059368, + 95385.3428089936, + 95209.67552481889, + 95311.77032987887, + 95444.61330598006, + 95242.05024879698, + 95252.43928937333, + 95381.14361410459, + 95333.87765260295, + 95351.0489158062, + 95195.90565530288, + 95297.633034384, + 95303.90705774128, + 95447.04817351245, + 95285.61582132381, + 95322.42512021921, + 95176.15417191545, + 95381.0517074507, + 95282.61728466298, + 93231.70305331911, + 92347.74753772338, + 92216.72434555799, + 92252.47720808198, + 92256.07675212514, + 92324.31396892523, + 92415.17834135809, + 92206.14403308384, + 92211.31836481478, + 92294.74860434067, + 92140.90020542977, + 92009.28930966396, + 92188.30662763724, + 92240.06832701992, + 92136.26649392476, + 92061.4858642193, + 92117.94874151466, + 92301.20739485609, + 92270.44173942773, + 92476.04624218972, + 92274.0842380315, + 92200.11384624743, + 92129.61464772673, + 92107.99155216134, + 92264.89531600794, + 92190.23091480859, + 92280.17186758008, + 92407.87747716965, + 92369.8251914418, + 92374.2328896316, + 92478.78012790662, + 92448.86611308221, + 92122.39984355103, + 92167.2011910307, + 92206.32328236508, + 92300.72398965452, + 92070.91719750845, + 92186.0226881958, + 92274.32072505055, + 92248.01639772087, + 92251.44929818394, + 92394.22447395853, + 92291.97074429669, + 92316.73871688145, + 93059.16988490241, + 92393.6617867084, + 92300.0455267758, + 92200.82708603864, + 92217.13863978007, + 92191.01154073558, + 92088.59875338602, + 92096.45991653283, + 92152.5004987375, + 92189.78925848598, + 92182.36073816268, + 92079.45570088438, + 92255.84570257005, + 92107.85643126183, + 92402.8943849796, + 92140.52812030239, + 92230.18841609285, + 92240.46970884116, + 92092.02752181761, + 92122.01120625601, + 92515.26142917994, + 92299.43199008808, + 92191.80914221446, + 92289.3106433427, + 92278.89223268858, + 92314.80079542873, + 92239.59355543758, + 92214.87566884019, + 92350.96560856364, + 92319.24278973592, + 92120.59934842995, + 92402.46333965527, + 92395.55800703372, + 92407.26663431138, + 92170.76494797798, + 92149.3896272451, + 92149.07451227563, + 92362.9412919757, + 92072.22295952133, + 92165.8074200398, + 92264.4950612678, + 92321.76859128801, + 92243.35934066583, + 92240.73151292205, + 92351.74121802478, + 92212.58705155137, + 92261.77315785893, + 92272.0976249191, + 92458.16706063351, + 92337.92067785797, + 92369.46596237014, + 92309.11050830808, + 92348.91301035674, + 92158.63274311995, + 92359.01992750082, + 92422.06859334902, + 92294.31157988217, + 92285.98502461443, + 92247.55109256034, + 92072.40823846689, + 93217.65623676107, + 92298.84256798221, + 92143.44554872952, + 92114.55881212364, + 92388.34112005818, + 92104.1575179089, + 92178.4738757029, + 92211.68105250059, + 92417.7595950224, + 92171.84482602276, + 92237.57093869668, + 92088.96846171409, + 92070.41065231868, + 92187.36681509153, + 92370.404557384, + 92280.5187113803, + 92077.55009881165, + 92097.85089890493, + 92250.68960775186, + 92229.6510093099, + 92124.28625739494, + 92277.44419006346, + 92112.15601888165, + 92236.86729316006, + 92298.52245461594, + 92326.23605654163, + 92131.71539503698, + 92327.35935856824, + 92170.31098093353, + 92316.82956297412, + 92136.64050642017, + 92132.58089114129, + 92087.82568701153, + 93923.1020165203, + 92128.44388904206, + 92165.08700529874, + 92146.48937205561, + 92224.22667915009, + 92276.97318654209, + 92179.81064205624, + 92230.56984005714, + 92194.68123738615, + 92303.61592663793, + 92259.52032100408, + 93895.03036091999, + 93891.5498056317, + 92106.50574246883, + 92274.69795367589, + 94839.05921223038, + 93892.18559051274, + 92216.84531759286, + 92223.28407935618, + 92322.9398265956, + 92181.57577859817, + 92125.35754151737, + 93909.45243357617, + 92156.29947048516, + 92363.13694954333, + 92241.1538857497, + 92198.72093061345, + 92277.94262352257, + 92348.27216643172, + 92100.12237040915, + 92224.97120305183, + 92162.6663993115, + 92267.80885625147, + 92161.25150030805, + 92495.77534289319, + 92351.52551961424, + 92338.47796412221, + 92326.41795009529, + 92329.20324077769, + 92222.80917248885, + 92314.41985868117, + 92256.26836982086, + 92503.48875709479, + 92496.54476011512, + 92375.68912132124, + 92217.9630178079, + 92295.27871363045, + 92243.55514949372, + 92333.49401411432, + 92265.93497688345, + 92296.90882344653, + 92161.89029910951, + 92322.08469817725, + 92243.26218856651, + 92187.51445774999, + 92167.8995244472, + 92093.71003634819, + 92159.09530130218, + 92196.35201010661, + 92189.73775652013, + 92143.18325545135, + 92385.10208996975, + 92347.33566601481, + 92429.41868813094, + 92212.81898397961, + 92479.64231084207, + 92459.66524880938, + 92426.13656796042, + 92476.16358429435, + 92423.07228620039, + 92180.50690094149, + 92532.19153863966, + 93914.93502816484, + 95497.05276392102, + 95837.77507526969, + 95812.4154540912, + 95698.50564941308, + 95628.40799309613, + 95158.67040196666, + 96060.05473969401, + 95255.10891653616, + 94509.72194374804, + 96214.29567174465, + 94269.50089276706, + 95029.52467561196, + 94894.02889160464, + 94921.09641509663, + 97015.94024530961, + 96924.78320992363, + 97343.47929912621, + 96837.76873429003, + 96961.74738516554, + 95318.86888176948, + 96858.8259365058, + 96993.28565305514, + 96943.63194993603, + 96906.35772752426, + 97022.69247553179, + 96984.5487179883, + 96874.58922306824, + 97747.21900755091, + 97417.73753495087, + 96969.69441581002, + 96968.60153243598, + 96747.02345144031, + 96601.21280775112, + 96977.1650347663, + 95368.49227674282, + 96056.0944855474, + 95618.32230128575, + 95004.62236427962, + 95064.92563679993, + 98235.0876506272, + 96972.87752214319, + 98629.48902981033, + 96378.79458742414, + 95285.84544380629, + 95335.33394613424, + 95380.30317238574, + 94292.11046783296, + 94317.6587058325, + 94322.88661735097, + 97023.15247734636, + 96535.8616409643, + 96055.6245428955, + 97606.17229012403, + 97591.89461364681, + 97576.71628926601, + 97500.32823463708, + 95328.50872682448, + 95300.26526034814, + 95271.0473357906, + 95510.65824351287, + 95347.32880997096, + 95271.44501622175, + 95372.15228673177, + 95421.30035086887, + 95244.81624951023, + 95442.41664362849, + 95478.64369343246, + 96410.03307549134, + 96493.56633299332, + 97178.27508498696, + 96593.2717327048, + 96302.94937464621, + 94729.26537341278, + 93861.98590665219, + 93956.15973323683, + 93878.00338465307, + 93852.65938610463, + 93796.41706922535, + 93912.14907894815, + 93783.06450327153, + 93830.40835361417, + 93845.20569222173, + 93805.02916709852, + 93848.69468485197, + 93895.12691645266, + 93783.44722599696, + 94214.94588328559, + 94397.66514778201, + 96850.54600123651, + 97426.74158915173, + 98273.0404411526, + 95786.36719281576, + 96349.92934443918, + 96338.35038049635, + 97199.92290572009, + 97155.05669738412, + 95179.22795563574, + 95203.19322201304, + 95656.42468831391, + 95242.50683299675, + 95206.90394798008, + 94585.54283407258, + 94154.85813823475, + 94158.20929334633, + 96493.32238421563, + 96459.46741135049, + 95059.96146767413, + 94963.37886006157, + 95002.6752162217, + 94048.93199379041, + 94005.1775320185, + 96603.54230227087, + 96550.22153001573, + 95756.08622571501, + 95809.09217161969, + 95836.83724442031, + 95850.76938404588, + 95103.97227801211, + 95376.11147143133, + 94581.3224656246, + 95103.11342187891, + 95124.22218566947, + 92179.36209571654, + 92342.1647082602, + 92343.11266496578, + 92385.80051301901, + 92363.17729310234, + 92415.46817355568, + 92371.34679188945, + 92059.19945228689, + 92254.26120896422, + 92258.94206324218, + 92289.21560844104, + 92203.64139679476, + 92294.99886701563, + 92211.95592517799, + 92290.40010143537, + 92313.0809202976, + 92271.08130189306, + 92439.0785089486, + 92230.63025610495, + 92342.20159560516, + 95229.32911955088, + 95801.8797460325, + 96674.53315191732, + 95572.39553147889, + 95678.9898490588, + 95564.26772175558, + 95634.67560640232, + 95662.54958325467, + 95532.36565291665, + 95726.21465473025, + 95560.55284189491, + 95996.56462555612, + 96851.12729283779, + 97062.67817875755, + 97050.47210070032, + 96833.70570836318, + 96978.96277123882, + 94491.85479096157, + 95699.64251087462, + 95709.03021955737, + 95708.33665371903, + 95679.00902682092, + 95559.50076204128, + 95428.96196267167, + 95512.51691874191, + 95606.9735303453, + 95541.43426055746, + 95436.21133694542, + 95649.54902588758, + 95474.01595310215, + 96107.19415896157, + 95523.28532488653, + 97550.03779670106, + 97677.43610441216, + 97734.7750819923, + 95917.55516884955, + 95318.33825288666, + 90398.13563399928, + 90219.83557956429, + 91850.72333799597, + 89955.4720743023, + 90351.7003485438, + 90158.81527667675, + 90225.72064624407, + 89808.82616084766, + 90236.17206468161, + 90345.96414554433, + 90101.23951609244, + 90156.48155842807, + 90238.81562165567, + 90188.37121588881, + 90049.82466375276, + 90839.86000529061, + 91522.46011082169, + 90426.59718746592, + 90364.49650618425, + 90281.57249944574, + 90204.0364488624, + 90325.97959319454, + 90286.08327358324, + 90368.68853514639, + 90131.89700646249, + 90264.36843072166, + 90283.73132984444, + 90409.54204067939, + 90176.72383861212, + 90161.34034330312, + 90174.19097516667, + 90380.46228281433, + 90216.7935701221, + 90187.72273738508, + 90302.22760431943, + 90255.81325412332, + 90227.9318507897, + 90174.31006624116, + 90292.82642272265, + 90147.69829486302, + 90117.02379395122, + 91536.18144472227, + 90098.56959740954, + 89715.23360905857, + 90344.20893913148, + 89977.85792588338, + 90346.25928401393, + 93971.80265598431, + 93725.28554114306, + 94503.96161457393, + 95594.78680514084, + 94607.68459209791, + 94463.72063775688, + 96274.70146604127, + 95919.43239973261, + 95888.00363924424, + 96021.01935869602, + 96206.3567727413, + 96297.63544971858, + 96577.88292402872, + 96449.49416274708, + 96851.49702075154, + 96605.92981897558, + 96610.6899973968, + 95921.81597746578, + 95352.39749037023, + 95951.33594695487, + 96000.54859558669, + 96016.9478340095, + 95554.52104992175, + 95956.77118384998, + 95898.63188323451, + 94864.12017348492, + 94921.19423968834, + 94905.71651342275, + 96730.61407259232, + 96570.65933290092, + 96917.55039066126, + 96845.31383705071, + 96840.67852705196, + 95879.40264413109, + 98181.70136908787, + 97942.41927684227, + 96298.20404774172, + 96248.82270435392, + 95834.40863293177, + 95196.70952197771, + 95434.60009253638, + 95758.46272512361, + 96465.93766629184, + 96426.6308128287, + 96344.06072109731, + 95589.36755805337, + 95645.64475087512, + 96102.93297875019, + 96051.58400350752, + 95926.45987169421, + 95981.8380794005, + 95863.15308642662, + 92001.50766754647, + 92027.61116900106, + 92046.7336558993, + 92065.18747125892, + 92110.36261703623, + 91950.95461604063, + 91977.1495556531, + 92128.61766596325, + 91970.65586338179, + 92031.39064637528, + 91978.95777114196, + 92020.2457296412, + 92043.62147273764, + 92010.16427467186, + 92075.75618980045, + 91997.46138215279, + 92025.17432984301, + 92003.87296399754, + 92024.14688175863, + 91941.05744628322, + 92012.21830510841, + 91983.68058223181, + 92359.994086341, + 92252.86309783008, + 92240.9291961559, + 93601.82710520699, + 93704.10085908513, + 93676.77584347574, + 93661.20734278191, + 93572.23203515264, + 93625.70846719111, + 92241.75189417685, + 92167.78389298257, + 92172.4868795517, + 92131.47925758659, + 92080.57228640377, + 92106.30235506344, + 92074.75278618281, + 93012.08801458759, + 91759.60493933014, + 91728.37308978925, + 91695.65516466298, + 91789.34078452658, + 91675.77505537764, + 94374.02538445908, + 94284.29614613004, + 93859.39002647411, + 94016.84050671507, + 93290.35075837071, + 93239.54198428936, + 93194.79788029785, + 93167.29040070769, + 94178.18816955703, + 93974.14793620263, + 88433.87275134888, + 88488.9677441534, + 88681.03188674754, + 88416.20611550778, + 90542.60014879846, + 90633.14423891409, + 88780.30091689393, + 88617.30277926706, + 91035.5356559428, + 88448.45707614523, + 88512.19912209532, + 88538.9357978122, + 88341.69152456298, + 88232.54276009464, + 88526.83874423045, + 90308.66677680974, + 88752.36011236151, + 88666.7899021117, + 88403.96346659532, + 88409.88494323137, + 88454.76601265534, + 88505.90920258727, + 90506.38154973468, + 88392.5213902953, + 88735.10471964773, + 88700.42226535387, + 88681.6166974444, + 88832.50791438138, + 88374.23866379407, + 88371.18539682371, + 90426.63438770593, + 88802.81744936632, + 88762.5516918854, + 88642.14476996369, + 88687.33186073622, + 88594.12361541514, + 88718.94151298529, + 88689.16209595407, + 88481.38487480863, + 90301.01400148685, + 90255.91067155173, + 89890.53693961547, + 88646.405400081, + 88460.59624312277, + 88662.00249888693, + 88593.18598690111, + 88700.42324644516, + 88348.35258534538, + 88456.28864332136, + 88677.44885952266, + 88297.34186598746, + 88438.77445915592, + 88308.76253998597, + 88499.31790626561, + 88332.66197764105, + 88521.66032586683, + 88371.9394417322, + 88577.511326891, + 88386.19130325745, + 88432.37386953307, + 88378.7527447044, + 88382.83955964923, + 88546.40237874411, + 88021.3313163512, + 88493.2869392708, + 88405.61962417421, + 88454.34943629967, + 88566.55855702402, + 89972.49873713554, + 88550.03063889778, + 88419.76541763252, + 88378.89271930164, + 88237.63395624454, + 88472.27472068885, + 88737.91876166544, + 88302.25676877188, + 88514.96038148971, + 88472.68228221488, + 88493.61718394952, + 88309.7146296434, + 90148.49574146973, + 88287.05815100021, + 88319.4266756192, + 88282.5637571512, + 87989.01476337237, + 88484.61843123702, + 88385.38652624989, + 89987.53509523951, + 88505.4208955274, + 88485.92827793986, + 88584.32409483784, + 88536.5206651761, + 88256.36741000491, + 88339.50119407185, + 88456.82832726875, + 88530.42214878742, + 88406.3825486083, + 88387.08445144663, + 88396.28713695996, + 89893.44601705468, + 88517.61498493739, + 87977.76471736658, + 88722.83102403955, + 88558.76222645218, + 88306.03062874613, + 88420.84523966677, + 88344.8994181755, + 88449.00053664087, + 88336.30616370424, + 88363.98890529925, + 88362.60096382422, + 88443.99015417385, + 88757.2798999845, + 88351.58373475226, + 88368.07534914711, + 88419.7763521424, + 88717.98407653676, + 88510.42562080965, + 88333.83107669742, + 88626.58763266775, + 88575.9765857017, + 88462.28754139256, + 88836.0395482592, + 88772.68794489409, + 92326.05008512983, + 94654.22636982724, + 91425.09657158966, + 91464.44246274077, + 93586.60219175594, + 93589.13427337709, + 93025.56253717483, + 93034.93635287281, + 93553.88735328836, + 93542.87285605638, + 88968.22841893525, + 89006.03684621748, + 88902.85749665603, + 88694.73273373555, + 88770.11669048374, + 88998.95831050201, + 88813.18253923993, + 88807.29535139979, + 88862.87020210146, + 88940.35813020635, + 88719.986854473, + 88711.95391512648, + 88913.67134750067, + 88905.29290337257, + 88873.49606990181, + 88916.1146409448, + 88887.42693829109, + 88900.39227011942, + 88819.47647571407, + 88841.7144230516, + 88731.15785205181, + 88785.30435031383, + 88873.64041918014, + 88933.35245799503, + 88955.37715307146, + 88808.07844121536, + 88809.71225972423, + 88863.25925664409, + 94860.41464315419, + 94809.74353848188, + 94777.2045280774, + 96939.7130296957, + 94790.8883359463, + 93872.05455515652, + 92974.08923397369, + 92975.62503977149, + 93543.4657580988, + 93550.85862261364, + 95158.97987464583, + 96139.27193844452, + 95170.22302051753, + 93012.70424918424, + 93101.41065007175, + 93188.73658225981, + 93292.01518114925, + 93186.47665709791, + 93249.55171832144, + 93230.54525820872, + 93293.69529485346, + 93607.57338921969, + 93661.48037279883, + 93725.33213726954, + 96597.50409519735, + 95126.694711038, + 92466.47847824058, + 92535.67420110614, + 92479.67380046048, + 92541.5954277938, + 90840.63104534974, + 90788.74294845924, + 90875.6428904946, + 90812.108525863, + 92149.08818936435, + 92087.71439256778, + 92108.66912483661, + 92681.49462860484, + 92747.5621721967, + 92691.1433270897, + 92791.81273491016, + 92719.98650968332, + 94573.11174744362, + 95371.14507899206, + 95269.93601523693, + 95369.79664452869, + 95330.20659727942, + 95325.98290048962, + 95235.74548951366, + 96013.28219965815, + 95978.47329230273, + 94947.27988796636, + 94782.50222163898, + 95039.5427914881, + 95219.10848713045, + 95358.80808645669, + 95508.54286055514, + 96315.39006631782, + 96299.4257154321, + 96324.02566311863, + 96341.18862444937, + 95444.91699836003, + 95430.31650863758, + 95963.35252743993, + 95950.12484352986, + 94323.88976489022, + 94155.83031897117, + 94968.90121085287, + 95036.54824379871, + 94992.26340793457, + 97076.61983324688, + 96380.28781055969, + 96092.05767088226, + 95100.65954684408, + 94781.2730137387, + 94831.67940813194, + 94764.71974508195, + 95259.89220700655, + 95156.78944128797, + 95163.15549537959, + 94170.72543593975, + 94320.5506287159, + 96375.81406263121, + 95990.14658034967, + 96033.27978527645, + 96375.08693072088, + 95820.50112482975, + 96395.33356184303, + 96133.76841832312, + 96101.04541256488, + 96184.81566043793, + 96417.56965551627, + 96292.33937952145, + 95321.40374411321, + 95359.2518454773, + 95235.15461115303, + 95490.83892107032, + 95403.87461645668, + 95434.7813506805, + 96371.23865707997, + 95702.34904687658, + 95689.63925251232, + 95363.8470448223, + 95438.12140415871, + 95345.12725289499, + 95719.3642560631, + 95438.74775398536, + 95393.95134463186, + 93915.67461247394, + 93732.40501876744, + 93831.28229164788, + 93834.4304251869, + 93865.36020794926, + 93949.04960582733, + 93901.58796403631, + 93754.51928787447, + 92474.5549875663, + 92541.10114222545, + 92446.28882658892, + 92510.9837965274, + 94168.00712644817, + 94172.93686658355, + 94268.51034477568, + 94227.88799197409, + 94355.93471701951, + 94060.02601500099, + 94116.26661644941, + 93924.85503905709, + 93949.14419789072, + 93974.50929033541, + 94022.64738997868, + 94312.32437986055, + 94051.66774220605, + 94303.31563802196, + 94003.54982743006, + 94114.32655875513, + 94224.29742863894, + 94131.8182179843, + 93936.37370318927, + 93915.56085404499, + 94104.85477585437, + 94222.09750375483, + 94080.12193720396, + 94175.05303484979, + 94204.20735933605, + 94013.74433073374, + 94149.10075483979, + 94062.23950461214, + 95192.18878450526, + 93981.06452822298, + 95563.33831763349, + 95618.71418981701, + 94626.96443060684, + 94961.9962390448, + 95076.82444005845, + 95302.82737421893, + 94608.169715756, + 94206.32696510479, + 94702.36469871723, + 94705.08946322266, + 94658.895114909, + 94569.80280676277, + 94562.66790889218, + 95304.43340131296, + 94531.31783311481, + 95269.88551286564, + 94541.46811159214, + 95149.74263120122, + 94634.25352044987, + 94697.40319410026, + 95091.92395340849, + 95319.99368080994, + 95301.58079947837, + 94630.39551651504, + 94671.14260908996, + 95089.3896773708, + 95119.73813153236, + 94738.65685272905, + 95068.25673894, + 94781.31937846432, + 95154.3406437858, + 94802.3325423315, + 95105.70316558772, + 94684.28311529913, + 94632.70398735556, + 94708.44547790081, + 94740.06561864995, + 94763.51786066609, + 95220.63167603598, + 95125.54875547701, + 95496.13470559087, + 94594.42687159672, + 94583.94583527962, + 94651.10560516508, + 95257.08556364443, + 94233.59693590023, + 91689.9156042627, + 91738.548395977, + 91731.93216887595, + 94346.78033378352, + 94509.829510502, + 94528.48663855526, + 95506.25933017024, + 95430.9598185061, + 95449.77751377337, + 95494.87912905395, + 95513.21245708983, + 95579.25511783695, + 94746.96208609876, + 95141.50071030506, + 95088.00070197124, + 94796.34837723445, + 95207.54728400431, + 95025.28048977467, + 94994.04487668724, + 94992.0641380479, + 95157.97425899161, + 95210.51266443045, + 95112.69654287952, + 95348.00113621198, + 95311.6100058997, + 95220.35730467142, + 94453.87661400346, + 94459.76663652401, + 94569.99639898865, + 94696.38127915138, + 98503.89968845964, + 98983.70522113536, + 99185.65099595927, + 94437.58770435351, + 96186.25940182169, + 95520.96662625948, + 95395.53490697088, + 94387.90834024789, + 94410.44611369238, + 93880.06664422291, + 93794.95552713104, + 93814.6764577686, + 93852.0802165827, + 93786.27794848467, + 93980.98038158142, + 93927.0380831745, + 93831.83215691491, + 93816.85717412099, + 93831.55273890407, + 93936.66881951372, + 93733.53483031287, + 93809.10347709683, + 93678.44099698958, + 93545.624365582, + 93583.48935321181, + 93682.62756255489, + 93720.49376390997, + 93726.85416195451, + 93591.16938927768, + 93615.88912627882, + 93645.7254103945, + 93599.67154470751, + 93654.30749236245, + 93605.45062289166, + 93708.17232055379, + 93763.43794093031, + 93657.34150918727, + 93697.51676275049, + 95064.46859551649, + 95028.79614965661, + 94844.43317012727, + 94937.32394773186, + 94924.00711887507, + 93657.58783554945, + 95006.34673042681, + 95224.50298112346, + 95223.99348673313, + 95299.88393052109, + 94552.30907971856, + 94023.50845498776, + 94125.37702876132, + 94255.77571819822, + 94147.09026993293, + 94169.13660636239, + 94222.65689644325, + 94957.93426395227, + 94472.20709603677, + 94381.42463040476, + 94416.07502472983, + 94281.54409115564, + 94178.83279139998, + 94123.58147436914, + 94169.09157518268, + 93015.76333927791, + 92980.63941319492, + 93190.70549325118, + 93064.87393138207, + 93000.29090602277, + 92946.26333688904, + 93038.8296421908, + 92995.61564696342, + 93144.43447376601, + 93078.77497255687, + 93051.16869735178, + 95258.80445753322, + 95466.86915914767, + 95404.96015034568, + 95494.47921018649, + 95449.45774232612, + 95522.29842584215, + 95456.8754665219, + 91949.46390404372, + 91994.60911809147, + 91936.03318656498, + 91983.70759391226, + 93839.98245358566, + 93844.24306124111, + 94547.62330964052, + 94952.15918284946, + 94890.1592037714, + 94345.9720338772, + 94362.73267824408, + 94269.5283596859, + 94207.67763929271, + 94157.53706668493, + 94258.38524216403, + 94301.50601815798, + 94011.00694174618, + 94125.6503238661, + 94227.34616572867, + 94084.08394396056, + 94070.50563286559, + 94443.56661107884, + 94660.23703662696, + 94668.42135385043, + 94046.68004288743, + 94235.41587667502, + 94273.344864104, + 94123.19936245674, + 94159.63225677669, + 93803.9261679241, + 94011.724964968, + 93912.59330061535, + 93887.16917253478, + 93760.95419201358, + 93925.82530456611, + 93850.32814637737, + 93675.33911678942, + 93883.462303006, + 93742.14334667072, + 93961.40036485184, + 93887.34458601507, + 93903.3407406927, + 93734.96333262778, + 93941.18935024734, + 94636.41241915552, + 94424.21404328254, + 94373.86923886793, + 95545.38485611489, + 95182.95535517084, + 95071.09472843911, + 95167.69616974294, + 95087.78815059502, + 95126.89613229115, + 95523.23375784527, + 95227.46258123794, + 93916.134535691, + 93951.52721964949, + 93984.68193482122, + 93969.89886979104, + 93882.34010171027, + 93865.27925415388, + 93881.61720809246, + 93830.32747505195, + 93936.57704354505, + 95276.48776626095, + 91231.8196566484, + 91261.04328066683, + 91175.1502515188, + 91142.8260071247, + 94013.0077053391, + 94164.54504032315, + 94054.4416632055, + 94131.90713162518, + 94172.7395942074, + 94893.15089322784, + 94968.92914391636, + 95030.19357548543, + 94320.32001232714, + 94336.05564681457, + 94380.74487902022, + 93805.49685278744, + 93892.59177818336, + 94412.0451565415, + 94426.17357284379, + 94263.86673325008, + 94213.89118970706, + 95385.88848111703, + 96063.61237925281, + 95341.12102532042, + 96073.62002048118, + 94137.00646966182, + 94156.0229058292, + 94202.4207189329, + 94092.44030875542, + 94059.33759986472, + 94176.47708516316, + 94052.49870231381, + 94927.69438379064, + 94849.39986806002, + 94784.33169676425, + 94810.54708687005, + 94919.62429869157, + 94869.35010821253, + 94919.67840200933, + 94717.01718778357, + 94734.90055663262, + 94806.90127093442, + 94767.73807259565, + 94857.13685431078, + 94793.2995046325, + 94413.67065318272, + 94351.82055805538, + 92287.18461593246, + 92344.79587415236, + 92395.50229122411, + 94066.70664866947, + 96912.3840775932, + 96822.83077029923, + 93971.70006909678, + 94000.24913714765, + 94065.67460043577, + 96311.95742018387, + 96345.35938061375, + 97943.74694094929, + 93715.32177876253, + 93690.44395530979, + 93623.24293961626, + 93777.92905171037, + 93416.58217755376, + 93808.8134274846, + 93712.4167533155, + 93499.49299289202, + 93651.07722955113, + 93712.05135609517, + 93668.71539308506, + 93703.36126922605, + 93717.46592200446, + 93805.61396749513, + 93587.67456189399, + 93667.50755458296, + 93740.32595024593, + 93621.50782413344, + 93609.40652498248, + 96149.34956899607, + 96056.31431413464, + 96243.90733864102, + 92712.65686256441, + 92665.20903578005, + 92658.25067258794, + 92707.16684414347, + 92610.96365711992, + 92772.00915250067, + 96880.93597578706, + 96861.82056450349, + 97158.96712629191, + 96665.38767001704, + 95475.64319973848, + 95529.20616248925, + 95568.54842738589, + 97014.70310115164, + 96807.5317976019, + 97177.016571983, + 97043.85947589722, + 96885.77229318066, + 96885.52179751407, + 96955.75725837208, + 97336.92046433868, + 97244.56993259059, + 97323.01083840418, + 96979.26259545963, + 97024.96763850165, + 96443.17666872074, + 96501.2797849095, + 96503.74204473906, + 96486.96356375985, + 96704.94482097548, + 96472.26194887214, + 96638.11644218583, + 96454.7200242486, + 95987.50726261239, + 95892.9268070378, + 96698.7455890938, + 96584.96543692259, + 96541.61840316036, + 96569.40565837403, + 96528.49682707139, + 96911.19010484591, + 96928.75219227053, + 96932.45750407256, + 96934.56900248305, + 96988.3651054402, + 97049.75371645692, + 96844.52551619314, + 96923.19048697427, + 98895.54995718307, + 96026.0226178126, + 96082.0679626181, + 96060.02477735966, + 96033.20740157629, + 97122.38900206238, + 97074.57158975213, + 97089.55029562055, + 96838.02950949712, + 96554.83252774995, + 96908.33001617734, + 96940.36894513863, + 96466.54820005891, + 96499.21194873397, + 96432.75800775865, + 96421.56170751022, + 96450.86417398539, + 97074.17942076073, + 97074.3618961545, + 97006.12101036114, + 96754.00401323636, + 96547.77228387182, + 96966.40149118089, + 96956.51991520695, + 97028.21718236667, + 96923.14998898802, + 96935.43558121054, + 96876.0341655546, + 96947.56185065248, + 96938.83304086134, + 96132.13052901684, + 97396.83809185523, + 96999.23563465345, + 97965.099770708, + 97692.94173735469, + 97983.33638334284, + 98032.72187246279, + 97974.18271627268, + 97786.09247887084, + 97800.2100526241, + 97912.58577131401, + 98515.60094273857, + 97929.92102411941, + 97928.06662872367, + 97948.71845683189, + 97997.23955341357, + 97779.57776729457, + 97918.30088266732, + 97818.95994583191, + 97874.39129412937, + 97831.22264416635, + 97848.66298321466, + 98306.18967874342, + 97716.14241780146, + 97464.08055310673, + 97903.94501359884, + 98510.79621330468, + 97977.63973942658, + 97986.11769113112, + 97783.36471560711, + 97712.53971897205, + 97869.88999145458, + 97745.05257238295, + 97779.36469026067, + 97598.49065794118, + 97644.2460325755, + 97956.81212995679, + 97838.89167622174, + 97665.19276415366, + 97740.7761235048, + 97977.43561497079, + 97910.00226982501, + 97981.26497740846, + 97934.15325168573, + 97661.65075316017, + 97708.59760735968, + 97635.85467905481, + 97877.97127912445, + 97888.45567349828, + 97743.32967370604, + 97847.28715211149, + 97808.1138347589, + 97882.99271670789, + 97867.45670191568, + 97843.74040890497, + 97742.09038719474, + 97907.24259090831, + 97869.84628046093, + 97773.10518246032, + 97710.26128355986, + 97439.77285801106, + 96847.44273347312, + 96871.44532957648, + 96899.7444137054, + 96601.40636551428, + 96719.79711549218, + 96691.0320269905, + 97006.08190547314, + 96441.73368686778, + 96767.40239764423, + 96685.375037542, + 97209.09899176516, + 97154.83922451224, + 96484.01880503709, + 96107.67988071588, + 96231.62891327246, + 95866.80224811046, + 96548.20028247405, + 96288.80898149563, + 95833.69324629745, + 95973.3902004487, + 95936.55609673416, + 95846.59752469542, + 95876.33619274442, + 95823.68246341804, + 95783.98807985516, + 95969.8648337016, + 95894.43298604249, + 95929.05645624285, + 95983.62730236512, + 95795.10468007735, + 95861.17559180611, + 95802.80525539977, + 95825.95151868842, + 95869.97131479219, + 95913.086499376, + 95910.99064717419, + 95937.64989335113, + 95891.91884422916, + 95809.52074514219, + 95871.0650098643, + 95938.4418636119, + 95885.02089259116, + 95946.77940587135, + 96463.23121061604, + 95491.37487357768, + 95374.51754883812, + 95346.23309636129, + 95585.24481960548, + 95616.19801730258, + 96091.30297494435, + 96130.11178472488, + 96018.67970797754, + 96092.81017505692, + 96029.80815869398, + 96045.61522024043, + 96041.3107438129, + 96123.66684769333, + 96012.26588549778, + 96745.93142676732, + 96767.6667165417, + 96765.36884569783, + 97327.29514577452, + 96950.00862634687, + 96839.1737376899, + 96614.39435499303, + 96337.84299855285, + 96363.40943473825, + 96199.08353982247, + 96210.67360754788, + 96379.20593323221, + 96158.6409534142, + 95809.38081404867, + 95830.62061346209, + 95892.9781546145, + 96251.50221250225, + 96480.34466709888, + 96507.82112088494, + 96463.20514033035, + 96341.40385775307, + 96010.78631802801, + 96023.45133971501, + 96002.90560331904, + 95966.166341996, + 96106.27906720324, + 95807.67280945969, + 96395.43569347766, + 96344.44312350763, + 96138.17632150596, + 96013.09656267504, + 96303.38543537387, + 95894.19050089734, + 96982.27860412037, + 96803.66959486734, + 96947.0577205457, + 96600.41453955312, + 96568.01566290409, + 96593.52949252554, + 96954.2291584623, + 96858.60884095871, + 97317.61147548359, + 97800.71562505228, + 97965.28083636134, + 97889.61604333931, + 97866.41918264618, + 96409.68164770227, + 97206.50614037958, + 97172.59542951442, + 97072.76067775434, + 96537.27883527981, + 96711.59348660789, + 96724.52250491997, + 96763.88111565771, + 96763.6034842352, + 96974.48285660804, + 96961.18408244224, + 96795.80972533752, + 96829.80108971853, + 95448.9319500581, + 95427.81805651919, + 95349.78105291045, + 96420.91570369813, + 95853.47014194234, + 96132.08577076395, + 96214.23708082634, + 96076.5874277015, + 95735.4846520663, + 96051.52523546964, + 97068.07558913079, + 97179.42918462172, + 97139.53818571626, + 97016.58216276058, + 97038.98862670796, + 97678.54460695155, + 97173.72709588033, + 97217.85077478534, + 97186.76808718561, + 97395.26641208559, + 97417.15574620935, + 97295.81122049606, + 97315.37804363752, + 97253.70170188205, + 97259.73605669996, + 97279.28897112967, + 97664.79092225397, + 97273.1165047572, + 97433.88051161826, + 98311.21608497082, + 97635.0392809572, + 97598.2216287689, + 97709.20997216344, + 97594.02550440448, + 97671.76762343859, + 97714.52375615494, + 97630.64426674997, + 97630.27163188967, + 97681.43345802989, + 97643.84165540582, + 97620.62074300427, + 97592.75683781573, + 97567.9839306081, + 97915.08026442358, + 97666.16284196392, + 97636.2185941283, + 97938.20290569965, + 97529.40911807289, + 96570.60229277262, + 97853.50880407833, + 97921.9922589436, + 97776.59221266376, + 97836.39549321984, + 97975.90235149172, + 97774.09837247997, + 97885.48780049814, + 97307.21202722845, + 97121.93628053812, + 97121.55585614218, + 97140.73149429487, + 97150.90263007056, + 97060.39526332059, + 97030.8631274604, + 97192.97755496252, + 97069.80879175542, + 97093.05262002055, + 97052.29009434805, + 97170.58382246458, + 97179.82576003372, + 97082.68825227836, + 97144.30771257113, + 97121.76766377356, + 97118.1717151702, + 97157.3153393121, + 97050.33862467408, + 97089.79100594205, + 97119.19599796484, + 97192.94699549448, + 97012.5425356616, + 97224.20831847242, + 97187.0630187911, + 97163.31890311823, + 97219.79709559798, + 97908.54958943304, + 96700.81684331024, + 96523.60268508628, + 96536.9589902775, + 96843.7034070459, + 97444.83065967944, + 98860.0592368339, + 96799.07382149246, + 96769.12236389377, + 96283.05593791128, + 95873.06749071793, + 96306.41541740084, + 96364.42892209158, + 96883.54640512177, + 96712.7933388927, + 97193.71178642656, + 98946.53758317565, + 98999.3555672314, + 99135.63249379155, + 99025.96218669585, + 99101.35715048546, + 98889.17100958912, + 99046.37042367825, + 98893.51043752216, + 98892.5809756726, + 98837.61105136099, + 95302.53383954187, + 94943.81309137406, + 94902.98810497618, + 94869.28850625391, + 94852.59422578581, + 97020.50549542202, + 96986.83239293261, + 97094.066664134, + 98260.94835930769, + 98082.85901569464, + 95264.5613351477, + 95224.54314081938, + 95147.05653917076, + 95210.90866045954, + 95835.68963088898, + 99148.01739523798, + 98385.07485641103, + 98068.59743234728, + 96845.55844426356, + 97243.43268804229, + 96262.47034418354, + 93028.7413036078, + 93186.25366672484, + 92977.72507249404, + 92967.15683152963, + 96460.11226065892, + 96803.5646686902, + 95788.68637466984, + 95594.81419372423, + 96001.25876488656, + 96014.43994346815, + 96063.34010957202, + 95815.74790477773, + 95887.24825329146, + 95898.24021797186, + 95800.38688365607, + 95888.21662057075, + 95858.74283800049, + 95794.28661051509, + 95859.12821844933, + 96082.30693369107, + 95925.95600315143, + 95766.1829793558, + 95895.34584537416, + 95924.27915490832, + 95788.73920911511, + 95879.84007489719, + 95750.612045373, + 95776.9903894864, + 95885.74462050153, + 95921.1715910264, + 95781.69527505395, + 95962.10736111771, + 95808.00418231983, + 95865.57200803333, + 95863.63939621505, + 95774.27234822566, + 95853.77680046998, + 95910.88556421259, + 96030.4428217032, + 96042.10223037108, + 95793.92940460428, + 95817.54264444362, + 95900.49165315344, + 95954.14624176064, + 95906.63393497696, + 95798.73471721575, + 95745.01102164591, + 95961.3303111423, + 95851.78152974402, + 95820.22984781419, + 95983.45394155434, + 95944.3474958281, + 95805.59370462758, + 95833.09723097256, + 95882.46806050198, + 96082.40454432127, + 95995.73359705324, + 95991.11497192552, + 98649.67528264625, + 97117.49595890373, + 97197.27249529856, + 96987.99039298572, + 96471.15884437542, + 96401.1275917856, + 96519.89986547377, + 96340.059287469, + 96410.37135011521, + 97292.93398642252, + 97219.50145431058, + 96758.83817622448, + 96555.4285949727, + 96557.90997067219, + 97163.04215667228, + 96997.88918754808, + 96566.86592637633, + 96741.71992541496, + 96654.07142456822, + 96673.03202241314, + 96381.8808988381, + 96466.11337870629, + 96184.16322498767, + 96380.49868274544, + 96326.5027952699, + 96296.73893583009, + 96375.2552069928, + 96357.78292133319, + 96286.9291927851, + 96246.68502634903, + 97048.72682453197, + 96800.12747201516, + 96669.10745909809, + 96746.57388650633, + 97343.90785178638, + 96482.93915699786, + 96579.15695246731, + 96449.674325555, + 96511.37611718207, + 96563.68467824848, + 96603.53985991675, + 96576.16422373797, + 96559.07462697028, + 96667.1457439772, + 96707.43842318884, + 98866.40507525875, + 96294.38155504024, + 96331.3818016878, + 96244.46002266672, + 96510.0142862338, + 96649.72165456243, + 96692.3996161877, + 96547.35184122685, + 96418.39905249886, + 96399.6880630568, + 96636.52368680722, + 96516.19638795867, + 96653.81040415911, + 96751.98122261248, + 96227.75935192012, + 96249.42668704614, + 96407.06818233056, + 96417.2575216783, + 96467.9741020259, + 96563.98031394236, + 96340.90830816297, + 96517.5416974432, + 96293.66797750315, + 96385.24672593034, + 96452.35418290344, + 96477.54492869324, + 96558.94098791521, + 96519.48340383028, + 96940.61921871464, + 96866.34077155108, + 96843.3061731239, + 96585.22828871832, + 96565.27947982831, + 97072.10533498741, + 96625.08705431149, + 96853.9052170461, + 96531.63874364064, + 96745.38836951589, + 96709.64199598243, + 96775.56196087823, + 96495.57184522109, + 96306.57092112032, + 96275.78388021147, + 96370.03794746965, + 96292.10169388607, + 96294.95527136317, + 96846.80544199326, + 96851.66207692302, + 96702.97319735656, + 96349.6190768548, + 96258.48571134004, + 97252.59719313495, + 96460.1939559876, + 96376.62703671993, + 96703.80801170786, + 96662.28905885534, + 96942.23050900064, + 96810.581309827, + 96507.31968996138, + 98302.08638915663, + 97699.99862934169, + 96842.11261185446, + 96826.8605851453, + 96682.42592128347, + 96691.51413998567, + 96632.26025311099, + 97030.17159452607, + 96947.06423913098, + 96998.45637942558, + 96508.82058759003, + 96365.36880602528, + 96443.84614856978, + 96381.30359501102, + 96415.57824478621, + 96616.32530084581, + 96464.2147426376, + 96504.26771421164, + 96540.14681438672, + 96400.02414032049, + 96445.40242258714, + 96762.63831109481, + 97455.00830613056, + 97021.7617808701, + 96774.3551833301, + 97926.52813372754, + 97262.5053951968, + 96894.29567379835, + 96367.91849148819, + 96296.49819133696, + 96702.411898372, + 96728.37168468689, + 96615.69330291961, + 96726.2537056596, + 96563.22587738044, + 96907.9005061301, + 96708.36771981973, + 96698.93064682311, + 96960.32727627664, + 96980.06357552174, + 97802.4735093547, + 97757.03382286149, + 97770.91510749719, + 97871.68952338253, + 96422.93764887511, + 96974.71298464685, + 96921.55152222289, + 96619.58665232721, + 96627.8685334852, + 96596.30039366569, + 97133.53939254158, + 97004.26608294796, + 96682.55990265342, + 96629.03830283, + 96352.69265795489, + 96451.83502848627, + 96388.62115022908, + 96506.360585659, + 96426.21771977462, + 96407.47366494461, + 96743.50898743446, + 96633.1194771479, + 96635.14748627754, + 96230.63804023997, + 96214.45179065752, + 96326.17101723391, + 96264.4633906848, + 96326.03203539555, + 96597.34646395275, + 96480.32372855049, + 97264.75648080865, + 97257.64186751444, + 96991.85166421087, + 96282.02445261383, + 96359.59055510542, + 96566.85044926865, + 96473.19788319884, + 97154.5299795744, + 96490.39362234698, + 96550.42568876117, + 96419.62931704587, + 96999.63956845234, + 96751.08674126698, + 96697.972959275, + 96786.71030341781, + 96839.30379383995, + 96483.84977258719, + 96630.67704789808, + 96741.70102760034, + 96764.80067828426, + 96850.49988985712, + 96831.87898093375, + 97251.29570214036, + 95113.59086581854, + 95755.97930162637, + 95090.31969622265, + 94651.26562740092, + 95107.1092473078, + 95161.92092814026, + 95269.77791673102, + 95130.88387122283, + 94666.81011124076, + 95191.5612620277, + 94632.1940988171, + 95137.02904450543, + 95043.44752242198, + 95149.33302637907, + 95332.0281496231, + 95051.6652616009, + 94894.8557690638, + 95076.64600235653, + 95203.48852639197, + 96425.8921864831, + 96459.65196670996, + 96496.92588523787, + 96811.1950275651, + 96617.12965504579, + 96426.74328504282, + 96419.78444368274, + 96390.50907439676, + 96459.36232519409, + 96916.32646882013, + 95563.48042896115, + 95896.24687835442, + 95420.08235331165, + 95488.16296761732, + 95383.02891986139, + 96008.8630213765, + 95350.61927221605, + 94956.26073389688, + 95518.54082292983, + 95469.88782918702, + 95566.89754228467, + 95612.32634584681, + 95478.11245689954, + 95445.99882292173, + 95589.15203844642, + 95493.91450694384, + 95549.1482381842, + 95521.79485298232, + 95556.00537198065, + 95508.91601184626, + 96320.6147981449, + 96280.13460877546, + 96364.24649076725, + 96287.69376743624, + 98121.99524766194, + 98541.0584592708, + 98192.76039404483, + 98166.22543913256, + 96353.00819301896, + 96521.41109040649, + 95891.16448274408, + 95763.46923048091, + 96520.96063954935, + 96403.02771334902, + 96412.24011894669, + 96917.0504390173, + 96852.02764313435, + 96819.88884441124, + 96856.08674797573, + 96637.07411913297, + 96814.95159931354, + 96595.76290712562, + 96573.87616748073, + 96669.5411390961, + 97051.91473217483, + 96975.78810501436, + 96516.89264409817, + 96297.57838530713, + 96880.24502229964, + 96813.11555393686, + 97327.92623575436, + 97390.38924442463, + 97217.68695204523, + 97256.87195236332, + 97480.31551961288, + 97371.5537889121, + 97455.46534428223, + 96178.32783293263, + 96288.25558674558, + 96312.40887120423, + 98206.17346571821, + 98174.05663849172, + 98324.36922376543, + 97173.60699000407, + 97332.19078180875, + 97130.93518291095, + 97156.34417751052, + 97609.3784728033, + 97117.46051610255, + 97241.77508500633, + 97226.72413865545, + 97196.29476853299, + 97724.67813450533, + 97276.15490972344, + 97701.28948749202, + 97457.63289470712, + 96442.07780488765, + 96319.50737816031, + 96415.56866223014, + 96651.65284073511, + 96232.86087179637, + 96606.10302187508, + 97019.00700298675, + 96368.48020052267, + 96333.02852864751, + 97033.84918681574, + 96098.29554204186, + 96303.35813014845, + 96273.10836010888, + 96182.82288333018, + 96357.43491363594, + 95811.10727705582, + 95544.22235669453, + 95595.09996121706, + 95480.30012594952, + 95630.32606664213, + 95635.66118562045, + 95477.04217425716, + 95526.6492594866, + 95677.11645382897, + 95633.84325508482, + 95639.12017602292, + 95440.45450474763, + 96496.37422061864, + 96582.20480650054, + 95660.56955803781, + 95677.28372527665, + 95433.91832923502, + 95662.78785902, + 95394.9696974827, + 95584.7247328939, + 95655.13837228577, + 96577.59886148201, + 95827.30190509118, + 95996.87226871056, + 96067.66573265979, + 97669.8057337455, + 97462.8360510825, + 97686.73198942652, + 97200.78870621523, + 97347.83353013977, + 95523.31266376271, + 95587.1461297883, + 95686.28768720085, + 95449.79737749403, + 95756.18992749622, + 97086.01387112806, + 97178.8195800679, + 96779.52312444507, + 96696.75499455728, + 96245.55891904428, + 96123.0994416502, + 96240.73074210918, + 96194.04975573476, + 96319.13173343345, + 96089.44566542986, + 96232.75989347267, + 96158.38431777383, + 96136.68738677424, + 96145.58360721846, + 96316.94696925921, + 96211.57352484837, + 96211.6334262142, + 96123.06440631351, + 96134.85280188615, + 96182.97559382278, + 96287.01295744094, + 96338.51191040609, + 96403.5050298606, + 96875.59396292178, + 96704.33088316167, + 96496.97484619204, + 95797.50684788941, + 95312.43543057372, + 95287.49345178728, + 98395.83998663595, + 97750.79463862568, + 97657.87281536582, + 96840.11576563944, + 96376.43948973017, + 96495.3723510915, + 96497.74165956042, + 96558.50289816254, + 96382.03130978186, + 96234.20343302292, + 96326.90714764067, + 96357.04479517954, + 96281.48297221736, + 96446.30797136255, + 96225.19846793341, + 96371.17820751171, + 96569.07380883017, + 97280.91341371622, + 97218.93574565095, + 96565.89355648131, + 96608.2925808813, + 96716.35557903055, + 97810.76745979962, + 97231.17400973858, + 96987.0388482267, + 96774.76905790945, + 97556.9433582567, + 99045.69549244376, + 97931.99436757823, + 97949.65290238698, + 96437.8955859198, + 96465.63670795687, + 96585.25834546462, + 96706.89991097018, + 96628.1569422172, + 96318.02244651552, + 96427.64493117196, + 94720.26653909442, + 95165.60765656806, + 94940.55038345407, + 95179.98869710567, + 94980.51218130976, + 95061.79356597684, + 94945.25304730092, + 95218.24789975998, + 96299.29312064001, + 95092.07362612062, + 95174.19946651293, + 95245.56999040095, + 95253.853946145, + 95135.57488677127, + 95102.64566147253, + 95119.56649114176, + 95785.50464150192, + 95930.64975742831, + 95820.45227237958, + 95892.37091878834, + 96174.00550679922, + 95798.21104623494, + 95825.84470023373, + 95872.20122936343, + 95844.9614653563, + 96340.55814080912, + 96480.38866600777, + 96597.4329122248, + 96454.60099367701, + 96506.66704797432, + 96263.45212900022, + 96207.88317037163, + 96239.24501049277, + 97502.79670139607, + 97646.15538785749, + 97931.6145145542, + 97940.34990023683, + 97378.81936381076, + 96721.91479976212, + 96641.41744060135, + 96599.08173979487, + 96422.81562140894, + 96187.153632889, + 96392.32036753843, + 98307.31494297627, + 98369.87703318744, + 98339.77818469383, + 98427.93641245601, + 98341.62446619211, + 98369.9982167125, + 98268.48803241228, + 98448.94646022301, + 96731.3904431557, + 98352.28433632314, + 96621.16848786185, + 96612.95877130973, + 96625.94037806959, + 96825.0533209765, + 96787.91853941279, + 96725.21853912911, + 96716.1939460555, + 96655.75488131844, + 96648.99550677605, + 96506.56055945194, + 97090.90147876457, + 97384.010881173, + 96271.12157331877, + 96358.9276402708, + 99009.30827088827, + 98968.59244384883, + 98993.06721654031, + 99007.66770283102, + 98982.44152343833, + 96558.77218868272, + 96190.10973020262, + 96250.37299645566, + 96247.07790109511, + 96302.24175317744, + 96250.83240914228, + 96351.475287113, + 96280.03121427099, + 96392.52396079557, + 96324.87273668234, + 96241.51104963907, + 96413.63133191726, + 96408.68879235374, + 96797.9408935972, + 96891.75413899266, + 97872.05462730178, + 98368.3157961383, + 98341.32886938391, + 97051.32161185639, + 96393.24636570562, + 96769.40892205865, + 96722.44044323963, + 96646.47732164423, + 96507.62309485405, + 96702.3442322927, + 96787.53069444415, + 96722.57467608203, + 96485.20563873606, + 97263.68940530941, + 97278.01659724039, + 95723.36890130429, + 96034.81351488702, + 96933.61776383803, + 98051.83495872519, + 98282.75113269164, + 98323.4492928728, + 96597.00315049812, + 96393.29657255062, + 96290.54005636094, + 96374.06870812083, + 95604.78437746258, + 95750.88589559712, + 97174.68042421268, + 96780.36553825779, + 96348.04132276963, + 96507.5533367388, + 96316.94089233372, + 96406.34759988818, + 96363.44874937553, + 96158.53654821051, + 96216.07768368315, + 97174.090292395, + 97423.83529752935, + 97375.40849798809, + 97387.39945246921, + 97357.55932487166, + 97219.12677975238, + 97360.80913412399, + 96928.39803287762, + 96246.46103177394, + 96334.44832490938, + 96384.7612066812, + 96687.66890433879, + 96514.01373575524, + 96559.36666294347, + 97476.66833626306, + 97373.24159478948, + 97399.87460150667, + 97562.28816473442, + 97327.25600335708, + 97433.19547536578, + 97363.08021092854, + 97362.61765653682, + 97499.4469867388, + 97347.82046104649, + 97543.28758222131, + 97469.73246031212, + 97415.07468682253, + 97598.37960952554, + 97397.52997943097, + 97425.84737468093, + 97442.60346559418, + 97329.7050864847, + 97478.52336595049, + 97523.48067645995, + 97395.43776515307, + 94173.98426701757, + 94998.21891939109, + 95779.10418991868, + 95221.76445761636, + 95563.21593931832, + 94927.01228813837, + 94813.05089936001, + 95049.81398051501, + 94831.6216521726, + 95106.99733425377, + 95200.37789406479, + 95234.04044483494, + 95174.54016347298, + 94998.56050464817, + 95358.6847925196, + 95209.7640142139, + 95181.22582686505, + 95039.32892818669, + 95161.43568020596, + 95230.15753292643, + 95205.08422479422, + 95169.67825607181, + 95260.99071858512, + 95077.42775615962, + 95115.87710930793, + 94984.96709079483, + 95249.41713009618, + 95383.8578284938, + 95171.9930292263, + 98974.75635141051, + 97495.42818133085, + 97573.7137546718, + 97879.1667547636, + 97752.0332341938, + 97924.88876319247, + 96286.84995846129, + 96816.00002137569, + 97159.9719032367, + 96602.25381360695, + 96541.22800334581, + 96580.09282569413, + 96262.58755908567, + 96477.68388301556, + 96520.83266213229, + 96593.26452848932, + 96652.32078447807, + 96275.60911911029, + 98131.84060703998, + 98116.51550369726, + 98310.25317294084, + 98307.49097620593, + 97884.20567526405, + 99127.37165225792, + 99097.36317848787, + 99210.74174635496, + 98849.06017740154, + 98931.42109207704, + 98929.66878863417, + 98951.6481871395, + 97956.99862073422, + 97903.59153920232, + 97860.23120298976, + 98057.19172951505, + 98025.37844863573, + 97995.64472124574, + 97685.86516354248, + 97728.43536218064, + 97765.6532261492, + 97803.44920114131, + 97788.58947764522, + 96763.14768007296, + 96915.00173927705, + 97836.10518643745, + 97688.00073934876, + 97727.63593382601, + 96406.38208067756, + 97708.14663611, + 97718.08452896669, + 96686.05597598436, + 96547.64348049424, + 96672.85908683737, + 96601.66672785666, + 96337.24183924371, + 96471.83044519875, + 96356.6894447284, + 96509.91978677841, + 96367.48296617898, + 96432.49913903954, + 96517.06841258459, + 96452.70654576157, + 96355.89866425129, + 96476.90982705473, + 96614.76664132059, + 96331.56711893888, + 96422.76850011421, + 96487.64826356656, + 96648.68948995211, + 96506.86847470027, + 96641.51720485609, + 96602.56608801859, + 96362.82663265921, + 96444.06436374444, + 96569.70648172167, + 96487.07322596954, + 95643.58976360751, + 95590.93383746725, + 95607.44304430792, + 94997.80525697407, + 94969.456558474, + 94753.18278928977, + 94684.56361039644, + 94746.05696180757, + 94740.64356322309, + 94928.47293991121, + 95041.75112957697, + 94749.29729931387, + 94787.770570493, + 94862.61137248392, + 94765.37085488303, + 95769.4273404822, + 94928.36583728541, + 94632.31889352873, + 94848.32260879887, + 94909.4801901364, + 94822.21338392912, + 94772.02659537169, + 94744.73198904234, + 94799.15550751943, + 95331.3487126772, + 94775.49929541259, + 94819.89007159689, + 94833.73793561508, + 94887.7091277814, + 94811.2932859593, + 95165.44960730286, + 94879.54696254854, + 94815.49520473366, + 95002.99557299165, + 94871.39332069001, + 94881.5729079285, + 94903.21119163149, + 94804.50966103506, + 94769.12513718361, + 95634.67329415417, + 94756.36115087039, + 94725.74020589143, + 94908.2961139866, + 95587.21671942728, + 94731.62379447502, + 94928.27605842218, + 94873.87443292578, + 94827.75783125078, + 95776.62332951289, + 94861.48746533257, + 94778.80690072749, + 94847.18021121435, + 94681.21667693715, + 94686.68850821337, + 94859.03733117373, + 94833.66567461635, + 94865.96693864682, + 94825.48265916525, + 94928.14149642424, + 95120.7974751264, + 94943.54808386687, + 94808.9434265245, + 96695.73403401808, + 96735.6625162933, + 96720.60531021802, + 96564.020422332, + 96823.59189171705, + 96630.43975177128, + 96563.44435641338, + 96615.96874056084, + 96465.01599917706, + 96009.67472811212, + 95630.2045767319, + 96089.02815632267, + 96067.89889393673, + 95766.15219288901, + 95729.41349529594, + 95620.76960465858, + 95734.53772507152, + 96217.61152393422, + 96518.38805351868, + 96495.48054519108, + 96432.90834803335, + 96413.40389535019, + 96609.85637492496, + 98132.66739592743, + 98184.11582898955, + 96737.38123752185, + 96331.92386954006, + 97054.61849023897, + 96988.38709557017, + 95651.72246340426, + 95685.44647783595, + 95599.68294597721, + 95603.36657863882, + 99482.36791712252, + 99652.18317202266, + 99507.27055929118, + 99448.66639839622, + 99444.04255201604, + 99707.96750950199, + 99813.91502764664, + 99805.25726658729, + 97523.91805244905, + 97387.44466697019, + 97325.35357186201, + 97349.58185053393, + 97397.94499439833, + 97295.9111719528, + 95312.95855588862, + 95249.43208736234, + 95249.13612521146, + 97909.5256296521, + 97671.5271836395, + 97320.9751458158, + 97288.32585044665, + 97287.42371834854, + 97331.31191752062, + 97753.86362578296, + 97544.31371711488, + 97269.95524537595, + 97136.05458186644, + 97836.10112215702, + 97912.74332734982, + 98032.12952113833, + 97812.02122999499, + 97676.13557284081, + 97867.82302155967, + 99050.31283061483, + 98655.12240236765, + 97608.77421579452, + 97544.46873198576, + 97555.47422544137, + 97628.07066642634, + 97445.71186335788, + 94535.23441251172, + 94453.30770379661, + 94555.46811316232, + 95173.1058684115, + 95061.07101043357, + 95125.54161959406, + 94642.13333896926, + 94577.33860504878, + 94677.93437523032, + 94598.57761381929, + 94704.25329936552, + 95898.80369104634, + 95859.76101831674, + 95812.8085668192, + 95924.0510925754, + 95896.15100446602, + 95824.9408665822, + 95758.1497186825, + 95253.24133716796, + 95156.66415912467, + 95285.10107414321, + 95193.57186281015, + 95101.30623358215, + 95288.3668867181, + 95214.81168632788, + 95178.04877880761, + 95238.4612240695, + 96585.10907993346, + 96390.6462111492, + 96213.5014235769, + 96884.94841533682, + 96843.19044479831, + 96976.72186679111, + 96668.19262520867, + 96527.43586088887, + 96519.96662272481, + 96553.27398847301, + 96957.88158177114, + 96076.39327665615, + 96254.52857694228, + 96282.33518668677, + 96286.57370428348, + 95362.96257854867, + 95762.442921347, + 95381.11813749094, + 94883.10635112034, + 95025.3184603646, + 94949.60061790438, + 94776.97725616019, + 94991.55991969479, + 94952.53942297342, + 94891.32234489628, + 94826.4909333284, + 95394.6894172284, + 95529.53434892082, + 95613.36862572782, + 95440.45332612093, + 95428.17340896445, + 95290.12180962758, + 95617.83943211543, + 95509.51889809627, + 95991.33991024262, + 96055.57318060596, + 96097.44273427612, + 95848.90900012582, + 95668.59789817403, + 95969.73089143247, + 96307.29746684979, + 96110.446524941, + 96018.1989928102, + 95916.88717086082, + 96259.9088278092, + 96265.8396473732, + 96425.09656179631, + 98146.26357853966, + 96740.13124735563, + 96595.41352686423, + 96654.64167636221, + 96513.8684829462, + 96544.75552813962, + 96711.99932746214, + 96702.77287733635, + 96622.89110754011, + 96650.8577845288, + 96660.99210432713, + 96495.89435277808, + 94583.67896061894, + 94658.26682954257, + 94620.28434976013, + 94669.0910072042, + 96251.15095739174, + 96304.23939903782, + 96226.01518961282, + 96320.65693732718, + 96277.56204314627, + 95674.83501563323, + 95736.15092677393, + 95786.53743239374, + 94663.42415631165, + 94690.05816224274, + 94529.54887138213, + 94573.33511403036, + 94595.57719945294, + 94607.51235993573, + 94666.84271139963, + 94624.39247192521, + 94549.16204838405, + 94491.8662499373, + 94952.55129948242, + 94615.64321919113, + 94522.78269468108, + 94562.82084434494, + 94593.73117840412, + 94579.78144755292, + 95571.72373244617, + 96621.22573818848, + 96470.6891870684, + 94228.39378501002, + 94061.36529939531, + 94022.25691774377, + 94052.96379103974, + 94285.83388955456, + 94165.01695821773, + 94230.32019308097, + 94662.60718160463, + 94700.17153728654, + 95735.32005357998, + 95692.66532182253, + 95665.0896772998, + 95717.17249319649, + 93771.64901934502, + 93792.45591967623, + 93697.6920875846, + 93762.18661659818, + 96281.32850564222, + 96253.68359021118, + 96325.10446742897, + 96337.60461817843, + 96325.43171609768, + 96171.94045814378, + 96236.30172944344, + 96372.84433195303, + 96416.50330670876, + 96461.59608065485, + 96187.06552247319, + 96046.32402735324, + 96093.98837699907, + 95954.38507019526, + 96049.50535520805, + 95998.29219547354, + 95970.68481188625, + 95908.75378900667, + 96010.59585795696, + 95963.09163288568, + 95614.9761433545, + 95473.6830691956, + 95625.48730067638, + 95504.31384644122, + 95585.85264252442, + 95698.5799699456, + 95371.62884591159, + 95361.67422421975, + 95619.42230416782, + 95663.18864254322, + 96284.55056147317, + 95559.6425612621, + 95412.5939248789, + 95399.43047732508, + 96134.90709775368, + 96196.76537660908, + 96165.55211580031, + 96220.62136154641, + 96083.77668077107, + 96256.84714815787, + 96145.48967947123, + 96140.70858890428, + 97018.01929554026, + 96848.85035393931, + 96886.03757990844, + 95472.53473339273, + 95592.3590579154, + 95577.60998891103, + 96402.25288687303, + 96931.73639236027, + 95307.82377822268, + 95312.76274987488, + 95246.617811933, + 95202.42610294092, + 95189.33791646003, + 95279.44711489225, + 95246.69781047499, + 95324.53269217705, + 98252.20125651163, + 98157.37070871185, + 98357.10377182142, + 98324.73469132032, + 98295.76754954316, + 97105.86251341687, + 98258.1504517649, + 98246.01088839823, + 97429.76144404312, + 98240.64626714814, + 98321.03221855451, + 98271.68050762633, + 93752.3312236433, + 93756.90772025482, + 93953.20323974107, + 94091.98744666459, + 94124.10076790105, + 94087.37147599955, + 94126.81383111597, + 94013.12054823448, + 94172.54386589286, + 94029.39526780658, + 94131.47438278008, + 93941.60029047483, + 94051.09597981113, + 96692.12311657275, + 95777.45510873004, + 95708.6636061905, + 95660.79157564534, + 95632.78201832197, + 95733.23099723773, + 95625.2334428732, + 96690.8587748414, + 96662.49126502928, + 96745.05165244982, + 97124.39568027973, + 97095.89811358032, + 97112.51508375412, + 97438.94706894625, + 97298.1281701925, + 97162.94378004716, + 97368.28761209213, + 97145.35276682033, + 97198.43320497262, + 97245.58511308912, + 97404.46242057864, + 97240.73904594999, + 97394.17633422943, + 97150.0365297859, + 96980.44928277681, + 98203.0854152399, + 97903.23099241641, + 97820.00767848469, + 97165.28391525596, + 97121.42521929949, + 99200.76991821163, + 97730.10289313177, + 97679.4016292501, + 95973.2616830581, + 96015.96776704377, + 95591.27380732736, + 95648.05875995208, + 95602.29812834255, + 95765.18576710457, + 95710.673787455, + 96760.92857071379, + 98107.98397593139, + 97143.57757258782, + 97117.76259346868, + 97199.548737579, + 97244.54058788632, + 97151.98882224852, + 97119.08649562852, + 97228.8586541166, + 97278.2734802375, + 97971.15353949438, + 97948.15175790482, + 97981.75949850792, + 96126.7346762115, + 95933.5287680958, + 95988.09830570368, + 96776.65072818978, + 97174.4902451007, + 97535.24128889033, + 97857.0437324069, + 98441.4708798117, + 98378.02420745678, + 95765.99579339992, + 95805.27848287535, + 97459.28505940326, + 97675.57302296757, + 97657.0685191219, + 97609.83906118742, + 98605.62696637101, + 98594.57251546823, + 97292.27504024247, + 97208.17700488467, + 97153.8030933662, + 97461.83260827704, + 97099.70079043217, + 97067.465012111, + 97404.7469494071, + 97118.95086045063, + 97039.56267630485, + 97100.65924565001, + 97324.6914900351, + 97043.84788523692, + 97481.10824091855, + 97510.25838188223, + 97122.99450066582, + 97151.83752746668, + 97116.3702029372, + 97317.08656207834, + 97297.57988152267, + 97399.26667465223, + 97110.35476659756, + 97245.9845655978, + 97338.6794096304, + 97304.16071013291, + 97221.2851500303, + 97218.18204837828, + 97028.63638755542, + 96793.83633777838, + 96860.75623904701, + 96803.46095891818, + 95603.43349316179, + 95538.75882410601, + 95403.35995732812, + 94982.11885713646, + 95091.65908345411, + 95006.98525443788, + 94961.43165547009, + 94945.53507458087, + 94903.43608338811, + 95065.55850772645, + 95011.65811258498, + 94939.05144867142, + 97851.96545124071, + 97776.20823036006, + 97951.79743510587, + 97678.34155724986, + 98068.90809649408, + 97644.57598419554, + 97840.23347415248, + 97858.72921784101, + 97998.55969379349, + 97900.61279437604, + 97911.67531684053, + 97775.50314469819, + 97890.9310548109, + 97940.44104273879, + 97891.33496893896, + 97867.3221662809, + 97936.31670167827, + 97945.53098688826, + 98007.87228599943, + 97872.15207962286, + 97671.66130484144, + 97137.2003252543, + 97176.99512205806, + 97178.02769187269, + 99234.6345322715, + 99167.15507702739, + 99196.99137747717, + 99345.95077259775, + 99298.94031897592, + 97434.89728860323, + 97758.09088007455, + 97717.66882748203, + 97692.05204438251, + 97864.44960459028, + 97856.92589348364, + 97646.7315802885, + 97518.4690028683, + 96568.3757200578, + 96360.79423069155, + 96201.11846761782, + 96147.12728695886, + 96712.80076694199, + 95593.06297803868, + 95019.76951112322, + 95102.28517788525, + 94975.72901611873, + 95116.68898388208, + 94867.64816679416, + 94984.22203293043, + 94919.08305377813, + 96508.73199069055, + 96791.11917374496, + 94924.30340248237, + 95102.2093582555, + 95018.57997559619, + 95013.28433948402, + 95084.45208789824, + 95044.35313290669, + 94991.32690242348, + 96292.96228716835, + 95396.31854026583, + 95370.67728844626, + 96457.41148009703, + 96281.24470025112, + 96370.77101982675, + 95464.53667424759, + 95403.07991812484, + 95460.77332334426, + 97713.34748462857, + 97678.75741357544, + 98480.18557061398, + 98344.96213348431, + 98429.70413093227, + 98511.79293987446, + 98434.76946955148, + 98467.42435958885, + 98524.49222600524, + 98559.46645536512, + 95959.85383984294, + 98087.31445184478, + 98071.68595187098, + 98629.22677301739, + 98588.84201485832, + 97955.36336549766, + 97936.09237213417, + 96198.27647513033, + 96152.66864658507, + 96586.95927925126, + 97158.89221586598, + 97020.82930599325, + 97021.39491967497, + 96979.82022752479, + 97016.71696412006, + 96721.31987028342, + 96644.41975002215, + 96671.14731805214, + 96322.43872730463, + 96408.99138701527, + 96380.36068124554, + 96410.01535381378, + 96545.67249216154, + 96337.69690409732, + 96379.29684177249, + 96256.40262368404, + 98094.94144871847, + 98102.66578906662, + 94425.17698527497, + 93711.5032857345, + 93766.13514013491, + 93794.37719324508, + 93725.48220687856, + 93282.32117482684, + 93221.73955457543, + 93208.18303346328, + 93325.79765311313, + 93214.11532235434, + 93315.33872157881, + 93266.84118076335, + 93260.96297517662, + 96468.45059842155, + 95419.01295011838, + 95522.29690782333, + 95434.63162470613, + 95522.59347807155, + 96419.20807083481, + 96121.69831110585, + 97051.56980439604, + 95549.4392720819, + 95516.47032069488, + 95289.99947728145, + 95545.42707969059, + 95587.50972921033, + 95085.7358614468, + 95766.82836995482, + 95105.9704756148, + 95815.83892952197, + 95191.15728912293, + 95512.73349904499, + 95626.14363249643, + 95032.40110092318, + 95631.07394328593, + 95590.81174307152, + 95912.25682425735, + 95597.7906661159, + 95579.93831216634, + 95715.19253104036, + 95126.23354130394, + 96534.17654783507, + 95015.33918715396, + 95796.61373078152, + 95643.13524318043, + 95746.24059541902, + 95559.2112095161, + 95766.4420442681, + 96526.79557731359, + 95131.5941183471, + 95018.48362985617, + 96065.14768742399, + 95634.93267958445, + 95527.42462717323, + 95194.44309703742, + 95813.90918667779, + 95726.95869510453, + 95954.92061138574, + 95112.53926171671, + 95049.89107673854, + 95733.5582374262, + 95852.81047544103, + 95167.71564066921, + 95788.6686934094, + 95156.93526218369, + 95503.24905229843, + 95227.31453053986, + 95256.82853161849, + 95777.06593763633, + 95778.11133873799, + 95841.15444703231, + 95545.63612104181, + 95535.85549573906, + 95111.693114726, + 95161.29561184804, + 95751.83804119815, + 95154.35913268666, + 95743.57295726631, + 95566.08096854025, + 95071.67988020071, + 95320.52292032006, + 95795.05422834658, + 95080.07065852977, + 95078.64341067748, + 95009.57828432537, + 95204.47944062315, + 95257.49256519784, + 96576.33824877361, + 96378.93466044324, + 96299.85768372391, + 96612.8462594204, + 96619.36075421462, + 96050.51896679334, + 97096.25480847151, + 97461.17357839017, + 97113.68749649214, + 97070.65467482769, + 97085.84775973822, + 97511.27320539985, + 97471.4065804253, + 96172.51733633167, + 96596.14681899169, + 96432.47446387983, + 96730.72662363359, + 96815.74842835017, + 96432.60634695792, + 97017.1669084225, + 97173.35179768581, + 96929.96417980653, + 96895.32993115457, + 95960.83337961102, + 95973.18677822626, + 96185.91987135717, + 98053.0642172455, + 98274.51626017109, + 98416.67608487829, + 96833.09629477594, + 96389.15700605555, + 96728.86287279802, + 99228.92028443553, + 99212.70100378105, + 99232.68405354682, + 99103.44876993205, + 97711.83186455314, + 97603.39364622922, + 96767.66900065186, + 95740.22395410195, + 95874.51064937194, + 97094.08230838644, + 96858.31183832121, + 97019.63624773566, + 96947.97323662853, + 96831.27749069908, + 96392.74500653436, + 96436.86822188261, + 96376.91690518416, + 96350.55565716545, + 96321.15146800532, + 96524.80040507406, + 96860.6503292752, + 96680.86127426095, + 96398.83615088987, + 96391.62172387257, + 96272.74969865312, + 97698.46004125582, + 98150.22448558552, + 98046.56042319539, + 96091.68950774056, + 99340.31910283645, + 99313.20979173463, + 96470.73828277734, + 96565.0881456934, + 97185.1808281155, + 95500.49413841194, + 97254.60654731093, + 97228.53082661908, + 97457.80305691704, + 97262.678362189, + 96245.81287553936, + 96314.41375523742, + 96401.76747586693, + 96355.90615678827, + 96369.69059048773, + 97186.3132997967, + 97064.47646579129, + 97158.96990923911, + 95870.52884118582, + 95840.07213390034, + 95680.1096833134, + 98796.43807365598, + 97288.66317264974, + 97400.5708421359, + 96733.77607604802, + 96760.86563639867, + 96753.76496796569, + 97632.01085607987, + 97563.26458780964, + 97588.76856320181, + 99361.59793953648, + 97903.46526431757, + 97873.51796335696, + 97948.39404069813, + 96889.0306429424, + 96907.48571010484, + 97191.09182635164, + 96942.59821550541, + 97747.44748826537, + 96387.01730151517, + 96598.19218239089, + 96473.28103194672, + 96658.84703021134, + 96494.81661435854, + 96672.20067299905, + 96598.19772505444, + 96510.46443991837, + 96701.69552746598, + 96539.74460144996, + 98226.84081787949, + 98241.35583628787, + 103012.50040913292, + 103050.16207521364, + 102935.46730939098, + 102950.02495500898, + 103115.61980314259, + 102981.6591476348, + 102970.32847474286, + 103050.37577267221, + 103039.45476144501, + 103145.40971868698, + 102881.9871404351, + 102896.31427168078, + 102743.93553159607, + 103003.97003289565, + 103071.21323586704, + 102958.121892692, + 102990.59814603475, + 102955.94479850777, + 103041.38776247326, + 103006.17533551028, + 103097.54858465325, + 103093.03210077138, + 102849.4521539362, + 102929.61114879283, + 102836.82326066242, + 102850.0467744593, + 102710.33828378592, + 103171.58738973808, + 103039.75462604016, + 102822.41041165365, + 103145.40299178564, + 102893.70015633377, + 103068.00837449041, + 102885.78859789654, + 103053.80194217195, + 103120.61740341707, + 103353.3242908138, + 103044.72318410393, + 102885.22782431466, + 102934.2236077041, + 102936.50978128517, + 102797.13886249666, + 103138.73232130763, + 102970.44843874604, + 102673.92982323217, + 103391.80690165356, + 102918.21735494805, + 103087.20566196111, + 102940.683338319, + 102799.74205444116, + 103183.68169934869, + 102917.88714022035, + 103082.19417204797, + 103013.92678419144, + 103079.13759889861, + 102796.76557690598, + 103008.94428849094, + 102914.14727498162, + 103097.33141408257, + 102984.59817230792, + 102999.242153458, + 102825.0800232946, + 102943.62442164868, + 102996.76586737529, + 103056.99415971928, + 103067.37440468137, + 102735.70852544352, + 102977.56662627251, + 103052.37715191457, + 102856.38596651099, + 103162.96543297928, + 103029.09037497792, + 103086.18250158385, + 103144.62346271172, + 102857.39568352004, + 103018.48102906163, + 102846.81397282002, + 102959.24234304379, + 102860.97984399927, + 103204.38427585832, + 103037.63504006495, + 102976.99922262576, + 102915.13967065407, + 102948.12263359, + 102905.30463146325, + 102775.59654509142, + 103064.59068768269, + 103127.2944683463, + 103034.67848377136, + 103118.71870989143, + 103071.00150506526, + 102791.07795037152, + 103141.91696005758, + 102900.66287637541, + 103159.2274797242, + 102953.45731484497, + 103076.07764829494, + 103180.222746918, + 102929.58826717759, + 103023.01993823654, + 102806.18146902687, + 102815.61399877533, + 103103.79792250128, + 103062.08365221192, + 103127.22842256306, + 102987.13535610563, + 103015.066909508, + 103003.68988635896, + 103019.86716613526, + 103015.5953490687, + 102965.30578971672, + 102846.40082320553, + 103043.9117792615, + 102956.1297050231, + 103183.26568270578, + 103076.71371945935, + 102839.27781745781, + 103195.814589243, + 102844.52372308212, + 103048.07930443641, + 103116.44549536241, + 102887.65778558908, + 102787.7592041423, + 102878.33658342516, + 102975.28613555466, + 102777.14875199659, + 102784.83487471334, + 103055.67082885235, + 102922.95094014877, + 103018.59506549768, + 103099.08631775716, + 103074.18589615662, + 102895.43270597128, + 102761.9969007521, + 103040.86211690954, + 103078.14916824212, + 103141.03868202487, + 103220.7702303365, + 103039.71918145288, + 103000.09208703019, + 103093.18540186799, + 102886.24823604496, + 102734.2330280844, + 103124.81756865612, + 103116.45746689758, + 103116.44206372628, + 102905.47635113973, + 102876.54018840358, + 102995.30845949444, + 103461.52053531604, + 103109.24014121846, + 102639.10208368214, + 103127.93620264718, + 97816.11957295614, + 97744.13754822216, + 97875.02824277256, + 97875.23810233118, + 97860.97988843071, + 97874.20140366515, + 97813.77444698993, + 97295.41993443215, + 98504.0608151538, + 98563.09341475698, + 92714.11963007496, + 92747.05003046816, + 92736.93813690646, + 92758.02599424361, + 92772.32573698397, + 92875.48053840011, + 92643.21127411565, + 92635.69548630752, + 92662.91635122887, + 92806.5752589732, + 92672.51828517085, + 92780.45361230415, + 92910.85152531487, + 92750.21944483303, + 92929.03768547083, + 92695.48300652891, + 92763.33740890355, + 92746.60202937137, + 92804.83283425898, + 92656.75321387713, + 92720.63886172147, + 92781.03766208091, + 92955.99148324825, + 92819.90574053729, + 92863.93843996643, + 92762.18406665193, + 92731.96951288165, + 92829.5244158295, + 92829.06364513682, + 92964.21376697725, + 92797.61369683825, + 92899.57389546379, + 92689.95383378031, + 92879.10271586856, + 92918.23986331817, + 92770.44632801176, + 92826.16653182537, + 92776.46176010194, + 92799.3624177929, + 92744.89756492016, + 92788.55500541464, + 92743.6893037566, + 92755.14253033418, + 92674.50485570161, + 92778.98325152327, + 92823.64619231266, + 92845.58188637684, + 92870.93404835771, + 92855.1291239748, + 92698.77859603205, + 92802.31863144008, + 92892.72049598476, + 92868.7121626449, + 92915.20617790846, + 92928.39381493034, + 92847.40821100175, + 92864.43936845861, + 92876.39180829469, + 92838.77007893879, + 92968.71300952189, + 92759.73292583875, + 92887.42259766499, + 92908.28155211873, + 92748.72130275492, + 92958.5054330462, + 92972.27137717552, + 92886.64791972426, + 92932.43400044982, + 92868.65401523824, + 92789.25845787131, + 92871.2505752866, + 92915.12458208142, + 92741.2233382749, + 92825.6682181709, + 92937.13338499848, + 92714.19169562703, + 92710.4092859258, + 92715.643325396, + 92693.19807508035, + 92785.66175398401, + 92762.37604498131, + 92898.36187164378, + 92816.23744248544, + 92846.47331272127, + 92805.50156317676, + 92908.05512282117, + 92780.10459702351, + 92735.8872940194, + 92809.1992299666, + 92734.73602492957, + 92822.90992394777, + 92792.15515640823, + 92768.14688762419, + 92907.89027775265, + 92803.08916804337, + 92805.67467569452, + 92674.69300068788, + 92860.77077420008, + 92652.28269502005, + 92931.03691748106, + 92786.45165805808, + 92690.068927953, + 92654.04075146845, + 92770.35188046416, + 92806.45226779237, + 92678.6570565419, + 92789.38337680516, + 92816.16939505044, + 92681.04409740334, + 92791.67829836892, + 92670.95905256645, + 92718.19280810321, + 92931.93535013939, + 92832.21310659085, + 92970.07983820014, + 92785.25516080103, + 92703.7009482962, + 92743.15309026223, + 92832.99190630158, + 92848.17018472671, + 92856.6758347593, + 92700.80017637742, + 92811.6659175343, + 92820.39777410144, + 92637.22500048368, + 92724.95781401754, + 92918.12000715463, + 92764.62782096473, + 92834.87795946051, + 92716.36551030405, + 92688.16204123068, + 92769.98293309148, + 92747.11480769856, + 92830.97365426456, + 92956.88845743412, + 92667.03163689894, + 92773.97104867987, + 92765.97352504909, + 92817.15251278403, + 92839.25105015197, + 92684.27446517262, + 92738.68503255733, + 92928.56873551727, + 92951.93214721176, + 92840.23927959817, + 92837.4325323441, + 92773.24336533085, + 92707.69711555765, + 92894.12452528065, + 92795.44137357986, + 92872.08606858594, + 92908.58904558522, + 92895.13083815288, + 92968.34537712067, + 92933.32350347849, + 92817.07788508855, + 92708.3826511513, + 92633.09806031307, + 92724.69669127463, + 92801.33010757218, + 92859.73470884244, + 92850.4893758, + 92796.35612079636, + 92724.80064222643, + 92763.48617614119, + 92691.12432749973, + 92832.2455281412, + 92821.6970235056, + 92851.82952662438, + 92739.55758843302, + 92845.21219008189, + 92889.60537235835, + 92834.7670703216, + 92733.8821803168, + 92986.54378267881, + 92947.59593567792, + 92856.64253156737, + 92846.37780126568, + 92929.57342431239, + 92694.65154614455, + 92725.73648513126, + 92909.37864471917, + 92805.98275581197, + 92737.17105520054, + 92878.3665763355, + 92802.85003718645, + 92856.84754805104, + 92888.32012726701, + 92898.5423456085, + 92936.9208329952, + 92705.6426947887, + 92802.4910911643, + 92703.75887355224, + 92720.32907766118, + 92776.69738221027, + 92670.03570964884, + 92863.90985342726, + 92783.24992765753, + 92630.81613535142, + 92650.60838023956, + 92761.85914886044, + 92892.90945921653, + 92872.33464950968, + 92900.15446475662, + 92870.6477486372, + 92933.1992941243, + 92851.02442957304, + 92751.17943703893, + 92823.51293857984, + 92945.57764957601, + 92729.4609843271, + 92890.45354067329, + 92861.71457971018, + 92758.15563703989, + 92954.24674729079, + 92684.86692219344, + 92867.89952269728, + 92753.36839914953, + 92815.38400026898, + 92641.38065955654, + 92913.90088716414, + 92828.71624935322, + 92789.6538543949, + 92893.38018644902, + 92846.85628511268, + 92874.80861019567, + 94389.82268512787, + 94473.83901464478, + 96726.85001938077, + 96856.75307244163, + 96887.63327582092, + 96757.24745508902, + 95941.37906805627, + 95883.81802686673, + 97300.31066052879, + 97227.48630235011, + 96107.43914118575, + 96267.78319342206, + 96223.35433626908, + 96431.48255781003, + 96906.24469590047, + 96456.6197756494, + 96621.2306651311, + 96103.35761667813, + 96135.79066248288, + 96066.03066201929, + 96124.46503141584, + 96209.36237781073, + 96049.12329461102, + 96234.19587815474, + 96182.34124187389, + 96069.25402929624, + 96110.12517865465, + 96104.37397737885, + 95473.87175752441, + 95529.50498627951, + 95559.19394644504, + 95475.06861200492, + 95576.43864239694, + 95675.56715847473, + 95652.38718337071, + 95529.44060928901, + 96463.32828761848, + 96332.28386414018, + 96704.88510542022, + 95403.82629332301, + 95414.5198416682, + 95428.74452499427, + 96837.5234314195, + 95981.4289276959, + 96091.23112460926, + 97608.10402017404, + 97884.05250852642, + 97883.03260448822, + 97729.09348492567, + 97618.47312684309, + 97807.37725707618, + 97782.00465249535, + 97819.38169053383, + 97944.82949518417, + 97765.78400893019, + 97793.209213772, + 97914.72098171483, + 97738.23489846344, + 97952.48333090381, + 97679.97545734418, + 97907.07772482715, + 97692.3701015755, + 97854.94207901634, + 97911.10388910468, + 97721.07590051215, + 97836.27828454283, + 97690.94002689296, + 97837.0291488112, + 97866.5629916667, + 97641.92112939028, + 97668.29733496392, + 97745.78152964913, + 97791.99447045982, + 97799.84504107031, + 97895.17566291973, + 97556.46186289481, + 97842.08313682882, + 97646.58785246593, + 97955.37870272386, + 97569.3314865344, + 97686.2269103041, + 97716.19446453296, + 97566.32146451849, + 97749.43723227644, + 97817.99605739959, + 97770.29128264848, + 97837.88980822326, + 97659.10882033668, + 97944.48848345084, + 97724.71001358965, + 97840.4488438348, + 97682.13216992372, + 96182.13562718286, + 95658.74013915077, + 95679.24097287183, + 96253.47998191483, + 97834.98736896088, + 96049.63837547174, + 96089.25686352311, + 96121.88887235317, + 96094.58974753537, + 96176.81124765753, + 96239.21475237247, + 96187.2673674574, + 96332.65419596537, + 96233.66033300763, + 96233.30699052043, + 96134.36234317473, + 96297.38515154971, + 96151.41022304098, + 96082.6862769373, + 96223.09032145453, + 96262.14436611164, + 96180.26927345316, + 96170.58043821786, + 96141.79495419456, + 96226.17274284131, + 95879.78023428856, + 96318.37473253458, + 96032.14228891094, + 98052.01818030688, + 98000.89472177274, + 98030.63733564413, + 98149.10712130788, + 98216.62724920495, + 98213.69694156857, + 98136.52770175759, + 95844.27494216182, + 95882.75653309235, + 95858.11291681843, + 95873.13670582481, + 95915.45945457155, + 96661.15501811591, + 95780.44924539157, + 95886.06286226807, + 95746.45351481336, + 95768.15206604342, + 95691.04939234379, + 95836.51390847687, + 95934.77941414388, + 95816.16075862515, + 95721.1118486502, + 95900.55166557113, + 95799.86698698705, + 96081.51773116515, + 95846.27746233897, + 95973.08240383722, + 95929.56949551513, + 95856.24184208568, + 95962.648951747, + 95937.40790539984, + 95824.43387327349, + 95733.48913760284, + 95793.6820658207, + 95772.40764226652, + 95922.24975383069, + 95914.52764200403, + 95878.63974632234, + 95810.1892282629, + 95986.87215922702, + 95854.36203630836, + 95751.93219087191, + 95948.29108104784, + 95933.10890391868, + 95771.1520841971, + 96026.31169836612, + 95774.14507709046, + 95990.44398072414, + 96644.71742174745, + 95797.38464544155, + 95759.28364262846, + 95879.32488590298, + 96007.02552024368, + 95799.71339132743, + 95986.9049325351, + 95945.23705564445, + 96030.33284891481, + 95810.60492377383, + 95867.72485103867, + 95904.66765956307, + 96033.15612682415, + 95749.64560857885, + 95740.81234286937, + 95693.87231896988, + 95747.4548018069, + 95791.04080191755, + 95786.72480025757, + 96004.96794127276, + 96069.3698993026, + 95936.80461170511, + 98391.3654527381, + 97562.46612950841, + 98382.73052405847, + 97552.51833446544, + 96247.06477880469, + 96115.75097550079, + 96236.82264330242, + 96287.68799404218, + 96341.9584726013, + 96334.04844919537, + 96189.50164004327, + 96129.95296040154, + 96686.53014972531, + 96666.27787163145, + 96682.58310310973, + 96315.1576937446, + 96403.18675110892, + 96432.7187319126, + 96338.47765596065, + 96273.99014457836, + 96495.87133068114, + 95869.20236478248, + 95912.008333997, + 95949.1600784945, + 96105.10042717274, + 96613.09529056762, + 96555.82518831582, + 96352.76136627332, + 96129.08577941864, + 96147.46587683262, + 96112.49719695996, + 95965.43289062445, + 96033.98990398803, + 96932.98205381237, + 96212.6841921486, + 95445.50029813193, + 95395.99414455838, + 96309.88478423315, + 95773.4170104861, + 96109.23688977351, + 96096.91431835426, + 96011.82130088062, + 96061.42099266543, + 96074.03549605754, + 96088.75199644471, + 96118.24342476773, + 96861.46033115732, + 96640.5620202917, + 96557.59659352103, + 96588.30967872712, + 96008.88833191514, + 96027.13384085294, + 95883.83699885607, + 95975.06514142088, + 96004.72927759534, + 95950.19346715305, + 96051.95003272599, + 95893.51889181437, + 96144.89367540594, + 96101.32030537611, + 95923.907758798, + 96043.19356552222, + 96087.111627038, + 95969.29263186545, + 96043.87770069051, + 95992.08890608055, + 95999.96496058637, + 96012.29670587514, + 95384.71934393427, + 95319.53976511759, + 95500.60372435469, + 95386.86547266938, + 95393.91431790583, + 95496.27699337724, + 96569.52588876095, + 96682.8032109078, + 96505.5768828933, + 96561.1289662077, + 96679.55975867888, + 95351.97758507192, + 97189.57952601701, + 96943.5826191979, + 97250.13277358422, + 96935.82800306576, + 97299.19607449145, + 97525.78803979425, + 97178.4335252593, + 97235.96464026743, + 97343.6823481417, + 97223.42280780959, + 96962.82978313397, + 98366.5317572711, + 98294.15306017191, + 98141.6380062112, + 97298.22480265996, + 97263.87438890443, + 97405.45190185368, + 97265.26688568054, + 97143.09835047876, + 97129.06878847051, + 97235.87959368073, + 98296.91832297333, + 98283.52624727061, + 97321.80845451674, + 97570.19222318186, + 97592.15333958538, + 97634.27256841559, + 97731.86232399511, + 98027.23840369366, + 98014.4662099854, + 98070.63175874326, + 97912.42274945986, + 97847.58279285853, + 97961.59489284047, + 97668.12360152378, + 97354.44949091639, + 97438.11718141663, + 97123.22683661472, + 97010.00916339061, + 97003.53337889878, + 97130.84549007515, + 97126.32749050998, + 97031.44944641803, + 97089.4267597361, + 97004.45699478449, + 97072.86333942694, + 97161.1662180509, + 97054.70302158214, + 96956.32059970194, + 97023.40738180937, + 97117.40589499525, + 97029.66141271086, + 97109.4740304231, + 97150.9713187897, + 97384.12423704745, + 97261.41344047216, + 97058.39697873502, + 96637.24626095728, + 97326.30387106475, + 97762.94327311365, + 97434.17271064689, + 97043.03097313532, + 97243.08337739702, + 97145.76310622979, + 97095.05235018766, + 97256.31857012321, + 97209.354903683, + 97275.21589329709, + 98126.72194186601, + 98029.23649616924, + 98218.18612787206, + 98173.49799372526, + 98243.20668277878, + 97942.74096463536, + 98086.92377545155, + 98136.26463837818, + 98032.10914792269, + 98164.7191831383, + 98177.75893148144, + 98048.7976669239, + 98085.14677152337, + 98137.73454611025, + 98087.89687269753, + 98058.3882260423, + 98196.25269400347, + 98165.00907916101, + 98038.87796969373, + 98047.80561487027, + 98214.51331152665, + 98221.44438791503, + 98250.33407362783, + 98175.28356611886, + 98086.64316477746, + 98153.95335586341, + 98453.38379434445, + 97072.80267951578, + 97051.94872116366, + 98217.55465375583, + 98311.68272827691, + 98378.07785934748, + 98246.37587520153, + 98230.17666779128, + 98046.28708608718, + 98251.18088487917, + 98319.10302793559, + 98197.145671496, + 98233.44659529526, + 98348.03221156073, + 98248.99486452407, + 98266.98788422802, + 98381.35948380831, + 98387.01183578208, + 96930.45087312897, + 96711.39206785646, + 97730.67186086356, + 97737.3791540576, + 97760.05643502806, + 97812.77410308796, + 97846.09235022662, + 97844.89671201118, + 97790.3443567589, + 97780.88601719037, + 97793.6389519722, + 97822.87456305856, + 97756.11969829707, + 97714.25738805142, + 97797.73998808523, + 97059.65093863031, + 97074.06837654435, + 97267.94399725233, + 97420.50106316275, + 97625.9522204539, + 97641.00229908383, + 97516.38998854977, + 97567.99530773342, + 97610.07987633217, + 97071.63031530446, + 96996.84956326048, + 96993.23426998722, + 97019.97811091317, + 96980.83698822696, + 97085.24353199765, + 96992.79396284865, + 97154.35896812822, + 97382.12160605498, + 97967.22245570888, + 97293.33443899159, + 96764.02037724445, + 97500.29116980988, + 95123.75313616887, + 96504.0113092561, + 96749.74084841611, + 96786.69954014356, + 96590.63286272458, + 96722.33353227373, + 97030.2520829105, + 96829.08746262993, + 96842.27837158077, + 96405.86324838473, + 96795.14077544119, + 96809.16183135839, + 97296.74368922459, + 97952.9294243462, + 97955.84289253918, + 97937.84650883084, + 97926.20155611816, + 97921.57888470891, + 97447.89786565928, + 97584.54867327097, + 97440.19299843578, + 97537.69416462189, + 97557.92783029494, + 97520.47130796686, + 97420.5839825796, + 97406.49600346612, + 97524.95581496398, + 97470.45712281887, + 97550.40349062327, + 97402.25470761966, + 97501.53966637526, + 97456.21491158627, + 97486.11011137227, + 97490.76512311144, + 97473.15345637558, + 97380.45145645179, + 97364.93794419584, + 97493.31139326544, + 97642.23998100052, + 97733.12248701614, + 98266.1684006728, + 99212.51030616327, + 99089.64531938844, + 97568.18928030234, + 97664.13121209273, + 97608.50198699025, + 97516.32843180199, + 97295.1480213509, + 97527.7722333421, + 98354.2021118834, + 97981.00694860649, + 98133.35294956547, + 97482.43177391349, + 97424.13306252814, + 97531.13306710056, + 97491.69682662486, + 97607.29756739261, + 97402.21565975588, + 97409.51267743493, + 97935.18971112657, + 97745.13254705475, + 97717.30182307873, + 97839.00962931263, + 97707.07960783267, + 96382.50314982572, + 98949.18912879386, + 98010.42769601001, + 97998.11890191796, + 98181.21611959832, + 98121.44337304786, + 98071.41054108432, + 98381.74787497967, + 98290.95288923327, + 97150.45925062025, + 97261.7617408887, + 97156.92705815511, + 96809.13802091916, + 97271.69810632353, + 98135.44809761492, + 97975.85969435751, + 98087.74110527057, + 98131.02182023783, + 97842.3191241412, + 97897.19574531108, + 97740.11577656561, + 97901.20186675964, + 97932.13537150175, + 97364.53654526435, + 97596.51200593878, + 97466.27266862227, + 97591.70446658987, + 97559.74444341238, + 97556.34242910771, + 97568.50082889231, + 97504.15192908207, + 96925.02449761663, + 97281.94651476617, + 97754.87037614986, + 97816.8011205971, + 97889.86492800197, + 98299.94934348867, + 98291.09947188398, + 98218.1665266749, + 97646.77543914225, + 98092.4725283489, + 98095.24070406985, + 98265.74336042402, + 98380.98621041664, + 97453.59900556323, + 98175.83270961333, + 98068.84935339227, + 98076.53351725111, + 97321.33667852162, + 97256.20849471942, + 97375.35204686232, + 96085.62481953611, + 96480.10013682928, + 95635.4952582386, + 95660.99083576904, + 98301.13718378269, + 98344.85074410372, + 98394.3083189937, + 98310.53063600973, + 97346.1892401973, + 98480.40348207085, + 98370.04229097803, + 98451.12892657102, + 98596.80481606587, + 98320.60384126543, + 98702.60040244272, + 98398.75524090877, + 98445.66094374743, + 98732.37072864667, + 98369.26821419236, + 98345.90054955689, + 98310.13941730415, + 98350.13090091896, + 98367.03708190138, + 98981.74509741156, + 99115.95103184906, + 99044.69297651587, + 99139.70935255074, + 98942.63618668188, + 99068.30285214641, + 98837.87215098692, + 98941.98492686346, + 95925.51936102928, + 95836.86051364095, + 95841.63723542419, + 95807.55730759914, + 96714.19926904603, + 96823.46958884488, + 96172.1853849051, + 96001.11875324031, + 96153.74670381845, + 96814.77969019499, + 98464.03856830075, + 98189.86043944341, + 98307.69673094383, + 98237.26193514904, + 98624.79723960246, + 98285.95990732293, + 97698.11772956593, + 97385.0681494814, + 95837.99483341178, + 98228.7849099925, + 98375.74582118145, + 98182.14007435848, + 98140.23039610147, + 98269.97101414308, + 98274.18301520034, + 98261.35090991932, + 98152.55259488344, + 98222.89012213812, + 98101.23332558201, + 98175.87245687013, + 97595.5487286106, + 96279.56542526848, + 96530.07073939945, + 96589.42762961413, + 96756.45377519565, + 96827.37038036223, + 96930.8467707688, + 96494.91179403212, + 100553.61137409393, + 100444.89520239284, + 100530.44923311533, + 100626.79397543533, + 100504.09236604944, + 100461.50336537426, + 99852.28352799846, + 99808.93365789295, + 100898.1530317686, + 100848.69931219713, + 100857.84354867911, + 100797.99961855274, + 100682.51103448716, + 100956.3356976481, + 100820.29890680054, + 100757.83911726538, + 100777.06863317556, + 100805.1278220788, + 99897.00034100206, + 99885.53367261976, + 99733.89269403598, + 99931.09159473867, + 99989.17577184312, + 99402.69167743201, + 99914.41548040505, + 99949.71858455199, + 100007.300600629, + 99941.71936800965, + 98696.20977067878, + 100481.51513057065, + 100403.30601497291, + 100529.91253667448, + 100568.23920670286, + 100728.97795077493, + 100437.50150850076, + 100194.52138415762, + 100103.23446886911, + 100329.56908981693, + 100165.50473225, + 100010.5721553044, + 100048.20827001765, + 99552.26651483987, + 99539.09821540986, + 99569.29443472087, + 99712.43812317886, + 99401.76593393642, + 99546.359302407, + 99547.70287765094, + 96768.76253347314, + 96838.7838623563, + 96789.33376936015, + 96920.93490684904, + 96831.01533371997, + 96946.95627384465, + 96923.16983244233, + 96808.41765699841, + 96809.07917067675, + 96856.67588119206, + 96847.17765287637, + 97506.82580701464, + 96734.42347125604, + 96749.37391939254, + 96816.89633164286, + 96732.82218142171, + 96918.79091209936, + 96977.91016252428, + 97203.10489846802, + 97148.42701927797, + 97394.5768705934, + 97321.6102346845, + 97391.15136417256, + 97421.55628560655, + 96572.70915846486, + 96569.37282584612, + 96634.02973485782, + 96641.9954973643, + 98259.271845129, + 98168.9231416876, + 97204.8783368979, + 97506.64122277842, + 97518.73388739799, + 97294.3314821682, + 97388.71359159944, + 97460.1220450078, + 97527.0381829492, + 97574.84489035908, + 97403.49233740254, + 97313.23942986008, + 97470.12592517314, + 97339.79753757949, + 97554.5235551415, + 97533.81519896755, + 97334.74101129781, + 97489.70814217188, + 97472.39269986044, + 97387.12778874076, + 97437.62011604731, + 97457.91304211157, + 97317.43805248154, + 97410.58779561223, + 97539.58464921622, + 97342.03150148301, + 97306.54238286208, + 97368.47508508009, + 97462.35402312716, + 97362.09100683562, + 97468.63463640668, + 97407.10414666461, + 97427.0423299996, + 97445.06134182603, + 97384.33030394555, + 97418.50090063574, + 97329.77520403042, + 97501.86106879357, + 97589.09322622273, + 97365.55201336363, + 97496.03917907522, + 97578.21965017916, + 97621.96108195561, + 97597.5695956047, + 97551.12577735574, + 97566.33074345869, + 97316.24496342393, + 96793.86442373705, + 96685.18396788204, + 97191.87480429292, + 97945.10387365565, + 97813.17651623696, + 96192.36516650372, + 96166.65134798315, + 96151.18947802766, + 96219.49280554311, + 96321.49613399363, + 96348.27089895145, + 96312.11948904546, + 96413.07673363906, + 96067.23210924766, + 96241.04212507296, + 96371.39408635684, + 96469.32529389091, + 96158.31542657371, + 96334.94354943845, + 96152.51660612367, + 96247.31090145207, + 96236.22052335802, + 96303.25217664873, + 96187.17079366487, + 96348.83043260756, + 96308.4379961576, + 96338.25209207543, + 96260.73617752134, + 96268.88889721669, + 96157.96193062943, + 96588.03419761182, + 96527.41286019633, + 96551.83742032673, + 96521.94024587476, + 96905.2605934214, + 97009.34087073864, + 96820.7830898844, + 98073.30353618528, + 98153.01073729256, + 97890.19215830484, + 98289.64738099596, + 99350.28536017142, + 99507.3720181478, + 99388.57352758666, + 99720.51276602945, + 99470.76221817326, + 99983.69630418211, + 99864.71563941333, + 100490.87413901878, + 100512.67904571105, + 100462.96804014868, + 98174.24014304766, + 99182.5898053717, + 99297.47748745349, + 99173.09577075086, + 97018.10490746981, + 96024.40112653765, + 95977.23359820171, + 95944.20879009437, + 95957.04000819045, + 96118.28040336892, + 96136.85927600949, + 96010.1549176, + 96088.19892270163, + 95907.0760779808, + 96018.50845340571, + 95951.03051542168, + 95976.84004061195, + 96193.58532347402, + 95724.82667612792, + 95782.3253503642, + 95763.58006546515, + 95802.71249287276, + 95794.74480692008, + 95773.72799782119, + 95705.64201223625, + 95854.84350284688, + 95750.69476013878, + 96100.74371648408, + 96096.27034812108, + 96200.85680540389, + 96373.49619860556, + 96029.76428620814, + 96057.67371904092, + 96137.52117336927, + 98923.84604161337, + 99330.7962680329, + 101107.14331554841, + 101171.88975233596, + 101142.357752018, + 100568.55851595142, + 102954.7692368723, + 102875.47592578827, + 102873.44929349524, + 102973.29006079929, + 101911.83591220567, + 101946.02963869514, + 100215.14271741606, + 100200.76545872116, + 100059.60994106538, + 100079.51571516019, + 99936.15523064065, + 99181.95152123351, + 99195.28356015346, + 99211.69144249897, + 97980.22062912158, + 99073.87694250268, + 99151.86765374598, + 99168.96378888712, + 99046.5441793224, + 98976.05727895776, + 99081.16187921172, + 99148.53901882828, + 99113.76487179766, + 98959.06003485763, + 99169.54346949601, + 98982.98037771537, + 98937.48844781533, + 99208.54851849852, + 99061.3646667225, + 98987.32425560945, + 99071.96756131454, + 99131.82143847682, + 98613.13814771906, + 97220.44655452287, + 97196.75706828712, + 97125.53941725435, + 99718.2462926422, + 99803.36721250159, + 99813.23079232925, + 100208.03450922729, + 100291.24785455817, + 100818.8068736159, + 100710.17332989187, + 100756.53431442664, + 100742.58004892079, + 100816.52170155974, + 100535.41769180611, + 100588.8078125849, + 100684.1289854207, + 99355.4318094893, + 99283.37793193322, + 98884.47395865238, + 98702.11362056104, + 99212.19665290292, + 99294.92357045293, + 99409.68747127595, + 99366.21868458806, + 101293.34932264523, + 101281.5327958176, + 101334.14824704995, + 101367.06730180504, + 101344.2365303306, + 99029.78237454424, + 99954.82959672711, + 99643.0795719138, + 99636.85899020171, + 99574.3917835105, + 99512.35272587591, + 99507.38002680989, + 99709.87237972025, + 99618.5853241082, + 99492.14181196287, + 99538.7844648259, + 99586.24804608843, + 99142.8207100815, + 97428.68780199539, + 98467.69979749717, + 95501.56943956636, + 98020.27360911023, + 98145.87350225112, + 98050.34194011665, + 98168.00603776949, + 98149.26582746887, + 99101.32720644573, + 97907.77536328329, + 97901.03417870511, + 97823.51772352493, + 97887.71552031132, + 97844.34590883499, + 97875.84098174631, + 97972.61225798044, + 97778.61977575067, + 97733.80999706348, + 102294.46222470059, + 101611.36177265896, + 101415.64667156886, + 101663.47791347724, + 101670.89096728647, + 101489.91040062429, + 101683.85992837578, + 101627.82156718601, + 101614.52685921428, + 101670.00019402351, + 101564.26236712594, + 101677.59144852104, + 101503.11750353694, + 101566.44477254337, + 101556.6713244582, + 101576.23104104938, + 101501.37291680236, + 102258.94880965956, + 102241.50007551156, + 101505.40062337223, + 102236.92013567835, + 102271.38430452191, + 101620.62748966913, + 101705.56691766535, + 101616.40249009931, + 102275.28365277304, + 101546.7676820338, + 101530.92806958249, + 101440.57017023579, + 102061.11808554111, + 102273.20050188246, + 99104.38829532635, + 96790.03152514201, + 96103.40886384947, + 96132.92147820993, + 95931.69453685306, + 95990.48196120898, + 95956.60429664124, + 95934.42168851243, + 95911.93174621023, + 99852.8334694923, + 99109.0663166796, + 99132.2467544649, + 98630.80803171467, + 98689.92719517139, + 98600.23627742211, + 97899.34691313219, + 100183.97700610255, + 100698.78901867794, + 101020.07401227095, + 100753.17948613792, + 100929.37102861726, + 101049.77169559221, + 101042.64163339522, + 100956.6831535797, + 95941.76966348794, + 96031.13533407368, + 96019.14956732029, + 96068.74269110095, + 96041.31540570507, + 95956.81382376744, + 95973.72556328609, + 95919.35469646247, + 95869.3259308094, + 95890.9852158734, + 95627.49229889535, + 95439.686001942, + 95462.46659073206, + 95350.06247732986, + 95352.85380484689, + 101563.87691551438, + 101274.0689543692, + 101168.10653818438, + 101300.33166744621, + 101234.34457208082, + 101601.26872970493, + 101585.65958301134, + 101602.23613881375, + 100811.46618206523, + 100829.32986696697, + 100126.81551866842, + 100132.13706504772, + 99693.89632500503, + 99710.17309703058, + 97773.05134874712, + 100036.94123600336, + 99063.1409527306, + 99169.33340406543, + 100018.92157433346, + 99407.78802846867, + 99754.96532026985, + 99736.98260295848, + 97304.55664375074, + 98194.2498880113, + 98162.43586684139, + 98039.41022287405, + 98449.82609230773, + 98405.07060129187, + 98476.86717384406, + 99709.78133773808, + 100811.29454032266, + 100799.25439064918, + 100677.38582400509, + 101079.62659732827, + 100722.31731806434, + 100834.06910339087, + 100697.5591835894, + 100714.08462751635, + 100770.01044896716, + 100791.5569642883, + 99447.65502558881, + 99376.7135123605, + 99310.39242009577, + 99409.34911582587, + 99415.06017255128, + 99369.62794905218, + 98879.98498514206, + 98842.26136432061, + 98989.84252043573, + 98812.04332174487, + 99055.69525843728, + 98951.35380331521, + 98884.65639907506, + 99012.5910040835, + 98920.55399183184, + 98986.64830287533, + 98697.12172626315, + 98620.91786909541, + 98579.78840613288, + 98665.66923677477, + 98676.9556260032, + 98666.27593048109, + 98466.22795573567, + 98327.10502264924, + 97761.06111769819, + 97778.59716574609, + 97828.84470887261, + 97887.6803134344, + 98415.58884975722, + 97970.80486236633, + 97853.15094800435, + 99142.00061841276, + 99019.66226194054, + 99192.84066023113, + 99195.67384174546, + 105702.70779626064, + 105720.74472153532, + 105597.88258663817, + 105537.04043110306, + 105659.02741920555, + 105571.73128079504, + 105609.73144478192, + 105534.28021291584, + 105564.00159757282, + 105754.22947200622, + 105456.10991948233, + 105491.33714438768, + 105716.4703499383, + 105543.42915303927, + 105630.69769986445, + 105645.64612103258, + 105497.54551993767, + 105503.81836976812, + 105623.1784153991, + 105624.09575786174, + 105424.31086366, + 105638.02562345852, + 105639.8016154403, + 105447.54534695485, + 104529.0077171011, + 105513.51897047486, + 105541.31168826211, + 105662.21818670053, + 105536.89658786391, + 105587.63908464299, + 105551.30533148885, + 105472.97873689594, + 105562.15649703948, + 105614.445608318, + 105605.58224577091, + 105646.15356609257, + 105649.11294797633, + 105639.1427377219, + 105591.38016161196, + 105695.7244338854, + 105501.26262445355, + 105440.08994178778, + 105533.16243882055, + 105517.55400168929, + 105575.97003898642, + 105641.5542752146, + 105618.39256775245, + 105687.63777874172, + 105739.36521479895, + 105637.2752229223, + 105623.86195710463, + 105519.4049907799, + 105536.43145628818, + 105538.19528796947, + 105565.0341187142, + 105726.80316226129, + 105472.67496843007, + 105565.60861014514, + 105721.03776835771, + 104505.46224372448, + 105695.48735109183, + 105519.56230898018, + 104517.04252285708, + 105504.7638572277, + 105675.47517143977, + 105708.26806277981, + 105447.26852737083, + 105720.82332476201, + 105692.74199201462, + 105472.93529743854, + 105505.51038627926, + 105702.65367969817, + 105617.41036553025, + 105463.66708114756, + 105513.42888557282, + 105587.24021536975, + 105666.60642497567, + 105525.56918281784, + 105595.04010791137, + 105444.17622828389, + 105593.64617351997, + 105820.99262817558, + 105488.11414785475, + 105581.60321262159, + 105479.62020612431, + 105674.17917521868, + 105668.80576224392, + 105736.3108427153, + 105672.44716304717, + 105752.73162429658, + 105584.94006434933, + 105569.52484353032, + 105589.43123760885, + 105670.77428807763, + 105553.56081415866, + 105747.65391754272, + 105495.33426700001, + 105680.3612644293, + 105560.48340758316, + 105445.55876504377, + 105629.84276764742, + 105648.70327510666, + 105655.30686287093, + 105565.4869750369, + 105481.75828279473, + 105442.67875268511, + 105526.1879944992, + 105656.64322979332, + 105594.35386643908, + 105612.48488332644, + 105555.6768617231, + 105466.87188407933, + 105686.90580509568, + 105612.92245493767, + 105586.46190778396, + 105553.22245719808, + 105602.79629216735, + 105675.06158554988, + 105749.4487101587, + 105544.46883093425, + 105500.52522474098, + 105559.27154028906, + 105610.83844839808, + 105474.40094419045, + 102845.67951808334, + 102881.05506671254, + 102758.92562444904, + 102845.59991174893, + 102770.39328667689, + 102791.21393627733, + 100735.89049163861, + 102786.91065751955, + 102696.68521353304, + 102794.83285276036, + 102711.83752916791, + 102702.49380949287, + 97921.57016446197, + 97927.66577067936, + 99516.12138979742, + 99602.96430557796, + 98688.38398683874, + 98595.29230202979, + 98630.36630678174, + 101440.91242559247, + 99888.7474021685, + 99314.8551296866, + 99358.88038956131, + 101577.95064257612, + 101653.48509896647, + 101618.87726680218, + 101696.33854508724, + 101693.9514589707, + 101705.56128660376, + 102075.73811485003, + 101584.20875166706, + 101745.0284195526, + 101750.29136937985, + 101723.50378938632, + 101638.07400466492, + 101710.07571479805, + 101605.94890163437, + 101663.21104220499, + 101571.93741097451, + 101537.33961984668, + 101661.32861456498, + 101809.28157252, + 100562.85875895302, + 100691.28122991591, + 100703.91892473621, + 100643.93297622279, + 100629.31140834546, + 100618.80971613749, + 99820.63295952792, + 99750.92672342333, + 99919.27050152971, + 99838.29242204245, + 99861.68642531082, + 99828.61773977215, + 99861.59601408201, + 98068.53195038276, + 99008.51573252691, + 99889.43749238121, + 99109.3220921073, + 99431.23960563343, + 99477.79155051857, + 99931.61590707452, + 99557.42983475236, + 99679.01460310047, + 99781.31591692459, + 99487.32292325515, + 99933.44815741768, + 99734.55623427365, + 99678.11644301329, + 100044.6384196381, + 99648.52514943464, + 99734.73651507167, + 100160.85356023969, + 99769.13322520467, + 99078.52085760598, + 99013.75011741492, + 98983.9846827361, + 99369.7372803506, + 97811.37205660775, + 102770.45633988047, + 102899.28079331243, + 102845.04247001756, + 102895.70055079371, + 103861.85953601846, + 102846.78158593367, + 102811.8399410256, + 102916.2536478733, + 102974.00749621436, + 102909.81065957414, + 102971.72070191367, + 102961.37499772165, + 102754.28742449006, + 102739.48839184036, + 102898.81474529942, + 102794.85431909138, + 102866.1985748635, + 102844.89185582798, + 98778.26008769598, + 98708.14130337609, + 98895.84249312858, + 98969.34698883492, + 99955.92746291363, + 99956.03049514619, + 101816.88311248944, + 101202.62539612001, + 101391.8218569706, + 101174.63066983833, + 101048.57144304692, + 101000.89468833616, + 101246.78776875495, + 101329.93994851012, + 101396.92720550015, + 101206.60928117258, + 101239.2275985487, + 101425.18089836829, + 101374.23433910658, + 101302.72499833946, + 101341.02872417537, + 101903.18715956158, + 101756.92345298977, + 101849.86400158559, + 101917.07900434479, + 101771.88883756689, + 101878.49188290893, + 101859.9833131921, + 101768.71035459545, + 101957.66008863025, + 101925.93381925664, + 101802.09502770085, + 101941.68698389355, + 101820.5319393799, + 101816.23817021484, + 101810.24091218987, + 101956.52492095728, + 101818.97161414391, + 101875.49783721726, + 101811.52595774685, + 100461.69417982163, + 100490.95507089696, + 100584.23507339627, + 100530.62814033258, + 100598.89273700629, + 100590.7203286694, + 100253.45508330212, + 100686.6864121916, + 100490.75991207774, + 100668.95104477237, + 100709.49045972321, + 96029.34704917161, + 95132.0182590058, + 95656.09312934356, + 96141.31999881029, + 97742.89093696582, + 105073.0459310981, + 105250.393807277, + 105140.76660493574, + 105754.80884174582, + 105296.44944531913, + 105728.57517210917, + 105331.49139983783, + 105780.27159862246, + 105172.1807521991, + 105292.49635223951, + 105249.47644010253, + 105196.48958054805, + 105286.83303054038, + 105160.24999280086, + 105237.16293164933, + 105751.46313263659, + 105219.5540524566, + 105122.87025665042, + 105134.50465352352, + 105245.56495725964, + 105329.65312133559, + 105255.04680668082, + 105776.90488419207, + 105296.69162847476, + 105290.15459453787, + 105187.03177049119, + 105068.00604745663, + 105210.64546245524, + 105172.11220199827, + 105147.22240577158, + 105110.21176335553, + 105205.98079610139, + 105213.94812081721, + 102632.01767983723, + 102581.27782990142, + 102038.80831194275, + 102529.36033743144, + 99348.7447313686, + 99133.91865058728, + 98285.28494219562, + 98238.1997657076, + 101317.04585495421, + 102019.01183458454, + 101995.52746789972, + 101916.08163925847, + 103456.08986793383, + 103457.02108909264, + 103373.99913840227, + 103524.19866889584, + 103286.55890268029, + 103435.72798991972, + 103264.17278986354, + 103477.47262815104, + 103380.67928748445, + 103389.520733978, + 103504.33007253749, + 102974.21228920032, + 104503.28348820597, + 104496.15652465288, + 105460.45902230869, + 104559.40416265023, + 105434.4203361631, + 105455.89490134627, + 105431.26932589978, + 104574.61351811924, + 106561.87872816344, + 106776.02255939199, + 106635.16178182501, + 106732.15504561804, + 106601.29107885293, + 106731.17359497877, + 106602.14819754453, + 106862.10792861404, + 106755.693741068, + 106532.5203665794, + 106759.61558299915, + 106609.41327421999, + 106706.91607713986, + 106650.15180578313, + 106592.85557378664, + 106665.85308371624, + 106765.76699810462, + 106644.63224566527, + 106727.0636283268, + 106691.8254125457, + 106658.42952704415, + 106573.8359684691, + 106946.77846067028, + 106678.2647647673, + 106679.82621071998, + 106820.76911869101, + 106821.27699738681, + 106812.8337418669, + 106685.34842842711, + 106551.31500165496, + 106823.52842568823, + 106749.18607248642, + 106842.31888496643, + 106742.34691528913, + 107048.685062726, + 106675.50133822637, + 106715.18848661716, + 106770.8177499561, + 106682.09481440886, + 106619.69654244954, + 106719.62851343823, + 106712.21093307452, + 106792.36538370406, + 106716.43322221242, + 106722.43473218425, + 106613.4142948, + 107200.47939503906, + 106762.13888084773, + 106837.53679908288, + 106790.73048520643, + 106553.37983249659, + 106791.48424114, + 106579.14641755563, + 106666.6595550612, + 106598.67730765055, + 106632.97128548277, + 106678.59034848932, + 106794.65299645755, + 106647.08307701974, + 106681.56976180268, + 106745.56797317222, + 106837.31654858893, + 106708.68509258526, + 106808.31653286635, + 106707.63399406707, + 106778.70466327264, + 106852.09016633748, + 106796.85298801294, + 106725.95900633195, + 106609.89058123871, + 106643.67855764981, + 102302.54250042449, + 102273.51637285373, + 102327.68714141687, + 102134.67476412581, + 102190.75502881849, + 102192.64407157355, + 102251.95358990936, + 102251.26335777057, + 102191.2547206348, + 100276.21812349626, + 100133.57556468557, + 100169.9290565621, + 100231.58588411789, + 100459.64579783555, + 100437.37357383645, + 101085.99598431727, + 100418.44291308156, + 100217.0931850488, + 100166.28518205784, + 100196.8580268146, + 102472.09396205097, + 102510.40110102798, + 102426.07836071348, + 102493.70912809666, + 100370.73279250569, + 100263.99606202378, + 102185.54162184449, + 102105.35380535477, + 101884.12289507367, + 102089.16961632067, + 100813.5137450206, + 100679.36722813868, + 100865.96671772173, + 100360.08398611244, + 100417.8409414628, + 102503.96297081048, + 102361.26354264608, + 102361.61563848036, + 102447.4628204767, + 102089.33611078521, + 100199.38989250545, + 100378.98935340745, + 100003.95047136398, + 99967.22110128611, + 100086.45963356196, + 99878.95454371617, + 100123.24005124219, + 100049.4088958235, + 100174.70969881222, + 99963.18628188736, + 100072.569476962, + 100052.61467437836, + 100107.50881085078, + 100081.03971028964, + 100062.94225538117, + 100062.83649537648, + 100016.80639456735, + 100176.00446974729, + 100061.81776244742, + 100094.30522647932, + 99925.05483366393, + 100241.64041136006, + 102374.89899726883, + 102326.17920087215, + 102040.19185746327, + 102044.87477390302, + 102681.04976482222, + 102708.80667103664, + 102746.23300112753, + 102779.2332887374, + 102769.97593312086, + 102646.19294310108, + 102704.66675675161, + 102237.36466432676, + 100342.08799841997, + 100335.85997077923, + 100223.83301915645, + 102692.31405608842, + 102579.10480518742, + 102525.51969078122, + 102647.6977664583, + 102438.98054800251, + 102109.63915621935, + 100927.9651385238, + 100680.80099572752, + 100800.39718183145, + 101086.82262158477, + 100998.98327044309, + 100845.09419351183, + 101033.30132867355, + 101097.27054992382, + 100893.79932863965, + 100948.55715984435, + 100972.4639411515, + 101060.94351000125, + 100955.43618464691, + 101021.96758872966, + 100931.19533174056, + 101026.39648026331, + 100960.26564636652, + 100884.82814455178, + 101056.54576635997, + 101004.07943332818, + 101086.33472233359, + 101074.00311444225, + 100955.59770470153, + 100985.08882280662, + 102345.30775637389, + 102360.48782179103, + 102158.60557313335, + 102239.22675177707, + 101086.89222661091, + 101038.90054617883, + 101062.66465869642, + 101114.80968133733, + 101978.09520389797, + 102012.27612347057, + 102119.8001668184, + 102146.32891249588, + 102110.89458927693, + 102012.93262592147, + 102027.32069496305, + 101009.39541248594, + 101005.45701984284, + 101317.20118670381, + 102472.85417684923, + 102486.73414419277, + 102441.4595203972, + 101991.62025209401, + 100903.69339707514, + 102484.69136668938, + 102403.0980081417, + 102427.6128384684, + 102361.88691559348, + 101909.83952413945, + 102131.74303744955, + 102301.49116759682, + 101794.82512531827, + 102311.66790009006, + 102102.30008742088, + 103679.83752006112, + 103691.81173829258, + 103615.98109999106, + 102175.9296900868, + 102319.2367968909, + 101910.31769046403, + 99855.59269539596, + 98518.94253675062, + 98978.20058631645, + 98608.15016492098, + 99439.56645918118, + 99766.19705816366, + 99793.00774291946, + 99544.7067431413, + 99597.22180864953, + 99652.00107522465, + 98629.06194375621, + 97236.38714706122, + 96774.27151536841, + 97373.43174560844, + 97337.73716817379, + 97270.4959860881, + 96778.97067219901, + 97280.19761067317, + 97564.18875675717, + 97262.69730354023, + 97291.68899181754, + 97322.34378993233, + 97384.02435958975, + 97411.59609787649, + 98328.13162079666, + 99088.98463223837, + 99275.53523335142, + 99323.60015745301, + 99346.175304721, + 98634.55621819719, + 98380.41809928608, + 98866.71537147863, + 98448.21242713043, + 99378.38433540135, + 99352.75585645964, + 99225.4877064742, + 99418.16866483733, + 99430.27884390537, + 99480.31439861133, + 99349.43583085632, + 99353.08989464479, + 98534.36395672044, + 99310.86447736768, + 99249.28903447703, + 99379.08345923015, + 99418.72251871403, + 99307.44341004237, + 99467.36470738356, + 99358.52710365926, + 99463.08823462212, + 99265.10686255786, + 99533.1090051132, + 99430.735616467, + 99412.77834028199, + 99265.42166951722, + 99397.0822658798, + 99359.96988171423, + 99232.57690378158, + 99357.18200421888, + 99521.77955609749, + 99312.31898186129, + 99329.83088819458, + 99324.19866222715, + 99203.5119953795, + 99449.90457211129, + 99463.59916379068, + 99336.20831706232, + 99349.75794681006, + 99502.02039728625, + 99393.14025308313, + 99317.14667566899, + 99213.54020433339, + 99272.36238573091, + 99503.60977650297, + 99272.71339872474, + 99184.35722457996, + 99448.69160046501, + 99474.5870906059, + 99434.97853800446, + 99483.7099392884, + 99270.32006106859, + 99471.18560763983, + 99306.12541877851, + 99551.20671595355, + 99406.92829413555, + 99291.30004253573, + 99374.96501653186, + 99442.85276686755, + 99315.38055521878, + 99276.09987661881, + 99390.52362469089, + 99423.5922830648, + 99354.83844456464, + 99215.2926091783, + 99386.53496947915, + 99528.67144569101, + 99269.65052503442, + 99369.25845492617, + 99387.60981991838, + 99477.98145048507, + 99245.2361239818, + 99213.53053314565, + 99215.12918935942, + 99319.8835983256, + 99540.71579349438, + 99410.73623499194, + 99410.99468459656, + 99314.44014947582, + 99403.7799505777, + 99190.33807993686, + 99451.07278195309, + 99497.45055468047, + 97941.62052389975, + 98042.89559128795, + 97252.23165797428, + 97256.71452773576, + 97717.6450930688, + 98999.07214531254, + 98973.05295831346, + 99054.82425526633, + 98044.04752415298, + 97958.60518554217, + 97684.02089780879, + 97530.79165170861, + 97661.53871495918, + 97082.40295944159, + 97355.44513416784, + 97152.47967070663, + 97551.97133100245, + 97406.15468225554, + 96899.77531401117, + 97488.50879118062, + 97695.66405931095, + 97133.66523509301, + 97654.87379319927, + 97567.76393513489, + 97515.78251525074, + 98015.71454165311, + 98011.00513967639, + 97926.2588824606, + 98011.29610271553, + 98685.42661265582, + 98569.01114962301, + 98455.53829158633, + 98168.86432508277, + 98182.35396401546, + 98033.33645324146, + 98122.06197821422, + 98145.7408507303, + 97958.45417367462, + 97944.8447446344, + 97976.78427151311, + 98064.3325515416, + 98166.05557341201, + 98143.58155422434, + 98079.41947586637, + 97816.29128765412, + 97891.037149568, + 99467.37211095681, + 99465.10355574, + 99274.13613058651, + 98616.56911567338, + 98560.90805367962, + 98558.38609458414, + 98880.98424546431, + 100397.5383419908, + 100402.68978541685, + 100405.17286216993, + 100061.66712015377, + 100531.61939659539, + 100404.30916741672, + 100319.7606909308, + 100407.52446892252, + 100377.95870123856, + 100091.88539430087, + 100272.25022775182, + 100099.74666749846, + 100436.44960338628, + 100341.95706435903, + 100063.71730651654, + 97038.13042712578, + 99128.65672613026, + 99086.92050953522, + 98854.21422872371, + 98753.69995678449, + 98539.2421167469, + 98549.21922950738, + 98660.85685852663, + 98707.72105670594, + 98674.46581814122, + 98338.92014174488, + 98777.20226620481, + 98593.35045327418, + 98858.43542229797, + 99194.76613677801, + 99238.598665245, + 99141.45631430278, + 99134.6825716299, + 99094.27600200707, + 98811.10588893853, + 98843.48167264217, + 98657.83374209405, + 98842.07415652029, + 98808.61446596768, + 98331.12197959317, + 96974.21051137756, + 97630.01658930292, + 96729.15577103519, + 96683.62819879764, + 96749.40914201127, + 96427.63029291548, + 96556.50208945356, + 96476.47729265835, + 96690.58990713069, + 96682.63202971622, + 96653.2046434958, + 96758.39730707722, + 96298.39834593558, + 96619.23739357965, + 96582.497731417, + 96823.69736253725, + 98838.92697965828, + 98813.35123913873, + 98939.02464143044, + 99680.868715288, + 99638.52780788013, + 99963.33470263422, + 98861.65395145089, + 98776.13812199206, + 99095.76812778092, + 100018.2529981147, + 99900.62820788269, + 98521.7351726817, + 98519.99346824022, + 98584.58084122544, + 100138.75423323698, + 100090.19575634002, + 98926.99585752713, + 99231.54971618211, + 98725.93395914823, + 99114.81760073986, + 99045.63820710068, + 99468.37618059154, + 99177.3613555299, + 98988.53553480796, + 100522.9307233778, + 100464.55461316847, + 100449.40777875896, + 100495.63241925946, + 100576.36749710432, + 100455.6413624251, + 100525.73188351096, + 100351.79368494135, + 100476.8920067561, + 100427.28950578252, + 98769.78629555774, + 98770.78359572044, + 98068.38917637721, + 98746.9346100943, + 98699.80357689559, + 98826.116121155, + 98799.14209262622, + 98725.28103778043, + 98787.95269882937, + 98129.7525732422, + 98403.21551613676, + 98151.80634944019, + 97189.75008136328, + 97327.96341535875, + 97292.96960541717, + 97276.7637530654, + 96579.02120154037, + 96667.30159934703, + 96523.83444580324, + 96601.08098118886, + 96236.40087597791, + 96907.29475216444, + 96790.16254788224, + 96760.16114880143, + 96793.1547839298, + 96842.40378280648, + 96818.91536222614, + 98461.43619215692, + 98969.8900532446, + 98952.25912959375, + 98580.65213422495, + 97141.36470938755, + 98095.02656369311, + 97617.95626612005, + 97665.4420007734, + 97481.78136987441, + 97127.93819900935, + 97221.84975595506, + 97516.68785216649, + 97585.7108158271, + 97957.26827753473, + 97968.93352559829, + 97264.96842755843, + 98299.92048938914, + 99305.95497196195, + 93512.0665150006, + 93468.51530246586, + 91029.6718792886, + 93426.45832585903, + 91037.1098997176, + 98242.79590727984, + 97462.89725909327, + 97456.2056098314, + 98433.14621035084, + 98477.429727746, + 98538.82780358141, + 98375.01487679547, + 98416.20709657238, + 98325.44484999502, + 98375.97684548568, + 98682.66165069364, + 98525.56000149965, + 98534.19792713977, + 98503.47469608205, + 98474.2557014724, + 98279.5985168257, + 97624.27677318298, + 97802.02757327574, + 97742.78747464505, + 97756.40467231974, + 97757.15441742557, + 97763.11112414948, + 97632.86870117598, + 97548.50753261574, + 97550.14905081774, + 97702.15796126818, + 97668.33495977538, + 97591.06376324758, + 97578.69930046126, + 97852.61077277781, + 97880.34737144559, + 97861.94027265099, + 97853.43014004357, + 97905.97332804937, + 97511.90340028529, + 97451.31724560489, + 99037.5226338215, + 100727.75513265263, + 100750.1025781271, + 100687.04963334247, + 100602.82413484645, + 100640.07222561758, + 100255.5576926834, + 99740.00115531619, + 100701.21851963115, + 100775.90866047998, + 100801.37971775861, + 100846.7632036239, + 100839.18720467621, + 100901.78826113316, + 97229.1829487141, + 97839.59876865869, + 97910.66450289705, + 98039.3188920253, + 97934.20656019785, + 97891.53141790035, + 98026.30394341591, + 98087.87224633229, + 97950.34128723628, + 98003.43954283377, + 97956.48157305346, + 98065.65357283973, + 98003.37029682676, + 98058.47170369046, + 98005.49620436512, + 99320.77326235635, + 98557.66658610443, + 98082.7411356652, + 98154.79026285015, + 98056.63600860414, + 98887.5178660438, + 98858.33028971287, + 98814.80490784877, + 98801.02414722591, + 98561.74883562999, + 98550.27263705501, + 98534.96076552787, + 98475.56960112561, + 98680.67319796431, + 98762.74855690046, + 99810.55530468805, + 98806.04554028373, + 98848.42698144261, + 98857.8438649981, + 98852.46109769984, + 98865.24822179487, + 98812.89064703413, + 98862.90020767787, + 98912.2032568487, + 98848.37039474472, + 98927.63991134016, + 98871.604415136, + 98590.82216815953, + 98580.43638270833, + 98576.02995710363, + 99183.69321269826, + 99184.45845454505, + 99203.41993384891, + 99138.15878651995, + 99087.05635140055, + 99077.1384967604, + 99232.24004132024, + 99125.68851110415, + 99251.01558609436, + 99179.65212891849, + 99256.69258645491, + 99310.08167305635, + 99356.00094070661, + 99276.65181129325, + 99384.78207485296, + 99335.96076485507, + 99296.20265730387, + 99213.97061960657, + 98964.38050539838, + 98965.82200587254, + 99044.8950183139, + 99100.15481263316, + 99075.39447626255, + 99003.3483507825, + 98925.76540962922, + 99020.01817893048, + 97407.28894967055, + 96098.29296669562, + 95976.09403074846, + 96042.6556096919, + 98812.20854097081, + 98743.59086221435, + 98698.0390158326, + 98395.64092112977, + 99111.66394753019, + 99274.85653841426, + 98707.12897134296, + 98672.40559262648, + 98740.33441798067, + 97915.07564498202, + 97854.3706268973, + 97779.51858962477, + 98580.6830473668, + 98706.46663611768, + 98640.08887323189, + 98958.9528701298, + 98946.07821880339, + 98660.70375119649, + 98701.649867651, + 98748.18261153143, + 98769.34553580024, + 98811.9140649854, + 98763.92551654496, + 98943.77117264194, + 98920.62609439224, + 98965.91211265045, + 99052.24477125063, + 99044.50329098791, + 99032.0128001208, + 99017.68748657264, + 98920.27979214246, + 98997.79724083436, + 98048.50795422566, + 98136.90529710805, + 98100.62435260214, + 98171.72774331711, + 98063.40476674002, + 97962.8529627224, + 97088.36103582702, + 97132.34495519406, + 97104.45756857881, + 96664.92235510008, + 96821.97556877533, + 96897.6332798164, + 96990.68878793032, + 97838.15687650762, + 97840.98673438343, + 97860.03824334558, + 98113.9638494234, + 97039.67013502431, + 96492.5609236822, + 96615.15999672425, + 96528.33063667924, + 96614.04896619167, + 96775.60254599106, + 96785.05589602233, + 96813.96810061809, + 97041.31823044339, + 96562.25821519687, + 96460.68693276949, + 96650.20758230845, + 96694.63413088757, + 97825.46025079563, + 97882.40005223262, + 96674.56656020731, + 96567.52080584335, + 96473.61402662427, + 96563.17797498858, + 96487.03219794935, + 96606.19908924971, + 96745.48639039516, + 96395.4047179211, + 97145.64717006857, + 97826.8631013778, + 96850.70696827324, + 96914.37666890645, + 96353.01468538467, + 96501.80370280289, + 96513.42435181382, + 96529.07020886255, + 97870.69758646561, + 97980.44692218993, + 96494.53387742698, + 96671.430711433, + 96761.68518269938, + 96719.41280916671, + 96550.26834448069, + 97918.02611502612, + 98643.83720148244, + 97960.90157310556, + 98153.28211258577, + 98122.79057084915, + 98078.02055378513, + 97988.49066071308, + 98115.16651510971, + 98104.82634322677, + 98205.6244883252, + 98133.92087625408, + 98052.39180433995, + 98186.92871996413, + 98222.49612544493, + 98264.92512138016, + 98221.83205647097, + 98066.64128360373, + 98155.19067500987, + 98034.10447834089, + 98200.28996843542, + 98087.54079911893, + 97990.12664870804, + 98120.04312787396, + 98163.7446629629, + 97974.17413359083, + 98088.95408705338, + 98156.57677246204, + 98080.18500654254, + 97487.01075638118, + 96789.66261350742, + 96730.73981449436, + 96669.89538879196, + 97293.59562630084, + 97174.16332095799, + 96017.05902387391, + 95880.10041446517, + 96042.6924533272, + 95941.86961688883, + 95961.65877852618, + 97833.49395811494, + 97769.6545141948, + 97689.04199438865, + 97742.3298744743, + 97690.73748476274, + 97719.11017016157, + 97819.75167904481, + 97794.19742949636, + 97784.48324520058, + 97674.59282702129, + 97879.59554121646, + 97385.40579970718, + 97307.86343808395, + 97387.94072486232, + 99393.56887338916, + 99259.21726110313, + 99247.96158297804, + 100188.32724919924, + 100135.68904443846, + 100098.24757711026, + 100206.52451144153, + 100008.5242363836, + 100023.04349004387, + 99915.71669982743, + 99634.45747805986, + 99276.13363968547, + 99418.78774585869, + 99721.65602004208, + 99821.52193102303, + 99782.84167263377, + 100072.59807186079, + 100035.70914567317, + 100138.27133994643, + 100117.7864666539, + 100090.44891664409, + 100148.86556864316, + 99244.03843365682, + 99283.19337789025, + 99220.99777236252, + 99230.95664968503, + 99169.12469268014, + 99164.44549248519, + 100358.34371105966, + 100290.3042284984, + 100340.75858714842, + 101792.84162073708, + 101761.83228399587, + 101728.54900723274, + 101863.51123341605, + 101791.94014384845, + 101799.15202304373, + 101713.12879362177, + 101785.2180011013, + 101729.0076770661, + 101836.91173085483, + 101818.8515335007, + 100033.99626853142, + 100056.8272847258, + 100210.20674841575, + 99041.75843858132, + 98943.79559667868, + 99197.38567357122, + 99167.98965627975, + 99277.40202349014, + 99119.8302296543, + 99163.87627855373, + 99243.18112052011, + 100381.5590275909, + 100259.89095200166, + 100662.41576920166, + 100337.12642639093, + 100250.649651169, + 100190.16929326992, + 100223.74470405089, + 100340.9819908014, + 100273.38677134522, + 100527.79988951613, + 100245.97642650244, + 100375.27221342435, + 100149.25456405795, + 100360.87356998086, + 100194.58359036756, + 100264.94556360798, + 100306.31112448443, + 100355.36974381156, + 100212.88630816322, + 100290.39422073738, + 100350.59535010663, + 100165.59976549802, + 100315.7960592362, + 100567.69227692556, + 100536.39347136863, + 100383.79630149792, + 100199.17691599797, + 100338.69278423514, + 100271.61413440437, + 100247.40805045809, + 100338.62291364912, + 100211.53726164077, + 100322.38298891425, + 100100.20675579492, + 100315.47955652213, + 100216.33192664117, + 100305.27486562256, + 96639.67658830492, + 96484.06922913101, + 96407.77425144732, + 96477.97537890695, + 96615.45058048039, + 96637.18040938227, + 96445.97001463277, + 96442.19223447616, + 96513.66255512048, + 96476.07063939855, + 96494.88439651101, + 96530.70788196326, + 96552.93796653328, + 96499.0101680733, + 97430.88450662757, + 97388.70330978224, + 97514.10936096587, + 96153.0643515696, + 95992.76643803087, + 98037.94363845246, + 97758.7792343351, + 97924.22096734567, + 97869.90224058629, + 97598.62515358592, + 97513.94954233654, + 97646.31748849346, + 97641.97081789764, + 97666.59449828726, + 97602.85068296298, + 97598.68612452112, + 97507.23992229323, + 97525.14675514927, + 97666.02806304352, + 97650.998850365, + 97694.2160645586, + 97526.99989056711, + 97615.33596390781, + 97568.00795796615, + 97487.47775279515, + 97609.02859822716, + 97572.83663061078, + 99592.54688001878, + 99517.07966370584, + 99448.41927271156, + 99589.72130527606, + 99486.45689499842, + 99633.35691037332, + 98792.27822179062, + 99298.84335251687, + 99373.75997603334, + 99966.96381501803, + 99846.93713129792, + 88005.39501412887, + 88221.67985851956, + 88072.43363114585, + 88237.96933675258, + 88133.87820323496, + 87861.16765307833, + 88044.20014226538, + 88015.28821551744, + 87995.2188458752, + 87896.16014075337, + 88048.98798497369, + 87911.3761076322, + 88036.32356842181, + 88065.09753717842, + 88214.29095123295, + 87975.3434675614, + 87949.43781862337, + 88083.67915939626, + 88158.44431618885, + 87948.66838341518, + 87939.92779797339, + 88143.70730471626, + 87928.63944883185, + 87987.0677224219, + 88052.04997633191, + 88073.48466074695, + 88174.19889504618, + 88032.3701422123, + 88091.77158766096, + 88010.18942416027, + 88115.8447964154, + 87883.47843097824, + 88004.3574220565, + 87867.93517461464, + 87061.20940616545, + 88117.88520562027, + 87891.6635003915, + 88163.4850022418, + 88041.55582208642, + 87995.77155911438, + 88256.28979169391, + 87931.70512781639, + 88089.06754806396, + 87920.82827675848, + 88062.01682071644, + 87950.93430502362, + 88039.48618979446, + 87917.14077060764, + 87875.51543171445, + 87920.69502777123, + 88037.67214329758, + 88053.62636213166, + 87994.84521056418, + 88204.37990451731, + 88198.16168147081, + 87899.36719419197, + 87868.04422265603, + 87756.60468171052, + 87977.89446006849, + 88018.06263107814, + 88175.87859466553, + 87908.9091473079, + 88066.92995974339, + 87947.19715900774, + 88139.6579294049, + 87959.87525816729, + 87893.19707276371, + 88152.20646040382, + 88083.14494732753, + 88230.25871974292, + 87950.88841137299, + 88089.31618178032, + 88005.21804614809, + 87945.58722002029, + 88191.87494491128, + 87898.24283727448, + 88093.20221250107, + 88014.37416969781, + 88132.49377530353, + 88274.88910994626, + 88020.02004119602, + 87977.21260381762, + 88071.22783884605, + 87979.30536450844, + 88132.99064196317, + 88075.30778368968, + 87515.23612648762, + 88112.44158066339, + 87997.31100720952, + 88205.36796568194, + 88244.89577094054, + 88118.88901387733, + 88170.02127686414, + 88122.48677544181, + 87836.350717135, + 88188.31541444028, + 88181.35353825515, + 88029.75270585327, + 88055.3210429841, + 87486.18502347278, + 88169.49888342613, + 87912.05340361188, + 88114.60799674282, + 88030.32446441583, + 87988.09892554887, + 87936.39332619171, + 88114.46908342814, + 88116.38592969814, + 87831.96710060169, + 87973.10937146156, + 87997.70702987113, + 88086.23100935988, + 87992.90727468063, + 87971.16697325518, + 87985.41310963874, + 88090.43562993355, + 88143.62371120854, + 88035.58336234222, + 88075.61019283785, + 94943.83700356272, + 95818.53001808233, + 96045.66684685949, + 95969.1256184073, + 96013.81260119048, + 96042.74026637044, + 95968.80222215265, + 95912.47979836861, + 95925.66592354236, + 95936.78246887373, + 95889.97314488533, + 95978.73409728472, + 95867.87958002836, + 96017.35327396306, + 96248.76337904352, + 96135.22740085266, + 95288.7583767709, + 95940.42592069102, + 96031.3795211209, + 94069.03735918325, + 94009.56158523318, + 94130.04763539109, + 95731.12015912194, + 95616.0407219737, + 95659.6018735391, + 95678.62819334009, + 95781.78664237607, + 95577.34405122125, + 95655.75208549788, + 95710.76531338083, + 95799.27305372994, + 95306.53646843051, + 95339.84556579817, + 100452.52175447682, + 100508.74664244991, + 99417.06942940914, + 99490.48077246742, + 101263.5858464501, + 101294.76632948937, + 101162.83347248544, + 101321.38820055868, + 101189.73696638984, + 101276.19421116, + 101215.22740740502, + 101132.68859257287, + 101231.96182220083, + 101113.69616196322, + 101202.08234411357, + 101323.03686175268, + 101302.71586201976, + 101208.71003175106, + 101165.55850365866, + 101249.63872563199, + 101225.01239942892, + 101148.34414742448, + 99696.20174737588, + 99613.57523791396, + 99631.65790217281, + 99680.51394878581, + 99522.55089557452, + 99666.63776945528, + 99713.66464718881, + 99549.22834567956, + 99527.88570730339, + 97989.10101650721, + 97708.58185165055, + 98480.26982394698, + 98370.33853712298, + 98255.74444021816, + 98408.56530732088, + 98320.44328914571, + 100450.95558034207, + 100480.82034926659, + 100480.49092912518, + 100580.56121342597, + 100380.95102466598, + 100498.70305671386, + 100425.06940729756, + 100647.00721589438, + 100589.5479287922, + 100585.4129716198, + 100545.35934978107, + 99316.61246387733, + 99215.94068343456, + 100901.46988766377, + 100967.34161974456, + 101607.11660507972, + 101488.02083832397, + 101538.43241360724, + 101571.4209728939, + 101614.60294862564, + 101543.98807230422, + 100140.2110009592, + 99781.65659298775, + 99630.32221252672, + 99736.34284897555, + 99939.68816469236, + 99738.68447975624, + 100756.1343307411, + 100435.24947529356, + 100910.8664332588, + 100677.72714984877, + 100735.90159757144, + 100826.9420164402, + 100347.59604666795, + 100724.62664190622, + 100800.28375220715, + 99958.28802683057, + 100223.51578710719, + 100030.03728774759, + 100255.25301069795, + 100097.64817745179, + 100070.27980833458, + 99496.54217956355, + 99834.26311033826, + 99649.46419121683, + 99704.24505410295, + 98099.14976704735, + 97992.47106040179, + 99172.12620844663, + 99263.51330746185, + 99164.85920947728, + 99302.85767182164, + 99237.92705301281, + 99353.20063443409, + 99422.72710447569, + 99530.40062035782, + 99623.09686400622, + 102262.73637918029, + 101096.52251097043, + 100900.72710750607, + 100854.58788568957, + 100930.54410580952, + 100881.30772525753, + 101046.55638829275, + 100950.10071476863, + 100905.34579135245, + 101004.70055184087, + 100970.51780212278, + 99071.91798559703, + 100230.94866376575, + 100247.6955386029, + 100336.54641164783, + 100286.23206476576, + 100288.19672372109, + 99946.65854951633, + 98382.05092138954, + 98149.46450257779, + 98195.77272004819, + 98469.92455216771, + 99851.71491845028, + 100095.6614984881, + 99692.3706968398, + 100082.91108254869, + 99804.15557625018, + 99448.71921839722, + 99060.25043722533, + 99023.27650875496, + 99297.5702546631, + 99294.36932291552, + 99179.30995275112, + 100045.4718399428, + 99991.84217198574, + 100144.94289097113, + 100186.88672513781, + 99999.259001288, + 100029.53100660541, + 99983.89846345481, + 100070.04335012313, + 99963.84228945826, + 100154.95560200007, + 100126.49383112307, + 100184.79366257432, + 100095.9453059413, + 99972.532450601, + 99935.32617481564, + 100054.72761578535, + 100167.54861806809, + 100268.01014641963, + 100065.78360368013, + 99954.27857977797, + 100300.23650300906, + 100047.57660412931, + 99960.71023235824, + 99469.40839036046, + 99742.61436390011, + 99787.61466225835, + 99752.65287057367, + 99667.34686788224, + 99662.1015345583, + 99902.68854543792, + 99569.89208691959, + 99820.02624163267, + 99638.83452551358, + 99711.04801908563, + 99637.2394192473, + 99670.90654530568, + 99871.95762795635, + 99867.06009800416, + 99773.13365021958, + 99788.04993321348, + 100886.59644421024, + 100617.57692160354, + 97354.40959148448, + 97308.04795724564, + 99946.82760551533, + 99861.30129865861, + 99854.73519886057, + 99876.79834798473, + 99825.5809352925, + 99696.4776935133, + 99449.32982858743, + 100146.45911618347, + 100194.34609094857, + 100236.08045057741, + 100318.10888305007, + 100414.29908033357, + 100954.21212780282, + 100854.71599889648, + 100715.77423406432, + 100938.47273980454, + 100740.51816279993, + 100647.85842417844, + 100675.59804321895, + 100680.18671105271, + 100609.66249449608, + 102544.79556060483, + 102217.36666847287, + 102521.74551958093, + 101588.4570754577, + 101596.86944416925, + 101518.34662372227, + 101870.12225865177, + 101800.1352857561, + 101817.25828775382, + 101888.27034944776, + 100627.40352162097, + 100568.88671127104, + 100529.03073101211, + 101462.26776524783, + 101562.10256227688, + 99808.65192178015, + 99595.46430131905, + 99627.98538427509, + 99554.67141647628, + 99753.56979486135, + 99620.77161459692, + 100288.64924019997, + 100073.37253120718, + 100257.14036743405, + 98443.42888803613, + 98504.51157473968, + 98381.06197054817, + 100277.45944226006, + 102041.9705971981, + 102065.42302869826, + 96140.80721502517, + 96732.12162014724, + 96807.24936764163, + 98966.24498506205, + 99285.4906673645, + 96696.72791352752, + 102774.85126684737, + 102763.62240036845, + 102753.86799097287, + 102900.43476422675, + 102939.9486939862, + 102869.11973290454, + 102835.06492486139, + 102797.26240935021, + 102983.62389345889, + 102888.1607695238, + 102858.79048659823, + 102803.82818927991, + 102610.83531896502, + 102890.71599205933, + 102924.12080650972, + 102738.0755445841, + 102859.05034614111, + 102829.27652840661, + 102718.75129913565, + 102904.49581769775, + 102836.15547996153, + 102865.36924499608, + 102930.443259606, + 102806.54367917038, + 102659.10548567928, + 102970.78003743586, + 102763.33394570912, + 102977.66845606956, + 102860.55045390091, + 102980.65396752457, + 102843.42070993401, + 102828.80242806238, + 102785.4793679961, + 102950.45484180044, + 102881.80029360467, + 102698.37186316603, + 103114.51441301465, + 102907.02355996634, + 102915.12131220687, + 102757.81028208174, + 102903.34874311111, + 102698.37513516098, + 102803.12747255337, + 102698.7329379008, + 102785.12283960356, + 103114.84536767862, + 103015.27081336587, + 102767.34552296864, + 102676.11743571368, + 102768.67006444198, + 102732.01298329032, + 102964.4387673357, + 102978.49762423344, + 102709.19849968472, + 102871.27974551258, + 102802.73046718207, + 102833.28125282656, + 102912.49881841196, + 102824.49834513121, + 102850.44795050252, + 102910.71632423713, + 100168.92190700649, + 100060.87608646908, + 100195.98005392331, + 100232.07739882938, + 100140.5345373613, + 100231.8212248547, + 100120.00974518096, + 99706.26075690931, + 99648.48429705722, + 98999.90695568817, + 99298.58296128808, + 99345.00160357062, + 98979.39440657692, + 98865.98020761501, + 98836.74859736628, + 98848.63298920334, + 98970.52960408649, + 99411.64293529403, + 99438.0742810684, + 98215.40985722737, + 99972.74540205879, + 99931.27630633158, + 99804.55441106777, + 99656.82244812195, + 97650.23041136506, + 97618.76347699384, + 97524.30567878918, + 97579.76275824622, + 97515.47048470171, + 95421.28692426691, + 95460.4484609827, + 95525.97848344142, + 99961.60534852691, + 99989.35584080167, + 99903.53901231757, + 99773.8565122577, + 99636.19206865072, + 99784.77259622097, + 99779.47732732524, + 99727.4746257999 + ], + "y": [ + -188630.5751925975, + -188333.01761814565, + -188120.26418891654, + -188484.3860102188, + -188495.23201231525, + -188320.30928268767, + -188483.56766699257, + -187939.12845477546, + -187818.23537279075, + -187946.7603080632, + -188197.8301536245, + -188683.2303206299, + -188503.10517806208, + -188860.7645077761, + -188943.16984077886, + -189195.75127467563, + -188593.0213982362, + -188664.20873805106, + -188389.7264047301, + -188531.62632111614, + -188870.3516127079, + -188193.26327558464, + -187318.35447427825, + -189806.69206404962, + -188090.2894991313, + -188100.01616886404, + -188174.55996141888, + -188463.2031115645, + -188363.74532847013, + -187605.6195439504, + -188732.3518539843, + -184365.92318507173, + -188187.27869729063, + -188342.5253574899, + -187588.75004952576, + -189081.41342393393, + -188060.79254294612, + -188845.78996045736, + -188800.35117287276, + -188205.98013851763, + -188992.01175242575, + -188221.79324811854, + -188559.27230275373, + -188136.72692104083, + -187550.377833089, + -188302.59803287973, + -187581.63192013613, + -187717.56726598475, + -188480.64988687172, + -188160.1723451082, + -188798.2366179604, + -188090.79273053954, + -187779.636684694, + -188782.71424431694, + -187419.76550716007, + -188621.19074517605, + -187478.37592567242, + -187971.61344319995, + -187778.30145997382, + -187625.15506672708, + -186611.5059282818, + -188003.31924616438, + -188139.1086900214, + -188172.13924848195, + -187348.161691788, + -188223.82733587097, + -188730.91358476676, + -187886.4063756375, + -188597.83399210958, + -188057.1917578529, + -188218.10363143042, + -188210.32065825685, + -188129.95134955403, + -188196.78625864437, + -188493.78120901805, + -188034.45615562776, + -188161.6224994722, + -188173.13991697345, + -188249.23314484346, + -188327.77303545873, + -188516.92372013946, + -189362.5154690305, + -188432.70004235505, + -188115.43097167817, + -188400.87592482337, + -188482.24258789566, + -188788.26218175198, + -189293.36061735288, + -189227.5443430391, + -188131.32433438205, + -188109.2701383384, + -188095.6269492578, + -188368.0469139002, + -188160.44816852582, + -188198.66663852846, + -188806.49024330094, + -189163.69044909158, + -185208.78508001886, + -188125.1114877186, + -188534.0512551924, + -188177.51543305253, + -188133.61205856866, + -188047.21116345978, + -188112.59605802642, + -188194.2363318084, + -188117.56111774204, + -188690.07025037165, + -188656.54845148328, + -188969.58942661897, + -188902.73804542943, + -189437.10887228855, + -188334.74393636227, + -189186.06009143573, + -188965.52824986106, + -188960.47562263405, + -188470.92069224652, + -188476.5108117482, + -188140.7416293255, + -188146.4029455515, + -188071.56456675925, + -188736.90081401754, + -188963.01391432688, + -188834.10272951444, + -189003.73857407318, + -187984.04010321392, + -188504.82116380852, + -188905.6100788483, + -188469.95350641874, + -188517.84736046946, + -188304.5177743197, + -188106.72693407602, + -188224.97547898805, + -188062.4324835948, + -188068.27323340887, + -188836.55324492624, + -189360.7972441431, + -188481.55600240765, + -188657.5093365336, + -188989.48748180468, + -186433.20819659182, + -187618.5955755901, + -188608.14004422975, + -188103.543164194, + -188244.1581110861, + -189169.82807631438, + -187562.6954412684, + -188597.59464444526, + -188094.93147997395, + -188497.24015716757, + -186541.63161815086, + -189066.48960328338, + -188746.57951263554, + -188974.92632111761, + -188911.8607199644, + -188919.7029759385, + -188102.7775258803, + -188377.38150042814, + -188087.26616295817, + -188979.0014231341, + -188075.4320336564, + -188078.45265644975, + -188154.95367904997, + -189231.2675484738, + -188515.5389473062, + -188291.51205377275, + -188851.13864683165, + -187819.11455949367, + -189285.9657250609, + -188590.74143741513, + -188592.58854995444, + -188149.64184463344, + -188010.31234546934, + -188060.2135347956, + -188203.78076926843, + -188646.02879834978, + -188429.88264305083, + -188690.19852216193, + -189267.9620036595, + -188566.821774848, + -188252.50921945827, + -188121.3122975104, + -188198.51232125357, + -188108.59779207408, + -188127.2678753391, + -188081.2142320706, + -188533.7358044206, + -187599.9393852977, + -188530.48273097305, + -188098.39897942072, + -188674.40626418887, + -188083.60697520856, + -188148.15947986252, + -188022.57383190584, + -188130.72283528827, + -188048.00492761855, + -188170.03703741357, + -188251.20192635697, + -188251.14135969765, + -189072.52109977874, + -189421.3965259288, + -188487.8442985911, + -188909.27353199496, + -188597.87223608652, + -187913.85881532487, + -188652.52674561567, + -188835.22735785999, + -188894.10833929706, + -189390.9934105709, + -189304.65399711, + -188772.49683122957, + -187066.75929757126, + -188572.61534136938, + -188424.95815413288, + -188285.79535372727, + -186683.14575150548, + -188557.7500853805, + -189297.14028084598, + -189158.03047828437, + -188273.612045506, + -187641.16543157026, + -188244.37359244894, + -188328.36296298457, + -186973.0577066971, + -188676.80334905128, + -188706.18078984448, + -188123.2736693611, + -188699.20817216582, + -188902.71776057317, + -188705.66239081704, + -188651.89978288996, + -188031.4228654602, + -188507.5871274623, + -188473.15080842157, + -187558.11023642388, + -189344.7791897772, + -188568.03135249048, + -189006.15667271154, + -188907.33441810505, + -188872.08380899028, + -189090.95733044946, + -188466.8921120741, + -188916.39990961482, + -188890.76276156757, + -189031.25167023003, + -190718.20336678185, + -188924.92880801545, + -189611.13910755786, + -189371.07705115504, + -187862.73468047418, + -188350.84668912945, + -188435.49777233123, + -189286.4104808909, + -189329.86947105004, + -188827.20853608186, + -188656.4246604865, + -188224.81397464138, + -188371.826375027, + -188530.07168880716, + -188684.380536833, + -188809.10200272722, + -189064.02055466248, + -188910.5188593822, + -187504.5939470865, + -188238.2747120987, + -189055.06434900622, + -188985.5661371472, + -188817.42461554098, + -188328.4992507085, + -188032.35686812358, + -188989.35923942667, + -188537.1492944953, + -188332.10285588854, + -188224.61386277262, + -188398.43069892912, + -188690.45660123866, + -188764.5244681029, + -188476.21098523034, + -188906.10027535562, + -188598.92292480564, + -188338.53308343157, + -188035.09619434597, + -187471.21704082517, + -187485.8021358164, + -187835.19770223383, + -187808.73897039745, + -188471.24794147993, + -188922.89599843553, + -189190.69568859632, + -188648.39727075843, + -188995.8386599755, + -188818.68200287974, + -189419.4844744169, + -188681.37081393888, + -190034.5154898649, + -189093.07196799477, + -188332.3887565364, + -189148.08464521947, + -189778.0564884073, + -188895.1305372902, + -189361.39928674913, + -189514.26395840745, + -188424.82223649055, + -188154.87099078548, + -188823.15900221813, + -188236.33672313037, + -188290.4882788216, + -188591.75199645569, + -188345.75062919507, + -189486.94419473826, + -189045.68105489522, + -188680.97177115767, + -187854.13914095613, + -187620.89247314315, + -187749.7848825597, + -187628.5971893858, + -186283.60700347682, + -186870.78214397354, + -189075.78000835242, + -189556.635346552, + -190524.42466711518, + -189972.3782485477, + -190110.09263707226, + -189723.06164490216, + -190104.18934124312, + -191447.36757318178, + -189487.1728230268, + -188337.61728350184, + -188634.22396120222, + -188577.10958302955, + -188609.33112603877, + -187678.114505735, + -187393.45287008572, + -187444.98398375107, + -187212.75750088846, + -187430.50547179487, + -187206.375494998, + -187142.3027271855, + -189125.41464985392, + -185759.04101010459, + -184987.91450924633, + -186636.99979215744, + -187026.07843949736, + -186362.3442443084, + -184641.7612714999, + -186631.89998789044, + -185684.77267411654, + -185952.0045384303, + -184904.78554636845, + -184466.17568020654, + -187733.16720291993, + -186005.44685669165, + -185619.78884854354, + -185702.8268145955, + -186641.42486820777, + -186086.34378531418, + -186293.45287911844, + -186774.72272855093, + -186590.54840473336, + -185178.65674855074, + -185915.41451703524, + -185024.2525256191, + -187101.25689315388, + -186246.8336915767, + -185785.58597568647, + -186910.03493563386, + -184853.0590167661, + -186226.79838547923, + -186901.84865346336, + -186721.96101630855, + -184537.33337450697, + -185045.17257071825, + -185015.8206856978, + -186804.32931589548, + -184581.5176270497, + -185481.01398954104, + -186732.67988941015, + -184625.82608792314, + -186816.72669112886, + -184583.06480907716, + -185882.0659107163, + -185038.89476309827, + -185605.49639890593, + -186050.83831655356, + -185545.91429343188, + -185541.4531936617, + -186168.82581792577, + -186748.98809619094, + -186212.79235782122, + -185138.3043013017, + -185886.66303952422, + -185943.81351701595, + -187223.2607479505, + -186155.98693221714, + -186745.5325164879, + -185873.2153007946, + -184956.02375735843, + -184916.01122916443, + -187298.0167096983, + -186400.0437673064, + -186436.31884006507, + -186909.73673779095, + -185995.1502748551, + -184615.0971850325, + -187360.11530786066, + -185731.06588292573, + -185203.40536363234, + -186738.0081330498, + -184452.34215766398, + -186427.8924649136, + -185642.1433378504, + -186666.6053800214, + -185815.18416524283, + -186758.5541269017, + -187178.7309685011, + -185344.84167674318, + -186299.91453282413, + -184913.47542316676, + -186120.90133707918, + -186355.57333992186, + -186189.16120161928, + -184489.52291589003, + -186020.49632337195, + -185978.46454360176, + -186423.1890183184, + -186357.39136631842, + -186197.9689961989, + -185022.86408063665, + -187501.80648056217, + -184448.27042316197, + -185456.1454266718, + -186332.64294302047, + -184782.3347015735, + -186335.73632380622, + -186471.46349538234, + -186139.010172475, + -186316.0422884422, + -185427.96582922543, + -185447.0419864294, + -184490.70631354378, + -184939.12159409848, + -185499.81083646082, + -185420.27932112452, + -186178.47202606747, + -185579.11398649425, + -162543.04429998007, + -185402.97734600544, + -184648.39875714693, + -185873.0454380232, + -185520.70192438262, + -185045.13302486815, + -184686.93743150224, + -184749.34739859024, + -184975.0257556787, + -186494.74258418888, + -186002.60660400984, + -185421.69274864852, + -184586.8813999643, + -185681.38668976224, + -186353.07679074036, + -185564.40303426507, + -186002.1139085686, + -185305.14466217102, + -185778.17229121647, + -186985.55167581502, + -186263.96942212473, + -185857.1772490468, + -185285.2393191878, + -187056.932365551, + -184676.4950788661, + -184930.69103318956, + -185654.1953572347, + -184539.2197937198, + -185426.67525594652, + -185125.95912239008, + -186228.52516030474, + -185197.58467855424, + -184440.56367975674, + -185759.1915587864, + -185972.1252497052, + -186192.2420612465, + -185572.22568055146, + -184521.98992331282, + -184716.55236438496, + -187315.42788165333, + -186517.17238975927, + -185020.17742510125, + -186047.50278945875, + -186067.006560711, + -185935.95217366592, + -187267.3268205127, + -186480.07163780744, + -185251.66599737256, + -186588.42377164616, + -185212.56249281162, + -185768.74376793872, + -184566.5211927391, + -184641.3699119499, + -184521.26817218866, + -187072.0455521363, + -187795.37604648358, + -189725.6419856943, + -187757.4125399983, + -187976.81833544138, + -187648.12160933763, + -188696.13322752403, + -188070.50402783387, + -189274.10474049454, + -189265.0331807753, + -189023.51159242663, + -189150.0722038921, + -188785.27223021127, + -189202.4647666379, + -188283.2622476873, + -188647.58850257998, + -187775.4606762898, + -189047.84983436737, + -188214.95290711892, + -187829.60079496383, + -188860.81131323622, + -187594.8777657927, + -188109.5947916895, + -188135.7951117508, + -188126.67429510137, + -188068.89540782082, + -188138.17806449422, + -188113.8147030654, + -188119.49823623613, + -188123.9780570342, + -188121.51859750494, + -188082.81454332572, + -188023.85098966694, + -188038.4334288893, + -188097.6602407291, + -188124.65543545736, + -188079.8329504583, + -188129.3743830729, + -187109.55145493208, + -186870.85476427, + -188380.61838572615, + -187896.4403547719, + -186832.87175251383, + -188228.79178433472, + -188560.0382335581, + -189116.42239682464, + -187271.2309208508, + -188311.63055655325, + -187739.67693354897, + -187063.92444055318, + -187917.59257197715, + -187718.91875175654, + -187835.8854861633, + -186803.90033266746, + -186803.59234443662, + -187788.5747429511, + -187893.88302668915, + -187975.0076209473, + -188925.1717325238, + -188021.2228785292, + -187932.34492398132, + -188182.1801783731, + -187688.50752132258, + -188117.50710319917, + -187793.53772320974, + -188261.16935105162, + -187834.80609488173, + -188539.05431916684, + -187997.42121583116, + -187612.6161505803, + -187887.72467534128, + -187994.01573117293, + -186612.36184898173, + -187574.2721654691, + -188185.43487919736, + -187645.64505814915, + -187791.77040384425, + -187981.65234561847, + -188328.62880040111, + -186953.31740903624, + -188465.46750448947, + -187228.86858406416, + -187937.28779075225, + -187728.251997722, + -187741.77573005384, + -187158.59874792627, + -187975.58965748092, + -187927.83620065072, + -186563.98191544128, + -187904.33904992894, + -186517.6751626997, + -188788.84774377767, + -187457.0743764612, + -187427.58017047317, + -186780.2984968334, + -187516.61720349116, + -188036.28044668204, + -187566.1094978599, + -187881.7928789883, + -187307.95076337553, + -187950.03622824297, + -187244.0460795401, + -187306.8260455551, + -186941.09836380862, + -187281.55271362027, + -184627.2559353374, + -187265.23927959087, + -187879.37136154508, + -187821.3765527352, + -188384.35926426292, + -187883.60479267285, + -187489.15417484118, + -186717.18778761072, + -186287.99929102132, + -187805.10710923118, + -187648.9973224916, + -186146.62535800086, + -187493.66055654176, + -187627.45216360627, + -187246.44784323307, + -186544.6994452667, + -188210.8583614681, + -187744.5423702615, + -188036.86055892534, + -179133.13735543872, + -187953.2923392146, + -187258.52951028265, + -186551.5718918603, + -186296.09077217794, + -185926.73089974615, + -185395.93395849012, + -185879.15090298475, + -186605.81963314634, + -186705.75237789055, + -186345.44096085647, + -186875.28527664224, + -187527.73357511935, + -187567.52052119686, + -187774.1615382006, + -187413.64255787656, + -186699.2701887279, + -185739.58717722545, + -187270.5390270905, + -185576.15263923115, + -186350.72668639437, + -185754.93903104283, + -187305.67084880813, + -187046.43325413764, + -184234.61115541728, + -186972.57418070477, + -183824.5305223081, + -188073.66592800152, + -187728.06688195525, + -188874.14340416354, + -188459.36009707808, + -190374.15560172813, + -189063.428793386, + -188003.3208638465, + -187986.19049612174, + -189149.42833616625, + -188614.21318785282, + -188591.14091919875, + -187899.4374158756, + -187973.27776270141, + -188306.96972666128, + -188623.6166852075, + -188689.9069400571, + -188243.41945504982, + -187366.96961790608, + -188433.4935194492, + -188344.57017201104, + -188096.6720864056, + -190042.38359170523, + -187776.081074906, + -188131.29016873462, + -188443.1461449862, + -186553.62133220496, + -188002.51793235893, + -187969.50621106548, + -187790.99540247666, + -187346.30214189566, + -188420.23770977926, + -189713.61547225437, + -189579.9504364677, + -189111.4078263055, + -187949.63698018505, + -188522.7223023232, + -187937.26783141587, + -188130.4537181713, + -187934.23814137233, + -188172.74538859082, + -188739.05313596342, + -188776.96293003074, + -187409.36259250416, + -188147.54710943915, + -188912.98663177204, + -187872.6633840466, + -187983.6774823736, + -191242.41426244462, + -186152.69967393065, + -189386.63393714104, + -187511.94987432053, + -188311.50521847996, + -187429.57924484243, + -188069.86804999335, + -187683.73338858323, + -188441.93108825223, + -188229.31889099232, + -187736.63135462272, + -187992.83317437719, + -188118.8223297085, + -187582.59747798453, + -187476.39314391202, + -187234.4612318493, + -188221.49233807725, + -188309.63351146277, + -187764.81958165232, + -188226.41949047343, + -188297.22695862473, + -186800.93628583517, + -188080.7633837035, + -187297.44363830626, + -187963.97664086308, + -187969.50842343477, + -188021.3687563727, + -187972.53307352384, + -188078.52295971283, + -188978.81025809547, + -188226.32844361593, + -187679.47433074287, + -188763.44516650846, + -187724.4325574573, + -187610.1377688772, + -187354.91901122752, + -187993.51411086737, + -187185.02879405092, + -188028.29034553113, + -188188.52643226265, + -187803.06549553943, + -188463.31349680066, + -187834.08698576453, + -187975.40467572561, + -187987.12541376214, + -187517.9128709205, + -188097.1885506176, + -188083.10255481664, + -188183.12236589222, + -188158.79572465117, + -189953.43285506195, + -187785.39966082262, + -188776.05672438274, + -187556.7890851402, + -187788.15822833957, + -187203.12559746174, + -188208.85344747134, + -188387.13883004195, + -187775.03036984504, + -188034.61082553468, + -188046.35626590863, + -188101.37584040826, + -188094.00217598723, + -188407.58725157817, + -188482.5310615353, + -190270.05275175368, + -188517.9738436573, + -188362.35931727977, + -188526.0290014248, + -188562.5678949605, + -188777.68796030607, + -188198.9950582187, + -188204.97639419296, + -188894.20780772806, + -188877.75447919974, + -189462.90626881117, + -188932.21737437064, + -188795.16991496552, + -188977.4576085, + -190074.33054887285, + -188697.3813039972, + -188898.08155878072, + -189113.8715419739, + -188845.84495555653, + -189204.34458726516, + -189029.22851713432, + -188216.02236323402, + -190233.5032244461, + -188846.81963719826, + -186096.45797461583, + -189624.14425346788, + -188972.66635322545, + -188756.88925757885, + -188954.19885795217, + -188231.47750730137, + -188228.14569705023, + -190039.66227026214, + -188955.70075548417, + -188817.15343371764, + -188911.31765919903, + -188817.64018552104, + -188387.0195355698, + -188217.19279192775, + -188215.48726479657, + -188940.66433230025, + -189435.39611651178, + -190181.63074577937, + -188605.13434911743, + -190160.9077330154, + -189966.56620810815, + -189999.31667014628, + -188266.23380139962, + -189466.79866331397, + -188990.40385466997, + -188104.07716877718, + -188549.88759442163, + -188275.44850877777, + -188155.0331583998, + -188220.5960329952, + -188295.15735575298, + -188327.76182227116, + -189229.17376885633, + -188397.25088022946, + -188984.20542329797, + -189302.6007381189, + -189570.55632521573, + -189768.79952321426, + -187278.70253330644, + -186223.42382426502, + -185538.47106454833, + -181316.88675453834, + -188577.68911072935, + -189429.78822251226, + -189243.0403538959, + -189251.3089257868, + -188563.19407494835, + -188854.39170410443, + -189260.15851219348, + -189231.4279713372, + -188786.31293626514, + -189104.52316957942, + -189182.68148483842, + -189072.0465506361, + -188705.65600489438, + -189967.28432425318, + -189454.98816233617, + -189757.15706957557, + -189951.737106575, + -188991.42081728007, + -189636.0078208734, + -190209.4983373492, + -190012.9068404736, + -189864.05117757033, + -190050.28712576124, + -188866.95996207467, + -189208.00816211943, + -189099.37048930768, + -188483.7955207067, + -188865.2383597738, + -188899.90215259913, + -188841.91500915465, + -188310.94209393, + -189567.91347630875, + -189475.84370340698, + -189256.76102591655, + -189118.55548115997, + -189287.09541988553, + -189836.02265256474, + -188267.79946330914, + -188734.64348648756, + -188499.89103916325, + -188424.26831552497, + -188471.16226267573, + -188555.01680973297, + -189062.6660397884, + -189368.04321790536, + -189207.12335782725, + -189901.5373675402, + -187627.1081749794, + -187857.75124697632, + -187760.40303329699, + -187858.44732430877, + -187957.10022871735, + -188486.6627500266, + -188672.58677714274, + -188275.58704858087, + -187965.95478834442, + -189024.27048204138, + -188563.84477598095, + -189010.6567271695, + -189191.62724059867, + -189723.8971601925, + -190283.4150628221, + -188285.74392279977, + -190048.63972499638, + -186790.41009242184, + -187248.01430917686, + -186364.1134175767, + -184046.07233791953, + -187468.17123172226, + -187004.07979892765, + -188726.61235021544, + -188040.02763009068, + -188376.78890401422, + -189797.29543539853, + -188727.56930522466, + -189767.66077987218, + -189402.54379102314, + -189855.4536758818, + -188921.83564302602, + -188744.70646205018, + -188570.19383203107, + -187452.2953444194, + -186432.95981047777, + -184493.4638333277, + -189681.03829755695, + -189180.69142051495, + -189494.99190465917, + -189418.3150618224, + -189406.1804548177, + -188956.60901643464, + -188286.47377093224, + -187847.91597445504, + -187772.9366644242, + -189454.44287559506, + -189336.90265698743, + -189688.38226235847, + -189642.32271672558, + -189773.80511431769, + -188623.37539469652, + -188059.06910793387, + -186490.92481183048, + -188035.43847485105, + -187899.97545537198, + -188759.4892448286, + -189867.76456386773, + -189966.51788839934, + -187864.57873495863, + -188459.5042273985, + -188339.61248515616, + -188482.4680775093, + -190059.0897295911, + -188449.63396273268, + -188564.80121031718, + -188934.75013167982, + -189407.17407776418, + -189594.04877099616, + -189928.77888545024, + -190063.494640501, + -190324.0838511919, + -190002.50380021115, + -189351.62227285848, + -188667.17352392792, + -189386.891690723, + -188871.73421564943, + -187862.98846391006, + -187369.8494239768, + -188047.51511369456, + -188898.55180012845, + -189023.57039513884, + -189300.64988114213, + -189304.23943329643, + -189802.91324633866, + -189198.96904724132, + -190149.611876793, + -189688.97127087243, + -190162.42457619242, + -189121.32206798793, + -185673.72485317432, + -187602.98284577316, + -187118.0943589478, + -187049.29511418982, + -188760.63914555783, + -188352.16461745944, + -188788.10931841948, + -188307.55943122407, + -185447.3982690385, + -185647.43874032347, + -186600.68816277097, + -190030.77698961753, + -189844.44305599996, + -189312.96716657415, + -188863.83470003767, + -190030.6059389626, + -188831.9884617397, + -188800.5645587159, + -188270.16098356986, + -188288.73056814942, + -188325.90735821644, + -187036.11661907207, + -187430.4310402768, + -187168.63791618857, + -188085.78649439852, + -188069.8757916443, + -188377.16521032414, + -181388.6636291559, + -186958.0626639662, + -187792.11829844635, + -186964.88142731908, + -186890.040734751, + -187516.96845806637, + -187371.3989655883, + -187673.56257634406, + -188468.66418560426, + -187827.28797163125, + -188015.37292595976, + -186963.61210988168, + -186909.75756834846, + -188500.0586157652, + -187625.4001681701, + -186957.07730695538, + -187126.5717021234, + -187092.89589648045, + -187547.0278070721, + -186215.06335089865, + -186961.92845610308, + -187072.4040574778, + -186908.50557712573, + -187018.58994966594, + -186937.57642460006, + -187082.89602712472, + -186995.12405826268, + -187033.26399727527, + -187917.0637720583, + -187031.77413979647, + -188265.26483815484, + -186858.39035521806, + -188079.2339962156, + -187486.7108342232, + -187583.99768382817, + -187642.49697600745, + -186233.90314590227, + -187072.79060259266, + -187621.1473503119, + -187006.72435799113, + -187790.78028682835, + -187892.14861530808, + -188892.18297269146, + -188905.7409194041, + -189138.7526208499, + -189186.7934963984, + -188827.6268164547, + -188634.27361204935, + -188976.67306946605, + -188450.6558889738, + -188410.6730522339, + -188982.28023135234, + -188901.95839418104, + -188293.05528383492, + -188304.60597921925, + -189027.32662829437, + -188703.02110051003, + -189670.30367153513, + -187994.90708299744, + -188227.91479363065, + -188959.37304124728, + -188384.46387554856, + -188423.99184216498, + -188238.2147196666, + -189253.3339606655, + -189185.39353573837, + -189354.40611590687, + -189275.31015895875, + -189331.45564091532, + -188567.58941515462, + -189030.19349696804, + -189196.05341570152, + -189004.60313990066, + -189177.62541549082, + -189238.99357410418, + -188534.02363205954, + -189103.72355039057, + -188253.45353298465, + -188413.92210597807, + -188679.23184501874, + -188187.00891794523, + -189002.36578898947, + -189314.34425935848, + -189077.88806110198, + -189112.1678726178, + -188644.9068178371, + -188854.15596558747, + -189111.59184893724, + -188992.06395225637, + -189040.44316666905, + -189146.26340260505, + -188960.36420407722, + -188977.27182089942, + -190700.1111637919, + -189013.04796735963, + -189379.49234130658, + -188621.49299553412, + -189304.65394903507, + -189125.53360787733, + -189135.01597268603, + -189115.81575099364, + -189157.19198902682, + -188738.48340001726, + -188921.90699962387, + -189360.31796682146, + -189070.91343901315, + -190093.18905705298, + -189047.08598048709, + -189299.65616548483, + -189095.541722688, + -188344.0930836277, + -189171.19029766714, + -189042.28405360697, + -189119.99497062556, + -188237.25251034857, + -189195.42176761568, + -189062.39520516488, + -189376.82012229282, + -188752.9247450727, + -189405.91331066622, + -189552.3086334869, + -189502.59770853355, + -189170.9678004025, + -189264.0420911513, + -189503.85032749924, + -189204.769419827, + -188590.4523846817, + -188232.11752967277, + -189226.9114919114, + -189164.54245151358, + -189027.77132385422, + -189230.86162244383, + -189066.13649801663, + -188975.60125457792, + -189062.5039727102, + -189350.8806358681, + -188269.15616936548, + -188968.20482936336, + -188815.02865766146, + -189043.76513096062, + -189256.66974275385, + -189395.66537570828, + -189168.39200200443, + -189180.9410564133, + -189294.69067324145, + -189527.4692278551, + -188818.7674323714, + -189257.13683550936, + -189100.23306250124, + -189550.2287127826, + -189290.7525839601, + -189267.28726523466, + -188239.65910895087, + -187509.8701143695, + -187500.4930551508, + -189204.5507592727, + -189093.8532022557, + -189171.2221999843, + -189071.60158787234, + -189093.08976506037, + -189407.5843037053, + -189481.84477904785, + -188480.6248001793, + -187643.83786716606, + -188410.19015950867, + -189244.75125275418, + -189322.13919379382, + -189036.37157464225, + -188851.6819268115, + -189227.67375761928, + -189075.98850339456, + -188744.13909734573, + -189286.49138647597, + -189153.23345672205, + -187858.47857020143, + -189295.42475244775, + -189309.40406356056, + -189446.06561523385, + -189270.95690073894, + -189371.36833568558, + -189045.81476778517, + -189090.02633489924, + -189167.51060793153, + -188997.7891351952, + -189166.2520355059, + -189128.02287472552, + -189377.71392390993, + -189261.63282785052, + -189189.44204252012, + -188832.0659363745, + -189372.78444553076, + -189522.90111062877, + -189215.01194453132, + -189188.26284097042, + -190170.23694941032, + -189137.65822856384, + -189532.13206147918, + -189244.33702691298, + -189342.90886317022, + -189601.42301397282, + -189001.4148694418, + -189031.42372914587, + -188346.60400362083, + -189432.19725203505, + -189383.60172976655, + -188396.23465801778, + -188159.4341766519, + -188977.16363192897, + -188924.8418972556, + -189025.99171597915, + -189271.29959663784, + -188897.62049298765, + -188978.69804431516, + -188947.4139822555, + -189026.34351702797, + -188711.72538129365, + -189104.3400123642, + -189226.8573059561, + -188884.40182536017, + -189212.70822393885, + -189665.23911238607, + -188941.9994408223, + -189434.8299251847, + -188586.70146604645, + -189292.63817566453, + -188468.64488827685, + -188955.28240884622, + -188530.70142542297, + -188888.66487646574, + -189282.2219107152, + -189684.28770806687, + -188955.7460585158, + -188128.57240646365, + -187792.9688123335, + -187942.22047264426, + -188476.1018531056, + -187953.14158568936, + -188243.55188231324, + -188224.56475781766, + -187566.37581145845, + -188187.95018705592, + -188277.6495023525, + -188172.14856838898, + -187507.9968975285, + -188728.81774535606, + -188290.08218015765, + -188107.46199151454, + -188848.55062442037, + -188717.3203540903, + -187899.4158525461, + -187856.58036489805, + -188204.3724056574, + -188169.14538504407, + -187899.237151973, + -188069.92329870115, + -188430.55900018988, + -187701.5703586604, + -187761.59383487626, + -187872.25388739264, + -187753.2084302758, + -187765.59237745742, + -187809.27238686706, + -188024.30685571092, + -188424.35361027447, + -187977.63799550864, + -188680.41340104947, + -188480.5260935519, + -184929.26330034356, + -191630.47589507297, + -189739.38463051288, + -189873.68737482626, + -189708.2272477365, + -187892.65214688177, + -187863.91165705194, + -189505.58704021748, + -189880.0757312348, + -189842.1324431489, + -188854.43713783327, + -189536.13208955494, + -188299.83165938678, + -189105.21478588888, + -189296.96733505363, + -189498.98953316532, + -188836.9731938192, + -189477.9687240938, + -189686.82438527062, + -189266.72814157297, + -189703.45302802385, + -189135.00336817247, + -189278.65997138573, + -189241.36313499292, + -189561.96308897558, + -189390.3446237331, + -191279.9278832995, + -193001.23653771952, + -187859.86995225446, + -189738.0525135467, + -189517.96720841108, + -190973.23484101656, + -189777.8358685715, + -188921.5431373296, + -190144.75403043907, + -188947.86956916028, + -189742.155668336, + -189692.5200326185, + -190156.38084035812, + -189713.56303116062, + -187405.71770728158, + -187389.66797592156, + -188640.45100665794, + -187622.41354491585, + -188826.8178670996, + -189837.0067281555, + -189774.66595851514, + -189615.88052612924, + -189272.23379027276, + -190029.28538193705, + -189844.7798702007, + -189790.5959091938, + -189991.2311607774, + -189682.05578414822, + -189987.64885100897, + -189360.52446627786, + -188528.04369924997, + -188875.90551008, + -188016.10442522762, + -188167.02460559944, + -188123.19483452023, + -189105.2816803546, + -188987.74156072343, + -189303.08944739285, + -189317.7229192206, + -189250.6861714318, + -188349.47236547497, + -189577.61389462257, + -188477.95331527485, + -189378.03325846698, + -189231.051408616, + -189290.40865383588, + -186632.56137489137, + -189396.51935593525, + -189490.2551625836, + -189589.28553677927, + -189048.4956879801, + -189131.92422966988, + -188104.6983502157, + -187704.763876957, + -189015.4951605007, + -188563.3727238801, + -188868.86823729656, + -188185.3569399699, + -187448.3572804437, + -188272.94824742872, + -189247.54195982916, + -189033.53333615928, + -189071.23203874825, + -188876.74592565937, + -189238.02623730994, + -189115.05770210535, + -189231.03855465443, + -189259.5246750294, + -189305.01453652733, + -189185.22678595383, + -189778.15834495376, + -189298.76112672515, + -188757.12524904165, + -188126.8200295349, + -188760.00770833693, + -188933.22539579918, + -188674.7471497121, + -188336.20643323814, + -188180.73220770183, + -188519.90581438286, + -187932.28950243027, + -188952.85593883562, + -189097.48187960163, + -188308.2995444295, + -188124.98331170535, + -188393.99052171747, + -188347.58050575748, + -188876.59928470026, + -189345.9124851909, + -188180.15644195993, + -189045.54815632163, + -188937.80405805522, + -188767.47226676266, + -187601.13526565803, + -187830.46815133246, + -186931.52009524958, + -187722.01964145992, + -188625.28745242656, + -188602.07939852623, + -188156.60345261396, + -189331.9915999827, + -188984.34951568441, + -189094.7454633695, + -189479.30333773256, + -188834.4604537936, + -187923.30486023927, + -188635.053643839, + -188696.782377594, + -189006.25883621728, + -189387.78435538372, + -189801.49095297614, + -189489.71907673345, + -190382.19427593888, + -190294.21864983928, + -190368.25817851265, + -189554.68072761627, + -189522.66677498195, + -189623.56254580448, + -188251.55613681383, + -189916.311805951, + -188292.3869375497, + -188271.77595069932, + -189041.9225197264, + -189199.17908190106, + -188285.76996994668, + -189537.7817031003, + -189352.73404518928, + -189471.04120599278, + -189679.53787245677, + -189408.21023611428, + -188999.3408802612, + -189645.5000292996, + -189431.51059923717, + -189615.4869081341, + -189750.14044068835, + -189801.76573120884, + -189558.55733558614, + -189504.89278882294, + -189522.26639614848, + -189536.3625339415, + -189750.30848512865, + -189442.69507087598, + -190034.61897906184, + -188801.60294815066, + -189834.3163791867, + -189257.69084732296, + -188954.66274327494, + -189640.1945004268, + -190115.39552164622, + -188306.66890581805, + -188312.41502651962, + -189659.46917226465, + -189317.8406785239, + -189302.72898643688, + -189169.03781422778, + -189731.85447908618, + -189446.80721719595, + -189275.603776678, + -189693.2055888678, + -189753.59627716336, + -189523.92981689292, + -189582.96181379963, + -190328.62833538937, + -189786.84207760714, + -189751.89635663538, + -188815.1944085261, + -189224.11613190582, + -189796.11674781732, + -189932.6237612485, + -189552.86218391886, + -189830.91246389045, + -189498.42730696275, + -189646.04277723422, + -189493.25493438917, + -188868.21171990343, + -189430.8749071048, + -189418.3979333305, + -188294.41257727327, + -188804.39291762855, + -189383.2134141077, + -189408.30108345978, + -189622.2992613024, + -189336.00050606855, + -189494.18089072162, + -189346.3496150686, + -189517.63745548116, + -189562.47650992335, + -189732.76841517194, + -189536.8343224868, + -189457.759153216, + -189532.57203367492, + -189507.00155087592, + -189055.85878078622, + -190253.9554374968, + -189453.52787322368, + -189199.04942802034, + -189518.1963457777, + -188415.7452673843, + -188922.00741313785, + -189565.95036095765, + -189599.43976925078, + -189447.3213721349, + -189592.0253847243, + -189704.67210231442, + -189429.51527102874, + -189549.2248295347, + -189732.63425983736, + -189156.18143433816, + -189593.73394135686, + -189255.76286114688, + -188480.57065962657, + -189396.15620173485, + -189119.4502426223, + -189099.2895300957, + -189372.92718386388, + -189530.79236599515, + -189323.80480814414, + -189638.78145869536, + -189285.81117966407, + -189920.08786925004, + -189568.58179882303, + -189490.09496069627, + -189529.25512316148, + -189325.65832119124, + -188851.56730320977, + -189408.06502858872, + -189515.4108281232, + -189356.0500464047, + -188887.3973668111, + -189225.07031019146, + -188770.14684657753, + -189474.47554588024, + -189774.7476661943, + -189656.34211244347, + -189485.92172726392, + -189381.9654969643, + -189641.00924985827, + -189677.82690449522, + -189393.09189406977, + -189725.99119278492, + -187911.2710909405, + -189560.62472315767, + -188296.21414801962, + -189686.30027570974, + -189068.82122443494, + -188278.08712796614, + -189634.1669562323, + -189557.7983769141, + -189363.34000394432, + -187689.0483805537, + -189640.61261352964, + -189583.51700064118, + -189321.36395637903, + -189328.29367726677, + -188925.91974127013, + -189730.37815090845, + -188921.42443902968, + -189511.2209653839, + -189692.25637540634, + -189322.72491470815, + -189703.6139847984, + -189590.25078595642, + -188547.46824695042, + -189621.15970611246, + -189554.07262256934, + -188935.33612228493, + -189468.52121776558, + -189726.9839142311, + -189604.051822791, + -189172.60980398947, + -189516.1723814726, + -189606.13981497308, + -189818.32592583625, + -189832.11385822124, + -188799.02956322636, + -189141.57950872142, + -189643.42341201042, + -189659.6677604097, + -189525.22410298133, + -189794.1589935236, + -189493.67651902192, + -189257.11848075397, + -189190.8420644383, + -189427.21294576538, + -189688.7712261936, + -189402.41667130496, + -188695.04808894158, + -189566.4665127886, + -187695.57614406702, + -188758.55641030593, + -189744.39363754724, + -188470.03479631987, + -189424.87314537496, + -189689.52817768222, + -189447.98748217383, + -189736.91566883595, + -187803.1415402722, + -188615.64024283146, + -188516.52943830803, + -189681.64351749184, + -189583.2115684275, + -188560.8123839254, + -188808.58568177576, + -189710.93255919393, + -189406.02024615998, + -189499.59645998385, + -189483.72175297773, + -189357.24837546385, + -189474.95530109046, + -189782.36536876537, + -189258.09496306165, + -189596.714753665, + -188890.3664574394, + -188764.91305512202, + -189282.2159957167, + -188923.44433292217, + -188971.43179267063, + -188253.40886764217, + -189394.1110529634, + -188553.8667206884, + -188247.0553738609, + -188500.12824679536, + -188900.62386161956, + -188881.29006931305, + -189122.419390301, + -189049.75416535302, + -190290.13307072833, + -188263.30442852018, + -189655.53739052103, + -189593.4766049247, + -189658.27998301366, + -189608.43740396632, + -189240.7395503507, + -189401.6122354161, + -187798.89120280318, + -189230.37339317877, + -189545.16625437708, + -189612.82599109344, + -189466.51428955715, + -189424.6200709084, + -189622.41040500058, + -189883.7142335665, + -189350.129160721, + -189397.67019498325, + -189374.36013442566, + -189312.9879746982, + -189387.4220162738, + -189456.31330892164, + -188757.97295287042, + -189874.7197630853, + -188938.53921387976, + -189174.94373042753, + -188249.57030670525, + -188260.60515116138, + -188336.6986691293, + -187680.87764689644, + -187251.2510294042, + -187262.66438443118, + -189570.2833336003, + -189763.14706397685, + -189566.8655000776, + -189779.29013892455, + -189298.26902639432, + -189143.0578281467, + -189430.35956357492, + -189539.6584614828, + -189404.9591139528, + -189661.95294361803, + -188758.00763305573, + -189602.10511057184, + -189832.73284060266, + -187986.2925046758, + -189638.5204736213, + -189307.41763655184, + -187325.8474831565, + -188953.73820219914, + -189477.09111556568, + -188608.7669540309, + -189663.5967077643, + -187902.1950427761, + -189204.27918840424, + -187963.18284034188, + -189589.51983073587, + -190125.8549583156, + -189597.31022038838, + -189659.42206924004, + -187522.90987740675, + -189314.3318274669, + -189123.09886013696, + -189438.33583540513, + -189190.64141113937, + -189506.4879067685, + -189996.88173583825, + -189506.9208114558, + -188577.0164252054, + -189355.94588633478, + -189514.97306091062, + -189411.36286505614, + -188802.23079391493, + -189518.63063531838, + -189595.0859664761, + -188849.11552920155, + -188741.18667656466, + -189712.08090202446, + -190133.98681796715, + -189423.36465952417, + -190181.23310247317, + -188309.38290130332, + -189261.45093796574, + -188229.01322122104, + -188225.00588929723, + -187746.04762354173, + -189649.05343454154, + -189292.69033396387, + -190439.80952772064, + -190167.4618217757, + -189777.63112573957, + -188400.0367418278, + -189502.7870754483, + -189631.87542889913, + -189379.6564968773, + -189825.04437502267, + -189697.85110122422, + -189730.2105260354, + -188642.19864755738, + -186804.33417873908, + -189138.6052683931, + -189186.61889509932, + -189212.86844851545, + -188462.65509945378, + -188255.37224721114, + -188039.00270855022, + -188214.46720173355, + -188543.17964185297, + -188551.65872850412, + -187924.76781139948, + -188265.91476313816, + -188620.13710179558, + -188797.5960817814, + -188675.01145983627, + -189585.23416607562, + -189073.2131275974, + -187778.6034982877, + -188715.31186791277, + -188783.67793234484, + -188686.17124409127, + -188717.35827303602, + -189175.1779532503, + -188752.45189673398, + -188617.7522841282, + -187330.48424043634, + -190049.08294096706, + -190134.12788602014, + -189436.51072175297, + -188825.24595688403, + -188748.41080724396, + -188632.32322923772, + -188755.87124533966, + -188739.89476481508, + -188763.09490078397, + -187046.38487493325, + -187967.45205088542, + -188236.06352852797, + -187916.56938459937, + -188277.7110845498, + -187856.57507774787, + -186309.0004789828, + -186448.0761262461, + -187372.14693328072, + -186713.31626898306, + -188161.6300058421, + -187294.3067848806, + -187587.45047793945, + -189873.55077472897, + -187521.8824872184, + -188348.79948910305, + -189862.6413098155, + -189857.14185344288, + -189824.66753653612, + -189879.5254089133, + -190932.80865181403, + -189214.1812788162, + -192162.3269836861, + -192524.44290793836, + -192115.1138136991, + -188972.92135698648, + -188186.38974025362, + -189043.94703463372, + -188886.17592031375, + -189232.21457982747, + -187820.75210574528, + -187459.03461725367, + -188430.993490856, + -187553.03431553903, + -187734.42575994402, + -187621.21937398304, + -187659.66124892057, + -187626.4788257705, + -188263.86255790308, + -187368.52340470123, + -187348.7681817943, + -187682.18281394336, + -186584.2836090355, + -188630.62199919912, + -189687.1717524016, + -189392.44618215397, + -187036.08464524065, + -185139.07792481993, + -185139.72357748792, + -185172.0562297005, + -185223.1558109515, + -185302.5690199798, + -187760.736691232, + -187476.2628433151, + -187427.76982279553, + -187674.51102416526, + -188223.1502255291, + -188223.8025959115, + -188238.87170758605, + -187003.89280649187, + -186542.96075744857, + -186761.60951942398, + -187272.80604379578, + -187924.91100981052, + -184843.25042613945, + -186903.6585095412, + -187363.62555888496, + -185290.586235629, + -185165.9576632683, + -187636.6401471091, + -187838.56400906073, + -187819.29574656484, + -188059.9314632963, + -188290.363652496, + -187943.2258883462, + -188099.9720945511, + -187941.9237365848, + -188412.73187816486, + -188208.82409906888, + -187463.4585977219, + -186479.6446350026, + -187298.47957976593, + -186539.61527157956, + -186056.69045446397, + -185951.46023938467, + -186802.7182162248, + -185550.27627308652, + -187045.1102206911, + -187073.15041134102, + -187254.26535223567, + -187989.30944414838, + -188000.4487104779, + -187906.78280195483, + -186681.1635380391, + -186905.37079495806, + -187920.62374587829, + -187659.66132080328, + -187484.91206357404, + -186546.9811101811, + -187389.5387646811, + -186874.71930400067, + -185839.00663893652, + -185362.02426270678, + -186743.67631044146, + -186943.91875814958, + -185611.65728113687, + -189084.9074632962, + -187484.60913141377, + -186793.02846859442, + -186643.42136934042, + -187063.1911515589, + -188748.28453514946, + -188439.97049711825, + -187368.1489177038, + -185263.2297970409, + -185482.56088321618, + -185326.3459551552, + -185673.3450969795, + -185642.18789406322, + -186143.89671308498, + -186797.5306394901, + -186312.18585102723, + -185867.34727359438, + -186375.3612237879, + -187561.3991996525, + -187194.3312948634, + -185589.1946310685, + -186662.39995437322, + -186235.288447879, + -186405.03105329376, + -186892.55000415185, + -187294.12286925653, + -186270.0295100747, + -186078.48063323216, + -186075.9211697261, + -185912.47186195152, + -185961.2957648515, + -186232.2255226064, + -185912.22434019603, + -185580.70430677492, + -185946.11501890482, + -187393.59499414876, + -187309.87049034002, + -187472.30498547002, + -188817.03562402542, + -187333.3919005783, + -187868.89767386837, + -186633.25689314547, + -185460.96898446843, + -185628.17632635156, + -186311.45221873518, + -187196.24604930566, + -187276.60266658547, + -186565.47062728266, + -187852.313928534, + -187557.78543535888, + -187719.1913994157, + -187972.83650257328, + -187960.29676871523, + -187911.10264278692, + -188630.8453506235, + -187496.3832271789, + -188349.65680053786, + -185809.88961724282, + -186934.3360415499, + -187629.56098631225, + -187007.5772303797, + -187291.49824795782, + -186121.19306263936, + -187012.46365318543, + -186679.30936474973, + -185419.46969980895, + -185379.2656174194, + -186901.45563588393, + -187807.15683063408, + -187994.28122602464, + -187308.64998441696, + -188350.75252464804, + -186863.31396841115, + -187720.11017674877, + -187287.84841348106, + -187014.84911061524, + -187234.71318697152, + -187204.27240844848, + -187291.09671769937, + -187094.25690049428, + -187609.4187582251, + -187718.59193484212, + -186509.34289278075, + -188147.50652534553, + -186342.25549461835, + -186442.0690847481, + -186558.77337581848, + -186655.24842534095, + -185972.4842459763, + -185153.37826635112, + -185765.32519087984, + -185186.70637920234, + -185070.59019309614, + -187673.30496193952, + -187761.64483234545, + -187256.5867709403, + -187366.18291352072, + -187524.54517428228, + -187510.56934074408, + -187529.40680193529, + -187454.64105987392, + -187519.31181360115, + -187123.06288107514, + -187477.63157623674, + -187257.24688779732, + -186882.32732606877, + -185744.03743667188, + -185647.84002902228, + -186969.98767638186, + -185902.72286645, + -187303.182190925, + -188126.80564361744, + -187360.58931040493, + -186921.38953855107, + -186929.557108324, + -187311.67435395776, + -187395.2983959365, + -187080.93819916193, + -186222.8395883536, + -187442.89148744586, + -188140.00051928166, + -188151.46145141035, + -187564.53232755137, + -188215.09477527425, + -187376.35249447948, + -188189.81482384, + -188034.83047066652, + -187747.06924668472, + -188800.80256482895, + -187102.12973368363, + -187917.99657074743, + -185057.76047148168, + -186486.71688355424, + -185130.529001914, + -185147.71919034136, + -187135.60577403157, + -187646.46474410285, + -185284.9406615433, + -186286.42140426437, + -186595.59491334032, + -187638.170551301, + -186478.24245183423, + -187993.35866484616, + -187229.13331112568, + -187938.08243107222, + -186825.88912431858, + -186708.8994492446, + -187164.0688469574, + -187461.08290298193, + -187221.3523749667, + -186992.1811585919, + -187142.28778417234, + -187056.31471454934, + -186746.17776224224, + -187434.38846414318, + -187826.61084050385, + -187003.93902302586, + -187742.596093895, + -185540.26300420432, + -185199.27035351453, + -186980.8144633269, + -186369.47424236263, + -184908.1166309739, + -184198.70078145587, + -186439.9649841702, + -185019.88314560454, + -187639.15760068822, + -186765.58714734673, + -187686.9419411423, + -187048.28032769196, + -186794.89125618731, + -186822.41511138683, + -187563.39014736656, + -187385.0923661435, + -186888.21059285887, + -185829.80948671233, + -187041.9723647092, + -185125.23152722794, + -187095.6197581376, + -185897.53117830772, + -185769.0972955552, + -186826.48542049516, + -185756.5836062822, + -186973.73232271746, + -185101.1509899331, + -186015.29034764567, + -186628.54466062496, + -185868.99053592625, + -185892.3867642372, + -185982.92772953527, + -186563.35158898422, + -186333.64344871804, + -188137.57555694113, + -186649.44372244837, + -185398.36138060363, + -186628.42409363462, + -185328.69791728977, + -185645.35316113118, + -185190.4973312962, + -184810.0609463012, + -185673.16887228226, + -184555.20493347468, + -186603.54049738206, + -185000.47819436324, + -185769.4575393162, + -185778.33475206984, + -185864.6939073649, + -185242.38515533158, + -185902.13729941534, + -184710.20690531647, + -186336.77161351635, + -186119.94401614703, + -185893.69281000222, + -187563.04088038372, + -186983.54442722624, + -187703.92647279546, + -185743.6029551579, + -185968.90039689335, + -186108.22088459652, + -186089.89882082163, + -185308.25354167318, + -186216.4074492947, + -186691.95573974657, + -186418.54900034756, + -184684.6304903929, + -186003.21438929535, + -186109.56426562366, + -186120.97182205616, + -186324.3395864327, + -186722.7974234636, + -140718.26168474945, + -162271.2627223581, + -186085.13248614842, + -186068.28536481576, + -185427.49168366197, + -184985.73631769797, + -184766.12089212818, + -185693.59243815514, + -186460.20786475393, + -186037.59716773787, + -185450.5833065486, + -185396.0966615638, + -185276.4054007422, + -184847.09039631113, + -184823.61753243406, + -184778.45025064657, + -185109.39166642443, + -185556.4843562863, + -186719.88216859457, + -186773.59087394056, + -186505.48261010222, + -187516.20202739417, + -188001.86892294977, + -186684.80121130878, + -184705.8070100957, + -184864.84138353547, + -184566.07730183762, + -186337.80196089507, + -185906.65861356055, + -186150.906960568, + -186089.31929989046, + -186474.6235265719, + -186468.51753357225, + -186122.9165758566, + -186174.69969704037, + -187820.43378501857, + -186775.64544110073, + -185619.5302422243, + -185704.2175677414, + -185937.20459336432, + -185523.5880471388, + -185073.60125989263, + -185681.62401491503, + -185755.25804511458, + -185742.32278142963, + -185812.36978806616, + -186839.17366214117, + -185460.24572993352, + -185767.89203574616, + -185411.53656573629, + -186079.66390792772, + -185233.48683497915, + -184948.90466462815, + -185247.7806087925, + -186549.85209355422, + -186917.39214776302, + -186657.063249416, + -186137.98831876533, + -187630.12975349987, + -187687.3081902085, + -187525.68775441864, + -187326.55715253745, + -189245.3547860996, + -184795.0131029055, + -184934.10299478343, + -184595.03593603414, + -185557.18603881687, + -184826.82895671725, + -185703.95718490216, + -185294.42224015918, + -185575.41563245628, + -185794.81985080332, + -186172.60986329245, + -185661.8516968439, + -185638.24577050543, + -185965.40347835567, + -186004.1374210784, + -185781.3584731582, + -185664.76866772544, + -185815.6127283012, + -184723.17471127305, + -186009.95200031195, + -186195.38531040744, + -185753.05619845918, + -185703.19314166557, + -186594.9114183287, + -185580.15593113314, + -185541.68129385356, + -186549.16628896404, + -185479.2357860194, + -184578.21753488245, + -184618.35740420443, + -184441.46870504398, + -184568.61994464282, + -184661.85928366336, + -184523.38966404533, + -185717.16624584142, + -185483.3295420938, + -186417.94305405728, + -186246.51492087843, + -184845.9682979859, + -184540.75647463603, + -184666.37763325783, + -185185.18619115572, + -186199.38823877013, + -184507.9099237428, + -187003.43820973596, + -186545.16136884323, + -186951.0722009215, + -186588.34259437467, + -185936.8747686248, + -186443.85498753583, + -186141.55895141896, + -186647.18276851127, + -185889.87833542484, + -184523.06400318502, + -185073.57268297486, + -185077.8905521608, + -184685.0000328583, + -187192.2975120381, + -187002.80523749278, + -187003.69318072736, + -186907.3329708996, + -187388.2617066739, + -186950.9060841143, + -187426.40772893745, + -188015.87833895627, + -187456.03533027926, + -186718.14847004472, + -187192.52823779927, + -187430.84477593255, + -188090.9736323963, + -187057.4226896695, + -187299.00679136443, + -187898.09108993356, + -187800.71024494842, + -187578.7945424208, + -187852.2157456399, + -188445.4527261622, + -187821.0464781729, + -187538.8698057885, + -187904.2446480533, + -187707.84632557898, + -187515.5351218408, + -187294.31909113945, + -188304.55925484645, + -186927.86579355603, + -187675.71540639747, + -187132.18270199542, + -186661.11383538053, + -187238.4395913106, + -186711.99171266862, + -187274.8884360902, + -187605.70324073057, + -187459.62733920277, + -187350.64454981094, + -187987.25877007708, + -187340.14536462337, + -188133.99953381368, + -187908.8502698971, + -187974.06713440962, + -188174.96094340537, + -187654.68501915902, + -187919.67545603745, + -188033.5893052449, + -187179.74870279036, + -187958.6837154068, + -187098.08472081405, + -187817.05963383534, + -187227.08326375764, + -187840.08914857774, + -187243.47707715337, + -187358.05164964797, + -187870.53601201336, + -187247.9917175175, + -187825.62181611278, + -187383.08957187168, + -186137.40837100832, + -187368.8604475479, + -186975.18042715648, + -187218.33649070092, + -187115.92005878876, + -188577.08388106618, + -185632.1535476023, + -185003.46048722725, + -186782.64173592345, + -187389.2021586, + -188364.15112362726, + -188088.5917691664, + -187984.06459012086, + -188713.3588507996, + -188624.00866552212, + -188363.5387691212, + -187634.18143546607, + -186777.46669602653, + -186820.56521939114, + -186867.77653250156, + -186618.4433734245, + -187699.43272561228, + -185956.04238149663, + -185637.3755433982, + -185160.1993215984, + -187466.71062113094, + -188115.28176793884, + -187716.48506167036, + -188144.50874112692, + -187644.81497540837, + -187452.13970792587, + -187779.38447152777, + -187503.58157137837, + -187819.7552003765, + -187727.83570354496, + -187950.17000928946, + -187918.25825739285, + -188059.71110303834, + -188071.01532488095, + -188007.70634351147, + -188127.41684105122, + -188138.2687240919, + -187963.5766486151, + -188544.97753253547, + -187850.79133717477, + -188029.4838038799, + -187927.5772533455, + -188053.78221453892, + -187985.91644521983, + -188319.77932730978, + -188058.86903379706, + -187950.90711760413, + -188156.86956179672, + -188229.6880717756, + -187953.60593885268, + -188484.82353855815, + -188095.58751833517, + -187872.1074932044, + -187955.31108521658, + -188110.34340208996, + -188020.26106810436, + -188084.40086565504, + -188071.6303022562, + -188480.56911294378, + -189671.69440695026, + -189769.90898797516, + -190284.9707253069, + -188031.62889293503, + -186743.00019037828, + -188003.55552109788, + -188363.56661918454, + -187746.85639765018, + -188346.87533387216, + -187903.51839239706, + -188043.9321563204, + -188112.71027176845, + -188550.03414205718, + -189449.1232264199, + -189768.43355961813, + -188740.94405652286, + -189567.65591494428, + -188309.81027713025, + -188392.79233416848, + -189319.79863515618, + -189378.6089809849, + -189178.14899455837, + -188386.42729721224, + -189445.19176040665, + -187087.48998708234, + -188826.42779028194, + -188553.87487120138, + -187941.06540326262, + -189771.93099297164, + -188529.93400312582, + -189358.06753687156, + -188609.42242236514, + -188787.1864357604, + -188843.1765843312, + -188754.528514879, + -188094.74107414478, + -188088.6155039975, + -188060.38234672905, + -188067.26794690712, + -187621.21847052537, + -188157.58246492682, + -188516.84498886167, + -187915.12744256484, + -188443.7578148925, + -188116.10771085072, + -187264.47609357847, + -188176.21031836848, + -188170.57903762278, + -188294.6644996429, + -188036.63953174325, + -188101.5543653428, + -188248.6764013949, + -188319.83415129757, + -188097.50692052435, + -188134.4762723594, + -188272.49029985358, + -188206.77019901376, + -188508.96860365788, + -188262.8988252888, + -187569.11179548127, + -186292.02017205243, + -187472.02889830602, + -187099.9147383517, + -186900.76235636437, + -188027.44881588852, + -188432.67762655424, + -188121.5471579039, + -188432.80628645205, + -187926.7782463939, + -189762.7876085155, + -189266.35842376057, + -186732.12278519588, + -188614.55061231283, + -188647.95316923055, + -187592.5524397363, + -188932.9501046265, + -188606.43169921683, + -188170.21924476055, + -188549.55255864532, + -187962.6323277363, + -187191.96052360526, + -186920.5220397891, + -186786.62616005604, + -186385.05781979268, + -188061.28832562154, + -187390.1456922822, + -188062.07603085358, + -188037.6869183598, + -188212.0229575658, + -187930.06229443732, + -188090.36866231312, + -188036.00538210757, + -188133.31477841723, + -188173.70843883988, + -187844.47640926004, + -187872.30401330232, + -187796.24083019167, + -187732.98575521674, + -187983.71489758827, + -188083.6875223691, + -187897.73274734168, + -188059.30925306716, + -189142.09064355088, + -188583.01081795827, + -187487.7635363833, + -189713.64541984547, + -189555.82412272718, + -189852.59554859076, + -189218.8087403817, + -190167.76777641778, + -189645.6152674434, + -188532.9554546275, + -189523.58352465904, + -189343.14144035138, + -188235.48072958956, + -188180.02447286362, + -188078.15933603563, + -187990.69685232927, + -188502.1043309098, + -188206.01901300566, + -188368.05619089317, + -187629.39631769145, + -187643.6924245978, + -187638.51851489613, + -187804.318709099, + -188499.9137700682, + -188417.0795439115, + -188684.44500197342, + -188616.47166411072, + -189238.12878373484, + -187745.42964825404, + -187642.84655158204, + -188287.79217814526, + -188549.32629648288, + -188250.077786393, + -188161.7726015361, + -187116.7595416007, + -187821.31284373655, + -187704.11156844525, + -188196.3093746599, + -188512.43706494468, + -188433.12753228875, + -188585.6524637753, + -188822.05132961101, + -186793.18125099468, + -186923.0724992906, + -186493.55860467892, + -188693.43620027843, + -188728.28837500748, + -188981.19486242285, + -188119.03297787975, + -188810.88834411, + -188363.9646618443, + -188079.80446299998, + -187735.6429592813, + -186579.71684840842, + -186734.72800259737, + -187909.24698119418, + -186382.6521426854, + -185961.70758748136, + -185946.98023837636, + -188918.83080252886, + -188826.34262922048, + -187359.95937813746, + -186689.23541046176, + -187016.51462670026, + -187205.7558130452, + -186884.1274436682, + -184253.32763020493, + -186104.54831179176, + -186046.42225495278, + -186037.93743685633, + -187612.97215401544, + -188052.32690400552, + -187910.51665730815, + -187778.44937962503, + -187882.8114859411, + -186814.5954261676, + -187233.7119709426, + -188083.10323281528, + -187171.2549893913, + -187396.43681444638, + -186753.4893091006, + -186948.59777146435, + -185706.60147189337, + -187916.63879302575, + -187328.97058315662, + -187271.98186820754, + -187263.8658911728, + -186657.7218807427, + -188362.04736375934, + -183620.7015398458, + -182951.77725421966, + -184276.46905717737, + -187376.8038531828, + -186841.4017466797, + -188158.73371046473, + -186840.44087714233, + -187625.99468709566, + -186431.27519216418, + -186083.5663938709, + -185755.0131330002, + -188153.623631181, + -187630.0455403068, + -188058.85243110455, + -187399.22964852274, + -187360.02800482418, + -187257.6129123713, + -186458.84249070814, + -187153.83483170177, + -186828.08396658566, + -185480.2185366004, + -188910.8076400013, + -188288.38165867908, + -188232.25279280051, + -187620.16897113936, + -188200.78220052563, + -187962.65268429814, + -187980.56614154446, + -187505.77792284868, + -187993.10500323906, + -188057.23331354433, + -186724.68573885344, + -188580.3548192478, + -188339.98244601142, + -179018.64596522425, + -170265.1251636849, + -180731.45597962325, + -178274.85226883533, + -182297.66613175042, + -178392.8789808, + -188316.36771212667, + -186656.42396019315, + -187822.9358747536, + -185715.21113775368, + -185841.86069840766, + -185606.18370621337, + -185745.05148061714, + -184765.73067528612, + -185826.80959253322, + -185805.15630328484, + -185880.6665128765, + -183430.55483779273, + -185519.05918496437, + -185720.05400911724, + -185249.63622188903, + -186055.02259865488, + -185753.54811495807, + -186091.85862784483, + -186095.0815121383, + -187638.04666398917, + -187894.2559948564, + -187763.07589632823, + -188155.95470557085, + -186739.78539095962, + -183895.39726926797, + -186077.7694141048, + -187374.96766820594, + -186600.31501724018, + -187746.2614260409, + -187575.0666518512, + -185615.21357472814, + -186386.17022089174, + -184792.31269895128, + -185297.15959925592, + -185376.32218916347, + -185934.3441057752, + -184719.8977207577, + -184203.63035864593, + -186271.3613223738, + -186024.0766929756, + -185603.29490146937, + -185753.06204734184, + -186330.77970776754, + -185276.91448933058, + -185442.92204935086, + -185153.81686134142, + -184350.70827119582, + -186324.1665531549, + -185279.59438908967, + -187693.57844067938, + -185737.7766019711, + -188111.50245778877, + -181117.95796056575, + -183944.29790406587, + -184501.03914673053, + -183887.24713882807, + -184797.30489013533, + -186552.6186504858, + -186153.74538117443, + -187278.66842823187, + -185447.3850337414, + -184333.46569932284, + -183618.1198729144, + -183609.28082124022, + -183737.2037660667, + -183570.56269982722, + -183835.50636600342, + -182851.40614782678, + -181143.13730185444, + -179062.95290375294, + -183428.15224553086, + -186400.055894199, + -183195.36094988632, + -183346.4258055763, + -184867.16628209932, + -185096.76662262852, + -183295.14885534026, + -184940.4396921724, + -183472.72321986, + -183555.20809289117, + -183534.65675936858, + -183713.93448839104, + -185048.94065281202, + -185379.95492149531, + -183230.4928305493, + -183537.31132500691, + -185199.55957149496, + -184996.35720146328, + -183484.0643545454, + -183661.7612554338, + -183634.66754273794, + -183672.80728055543, + -183149.3117717627, + -183600.97574435148, + -185172.1130263042, + -184941.27866808354, + -184423.14627603424, + -185137.9260259597, + -183681.7632839864, + -183495.9303439195, + -183638.59508131372, + -183662.0610230205, + -183150.43565294353, + -184959.75297709103, + -184282.8223254371, + -185050.17746824646, + -183755.61016671095, + -184855.78706899192, + -184961.07542385507, + -184981.84743495082, + -183572.02000817447, + -185847.7897940973, + -185845.0713146115, + -183567.13168373698, + -184953.50462711358, + -183585.55352579142, + -183654.70526979078, + -183740.6927330769, + -183447.3736804631, + -183638.5415461372, + -183693.8098700191, + -183506.43875629295, + -183780.55988949482, + -183465.92369980083, + -183773.85682847694, + -184713.8079921453, + -184948.11561273, + -183774.6590119035, + -186310.16860214635, + -186301.94278822944, + -186163.99974887632, + -184581.99228433802, + -183482.81197479606, + -183599.0223072427, + -185523.21586449863, + -184220.87408888803, + -183336.9655582326, + -183417.25501227446, + -183574.8313324696, + -183568.94114048648, + -183561.13969966708, + -177310.94056187524, + -183771.57094333868, + -183717.71809073846, + -183314.90524811472, + -183562.4655226862, + -183700.7208882565, + -187944.64808898602, + -188144.68088985563, + -188001.67609114133, + -188590.2656368338, + -188650.31700513716, + -188108.82660797954, + -187817.81523305984, + -188174.91579203284, + -188075.2636711698, + -188835.70345149824, + -190313.9575153106, + -189099.75049063095, + -189095.71887327847, + -188914.75145452813, + -190032.7652732372, + -189938.6241563695, + -189234.69869927395, + -193457.45865985725, + -190806.68303526114, + -190793.21217436218, + -189559.22608543184, + -189665.89556126, + -190343.14623174802, + -189609.91441884363, + -189229.82297158477, + -189294.14527588105, + -189496.41348015732, + -189577.41239445566, + -189744.80163897088, + -189717.16898665222, + -189771.05744312212, + -189288.86354766923, + -189791.60417761785, + -189410.9334851875, + -189116.88474309855, + -189175.60345293803, + -189586.963087114, + -189188.60469326557, + -188162.64085287615, + -189548.11338182713, + -189105.4292626352, + -188962.863330971, + -188860.5081701973, + -189022.6764695094, + -188934.8216489112, + -189023.35265461885, + -189224.35755215236, + -188984.99469066437, + -188693.81198834366, + -188415.0669334945, + -189349.87620961215, + -188810.17734219952, + -188944.92574917976, + -188941.78166669174, + -189742.2319582998, + -189965.4221631259, + -188669.11521163365, + -188707.0214085327, + -188855.1713664295, + -188374.52176348033, + -188046.43068903935, + -188584.11655148058, + -188921.07600126017, + -188465.50594804902, + -188569.56315973715, + -188491.91213643632, + -188423.88162786607, + -189249.9264656677, + -188453.23945302286, + -188248.20895894684, + -189083.05589016425, + -188881.18116724692, + -188752.26508317536, + -190353.63610682223, + -190199.30352442525, + -190284.40860835864, + -190512.74405530427, + -190567.27156873213, + -190521.19493654618, + -189462.78633118852, + -189495.0923323141, + -189822.36786467835, + -190528.4811711618, + -190459.28418449903, + -190549.83564310966, + -190108.53169201384, + -189701.9396398646, + -190261.65948142193, + -189812.65902349033, + -192729.44916755898, + -189998.17792497025, + -189950.47607682366, + -190422.55995988214, + -189475.00799780615, + -189539.44815716433, + -190286.8293532656, + -190510.04082654967, + -188268.17237905652, + -189701.77739699613, + -190449.5219220677, + -190479.13829348728, + -190341.1859679305, + -190214.86655576224, + -190470.3866958542, + -190475.05501335283, + -188662.78581283378, + -187110.75257883506, + -188712.68604789645, + -188167.60811296935, + -188373.3539402033, + -189054.24101899815, + -188703.7958482956, + -188700.76734194253, + -189058.78733204654, + -185748.77931932142, + -189240.3648502884, + -186570.1920070612, + -188094.559535361, + -188053.27718974993, + -187904.5551047629, + -188714.47848400145, + -188749.09654230482, + -189030.03347002508, + -188623.43984532243, + -188960.00928668556, + -189443.79748188236, + -189307.17775457742, + -189613.4274864384, + -189068.79735651254, + -190220.04026000245, + -189448.3993228098, + -190206.09219721612, + -190341.17256340745, + -189867.23809450684, + -189861.2742767397, + -190227.47044230253, + -190186.66872072185, + -190191.87720016416, + -190085.2874754612, + -190232.32595297435, + -190184.90518216093, + -190623.42617965583, + -190772.98680974997, + -189014.93254325056, + -190242.87904319484, + -190489.49488075302, + -189279.31349246096, + -189028.54304697987, + -189972.24185554104, + -190133.02174061345, + -190152.09510136288, + -189802.5411068607, + -189342.87589914515, + -190335.55788041826, + -190558.09229834663, + -190348.92129023964, + -189476.29985464577, + -190078.20561894446, + -189953.83628432205, + -190120.31875176344, + -190159.9606195649, + -190036.82480240372, + -190207.22081163406, + -189987.67952550904, + -190139.95443899676, + -188283.400572689, + -190271.7928245326, + -189841.04040744825, + -190391.556711525, + -190159.25461435507, + -190150.01777997345, + -190050.76105059695, + -190016.05202348984, + -189455.41921722554, + -189892.92226832564, + -189938.28533320257, + -189852.04204695, + -189837.30541417195, + -190073.05198879744, + -189679.96140830184, + -188518.20269654013, + -189732.0774427512, + -190060.64739146762, + -189906.78269750674, + -189977.09666591295, + -189869.86826830884, + -189967.10530352197, + -189429.90513536637, + -189921.33171368486, + -188696.9637922992, + -190157.63685626572, + -189800.8794266506, + -188719.43960811262, + -189850.42517754433, + -189820.92311716045, + -190176.96097381625, + -191159.10117676161, + -189695.89297456868, + -190189.18840931443, + -189757.3945082938, + -189995.43347064062, + -189420.0485446386, + -190029.46210824672, + -190125.23168976346, + -189369.10856700627, + -190229.02945436694, + -189495.16633347023, + -189698.1761276448, + -189295.9917839161, + -190114.3473213471, + -189727.13611083344, + -189783.65631678217, + -190368.81587279582, + -189901.64680176062, + -190316.76887405966, + -189011.07707289694, + -189795.9680877463, + -189399.04279996626, + -189460.44281266938, + -188004.39552825585, + -188391.67478690643, + -188975.4648828089, + -189027.84875586937, + -188894.1604885968, + -188258.98268007717, + -189054.1850300602, + -189173.28782093368, + -188857.1383443916, + -189144.62965207951, + -188904.83506058183, + -189366.89830297738, + -187142.83156573743, + -188470.49516960207, + -188152.2857732802, + -188538.57571479923, + -188128.65301616665, + -187927.6227750181, + -188172.07424796064, + -188187.0305086857, + -188198.6549685184, + -188215.8464237905, + -188334.1310395238, + -188242.85548355136, + -188084.27012681955, + -187513.15206802913, + -188318.52134241172, + -188494.86160857437, + -188963.12094415203, + -187905.26212099823, + -188527.56986848032, + -188265.23932553243, + -189971.44220929153, + -189133.4623975504, + -188909.62841382276, + -188807.4004644322, + -189821.2312186076, + -189278.69115591797, + -189451.86192620388, + -189265.49060988644, + -190349.61880493132, + -188273.88722517353, + -189167.452960464, + -188204.88501110626, + -188051.1449940405, + -187943.6909840044, + -188101.04549079717, + -187914.7483476306, + -196054.36698636063, + -190713.34611914298, + -190997.92481924436, + -190575.84463553302, + -190467.1990688694, + -190337.43065788288, + -190699.1670419356, + -190568.56008858563, + -190832.90541128814, + -190622.68743332793, + -191792.811774679, + -190689.0572112892, + -190554.549981457, + -190851.29303480033, + -190792.2009981391, + -185674.83275462306, + -185395.53641607144, + -185357.74506053058, + -186040.44887473437, + -186246.95216782618, + -191372.67854098132, + -188837.46529610577, + -187692.98713641445, + -188216.9357266321, + -189035.7518822911, + -188123.85049620818, + -188174.51164152424, + -188360.45872868263, + -187920.04303128363, + -187843.0478644709, + -189252.1261607356, + -188964.9295065745, + -188317.85419149252, + -188304.15480666218, + -188212.56287800474, + -188267.7210327238, + -188211.52410601077, + -188021.5412306319, + -187777.82929663642, + -188092.54169536094, + -187796.6542157994, + -187635.59468253268, + -188033.40789813793, + -188033.5726857013, + -188191.56577066958, + -188064.2405154846, + -187977.02349488987, + -188150.9408505529, + -188399.31508879495, + -188388.79423971399, + -188200.68466137044, + -188105.61118723254, + -188197.26080880096, + -187963.81710303735, + -188081.06831320774, + -188298.1446142359, + -187780.86450984897, + -187560.81205794794, + -187479.24127132312, + -188832.74568101848, + -188271.2574905656, + -188098.9031617914, + -187978.67714400974, + -189036.270514249, + -188358.16456153046, + -188322.21295005153, + -188793.71858353209, + -188463.8027867851, + -188420.56292882576, + -188527.54012336218, + -188470.12706697625, + -188237.94842374895, + -188152.7059567754, + -188376.19538272417, + -188383.6321563408, + -188362.64506112947, + -188229.32312055898, + -186682.89867719274, + -185974.23479730866, + -187407.3972483268, + -188267.12675957533, + -188060.29551175452, + -188704.9483600274, + -188229.5695177689, + -188060.74338207667, + -188009.8309550313, + -188016.12153162181, + -188409.31602683378, + -188494.15449793098, + -189216.5389337516, + -189096.8745649052, + -189395.759421411, + -188314.0618063977, + -188061.6228223648, + -188377.0181492975, + -188192.37099960947, + -187758.18487713882, + -187787.2879845593, + -187572.14078191516, + -187741.49763673818, + -187964.39443212652, + -189643.33025442102, + -189290.1565425291, + -188953.4021090192, + -188803.40271635444, + -188917.24105575786, + -188940.71322085857, + -188810.26221157002, + -188831.5695149495, + -188904.68010216823, + -189135.25543499572, + -189523.5420746396, + -188139.9439583329, + -189020.66022475137, + -187947.31400414582, + -187672.10042218023, + -188053.95244611433, + -187619.73016237066, + -187911.62808368597, + -187842.24023419546, + -188387.07160945956, + -189016.05459049373, + -188302.98266526288, + -188485.53190433834, + -187252.96696407747, + -188056.2157138019, + -188150.01873431922, + -188407.83621514795, + -188351.8861077988, + -189581.91550554175, + -187744.01854014478, + -187770.73014403923, + -188103.182578579, + -190304.48024467833, + -190260.53457260315, + -189251.39154025816, + -187845.25254911988, + -186176.69143772183, + -190605.68260414473, + -189416.02083849843, + -188966.40362309, + -189104.16659807847, + -187252.2711895733, + -188769.20753909196, + -187699.42874421572, + -187938.3617763031, + -187668.34843839586, + -187987.33055419096, + -188319.47292758749, + -187952.69828486128, + -187276.75570563087, + -187999.3435431426, + -188054.9089034451, + -188032.08428389157, + -188416.8042440556, + -188828.710009183, + -188269.90433919505, + -188242.81984720996, + -188483.53884869776, + -188770.96011071018, + -189749.7370829404, + -189155.7502287397, + -190823.13696070746, + -188948.92747001626, + -188207.51154255582, + -188151.91592219454, + -188673.74140925996, + -188660.2868009395, + -188503.80500650342, + -188559.77245373707, + -188683.6155536947, + -188559.65786072984, + -188703.13655352002, + -188678.94430401377, + -188594.7332906974, + -188597.86898873816, + -188784.85977225626, + -188110.75597498723, + -188436.68427228258, + -188666.33131441893, + -188697.64814490697, + -188522.7178033711, + -188633.79406085494, + -188704.29316380754, + -188768.03900527532, + -188625.4650503576, + -188663.50134786894, + -188576.25334950717, + -188546.52938657982, + -188680.8371036378, + -188805.0846516448, + -188653.17628520753, + -188615.03355433713, + -188576.64321319025, + -188543.81262086015, + -188746.69889344645, + -188557.72678403923, + -188622.1971911336, + -188724.273258034, + -188591.78355342403, + -188719.5694194747, + -188667.04054954412, + -188808.08020128132, + -188712.82334732497, + -188975.56691510486, + -188897.3534894631, + -189012.75722465824, + -188763.96608211353, + -188826.95475208154, + -189056.37183016262, + -188733.08499490118, + -188884.35784682204, + -188923.87712194747, + -188827.94721139214, + -188942.5889835721, + -189037.6870663065, + -188623.1088186007, + -188630.3623548485, + -188568.1259673801, + -188676.2507110918, + -188589.14408862978, + -188687.45937910295, + -188769.61503198964, + -188743.1925249904, + -188702.17631953134, + -188892.4296175113, + -188871.28023278288, + -188960.78352074078, + -188925.94534825796, + -189348.888529151, + -189134.70326334922, + -188803.00117738845, + -188400.57408980286, + -189494.27256320094, + -189494.669002662, + -188464.4232397707, + -189444.3391194114, + -188380.47926556104, + -189438.34123469607, + -189310.50792805894, + -189488.46596010172, + -189426.87979329927, + -189586.8077498066, + -189284.25409000844, + -189405.0179354977, + -189595.86153925897, + -189491.39036375418, + -189450.22093055537, + -189366.62556285493, + -189420.95028154456, + -189509.033593287, + -189381.96275634642, + -189358.25597996314, + -189494.6588455454, + -189194.10726443038, + -188271.78250397014, + -188273.26012712086, + -190521.2400356172, + -190413.05752745614, + -188862.76391626216, + -185957.65696246203, + -185990.46390386543, + -186100.70125635862, + -186136.39515892777, + -186063.24649127686, + -186158.66764463554, + -186027.24243721232, + -185969.5551713951, + -190174.9869209733, + -190118.41545021316, + -189010.31738089523, + -189096.92767447614, + -189088.20919571148, + -188643.99249474678, + -188789.6318585568, + -188728.21494301723, + -188798.92556122373, + -188681.77895953055, + -189106.93268454904, + -188985.67716669387, + -189083.74907014464, + -189034.3523839353, + -189070.57417476588, + -188944.9246191758, + -188715.9153769697, + -188792.5694624717, + -188829.59277746026, + -188787.0559469269, + -188832.644629355, + -188893.3636019686, + -189024.7196291646, + -188931.01739686544, + -188992.60798038464, + -188786.67166992926, + -188768.90565244108, + -188987.2406986813, + -189387.98129267173, + -190019.26883211517, + -189683.14190918353, + -190250.02249989784, + -190184.28794756005, + -190334.92104710214, + -190227.51000102313, + -190214.5507397167, + -190336.85293178275, + -190315.78757937052, + -190229.20612766882, + -190376.56365282947, + -190252.19031956058, + -190372.41721262314, + -190175.9980453131, + -190196.75542956498, + -190330.29195060174, + -190280.94568584106, + -190372.3529320626, + -190144.17286399158, + -190358.37515399588, + -190261.2951521144, + -190258.94393558401, + -190343.78487558663, + -190093.6069125597, + -190354.39138039862, + -190419.4463532059, + -190288.23089259406, + -190287.70189460894, + -190158.71584807578, + -190258.29925374908, + -190406.92526713447, + -190261.7743970526, + -190326.05142614365, + -190246.38834175895, + -190234.3407794005, + -190432.26490839137, + -190449.01554506307, + -190445.47329877305, + -190397.00213190346, + -190436.49551094466, + -190329.9090910193, + -190176.58844461074, + -190185.0129986195, + -190319.62726571024, + -190380.03821897434, + -190380.20377129066, + -190527.71254484492, + -190402.6065213973, + -190396.1507821608, + -188508.64502421487, + -188373.82014025023, + -188525.07051299908, + -190602.43193520122, + -190477.02262630573, + -190497.50243899124, + -190507.3624830313, + -190319.38168120995, + -190086.87822393788, + -190195.18659925292, + -190070.15156129468, + -190036.51444069666, + -190088.81970409834, + -190349.0282488827, + -190200.62285130544, + -190379.40568476502, + -188377.52767298502, + -187244.75892812965, + -189007.3182361304, + -189723.1780505297, + -188481.01875659585, + -188764.76002792385, + -188863.03271685718, + -188110.80230950654, + -188181.00690298795, + -189435.46040436602, + -188159.78667876072, + -187941.68434362026, + -189015.5867901485, + -189052.9801668156, + -189396.0871583986, + -189683.05697258093, + -189409.2260516907, + -189439.9733840662, + -189401.0210279784, + -189282.9730672559, + -190115.60913893284, + -190091.65704194506, + -187280.45758218758, + -187657.0868990739, + -187294.66785273908, + -187593.51605149044, + -187826.2030626212, + -187253.22086252828, + -187838.97430345853, + -186059.42223972696, + -187069.10866048117, + -186020.01516353776, + -186167.96323356603, + -185830.27369723277, + -186139.2890092994, + -186028.00291916684, + -186072.80462440735, + -186073.64805899287, + -186256.82357831844, + -186116.13245522184, + -186208.95519545348, + -185984.68461957408, + -185859.09413820013, + -186159.51025188196, + -186212.2138273194, + -186182.3557491331, + -186125.66409048735, + -186038.40488502107, + -186259.63674592567, + -185992.00901628408, + -186136.2932766661, + -186132.35139380593, + -185546.13442974273, + -182375.64393582716, + -180981.68034472206, + -181095.7750693586, + -180956.24287219153, + -181055.72889509232, + -180971.66262991235, + -181103.82390677792, + -180856.3444427169, + -181027.36139741706, + -181014.3774171897, + -181055.71069809987, + -180483.06895315493, + -181003.4669040212, + -180860.4464633114, + -180883.5634329601, + -180645.55305481135, + -181000.74178986548, + -180859.9033050692, + -181109.60549286046, + -180857.2624911139, + -180693.93543625306, + -180950.90008469622, + -180644.74425556677, + -180816.44841554252, + -180899.0659939188, + -180934.99464384676, + -180922.29353936965, + -180836.35446086427, + -180930.33913835726, + -180961.20970378348, + -180980.2431356487, + -180856.61342199767, + -180940.29061880347, + -180760.91174181836, + -180749.25128466066, + -181057.43394242367, + -180915.60853348157, + -181022.60295219658, + -180760.43292094907, + -180930.63629617327, + -180790.79912130247, + -180790.12967571538, + -180770.08680043777, + -180895.6079582836, + -182500.3541675079, + -180919.3086735656, + -181036.922135391, + -180965.05714948726, + -181005.31086173875, + -180833.16313540837, + -180865.4739387523, + -180941.22674653959, + -180796.98622865067, + -180982.980792712, + -180847.98245056724, + -180731.69982497985, + -180767.91322810465, + -180877.2467033272, + -180942.63023700894, + -181074.2378637336, + -180878.08804388047, + -180982.42159108724, + -180784.02805332895, + -180793.9452787914, + -180850.14722552363, + -180806.83721622013, + -180872.98920041963, + -181147.33042965268, + -180799.9448917058, + -181118.08832692527, + -181081.7854884219, + -180933.6802728505, + -180816.67641035892, + -181086.78490923072, + -181037.9608102749, + -180961.97956935398, + -181055.70113727966, + -181000.43335822207, + -180955.18824098646, + -180864.974251134, + -180816.74539395078, + -181017.48978564248, + -180815.58662766116, + -180979.2774002467, + -180817.95846380026, + -180951.85047681318, + -180998.6529277414, + -180818.362485989, + -180952.8305869637, + -181063.81311585428, + -180978.12741341253, + -181174.16068990272, + -180807.44752380773, + -181040.72061494735, + -181124.00797680276, + -180693.07367266295, + -180849.66492172444, + -181038.77982030425, + -180866.03192510043, + -180802.60512019158, + -180884.46822946193, + -181085.0475399574, + -180885.35410085504, + -180682.23348761175, + -182349.5203372696, + -180829.35338506385, + -180772.89414994261, + -180902.09446094595, + -181088.72622956135, + -180979.71642093264, + -180906.37555946645, + -180800.75053366087, + -181032.55784956415, + -180814.39982887727, + -181151.42664541173, + -180909.5080121125, + -180874.23530896136, + -181046.12498304193, + -180902.05740752866, + -180979.8305139395, + -180942.5656738371, + -181009.25962476918, + -180840.1924708878, + -180954.36046807666, + -180971.1592968529, + -180955.97843386928, + -180845.49734652886, + -180782.61663522222, + -180977.97821798053, + -180805.36420278228, + -181008.98951493762, + -180921.56836434823, + -180733.23203660635, + -180840.91362221594, + -180846.30159686066, + -180921.34721748272, + -180890.0599080562, + -182676.7358918651, + -180827.27270966407, + -181056.0199827383, + -180953.8962335581, + -180903.6230717887, + -180838.40407558414, + -181085.7272340573, + -180920.01237244508, + -180905.59164138784, + -180923.9778191495, + -180865.5820644942, + -182681.0939370604, + -182702.51404425295, + -180920.8157314833, + -181039.35587087716, + -183731.0180707013, + -182912.50270388843, + -180889.63746378856, + -180854.80162700024, + -181150.7372652002, + -180794.46154850945, + -180874.26283479307, + -182692.2164033097, + -180908.3417528071, + -181156.28215987323, + -181019.92164544453, + -180891.2196782332, + -180864.55024704066, + -181087.9224563914, + -180598.0324521481, + -180766.12844487367, + -180843.31390089897, + -181009.6469005663, + -180891.02760663966, + -180890.58763282228, + -181059.05318853393, + -180883.05522412164, + -180866.175526346, + -181013.26936406048, + -180831.20998369262, + -181000.12969199513, + -180663.24676979112, + -181001.3948196855, + -181066.46517229715, + -180986.56354695623, + -180982.7492550661, + -180904.92820655624, + -181047.36004751746, + -180826.66975384587, + -180933.08910412987, + -180947.11811288763, + -180927.51682069103, + -180788.40046317098, + -181125.4367547304, + -181111.51853973937, + -180866.26242476306, + -180845.77976677753, + -181012.6198653182, + -180816.30466392604, + -180776.81840438678, + -180983.91154391912, + -181029.40177410873, + -180924.33642821995, + -180888.00053592803, + -180784.3810535411, + -180940.07985755763, + -180912.97448882813, + -180774.27488770042, + -181155.23560476548, + -180850.22795461796, + -180665.2733775059, + -181084.78717029234, + -182664.5201322499, + -188488.99282933175, + -189758.00649856846, + -189586.79135574435, + -189302.4383048074, + -189374.42417451766, + -187982.45070004364, + -189089.35369326422, + -188925.52496602834, + -188370.88229638213, + -188729.27038410617, + -189191.95425247535, + -189211.766205052, + -189391.13611958042, + -189357.1682863563, + -190215.7200927027, + -190252.8451955415, + -189110.24543217203, + -190187.4679374674, + -190147.44410814112, + -189598.64690698453, + -190445.654871415, + -190457.27919916046, + -190458.9006702578, + -190418.83925539092, + -190623.3756107303, + -190222.22442778165, + -190308.76152925828, + -190090.6958227699, + -189967.96741669893, + -190301.12261888848, + -189341.87599347558, + -188837.66894077745, + -188806.57842336912, + -188808.00095179488, + -189519.04224358563, + -189512.23034253178, + -189194.5932670327, + -188987.2121565673, + -190034.38718702516, + -188886.19912193718, + -188422.8724618635, + -188573.66240306012, + -189304.51776225265, + -189225.2817407487, + -189263.00325982983, + -189205.2614891779, + -190017.75293635303, + -190076.61323075774, + -190047.0988279703, + -187765.20644688024, + -186613.3572771319, + -187732.08072021118, + -188072.6714608332, + -187993.50997306354, + -188006.68124746092, + -188446.68929684337, + -188193.71095951897, + -187981.29126473085, + -189080.87286406787, + -189159.68923024554, + -189299.45891005188, + -189152.4024345847, + -189091.09615257187, + -189307.52838490528, + -189202.98031500765, + -189253.1843586616, + -189271.38460107477, + -188700.71324391282, + -189006.7819687374, + -187905.2037860304, + -189018.02910981255, + -189330.11540368202, + -189848.0079827148, + -190443.65918131915, + -190427.55400195223, + -190483.02517647974, + -190362.86377164358, + -190395.61332685914, + -190394.52870872742, + -190479.97949248308, + -190467.0995479573, + -190406.09811304082, + -190511.58839861894, + -190520.1801424011, + -190515.9667556305, + -190427.82270662414, + -190294.00976637588, + -190278.39013209782, + -186826.21727392398, + -187247.81804804146, + -187880.4124846486, + -186245.36039779414, + -187524.29243165697, + -187442.40232060183, + -187439.63154257342, + -187466.21407558903, + -190111.04590202757, + -190144.84616993446, + -188777.33517669232, + -190099.61072582297, + -190079.43883652097, + -189090.7163018162, + -190153.29822813766, + -190123.88975192353, + -189037.89262428752, + -188864.07840297843, + -186331.33255991637, + -186353.41628003947, + -186460.97165208007, + -184320.71218592688, + -184395.50232088257, + -190089.0039060432, + -189971.33427513135, + -189768.2322727592, + -189820.9233690557, + -189897.344636401, + -189740.80754012152, + -189698.05320883947, + -189835.6886744365, + -189061.7492410639, + -189535.55716931316, + -189685.85676509794, + -189548.9614403094, + -189622.96977637283, + -189478.2853721356, + -189518.60810814277, + -189564.61474111862, + -189577.55489955656, + -189446.99616676653, + -188807.69589811168, + -189599.7221237243, + -189486.82239140675, + -189502.4117847279, + -189467.3133551171, + -189621.35658416804, + -189581.4535606255, + -189569.369029503, + -189528.73034473255, + -189413.92865996592, + -189475.14660232756, + -189489.37992040775, + -189408.59813112364, + -189279.9613839457, + -188417.6430208653, + -188058.3020889103, + -187978.0776449405, + -187874.45046373125, + -187882.51589978818, + -187829.42643730988, + -187992.9515668895, + -187863.06101100918, + -187894.49980053122, + -187929.7926774231, + -189759.31136422034, + -189921.34899766842, + -189822.27177816702, + -189779.94244991872, + -190028.2789147829, + -190071.21874390738, + -187737.30602605725, + -190145.79386936987, + -189946.1496095157, + -190113.21126750222, + -190096.24824068297, + -190178.52275598646, + -190105.41451731362, + -190284.38186976072, + -190225.26961028803, + -190097.9171060172, + -190057.625298676, + -190002.11943799697, + -190055.95770209175, + -190045.87754162127, + -190490.7591485024, + -189162.66377148678, + -189194.14908284522, + -188932.09554875613, + -189807.1070773043, + -189672.01066457023, + -189245.34760738516, + -190024.68852855908, + -189777.5439815788, + -190182.40049809497, + -189225.46009016156, + -190189.3974081339, + -190220.05389692725, + -190254.3411041133, + -190132.36336376893, + -189956.65780086425, + -190154.67648313136, + -190122.16497615812, + -190059.88487874487, + -190207.55774033137, + -190150.01581871975, + -189091.9085751124, + -189779.08713834564, + -190017.57547804448, + -189250.70667474633, + -190027.03974568783, + -190095.17697165735, + -190020.03316270863, + -190135.05256309436, + -190041.0525969543, + -190058.27232183088, + -190197.08787623307, + -190076.63864476516, + -190095.97638349127, + -189966.02900883183, + -190078.0323830136, + -190004.26574663463, + -189223.47061963478, + -190167.79185327527, + -190121.46768670232, + -190182.6044789875, + -190099.40338792902, + -189983.6388300622, + -190042.57666945577, + -189956.46858778447, + -190153.66675188259, + -190023.61680486205, + -189302.31324662734, + -190094.67168179897, + -190266.14844330985, + -190151.23057533684, + -190224.25521290538, + -190096.5349873898, + -190148.46719026144, + -190425.8188559662, + -189593.6092418684, + -188728.6455416676, + -189322.61920879708, + -189619.64292618987, + -189646.38589484352, + -188819.81976631144, + -189081.12058497823, + -188085.8534257374, + -189272.216549515, + -189544.71559777067, + -189907.45004942373, + -189432.3827588458, + -188557.4596234686, + -188701.5447475946, + -188971.72404492387, + -190528.79469771456, + -189877.9961805478, + -190367.54585730348, + -190595.64484921584, + -190479.65559568114, + -189963.1974196967, + -190535.52943206858, + -190445.05208792342, + -189858.34219583872, + -189897.34374014518, + -189854.93361949048, + -189248.82160598392, + -189147.5538365724, + -189201.19611016064, + -189038.7762684195, + -189178.77238216047, + -185229.03460210934, + -187748.69710114886, + -187717.19164324945, + -187132.2353526007, + -187136.09615416784, + -185288.1211137709, + -186751.49815383757, + -185601.47750316016, + -186530.5887430274, + -190429.1783080962, + -190446.3836146024, + -190097.01924026507, + -190360.80231637773, + -190372.90967518813, + -187296.17724049307, + -187407.35799002185, + -187502.90208840277, + -187473.06927463846, + -187499.10205366532, + -180851.9598007591, + -180929.25461929486, + -181104.5752803427, + -181069.63573433508, + -181129.5229125903, + -180944.42088931572, + -180972.37659385215, + -181158.81415754627, + -180872.920764452, + -180961.05798785033, + -181023.41494453436, + -181024.33482280368, + -181000.15483210448, + -180990.45101826618, + -181128.29075970198, + -180907.3847388372, + -181058.55471777607, + -180952.9436090207, + -180857.59442781372, + -180984.57332295837, + -180886.12180459496, + -180933.26117043925, + -186941.75754158312, + -186982.9722405875, + -186912.18608575975, + -187878.183966702, + -187769.73020592058, + -187918.5460535091, + -187770.35438355888, + -187823.1635403436, + -187949.6542449263, + -188004.68341807707, + -188039.39851966396, + -188108.55865321896, + -187970.6100541415, + -188061.4060260442, + -188117.78571594055, + -188004.34272146938, + -188496.86543053738, + -187011.0905548473, + -186895.31290305508, + -187001.81900673642, + -186938.28659058936, + -186935.24081614582, + -189018.82319591832, + -189254.42379562804, + -188587.22325699587, + -188768.57457960988, + -187700.16095939116, + -187710.29797933245, + -187777.95914919465, + -187680.76965174306, + -188055.04528261707, + -187389.64718967053, + -187484.65611512537, + -187604.7502873811, + -187527.49029823882, + -187339.39148460445, + -188039.52789187146, + -188177.8190559988, + -187411.0029043213, + -187394.22171404446, + -187938.76300956274, + -187522.70114031213, + -187489.84151505012, + -187504.45327247443, + -187576.1632075717, + -187542.71190908132, + -187426.28293339012, + -187968.02915792566, + -187395.85950368101, + -187426.43350693406, + -187555.9889074425, + -187644.45811102478, + -187609.15410432086, + -187306.4100947206, + -187738.23146269514, + -187346.23240056643, + -187363.15401524134, + -187370.93206676224, + -187356.5248650377, + -187527.29927831359, + -187506.17924088452, + -187395.57445450997, + -188041.02872487713, + -187547.86986085924, + -187502.88540065478, + -187444.350347627, + -187465.44357130295, + -187560.40108799638, + -187477.66643523375, + -187500.2979064186, + -187511.36321595448, + -187963.41642815567, + -187936.86069417314, + -187953.61378144295, + -187491.63111638057, + -187488.22817826015, + -187467.83739372162, + -187367.52856048927, + -187418.31867931513, + -187399.00999555364, + -187321.95776501435, + -187396.06612665168, + -187428.96199466274, + -187636.72358713855, + -187397.07408615857, + -187469.0864859035, + -187607.19069206796, + -187531.49942974385, + -187484.71694180465, + -187489.66230460946, + -187532.95309792383, + -187549.5655671346, + -187582.60902455857, + -187373.90495072122, + -187372.5855968998, + -187368.5041770015, + -187345.6302066342, + -187308.48511683661, + -187571.46069103773, + -187415.1090085491, + -188004.98964630163, + -187572.51645357502, + -187452.88025063608, + -187445.8659648042, + -187458.97796815026, + -187402.52801924205, + -187436.79165740727, + -187505.53159853804, + -187583.37443551747, + -187541.70319826694, + -187558.36181932772, + -187542.7333878534, + -187884.7889990308, + -187378.94226321694, + -187478.76495092368, + -187458.14513542585, + -187384.6156040888, + -187378.0518907277, + -187469.15587677137, + -188014.0323584892, + -187406.66886159603, + -187439.14612128361, + -187619.57224767804, + -187464.60152296402, + -187506.9208302256, + -187544.82729458922, + -187416.49256260804, + -187323.59112459634, + -187385.96741871574, + -187619.51489097482, + -187420.92650652543, + -187910.11580313428, + -187363.98471613, + -187419.29606089115, + -187398.2416118346, + -187453.5624250277, + -187577.77076012106, + -187593.5992766927, + -187359.14464430205, + -187374.3188761119, + -187463.65165413215, + -187421.33462251473, + -187499.42247689608, + -187435.47217575277, + -187547.81405866303, + -187443.10255224945, + -187330.4227778721, + -187513.21388004647, + -187443.89718925807, + -187635.7326994755, + -187512.523774074, + -187595.67973291225, + -187527.6958953857, + -187458.3337311642, + -187446.77474513915, + -187468.86769671776, + -187053.41384400596, + -187985.570484645, + -188376.47907997144, + -188271.49035221976, + -188543.55841322654, + -188513.22429321206, + -188054.3647786362, + -188147.7198031375, + -188545.07859362278, + -188570.02927650115, + -187478.03149545015, + -187439.05517074038, + -187509.49657466036, + -187554.3270244612, + -187308.12488365403, + -187380.04949640462, + -187483.37973117948, + -187338.094796927, + -187318.90099483271, + -187530.1038934612, + -187546.90658335353, + -187311.6337785027, + -187307.5064738424, + -187422.37468206487, + -187363.9005927213, + -187352.73763520038, + -187397.5651778647, + -187468.5900747166, + -187367.89500903618, + -187479.3279444399, + -187508.3265529081, + -187436.43826273832, + -187549.26862505978, + -187447.38477098837, + -187370.06008495143, + -187396.52727223214, + -187301.7505286326, + -187431.94850241748, + -187683.89461558757, + -187496.55637834425, + -187581.0873743829, + -188158.7950138316, + -187670.4526055669, + -188473.89517146355, + -187871.4556507872, + -187953.09635756293, + -188467.57731800413, + -188448.06867016124, + -189142.74138068696, + -188684.650541092, + -189116.46803518283, + -188958.36824273193, + -189029.22367856133, + -189230.61012847288, + -189224.07109513474, + -189171.628031147, + -189264.20801816296, + -189126.2504850369, + -189158.07282634798, + -189341.6173735007, + -189413.78079802296, + -189332.16941428275, + -188957.1549401508, + -188485.64839138108, + -189106.2220076251, + -189121.81270785842, + -189038.31273541637, + -189045.9625003559, + -188434.73763703258, + -188465.94841419312, + -188497.92002252254, + -188524.1099220463, + -188538.63489318447, + -188443.97131970103, + -188501.8606871864, + -189085.91052883075, + -189019.17316267703, + -189023.7170985733, + -189082.24653481366, + -189131.95237431457, + -188849.46401270016, + -188209.0810095614, + -188284.85460681713, + -188292.80489082073, + -188333.96865998456, + -188265.78863545498, + -188265.55048043604, + -188348.7664283297, + -188413.00617142994, + -188780.29440188574, + -188926.6658806248, + -188797.9391324806, + -188652.884000906, + -188634.8662816393, + -188767.71516075628, + -188655.21405929135, + -188665.65407218394, + -189096.27550826877, + -189137.79815942995, + -189431.09677577397, + -189460.51403827858, + -188924.01692765954, + -188955.90998005978, + -189557.00396968826, + -189473.60727785307, + -188826.8802112957, + -188695.52341180335, + -188650.73401087354, + -188727.8586654595, + -188814.71782739085, + -188805.0619419698, + -188364.40710545835, + -189458.84598976557, + -189509.89156290417, + -189505.54081387492, + -188870.79520430783, + -188973.39128024134, + -188931.2336154527, + -189075.3623107205, + -189165.40325349907, + -189055.29940898585, + -189187.86279493442, + -189204.81061669497, + -189118.706210659, + -189125.03476275213, + -189190.2132919713, + -189151.8546232845, + -189214.31218341843, + -189184.85831256816, + -188589.02383966983, + -188755.29130206196, + -189212.55154545035, + -189102.63305725515, + -189259.831518839, + -189187.73499960016, + -189250.62001598394, + -189206.6375973227, + -188630.3797399783, + -191950.76776520707, + -191966.13514771112, + -190967.5155771714, + -190981.85314904246, + -190904.54988965954, + -191961.7781913269, + -190933.31726890677, + -190884.9419731444, + -189676.3293626802, + -189499.13127883367, + -189520.43258956814, + -189367.95954881862, + -189602.67537553923, + -189572.96585282165, + -189452.19639778542, + -189450.76429825148, + -188760.92666197545, + -188739.25318416615, + -188695.8454305255, + -188642.94415728576, + -189497.53273612313, + -189436.17497376876, + -189465.12020137944, + -189459.6678228203, + -189182.45003880878, + -188614.0216532207, + -188862.78092360223, + -188688.21495284644, + -188802.33759008144, + -188875.01992304178, + -188878.47216792012, + -188833.15395284203, + -188663.7720230959, + -188895.23369487113, + -188697.66550976233, + -188677.42267415742, + -188835.53389301457, + -188755.91150152648, + -188779.18943551017, + -188765.55377816074, + -188789.33520208794, + -188656.38772186043, + -188876.0303235435, + -188750.15392367452, + -188936.51239900038, + -188834.86126886433, + -188636.7491669763, + -188745.53267934482, + -188392.790839642, + -188623.08273018873, + -189117.79942347232, + -189080.89445369857, + -189610.58855240213, + -189430.02118486408, + -189533.9883014909, + -190176.91030132608, + -190327.00650601689, + -190056.90557900956, + -190212.84524776228, + -190379.24513826738, + -190364.94417823173, + -190285.1007604136, + -190355.21433586793, + -190042.60625451073, + -190392.20043390873, + -190169.57831584476, + -190301.90487174553, + -190124.9999688799, + -190263.17840064035, + -190294.74524637056, + -190095.38374811987, + -190007.8802822811, + -190144.80345069803, + -190372.09773776418, + -190179.79769459536, + -190131.3738289751, + -190066.73961822983, + -190138.42407423924, + -190062.07748710833, + -190296.67992469142, + -190159.64175459897, + -190208.61438980376, + -190176.9209211548, + -190410.9097223642, + -190296.7065188192, + -190259.90894886025, + -190305.68653512688, + -190364.34558167926, + -189550.71352449455, + -190132.87489931766, + -189895.3596929185, + -190402.62004046032, + -190229.12172851086, + -190234.9684367843, + -189515.1110287197, + -189238.40345202928, + -188431.71697463252, + -188333.25419319226, + -188404.2364094815, + -189258.14718442407, + -189643.64597282023, + -189545.96793264223, + -189001.13958434798, + -189021.22993820359, + -189128.93571170678, + -189086.08559419253, + -189323.57130717806, + -188986.28736767554, + -189610.79451705402, + -189403.96852214064, + -189455.51690744262, + -189578.18167762924, + -189676.55452521317, + -189804.6846845527, + -189685.5062735283, + -189191.81129054422, + -189784.85244116923, + -189790.59660567288, + -189774.15782508685, + -189185.0056894647, + -188838.03543089947, + -188914.3271305451, + -189463.97410727615, + -189099.5308042423, + -189581.78969652124, + -189559.59363443762, + -188413.34106319828, + -188197.29564009517, + -188171.8323130677, + -189020.36303100712, + -188902.6341614655, + -189220.45711515305, + -189295.1989165057, + -189357.94160129366, + -189475.38802432298, + -189538.76966009964, + -189600.13047092306, + -189492.71937791887, + -189433.45797319178, + -189390.5473860872, + -189534.12800703215, + -189466.43930603622, + -189610.21419904652, + -189569.1170149383, + -189408.09333260934, + -189635.40978858646, + -189244.28470441038, + -189104.56426932674, + -189359.61236164405, + -189213.21322404998, + -189225.18187778912, + -189209.684180045, + -189187.41321420565, + -189058.75332777802, + -189283.28316506173, + -189237.05861530898, + -189271.45601136168, + -189171.22226688673, + -189320.9536658957, + -189116.84179436308, + -189269.2321511475, + -189132.12564859676, + -189134.94804509557, + -189131.89578832858, + -189503.0773230366, + -189763.56150893454, + -189760.2159286004, + -189719.0918707299, + -189779.78137748837, + -188939.57979180606, + -189786.4030590934, + -189726.6419321666, + -189906.72903141, + -189699.8057206231, + -189440.8450981969, + -189471.24343986003, + -189315.72626956273, + -189316.89167777615, + -189281.89181624498, + -189348.41372022274, + -189400.15278844733, + -187654.02171573124, + -189181.722180315, + -189241.2593596859, + -189537.49897748485, + -189577.87143369688, + -189553.76416751105, + -189511.77300350298, + -189590.21640715873, + -189590.12591003874, + -189538.08933140666, + -189576.29104717827, + -189658.8326002738, + -189652.78629907887, + -189625.6848290425, + -189556.70430922814, + -189492.97213968565, + -189604.8022327273, + -189590.56152422907, + -189697.46412324015, + -188785.51687088946, + -187995.86556328714, + -187829.67176628584, + -187719.83667300304, + -187755.15904329115, + -187969.5000521307, + -187810.21895933492, + -188502.68663988617, + -188527.26711107683, + -188439.5683820229, + -188400.24033030673, + -188941.54365172883, + -188872.16294958733, + -189349.372745954, + -188042.59562284162, + -189466.9672629071, + -189499.77105993647, + -189551.62846109323, + -189711.09679261735, + -189642.98880778134, + -189682.60080346372, + -189655.02049784194, + -189484.32524229362, + -189601.31793291916, + -189606.60594438546, + -189560.87324982125, + -189572.4833480093, + -189451.95526184243, + -189155.25778973437, + -189719.11336881894, + -189535.40777391606, + -189653.17828992414, + -189528.0714884979, + -189600.03913814086, + -189456.21906470374, + -189529.67807614632, + -189683.419552452, + -189706.35646586987, + -189566.73535772157, + -189663.45926956282, + -189644.09086083496, + -189753.4799871046, + -189515.74762313042, + -189575.1751271242, + -189715.39152002477, + -189677.10772575348, + -189763.0314858547, + -189750.63256559754, + -189623.64470779992, + -189555.93848452147, + -189516.65865324857, + -189332.90830424154, + -189335.40028172662, + -189390.99357965772, + -190788.04912055115, + -190432.64277937377, + -190429.14197236107, + -190324.69859443782, + -190357.26809546677, + -190463.3906674185, + -190804.5319977288, + -189752.39082629923, + -189233.70459704348, + -189381.97372271767, + -189274.94123611646, + -189344.52233503317, + -189330.49109124398, + -189292.62281836645, + -189382.74018184142, + -189283.81177846075, + -189189.62408053043, + -189881.05147717806, + -188418.2457536636, + -188334.16715397255, + -188316.96436541888, + -188393.31250959192, + -189449.70576624642, + -189643.99202381787, + -189621.55397281286, + -189584.60665973625, + -189708.35344832033, + -189545.99010444924, + -189640.61439605875, + -189647.60507520966, + -189090.94929104674, + -188949.56218808194, + -188970.90563415922, + -188778.30225349736, + -188877.02349292667, + -189187.23989760628, + -189228.16159599964, + -189371.9970513625, + -189354.5654109178, + -189119.10153963434, + -188553.4626397446, + -189034.6677846897, + -188582.1700977013, + -189344.76616863086, + -189387.8552421466, + -189190.0319375097, + -189272.67281759946, + -189335.77220952246, + -189246.25773864324, + -189282.36250191767, + -189851.525977397, + -189898.50682877458, + -189902.20292579886, + -190014.4432471374, + -189947.02621110433, + -189984.75176702105, + -189998.6850751129, + -189960.15611711724, + -189925.12486746212, + -189946.0012008412, + -189942.73770603698, + -189928.97374273633, + -189282.7001458068, + -189590.10878598897, + -189688.56378906994, + -188710.3709706175, + -188629.75667986035, + -188670.25366519665, + -189536.5844743295, + -188727.2902867739, + -188687.9977280287, + -188955.84294808432, + -188979.20255327725, + -188974.94610195557, + -189617.42703743948, + -189562.51140533126, + -189380.90819896417, + -189619.37247978424, + -189782.16983261594, + -189821.50652600272, + -189887.81381680508, + -189897.2491422674, + -189836.83355904545, + -189705.70407238055, + -189822.16051409193, + -189732.60148731066, + -189827.95292964636, + -189654.67760689667, + -189747.67582984507, + -189892.11024789204, + -189779.45626955442, + -189857.48519184976, + -189864.0957269925, + -189800.49653082312, + -189683.09851788307, + -189772.1017231966, + -188074.20351587667, + -188048.01374776612, + -188076.0410432971, + -187921.70754893584, + -187944.64016261857, + -188069.6471734618, + -188033.65890864775, + -187984.49376657544, + -188066.0584282789, + -187873.16679846472, + -187761.06000681227, + -187966.5095326889, + -188771.22071372272, + -188942.09885480377, + -188924.61120937933, + -188865.0310038266, + -188325.55852082116, + -188221.7491593263, + -188015.43710141958, + -187905.9131194616, + -188562.52238197235, + -188583.9863067021, + -188292.803831213, + -187973.74266490637, + -187980.7875448006, + -188006.8523079164, + -188196.46996764973, + -188266.2197375126, + -188656.73899805153, + -188701.21377091933, + -188539.53210781686, + -188624.18261098056, + -188587.54773051367, + -188671.20919887463, + -188643.8479868126, + -188585.12861631755, + -188119.47972230078, + -188206.78624151362, + -188825.28809191516, + -188789.93647026946, + -188595.929621033, + -188904.70828505783, + -188656.04075638522, + -188288.63591142182, + -188201.85617050852, + -189057.81546602, + -188669.6333716104, + -188732.5163680446, + -188637.09764701437, + -188758.95185635728, + -188640.11104820046, + -184975.02995836173, + -192653.7287946721, + -192658.9858084674, + -192643.9378977829, + -192624.1983817503, + -189827.35018753487, + -189853.90365825905, + -189755.076146139, + -190101.45817912888, + -189897.10993130127, + -189979.1871069332, + -189945.22708950468, + -187360.3181764521, + -187377.81473387225, + -187085.60542441468, + -187126.73472208405, + -187076.44109914085, + -189543.034315843, + -189163.53067750562, + -189694.32037712878, + -190001.34422844957, + -190121.17477858203, + -190109.7346041272, + -190215.29371707712, + -188502.3898432576, + -188505.68688054534, + -188469.82315365504, + -188505.51258337646, + -187548.06751765357, + -187526.72134379356, + -189502.79748963288, + -189162.7775371684, + -189864.69924589156, + -189091.23073030688, + -189098.729985849, + -188951.4483378136, + -189105.83893511366, + -188778.71886401522, + -188921.8575232467, + -189156.49544347025, + -189085.15446033492, + -187863.92820822977, + -188710.84136932285, + -188817.58476702461, + -188975.3355759559, + -188927.43096510798, + -189173.6846848957, + -189000.61821900296, + -189002.45745511763, + -188898.19947380063, + -189075.47551847165, + -188971.97905411114, + -187894.56703794212, + -188919.8056771276, + -189080.7550455894, + -188787.2704993271, + -187852.36526218464, + -188843.77638094558, + -189035.6991536637, + -188801.21894511217, + -189280.28143715774, + -188855.60943415618, + -189146.70967002175, + -189026.6393112517, + -189031.2455634038, + -188875.43440098123, + -188897.01172743316, + -188866.27150595438, + -189159.98308012512, + -188983.8191116055, + -188814.16702615508, + -189048.87915536104, + -188871.3639754638, + -188848.03815522493, + -189094.54492211857, + -189061.87467044228, + -188505.22634815276, + -189076.32527469256, + -189151.15283918366, + -189058.45726150705, + -188817.90158256877, + -188953.58974896904, + -188943.9313415137, + -188879.4638523478, + -189024.50651389456, + -189123.97882152276, + -188883.4842960677, + -189120.6792836771, + -189113.53599738402, + -188964.62717743742, + -188560.05311062792, + -189624.33377322988, + -189598.00166810045, + -189567.498505866, + -189951.57727285993, + -190038.81848945052, + -190032.9438813023, + -189607.8188208205, + -189902.3304396636, + -190013.260857581, + -189953.2875295655, + -189254.12345730932, + -189010.69702649902, + -189550.82926949437, + -189418.8305916361, + -189418.45132045657, + -189938.98847371674, + -189481.26125690035, + -191623.8931317123, + -193456.92593939666, + -193559.34465828937, + -193537.81960822793, + -193263.28722742767, + -193404.9270928785, + -193547.75923148528, + -193461.77865299906, + -193341.6948875634, + -193310.37387013956, + -193575.17645088313, + -193478.02172936473, + -193568.00528276377, + -193543.01968804744, + -193516.14453401812, + -193387.98513967678, + -193607.67536828865, + -193479.753757584, + -193355.90193244684, + -193406.9449645201, + -193564.96957959293, + -193332.8917695752, + -193469.2054070533, + -193221.83049125588, + -193512.81482243334, + -193452.62691900134, + -188742.25835635187, + -189868.5219289275, + -189969.1792616839, + -190045.9373963785, + -189670.68791407108, + -189734.63562969028, + -191377.50485578203, + -191222.35911275444, + -191243.0515390836, + -191271.9049596895, + -191379.93800357336, + -191175.45420477103, + -191656.98941584208, + -191319.54700031714, + -191297.4291378877, + -190086.10968265266, + -190096.79898858466, + -189133.8957997381, + -188769.7524320571, + -188482.3157020377, + -189373.57180557027, + -189782.7809279428, + -190474.0354770335, + -190371.1359257553, + -190321.52227194887, + -190344.32547762684, + -190497.0175391162, + -190465.26309402508, + -187529.8569288587, + -187417.65084470675, + -187595.0345184197, + -188793.50051869432, + -187896.9081911965, + -187950.47693488878, + -187852.12457066582, + -189030.72274047518, + -190122.4501330495, + -189948.1486313253, + -190453.08226687548, + -190335.2883217472, + -190188.87329426254, + -190066.86374923558, + -189690.21858696538, + -189771.49663237328, + -190086.7786046643, + -190011.98226594419, + -189857.30593465958, + -190479.28831624571, + -189915.0190236122, + -189092.11310182954, + -190009.95041416763, + -190288.40175925204, + -190208.68058270408, + -190223.2598854498, + -189596.71553589354, + -189532.60174471134, + -188278.1072223423, + -188990.4010166953, + -188932.35300179519, + -188987.5553701727, + -188980.99251783875, + -188399.1066065768, + -188547.48254971273, + -188445.99561197893, + -189408.1187962789, + -189194.96207121338, + -189618.59279905658, + -189596.4692696455, + -189591.8731843488, + -189563.21199104455, + -189247.56010120243, + -189228.67042631286, + -188686.11696233056, + -188643.2572033615, + -189785.7936062494, + -189832.1833617229, + -188724.28354291673, + -189000.49204416302, + -189681.60915599283, + -189405.59755569755, + -189460.84585110802, + -189640.6416367897, + -189759.73338347275, + -189666.2462641403, + -189877.80432977845, + -189698.4654076233, + -189872.54233829424, + -189934.48555254235, + -189825.34967911273, + -188339.00311775182, + -189089.71924361648, + -189140.07123628308, + -189246.3295914749, + -189261.93875597016, + -189164.02682145475, + -189243.80772386643, + -189146.8788231098, + -189161.1410087493, + -189249.8908024901, + -189187.70565578455, + -188240.28382077243, + -189121.58192836438, + -189178.79518399367, + -188415.4342752534, + -187704.1856572577, + -187679.05010809522, + -189393.24956273774, + -188883.37598759666, + -188958.043341557, + -189109.00672269435, + -189073.311932781, + -188907.77366622048, + -189162.88629233922, + -189191.27948312214, + -189044.13234691945, + -188955.4569509421, + -188930.1166276852, + -188981.61018574386, + -189060.53964369342, + -189006.8313798339, + -189073.19084259024, + -189161.52886389126, + -189110.20569245965, + -189375.341623621, + -189208.89107501428, + -189008.29312550844, + -189406.6961868914, + -189247.05285320058, + -189358.78761245878, + -189380.80686938798, + -188977.17868152083, + -190171.06683845687, + -190002.99170424696, + -189982.1293526866, + -189911.10633381322, + -189995.0356338526, + -189997.50324860663, + -190023.1519635282, + -190061.7421727275, + -190142.2612089221, + -189953.18482676084, + -189959.6292369299, + -190076.74672227495, + -190047.69919487005, + -189592.09389439234, + -190042.4332771142, + -190072.09887471944, + -190023.65707861382, + -190069.90387555773, + -189999.30668370787, + -189943.26942762276, + -190047.4304017866, + -190013.54687287952, + -189954.94326666972, + -189989.53954194966, + -189994.1273630411, + -189998.3802860646, + -189536.80725185145, + -188416.74513307065, + -188421.93878236535, + -188226.34945822318, + -189141.3441900047, + -188801.4006698127, + -188258.42142430766, + -187828.0449700697, + -187557.52973979575, + -189203.59341116896, + -189222.42477997518, + -188371.93455635058, + -188236.67057536307, + -189053.21654074607, + -188910.12449409856, + -189616.0770537085, + -189187.79390543632, + -189076.53981134578, + -189355.03813613064, + -189235.60204803146, + -189060.11793078348, + -189047.46005050762, + -189110.33805387263, + -189086.58762901634, + -188814.90499657913, + -188831.73310049425, + -187732.9738354657, + -187992.73283452474, + -187944.50330577596, + -188018.83061694138, + -187930.0200671109, + -186619.29365579388, + -186683.35602978745, + -186684.73039451445, + -187711.07272794982, + -187669.59759489246, + -189468.85739625, + -189487.9206905245, + -189474.07753045388, + -189538.19493991407, + -189174.537700806, + -187176.16775513362, + -187889.88915153715, + -188877.767245647, + -188875.60269456287, + -189320.8832616244, + -189701.74112496764, + -190570.05343242383, + -190456.94334113694, + -190425.7399763771, + -190488.92328356873, + -189848.3496053623, + -189767.82097975494, + -189836.98244016172, + -189360.94131929203, + -190187.96899881063, + -190075.78591642829, + -190102.6448901039, + -190082.51368391872, + -190277.35605871337, + -190108.85859934683, + -189982.98427097642, + -190247.19351608588, + -190000.47476074027, + -190015.63669208196, + -190176.02416169882, + -190196.77460129675, + -189948.9893928284, + -190051.48274480636, + -190309.79507444083, + -190266.7019462526, + -190160.6995683081, + -190048.14997909922, + -190138.61148006478, + -190201.3591599058, + -190220.61911344156, + -190108.87515133707, + -190235.60594223105, + -190243.27357438963, + -190140.1759802504, + -190142.06772604265, + -190106.0660399482, + -190032.54339045423, + -190078.30164515603, + -190140.8097984063, + -190239.66301388768, + -190204.91858076805, + -190104.49800215533, + -190222.0138580218, + -190176.5237960741, + -190284.59045692414, + -189989.61280394648, + -190188.0724671243, + -190304.79464037312, + -190151.1461472848, + -190245.7156611473, + -190354.1941259311, + -190063.91222684208, + -190215.5486804766, + -190266.6265029611, + -190135.90178565972, + -190390.4172704486, + -190225.16976200862, + -190233.24979261204, + -190271.6524928905, + -188255.49531115688, + -189431.19612052888, + -189406.98871430848, + -189405.89976436328, + -189556.0586895262, + -189975.8857865456, + -189962.64684681784, + -189606.58142448816, + -189620.0076205086, + -189829.45164674928, + -189806.80628290947, + -190055.23194051083, + -190099.1641087381, + -190009.77524916915, + -190123.61494626934, + -190327.86074333172, + -189881.85499270284, + -189877.7461051455, + -189785.98016496692, + -189801.74533007256, + -190150.7534213793, + -190083.45351184526, + -189958.9935821789, + -189640.46304525726, + -190369.8816348054, + -190355.11724425686, + -190322.80421544664, + -190263.3619893532, + -190417.86846340998, + -190129.3764744744, + -189044.47193388795, + -190141.27549069133, + -190192.09800997702, + -190228.05993463765, + -189166.174499402, + -189825.80985082992, + -189928.15648078072, + -190413.83573917582, + -190409.3455823219, + -190456.8050621169, + -190416.263701065, + -190423.7286388017, + -190504.68932044078, + -190351.8577571806, + -190430.28066369068, + -188357.7548173183, + -189963.01135006186, + -189867.35754044872, + -189885.2399857091, + -189540.83255167972, + -189971.6969367716, + -190014.13869723506, + -189625.3584162535, + -190033.94066848868, + -190014.96846085825, + -190047.33554382756, + -190021.89704585815, + -190095.05957379984, + -189823.33718928453, + -189807.44797915185, + -189856.9200899178, + -190683.3037257944, + -190622.24743598714, + -190636.57137215306, + -190577.10752327426, + -190615.79719227442, + -190597.41828734183, + -190563.36643259757, + -190570.68582678516, + -190689.22248026772, + -190604.4639800109, + -190649.86056976585, + -190660.25961607235, + -190080.6795551314, + -190063.6300792004, + -190056.3523664133, + -190081.37512168137, + -190053.65824576886, + -188982.54369054709, + -190254.69169143718, + -190270.88097794403, + -190324.85616092518, + -190316.4062083869, + -190233.7497864454, + -190309.93574469167, + -189865.68748950932, + -190158.38189934954, + -190002.0571816662, + -190032.13717515685, + -190219.2848547583, + -190106.5932816327, + -189776.73861947109, + -189892.40357004944, + -189933.6677233693, + -189787.4065735723, + -189622.95178168817, + -188401.64732672213, + -188363.39439349156, + -188369.21574915142, + -189654.05215583372, + -189657.41072030462, + -189885.08282564703, + -189897.7438511581, + -189344.53698081977, + -189371.6910585, + -189531.47570204202, + -189745.4244652022, + -189878.20826982777, + -190129.93090804346, + -189865.11180310862, + -190056.72426811626, + -189675.57223028474, + -189821.58209532077, + -189722.72727586702, + -190627.5336950345, + -190590.11724799534, + -190553.81046517758, + -190626.39202647426, + -190548.7352188638, + -190527.02557045876, + -190537.97620366924, + -190528.99247083525, + -190535.95331849967, + -190477.584911762, + -190590.01387789508, + -189689.98568985163, + -188767.31638590462, + -189380.99555358346, + -189820.34819052625, + -188597.77966632837, + -189046.7218577527, + -189929.7873353237, + -189827.14417308327, + -189610.45247642134, + -189721.2681245282, + -189841.32060363394, + -190133.0764252821, + -189994.26180196146, + -189552.0059179834, + -189865.34878964076, + -190128.70990411646, + -189980.2073353877, + -189911.87643199667, + -189862.09897817927, + -189582.52171704065, + -189512.73040835065, + -189560.4350602952, + -189685.13710829453, + -189440.16676991337, + -189792.41637375913, + -190046.7128963769, + -189884.18087312218, + -189803.42093549029, + -189609.67635842468, + -189566.49283217607, + -189766.99186632992, + -189187.37825301112, + -189153.77644796227, + -189720.57020872037, + -189942.3597703817, + -189936.04804907544, + -190138.50278243815, + -190147.93036115187, + -189473.60669290827, + -189934.81712935786, + -189920.5210867985, + -189880.48140888676, + -189777.5089787198, + -189991.22532635246, + -189902.6784533937, + -190014.2065216857, + -188181.21478088622, + -189993.3661745427, + -189725.42636923178, + -189845.95459293955, + -189913.25422408764, + -189815.88498965633, + -189816.0991606201, + -189914.6755130604, + -189851.85041363334, + -189412.0149135278, + -188595.05397402454, + -189964.75033073436, + -190076.95138041594, + -189948.34201305412, + -188287.7882146985, + -189201.20828713535, + -189794.53058512337, + -190036.43274504624, + -189993.46217733237, + -189516.2009930048, + -190083.22603296343, + -190015.1682753715, + -189863.4178539749, + -189865.29591063826, + -188013.20672022508, + -188285.55395057393, + -189942.62572521015, + -189716.3603225668, + -189754.81370781327, + -189479.04798828842, + -189831.82834825877, + -189846.60399545185, + -189891.63373559376, + -189756.3266971822, + -189470.92179911264, + -189881.5254498419, + -189474.05881109604, + -189860.46362732205, + -189895.8170527797, + -189901.08917131185, + -189172.6969553096, + -189942.76417361607, + -189249.40564514752, + -189864.87255623512, + -189829.0082900861, + -189527.37335576225, + -189706.09320869745, + -188333.69361629503, + -189812.79016112452, + -190011.10938298382, + -190012.59772626602, + -189821.5502203555, + -189827.98067667958, + -189752.06021142998, + -189849.57134155335, + -190103.95680880343, + -189645.7975453776, + -190161.70492528772, + -189002.53982306406, + -190098.90464646148, + -189880.14284702012, + -190275.281542361, + -189671.86798061224, + -189968.41624521738, + -190082.85660467256, + -190010.45363055408, + -190134.69000424945, + -190194.0337786028, + -190121.94782244563, + -189910.92703627306, + -190120.33137371222, + -190052.2392364327, + -190168.3448743449, + -189863.42332173933, + -190050.3134536251, + -190052.02798014958, + -190138.15984440758, + -190124.12260626277, + -190076.46943185962, + -189279.50841773278, + -189127.7614248225, + -189340.40098509513, + -189373.96438282065, + -189945.63900962495, + -189928.4903803872, + -189791.76613560726, + -189869.66751411214, + -189883.52375199503, + -189710.02260108996, + -189550.95837134798, + -190125.85650578202, + -190227.80055654832, + -189980.97976013072, + -189805.0174005274, + -188735.71532723514, + -189640.06108544476, + -189707.5300203365, + -189960.30966069215, + -190032.43816963732, + -188336.02952000388, + -188932.69835564663, + -189829.566589109, + -189766.6746070231, + -190087.43066860677, + -190041.987692598, + -188621.10935024044, + -187857.41211453432, + -188522.2186210146, + -188456.7527854188, + -188417.53740720224, + -187912.95191827603, + -188406.84414023338, + -189897.22955659946, + -189886.44474479667, + -189936.64132531104, + -187862.33462754218, + -188017.75898284867, + -188115.07214676208, + -188238.33374197048, + -188215.72460135946, + -188581.38902644193, + -188288.50808971204, + -188355.1199264169, + -188259.72638644718, + -188245.38363355384, + -188771.67321964315, + -188609.1528103252, + -188477.04377820794, + -188706.44086790056, + -188522.74551045886, + -188441.11342678487, + -190032.00715641747, + -190026.62201802526, + -189736.26297613457, + -189909.27787767662, + -189079.18498195667, + -189929.0210734705, + -189486.59669526652, + -189547.3793226872, + -189755.0992386357, + -189721.59190477236, + -189038.42168107076, + -189396.02766328072, + -189452.2648830305, + -189604.21381453943, + -189626.24769900975, + -189736.47627504388, + -189980.6924954303, + -190051.39788644988, + -189987.9388031262, + -190118.1878124256, + -189860.31740185065, + -190150.64554488976, + -190202.89670150276, + -190007.161320482, + -189941.38360680544, + -190040.3036151541, + -189981.57081345769, + -189783.57416826164, + -189796.5865472431, + -188676.66102464776, + -188680.00271065094, + -188735.25527640682, + -188691.9863820846, + -188883.2252506061, + -188594.7169153639, + -188657.22598614308, + -189329.07774713478, + -188268.3002336887, + -189249.25171750845, + -189266.88275029848, + -188041.43930099072, + -187803.3143579642, + -188052.40549977424, + -188904.57948655414, + -188769.16734820895, + -188621.68315608325, + -188716.07523902692, + -188977.8336529005, + -188876.96741627337, + -189023.2637372005, + -189446.34263308713, + -188663.34908135253, + -189338.63800307794, + -189272.46716609594, + -190475.87056057338, + -190363.26549123542, + -190644.9723379776, + -190462.08398884002, + -190574.05181437873, + -190391.15414305858, + -190504.12149903976, + -190541.7584943848, + -190394.25763746977, + -190593.80002470885, + -190549.81716892275, + -190394.54304903626, + -190586.99388908755, + -190511.55907674643, + -190443.4219741818, + -190434.752852087, + -189906.86664615953, + -189980.63646016494, + -189769.42690983845, + -189985.83720384885, + -189876.53310935257, + -189902.22536835464, + -189645.40122184544, + -189424.709689385, + -189369.65899546578, + -189022.30145293748, + -189476.28709892902, + -189342.46057276748, + -189669.7071682979, + -189861.2124974001, + -189924.49114468484, + -189695.61062811463, + -189732.4484183905, + -190206.17448188507, + -190206.0980025185, + -190218.3943863217, + -190076.2470556719, + -190052.52406760817, + -189560.67356089593, + -189632.94022368034, + -189586.8863832665, + -189750.83259052076, + -190228.63718259358, + -190321.80363929408, + -188592.69741300648, + -188530.56183519625, + -189564.82638307373, + -187892.99584382013, + -187812.29264323704, + -187981.42244477407, + -187975.52341851426, + -186877.613094899, + -185830.3568996049, + -186917.61345703408, + -186885.37838974773, + -189803.36151218376, + -189913.1497669444, + -190032.10280239128, + -190072.29161640667, + -190140.9626562465, + -189768.22843580108, + -189931.81691862512, + -189826.67274452065, + -189999.97773158897, + -190115.75191553755, + -189977.23103216087, + -189590.7531448757, + -189372.64547062907, + -189597.24984633556, + -190005.1924606107, + -189503.00303097212, + -190071.01808593702, + -190031.99421903666, + -189875.86523314627, + -190009.90432453758, + -190097.99478259103, + -189929.37601507976, + -190010.17147214644, + -188912.98164239828, + -189284.43743427604, + -188887.7173625151, + -188911.4706511093, + -189388.98309752173, + -188870.41996378027, + -188914.53959732346, + -188878.15425177375, + -188840.2951461584, + -189620.0244130199, + -189625.2583846318, + -189840.72948148553, + -189625.845364226, + -189465.20794132227, + -189921.45423136652, + -189889.22091888165, + -189946.08141655484, + -188504.64148423215, + -188412.44037557312, + -188781.8283257325, + -188740.4076299442, + -188935.6716361777, + -189902.9951481261, + -190199.11620196913, + -190331.88777793274, + -190083.6881451843, + -190036.6178459026, + -189493.53122157877, + -187414.1525286281, + -187417.08281845733, + -187304.57560440578, + -187206.64307347327, + -187494.37966247095, + -187468.07142045483, + -187405.1955167813, + -187467.3009883131, + -188046.39450204067, + -187380.41176077427, + -189268.7378156468, + -189214.5524927672, + -188447.52573377267, + -189332.07031262116, + -189228.9081982296, + -188627.0205662996, + -188656.50036120758, + -189175.41497594208, + -189375.19911536569, + -189761.69226405656, + -188055.34361729486, + -188355.8864917371, + -189842.32031122976, + -189868.9528304452, + -187411.8004731311, + -187384.85440843413, + -187397.49483843523, + -187389.06402282708, + -187408.57036686965, + -189809.44073601285, + -190293.08407689194, + -190311.90430715468, + -190388.85119682553, + -190445.93403431756, + -190435.89895740917, + -190449.3475640624, + -190483.5788748304, + -190439.36363401508, + -190402.03821597865, + -190354.2130714179, + -189878.35854182256, + -189831.7295560883, + -189980.4227549014, + -189894.38857136425, + -189234.79811111273, + -189044.42758006393, + -188982.13117658292, + -189655.64745270918, + -189272.83789102736, + -189047.49853952235, + -189062.21473259735, + -189834.68444061565, + -190332.5891857683, + -190311.74928116973, + -190268.37506034676, + -190352.22457202693, + -190264.02480158204, + -189703.3002225872, + -189741.9662685643, + -189653.50488966407, + -189759.5122753518, + -189628.80983628487, + -188401.70303736636, + -188550.56920449316, + -188650.65877533983, + -189816.1789486413, + -189665.07028830674, + -189725.06518663402, + -189952.97110248948, + -188707.19411003264, + -188725.43356871564, + -189536.60395080398, + -190118.58938534866, + -190422.2204975639, + -190454.36096552407, + -190477.12985416566, + -190273.79635232274, + -190386.17342693405, + -190290.92027654726, + -190285.11144322803, + -190500.8876053926, + -190492.82676087008, + -190384.46970978877, + -190577.94552562502, + -190476.58697762445, + -190424.5579371018, + -190515.7769230437, + -187440.6696185839, + -186735.62978625085, + -187834.27434140982, + -187215.37650594692, + -186950.25182405324, + -189983.49851289552, + -189914.44209007142, + -190739.9069385846, + -190703.46636216049, + -190823.64244110044, + -190142.2688152774, + -190703.40250229, + -190679.2845484287, + -190804.43682863933, + -190772.79528161397, + -190691.4249614036, + -190672.18419417052, + -190799.7370938617, + -190692.94467440082, + -190707.9815689889, + -190103.40849787297, + -190739.0849917317, + -190796.57720112224, + -190769.51019569216, + -190791.79343367968, + -190796.49073473035, + -190769.40469563488, + -190764.2657987776, + -190474.1084149691, + -189854.45943786003, + -189618.54146927196, + -189948.28950302518, + -187679.11051665375, + -189633.55364759974, + -189759.5887370702, + -189881.8820382768, + -189832.31199713287, + -188734.38474404474, + -188676.7512696058, + -188864.32027075288, + -188639.96835899813, + -188762.2940970673, + -188700.56167535784, + -188755.6479228247, + -188708.43066755641, + -188787.61591049863, + -188757.73158761932, + -188644.0921725751, + -188600.8117161074, + -188788.02038963212, + -188656.48788790172, + -188667.12691655773, + -188673.3512738554, + -188714.69366230932, + -188770.75855426944, + -188544.12377281216, + -188591.63738564984, + -186236.7034840598, + -189295.687458489, + -189387.7787664935, + -189483.5622333063, + -189397.8449691686, + -189313.9212201251, + -188203.37135887527, + -187995.83115505055, + -187882.34140060403, + -188654.9371244769, + -188652.52164832054, + -188316.35211209787, + -188437.44986870151, + -188505.6979547773, + -188730.1146005567, + -188626.47518371168, + -188714.48761648746, + -188407.52237097285, + -187878.91877906496, + -187863.0763505315, + -187889.46739959446, + -187982.20453415965, + -187796.48978933724, + -188215.89141412245, + -188203.05941331436, + -188146.49730992244, + -188353.95691062772, + -188399.5266737372, + -188228.87698216413, + -188298.52438193525, + -188578.58813759126, + -188544.9844182498, + -188601.63158519944, + -188847.38478974465, + -188862.40951645246, + -188755.79764277636, + -189802.89679241736, + -189993.52434262517, + -189715.1922047365, + -189733.53895609008, + -189775.83618502063, + -187142.91197584823, + -187290.77255972844, + -188686.42209622622, + -188898.14405130423, + -188708.29689676486, + -189354.12525608385, + -188852.3212319449, + -188580.35998296886, + -186997.42230628218, + -187201.35993908736, + -187014.687885825, + -187284.51386784925, + -187064.97682941234, + -187207.75294265902, + -187360.87681263685, + -187356.2702630445, + -187293.05247629643, + -187428.0603982613, + -187177.84871112878, + -187307.39001224304, + -187136.34909378062, + -186899.42802989998, + -186811.0259265327, + -187248.96487327036, + -187252.0636923649, + -187100.6777743965, + -187236.13957324318, + -187245.60588781812, + -187356.27166993468, + -187208.07756964676, + -187185.59605571016, + -187270.27839081976, + -190313.3433016634, + -190457.10477513168, + -189545.14535960605, + -189494.47629843102, + -189570.22630755027, + -188823.48915271257, + -188865.64963285843, + -188552.1363584385, + -188619.1510519812, + -188607.08239080833, + -188752.95402744415, + -188809.1513214061, + -188896.28428937343, + -188888.90122016604, + -188651.0311671839, + -188776.98081559045, + -188838.6412495665, + -188699.98510029077, + -188861.55098448345, + -188762.69707663247, + -188923.10925551094, + -188763.50010894032, + -188741.78613036394, + -188883.2552726653, + -188712.7041078951, + -188881.00360508487, + -188390.8105047042, + -188699.0734942116, + -188827.92401582585, + -188894.79960782512, + -188931.13202414938, + -188794.56392041262, + -188852.1069479377, + -188953.8661182334, + -188771.58744733158, + -188730.8485746518, + -188701.8704289315, + -188737.72953596013, + -188660.35107391197, + -188853.6550247938, + -188922.932948625, + -188957.68048442173, + -188799.11774294777, + -188847.64672820744, + -188887.03812416104, + -188451.27752479166, + -188795.36556420612, + -188747.6297643966, + -188640.27812372334, + -188696.12511807954, + -188675.42898269245, + -188834.95098552675, + -188763.50635195625, + -188857.6640882033, + -188869.67914135032, + -188948.13019580705, + -188881.2122130014, + -188804.45974852913, + -188807.0153833909, + -188992.52597648092, + -188691.38600189023, + -188948.31282661355, + -188943.01247223295, + -188666.8490319798, + -186755.8790869865, + -187055.96567581533, + -186938.30669909163, + -186939.5914131338, + -186968.9595965698, + -186973.58842409158, + -186996.0641120089, + -186927.14507917225, + -188126.36856649444, + -187989.0606507604, + -188345.30883986986, + -188024.0209446362, + -187981.19938609967, + -188370.6918408433, + -188372.59542666713, + -188290.10180168305, + -188180.75968110925, + -188032.18651155845, + -188456.66581593105, + -188411.54018031366, + -188603.7382084354, + -188526.96284229629, + -188044.24931373517, + -186594.78042197166, + -186557.0441814957, + -187450.78776177226, + -187654.4132413958, + -187298.15982685503, + -187654.50341685605, + -190240.44111720624, + -190204.69430696947, + -190247.32743206137, + -190116.23170855152, + -189822.41604996356, + -190052.50408411375, + -189978.73620741625, + -189991.84017777976, + -189927.37323736722, + -189963.82074388396, + -189953.3400875045, + -190023.03157957617, + -191196.78522172087, + -192597.09524694833, + -192895.82000379864, + -192937.6195482761, + -192963.4726938061, + -192528.2497704212, + -188998.86112254602, + -189079.51045495822, + -189030.98601303186, + -189281.1745312478, + -188992.39721257958, + -189440.84837420477, + -189362.363551564, + -189418.5635541344, + -189367.09601308653, + -187581.6603888008, + -187785.48520829526, + -187632.458215042, + -188155.6028932805, + -187435.4461049656, + -187231.93304935156, + -187435.52201434693, + -187501.4728511325, + -187668.08951668267, + -187708.40512644028, + -188147.31119030315, + -188675.0008515813, + -189810.78317731756, + -189794.89106257277, + -189717.23712618652, + -189900.2372679593, + -189825.69648692242, + -187226.894383661, + -187178.20205640906, + -187136.8960553202, + -185238.39783400472, + -185242.5030415149, + -185345.7950604921, + -185410.27123301756, + -185416.34499830386, + -185342.93001344596, + -185340.5244730282, + -185450.9592763067, + -188074.3879708484, + -188044.7241588103, + -188191.30626510383, + -188068.61579568117, + -187947.28406376718, + -187639.40616431175, + -187644.44181296264, + -187708.90496310382, + -187881.68699067866, + -187821.27637982904, + -187816.77484224085, + -187778.33799052887, + -187888.0480726681, + -187900.6198216651, + -187767.44388922982, + -187824.64761095232, + -186946.49920168173, + -186875.07184791236, + -186883.20867396414, + -187589.55648392823, + -187225.69080118512, + -187537.9427673691, + -188286.14667897578, + -188172.5591447211, + -188398.48892919585, + -188163.391662388, + -187804.12340613295, + -185577.83795216106, + -187501.71933425503, + -187587.08880175353, + -187521.54406894254, + -188028.0949108722, + -188061.22295862038, + -188256.72208444707, + -188476.10056489505, + -188485.98826566394, + -188518.84975849348, + -188518.25470222684, + -188453.06253164104, + -188396.41158598493, + -188345.5402286827, + -188383.97417014395, + -188397.65911864082, + -188327.75352780774, + -188011.48721764886, + -188302.3685863598, + -188359.7452217864, + -188067.38926369348, + -188501.6178230978, + -187567.7001615884, + -186675.79639052547, + -186707.68769738608, + -186889.37334551246, + -186291.1911451345, + -186989.15942660804, + -185853.3718166437, + -187271.08204112732, + -187348.63421752062, + -187554.30501214246, + -187649.85293612428, + -186879.65209386378, + -187244.61048096724, + -187154.04340592172, + -187692.31182614467, + -186640.3528644003, + -186681.88272520696, + -186350.56007629345, + -186557.0595740633, + -187487.54660540985, + -187371.21086043568, + -187303.41224789037, + -187411.98825159538, + -187463.35967468497, + -187318.19430842687, + -187437.8841669884, + -186033.67372700493, + -186008.7916507735, + -186078.14045517158, + -186108.63102585988, + -186939.9285527728, + -186936.38431708724, + -186972.09442050973, + -186879.7359633921, + -186984.41818152944, + -185969.2729297153, + -185798.58472768634, + -185870.23223539593, + -189292.95169776288, + -189494.6934112341, + -189326.24295138277, + -189480.1865117243, + -189446.34306059004, + -189358.18497589478, + -189404.17320247806, + -189265.0231138431, + -189372.33628926397, + -189458.1241264266, + -189129.6599752958, + -189426.05987348396, + -189409.23422673906, + -189286.6328264702, + -189389.49688049342, + -189313.74074668097, + -187751.72083891128, + -187076.09070858092, + -186912.38462175036, + -188965.47987347044, + -189069.16209137047, + -189102.77715540328, + -189135.83882498092, + -188978.2368169874, + -188961.64872165, + -189021.61764845366, + -188762.91719638073, + -187661.2072276682, + -185455.67429735223, + -185449.35314495498, + -185711.47020234595, + -185720.25737344744, + -185791.17667712452, + -185644.0000068018, + -185702.2403112886, + -185714.91162220383, + -185966.1274989558, + -186029.8168894544, + -185980.73022512393, + -185918.62006951767, + -186074.34110850515, + -185967.65473758016, + -185912.79278654896, + -185910.2529198803, + -186074.93122414872, + -186001.86051648084, + -186832.7195104887, + -186108.97183798853, + -186102.11742970758, + -186268.66597161358, + -186147.42151117936, + -186134.44552984045, + -186116.22553471103, + -186240.78791235245, + -186220.0874551632, + -186211.2465119336, + -185721.6361586473, + -185731.8584489242, + -185807.2781334582, + -185677.78297079756, + -185777.8946131462, + -185711.15775236682, + -185463.91840826042, + -185433.64652967916, + -185662.1639660892, + -185822.67958441644, + -186298.50636453225, + -185689.56644176925, + -185438.26027515047, + -185409.17303563593, + -186224.27135727915, + -186298.08317751426, + -186345.2599174619, + -186205.19783801437, + -186247.72530939055, + -186256.56822646176, + -186150.59933272027, + -186288.81160163097, + -187443.3928854305, + -187452.1772530611, + -187642.96896241207, + -185878.00221058106, + -185807.32743469166, + -185902.22732454303, + -186606.81926120326, + -187647.5690992496, + -186476.53578284683, + -186438.41734368665, + -186573.2937496868, + -186502.02138871377, + -186349.21861987398, + -186310.0223569153, + -186274.76857716416, + -186331.85276631886, + -185983.7434419839, + -185818.1346321836, + -186002.50966320807, + -186042.88912072591, + -186121.47925284848, + -186717.06241415057, + -185916.95262886243, + -185806.39721748504, + -185580.1522161938, + -185880.08983432362, + -185934.5985057661, + -186056.47685413636, + -187823.113834285, + -187877.20307305898, + -189116.18185272234, + -189150.4406044805, + -189062.64094765644, + -189084.98088599712, + -189112.29607800412, + -189029.52319166693, + -189143.4111983908, + -189055.97021726094, + -189166.74178145034, + -189245.6231883351, + -187672.05038897906, + -186892.24831707022, + -185501.22940075284, + -185887.9116084029, + -185852.81758394415, + -186551.7145795559, + -187426.84525135905, + -187378.69444328308, + -186788.20187772284, + -186763.38064184826, + -186701.82275168115, + -188314.138705119, + -187817.7468885494, + -188092.37659809837, + -188180.72176382353, + -188414.69558309155, + -188059.4601945175, + -188373.40505639598, + -188264.2195934443, + -188320.12878054316, + -188279.3082778884, + -188259.35815363447, + -188381.41438960162, + -188456.62670565912, + -188203.95744939387, + -188267.72042267103, + -189029.3114905367, + -189629.98277226143, + -189142.84215571234, + -188622.02436373147, + -188630.3315350438, + -185323.49054395297, + -185924.99338734476, + -185895.40664220214, + -187147.5761046197, + -187108.92789936063, + -187993.21676425092, + -187922.35810760508, + -187892.88679803116, + -187666.8726984889, + -187557.1706597231, + -186313.83578554614, + -188083.38799385336, + -187259.12778693333, + -187273.5342161505, + -187331.86667688502, + -187331.38102223023, + -187227.1136100382, + -187171.76294520684, + -187181.90006387417, + -187306.32934127536, + -187243.66628145642, + -187271.48480846945, + -187256.19230974244, + -185657.2917482269, + -185666.85028914805, + -185591.8222642259, + -187103.63428327104, + -188209.54055470478, + -188222.8670521776, + -188362.19832204955, + -187529.6417177125, + -187434.5731242961, + -188632.7958142112, + -187021.88931313905, + -187431.9043514244, + -187477.0269830232, + -187338.2293802138, + -187320.91315713827, + -187227.73220051124, + -187345.71837811806, + -188439.03343750766, + -188408.0615378219, + -188313.1182042166, + -188352.28480591113, + -188446.83179684373, + -188296.7781034227, + -188380.76386155013, + -188414.5214674675, + -188231.59919262267, + -188324.05487145262, + -188410.1995272695, + -188137.98152500016, + -188169.61385914954, + -188305.0884720353, + -188124.0392341609, + -188417.5878908665, + -188385.25230416303, + -188342.91289083599, + -188370.81252883916, + -188341.34483720383, + -188301.141957558, + -188351.53178116586, + -188385.78051688513, + -186621.86407557828, + -186437.83235122028, + -186648.74080964338, + -186693.89186781415, + -186609.15991015043, + -186541.94642658572, + -186694.5596479308, + -186029.39161897544, + -185985.24596467766, + -185111.35544820773, + -184878.2925505224, + -184900.92048438126, + -184980.95907930352, + -184830.82603230205, + -184985.15467209017, + -184866.84489150278, + -184971.35089743548, + -184817.5826812654, + -184926.39571750653, + -187944.50525826582, + -187830.56628117207, + -187777.7246566672, + -187860.09405448032, + -188340.82871420533, + -187565.0428723036, + -187698.48595699875, + -187787.3662495655, + -187844.7862156998, + -187744.18704166426, + -187702.7046883214, + -187652.86349496595, + -187596.90565444194, + -187363.10526503893, + -187316.0784152729, + -187391.86258957486, + -187448.2440636445, + -187532.07471562567, + -187466.55375368948, + -187455.6494347709, + -187150.13887341777, + -185776.61739803432, + -185680.40854732087, + -185830.5389118821, + -185650.36841039386, + -185677.2673627574, + -185485.39401094842, + -185469.22223657562, + -185206.36499600124, + -186018.1826105063, + -187401.52853024635, + -187570.49869336904, + -187541.9398725673, + -187030.8972838196, + -187083.4526611306, + -187603.82918211873, + -187647.28536999365, + -187308.42593291332, + -186478.90406636745, + -187768.17273301232, + -187767.25461447696, + -188326.21750175883, + -188576.2471463381, + -188259.41185450985, + -188247.40100032825, + -188286.73832435787, + -188135.24485311715, + -188421.00379537063, + -188338.0087478835, + -188259.29964565398, + -188174.46166792992, + -187733.72742661694, + -189209.24392154833, + -189128.66516890543, + -189089.44703730565, + -189062.26751784116, + -189006.18627960136, + -189111.3455266276, + -189183.16372887848, + -187208.4193053007, + -184875.45037648498, + -184932.71484965115, + -186360.36121976856, + -186390.50909656734, + -186320.02787605638, + -184958.27162066122, + -185033.19564760168, + -185026.3672666458, + -187316.7533220786, + -187314.78830484283, + -187883.4205209049, + -187808.0234352976, + -187776.47222745066, + -187832.17732583472, + -187638.8520412594, + -187656.30212836852, + -187855.14822512827, + -187775.23649809035, + -185541.74694908792, + -186776.31835431908, + -186729.0680799888, + -187779.0215989265, + -187810.13455863777, + -186667.31905664725, + -186561.9599579625, + -187383.1444426275, + -187447.61429908752, + -188454.13766259872, + -186964.5945298959, + -188063.1798418329, + -188001.539550981, + -187993.0192754519, + -188024.4130746416, + -187747.9444130807, + -187744.0116635731, + -187731.8432907234, + -187573.80466904546, + -187598.80645447352, + -187596.5046491663, + -187288.80200411892, + -187262.42396248772, + -187561.7118743889, + -187419.58663264677, + -187402.7377700646, + -187339.4240354632, + -187316.92185478634, + -186977.2543088253, + -187878.10399634237, + -187863.8697123179, + -187890.12675137995, + -187814.57497653816, + -188215.60907166445, + -188280.47213881285, + -188236.56312966373, + -188210.48406885206, + -188193.0718934871, + -188271.17600125467, + -188293.4502131511, + -188171.78614487077, + -188012.6788621272, + -185655.59341981533, + -185736.52136136606, + -185770.88788624728, + -185697.46901445196, + -185414.48586402094, + -185132.4642161289, + -186356.13856033777, + -186313.2958451689, + -186338.92011198975, + -184516.72003001926, + -184843.76024899518, + -184933.89129201812, + -184021.75602492446, + -184691.19229069614, + -184152.9240079309, + -184482.14613425103, + -183953.893675741, + -184469.7626795134, + -184344.23325082078, + -184103.1688565142, + -184685.21209432156, + -184415.6816187155, + -184632.38804639404, + -184375.86977942512, + -184332.48851433082, + -184723.2742356617, + -184005.75934572695, + -185281.13137164246, + -183999.60156087438, + -184625.9060468856, + -184466.14155302377, + -184542.5949496982, + -184302.81502155322, + -184560.35288850742, + -185118.94034561815, + -184086.80238717035, + -184046.9710787171, + -184809.0256036502, + -184399.0840219996, + -184391.88672906658, + -184053.19035581584, + -184512.93542301055, + -184548.98355077006, + -184938.66553901948, + -183986.1946205672, + -183956.9061762835, + -184572.61247797642, + -184674.4397575011, + -184157.5174739141, + -184478.13298193726, + -183878.92287719354, + -184826.67048045195, + -183926.29882842753, + -183984.95380032572, + -184517.13018578722, + -184534.56925160962, + -184964.8159797254, + -184359.2583782949, + -184454.54429874875, + -183922.4251984298, + -183983.12872461032, + -184448.92155459523, + -183926.65394185428, + -184483.14178490062, + -184459.0371071663, + -183908.0265364355, + -184093.90873268884, + -184448.99616662858, + -183772.9734046665, + -184052.96519921636, + -183918.1878761729, + -184098.43718922336, + -184056.83511514793, + -186797.6920016611, + -186764.78961016686, + -186606.74246421392, + -186814.08319625797, + -186841.85064924235, + -185229.98445879115, + -188223.46779498976, + -188109.9241793382, + -188213.9164635894, + -188205.49509758296, + -188211.13477789238, + -186979.2569175904, + -186921.99192275654, + -187768.56183739353, + -187794.3370978308, + -188356.18496868218, + -187548.05692883665, + -187406.00798270156, + -188336.9253777015, + -187323.43987749555, + -187120.4632982402, + -187105.4559362055, + -187186.98604338866, + -185016.98524079414, + -185085.52919270555, + -184987.4994595672, + -187742.4789028903, + -187594.73212482024, + -187526.96904194946, + -185580.45179848326, + -185344.8813752901, + -185852.06992264595, + -185836.92063664558, + -185725.27257533383, + -185784.19337082037, + -185614.49407683435, + -186964.24290234642, + -186779.89753024382, + -185624.99907570484, + -184719.94581504792, + -184726.23986392902, + -185955.71425621217, + -185838.49510347802, + -185787.33131372032, + -185765.99863251753, + -185817.8275685583, + -185963.7812395475, + -185746.10347257685, + -185842.28988354502, + -185790.03574118888, + -185826.68751853835, + -185733.232588588, + -185937.87729888412, + -189368.39644194843, + -188481.58842989343, + -188436.02662832712, + -188325.26049889467, + -186771.04894559522, + -186697.15984983026, + -186693.21655215652, + -184892.2726260721, + -185567.8690752443, + -185578.18959431755, + -185583.02070754246, + -185562.19137743715, + -186403.77082742343, + -184575.60851572294, + -186874.65690847478, + -186891.23996141268, + -186834.68317631911, + -186910.4333978544, + -185651.45994159847, + -185623.0827940337, + -185632.32875706351, + -185666.31528947095, + -185554.52363601752, + -186288.04758386785, + -185753.3971158193, + -186310.58059116386, + -184616.7688318368, + -184401.87544151273, + -184525.4736316065, + -186276.35195535765, + -185972.8434477619, + -186838.5032892438, + -185727.61304680264, + -185697.17376918934, + -185798.98620961388, + -187642.51836253164, + -187764.57816116777, + -187542.06987581123, + -185293.2187831642, + -185903.43875753888, + -185785.14838709997, + -185973.87764999818, + -186067.0862167175, + -186158.97877465814, + -185989.4316304029, + -186114.6936778866, + -186055.8109308676, + -185291.57756024352, + -185048.40507163212, + -185076.47558780372, + -185092.58870926997, + -185301.4444383572, + -185242.82400176267, + -185140.83648854677, + -185157.6814537348, + -185155.94466425403, + -185208.11002613642, + -186565.59087154226, + -186480.25347723064, + -184448.6407484703, + -184666.32580902395, + -184668.23630678613, + -184495.94596649605, + -184482.70184172114, + -184478.35050815623, + -184512.32520094118, + -184261.5465761945, + -184634.49566379888, + -184560.19984549735, + -184670.23840157985, + -184371.61625666966, + -184578.3021335712, + -184565.8562626501, + -184563.241697051, + -184561.60399324592, + -184436.1199384927, + -184432.395119436, + -184361.95124302662, + -184540.22533401122, + -184570.8246640068, + -184324.04454522333, + -184444.7061040916, + -184434.7383033702, + -184412.2399147937, + -184385.86924617414, + -184647.3278054887, + -184525.70918441145, + -184452.65560742965, + -184455.16677151565, + -184602.90357108583, + -184335.66035031216, + -184329.45753261627, + -184396.19705080253, + -184415.37550663672, + -184603.9470967293, + -184259.92373122973, + -184555.74403726184, + -184468.20206422772, + -184378.76424846865, + -184349.91600976678, + -184416.8796289699, + -184531.81137137485, + -184365.4363055658, + -184522.8186824892, + -184214.71754588166, + -184462.5055205388, + -184630.82440155972, + -184268.241804971, + -184387.83293723778, + -184263.5080821243, + -184299.18997492632, + -184595.47202338692, + -184367.0304015083, + -184503.80352402254, + -184699.5789652916, + -184396.12613862206, + -184558.88043573382, + -184443.74404577023, + -184532.7557788167, + -184485.79925380167, + -184585.6667816663, + -184535.5438101554, + -184312.79009042695, + -184469.3966283573, + -184380.98245245064, + -184529.99194847723, + -184415.93947968376, + -184490.68544655846, + -184353.56639420363, + -184403.17947942961, + -184239.7978809641, + -184472.87944490157, + -184437.15623543007, + -184323.3322352525, + -184343.2045702599, + -184626.3527931452, + -184462.3167709153, + -184533.35011545193, + -184436.2619308537, + -184431.31792950505, + -184608.74823234757, + -184525.2715713245, + -184325.9582852508, + -184428.10464539006, + -184371.6132084216, + -184211.15437910138, + -184572.96927713798, + -184583.2702726393, + -184430.24335061625, + -184403.36231750465, + -184453.03854239488, + -184385.02662899948, + -184588.89026853853, + -184470.32547589156, + -184590.07805586595, + -184541.99719453312, + -184491.53542994565, + -184482.47262135896, + -184411.4790215959, + -184521.32453058366, + -184314.30332101538, + -184366.10316420314, + -184303.13965177367, + -184460.4007301304, + -184666.42142408775, + -184598.78127871666, + -184634.43962006122, + -184510.82978744808, + -184295.7969173079, + -184270.03347038655, + -184562.56576027544, + -184335.1636910743, + -184393.67580475452, + -184415.05527906748, + -184359.19078144277, + -184517.4784958797, + -184361.13898158647, + -184483.3183891127, + -184530.67200001556, + -184319.54353745113, + -184442.3560432253, + -184343.06019309026, + -184499.12636936383, + -184309.25597490775, + -184609.18084080587, + -184650.4287460847, + -184514.18980174183, + -184624.57672919738, + -184479.1033492302, + -184519.87542979151, + -184441.9149540535, + -184632.72769793158, + -184497.03806767587, + -184384.12166117266, + -184280.1057777649, + -184496.8931498738, + -184398.13435960136, + -184297.99249258768, + -184338.27076041044, + -184415.7362226067, + -184546.95625114103, + -184457.04009611104, + -184372.91083005106, + -184347.8071741038, + -184518.7451596348, + -184406.7120236349, + -184293.26120611504, + -184266.78907644618, + -184209.51427339256, + -184398.74708779794, + -184614.44298991206, + -184632.3570707878, + -186007.6159161239, + -186163.37174399567, + -186107.7087016988, + -186053.46910530954, + -185967.29699299918, + -186292.72724037222, + -186455.910536921, + -186026.151084583, + -186855.24147507292, + -186711.62852341603, + -139341.949669956, + -139539.797746249, + -139146.21128232183, + -139565.22959641, + -139465.3572705693, + -139296.28092584724, + -139274.0018388218, + -139295.3614578835, + -139258.7541785887, + -139233.79058958867, + -139465.6696429816, + -139421.82453819446, + -139314.36540387178, + -139471.37099448388, + -139322.61723275625, + -139254.49879413686, + -139152.07069639352, + -139446.30071366948, + -139338.01794312976, + -139349.40202200913, + -139454.68894926444, + -139556.73393765689, + -139401.883376087, + -139542.7100989013, + -139525.78047562818, + -139405.61393328427, + -139426.94510950823, + -139521.39146743398, + -139421.50755701648, + -139349.08980886897, + -139525.91943066413, + -139272.999764756, + -139272.36405853787, + -139336.093312044, + -139246.6141244061, + -139523.06559060336, + -139247.63421479816, + -139207.23911923319, + -139476.1859444214, + -139329.5233097719, + -139294.17738416753, + -139215.67203308453, + -139343.36984284074, + -139356.00664369308, + -139261.90354299522, + -139184.40763990118, + -139349.4517755712, + -139476.30021379262, + -139542.46177825486, + -139219.37353035068, + -139431.9287754304, + -139403.71827377586, + -139622.15994571723, + -139284.25180573002, + -139218.83581593077, + -139644.58808539595, + -139222.4936281499, + -139420.3443880718, + -139486.84931904363, + -139275.2295283498, + -139592.2183367796, + -139230.0369023893, + -139470.57660551192, + -139300.0220610434, + -139449.34942189485, + -139256.2653134632, + -139514.16899338784, + -139255.36501145226, + -139347.38841428462, + -139398.2862961737, + -139186.35936738102, + -139422.8248009617, + -139371.6788113676, + -139225.554311968, + -139267.33349575038, + -139318.1970961605, + -139569.97881076875, + -139270.18681502272, + -139325.29900676035, + -139340.60702624888, + -139291.87542162067, + -139624.6153460218, + -139676.67233930697, + -139375.54836322943, + -139384.8347452151, + -139550.11749199033, + -139375.36967259427, + -139348.05547720563, + -139257.18421795493, + -139254.19065915552, + -139280.63467425137, + -139453.21013689402, + -139222.95188000842, + -139338.8615734688, + -139127.0662061807, + -139201.34117110627, + -139332.2127012205, + -139324.84427304813, + -139250.52794257455, + -139481.79335763532, + -139315.25978792255, + -139302.56149450256, + -139375.76431838053, + -139305.36694469122, + -139629.7013795666, + -139245.1631113287, + -139150.7296967715, + -139602.53344158875, + -139430.88631425935, + -139249.79431222109, + -139268.95938093786, + -139399.45535473176, + -139521.13313974865, + -139562.00160215882, + -139296.22896657095, + -139181.26970845836, + -139531.90105065668, + -139624.8964741382, + -139440.99814282567, + -139172.61805303066, + -139252.62835533492, + -139239.7146275747, + -139406.58475620614, + -139305.65388160577, + -139245.6143086338, + -139362.49801767562, + -139368.9630914053, + -139496.4003878001, + -139210.4343189794, + -139251.7462727586, + -137645.21150798537, + -139347.1583152886, + -139185.43947442787, + -139141.95977890037, + -139374.80029288903, + -139298.21212116178, + -139245.84191401702, + -139386.5195070693, + -139458.52947640378, + -139319.53739196222, + -139500.62502624292, + -139269.75368532154, + -139353.4017776092, + -139497.7060077906, + -139392.14969518423, + -139465.92291392805, + -139446.17035811715, + -139288.9652240138, + -139258.63230897923, + -139222.34616055127, + -139579.0114335206, + -139504.72005689488, + -139301.92562235743, + -139323.9460419651, + -139301.641083254, + -139487.4178243815, + -139368.99379823424, + -139341.07849414786, + -139230.70690965184, + -139322.4115244643, + -139499.0742565992, + -139299.58894052787, + -139361.88864313313, + -139552.7148175742, + -139319.57765505658, + -139452.5128782478, + -139262.00402649786, + -139325.02744581705, + -139337.2275268746, + -139407.11302883684, + -139273.62445480048, + -139199.82122981313, + -139293.78939414152, + -139312.25160916877, + -139309.58979877408, + -139287.7030189087, + -139455.60678241128, + -139238.1184562021, + -139561.07093915364, + -139356.6211330608, + -139481.56579861138, + -139205.18843565695, + -139293.35993355856, + -139500.82792815822, + -139381.53581003318, + -139272.1101007574, + -139204.18767959758, + -139466.64476026874, + -139244.23799759592, + -139412.313857633, + -139490.90714418553, + -139564.66187716788, + -139419.0209359383, + -139195.77514016427, + -139620.6116018754, + -139403.47462324586, + -139390.86121724633, + -139278.73799679236, + -139355.46728532106, + -139325.20445922078, + -139268.90384384684, + -139368.21065153804, + -139243.84566835393, + -139439.8644722435, + -139311.07528284538, + -139452.66971040476, + -139410.2270479437, + -139233.21359476962, + -139386.56646685992, + -139330.93814001975, + -139292.83803425037, + -139565.19409284645, + -139280.11347929307, + -139371.4788165129, + -139255.5205051406, + -139380.35416142584, + -139440.57369675537, + -139256.15369253952, + -139350.5393342178, + -138292.50237790353, + -139393.05546993954, + -139343.99282516513, + -139492.56377327073, + -139328.0534871222, + -139590.06090134796, + -139268.65204027394, + -162116.20043753972, + -162125.48737219273, + -186210.2538179402, + -186189.87064224097, + -185633.56148535747, + -186484.6927396635, + -185717.30202552347, + -185565.68090042786, + -185436.73528009508, + -185387.24181644092, + -186693.21580687084, + -186817.60492868512, + -186771.81868420233, + -186646.66034112757, + -187059.63779786762, + -186549.29909114336, + -186609.05910111836, + -188163.4372575625, + -188178.96030772812, + -188757.56169839122, + -188351.81043164252, + -188249.63103895306, + -188730.12048244115, + -188276.72026730192, + -188189.30416656632, + -188192.0034322741, + -188290.9601897545, + -188719.19122749128, + -184743.18095205686, + -186510.77814177045, + -186573.3663340251, + -186606.6604376666, + -186376.56840758125, + -186481.02628071915, + -186270.72457911135, + -186368.82373217016, + -186959.9607940277, + -186229.18141067243, + -186563.95497765776, + -186483.8946055219, + -186511.39743435007, + -186382.5747826665, + -187046.01116874782, + -185485.81598355123, + -185498.34392864152, + -185701.20064437657, + -185624.12085151995, + -185825.18129384934, + -185792.9261615262, + -185777.55867690372, + -185599.70858937444, + -185694.282919335, + -185472.77572732724, + -185549.58620082302, + -185819.18617559347, + -185751.22791972532, + -185694.7882635787, + -185592.74158341286, + -185714.6501823629, + -185796.95803472877, + -185665.73353903665, + -185590.6028889697, + -185680.08075913816, + -185578.91825066306, + -185742.93606300268, + -185770.52060652812, + -185623.07925557217, + -185822.61530116087, + -185511.56454960397, + -185722.02131296776, + -185684.72951200834, + -185546.35826834274, + -185650.08701435704, + -185542.62007957482, + -185750.34116926818, + -185562.20409519147, + -185578.7055139462, + -185625.67626786084, + -185642.09079542043, + -185662.28784714767, + -185541.54208441218, + -185668.33577293195, + -185750.3502888854, + -185861.49673175454, + -185708.1687654314, + -185618.98439702013, + -185518.24947672113, + -185835.7597285131, + -185773.82512637385, + -185512.78839085187, + -185652.0261395966, + -185746.51091015068, + -185873.04603168063, + -185361.677162874, + -185411.21735269792, + -185521.48335125647, + -186857.89701196033, + -185379.7874590432, + -185314.1328971909, + -185396.9854106273, + -185739.1249763607, + -185362.75844820152, + -185281.317667854, + -185272.70789378206, + -185291.36523286297, + -185174.38186064654, + -184746.1499818466, + -184689.754206081, + -184843.0177536058, + -184853.5029479663, + -184718.15641227114, + -184800.69552071634, + -184707.82276925643, + -184774.76972403165, + -184826.2852678662, + -184771.05300911746, + -184684.19434018733, + -185078.36462542813, + -186687.5390903128, + -186171.58567249685, + -187787.56778004483, + -187824.5134312553, + -187833.02563482567, + -187581.7153446357, + -187652.55658732413, + -187580.99353856346, + -187754.07494608234, + -189535.01243196902, + -189425.32230335136, + -189312.48116427055, + -189513.44740838156, + -189517.99575540732, + -189944.012554813, + -189496.79918659473, + -189469.04376733972, + -189362.47419392664, + -189382.47630280166, + -189485.70992618654, + -189559.7791311184, + -189500.13200693708, + -189363.56864523052, + -189453.44844629106, + -189572.48058974993, + -189475.58635906797, + -189526.51874136768, + -189367.89125734873, + -189541.99521682394, + -189567.65578797, + -189471.45745863195, + -189366.884398309, + -189599.46915367024, + -189455.07428863845, + -189511.27264576766, + -189580.51999570787, + -189452.41670386208, + -189357.50921074985, + -189441.34490278744, + -189338.2129481716, + -189539.74164709073, + -189596.23961239535, + -189439.38497924476, + -189423.64743936853, + -189409.86495387822, + -189539.70128887953, + -189667.71460354235, + -189593.34528908966, + -189550.91913873702, + -189351.29030582856, + -189944.03349898005, + -189421.9621471471, + -189523.16925353085, + -189362.616609502, + -189550.7519103663, + -189303.51340100932, + -189504.79772117123, + -189478.73813235975, + -189513.39599368742, + -189335.5119015967, + -189566.15070619906, + -189492.97056199546, + -189370.19960247193, + -185013.49245940326, + -184958.53058641133, + -184935.10362539484, + -185074.06093464053, + -184859.90571038926, + -185383.19785552978, + -185727.50454600956, + -185535.53248590635, + -186134.11497462608, + -185680.67525457422, + -185536.38613328367, + -185655.1626902235, + -185488.5778872063, + -186105.887330311, + -185976.58162628958, + -186073.11253527744, + -186128.44688249985, + -186033.4105802999, + -186002.9429366717, + -186045.44966286444, + -186081.69116184756, + -185660.47909749488, + -185707.75565992156, + -185700.99602275767, + -185718.84276913418, + -185902.6810428331, + -185956.2569658538, + -185833.31614885287, + -185851.9149913291, + -185927.02764805633, + -185956.9814913556, + -185864.94860133113, + -185974.76542021832, + -185843.3464556168, + -185802.44778285624, + -185754.544341611, + -186863.0905598625, + -186747.14508188295, + -186786.29748301074, + -186598.35931928424, + -185525.00035815442, + -185444.044824558, + -186566.67634397448, + -185354.45827997458, + -184622.6678207158, + -184757.69014603368, + -185572.97533470273, + -185426.46129555986, + -186389.46830649345, + -186349.721133472, + -186355.21655197296, + -186513.88131954975, + -186461.71104419266, + -186495.60474119912, + -186499.94535950987, + -186065.51198935235, + -186213.8074190881, + -186160.78639569957, + -186112.10093216717, + -187073.89756594264, + -186996.16233734277, + -186997.73649561932, + -186937.89091646543, + -186864.95551788062, + -186985.11266736986, + -187030.91302532048, + -186947.00283212372, + -186997.2675516971, + -186875.9473745203, + -186901.92526942323, + -186900.29593926048, + -187024.62336807686, + -187037.0011573454, + -186832.6725820172, + -186813.1846090411, + -186614.42390696477, + -186560.72865754293, + -186461.4445482228, + -186550.8345017166, + -186570.36775560552, + -186423.99947252453, + -186628.01342634475, + -186475.36638154497, + -186064.49513448935, + -186061.0704683533, + -186156.7436722801, + -186019.09209682065, + -186017.97165171077, + -184373.86341036516, + -187019.55647718406, + -186971.5333996734, + -187500.48780981993, + -186878.72794609106, + -187396.02141762438, + -188618.1767619867, + -186571.8229187881, + -186630.38236103597, + -187104.66672028726, + -187258.6264260895, + -187483.32473075076, + -188300.89497706314, + -188042.5665423474, + -188364.38063477044, + -187286.4447786102, + -187200.34425699944, + -187965.5292712589, + -188225.16941637502, + -188062.36969725473, + -188181.734542407, + -188155.6659757379, + -188111.17360157988, + -188128.15679037262, + -187472.995221879, + -187574.469287988, + -188062.32220423166, + -187894.01688021977, + -188099.19669860823, + -188601.02966071616, + -187946.30083110215, + -187939.07366045075, + -187903.16231886458, + -188040.85490399896, + -187860.1481306559, + -188160.71996131094, + -187432.15774098889, + -187525.83126370964, + -188031.27587781637, + -188070.40997344436, + -188048.3992797907, + -187895.89321173978, + -187936.34066587713, + -188155.82804223945, + -188130.31137840738, + -188120.22345911132, + -188032.87803354842, + -188172.4473275845, + -187808.99921337265, + -187967.87420157884, + -187734.2241532564, + -187631.17759388033, + -187665.10987331756, + -187571.98956801443, + -187705.53688735073, + -187482.80309790745, + -187551.0033509855, + -188658.0072073565, + -189077.79649620972, + -187731.77787177297, + -187759.8314365375, + -187692.0166453802, + -187044.02292752767, + -187058.71596401595, + -187088.50568167077, + -187073.6774906163, + -187239.5588897707, + -187170.77976082207, + -186801.35615984973, + -187206.43231087644, + -187147.2617761165, + -187156.6127847207, + -187288.92506628836, + -187242.12665091688, + -187173.12966849466, + -187092.16430615127, + -187263.40330149935, + -187369.76914685333, + -187198.53043071972, + -187165.6819904993, + -187252.84288585366, + -187210.98676202566, + -187153.50395988487, + -187277.2067933512, + -187342.80854711783, + -187068.89280375512, + -187238.5009002487, + -187216.975043701, + -187109.7384653588, + -187259.9476909209, + -187308.82684037564, + -187159.23609979774, + -187363.1881956749, + -187159.41832586098, + -187410.99982117375, + -187606.8809797769, + -187444.6011580884, + -187390.00271703285, + -188118.10121137855, + -188058.55113991152, + -188152.38460645571, + -187998.2545058029, + -187975.58317137446, + -188204.5488536757, + -188186.43905492313, + -187962.60318830537, + -188107.7357415216, + -188164.08029550806, + -188015.52564658516, + -188145.6956721136, + -188116.4163078441, + -188629.10826848733, + -188615.4770908332, + -187617.20728946448, + -187778.39851127946, + -188244.79326966844, + -188213.14960795594, + -188231.4342562094, + -188113.22548338465, + -188023.6918304611, + -188262.28974807056, + -188215.08406320887, + -188272.12758768487, + -188247.52374121372, + -188234.36159403733, + -188185.72950550105, + -188235.01025868888, + -188188.26732140826, + -187106.90783512246, + -187129.68155894056, + -187291.27141208755, + -187309.56083654592, + -188031.80187769613, + -187966.1524006884, + -187974.4559084142, + -187907.4340805515, + -187767.69283004745, + -187180.89797155827, + -187226.84036497626, + -187060.70491358606, + -187284.9913843901, + -187186.54130078974, + -187275.69818428368, + -187867.79057975026, + -187990.37417889741, + -187368.6219077213, + -186143.80639793802, + -187491.1668464797, + -186533.40398627482, + -187180.10508663693, + -188912.60302975413, + -185478.86967573757, + -186026.48205634058, + -186004.81625674714, + -185520.730759067, + -185998.5887411339, + -187137.15198455175, + -186802.3568031418, + -186868.89558539094, + -187655.25025753496, + -188776.08503380354, + -188714.40557555703, + -188312.61881360278, + -188175.30943800946, + -188163.88067313796, + -188226.39056838182, + -188209.27391620574, + -188335.63051938498, + -189088.68284567073, + -189075.73849338002, + -188951.38770398786, + -188963.77157590713, + -189065.25002395606, + -188951.75753479835, + -188905.5182702426, + -188940.43452731014, + -189039.75779005556, + -189206.12228753112, + -188851.90860081342, + -189009.33129113074, + -189075.7496586295, + -188914.1058596282, + -189044.50009148906, + -188978.63723458152, + -188869.1337570157, + -189039.16739681517, + -189001.4557504514, + -188915.3021854897, + -188715.59088057993, + -188811.45728948622, + -189093.52694899408, + -188064.28392279483, + -187758.21727978287, + -186958.81639775305, + -186907.28656468532, + -186927.36304929492, + -186672.81797529917, + -187707.60820000168, + -187504.85470640293, + -188023.84131581298, + -187790.5245520355, + -188012.06379015357, + -187675.9578640814, + -187970.69994692729, + -188070.52866315134, + -188065.10539432376, + -187968.263731226, + -187700.7506709641, + -187765.9490496175, + -188079.28387346116, + -187859.43582945326, + -187881.72894882134, + -187846.40461867992, + -187850.35451233227, + -188149.60791583278, + -188022.7222170089, + -188255.90003583845, + -188221.7088630824, + -188193.52566727533, + -188355.29507459403, + -188312.87042909442, + -188128.3711568641, + -188355.54500076355, + -188736.05243360804, + -188740.43423724885, + -188813.8225883926, + -189133.8473924533, + -188770.00276586786, + -187738.94090615874, + -187912.43204192858, + -188179.3106533003, + -188134.73671238107, + -188143.66245138436, + -188187.54601173053, + -187975.5749715801, + -187947.11070160166, + -188181.5560967198, + -187883.27494840516, + -188169.70603632976, + -187970.877541831, + -188133.03987872423, + -188110.62617021287, + -188151.5012872308, + -188211.38351583906, + -187925.41207692228, + -187993.2042355374, + -188267.4433579352, + -188341.5637869163, + -188290.85103842587, + -188325.80348101287, + -189041.39569706662, + -188572.92778198744, + -188651.52337605663, + -188170.50337793116, + -187892.03383253983, + -187909.65223383403, + -188044.8103796621, + -188041.9401363172, + -188262.9817529038, + -188256.1065241927, + -188209.65683125617, + -188114.23360095327, + -188697.0393909679, + -188681.5607578964, + -188730.09509530946, + -190034.47824283707, + -189435.73444291795, + -190501.98770180898, + -190447.71814332827, + -188084.4049082775, + -188259.3724547593, + -188206.0236343385, + -188263.0862416689, + -187803.69675157015, + -188242.03582545792, + -188340.80377890947, + -188113.01612090584, + -188417.0385262703, + -188371.1353376313, + -188321.03177579722, + -188339.34322755944, + -188251.23458842657, + -188337.78581776284, + -188397.17051714816, + -188454.9590132297, + -188208.58303294552, + -188169.8318157927, + -188266.84959804747, + -187741.94817842022, + -187915.18145302637, + -187730.29858536096, + -187855.06171209805, + -188047.300018304, + -187808.78158663612, + -188004.16215920547, + -188000.00859777548, + -188755.66928509064, + -188641.96581119657, + -188742.29461186353, + -188705.16194427633, + -189490.00008750655, + -189693.02311333298, + -190001.3370355461, + -190157.89391110622, + -190149.2470879302, + -189853.4918559908, + -188341.7325242664, + -188482.59835269416, + -188516.73245045255, + -188462.29234457048, + -188223.6915529377, + -189325.9475189374, + -189443.62330827498, + -189362.4367816456, + -189658.36156726885, + -188794.21431317774, + -188577.9696506949, + -188698.27076012257, + -188769.9281353376, + -188620.52703365445, + -188670.32476137517, + -188707.42534730173, + -188712.10885138786, + -188702.73035210292, + -188711.29676749153, + -188103.12207565852, + -189495.15496592113, + -188845.87523352558, + -189032.4074763674, + -189112.60837969606, + -189224.72431987463, + -189055.63729894848, + -189078.20075112823, + -188970.86331049414, + -188090.16004640074, + -188001.36342649613, + -188049.5792653426, + -188098.1789861639, + -188168.62826092765, + -188029.9456644019, + -188084.14766681893, + -187984.70011229935, + -188125.29346391422, + -187981.62287282626, + -188040.22076810958, + -187946.41481497037, + -188064.20365215855, + -188024.33796311452, + -188016.9967920004, + -188156.43008065908, + -187984.27632270768, + -188060.64962766727, + -188017.1144187662, + -188113.48002990385, + -187571.6016396001, + -187064.19611193764, + -188444.14506902872, + -188879.3624434629, + -188491.01308587843, + -188422.62348726718, + -188362.80673320158, + -188367.2149491498, + -188059.13848447741, + -188141.38815636735, + -188116.1496857662, + -188396.4771118219, + -188173.86388179136, + -188086.05933701512, + -188212.2979830604, + -188225.63058791048, + -188192.74355890218, + -188174.69316455667, + -188123.86206640746, + -187930.403868511, + -188034.7860958726, + -188020.54736677188, + -188377.8601678689, + -188278.16470975717, + -187965.47459509477, + -188379.13752876033, + -188291.99341747075, + -188172.93746177154, + -187617.11614566448, + -187526.08903537705, + -187674.11098333378, + -187674.84914594653, + -187730.26368818164, + -187736.67929052594, + -187773.52054137996, + -187501.71133436213, + -187634.29116306888, + -187558.68805862614, + -187669.9562295721, + -187771.99177388693, + -186119.52079627474, + -186288.95960552836, + -185999.16203666863, + -188055.39603818467, + -187504.9066256753, + -186969.2603064072, + -187082.62729634583, + -187036.27923026812, + -188255.60873041113, + -187976.477714238, + -187993.00429935096, + -188015.18762576373, + -188502.16698048013, + -188537.83259610005, + -188176.72236609916, + -188150.16400430968, + -188490.24496475342, + -188463.08599731518, + -187842.37642177322, + -189950.42776230097, + -190060.46897811978, + -189981.01291727906, + -189948.99978218455, + -189877.31094941634, + -190014.67649279692, + -190053.96902679597, + -189989.4594749927, + -190083.1171838038, + -190096.78467347255, + -190096.07678832914, + -189877.19470812628, + -190082.79529512883, + -189883.13957683812, + -190115.00855424744, + -189980.07865196207, + -190074.83957112802, + -190002.89388120713, + -190028.31976652934, + -190003.88761541533, + -189907.48300156422, + -189952.45096025168, + -189952.9122595734, + -189970.4446921895, + -190136.23241432256, + -189913.2901080308, + -189912.5972757215, + -190001.55681149926, + -190018.83290028255, + -190055.39543139332, + -190102.7516358813, + -189863.3993587257, + -190115.46594863496, + -190023.95702336595, + -190012.38051216485, + -189955.59784194958, + -190016.798744122, + -190038.4192383941, + -190021.38597195703, + -190027.5122056294, + -189925.09260238602, + -190005.9285941052, + -186723.40654902256, + -188894.53982702826, + -189183.9255548992, + -189128.86816413907, + -188774.29128529222, + -188377.4874670383, + -188384.8221014744, + -187892.99204450037, + -187939.69243235173, + -188060.7588005113, + -188141.4683259749, + -187985.66986119872, + -188016.84167383236, + -188137.77621320283, + -188059.75644058318, + -187963.3746181554, + -187912.61343497797, + -188088.04522687456, + -188075.4069209078, + -187967.12879439283, + -188090.49990946325, + -188001.86127453632, + -188048.6921698139, + -187956.53599492338, + -187898.34942572337, + -188006.12427452058, + -187862.9006513407, + -187947.29186367439, + -187806.00028568978, + -187983.9730009755, + -187934.93717959968, + -187909.29798849218, + -186621.876169047, + -186692.4367868679, + -186741.5982248406, + -186723.82204225528, + -186331.92093130833, + -186279.27655188824, + -186388.903534561, + -188283.31659324036, + -188239.9298258223, + -188237.88964578896, + -188331.29169328697, + -187886.85685091044, + -187819.40370573246, + -187820.46863147497, + -187870.61997418042, + -187807.5058878382, + -187709.49216077014, + -187741.85674802802, + -188209.98314272103, + -188113.20511465575, + -188169.53042942294, + -187971.1856885119, + -187943.5654100888, + -188015.82954131006, + -187985.37244124175, + -188948.66413662076, + -190096.89096654434, + -189974.37047163243, + -189985.50358982256, + -190018.75625555322, + -189881.52640402465, + -189982.52573305275, + -190303.37435690386, + -190129.35138968015, + -190197.68125067052, + -190162.71323384313, + -190060.9219493719, + -190109.05857624288, + -189342.43960965818, + -190542.72404693422, + -190528.42189584312, + -190387.50133943587, + -190448.01691882563, + -190574.95327101208, + -190449.33451776393, + -190511.44661767114, + -190529.03440203832, + -190537.75501553333, + -189951.22738006982, + -189973.1446726601, + -190025.6059146946, + -188716.242548552, + -189704.3634728571, + -189777.36801090316, + -189592.89736085432, + -188356.17431058898, + -188274.34719061715, + -188129.64780031645, + -188133.9859146477, + -188187.3712458545, + -187998.556032186, + -188653.13430381866, + -188590.65193490608, + -188642.5915163027, + -188608.96821789932, + -188491.18481576003, + -188453.79791390765, + -187621.10380116603, + -187575.41147213435, + -187588.09756598267, + -187647.5494085932, + -187611.58499095225, + -187862.42691907028, + -187942.80643346356, + -187906.52592987043, + -188604.68535202384, + -189306.6357714241, + -189427.61078841175, + -189277.59357979376, + -189487.23133315498, + -189451.93310388672, + -189248.95882783754, + -189230.47303573164, + -189293.00424421756, + -189366.6038676548, + -189332.9999406152, + -189276.45932175536, + -189403.28546952922, + -189217.14323216394, + -189198.15043086934, + -189325.62242567082, + -189384.22659187752, + -189317.61864053438, + -188066.67095698978, + -189098.95554895798, + -188975.88092212117, + -189003.23537626144, + -186773.96651147603, + -186680.0988857744, + -186763.42703853172, + -188808.86236120248, + -188878.37097806166, + -189092.3160336398, + -189091.72331575488, + -189115.96574922363, + -189174.7824324944, + -189157.24885475944, + -188896.42384657034, + -188965.84803500844, + -188977.29955893577, + -188347.30539835, + -188507.92896134197, + -188383.06499636912, + -188337.7090878203, + -188463.68731936606, + -188464.30136542933, + -188438.85061418812, + -188519.72994095754, + -188078.68826342997, + -188147.73696519702, + -188179.73130929295, + -188126.95002996654, + -188067.732082051, + -186989.19017429496, + -186022.8484731827, + -186582.35956467458, + -186644.40821102815, + -186276.30897092307, + -186380.05426090743, + -186366.66193073316, + -186249.20162775152, + -186530.9497347801, + -186838.07892423088, + -186782.58239993363, + -186703.07900031318, + -188115.43138405305, + -186304.48945547143, + -185894.3650318397, + -187307.28028177153, + -187076.1453172014, + -186960.017269483, + -187191.82408836586, + -187097.05438409094, + -187032.18336904267, + -187633.5780712459, + -186980.52193011073, + -186835.21868742444, + -186834.48131419005, + -186896.63197455366, + -186898.4857403215, + -186783.15141955295, + -187003.82345200694, + -186930.054845507, + -186868.36430568714, + -183454.4556818976, + -183948.96667538802, + -184137.3540563784, + -184055.31954335116, + -183942.6631635848, + -183991.55361005352, + -184151.48218769403, + -184043.4298278558, + -184098.23387283756, + -184011.24318851618, + -184221.4732984055, + -184107.8627639706, + -184141.2115983499, + -183965.70838288227, + -184080.74407013148, + -184054.17977045127, + -184095.92236913048, + -183427.52450741653, + -183468.11246198523, + -184220.86336669532, + -183448.23675261464, + -183478.30434363155, + -184155.19932672151, + -184060.82188045702, + -183991.8487036277, + -183408.7996719894, + -184153.1514375469, + -184022.7059931264, + -184061.19109231277, + -183653.6949449289, + -183453.94049617794, + -186017.78871449898, + -188244.00313072064, + -187642.58450439633, + -187676.73784619576, + -187746.50016018358, + -187763.7880342417, + -187815.17680412173, + -187877.05060775447, + -187920.4490734947, + -186347.05945545353, + -187220.9163611917, + -187132.94513084943, + -188062.16660663078, + -188144.67010069184, + -187401.67452925173, + -187525.18521744406, + -186669.07004417825, + -185614.40716294627, + -185192.79185703603, + -185593.93006590506, + -185273.47420901168, + -185211.40111909146, + -185190.66664916382, + -185277.53611586575, + -187274.1302045654, + -187343.49249793775, + -187394.75452353517, + -187300.93102998807, + -187259.70142610237, + -187299.8777924226, + -187244.80180643054, + -187332.91403683388, + -186658.96281459343, + -186713.4375646213, + -188457.13629440215, + -188477.92284249174, + -188531.03886595092, + -188486.4372749181, + -188377.38130930747, + -183282.65685712005, + -183361.18161794438, + -183464.893368499, + -183433.51219686866, + -183454.83768123688, + -183269.02525615806, + -183232.39642749276, + -183309.3093745461, + -182087.23736153383, + -182094.36855869577, + -184069.6521547393, + -184147.62949476115, + -186140.23856401135, + -186153.994068847, + -188437.17592704867, + -185830.8351587531, + -186746.85165138246, + -186884.75829816138, + -185821.64538848578, + -185774.3961361211, + -185320.20394035542, + -185425.12264167838, + -187587.3618641956, + -188355.0198765514, + -188303.63550310052, + -188084.8572338393, + -187395.58003873198, + -187322.44828818025, + -187189.01895715407, + -186418.97489203545, + -184966.2533605747, + -184939.83808412577, + -184993.21116610424, + -184884.01447443964, + -185033.33272861876, + -184992.49271023268, + -185018.8411711607, + -184014.45332893237, + -184934.65343953003, + -184979.51429673051, + -189116.30601221605, + -189212.36051423496, + -189174.68517565948, + -189131.0165825411, + -189167.72369075686, + -189167.94071155033, + -188427.09207581004, + -188324.23665222884, + -188418.21913144834, + -188441.4650250465, + -188445.5181910649, + -188467.52659245866, + -188309.0577119622, + -188432.27960119525, + -188509.53908534927, + -188525.32217186975, + -188384.74779075198, + -188435.01343296896, + -188370.95224479612, + -188400.71709087957, + -188465.6069223673, + -188308.00977643783, + -188406.39216122098, + -188320.2791584246, + -188088.18070606928, + -188328.50499043753, + -188334.61613365755, + -188337.0013544444, + -188418.8611254507, + -188272.04429126595, + -188319.53228907965, + -188852.30706541648, + -188766.82769508022, + -188762.09396253395, + -188673.21619043712, + -169378.16013668, + -169344.14125408427, + -169393.17968203666, + -169416.96099860338, + -169551.3818453157, + -169348.52705148203, + -169359.83740548883, + -169545.8449313544, + -169324.49667951552, + -169436.0497249682, + -169490.59569541228, + -169603.0032231782, + -169405.62489197458, + -169343.7298139408, + -169589.86991772245, + -169356.23498042687, + -169545.28212240088, + -169280.9450788244, + -169372.553645448, + -169549.46033044296, + -169468.52331958243, + -169320.2863155955, + -169441.31671768497, + -169381.24488365222, + -173635.00926671873, + -169571.96017328865, + -169386.7535787633, + -169419.55932408103, + -169652.86980383957, + -169606.2546200287, + -169566.43337423858, + -169642.84989518244, + -169277.37511423865, + -169446.0290591557, + -169479.8007415065, + -169640.66377360295, + -169398.552777607, + -169492.6505170808, + -169303.42487485384, + -169438.62470300702, + -169670.358202471, + -169518.63445990958, + -169458.16723794234, + -169435.0519460718, + -169391.18343571847, + -169379.72481367842, + -169331.45299684268, + -169407.90694092953, + -169482.87945843037, + -169285.9559721673, + -169264.42577758324, + -169392.70401915823, + -169615.727825337, + -169495.95591972838, + -169588.04616772282, + -169433.95314637333, + -169345.47056011425, + -169496.50719911815, + -169460.09445462836, + -173634.2922040698, + -169300.87184353019, + -169354.53427482693, + -173629.4910453442, + -169330.76943894773, + -169519.96951494063, + -169501.82029113118, + -169610.62571105798, + -169324.25162713093, + -169326.57314930166, + -169431.85987472688, + -169483.31429722917, + -169538.3541819729, + -169499.22972979312, + -169404.3866338821, + -169511.19498936835, + -169649.91351843745, + -169287.2120591798, + -169311.3089851137, + -169438.71859283923, + -169355.24062342444, + -169553.1803424696, + -168624.87506894136, + -169372.41900998444, + -169449.22305063045, + -169292.06106073438, + -169144.59176013063, + -169444.63655704536, + -169375.8571831571, + -169381.80418022617, + -169399.62068739222, + -169492.64094444556, + -169304.5215244161, + -169261.65588238483, + -169329.1993639435, + -169695.5695061532, + -168758.49492464514, + -169398.69256838647, + -169358.1076510309, + -169420.13524775338, + -169574.74287326206, + -169416.57296196205, + -169515.2950036648, + -169310.57562489106, + -169537.50719481107, + -169316.58449546693, + -169448.7580978541, + -169284.00204185088, + -169465.03979915124, + -169333.68269487692, + -169296.56143188913, + -169442.20170846063, + -169536.4914924849, + -169474.90139630102, + -169626.45864951386, + -169367.87410591237, + -169476.10791408707, + -169513.68386334792, + -169578.66391360908, + -169346.72799167415, + -169299.96427660287, + -169453.17177729314, + -169376.77103179775, + -169406.5342543557, + -169474.3421468556, + -178055.41538814097, + -178014.1671556615, + -177981.96991200637, + -177970.49030488016, + -178036.43547562294, + -177949.15006345935, + -182247.59705571106, + -178163.6646337293, + -178131.0253649996, + -178108.70633296893, + -178202.65946718425, + -178085.69550089262, + -188482.95193410772, + -188419.5246448583, + -186709.57387613264, + -186834.0978550618, + -188114.69040843635, + -188021.61315320883, + -188144.41832691527, + -184941.34178302911, + -185444.45812838196, + -185677.50351590122, + -185765.7596655601, + -184489.2856165779, + -184454.01464139723, + -184498.4737922646, + -184573.2021564755, + -184621.93570408592, + -184465.9277614155, + -184029.80810323294, + -184605.50077799056, + -184576.40010769488, + -184627.64145343105, + -184506.37513977927, + -184609.0831377138, + -184677.96396018367, + -184664.23676982484, + -184556.3775650089, + -184550.4233071596, + -184536.88599997063, + -184512.64018821175, + -184543.452959208, + -185776.6914500685, + -185822.29164402644, + -185696.655354225, + -185760.94872793366, + -185846.41148709282, + -185909.15469419034, + -185637.4693084021, + -185652.67346685063, + -185535.5286475488, + -185602.36617438102, + -185573.4220194495, + -185521.9131599804, + -185472.62564099822, + -185760.40751850946, + -185138.2952496597, + -184720.63687979916, + -185165.7311987436, + -185893.34313629338, + -185936.0348898676, + -185250.60864012758, + -185649.41923234705, + -185429.39968634545, + -185474.01141745676, + -185687.14488378543, + -185285.8440935564, + -185453.97411013974, + -185473.5944232423, + -185345.18748309344, + -185420.4043875232, + -185496.81537077486, + -185067.60944469785, + -185436.550641823, + -187619.79836570565, + -188121.44388568716, + -188058.76541098158, + -188420.2067400686, + -186640.57850765003, + -183787.8778325471, + -183620.92374765448, + -183585.59515960552, + -183702.47064300528, + -182420.8485208509, + -183654.7560552544, + -183693.60669998443, + -183744.1802364832, + -183628.01772203547, + -183575.58455289324, + -183564.13613035955, + -183676.65146323718, + -183629.47499298933, + -183721.38596098, + -183666.4888270363, + -183638.88510177907, + -183774.8403863521, + -183728.9159629604, + -187943.03068637176, + -187976.53087558964, + -187948.27627186524, + -187693.25148113363, + -185511.4642967856, + -185617.06228111294, + -184099.48942748536, + -185271.49815979396, + -185091.71032325653, + -185177.44259645653, + -185280.3717521528, + -185267.68557543933, + -184652.76724765133, + -184548.04804199652, + -184618.82194938904, + -184588.43758881366, + -184540.4465197977, + -184529.68677437576, + -184527.59148972368, + -184603.30224533824, + -184695.73622553676, + -183856.76291758567, + -183923.04167683766, + -183920.46827459653, + -183942.46072287185, + -183966.14944940363, + -184022.37986115966, + -183858.53808757465, + -183856.8165942456, + -183783.75192537752, + -184021.05886616785, + -183734.7000156707, + -183874.32018150846, + -183834.41121000051, + -184004.2014556012, + -183959.7185885655, + -183918.43052226157, + -183886.46074349398, + -183970.12618582664, + -184047.8385877452, + -186182.73800954662, + -186249.61481778725, + -186297.75486173076, + -186324.0305926026, + -186236.53912128153, + -186182.5712881453, + -185953.14899281866, + -185141.05742456802, + -185439.13268669933, + -185177.60111052875, + -185182.7983091269, + -184974.97222906543, + -184279.90057619184, + -186236.2314711706, + -185215.91952611177, + -188370.1764330157, + -180909.745155569, + -180709.71261549313, + -180902.77547837683, + -179952.33000867523, + -180842.29239043556, + -179943.77813433905, + -180787.81029715057, + -179964.11953050675, + -180735.5598518938, + -180724.51318886082, + -180764.8170700024, + -180785.9780778761, + -180804.75158568795, + -180845.41459382957, + -180819.41967854003, + -179924.4116050648, + -180765.59250306184, + -180738.89765472096, + -180692.9880617934, + -180666.9615653273, + -180723.1250971798, + -180874.4925506424, + -179940.5474174767, + -180670.7264006914, + -180770.5721985639, + -180897.94932214296, + -180816.50719117105, + -180840.88607907726, + -180682.41488442908, + -180792.44149952132, + -180803.10102321903, + -180659.778327287, + -180717.96359535548, + -183788.99096273613, + -183779.16247176562, + -184347.65849261818, + -183714.67737531645, + -186604.72926858248, + -186567.5091645483, + -187463.35892346295, + -187475.19460358928, + -184991.80627054124, + -183461.60321590066, + -183706.9123006825, + -183382.93836771394, + -182388.11368171035, + -182529.26628902787, + -182549.07931419823, + -182425.7209298557, + -182606.63936888328, + -182486.48502463632, + -182582.6931146041, + -182423.89628454405, + -182443.7956614858, + -182486.5877240622, + -182475.17256004427, + -182825.80593338294, + -180900.60175741656, + -180824.8780152111, + -179926.86668937167, + -180827.0478808366, + -179917.67228537184, + -179903.54516782166, + -179893.4393245515, + -180889.41939093173, + -178623.59690207575, + -178554.08466333893, + -178436.7908829831, + -178558.0937103395, + -178570.64648304324, + -178488.27744802684, + -178691.44886841782, + -178564.94630361674, + -178563.48522728076, + -178717.23295975232, + -178442.469710615, + -178533.43895398427, + -178405.40053992975, + -178581.996633066, + -178750.33119243302, + -178518.2432508357, + -178638.1301594935, + -178549.44571791714, + -178432.0352583338, + -178460.23443320673, + -178462.3041424345, + -178511.13389375104, + -178294.2997167077, + -178542.3251145037, + -178428.43265563578, + -178524.70063209053, + -178652.93553051475, + -178564.5275489163, + -178711.00834272362, + -178593.38928498706, + -178607.60033410153, + -178697.5378154587, + -178496.6439016545, + -178516.70514832705, + -178173.96397881166, + -178630.87310248002, + -178507.01579040708, + -178474.2039992179, + -178492.20167515153, + -178637.20991508843, + -178464.27180037618, + -178577.39055378566, + -178405.1247219723, + -178601.60635392906, + -178720.07863024718, + -178607.70179973924, + -177980.3058143678, + -178516.96872389078, + -178455.55225062207, + -178523.4874214946, + -178559.66565811823, + -178654.88321266344, + -178652.8764789972, + -178606.5230669658, + -178462.88979660024, + -178505.99092471664, + -178659.89626082158, + -178495.2300096829, + -178697.93002062794, + -178570.20722506093, + -178609.4919362779, + -178550.05784523298, + -178679.05433494938, + -178439.9217113105, + -178541.75133386956, + -178588.50198710954, + -178609.18224746437, + -178608.5732692418, + -178641.31909922665, + -178488.30962670548, + -178657.90280830112, + -183289.93151228954, + -183242.92238719485, + -183255.82906837002, + -182978.78721471297, + -183038.58157721706, + -182993.2503192717, + -183133.59169112245, + -183172.54648983607, + -183115.6076721331, + -185011.84033188224, + -184896.9494846697, + -184966.17232256278, + -184963.36474706372, + -184720.55315674286, + -184789.59237810186, + -184250.11601459378, + -184840.94461722943, + -184982.25190169932, + -184925.3424128911, + -185021.8294439658, + -183109.4455208243, + -183147.2630049226, + -183100.15820011563, + -183070.48614592486, + -184756.1452888642, + -184826.45735488343, + -183341.5026651699, + -183257.84783702332, + -183511.68520968122, + -183328.08397366235, + -185068.01671399627, + -184871.46409474593, + -185052.07634225543, + -185438.75158188608, + -185459.31088253466, + -183001.6851454487, + -183076.80405507874, + -183009.4590377982, + -182979.24860315252, + -183374.7939359946, + -185093.7368725669, + -184998.6633073986, + -185068.85971572844, + -184943.5809181066, + -185023.88959588853, + -185082.0833365548, + -185148.40604299065, + -184977.44409740437, + -184997.31464103883, + -185089.27598983576, + -185089.0086389262, + -184902.62901699232, + -185079.38925215916, + -185230.35763149426, + -185048.74105525186, + -185187.47949728227, + -185150.70672626782, + -185132.0865388388, + -185142.57079867384, + -184910.07141996681, + -185010.9809112164, + -185055.58177579596, + -183319.82671109284, + -183343.52858918067, + -183540.0801197569, + -183455.08344399888, + -182897.35332880451, + -183031.3680288819, + -182899.68496868006, + -182951.00775120725, + -183009.0203452414, + -182969.49503841982, + -182961.8930869576, + -183565.39955803388, + -184719.2933805017, + -184852.54846837025, + -184771.7014457759, + -183238.2725594145, + -183287.3196162057, + -183298.64678428596, + -183179.063213912, + -183301.19264459712, + -183496.95058249735, + -184843.89469543626, + -185486.61372523938, + -185440.07638832257, + -184624.17550004294, + -184691.42044326675, + -184697.7108009961, + -184564.4704663814, + -184692.4146787554, + -184745.86688139816, + -184745.63052333257, + -184606.98123665425, + -184673.6351594657, + -184648.9263016337, + -184634.4057762235, + -184588.40026682435, + -184728.63779550133, + -184697.06720197387, + -184658.08630104552, + -184751.42939384596, + -184915.37938012218, + -184915.80229910425, + -184809.226434392, + -184878.41272612265, + -184781.15000342295, + -183425.42042761206, + -183491.17842973955, + -183394.46490438026, + -183482.59900076909, + -184789.43054132286, + -184840.87093100656, + -184955.71478210148, + -184853.88088084952, + -183488.3327404413, + -183654.62815247447, + -183170.48934623392, + -183544.22509648418, + -183609.01332193392, + -183346.06901967287, + -183224.1180654994, + -186119.49203913865, + -186217.65823101738, + -184431.29788077172, + -183374.18390449428, + -183323.66280121214, + -183408.2842664633, + -183404.54218882136, + -184125.37656993855, + -183193.80563843125, + -183210.86534053346, + -183068.9782319114, + -183158.49383680677, + -183278.76592303222, + -183433.48674636218, + -183536.10312163807, + -183372.0424666985, + -183231.82462614574, + -183302.02623710444, + -176998.64399938524, + -177066.8720413106, + -177022.6135091292, + -183161.23163489092, + -183049.5712780777, + -183453.48204868875, + -187890.59895818657, + -189168.76930062557, + -189017.94980528016, + -189051.82394498357, + -188584.48243914515, + -188052.25455199185, + -188165.97775520477, + -188142.36563635623, + -188219.55657425546, + -188286.52887175203, + -189084.5439991584, + -190481.18414111834, + -190194.37548906854, + -190619.62304985526, + -190625.60337733393, + -190599.24045840377, + -190226.99435288858, + -190555.5337087257, + -190577.08701564785, + -190502.54227035303, + -190701.39607546074, + -190483.56699262653, + -190558.59312642895, + -190622.50020444766, + -191956.9509027277, + -189596.39277355725, + -189081.37240888822, + -189189.54697625263, + -189022.31890019495, + -189607.57795842667, + -189794.93841442053, + -189619.61208740424, + -189757.03297088, + -193534.58363562726, + -193746.06656836157, + -193536.88821662494, + -193690.75126823565, + -193828.1864987295, + -193694.47134159697, + -193908.71990085614, + -193926.73131627264, + -192467.37989371552, + -193876.98390154605, + -193937.14325502317, + -193799.02394631426, + -193774.27258889857, + -193975.47469840795, + -193668.5700211384, + -193863.922824815, + -193777.43216763728, + -193702.5372609475, + -193807.07780800795, + -193749.23407981847, + -193848.73115611952, + -193829.82350082346, + -194072.47921578164, + -193714.61436065382, + -193831.93364492635, + -194022.37644342383, + -193929.14922551668, + -193709.41847952036, + -193580.42749235677, + -193673.19657366312, + -193675.4846188424, + -193804.38388892714, + -193761.4245739493, + -193832.16706009684, + -193963.83892343825, + -193744.99083273322, + -193651.75122489312, + -193746.6309587092, + -193858.4367764975, + -193735.9695129494, + -193791.1955832733, + -193759.89400756784, + -193767.32774094612, + -193960.03946464113, + -193825.5996938444, + -193646.09114384378, + -194029.90647483527, + -193627.99896662962, + -193600.72359083666, + -193919.70824670978, + -193766.4906457397, + -194007.48964572605, + -193810.47215112645, + -193844.94572726413, + -194037.0391692495, + -193851.06434528634, + -193874.82215845535, + -193723.95168770116, + -193897.5631725786, + -193810.2074839169, + -193608.74043988352, + -193894.64693893815, + -193688.6584630469, + -193904.11476722118, + -193682.8928145957, + -193820.47172546384, + -193889.7955965534, + -193787.85515705598, + -193728.1477085373, + -193937.34499460776, + -193805.18800143278, + -193739.99240211275, + -193928.394955046, + -193797.7489289576, + -193622.61125641817, + -193580.10680370886, + -193821.88689952737, + -193875.7883864531, + -193843.667706734, + -190942.65455718772, + -190935.69915585697, + -190754.12935394185, + -190772.50006996628, + -190718.86652711377, + -190909.16845115123, + -190962.44360370797, + -190988.82032427454, + -189666.5672120893, + -189829.0928502695, + -189626.70216868905, + -189859.27408912993, + -189749.7157783643, + -189930.46843261595, + -190546.38147049418, + -190399.4126354747, + -190728.8379457946, + -190467.53947576138, + -190665.37836808496, + -190403.65729820394, + -190572.92069195924, + -190391.5963820497, + -190588.72561153484, + -189830.10127174208, + -189867.38685376107, + -189148.04361715776, + -189136.8179316544, + -189454.19264113074, + -189592.2520227959, + -189764.96604252383, + -189136.14569979953, + -189169.39385335796, + -189852.88038329795, + -189957.89952853756, + -189901.24368659954, + -189910.4178996724, + -189999.55141092496, + -189360.40048394818, + -189540.12165547063, + -189471.1548799475, + -189457.7383592478, + -189492.84011594678, + -189930.6622301241, + -190012.9729410129, + -189643.8250184186, + -189606.224952288, + -189100.93180802726, + -189069.94292362832, + -189166.93269470712, + -189710.98534421215, + -189909.66210198548, + -189800.87833115685, + -189358.71097730752, + -188372.40414795655, + -188307.97072896184, + -188449.08216930606, + -188896.90746870203, + -188488.92438829996, + -188410.6282062072, + -188423.00742554842, + -188342.75560755408, + -188474.5390069502, + -188893.76273750738, + -188383.44348380194, + -188919.52659774327, + -188450.24143295805, + -188339.98623365132, + -188920.24503447048, + -189954.8799487552, + -189224.8723192654, + -189437.85306139573, + -189128.61828617012, + -189076.00888676112, + -189229.93966087615, + -189057.92180438363, + -189159.80594753037, + -189221.1271062979, + -189275.09899359176, + -189796.53172043787, + -189179.26724934444, + -189209.43422944171, + -188434.3714432306, + -188735.4427305461, + -188852.55618795755, + -188648.26563955305, + -188750.48177969156, + -188633.9067049795, + -188963.22418785066, + -188921.29656857427, + -189021.56662713946, + -188962.55017746423, + -188997.33770734456, + -189023.01935678284, + -190261.8156757386, + -190001.24087948908, + -190205.95046477395, + -190299.55174747857, + -190144.7648684372, + -190362.44164700346, + -190189.73769569694, + -190267.11271629602, + -190205.97081794371, + -190270.2885900102, + -190214.73308856742, + -190326.65557216902, + -190414.88888080535, + -190199.32333034926, + -190282.24854628212, + -190312.73737813003, + -188873.8626963419, + -188920.2684739792, + -188858.41273348493, + -188379.0378458674, + -188512.27456350578, + -188638.8220475936, + -188851.4444004593, + -188856.0250278521, + -188992.6676338556, + -188567.034494689, + -188562.145978013, + -188709.5724031946, + -188583.43301745184, + -188633.37897797985, + -188513.3287395779, + -188486.02304199967, + -189455.44381807276, + -188895.9417109116, + -189700.65258162987, + -189511.31796618277, + -189314.42297487025, + -189274.3071301368, + -189387.76225415204, + -189390.8243694251, + -188565.08660170887, + -188585.1092319325, + -188535.84972231102, + -188428.1636080926, + -188480.76720246498, + -188497.23442699056, + -188477.61159047254, + -188560.29997725625, + -188469.464678068, + -188412.24447188206, + -188400.34769697144, + -188326.83417554572, + -188472.80747925534, + -188371.0306914976, + -188439.41147707586, + -188460.25442393898, + -188478.67324954533, + -188414.5465883974, + -188506.02275688382, + -189533.1271418779, + -189305.03128895749, + -189500.05954191848, + -190614.02637885386, + -190408.6976223534, + -190772.61217766535, + -190745.8656578664, + -190782.00210851693, + -190713.68513502888, + -190769.81695999636, + -190721.68694858113, + -190713.55530098, + -190715.47477903482, + -190587.36694516958, + -190653.71505993314, + -190733.79506238594, + -190759.5937266005, + -190665.1557136483, + -189551.6404319715, + -189175.80872704333, + -188999.41125879882, + -189583.71120295482, + -189736.44355789217, + -189721.16100992335, + -190794.8754551881, + -190767.60153448136, + -190528.3678224796, + -190527.9985717709, + -190651.3096880947, + -190850.62628139483, + -190767.53942386774, + -190178.30316847924, + -189906.9288545038, + -190398.25884468752, + -189902.1572291747, + -189756.1793300799, + -192960.00724960802, + -193032.32651674768, + -194526.8572523203, + -192970.64111818164, + -194540.51188655684, + -190076.97029283058, + -190578.37958836104, + -190633.09861453043, + -189612.56701675983, + -189584.85448124894, + -189639.9730804576, + -189726.2893258764, + -189663.43940283198, + -189589.25507494135, + -189614.62635399186, + -189158.38902759828, + -189507.12134144705, + -189695.59469139914, + -189747.88347755812, + -189662.8350739805, + -189704.61279866777, + -190468.9495086276, + -190691.40485899913, + -190602.30273507602, + -190690.3495420362, + -190742.67043381042, + -190516.9103386334, + -190625.0036216086, + -190467.63078097987, + -190711.89591260994, + -190681.55111231707, + -190714.2334944442, + -190728.0443911054, + -190260.22221289267, + -190672.9365789004, + -190463.41389632598, + -190574.5566659715, + -190503.87993822052, + -190597.1290096374, + -190738.17937622103, + -190736.14123626714, + -188844.49537900015, + -189352.91617699675, + -189293.61601165356, + -189198.92299734885, + -189188.6211538655, + -189248.80812324327, + -188903.04749914605, + -188991.53960870573, + -189277.4028354314, + -189224.98825033373, + -189320.46260078246, + -189230.83393577425, + -189282.98979945903, + -185674.87055856248, + -189767.3376516928, + -186429.02907093416, + -186471.6273977257, + -186557.56944473545, + -186373.05814148398, + -186421.09165944587, + -186389.60376488912, + -186551.00981625286, + -186485.36466106286, + -186416.7791946597, + -186425.80797049435, + -186507.88074432584, + -186483.2058758233, + -186446.32894291877, + -186578.13349791485, + -188294.34254262215, + -188903.12131841254, + -188974.1903070274, + -189013.00556954916, + -188990.05786341277, + -189283.6558680965, + -189156.776198667, + -189281.15801555838, + -189229.38188445318, + -188752.90976222482, + -189268.83368658138, + -189109.80505218275, + -189263.46207696153, + -190474.83424193788, + -190404.0846714618, + -189725.66534082082, + -190387.365071224, + -190322.7145666639, + -190610.7397637846, + -190530.50822368442, + -190565.46212922395, + -190634.5753037945, + -190356.45986323425, + -190391.1380994609, + -190429.80943282603, + -190464.96139017996, + -190289.1133185594, + -190367.6186600842, + -190422.79258775173, + -190454.50715953342, + -190902.48296050128, + -190846.00728882258, + -190768.94184870122, + -190917.1501459411, + -190904.19225035308, + -190869.11155008027, + -190847.3760969188, + -190833.92831575198, + -190914.59919810772, + -191003.5049998549, + -190987.6662291279, + -190918.1130413622, + -190978.42508732385, + -191045.33010704067, + -191118.3344811227, + -191028.42716404388, + -191087.25231874056, + -191063.94152141083, + -190533.19955587725, + -190467.77931488148, + -190736.1226796714, + -190650.8583482665, + -190695.986401139, + -190705.99136849152, + -190727.1717134085, + -190775.09420707048, + -189526.2394383325, + -189181.60084101505, + -189185.06032392784, + -189112.62460586315, + -190085.7072353487, + -190308.5994523768, + -190398.8378197505, + -190400.7504096945, + -189466.40250005975, + -188816.86933252332, + -190594.37588089012, + -190621.45203308872, + -190572.00478016632, + -190677.74061826518, + -190777.950647815, + -190643.4977867746, + -190238.15773232863, + -190074.67463959943, + -190367.91326419555, + -190399.54829885028, + -190275.09228250064, + -190306.22405632425, + -190162.3371470009, + -190432.7873200079, + -190532.19121997847, + -190494.93518483994, + -190497.28396928875, + -190620.24351137725, + -190664.86329969479, + -190574.09918967442, + -190591.03375007253, + -190520.7869251755, + -190351.42834427793, + -190301.86472867473, + -190168.79581539883, + -190379.19934607125, + -190296.38287072422, + -190225.95395946506, + -190265.65052037945, + -190191.99887281418, + -190181.16020360703, + -190253.12505174227, + -190294.27227855046, + -190268.58159355848, + -190340.03937897002, + -190049.21420073678, + -190111.19686576354, + -190243.76439905912, + -190016.1087708468, + -190165.94445480712, + -190306.18105336872, + -190346.03752427932, + -189619.67419571467, + -190167.53475611532, + -190315.310468642, + -190379.6458049226, + -190388.22574712188, + -190489.64234467523, + -189077.9073416021, + -189148.47818539297, + -189076.27522030505, + -190096.82864513667, + -190440.0090447352, + -190435.29393371142, + -190435.58900957322, + -190429.5710330078, + -191322.5198972912, + -191383.64086574878, + -190438.21639421294, + -190236.33574161452, + -190380.63617074298, + -190401.29010947546, + -190331.29312605906, + -190559.2179529797, + -190494.5809685014, + -190527.79502621465, + -190152.69203156038, + -189520.9274802002, + -190148.86085124593, + -190346.98044319588, + -190273.92525879134, + -190362.20891689835, + -190211.2410560863, + -190293.35532104713, + -189532.25620878863, + -189522.88266085237, + -190499.65023009953, + -190399.7332476172, + -190462.91341077103, + -190497.98956719536, + -190271.89947805196, + -189731.91642502818, + -189365.14372923566, + -189627.2693908589, + -189450.8103449795, + -189878.37777838547, + -189606.4880574026, + -189671.94160478926, + -189753.5036607848, + -189792.539377009, + -189709.64844401702, + -189709.42207181625, + -189560.8040860744, + -189639.18026060294, + -189579.70324669065, + -189605.1403288076, + -189479.9373604124, + -189676.83534590385, + -189809.71999294424, + -189641.32627110553, + -189671.34718930145, + -189694.57212468094, + -189642.2465612403, + -189589.32744394697, + -189692.93760685052, + -189782.31803998386, + -189551.69582469424, + -189632.7736323519, + -189649.24507055973, + -189551.3936761994, + -190415.83660361098, + -190295.38448827688, + -190278.06551487523, + -190602.566736292, + -190582.58999662191, + -190402.49114878004, + -190640.8143948027, + -190434.0622041177, + -190396.1118665038, + -190633.88684340264, + -190033.28449762813, + -189931.84776524975, + -189984.33860279026, + -189914.35806747197, + -189913.8177868138, + -190053.69755855628, + -189915.13218034807, + -189840.37838709482, + -190003.0113512847, + -189865.52199599275, + -189940.86916101858, + -189527.17241938802, + -189574.29060602633, + -189631.36291813108, + -188579.02593842897, + -188618.87056923824, + -188604.32311363696, + -189090.5718994998, + -189142.3179762273, + -189107.25327854278, + -189187.28747484853, + -189269.54448270632, + -189159.14568024248, + -189138.2076064306, + -188076.45815998927, + -189270.2207259438, + -189210.2926095509, + -188900.63432967928, + -188932.77198095532, + -189022.40118831143, + -189307.27750116092, + -189338.82125386308, + -189289.75729540995, + -189349.08753127913, + -189239.27466604387, + -189238.41421960684, + -189412.9721563485, + -189524.31705901856, + -189559.7460368871, + -189476.0747606827, + -189570.0168598492, + -189495.32258851867, + -188215.8616615981, + -188199.75814143405, + -188123.16757309233, + -188542.53301547328, + -188583.50114275728, + -188646.66744792875, + -188627.52790190434, + -188624.96953674362, + -188680.12739772093, + -188603.88153743022, + -188717.93046449387, + -188701.2044515723, + -188667.65399479453, + -188578.38898107715, + -188162.49129769465, + -188283.31886173566, + -188344.14937816412, + -188367.9220383512, + -188429.7191107016, + -188521.51772652115, + -188573.1166522805, + -188704.52880665567, + -188739.29930100363, + -188761.3774557424, + -188771.39763015826, + -187903.75952678625, + -187774.81306834565, + -187895.58897193626, + -187884.75183693127, + -187967.06818140898, + -187951.53704565333, + -187825.18842699032, + -187758.29365704863, + -187868.23432734396, + -187895.08998922407, + -187890.49062902073, + -187955.65971712122, + -187928.10424729847, + -187989.67935819595, + -187874.83194403967, + -187933.04952081686, + -187872.3771147445, + -187856.99852649588, + -187848.4223915153, + -187920.79346467156, + -187930.77700494797, + -187895.29714433412, + -187920.6210824505, + -187887.69961918573, + -187938.61799761548, + -187848.99743691334, + -187796.57704625433, + -187814.10684264067, + -187814.4228992428, + -188045.52612894526, + -188018.15484515057, + -188007.98228798102, + -187778.2567400219, + -187853.44280984605, + -187973.77791186082, + -187919.99609137262, + -187824.0586511038, + -190307.0714778582, + -190230.59833375542, + -190227.19725287892, + -190163.7718421069, + -190243.0796793292, + -190331.77132419008, + -190303.73582563325, + -190230.98203889182, + -190163.62860191637, + -190127.76616371796, + -190204.7291192877, + -190198.29510713098, + -190038.48386398226, + -190286.96585014055, + -189285.5038908931, + -189314.6925545715, + -189322.54633697437, + -190108.9160963181, + -189919.7044719638, + -189515.2170023079, + -189696.5583651094, + -189620.28942638537, + -189470.10195977517, + -190628.8763620154, + -190540.76510119194, + -190565.15412975918, + -190682.29055485144, + -190430.80151139415, + -190521.04186612897, + -190646.607620274, + -190837.33673650466, + -190630.24314895942, + -190642.08708267138, + -190796.54577428204, + -190481.11319650357, + -190589.098462086, + -190401.1922366718, + -190615.01500565186, + -190603.3594025055, + -190686.42496369162, + -190557.064280662, + -188092.88408938725, + -187956.81249239156, + -187979.11709276808, + -187979.482131256, + -187979.50818299758, + -187996.93410740836, + -187963.20107476946, + -187929.6211213274, + -187965.07830668992, + -187856.64089532907, + -187920.64538985988, + -196635.93024140774, + -196399.9604654788, + -196362.5620857767, + -196370.54701890302, + -196328.77006002006, + -196438.87708898322, + -196344.7214253337, + -196337.77592539776, + -196516.39975494708, + -196375.4820001025, + -196572.13617882138, + -196357.81249105308, + -196402.59115033425, + -196403.98426888036, + -196525.95899245862, + -196450.95791918522, + -196516.9695874955, + -196526.78985808208, + -196305.99375243418, + -196477.75824980924, + -196371.17169785398, + -196540.8496484741, + -196413.56960098774, + -196398.85033780828, + -196519.40403056843, + -196586.5152888427, + -196484.0741919208, + -196477.4423322067, + -196580.94705004548, + -196493.03467572184, + -196355.35715885067, + -196524.4255226339, + -196575.5793318735, + -196388.91149252217, + -197117.95006697494, + -196453.8097539728, + -196411.73181172024, + -196519.77480193917, + -196290.0514181662, + -196541.32332563752, + -196408.34816477957, + -196504.99785979235, + -196455.70087208258, + -196480.78836830918, + -196623.01283625938, + -196421.16774980287, + -196549.77754785056, + -196520.50848836853, + -196460.99820681041, + -196330.35222787867, + -196641.30269969517, + -196316.11984664403, + -196615.8921314892, + -196323.18575227895, + -196287.24588507827, + -196489.4637902344, + -196592.64448067575, + -196651.12796950675, + -196337.7964175994, + -196435.57903475765, + -196425.72291655725, + -196443.09441339519, + -196503.89361416345, + -196538.03796348278, + -196407.69176682775, + -196453.90366500575, + -196620.4564034161, + -196368.93578565225, + -196336.6452604692, + -196451.32659140672, + -196584.13722435836, + -196550.36163773743, + -196467.06908865008, + -196437.28763150718, + -196539.00158353732, + -196464.94812796215, + -196628.33337194961, + -196276.35492457935, + -196600.84524455655, + -196438.97737875086, + -196542.46186392213, + -196495.15646825332, + -196383.44533773506, + -196584.13630503832, + -196435.07942520038, + -196472.90803114063, + -196858.56777267455, + -196506.52317436016, + -196423.12115615146, + -196494.714181361, + -196335.97571939143, + -196257.5842439066, + -196450.63647772084, + -196295.25829369153, + -196549.37678044723, + -196353.43409226913, + -196392.21021078614, + -196509.71950499725, + -196444.19108020968, + -196816.3663020291, + -196254.53937207581, + -196401.17859141144, + -196582.62604443275, + -196375.1204955413, + -196306.78705593187, + -196556.263798411, + -196481.2520604121, + -196387.3684123011, + -196594.68433771073, + -196534.56974015787, + -196598.3252346663, + -196432.1174841255, + -196371.8701767749, + -196561.82015946324, + -196474.51192388064, + -196410.2165088565, + -196488.0490661285, + -196601.67402550596, + -196270.8076973989, + -191218.29792273082, + -190773.35143504693, + -190584.05715662817, + -190474.82891365502, + -190627.12273639874, + -190565.5574961089, + -190511.04042249869, + -190665.9029325363, + -190549.36495173737, + -190603.2646405981, + -190467.50067797417, + -190576.57553214984, + -190445.9979986217, + -190683.8285149941, + -190852.38090816615, + -190728.73035462684, + -190883.16828134973, + -190787.82297448965, + -190803.13129126374, + -192061.2139999865, + -192043.71626047432, + -191964.647756764, + -190891.79490739512, + -190894.2735892318, + -190940.53838586452, + -190816.47205959816, + -190853.98202544727, + -190769.52819472074, + -190711.82282255974, + -190786.15393264592, + -190715.2106409246, + -190927.8131014321, + -190983.24181297334, + -185652.40467809694, + -185945.5150238995, + -186214.06819645717, + -186216.50602458388, + -191856.6763200281, + -191865.84986712263, + -191865.61681838395, + -191828.29448063852, + -191764.30286109785, + -191718.61375219104, + -191653.1809436873, + -191743.9925516096, + -191796.13851196037, + -191702.30279357143, + -191702.69456493555, + -191978.06283560264, + -191767.79566278576, + -191879.5988250336, + -191816.39414215, + -191761.08538711286, + -191848.65283808287, + -191632.82192091842, + -187554.55535205672, + -187589.65761840937, + -187526.1000837456, + -188247.63095166776, + -188253.21810837943, + -188166.64910838503, + -188229.09502381584, + -188212.53536496227, + -188349.5439406991, + -188074.9390005927, + -188040.12515643216, + -187845.35077936196, + -189215.35398462103, + -189123.84104439258, + -189194.488756125, + -189196.6452778848, + -188323.24737628445, + -188332.4255229405, + -188370.9159487689, + -188370.28768893745, + -188283.69853709696, + -188297.15304957947, + -188298.3598862649, + -188283.09308279172, + -188237.7610465607, + -188292.3058890195, + -188271.55860805113, + -188027.126623048, + -187972.38221218612, + -188083.56553678407, + -188122.50775063198, + -187561.3376490592, + -187629.0390798209, + -187535.8662195509, + -187668.81541389253, + -187621.53310971783, + -187601.9133239069, + -188283.31658936644, + -188095.2939063459, + -188048.40563093848, + -188029.4813787521, + -188259.8008772253, + -187942.90402075808, + -188111.32098520146, + -188269.27401706978, + -188038.668261585, + -188021.35599826832, + -188145.63669386692, + -188154.92217313207, + -188285.04208775162, + -188032.76818274957, + -188202.108708612, + -188548.4840723725, + -188370.81304855144, + -188435.5287980957, + -188539.16539749154, + -188406.0852420654, + -188375.41608470536, + -188033.49918109106, + -188141.9406256535, + -188213.16505670684, + -188299.90754175812, + -188055.18840825645, + -188010.80106167274, + -188288.30179744438, + -188172.62871077625, + -188028.9956217424, + -187979.16806459098, + -188201.16967686315, + -188402.8210414287, + -188218.0680871657, + -188209.99551585125, + -188252.8925638619, + -189858.4613268521, + -188378.5507944686, + -188392.59520295658, + -188340.82295965083, + -188344.25051226772, + -188447.38244263985, + -188321.4992550657, + -188290.03028204778, + -188276.1905836357, + -188426.3163433966, + -188379.43972742173, + -188940.39294818317, + -188487.06747544595, + -188591.84517673572, + -188430.72620436488, + -188444.0235731584, + -188596.05013602367, + -188512.54177513707, + -188699.77662528763, + -188625.63379156328, + -188612.0962266196, + -188650.9029571649, + -188231.5422576223, + -188240.22615160185, + -188094.17418821002, + -188268.16708529167, + -188277.69161143652, + -188126.03656747416, + -187773.89161390605, + -187768.02879467254, + -188801.4210158928, + -188767.41641843505, + -188890.03400560268, + -187968.55426813365, + -188033.3870086141, + -188007.0926605345, + -188162.9565995668, + -188185.8360206985, + -188045.48630401408, + -188111.84876750235, + -188003.5861127096, + -188087.67081568346, + -188058.20794789607, + -188039.71959966994, + -188083.6924472722, + -187974.56083652587, + -188200.24848876594, + -188146.93600360025, + -188144.75157425427, + -188145.70803974595, + -188106.29213649518, + -188082.19662846022, + -187968.96276014342, + -188086.97635425016, + -188104.29806410245, + -188043.63936497684, + -188006.95668439232, + -188139.7614408556, + -187885.68037084257, + -188103.01400066275, + -188117.5227897902, + -188046.5415193328, + -187934.88019874017, + -187902.2258420666, + -188060.24566124828, + -188138.19385150683, + -187992.70459943428, + -188100.83145626815, + -187918.62888498866, + -188026.76554396577, + -187996.96960220046, + -187979.69368844153, + -188054.69156568003, + -187927.8824349312, + -187981.00449699291, + -189589.74977397075, + -189522.47085552436, + -188307.32313826354, + -188432.78907464017, + -188326.60982191455, + -188354.1811308593, + -188533.53409693413, + -187800.99882697721, + -187868.5464667596, + -187753.06096357654, + -187717.91851693625, + -187695.8720814455, + -187675.48095937257, + -187700.15324202535, + -187783.07389216768, + -187780.48748696045, + -187828.2195422653, + -187833.51705638343, + -187721.85004660045, + -187660.64237843428, + -187715.7343131632, + -187780.5533465789, + -187753.63706882135, + -190192.99199780272, + -189790.89938445395, + -190212.54156170116, + -189775.7899940225, + -189039.90533258254, + -189023.69513390047, + -189295.93670652222, + -189291.79965791342, + -189200.57330304422, + -189225.44343217573, + -189655.76464204327, + -189705.95770007666, + -189643.5524444072, + -189130.97364801675, + -189116.34404480382, + -187593.07759266367, + -187846.51677388168, + -187788.46861765772, + -187757.48312437613, + -187811.00235893583, + -187835.38918713373, + -188503.3820257475, + -188608.75666870267, + -188659.3952954119, + -188533.61152171314, + -188473.738548232, + -188446.22688801138, + -188324.66509707412, + -190227.9999344756, + -190209.6170070622, + -190419.3938255866, + -189358.54226131324, + -189455.7501465173, + -187851.21871572215, + -187789.48509271396, + -186169.3625546227, + -190884.92755364833, + -190852.65448954437, + -190676.0383364286, + -190794.98816362483, + -190875.6299963171, + -190881.4195072494, + -190800.5661891712, + -190967.90324167695, + -190796.21734701467, + -190849.80556299916, + -190850.39999002474, + -190705.93683743462, + -190771.58442055932, + -190703.81262351107, + -190937.47881374045, + -190805.20644104716, + -190692.507124959, + -190908.47378217717, + -190864.96463177202, + -190737.8835624348, + -190739.5724284781, + -190802.30922898772, + -190698.23881648583, + -190929.66979578658, + -190729.50539915852, + -190844.91909849216, + -190813.14436611588, + -190895.66896662925, + -190908.32604239337, + -190964.17059618633, + -190762.50171806797, + -190994.52260283855, + -190768.6419722291, + -190804.9616245743, + -190962.8796978228, + -190835.27084363703, + -190974.33881747143, + -190876.57184446702, + -190834.01009906843, + -190933.9534077934, + -190909.64976137923, + -190913.5105326216, + -190796.94141805047, + -190781.4409062239, + -190923.8425100799, + -191035.1109422804, + -190908.71441964828, + -190741.38638934697, + -190885.78296118212, + -190993.37192165887, + -190961.12960518763, + -190763.67489496517, + -191006.89775095775, + -190709.62985214093, + -190934.3591051317, + -190851.954708939, + -190837.31528721907, + -190807.84919101253, + -190878.46789065155, + -190967.49452304916, + -190762.08180819644, + -189505.9875498694, + -189535.1434064379, + -189668.16727616882, + -189616.60988648146, + -189638.23178416977, + -189570.86066694462, + -189576.08308589703, + -189155.14860018887, + -189239.60796500134, + -187880.24230509295, + -187644.4018088615, + -187728.90535634218, + -187852.92563407216, + -187906.33280999027, + -187894.400024042, + -187929.1853205998, + -187896.99301672008, + -187640.26178314057, + -187703.77673713973, + -188077.23734942425, + -187999.18462355132, + -188092.18378419022, + -188515.5010910575, + -188574.65523758496, + -190098.24210039582, + -190295.73742487756, + -190147.97551236962, + -190113.79330947442, + -189595.58720010423, + -191048.32021429407, + -191088.9053977869, + -191072.42749505086, + -188779.56731104586, + -188683.22659860307, + -188728.41122024317, + -188799.83721849287, + -188762.11742505888, + -188619.68472282932, + -188694.51829272378, + -188750.53984223565 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 933483.4567391834, + 95962.08383797004 + ], + "y": [ + -841989.31294275, + -188630.5751925975 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 933483.4567391834, + 95958.17194866823 + ], + "y": [ + -841989.31294275, + -188333.01761814565 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -366283.69394185964, + 96588.81767117835 + ], + "y": [ + -775095.2833023075, + -188120.26418891654 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -366283.69394185964, + 95948.88284577774 + ], + "y": [ + -775095.2833023075, + -188484.3860102188 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -366283.69394185964, + 95880.89608253656 + ], + "y": [ + -775095.2833023075, + -188495.23201231525 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -366283.69394185964, + 96750.96023331824 + ], + "y": [ + -775095.2833023075, + -188320.30928268767 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -366283.69394185964, + 96510.55405575983 + ], + "y": [ + -775095.2833023075, + -188483.56766699257 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -366283.69394185964, + 95767.91624828705 + ], + "y": [ + -775095.2833023075, + -187939.12845477546 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -181700.15961593334, + 96740.50167159707 + ], + "y": [ + -623621.8672748602, + -187818.23537279075 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -181700.15961593334, + 97209.95143029183 + ], + "y": [ + -623621.8672748602, + -187946.7603080632 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 429817.1381553038, + 95962.08383797004 + ], + "y": [ + -508933.80539782916, + -188630.5751925975 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 429817.1381553038, + 95958.17194866823 + ], + "y": [ + -508933.80539782916, + -188333.01761814565 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97361.55787856234 + ], + "y": [ + -785168.8110406864, + -188197.8301536245 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96730.38048016379 + ], + "y": [ + -785168.8110406864, + -188683.2303206299 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96981.97292405601 + ], + "y": [ + -785168.8110406864, + -188503.10517806208 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97064.56846526945 + ], + "y": [ + -785168.8110406864, + -188860.7645077761 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96996.94863760758 + ], + "y": [ + -785168.8110406864, + -188943.16984077886 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 95612.3798589922 + ], + "y": [ + -785168.8110406864, + -189195.75127467563 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97025.10002004895 + ], + "y": [ + -785168.8110406864, + -188593.0213982362 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97085.03905872672 + ], + "y": [ + -785168.8110406864, + -188664.20873805106 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97181.50823801635 + ], + "y": [ + -785168.8110406864, + -188389.7264047301 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97107.98327536366 + ], + "y": [ + -785168.8110406864, + -188531.62632111614 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96671.54609170722 + ], + "y": [ + -785168.8110406864, + -188870.3516127079 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96264.44273321965 + ], + "y": [ + -785168.8110406864, + -188193.26327558464 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97372.74334299575 + ], + "y": [ + -785168.8110406864, + -187318.35447427825 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97234.35747194423 + ], + "y": [ + -785168.8110406864, + -189806.69206404962 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97271.91592592461 + ], + "y": [ + -785168.8110406864, + -188090.2894991313 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97377.86830334815 + ], + "y": [ + -785168.8110406864, + -188100.01616886404 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97325.9129722734 + ], + "y": [ + -785168.8110406864, + -188174.55996141888 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97061.7840428774 + ], + "y": [ + -785168.8110406864, + -188463.2031115645 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97215.01978405566 + ], + "y": [ + -785168.8110406864, + -188363.74532847013 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97358.31856309062 + ], + "y": [ + -785168.8110406864, + -187605.6195439504 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97190.77820654793 + ], + "y": [ + -785168.8110406864, + -188732.3518539843 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96441.85290714615 + ], + "y": [ + -785168.8110406864, + -184365.92318507173 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97203.18137378134 + ], + "y": [ + -785168.8110406864, + -188187.27869729063 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96615.52267587048 + ], + "y": [ + -785168.8110406864, + -188342.5253574899 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97362.57990476971 + ], + "y": [ + -785168.8110406864, + -187588.75004952576 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96430.3182329276 + ], + "y": [ + -785168.8110406864, + -189081.41342393393 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97216.0877466562 + ], + "y": [ + -785168.8110406864, + -188060.79254294612 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97087.72560216134 + ], + "y": [ + -785168.8110406864, + -188845.78996045736 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96827.37265721356 + ], + "y": [ + -785168.8110406864, + -188800.35117287276 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97471.93322774443 + ], + "y": [ + -785168.8110406864, + -188205.98013851763 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96478.42530029602 + ], + "y": [ + -785168.8110406864, + -188992.01175242575 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97500.18404094946 + ], + "y": [ + -785168.8110406864, + -188221.79324811854 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96989.78155035034 + ], + "y": [ + -785168.8110406864, + -188559.27230275373 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 98448.42923749553 + ], + "y": [ + -785168.8110406864, + -188136.72692104083 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97143.83269179585 + ], + "y": [ + -785168.8110406864, + -187550.377833089 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97369.40146033755 + ], + "y": [ + -785168.8110406864, + -188302.59803287973 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97339.71103793576 + ], + "y": [ + -785168.8110406864, + -187581.63192013613 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96553.64509810388 + ], + "y": [ + -785168.8110406864, + -187717.56726598475 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97302.65739635656 + ], + "y": [ + -785168.8110406864, + -188480.64988687172 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97335.30821090189 + ], + "y": [ + -785168.8110406864, + -188160.1723451082 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96554.76711541406 + ], + "y": [ + -785168.8110406864, + -188798.2366179604 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97344.39094759998 + ], + "y": [ + -785168.8110406864, + -188090.79273053954 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 98269.13543855402 + ], + "y": [ + -785168.8110406864, + -187779.636684694 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97120.93183600294 + ], + "y": [ + -785168.8110406864, + -188782.71424431694 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97096.28494217026 + ], + "y": [ + -785168.8110406864, + -187419.76550716007 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96822.6506902651 + ], + "y": [ + -785168.8110406864, + -188621.19074517605 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97442.83746991267 + ], + "y": [ + -785168.8110406864, + -187478.37592567242 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96832.47969398995 + ], + "y": [ + -785168.8110406864, + -187971.61344319995 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97815.81719436 + ], + "y": [ + -785168.8110406864, + -187778.30145997382 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 98066.53944077659 + ], + "y": [ + -785168.8110406864, + -187625.15506672708 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97949.99254977489 + ], + "y": [ + -785168.8110406864, + -186611.5059282818 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97258.58975162834 + ], + "y": [ + -785168.8110406864, + -188003.31924616438 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97072.87553268592 + ], + "y": [ + -785168.8110406864, + -188139.1086900214 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97177.44060503879 + ], + "y": [ + -785168.8110406864, + -188172.13924848195 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 98940.06816975218 + ], + "y": [ + -785168.8110406864, + -187348.161691788 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 98016.83324711236 + ], + "y": [ + -785168.8110406864, + -188223.82733587097 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97830.47996234937 + ], + "y": [ + -785168.8110406864, + -188730.91358476676 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97767.76658830828 + ], + "y": [ + -785168.8110406864, + -187886.4063756375 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96641.47157063635 + ], + "y": [ + -785168.8110406864, + -188597.83399210958 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97299.95033359852 + ], + "y": [ + -785168.8110406864, + -188057.1917578529 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97365.44574077036 + ], + "y": [ + -785168.8110406864, + -188218.10363143042 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97290.08489077912 + ], + "y": [ + -785168.8110406864, + -188210.32065825685 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97322.93543564298 + ], + "y": [ + -785168.8110406864, + -188129.95134955403 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97060.5787311115 + ], + "y": [ + -785168.8110406864, + -188196.78625864437 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97049.53534278259 + ], + "y": [ + -785168.8110406864, + -188493.78120901805 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97242.69405553193 + ], + "y": [ + -785168.8110406864, + -188034.45615562776 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 98081.17812602762 + ], + "y": [ + -785168.8110406864, + -188161.6224994722 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97249.66244594876 + ], + "y": [ + -785168.8110406864, + -188173.13991697345 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97854.52508088839 + ], + "y": [ + -785168.8110406864, + -188249.23314484346 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97955.02720756274 + ], + "y": [ + -785168.8110406864, + -188327.77303545873 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97077.71122197901 + ], + "y": [ + -785168.8110406864, + -188516.92372013946 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96385.16496434633 + ], + "y": [ + -785168.8110406864, + -189362.5154690305 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97510.89358759671 + ], + "y": [ + -785168.8110406864, + -188432.70004235505 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 98459.92232309152 + ], + "y": [ + -785168.8110406864, + -188115.43097167817 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97615.68830856765 + ], + "y": [ + -785168.8110406864, + -188400.87592482337 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 98138.33403478275 + ], + "y": [ + -785168.8110406864, + -188482.24258789566 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97827.98206777098 + ], + "y": [ + -785168.8110406864, + -188788.26218175198 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96467.8745823571 + ], + "y": [ + -785168.8110406864, + -189293.36061735288 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 95886.51435711926 + ], + "y": [ + -785168.8110406864, + -189227.5443430391 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 98461.45076976992 + ], + "y": [ + -785168.8110406864, + -188131.32433438205 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 98367.57183739317 + ], + "y": [ + -785168.8110406864, + -188109.2701383384 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96854.14568860013 + ], + "y": [ + -785168.8110406864, + -188095.6269492578 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97266.32321649927 + ], + "y": [ + -785168.8110406864, + -188368.0469139002 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97363.0231077364 + ], + "y": [ + -785168.8110406864, + -188160.44816852582 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97395.40628065314 + ], + "y": [ + -785168.8110406864, + -188198.66663852846 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96172.41683035072 + ], + "y": [ + -785168.8110406864, + -188806.49024330094 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96250.45766620964 + ], + "y": [ + -785168.8110406864, + -189163.69044909158 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 95520.1645763566 + ], + "y": [ + -785168.8110406864, + -185208.78508001886 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 98448.70225290018 + ], + "y": [ + -785168.8110406864, + -188125.1114877186 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96321.45254240566 + ], + "y": [ + -785168.8110406864, + -188534.0512551924 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97264.50790734109 + ], + "y": [ + -785168.8110406864, + -188177.51543305253 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97236.52009824176 + ], + "y": [ + -785168.8110406864, + -188133.61205856866 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97339.43922054533 + ], + "y": [ + -785168.8110406864, + -188047.21116345978 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97243.18425457999 + ], + "y": [ + -785168.8110406864, + -188112.59605802642 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97315.50747893736 + ], + "y": [ + -785168.8110406864, + -188194.2363318084 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97215.05533166551 + ], + "y": [ + -785168.8110406864, + -188117.56111774204 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96750.67919465902 + ], + "y": [ + -785168.8110406864, + -188690.07025037165 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96758.2131173848 + ], + "y": [ + -785168.8110406864, + -188656.54845148328 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96298.09511180542 + ], + "y": [ + -785168.8110406864, + -188969.58942661897 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 95861.24531062585 + ], + "y": [ + -785168.8110406864, + -188902.73804542943 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96714.78752865449 + ], + "y": [ + -785168.8110406864, + -189437.10887228855 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97410.9196281361 + ], + "y": [ + -785168.8110406864, + -188334.74393636227 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96859.54396498862 + ], + "y": [ + -785168.8110406864, + -189186.06009143573 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96181.25693811684 + ], + "y": [ + -785168.8110406864, + -188965.52824986106 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96930.48088011655 + ], + "y": [ + -785168.8110406864, + -188960.47562263405 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97770.14515646077 + ], + "y": [ + -785168.8110406864, + -188470.92069224652 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97490.27494702111 + ], + "y": [ + -785168.8110406864, + -188476.5108117482 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97286.18570891903 + ], + "y": [ + -785168.8110406864, + -188140.7416293255 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97389.10178705663 + ], + "y": [ + -785168.8110406864, + -188146.4029455515 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97331.16186692334 + ], + "y": [ + -785168.8110406864, + -188071.56456675925 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96488.13453110759 + ], + "y": [ + -785168.8110406864, + -188736.90081401754 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96074.87019613585 + ], + "y": [ + -785168.8110406864, + -188963.01391432688 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97074.27772427908 + ], + "y": [ + -785168.8110406864, + -188834.10272951444 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96074.67218939119 + ], + "y": [ + -785168.8110406864, + -189003.73857407318 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97117.04988156656 + ], + "y": [ + -785168.8110406864, + -187984.04010321392 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96276.76290288504 + ], + "y": [ + -785168.8110406864, + -188504.82116380852 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96138.27909570166 + ], + "y": [ + -785168.8110406864, + -188905.6100788483 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97145.57365835275 + ], + "y": [ + -785168.8110406864, + -188469.95350641874 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96646.8046235456 + ], + "y": [ + -785168.8110406864, + -188517.84736046946 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 95954.7235059804 + ], + "y": [ + -785168.8110406864, + -188304.5177743197 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97344.23333565774 + ], + "y": [ + -785168.8110406864, + -188106.72693407602 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97312.16899856621 + ], + "y": [ + -785168.8110406864, + -188224.97547898805 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97226.77467613107 + ], + "y": [ + -785168.8110406864, + -188062.4324835948 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97363.94242415007 + ], + "y": [ + -785168.8110406864, + -188068.27323340887 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96602.40260405943 + ], + "y": [ + -785168.8110406864, + -188836.55324492624 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 95405.95241141658 + ], + "y": [ + -785168.8110406864, + -189360.7972441431 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97026.79872519187 + ], + "y": [ + -785168.8110406864, + -188481.55600240765 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96882.48118360608 + ], + "y": [ + -785168.8110406864, + -188657.5093365336 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96170.99341163754 + ], + "y": [ + -785168.8110406864, + -188989.48748180468 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96129.26226123162 + ], + "y": [ + -785168.8110406864, + -186433.20819659182 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97352.31659100096 + ], + "y": [ + -785168.8110406864, + -187618.5955755901 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96609.21495158957 + ], + "y": [ + -785168.8110406864, + -188608.14004422975 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 98432.06023611217 + ], + "y": [ + -785168.8110406864, + -188103.543164194 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96466.10004162915 + ], + "y": [ + -785168.8110406864, + -188244.1581110861 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 95721.84547331538 + ], + "y": [ + -785168.8110406864, + -189169.82807631438 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97171.80979185148 + ], + "y": [ + -785168.8110406864, + -187562.6954412684 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96673.26868148368 + ], + "y": [ + -785168.8110406864, + -188597.59464444526 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97242.36535343947 + ], + "y": [ + -785168.8110406864, + -188094.93147997395 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96662.13325458604 + ], + "y": [ + -785168.8110406864, + -188497.24015716757 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 95361.48898776405 + ], + "y": [ + -785168.8110406864, + -186541.63161815086 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96723.71649615404 + ], + "y": [ + -785168.8110406864, + -189066.48960328338 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96577.78689065653 + ], + "y": [ + -785168.8110406864, + -188746.57951263554 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96304.89053116819 + ], + "y": [ + -785168.8110406864, + -188974.92632111761 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96020.02948032114 + ], + "y": [ + -785168.8110406864, + -188911.8607199644 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 94721.83869654656 + ], + "y": [ + -785168.8110406864, + -188919.7029759385 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97298.65959230787 + ], + "y": [ + -785168.8110406864, + -188102.7775258803 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96640.12295334176 + ], + "y": [ + -785168.8110406864, + -188377.38150042814 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96271.64391619014 + ], + "y": [ + -785168.8110406864, + -188087.26616295817 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96408.13622599524 + ], + "y": [ + -785168.8110406864, + -188979.0014231341 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97309.18348925584 + ], + "y": [ + -785168.8110406864, + -188075.4320336564 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97289.56699193796 + ], + "y": [ + -785168.8110406864, + -188078.45265644975 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97270.2903153982 + ], + "y": [ + -785168.8110406864, + -188154.95367904997 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96874.40221688445 + ], + "y": [ + -785168.8110406864, + -189231.2675484738 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96746.46975225132 + ], + "y": [ + -785168.8110406864, + -188515.5389473062 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96348.29844805674 + ], + "y": [ + -785168.8110406864, + -188291.51205377275 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96668.17509388815 + ], + "y": [ + -785168.8110406864, + -188851.13864683165 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96090.94263214861 + ], + "y": [ + -785168.8110406864, + -187819.11455949367 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96360.12432055575 + ], + "y": [ + -785168.8110406864, + -189285.9657250609 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96792.48106870924 + ], + "y": [ + -785168.8110406864, + -188590.74143741513 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96829.16589823875 + ], + "y": [ + -785168.8110406864, + -188592.58854995444 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96813.03260829017 + ], + "y": [ + -785168.8110406864, + -188149.64184463344 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96852.64814433026 + ], + "y": [ + -785168.8110406864, + -188010.31234546934 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97324.36613168383 + ], + "y": [ + -785168.8110406864, + -188060.2135347956 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97379.06355223498 + ], + "y": [ + -785168.8110406864, + -188203.78076926843 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96719.96913872726 + ], + "y": [ + -785168.8110406864, + -188646.02879834978 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96565.3052812955 + ], + "y": [ + -785168.8110406864, + -188429.88264305083 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96062.65271303893 + ], + "y": [ + -785168.8110406864, + -188690.19852216193 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96318.63129865125 + ], + "y": [ + -785168.8110406864, + -189267.9620036595 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96775.11425416196 + ], + "y": [ + -785168.8110406864, + -188566.821774848 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97357.37235340624 + ], + "y": [ + -785168.8110406864, + -188252.50921945827 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97277.72395289454 + ], + "y": [ + -785168.8110406864, + -188121.3122975104 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97289.76170017247 + ], + "y": [ + -785168.8110406864, + -188198.51232125357 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97321.48237207504 + ], + "y": [ + -785168.8110406864, + -188108.59779207408 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97227.68741107298 + ], + "y": [ + -785168.8110406864, + -188127.2678753391 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97204.20955384977 + ], + "y": [ + -785168.8110406864, + -188081.2142320706 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96229.06326601339 + ], + "y": [ + -785168.8110406864, + -188533.7358044206 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97325.19271104848 + ], + "y": [ + -785168.8110406864, + -187599.9393852977 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97617.21646735941 + ], + "y": [ + -785168.8110406864, + -188530.48273097305 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 98449.27256362812 + ], + "y": [ + -785168.8110406864, + -188098.39897942072 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96581.33099308431 + ], + "y": [ + -785168.8110406864, + -188674.40626418887 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97228.58212383334 + ], + "y": [ + -785168.8110406864, + -188083.60697520856 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97299.24309043337 + ], + "y": [ + -785168.8110406864, + -188148.15947986252 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97252.41548140156 + ], + "y": [ + -785168.8110406864, + -188022.57383190584 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97357.81547028142 + ], + "y": [ + -785168.8110406864, + -188130.72283528827 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97236.43218292532 + ], + "y": [ + -785168.8110406864, + -188048.00492761855 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97305.00730192695 + ], + "y": [ + -785168.8110406864, + -188170.03703741357 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97195.88804075729 + ], + "y": [ + -785168.8110406864, + -188251.20192635697 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97218.59509104007 + ], + "y": [ + -785168.8110406864, + -188251.14135969765 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96261.3196088678 + ], + "y": [ + -785168.8110406864, + -189072.52109977874 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 93808.41622785716 + ], + "y": [ + -785168.8110406864, + -189421.3965259288 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96850.96393927754 + ], + "y": [ + -785168.8110406864, + -188487.8442985911 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96537.12189876002 + ], + "y": [ + -785168.8110406864, + -188909.27353199496 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96361.20003453246 + ], + "y": [ + -785168.8110406864, + -188597.87223608652 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96470.92604424445 + ], + "y": [ + -785168.8110406864, + -187913.85881532487 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96487.89609305817 + ], + "y": [ + -785168.8110406864, + -188652.52674561567 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96645.9713144198 + ], + "y": [ + -785168.8110406864, + -188835.22735785999 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96399.42211136232 + ], + "y": [ + -785168.8110406864, + -188894.10833929706 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96412.58182949589 + ], + "y": [ + -785168.8110406864, + -189390.9934105709 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 95545.86201701668 + ], + "y": [ + -785168.8110406864, + -189304.65399711 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96748.01232561683 + ], + "y": [ + -785168.8110406864, + -188772.49683122957 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96556.53529112086 + ], + "y": [ + -785168.8110406864, + -187066.75929757126 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96657.04377656122 + ], + "y": [ + -785168.8110406864, + -188572.61534136938 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96611.79891677048 + ], + "y": [ + -785168.8110406864, + -188424.95815413288 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97214.1761793492 + ], + "y": [ + -785168.8110406864, + -188285.79535372727 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96131.39404043475 + ], + "y": [ + -785168.8110406864, + -186683.14575150548 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96721.96485809215 + ], + "y": [ + -785168.8110406864, + -188557.7500853805 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96569.72587527646 + ], + "y": [ + -785168.8110406864, + -189297.14028084598 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96176.22696258772 + ], + "y": [ + -785168.8110406864, + -189158.03047828437 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96122.91322426367 + ], + "y": [ + -785168.8110406864, + -188273.612045506 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96198.64527732105 + ], + "y": [ + -785168.8110406864, + -187641.16543157026 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97964.68713880659 + ], + "y": [ + -785168.8110406864, + -188244.37359244894 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97183.30733835287 + ], + "y": [ + -785168.8110406864, + -188328.36296298457 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 92882.88036181602 + ], + "y": [ + -785168.8110406864, + -186973.0577066971 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 93947.1652778539 + ], + "y": [ + -785168.8110406864, + -188676.80334905128 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96330.25949972049 + ], + "y": [ + -785168.8110406864, + -188706.18078984448 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97170.81081425113 + ], + "y": [ + -785168.8110406864, + -188123.2736693611 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 95845.43465437011 + ], + "y": [ + -785168.8110406864, + -188699.20817216582 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 94883.17834351698 + ], + "y": [ + -785168.8110406864, + -188902.71776057317 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96709.27952791477 + ], + "y": [ + -785168.8110406864, + -188705.66239081704 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96667.2918950391 + ], + "y": [ + -785168.8110406864, + -188651.89978288996 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 95837.80625601206 + ], + "y": [ + -785168.8110406864, + -188031.4228654602 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96820.63808370597 + ], + "y": [ + -785168.8110406864, + -188507.5871274623 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96806.18517489852 + ], + "y": [ + -785168.8110406864, + -188473.15080842157 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97280.51740997269 + ], + "y": [ + -785168.8110406864, + -187558.11023642388 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96714.28622859313 + ], + "y": [ + -785168.8110406864, + -189344.7791897772 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96088.28655554891 + ], + "y": [ + -785168.8110406864, + -188568.03135249048 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96842.71240942011 + ], + "y": [ + -785168.8110406864, + -189006.15667271154 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96636.80398752526 + ], + "y": [ + -785168.8110406864, + -188907.33441810505 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96814.47946325276 + ], + "y": [ + -785168.8110406864, + -188872.08380899028 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96686.4149689825 + ], + "y": [ + -785168.8110406864, + -189090.95733044946 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96733.90105315663 + ], + "y": [ + -785168.8110406864, + -188466.8921120741 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96744.78801527941 + ], + "y": [ + -785168.8110406864, + -188916.39990961482 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96492.3193299354 + ], + "y": [ + -785168.8110406864, + -188890.76276156757 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96406.73123341237 + ], + "y": [ + -785168.8110406864, + -189031.25167023003 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96335.82539154506 + ], + "y": [ + -785168.8110406864, + -190718.20336678185 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96082.8637414932 + ], + "y": [ + -785168.8110406864, + -188924.92880801545 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96567.91127200374 + ], + "y": [ + -785168.8110406864, + -189611.13910755786 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96501.22061638958 + ], + "y": [ + -785168.8110406864, + -189371.07705115504 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96231.57047597128 + ], + "y": [ + -785168.8110406864, + -187862.73468047418 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96447.73644124497 + ], + "y": [ + -785168.8110406864, + -188350.84668912945 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96907.51876847682 + ], + "y": [ + -785168.8110406864, + -188435.49777233123 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96140.78208609398 + ], + "y": [ + -785168.8110406864, + -189286.4104808909 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96791.93089613823 + ], + "y": [ + -785168.8110406864, + -189329.86947105004 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96773.1294794952 + ], + "y": [ + -785168.8110406864, + -188827.20853608186 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97215.55371993229 + ], + "y": [ + -785168.8110406864, + -188656.4246604865 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96989.24436251477 + ], + "y": [ + -785168.8110406864, + -188224.81397464138 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96715.92227964214 + ], + "y": [ + -785168.8110406864, + -188371.826375027 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96692.76062085203 + ], + "y": [ + -785168.8110406864, + -188530.07168880716 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96896.91552525175 + ], + "y": [ + -785168.8110406864, + -188684.380536833 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96737.85869639236 + ], + "y": [ + -785168.8110406864, + -188809.10200272722 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 95444.01440252263 + ], + "y": [ + -785168.8110406864, + -189064.02055466248 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96447.8287589237 + ], + "y": [ + -785168.8110406864, + -188910.5188593822 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96639.08049903584 + ], + "y": [ + -785168.8110406864, + -187504.5939470865 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97213.58157620984 + ], + "y": [ + -785168.8110406864, + -188238.2747120987 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96349.45899615414 + ], + "y": [ + -785168.8110406864, + -189055.06434900622 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96911.82889073166 + ], + "y": [ + -785168.8110406864, + -188985.5661371472 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96584.25000074002 + ], + "y": [ + -785168.8110406864, + -188817.42461554098 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97638.83972944805 + ], + "y": [ + -785168.8110406864, + -188328.4992507085 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97141.32121371166 + ], + "y": [ + -785168.8110406864, + -188032.35686812358 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97589.68831697167 + ], + "y": [ + -785168.8110406864, + -188989.35923942667 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96754.87507754394 + ], + "y": [ + -785168.8110406864, + -188537.1492944953 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 97436.04173144014 + ], + "y": [ + -785168.8110406864, + -188332.10285588854 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96829.7050884141 + ], + "y": [ + -785168.8110406864, + -188224.61386277262 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96707.30691234408 + ], + "y": [ + -785168.8110406864, + -188398.43069892912 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96535.511292164 + ], + "y": [ + -785168.8110406864, + -188690.45660123866 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96405.25838544288 + ], + "y": [ + -785168.8110406864, + -188764.5244681029 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96596.4969197861 + ], + "y": [ + -785168.8110406864, + -188476.21098523034 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 96957.15143187257 + ], + "y": [ + -785168.8110406864, + -188906.10027535562 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894216.5057303684, + 98108.28736915902 + ], + "y": [ + -785168.8110406864, + -188598.92292480564 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -340099.1897493526, + 97092.03590641617 + ], + "y": [ + 438056.862237691, + -188338.53308343157 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 458352.946828549, + 95739.18477075809 + ], + "y": [ + -427115.71569997055, + -188035.09619434597 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 458352.946828549, + 95638.78273951489 + ], + "y": [ + -427115.71569997055, + -187471.21704082517 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 683996.0178905013, + 96868.09370002619 + ], + "y": [ + -459779.53796019853, + -187485.8021358164 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 683996.0178905013, + 96840.061255232 + ], + "y": [ + -459779.53796019853, + -187835.19770223383 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 233201.9544420003, + 97740.36484145897 + ], + "y": [ + 796480.9210348161, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -884245.3767823352, + 97740.36484145897 + ], + "y": [ + 16228.446847255995, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -347699.8273738099, + 97228.17238280359 + ], + "y": [ + -10117.113578631543, + -188471.24794147993 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -347699.8273738099, + 96287.81181504241 + ], + "y": [ + -10117.113578631543, + -188922.89599843553 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 465403.5083914787, + 97228.17238280359 + ], + "y": [ + -53631.432702805796, + -188471.24794147993 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 183588.8342892922, + 97306.68660394431 + ], + "y": [ + 831976.0985445925, + -189190.69568859632 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 183588.8342892922, + 97519.14188663122 + ], + "y": [ + 831976.0985445925, + -188648.39727075843 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 183588.8342892922, + 96800.95464898097 + ], + "y": [ + 831976.0985445925, + -188995.8386599755 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 183588.8342892922, + 96931.14707892697 + ], + "y": [ + 831976.0985445925, + -188818.68200287974 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -554819.1953686934, + 96653.93028602129 + ], + "y": [ + 159844.88204567993, + -189419.4844744169 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -554819.1953686934, + 97306.68660394431 + ], + "y": [ + 159844.88204567993, + -189190.69568859632 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -554819.1953686934, + 97519.14188663122 + ], + "y": [ + 159844.88204567993, + -188648.39727075843 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -554819.1953686934, + 96800.95464898097 + ], + "y": [ + 159844.88204567993, + -188995.8386599755 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -554819.1953686934, + 96931.14707892697 + ], + "y": [ + 159844.88204567993, + -188818.68200287974 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 950439.392680525, + 96612.17178282065 + ], + "y": [ + -6243.166011681511, + -188681.37081393888 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 950439.392680525, + 94019.39320785269 + ], + "y": [ + -6243.166011681511, + -190034.5154898649 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 950439.392680525, + 96918.79607718707 + ], + "y": [ + -6243.166011681511, + -189093.07196799477 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 950439.392680525, + 95778.09112358528 + ], + "y": [ + -6243.166011681511, + -188332.3887565364 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 950439.392680525, + 94801.82599832956 + ], + "y": [ + -6243.166011681511, + -189148.08464521947 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 950439.392680525, + 94998.66487738185 + ], + "y": [ + -6243.166011681511, + -189778.0564884073 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 950439.392680525, + 95681.96009977852 + ], + "y": [ + -6243.166011681511, + -188895.1305372902 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 950439.392680525, + 95501.99445714205 + ], + "y": [ + -6243.166011681511, + -189361.39928674913 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 950439.392680525, + 95451.74998648891 + ], + "y": [ + -6243.166011681511, + -189514.26395840745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -956642.0026505338, + 97377.6500584912 + ], + "y": [ + -521021.30094780907, + -188424.82223649055 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -956642.0026505338, + 96918.79607718707 + ], + "y": [ + -521021.30094780907, + -189093.07196799477 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -956642.0026505338, + 96959.17409848377 + ], + "y": [ + -521021.30094780907, + -188154.87099078548 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 801315.0897775844, + 97453.56935622763 + ], + "y": [ + 694713.1899190526, + -188823.15900221813 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 856763.4161872992, + 97492.36374902399 + ], + "y": [ + -910162.6660223072, + -188236.33672313037 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 856763.4161872992, + 97452.67144706869 + ], + "y": [ + -910162.6660223072, + -188290.4882788216 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 543040.1381149603, + 97467.97384514623 + ], + "y": [ + -774909.9996208384, + -188591.75199645569 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -190477.9447491629, + 96643.07015445872 + ], + "y": [ + 320117.776495078, + -188345.75062919507 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -190477.9447491629, + 96616.28197124632 + ], + "y": [ + 320117.776495078, + -189486.94419473826 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -190477.9447491629, + 96611.07880435153 + ], + "y": [ + 320117.776495078, + -189045.68105489522 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -316220.8201520302, + 95591.49480913648 + ], + "y": [ + -547323.1177429256, + -188680.97177115767 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -316220.8201520302, + 96743.02101349403 + ], + "y": [ + -547323.1177429256, + -187854.13914095613 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -316220.8201520302, + 96450.68991158345 + ], + "y": [ + -547323.1177429256, + -187620.89247314315 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 470707.5911725738, + 96877.98110658897 + ], + "y": [ + 654473.3768154809, + -187749.7848825597 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 470707.5911725738, + 97082.82303991095 + ], + "y": [ + 654473.3768154809, + -187628.5971893858 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 470707.5911725738, + 98237.07311872549 + ], + "y": [ + 654473.3768154809, + -186283.60700347682 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 470707.5911725738, + 97435.85714721317 + ], + "y": [ + 654473.3768154809, + -186870.78214397354 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -40084.87664969729, + 96347.73945345664 + ], + "y": [ + -554026.6105989073, + -189075.78000835242 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -40084.87664969729, + 98753.0342330029 + ], + "y": [ + -554026.6105989073, + -189556.635346552 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -40084.87664969729, + 97389.05654094371 + ], + "y": [ + -554026.6105989073, + -190524.42466711518 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -40084.87664969729, + 97350.06903114164 + ], + "y": [ + -554026.6105989073, + -189972.3782485477 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -40084.87664969729, + 97254.23934987192 + ], + "y": [ + -554026.6105989073, + -190110.09263707226 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -40084.87664969729, + 96919.826641072 + ], + "y": [ + -554026.6105989073, + -189723.06164490216 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -40084.87664969729, + 97357.32608817489 + ], + "y": [ + -554026.6105989073, + -190104.18934124312 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -40084.87664969729, + 97311.70614692672 + ], + "y": [ + -554026.6105989073, + -191447.36757318178 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -40084.87664969729, + 96312.49145069612 + ], + "y": [ + -554026.6105989073, + -189487.1728230268 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 330812.40467371355, + 97740.36484145897 + ], + "y": [ + 40335.22057385208, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 332347.5294036897, + 97740.36484145897 + ], + "y": [ + 774172.9920404115, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -968835.1525967998, + 97740.36484145897 + ], + "y": [ + -279877.61613975046, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 902764.2360196946, + 97342.74090899815 + ], + "y": [ + 585072.4377650085, + -188337.61728350184 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 896641.9692342175, + 97676.19241492003 + ], + "y": [ + 405049.85986093513, + -188634.22396120222 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 896641.9692342175, + 97533.87560124022 + ], + "y": [ + 405049.85986093513, + -188577.10958302955 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 896641.9692342175, + 96983.61207113188 + ], + "y": [ + 405049.85986093513, + -188609.33112603877 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 896641.9692342175, + 97042.01258952515 + ], + "y": [ + 405049.85986093513, + -187678.114505735 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -21448.410189587543, + 97651.32746016643 + ], + "y": [ + 232440.3037218077, + -187393.45287008572 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -21448.410189587543, + 97136.55546326986 + ], + "y": [ + 232440.3037218077, + -187444.98398375107 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -21448.410189587543, + 97605.64203060168 + ], + "y": [ + 232440.3037218077, + -187212.75750088846 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -21448.410189587543, + 97499.57548817585 + ], + "y": [ + 232440.3037218077, + -187430.50547179487 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -21448.410189587543, + 97615.00090956 + ], + "y": [ + 232440.3037218077, + -187206.375494998 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -21448.410189587543, + 97672.92128722146 + ], + "y": [ + 232440.3037218077, + -187142.3027271855 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 957697.1302399324, + 97634.83104178979 + ], + "y": [ + -25362.31872866912, + -189125.41464985392 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 95512.48672079766 + ], + "y": [ + -248481.98492127337, + -185759.04101010459 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 95520.58581704031 + ], + "y": [ + -248481.98492127337, + -184987.91450924633 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96295.26828740547 + ], + "y": [ + -248481.98492127337, + -186636.99979215744 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96282.43445699873 + ], + "y": [ + -248481.98492127337, + -187026.07843949736 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96568.35948892368 + ], + "y": [ + -248481.98492127337, + -186362.3442443084 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96305.70007753118 + ], + "y": [ + -248481.98492127337, + -184641.7612714999 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96281.6988740464 + ], + "y": [ + -248481.98492127337, + -186631.89998789044 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96634.97232577665 + ], + "y": [ + -248481.98492127337, + -185684.77267411654 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96658.50723704832 + ], + "y": [ + -248481.98492127337, + -185952.0045384303 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96327.25960947742 + ], + "y": [ + -248481.98492127337, + -184904.78554636845 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96412.87128274282 + ], + "y": [ + -248481.98492127337, + -184466.17568020654 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 95612.05251687022 + ], + "y": [ + -248481.98492127337, + -187733.16720291993 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96308.17494820403 + ], + "y": [ + -248481.98492127337, + -186005.44685669165 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96460.09274444025 + ], + "y": [ + -248481.98492127337, + -185619.78884854354 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96049.36643690022 + ], + "y": [ + -248481.98492127337, + -185702.8268145955 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96412.62955632774 + ], + "y": [ + -248481.98492127337, + -186641.42486820777 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96616.7559403405 + ], + "y": [ + -248481.98492127337, + -186086.34378531418 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96519.5204681799 + ], + "y": [ + -248481.98492127337, + -186293.45287911844 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97093.69642855125 + ], + "y": [ + -248481.98492127337, + -186774.72272855093 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96679.99009179635 + ], + "y": [ + -248481.98492127337, + -186590.54840473336 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 95633.12109295135 + ], + "y": [ + -248481.98492127337, + -185178.65674855074 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96619.3340165115 + ], + "y": [ + -248481.98492127337, + -185915.41451703524 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96150.03424362313 + ], + "y": [ + -248481.98492127337, + -185024.2525256191 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 95937.7713444444 + ], + "y": [ + -248481.98492127337, + -187101.25689315388 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96585.71992460922 + ], + "y": [ + -248481.98492127337, + -186246.8336915767 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96491.68898578656 + ], + "y": [ + -248481.98492127337, + -185785.58597568647 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 95350.83394336532 + ], + "y": [ + -248481.98492127337, + -186910.03493563386 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96134.20248253406 + ], + "y": [ + -248481.98492127337, + -184853.0590167661 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96072.38567279669 + ], + "y": [ + -248481.98492127337, + -186226.79838547923 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96772.82588738113 + ], + "y": [ + -248481.98492127337, + -186901.84865346336 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96977.58687203821 + ], + "y": [ + -248481.98492127337, + -186721.96101630855 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96304.58681365351 + ], + "y": [ + -248481.98492127337, + -184537.33337450697 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96251.19968281969 + ], + "y": [ + -248481.98492127337, + -185045.17257071825 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96108.91834438108 + ], + "y": [ + -248481.98492127337, + -185015.8206856978 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96778.70350523331 + ], + "y": [ + -248481.98492127337, + -186804.32931589548 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96382.02705846845 + ], + "y": [ + -248481.98492127337, + -184581.5176270497 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 94634.35092199444 + ], + "y": [ + -248481.98492127337, + -185481.01398954104 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96601.97537172223 + ], + "y": [ + -248481.98492127337, + -186732.67988941015 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96473.43688595422 + ], + "y": [ + -248481.98492127337, + -184625.82608792314 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96422.64317562626 + ], + "y": [ + -248481.98492127337, + -186816.72669112886 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96431.47888012671 + ], + "y": [ + -248481.98492127337, + -184583.06480907716 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96636.83424445745 + ], + "y": [ + -248481.98492127337, + -185882.0659107163 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96056.19248735494 + ], + "y": [ + -248481.98492127337, + -185038.89476309827 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96515.11905526402 + ], + "y": [ + -248481.98492127337, + -185605.49639890593 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96660.38035113053 + ], + "y": [ + -248481.98492127337, + -186050.83831655356 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 95774.24926109349 + ], + "y": [ + -248481.98492127337, + -185545.91429343188 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97585.87618383576 + ], + "y": [ + -248481.98492127337, + -185541.4531936617 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96583.5257472604 + ], + "y": [ + -248481.98492127337, + -186168.82581792577 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 95122.89837108535 + ], + "y": [ + -248481.98492127337, + -186748.98809619094 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96605.90599322402 + ], + "y": [ + -248481.98492127337, + -186212.79235782122 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96038.36554774032 + ], + "y": [ + -248481.98492127337, + -185138.3043013017 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96031.4993704607 + ], + "y": [ + -248481.98492127337, + -185886.66303952422 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96675.71260270195 + ], + "y": [ + -248481.98492127337, + -185943.81351701595 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97049.512435505 + ], + "y": [ + -248481.98492127337, + -187223.2607479505 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96433.845799983 + ], + "y": [ + -248481.98492127337, + -186155.98693221714 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 95897.07037264043 + ], + "y": [ + -248481.98492127337, + -186745.5325164879 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96960.27176327427 + ], + "y": [ + -248481.98492127337, + -185873.2153007946 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96307.85692216411 + ], + "y": [ + -248481.98492127337, + -184956.02375735843 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96242.35848519257 + ], + "y": [ + -248481.98492127337, + -184916.01122916443 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96819.81129369602 + ], + "y": [ + -248481.98492127337, + -187298.0167096983 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97249.8102467086 + ], + "y": [ + -248481.98492127337, + -186400.0437673064 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96108.87427334944 + ], + "y": [ + -248481.98492127337, + -186436.31884006507 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97349.66316971318 + ], + "y": [ + -248481.98492127337, + -186909.73673779095 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97012.3360267975 + ], + "y": [ + -248481.98492127337, + -185995.1502748551 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96330.17839103569 + ], + "y": [ + -248481.98492127337, + -184615.0971850325 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 98400.16393508099 + ], + "y": [ + -248481.98492127337, + -187360.11530786066 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96728.43531848033 + ], + "y": [ + -248481.98492127337, + -185731.06588292573 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 95819.22417527653 + ], + "y": [ + -248481.98492127337, + -185203.40536363234 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97357.92552252565 + ], + "y": [ + -248481.98492127337, + -186738.0081330498 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96299.78998071494 + ], + "y": [ + -248481.98492127337, + -184452.34215766398 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97385.46389592621 + ], + "y": [ + -248481.98492127337, + -186427.8924649136 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97411.8360170104 + ], + "y": [ + -248481.98492127337, + -185642.1433378504 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97204.89839977278 + ], + "y": [ + -248481.98492127337, + -186666.6053800214 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96463.30750173924 + ], + "y": [ + -248481.98492127337, + -185815.18416524283 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96598.60562028212 + ], + "y": [ + -248481.98492127337, + -186758.5541269017 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 95896.43296916565 + ], + "y": [ + -248481.98492127337, + -187178.7309685011 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96091.45432140626 + ], + "y": [ + -248481.98492127337, + -185344.84167674318 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97311.35174306807 + ], + "y": [ + -248481.98492127337, + -186299.91453282413 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96200.70472225144 + ], + "y": [ + -248481.98492127337, + -184913.47542316676 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97500.53674710442 + ], + "y": [ + -248481.98492127337, + -186120.90133707918 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96082.33537164425 + ], + "y": [ + -248481.98492127337, + -186355.57333992186 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96477.12621197902 + ], + "y": [ + -248481.98492127337, + -186189.16120161928 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96347.4403938442 + ], + "y": [ + -248481.98492127337, + -184489.52291589003 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96763.1280194511 + ], + "y": [ + -248481.98492127337, + -186020.49632337195 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96773.35799206587 + ], + "y": [ + -248481.98492127337, + -185978.46454360176 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96670.27291581893 + ], + "y": [ + -248481.98492127337, + -186423.1890183184 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 94870.7294183785 + ], + "y": [ + -248481.98492127337, + -186357.39136631842 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96530.4881400899 + ], + "y": [ + -248481.98492127337, + -186197.9689961989 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 95996.08028297019 + ], + "y": [ + -248481.98492127337, + -185022.86408063665 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 95648.0622321095 + ], + "y": [ + -248481.98492127337, + -187501.80648056217 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 95765.59330845765 + ], + "y": [ + -248481.98492127337, + -184448.27042316197 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96347.57634764894 + ], + "y": [ + -248481.98492127337, + -185456.1454266718 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96313.51649151853 + ], + "y": [ + -248481.98492127337, + -186332.64294302047 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96240.89790514634 + ], + "y": [ + -248481.98492127337, + -184782.3347015735 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97253.59328958677 + ], + "y": [ + -248481.98492127337, + -186335.73632380622 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96585.02524485815 + ], + "y": [ + -248481.98492127337, + -186471.46349538234 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97110.64567914454 + ], + "y": [ + -248481.98492127337, + -186139.010172475 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96401.05087142391 + ], + "y": [ + -248481.98492127337, + -186316.0422884422 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97634.16117706981 + ], + "y": [ + -248481.98492127337, + -185427.96582922543 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97632.23610323192 + ], + "y": [ + -248481.98492127337, + -185447.0419864294 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96476.9266197321 + ], + "y": [ + -248481.98492127337, + -184490.70631354378 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96143.59715704634 + ], + "y": [ + -248481.98492127337, + -184939.12159409848 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96442.3959926909 + ], + "y": [ + -248481.98492127337, + -185499.81083646082 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97173.67520609817 + ], + "y": [ + -248481.98492127337, + -185420.27932112452 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97452.54296459325 + ], + "y": [ + -248481.98492127337, + -186178.47202606747 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 98764.71093073962 + ], + "y": [ + -248481.98492127337, + -185579.11398649425 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 94675.58068459465 + ], + "y": [ + -248481.98492127337, + -162543.04429998007 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96584.45858311476 + ], + "y": [ + -248481.98492127337, + -185402.97734600544 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96074.51018899358 + ], + "y": [ + -248481.98492127337, + -184648.39875714693 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96941.3855747379 + ], + "y": [ + -248481.98492127337, + -185873.0454380232 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96481.93148257826 + ], + "y": [ + -248481.98492127337, + -185520.70192438262 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96194.20097196527 + ], + "y": [ + -248481.98492127337, + -185045.13302486815 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96410.63417003947 + ], + "y": [ + -248481.98492127337, + -184686.93743150224 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96268.58433157318 + ], + "y": [ + -248481.98492127337, + -184749.34739859024 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96844.08726268722 + ], + "y": [ + -248481.98492127337, + -184975.0257556787 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96732.61589548577 + ], + "y": [ + -248481.98492127337, + -186494.74258418888 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97054.54306076036 + ], + "y": [ + -248481.98492127337, + -186002.60660400984 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96736.36947326055 + ], + "y": [ + -248481.98492127337, + -185421.69274864852 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 95950.87856285187 + ], + "y": [ + -248481.98492127337, + -184586.8813999643 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96058.5884161396 + ], + "y": [ + -248481.98492127337, + -185681.38668976224 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96074.46008448287 + ], + "y": [ + -248481.98492127337, + -186353.07679074036 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96373.61215631547 + ], + "y": [ + -248481.98492127337, + -185564.40303426507 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96774.68889401545 + ], + "y": [ + -248481.98492127337, + -186002.1139085686 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 95954.6226953649 + ], + "y": [ + -248481.98492127337, + -185305.14466217102 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97375.91125894338 + ], + "y": [ + -248481.98492127337, + -185778.17229121647 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96762.60907180404 + ], + "y": [ + -248481.98492127337, + -186985.55167581502 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96892.63356474544 + ], + "y": [ + -248481.98492127337, + -186263.96942212473 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96499.75723381033 + ], + "y": [ + -248481.98492127337, + -185857.1772490468 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96294.09088720444 + ], + "y": [ + -248481.98492127337, + -185285.2393191878 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96966.39468034501 + ], + "y": [ + -248481.98492127337, + -187056.932365551 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96109.50994722702 + ], + "y": [ + -248481.98492127337, + -184676.4950788661 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96088.99615148573 + ], + "y": [ + -248481.98492127337, + -184930.69103318956 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96447.29551553998 + ], + "y": [ + -248481.98492127337, + -185654.1953572347 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 95819.44644735986 + ], + "y": [ + -248481.98492127337, + -184539.2197937198 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96218.35482989937 + ], + "y": [ + -248481.98492127337, + -185426.67525594652 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 95899.18906383448 + ], + "y": [ + -248481.98492127337, + -185125.95912239008 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96769.01595020863 + ], + "y": [ + -248481.98492127337, + -186228.52516030474 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96274.30300397708 + ], + "y": [ + -248481.98492127337, + -185197.58467855424 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96042.0069575773 + ], + "y": [ + -248481.98492127337, + -184440.56367975674 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97385.79270355738 + ], + "y": [ + -248481.98492127337, + -185759.1915587864 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96229.39248836122 + ], + "y": [ + -248481.98492127337, + -185972.1252497052 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96126.32784334563 + ], + "y": [ + -248481.98492127337, + -186192.2420612465 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96635.17803046739 + ], + "y": [ + -248481.98492127337, + -185572.22568055146 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96526.03756640776 + ], + "y": [ + -248481.98492127337, + -184521.98992331282 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96032.39838433285 + ], + "y": [ + -248481.98492127337, + -184716.55236438496 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97463.6827927217 + ], + "y": [ + -248481.98492127337, + -187315.42788165333 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 95854.85581067526 + ], + "y": [ + -248481.98492127337, + -186517.17238975927 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96404.04885412315 + ], + "y": [ + -248481.98492127337, + -185020.17742510125 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96940.5437378161 + ], + "y": [ + -248481.98492127337, + -186047.50278945875 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96906.44900909 + ], + "y": [ + -248481.98492127337, + -186067.006560711 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96406.17290872385 + ], + "y": [ + -248481.98492127337, + -185935.95217366592 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97193.59098538685 + ], + "y": [ + -248481.98492127337, + -187267.3268205127 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97229.6312230193 + ], + "y": [ + -248481.98492127337, + -186480.07163780744 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96433.95166449582 + ], + "y": [ + -248481.98492127337, + -185251.66599737256 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97275.9101009866 + ], + "y": [ + -248481.98492127337, + -186588.42377164616 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96243.29294451735 + ], + "y": [ + -248481.98492127337, + -185212.56249281162 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97395.09075685765 + ], + "y": [ + -248481.98492127337, + -185768.74376793872 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96491.31294403854 + ], + "y": [ + -248481.98492127337, + -184566.5211927391 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96377.89286649457 + ], + "y": [ + -248481.98492127337, + -184641.3699119499 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 96395.26906016511 + ], + "y": [ + -248481.98492127337, + -184521.26817218866 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 482919.71377339005, + 97324.02537320471 + ], + "y": [ + -248481.98492127337, + -187072.0455521363 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -922113.7465409437, + 97620.07637011069 + ], + "y": [ + -560953.9048498886, + -187795.37604648358 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -115988.0603293435, + 97651.32746016643 + ], + "y": [ + -519433.26064300345, + -187393.45287008572 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -115988.0603293435, + 97136.55546326986 + ], + "y": [ + -519433.26064300345, + -187444.98398375107 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -115988.0603293435, + 97605.64203060168 + ], + "y": [ + -519433.26064300345, + -187212.75750088846 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -115988.0603293435, + 97499.57548817585 + ], + "y": [ + -519433.26064300345, + -187430.50547179487 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -115988.0603293435, + 97615.00090956 + ], + "y": [ + -519433.26064300345, + -187206.375494998 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -115988.0603293435, + 97672.92128722146 + ], + "y": [ + -519433.26064300345, + -187142.3027271855 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 320720.9523268768, + 96147.39169169297 + ], + "y": [ + 184701.89774695545, + -189725.6419856943 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -183915.13182539286, + 97643.64988982778 + ], + "y": [ + 893827.7421553927, + -187757.4125399983 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -183915.13182539286, + 97033.93508477152 + ], + "y": [ + 893827.7421553927, + -187976.81833544138 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -183915.13182539286, + 97602.881367329 + ], + "y": [ + 893827.7421553927, + -187648.12160933763 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 467586.5371865227, + 97306.68660394431 + ], + "y": [ + -828817.328114863, + -189190.69568859632 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 467586.5371865227, + 97519.14188663122 + ], + "y": [ + -828817.328114863, + -188648.39727075843 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 467586.5371865227, + 96800.95464898097 + ], + "y": [ + -828817.328114863, + -188995.8386599755 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 467586.5371865227, + 96931.14707892697 + ], + "y": [ + -828817.328114863, + -188818.68200287974 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 155810.07246206168, + 97155.50811563137 + ], + "y": [ + 750487.891196061, + -188696.13322752403 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 155810.07246206168, + 96918.79607718707 + ], + "y": [ + 750487.891196061, + -189093.07196799477 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 155810.07246206168, + 96612.17178282065 + ], + "y": [ + 750487.891196061, + -188681.37081393888 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -255273.7184953122, + 98171.17574764158 + ], + "y": [ + 508993.2816321345, + -188070.50402783387 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 683377.9850822419, + 96541.43397278279 + ], + "y": [ + 540210.7149106248, + -189274.10474049454 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 683377.9850822419, + 96167.45474416234 + ], + "y": [ + 540210.7149106248, + -189265.0331807753 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 683377.9850822419, + 95870.52327035548 + ], + "y": [ + 540210.7149106248, + -189023.51159242663 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 683377.9850822419, + 96926.74644690406 + ], + "y": [ + 540210.7149106248, + -189150.0722038921 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 683377.9850822419, + 96878.0650637567 + ], + "y": [ + 540210.7149106248, + -188785.27223021127 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 683377.9850822419, + 96356.62202527624 + ], + "y": [ + 540210.7149106248, + -189202.4647666379 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -820786.1217632035, + 97610.48729478249 + ], + "y": [ + -373173.5110220982, + -188283.2622476873 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -820786.1217632035, + 97375.10606040448 + ], + "y": [ + -373173.5110220982, + -188647.58850257998 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -820786.1217632035, + 98168.55916640947 + ], + "y": [ + -373173.5110220982, + -187775.4606762898 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -514479.34659976815, + 97401.99871940678 + ], + "y": [ + -303596.317152965, + -189047.84983436737 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -514479.34659976815, + 96722.2929728447 + ], + "y": [ + -303596.317152965, + -188214.95290711892 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -514479.34659976815, + 97054.36607374287 + ], + "y": [ + -303596.317152965, + -187829.60079496383 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -514479.34659976815, + 96603.25260090239 + ], + "y": [ + -303596.317152965, + -188860.81131323622 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -158992.66117613608, + 98932.31091884513 + ], + "y": [ + 414595.30767788057, + -187594.8777657927 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -158992.66117613608, + 98926.20655583622 + ], + "y": [ + 414595.30767788057, + -188109.5947916895 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -158992.66117613608, + 98881.20399257346 + ], + "y": [ + 414595.30767788057, + -188135.7951117508 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -158992.66117613608, + 98873.6590998779 + ], + "y": [ + 414595.30767788057, + -188126.67429510137 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -158992.66117613608, + 98776.08147395353 + ], + "y": [ + 414595.30767788057, + -188068.89540782082 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -158992.66117613608, + 98916.08043593282 + ], + "y": [ + 414595.30767788057, + -188138.17806449422 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -158992.66117613608, + 98775.64297666437 + ], + "y": [ + 414595.30767788057, + -188113.8147030654 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -158992.66117613608, + 98833.5386160878 + ], + "y": [ + 414595.30767788057, + -188119.49823623613 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -158992.66117613608, + 98779.4951496633 + ], + "y": [ + 414595.30767788057, + -188123.9780570342 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -158992.66117613608, + 98769.87019965112 + ], + "y": [ + 414595.30767788057, + -188121.51859750494 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -158992.66117613608, + 98763.69912444155 + ], + "y": [ + 414595.30767788057, + -188082.81454332572 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -158992.66117613608, + 98715.38337956829 + ], + "y": [ + 414595.30767788057, + -188023.85098966694 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -158992.66117613608, + 98838.01226486915 + ], + "y": [ + 414595.30767788057, + -188038.4334288893 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -158992.66117613608, + 98731.25835265023 + ], + "y": [ + 414595.30767788057, + -188097.6602407291 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -158992.66117613608, + 98794.9356782363 + ], + "y": [ + 414595.30767788057, + -188124.65543545736 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -158992.66117613608, + 98875.12446310604 + ], + "y": [ + 414595.30767788057, + -188079.8329504583 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -158992.66117613608, + 98845.6917714939 + ], + "y": [ + 414595.30767788057, + -188129.3743830729 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 674390.0901959051, + 97598.41715003968 + ], + "y": [ + 19484.603545775193, + -187109.55145493208 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 674390.0901959051, + 97191.15673842629 + ], + "y": [ + 19484.603545775193, + -186870.85476427 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -545638.2423811845, + 97554.49945784982 + ], + "y": [ + -461024.5494484895, + -188380.61838572615 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 604934.7306536661, + 97136.55546326986 + ], + "y": [ + -47611.78987915504, + -187444.98398375107 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 604934.7306536661, + 97605.64203060168 + ], + "y": [ + -47611.78987915504, + -187212.75750088846 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 604934.7306536661, + 97651.32746016643 + ], + "y": [ + -47611.78987915504, + -187393.45287008572 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 604934.7306536661, + 97499.57548817585 + ], + "y": [ + -47611.78987915504, + -187430.50547179487 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 604934.7306536661, + 97615.00090956 + ], + "y": [ + -47611.78987915504, + -187206.375494998 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 604934.7306536661, + 97672.92128722146 + ], + "y": [ + -47611.78987915504, + -187142.3027271855 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -162966.46759127188, + 96994.3545714313 + ], + "y": [ + 88180.55865862906, + -187896.4403547719 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -162966.46759127188, + 96415.73464421919 + ], + "y": [ + 88180.55865862906, + -186832.87175251383 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -162966.46759127188, + 96234.84158094184 + ], + "y": [ + 88180.55865862906, + -188228.79178433472 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 914467.6632273761, + 97792.47295206528 + ], + "y": [ + 988228.6950640721, + -188560.0382335581 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -881198.5201276346, + 97740.36484145897 + ], + "y": [ + 357677.7559037796, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 393875.6303361353, + 96462.81227754163 + ], + "y": [ + 121526.15548473045, + -189116.42239682464 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -173691.57445018858, + 97740.36484145897 + ], + "y": [ + 698793.2608907002, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 97852.29653105894 + ], + "y": [ + -487152.4830132172, + -187271.2309208508 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 97497.28727853562 + ], + "y": [ + -487152.4830132172, + -188311.63055655325 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 97343.57538035887 + ], + "y": [ + -487152.4830132172, + -187739.67693354897 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 97366.39316478191 + ], + "y": [ + -487152.4830132172, + -187063.92444055318 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 97781.84828947709 + ], + "y": [ + -487152.4830132172, + -187917.59257197715 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 98514.4612858039 + ], + "y": [ + -487152.4830132172, + -187718.91875175654 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 98281.43831840085 + ], + "y": [ + -487152.4830132172, + -187835.8854861633 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 97921.70930511011 + ], + "y": [ + -487152.4830132172, + -186803.90033266746 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 97902.18401137421 + ], + "y": [ + -487152.4830132172, + -186803.59234443662 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 98983.632695647 + ], + "y": [ + -487152.4830132172, + -187788.5747429511 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 99203.2809335762 + ], + "y": [ + -487152.4830132172, + -187893.88302668915 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 98509.44614370928 + ], + "y": [ + -487152.4830132172, + -187975.0076209473 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 96494.98600367835 + ], + "y": [ + -487152.4830132172, + -188925.1717325238 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 98740.78608913493 + ], + "y": [ + -487152.4830132172, + -188021.2228785292 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 99612.16066233935 + ], + "y": [ + -487152.4830132172, + -187932.34492398132 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 100399.53610597138 + ], + "y": [ + -487152.4830132172, + -188182.1801783731 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 99242.27473376936 + ], + "y": [ + -487152.4830132172, + -187688.50752132258 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 97873.62352691275 + ], + "y": [ + -487152.4830132172, + -188117.50710319917 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 98601.01896303026 + ], + "y": [ + -487152.4830132172, + -187793.53772320974 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 97723.80989181406 + ], + "y": [ + -487152.4830132172, + -188261.16935105162 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 98367.93488464183 + ], + "y": [ + -487152.4830132172, + -187834.80609488173 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 98698.73643764145 + ], + "y": [ + -487152.4830132172, + -188539.05431916684 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 98474.73668821216 + ], + "y": [ + -487152.4830132172, + -187997.42121583116 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 97769.5225019777 + ], + "y": [ + -487152.4830132172, + -187612.6161505803 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 98424.79828892439 + ], + "y": [ + -487152.4830132172, + -187887.72467534128 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 98849.99134497087 + ], + "y": [ + -487152.4830132172, + -187994.01573117293 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 97153.8202347327 + ], + "y": [ + -487152.4830132172, + -186612.36184898173 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 97784.87511330319 + ], + "y": [ + -487152.4830132172, + -187574.2721654691 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 98488.59232974793 + ], + "y": [ + -487152.4830132172, + -188185.43487919736 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 97835.98880603131 + ], + "y": [ + -487152.4830132172, + -187645.64505814915 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 98697.76296828069 + ], + "y": [ + -487152.4830132172, + -187791.77040384425 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 98425.30418388022 + ], + "y": [ + -487152.4830132172, + -187981.65234561847 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 97352.5478411118 + ], + "y": [ + -487152.4830132172, + -188328.62880040111 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 99087.60514794616 + ], + "y": [ + -487152.4830132172, + -186953.31740903624 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 99562.51936967154 + ], + "y": [ + -487152.4830132172, + -188465.46750448947 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 97438.32392949228 + ], + "y": [ + -487152.4830132172, + -187228.86858406416 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 99581.18821252153 + ], + "y": [ + -487152.4830132172, + -187937.28779075225 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 98484.49246054886 + ], + "y": [ + -487152.4830132172, + -187728.251997722 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 98589.19418356709 + ], + "y": [ + -487152.4830132172, + -187741.77573005384 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 99047.9458477898 + ], + "y": [ + -487152.4830132172, + -187158.59874792627 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 97904.87372888521 + ], + "y": [ + -487152.4830132172, + -187975.58965748092 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 98685.34030967425 + ], + "y": [ + -487152.4830132172, + -187927.83620065072 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 97236.56543939441 + ], + "y": [ + -487152.4830132172, + -186563.98191544128 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 101734.4186530189, + 98552.63522931661 + ], + "y": [ + -487152.4830132172, + -187904.33904992894 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 102890.59825682867, + 97306.68660394431 + ], + "y": [ + -955940.2429958172, + -189190.69568859632 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 102890.59825682867, + 97519.14188663122 + ], + "y": [ + -955940.2429958172, + -188648.39727075843 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 102890.59825682867, + 96931.14707892697 + ], + "y": [ + -955940.2429958172, + -188818.68200287974 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -709061.166520672, + 97440.7506574999 + ], + "y": [ + -701703.5223337576, + -186517.6751626997 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -704117.2696122591, + 97375.10606040448 + ], + "y": [ + 229654.94053449653, + -188647.58850257998 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -704117.2696122591, + 96448.97691094204 + ], + "y": [ + 229654.94053449653, + -188788.84774377767 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -704117.2696122591, + 96722.2929728447 + ], + "y": [ + 229654.94053449653, + -188214.95290711892 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 82695.01147360781, + 97272.57643613985 + ], + "y": [ + -395110.0598072463, + -187457.0743764612 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 82695.01147360781, + 96709.59744547942 + ], + "y": [ + -395110.0598072463, + -187427.58017047317 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 82695.01147360781, + 98547.70620576198 + ], + "y": [ + -395110.0598072463, + -186780.2984968334 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 82695.01147360781, + 97115.24870623546 + ], + "y": [ + -395110.0598072463, + -187516.61720349116 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 892639.6045231073, + 96930.11819667481 + ], + "y": [ + 257602.165830513, + -188036.28044668204 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 892639.6045231073, + 97074.16623154836 + ], + "y": [ + 257602.165830513, + -187566.1094978599 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 892639.6045231073, + 96568.92366528956 + ], + "y": [ + 257602.165830513, + -187881.7928789883 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -407373.19441791973, + 98713.83774017166 + ], + "y": [ + 121612.0765485973, + -187307.95076337553 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -407373.19441791973, + 98345.9554260893 + ], + "y": [ + 121612.0765485973, + -187950.03622824297 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -407373.19441791973, + 97740.55752143663 + ], + "y": [ + 121612.0765485973, + -187244.0460795401 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -542090.163883535, + 97988.18684320113 + ], + "y": [ + 406139.1365539877, + -187306.8260455551 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -542090.163883535, + 99349.28939642792 + ], + "y": [ + 406139.1365539877, + -186941.09836380862 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 383602.4527648727, + 96556.14889918086 + ], + "y": [ + 873399.66086256, + -187281.55271362027 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 383602.4527648727, + 99625.77747749203 + ], + "y": [ + 873399.66086256, + -184627.2559353374 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 383602.4527648727, + 98427.86290460796 + ], + "y": [ + 873399.66086256, + -187265.23927959087 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 587710.1196072107, + 97740.36484145897 + ], + "y": [ + 948537.932093139, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 326147.5533448339, + 97468.41119559384 + ], + "y": [ + 925076.9258288649, + -187879.37136154508 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -995533.7825129096, + 97532.46968364714 + ], + "y": [ + -94842.01072127352, + -187821.3765527352 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -995533.7825129096, + 97025.5243570638 + ], + "y": [ + -94842.01072127352, + -188384.35926426292 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 97403.19800982128 + ], + "y": [ + -172396.12733221232, + -187883.60479267285 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99189.38105820611 + ], + "y": [ + -172396.12733221232, + -187489.15417484118 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99130.3078520612 + ], + "y": [ + -172396.12733221232, + -186717.18778761072 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98512.10297397664 + ], + "y": [ + -172396.12733221232, + -186287.99929102132 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98519.8177010953 + ], + "y": [ + -172396.12733221232, + -187805.10710923118 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99017.67985713482 + ], + "y": [ + -172396.12733221232, + -187648.9973224916 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 97619.72683427205 + ], + "y": [ + -172396.12733221232, + -186146.62535800086 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98914.83209812317 + ], + "y": [ + -172396.12733221232, + -187493.66055654176 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98147.84267591721 + ], + "y": [ + -172396.12733221232, + -187627.45216360627 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 97949.55637290105 + ], + "y": [ + -172396.12733221232, + -187246.44784323307 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99502.83924873942 + ], + "y": [ + -172396.12733221232, + -186544.6994452667 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98872.0205731119 + ], + "y": [ + -172396.12733221232, + -188210.8583614681 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98390.87404103394 + ], + "y": [ + -172396.12733221232, + -187744.5423702615 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99053.11429206465 + ], + "y": [ + -172396.12733221232, + -188036.86055892534 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 102016.60254936705 + ], + "y": [ + -172396.12733221232, + -179133.13735543872 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98075.21405525423 + ], + "y": [ + -172396.12733221232, + -187953.2923392146 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99162.58751241713 + ], + "y": [ + -172396.12733221232, + -187258.52951028265 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99982.38307176298 + ], + "y": [ + -172396.12733221232, + -186551.5718918603 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98292.59127337417 + ], + "y": [ + -172396.12733221232, + -186296.09077217794 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 100060.98457894419 + ], + "y": [ + -172396.12733221232, + -185926.73089974615 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99185.22072761349 + ], + "y": [ + -172396.12733221232, + -185395.93395849012 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 97947.04358444022 + ], + "y": [ + -172396.12733221232, + -185879.15090298475 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 97474.60738990385 + ], + "y": [ + -172396.12733221232, + -186605.81963314634 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99170.7047386012 + ], + "y": [ + -172396.12733221232, + -186705.75237789055 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98052.15218821482 + ], + "y": [ + -172396.12733221232, + -186345.44096085647 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98616.68136712202 + ], + "y": [ + -172396.12733221232, + -186875.28527664224 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99500.63364741569 + ], + "y": [ + -172396.12733221232, + -187527.73357511935 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98316.9751512879 + ], + "y": [ + -172396.12733221232, + -187567.52052119686 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99176.98993944687 + ], + "y": [ + -172396.12733221232, + -187774.1615382006 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99162.04598470115 + ], + "y": [ + -172396.12733221232, + -187413.64255787656 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 97788.31675277463 + ], + "y": [ + -172396.12733221232, + -186699.2701887279 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 100348.89954635833 + ], + "y": [ + -172396.12733221232, + -185739.58717722545 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99148.26930216937 + ], + "y": [ + -172396.12733221232, + -187270.5390270905 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 100486.82668676783 + ], + "y": [ + -172396.12733221232, + -185576.15263923115 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99758.98817475478 + ], + "y": [ + -172396.12733221232, + -186350.72668639437 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 96889.7794321626 + ], + "y": [ + -172396.12733221232, + -185754.93903104283 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99026.6226858807 + ], + "y": [ + -172396.12733221232, + -187305.67084880813 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99069.25619307961 + ], + "y": [ + -172396.12733221232, + -187046.43325413764 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 101823.31476410347 + ], + "y": [ + -172396.12733221232, + -184234.61115541728 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98379.14339417113 + ], + "y": [ + -172396.12733221232, + -186972.57418070477 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 101380.81652138675 + ], + "y": [ + -172396.12733221232, + -183824.5305223081 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99254.27452910501 + ], + "y": [ + -172396.12733221232, + -188073.66592800152 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99227.13583415966 + ], + "y": [ + -172396.12733221232, + -187728.06688195525 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98212.04884196128 + ], + "y": [ + -172396.12733221232, + -188874.14340416354 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99094.77135415385 + ], + "y": [ + -172396.12733221232, + -188459.36009707808 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98915.86627395742 + ], + "y": [ + -172396.12733221232, + -190374.15560172813 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98121.78812235915 + ], + "y": [ + -172396.12733221232, + -189063.428793386 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99010.43098706538 + ], + "y": [ + -172396.12733221232, + -188003.3208638465 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99006.76819217965 + ], + "y": [ + -172396.12733221232, + -187986.19049612174 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98421.28339426052 + ], + "y": [ + -172396.12733221232, + -189149.42833616625 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98918.94691074 + ], + "y": [ + -172396.12733221232, + -188614.21318785282 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98809.12475691538 + ], + "y": [ + -172396.12733221232, + -188591.14091919875 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99070.331362437 + ], + "y": [ + -172396.12733221232, + -187899.4374158756 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 97874.19535094783 + ], + "y": [ + -172396.12733221232, + -187973.27776270141 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98942.96036569965 + ], + "y": [ + -172396.12733221232, + -188306.96972666128 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98368.76399286573 + ], + "y": [ + -172396.12733221232, + -188623.6166852075 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 97911.02555719024 + ], + "y": [ + -172396.12733221232, + -188689.9069400571 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98818.24534258251 + ], + "y": [ + -172396.12733221232, + -188243.41945504982 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99191.65795239966 + ], + "y": [ + -172396.12733221232, + -187366.96961790608 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99272.95214509276 + ], + "y": [ + -172396.12733221232, + -188433.4935194492 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98629.16309416488 + ], + "y": [ + -172396.12733221232, + -188344.57017201104 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98896.61825153053 + ], + "y": [ + -172396.12733221232, + -188096.6720864056 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 97353.8831923671 + ], + "y": [ + -172396.12733221232, + -190042.38359170523 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98413.72450899602 + ], + "y": [ + -172396.12733221232, + -187776.081074906 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99048.52954857876 + ], + "y": [ + -172396.12733221232, + -188131.29016873462 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99860.44427206193 + ], + "y": [ + -172396.12733221232, + -188443.1461449862 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99875.65907184825 + ], + "y": [ + -172396.12733221232, + -186553.62133220496 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98991.31426615387 + ], + "y": [ + -172396.12733221232, + -188002.51793235893 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98545.72335094343 + ], + "y": [ + -172396.12733221232, + -187969.50621106548 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99143.15955432564 + ], + "y": [ + -172396.12733221232, + -187790.99540247666 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 97910.12779784399 + ], + "y": [ + -172396.12733221232, + -187346.30214189566 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98656.64266720755 + ], + "y": [ + -172396.12733221232, + -188420.23770977926 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98406.94597948619 + ], + "y": [ + -172396.12733221232, + -189713.61547225437 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 97476.14534117641 + ], + "y": [ + -172396.12733221232, + -189579.9504364677 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 97524.08090876219 + ], + "y": [ + -172396.12733221232, + -189111.4078263055 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99171.65872471192 + ], + "y": [ + -172396.12733221232, + -187949.63698018505 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99548.50572708945 + ], + "y": [ + -172396.12733221232, + -188522.7223023232 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 97949.35571979226 + ], + "y": [ + -172396.12733221232, + -187937.26783141587 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99391.34679357102 + ], + "y": [ + -172396.12733221232, + -188130.4537181713 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98722.02495329459 + ], + "y": [ + -172396.12733221232, + -187934.23814137233 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99374.50165106604 + ], + "y": [ + -172396.12733221232, + -188172.74538859082 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 97825.10446462789 + ], + "y": [ + -172396.12733221232, + -188739.05313596342 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 97650.77807951198 + ], + "y": [ + -172396.12733221232, + -188776.96293003074 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99091.39852136569 + ], + "y": [ + -172396.12733221232, + -187409.36259250416 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98663.5728126574 + ], + "y": [ + -172396.12733221232, + -188147.54710943915 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98159.03165818081 + ], + "y": [ + -172396.12733221232, + -188912.98663177204 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99060.55516943279 + ], + "y": [ + -172396.12733221232, + -187872.6633840466 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99070.36691418258 + ], + "y": [ + -172396.12733221232, + -187983.6774823736 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 94807.18741906618 + ], + "y": [ + -172396.12733221232, + -191242.41426244462 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99956.68584656977 + ], + "y": [ + -172396.12733221232, + -186152.69967393065 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99881.38194405592 + ], + "y": [ + -172396.12733221232, + -189386.63393714104 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99269.75421848508 + ], + "y": [ + -172396.12733221232, + -187511.94987432053 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98657.65560967932 + ], + "y": [ + -172396.12733221232, + -188311.50521847996 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99187.14420424569 + ], + "y": [ + -172396.12733221232, + -187429.57924484243 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99130.37213728795 + ], + "y": [ + -172396.12733221232, + -188069.86804999335 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98433.94367818839 + ], + "y": [ + -172396.12733221232, + -187683.73338858323 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98598.39852284717 + ], + "y": [ + -172396.12733221232, + -188441.93108825223 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99397.67295607875 + ], + "y": [ + -172396.12733221232, + -188229.31889099232 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 100062.94026884029 + ], + "y": [ + -172396.12733221232, + -187736.63135462272 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99683.93197275087 + ], + "y": [ + -172396.12733221232, + -187992.83317437719 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98942.47918301482 + ], + "y": [ + -172396.12733221232, + -188118.8223297085 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98372.2920372052 + ], + "y": [ + -172396.12733221232, + -187582.59747798453 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99106.89445006047 + ], + "y": [ + -172396.12733221232, + -187476.39314391202 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99057.76069575727 + ], + "y": [ + -172396.12733221232, + -187234.4612318493 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98225.6719769043 + ], + "y": [ + -172396.12733221232, + -188221.49233807725 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98965.17216239334 + ], + "y": [ + -172396.12733221232, + -188309.63351146277 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99161.06627467804 + ], + "y": [ + -172396.12733221232, + -187764.81958165232 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 100038.45200630881 + ], + "y": [ + -172396.12733221232, + -188226.41949047343 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99231.69745173643 + ], + "y": [ + -172396.12733221232, + -188297.22695862473 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99643.13410786055 + ], + "y": [ + -172396.12733221232, + -186800.93628583517 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99121.89628822553 + ], + "y": [ + -172396.12733221232, + -188080.7633837035 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98896.0953062042 + ], + "y": [ + -172396.12733221232, + -187297.44363830626 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98996.3949186886 + ], + "y": [ + -172396.12733221232, + -187963.97664086308 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99010.23040006083 + ], + "y": [ + -172396.12733221232, + -187969.50842343477 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99067.43224177675 + ], + "y": [ + -172396.12733221232, + -188021.3687563727 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98982.5538246546 + ], + "y": [ + -172396.12733221232, + -187972.53307352384 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99326.93888038411 + ], + "y": [ + -172396.12733221232, + -188078.52295971283 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 97455.17599729972 + ], + "y": [ + -172396.12733221232, + -188978.81025809547 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98980.69875328755 + ], + "y": [ + -172396.12733221232, + -188226.32844361593 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99685.34161040152 + ], + "y": [ + -172396.12733221232, + -187679.47433074287 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 100612.93716200726 + ], + "y": [ + -172396.12733221232, + -188763.44516650846 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99244.69832153102 + ], + "y": [ + -172396.12733221232, + -187724.4325574573 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99226.22079845401 + ], + "y": [ + -172396.12733221232, + -187610.1377688772 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99091.55472439228 + ], + "y": [ + -172396.12733221232, + -187354.91901122752 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99026.64548034257 + ], + "y": [ + -172396.12733221232, + -187993.51411086737 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98688.75667619119 + ], + "y": [ + -172396.12733221232, + -187185.02879405092 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99060.11730816362 + ], + "y": [ + -172396.12733221232, + -188028.29034553113 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99629.11999021804 + ], + "y": [ + -172396.12733221232, + -188188.52643226265 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99571.7539254891 + ], + "y": [ + -172396.12733221232, + -187803.06549553943 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99395.9830884571 + ], + "y": [ + -172396.12733221232, + -188463.31349680066 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99183.91384425001 + ], + "y": [ + -172396.12733221232, + -187834.08698576453 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99022.60912279715 + ], + "y": [ + -172396.12733221232, + -187975.40467572561 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 98991.26055747598 + ], + "y": [ + -172396.12733221232, + -187987.12541376214 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -534018.0751121859, + 99097.9010589485 + ], + "y": [ + -172396.12733221232, + -187517.9128709205 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -830220.9718566176, + 98904.92041991555 + ], + "y": [ + 160389.7146379405, + -188097.1885506176 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -830220.9718566176, + 98790.64444216965 + ], + "y": [ + 160389.7146379405, + -188083.10255481664 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 736765.1546685816, + 98653.03461351694 + ], + "y": [ + -373730.5674296345, + -188183.12236589222 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 736765.1546685816, + 98528.28228471124 + ], + "y": [ + -373730.5674296345, + -188158.79572465117 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 736765.1546685816, + 96470.76012407262 + ], + "y": [ + -373730.5674296345, + -189953.43285506195 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 736765.1546685816, + 98077.79681744472 + ], + "y": [ + -373730.5674296345, + -187785.39966082262 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 736765.1546685816, + 99214.362436891 + ], + "y": [ + -373730.5674296345, + -188776.05672438274 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -377702.94197033683, + 98581.61307739322 + ], + "y": [ + 505960.80348878325, + -187556.7890851402 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -377702.94197033683, + 97662.82472168292 + ], + "y": [ + 505960.80348878325, + -187788.15822833957 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -377702.94197033683, + 97762.19782518726 + ], + "y": [ + 505960.80348878325, + -187203.12559746174 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -377702.94197033683, + 98322.0050156767 + ], + "y": [ + 505960.80348878325, + -188208.85344747134 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 662042.6234050796, + 97740.36484145897 + ], + "y": [ + 722670.2405123094, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 487333.2756261608, + 97740.36484145897 + ], + "y": [ + -884989.3737237633, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 793285.0618945669, + 97740.36484145897 + ], + "y": [ + 5179.2626380713355, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 884802.6012272596, + 97740.36484145897 + ], + "y": [ + 701035.689142802, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -600937.0920693981, + 97468.41119559384 + ], + "y": [ + 499722.50452963763, + -187879.37136154508 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 379335.77436914813, + 97228.17238280359 + ], + "y": [ + 106126.88316707186, + -188471.24794147993 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -840629.2261889379, + 97740.36484145897 + ], + "y": [ + -820824.4388997552, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 360724.37328794546, + 98186.65877994802 + ], + "y": [ + 928534.9602815487, + -188387.13883004195 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 360724.37328794546, + 98241.1113495342 + ], + "y": [ + 928534.9602815487, + -187775.03036984504 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 360724.37328794546, + 98809.36210538005 + ], + "y": [ + 928534.9602815487, + -188034.61082553468 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 360724.37328794546, + 98799.40792106478 + ], + "y": [ + 928534.9602815487, + -188046.35626590863 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 360724.37328794546, + 98692.54803294275 + ], + "y": [ + 928534.9602815487, + -188101.37584040826 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 881922.3999063373, + 97740.36484145897 + ], + "y": [ + 218781.86384893983, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -78715.90056435295, + 98857.10511058902 + ], + "y": [ + 11373.293613078373, + -188094.00217598723 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -188072.50905787342, + 98692.54803294275 + ], + "y": [ + 41947.26905584045, + -188101.37584040826 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -188072.50905787342, + 98818.13714193161 + ], + "y": [ + 41947.26905584045, + -188407.58725157817 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 93214.08443516676, + 97358.46679886585 + ], + "y": [ + 425564.55518506933, + -188482.5310615353 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 212406.3833148444, + 96071.64726551576 + ], + "y": [ + -285905.4255897964, + -190270.05275175368 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 42356.860080162485, + 98184.18254674674 + ], + "y": [ + -144410.63028630795, + -188517.9738436573 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 864742.738718304, + 98932.31091884513 + ], + "y": [ + -740040.9963485603, + -187594.8777657927 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 864742.738718304, + 98926.20655583622 + ], + "y": [ + -740040.9963485603, + -188109.5947916895 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 864742.738718304, + 98881.20399257346 + ], + "y": [ + -740040.9963485603, + -188135.7951117508 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 864742.738718304, + 98873.6590998779 + ], + "y": [ + -740040.9963485603, + -188126.67429510137 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 864742.738718304, + 98776.08147395353 + ], + "y": [ + -740040.9963485603, + -188068.89540782082 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 864742.738718304, + 98916.08043593282 + ], + "y": [ + -740040.9963485603, + -188138.17806449422 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 864742.738718304, + 98775.64297666437 + ], + "y": [ + -740040.9963485603, + -188113.8147030654 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 864742.738718304, + 98833.5386160878 + ], + "y": [ + -740040.9963485603, + -188119.49823623613 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 864742.738718304, + 98779.4951496633 + ], + "y": [ + -740040.9963485603, + -188123.9780570342 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 864742.738718304, + 98769.87019965112 + ], + "y": [ + -740040.9963485603, + -188121.51859750494 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 864742.738718304, + 98763.69912444155 + ], + "y": [ + -740040.9963485603, + -188082.81454332572 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 864742.738718304, + 98715.38337956829 + ], + "y": [ + -740040.9963485603, + -188023.85098966694 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 864742.738718304, + 98838.01226486915 + ], + "y": [ + -740040.9963485603, + -188038.4334288893 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 864742.738718304, + 98731.25835265023 + ], + "y": [ + -740040.9963485603, + -188097.6602407291 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 864742.738718304, + 98794.9356782363 + ], + "y": [ + -740040.9963485603, + -188124.65543545736 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 864742.738718304, + 98875.12446310604 + ], + "y": [ + -740040.9963485603, + -188079.8329504583 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 864742.738718304, + 98845.6917714939 + ], + "y": [ + -740040.9963485603, + -188129.3743830729 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -78921.56012487228, + 98420.51887894224 + ], + "y": [ + 513842.68831132515, + -188362.35931727977 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 909323.2027302729, + 99085.54243090276 + ], + "y": [ + 135508.08662869086, + -188526.0290014248 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 909323.2027302729, + 99105.27578480003 + ], + "y": [ + 135508.08662869086, + -188562.5678949605 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98161.02751086211 + ], + "y": [ + -191699.3365552453, + -188777.68796030607 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98705.71088691853 + ], + "y": [ + -191699.3365552453, + -188198.9950582187 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 97375.10606040448 + ], + "y": [ + -191699.3365552453, + -188647.58850257998 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98721.31378803315 + ], + "y": [ + -191699.3365552453, + -188204.97639419296 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98128.91359559372 + ], + "y": [ + -191699.3365552453, + -188894.20780772806 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98293.07266113821 + ], + "y": [ + -191699.3365552453, + -188877.75447919974 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 97827.63907828067 + ], + "y": [ + -191699.3365552453, + -189462.90626881117 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98054.0065827654 + ], + "y": [ + -191699.3365552453, + -188932.21737437064 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 96722.2929728447 + ], + "y": [ + -191699.3365552453, + -188214.95290711892 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98251.89202247094 + ], + "y": [ + -191699.3365552453, + -188795.16991496552 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98211.55320628641 + ], + "y": [ + -191699.3365552453, + -188977.4576085 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 97401.99871940678 + ], + "y": [ + -191699.3365552453, + -189047.84983436737 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 96475.17933169345 + ], + "y": [ + -191699.3365552453, + -190074.33054887285 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98168.55916640947 + ], + "y": [ + -191699.3365552453, + -187775.4606762898 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98568.00044350624 + ], + "y": [ + -191699.3365552453, + -188697.3813039972 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98364.36914082733 + ], + "y": [ + -191699.3365552453, + -188898.08155878072 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98331.41182590384 + ], + "y": [ + -191699.3365552453, + -189113.8715419739 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98163.10895570937 + ], + "y": [ + -191699.3365552453, + -188845.84495555653 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 97554.9960699299 + ], + "y": [ + -191699.3365552453, + -189204.34458726516 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98038.14058948433 + ], + "y": [ + -191699.3365552453, + -189029.22851713432 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98858.81885856122 + ], + "y": [ + -191699.3365552453, + -188216.02236323402 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 96255.92043157357 + ], + "y": [ + -191699.3365552453, + -190233.5032244461 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98120.00401419179 + ], + "y": [ + -191699.3365552453, + -188846.81963719826 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 99907.08283776883 + ], + "y": [ + -191699.3365552453, + -186096.45797461583 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 97770.11547186453 + ], + "y": [ + -191699.3365552453, + -189624.14425346788 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98260.97237711879 + ], + "y": [ + -191699.3365552453, + -188972.66635322545 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98649.88742805325 + ], + "y": [ + -191699.3365552453, + -188756.88925757885 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98112.09979592523 + ], + "y": [ + -191699.3365552453, + -188954.19885795217 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98728.80932783807 + ], + "y": [ + -191699.3365552453, + -188231.47750730137 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98743.18237840163 + ], + "y": [ + -191699.3365552453, + -188228.14569705023 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 96497.28753916033 + ], + "y": [ + -191699.3365552453, + -190039.66227026214 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 99041.0309662276 + ], + "y": [ + -191699.3365552453, + -188955.70075548417 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98538.18176070268 + ], + "y": [ + -191699.3365552453, + -188817.15343371764 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98404.5074674531 + ], + "y": [ + -191699.3365552453, + -188911.31765919903 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98168.58123872355 + ], + "y": [ + -191699.3365552453, + -188817.64018552104 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 99485.28366531829 + ], + "y": [ + -191699.3365552453, + -188387.0195355698 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98727.3121423661 + ], + "y": [ + -191699.3365552453, + -188217.19279192775 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98706.38695246876 + ], + "y": [ + -191699.3365552453, + -188215.48726479657 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98212.5660722969 + ], + "y": [ + -191699.3365552453, + -188940.66433230025 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 96338.9907537572 + ], + "y": [ + -191699.3365552453, + -189435.39611651178 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 94647.79050717162 + ], + "y": [ + -191699.3365552453, + -190181.63074577937 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -72851.75443980707, + 98994.41997788764 + ], + "y": [ + -191699.3365552453, + -188605.13434911743 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 296865.7210732206, + 96237.3014003704 + ], + "y": [ + 970316.6821376963, + -190160.9077330154 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 201690.5001386915, + 94688.11906145522 + ], + "y": [ + -838140.8058459905, + -189966.56620810815 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 201690.5001386915, + 96639.48963731402 + ], + "y": [ + -838140.8058459905, + -189999.31667014628 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 201690.5001386915, + 95635.79388111227 + ], + "y": [ + -838140.8058459905, + -188266.23380139962 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 201690.5001386915, + 95971.63945756324 + ], + "y": [ + -838140.8058459905, + -189466.79866331397 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 201690.5001386915, + 96148.36985614852 + ], + "y": [ + -838140.8058459905, + -188990.40385466997 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -809602.3854719092, + 98932.31091884513 + ], + "y": [ + -466086.6372245687, + -187594.8777657927 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -809602.3854719092, + 98926.20655583622 + ], + "y": [ + -466086.6372245687, + -188109.5947916895 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -809602.3854719092, + 98881.20399257346 + ], + "y": [ + -466086.6372245687, + -188135.7951117508 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -809602.3854719092, + 98873.6590998779 + ], + "y": [ + -466086.6372245687, + -188126.67429510137 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -809602.3854719092, + 98776.08147395353 + ], + "y": [ + -466086.6372245687, + -188068.89540782082 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -809602.3854719092, + 98916.08043593282 + ], + "y": [ + -466086.6372245687, + -188138.17806449422 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -809602.3854719092, + 98775.64297666437 + ], + "y": [ + -466086.6372245687, + -188113.8147030654 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -809602.3854719092, + 98833.5386160878 + ], + "y": [ + -466086.6372245687, + -188119.49823623613 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -809602.3854719092, + 98779.4951496633 + ], + "y": [ + -466086.6372245687, + -188123.9780570342 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -809602.3854719092, + 98769.87019965112 + ], + "y": [ + -466086.6372245687, + -188121.51859750494 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -809602.3854719092, + 98763.69912444155 + ], + "y": [ + -466086.6372245687, + -188082.81454332572 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -809602.3854719092, + 98715.38337956829 + ], + "y": [ + -466086.6372245687, + -188023.85098966694 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -809602.3854719092, + 98838.01226486915 + ], + "y": [ + -466086.6372245687, + -188038.4334288893 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -809602.3854719092, + 98731.25835265023 + ], + "y": [ + -466086.6372245687, + -188097.6602407291 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -809602.3854719092, + 98794.9356782363 + ], + "y": [ + -466086.6372245687, + -188124.65543545736 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -809602.3854719092, + 98875.12446310604 + ], + "y": [ + -466086.6372245687, + -188079.8329504583 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -809602.3854719092, + 98845.6917714939 + ], + "y": [ + -466086.6372245687, + -188129.3743830729 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 455089.0566991821, + 98932.31091884513 + ], + "y": [ + 786495.8184204455, + -187594.8777657927 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 455089.0566991821, + 98926.20655583622 + ], + "y": [ + 786495.8184204455, + -188109.5947916895 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 455089.0566991821, + 98881.20399257346 + ], + "y": [ + 786495.8184204455, + -188135.7951117508 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 455089.0566991821, + 98873.6590998779 + ], + "y": [ + 786495.8184204455, + -188126.67429510137 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 455089.0566991821, + 98776.08147395353 + ], + "y": [ + 786495.8184204455, + -188068.89540782082 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 455089.0566991821, + 98916.08043593282 + ], + "y": [ + 786495.8184204455, + -188138.17806449422 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 455089.0566991821, + 97265.23793720463 + ], + "y": [ + 786495.8184204455, + -188104.07716877718 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 455089.0566991821, + 98833.5386160878 + ], + "y": [ + 786495.8184204455, + -188119.49823623613 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 455089.0566991821, + 98779.4951496633 + ], + "y": [ + 786495.8184204455, + -188123.9780570342 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 455089.0566991821, + 98769.87019965112 + ], + "y": [ + 786495.8184204455, + -188121.51859750494 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 455089.0566991821, + 98763.69912444155 + ], + "y": [ + 786495.8184204455, + -188082.81454332572 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 455089.0566991821, + 98715.38337956829 + ], + "y": [ + 786495.8184204455, + -188023.85098966694 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 455089.0566991821, + 98838.01226486915 + ], + "y": [ + 786495.8184204455, + -188038.4334288893 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 455089.0566991821, + 98731.25835265023 + ], + "y": [ + 786495.8184204455, + -188097.6602407291 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 455089.0566991821, + 98794.9356782363 + ], + "y": [ + 786495.8184204455, + -188124.65543545736 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 455089.0566991821, + 98875.12446310604 + ], + "y": [ + 786495.8184204455, + -188079.8329504583 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 455089.0566991821, + 98845.6917714939 + ], + "y": [ + 786495.8184204455, + -188129.3743830729 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -421789.7677491984, + 96877.98110658897 + ], + "y": [ + -136641.84111491195, + -187749.7848825597 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -421789.7677491984, + 97082.82303991095 + ], + "y": [ + -136641.84111491195, + -187628.5971893858 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -421789.7677491984, + 96888.812856475 + ], + "y": [ + -136641.84111491195, + -188549.88759442163 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -421789.7677491984, + 96702.93382964614 + ], + "y": [ + -136641.84111491195, + -188275.44850877777 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -421789.7677491984, + 96685.11446346446 + ], + "y": [ + -136641.84111491195, + -188155.0331583998 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -421789.7677491984, + 96692.14973493623 + ], + "y": [ + -136641.84111491195, + -188220.5960329952 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -730099.8140962289, + 97854.41540216467 + ], + "y": [ + 551026.796179372, + -188295.15735575298 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -730099.8140962289, + 96886.64740803099 + ], + "y": [ + 551026.796179372, + -188327.76182227116 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 941129.1135389946, + 97740.36484145897 + ], + "y": [ + -118245.65945172361, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 869007.5350815292, + 97740.36484145897 + ], + "y": [ + -429303.758173051, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 717990.2465833629, + 96012.22372465217 + ], + "y": [ + 289274.8799673728, + -189229.17376885633 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 717990.2465833629, + 95855.37346994528 + ], + "y": [ + 289274.8799673728, + -188397.25088022946 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 717990.2465833629, + 96019.51490257688 + ], + "y": [ + 289274.8799673728, + -188984.20542329797 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 717990.2465833629, + 95928.73602388412 + ], + "y": [ + 289274.8799673728, + -189302.6007381189 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 197134.69020416553, + 95655.37022945724 + ], + "y": [ + 370829.5671062389, + -189570.55632521573 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 197134.69020416553, + 96175.94057358746 + ], + "y": [ + 370829.5671062389, + -189768.79952321426 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894718.6391275503, + 98401.53156330762 + ], + "y": [ + 112566.34725016635, + -187278.70253330644 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894718.6391275503, + 95386.7915315098 + ], + "y": [ + 112566.34725016635, + -186223.42382426502 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894718.6391275503, + 95383.19508052658 + ], + "y": [ + 112566.34725016635, + -185538.47106454833 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -894718.6391275503, + 92604.63107627998 + ], + "y": [ + 112566.34725016635, + -181316.88675453834 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -723155.4734128875, + 98932.31091884513 + ], + "y": [ + 938564.7538542207, + -187594.8777657927 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -723155.4734128875, + 98926.20655583622 + ], + "y": [ + 938564.7538542207, + -188109.5947916895 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -723155.4734128875, + 98881.20399257346 + ], + "y": [ + 938564.7538542207, + -188135.7951117508 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -723155.4734128875, + 98873.6590998779 + ], + "y": [ + 938564.7538542207, + -188126.67429510137 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -723155.4734128875, + 98776.08147395353 + ], + "y": [ + 938564.7538542207, + -188068.89540782082 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -723155.4734128875, + 98916.08043593282 + ], + "y": [ + 938564.7538542207, + -188138.17806449422 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -723155.4734128875, + 98775.64297666437 + ], + "y": [ + 938564.7538542207, + -188113.8147030654 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -723155.4734128875, + 98833.5386160878 + ], + "y": [ + 938564.7538542207, + -188119.49823623613 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -723155.4734128875, + 98779.4951496633 + ], + "y": [ + 938564.7538542207, + -188123.9780570342 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -723155.4734128875, + 98769.87019965112 + ], + "y": [ + 938564.7538542207, + -188121.51859750494 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -723155.4734128875, + 98763.69912444155 + ], + "y": [ + 938564.7538542207, + -188082.81454332572 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -723155.4734128875, + 98715.38337956829 + ], + "y": [ + 938564.7538542207, + -188023.85098966694 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -723155.4734128875, + 98838.01226486915 + ], + "y": [ + 938564.7538542207, + -188038.4334288893 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -723155.4734128875, + 98731.25835265023 + ], + "y": [ + 938564.7538542207, + -188097.6602407291 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -723155.4734128875, + 98794.9356782363 + ], + "y": [ + 938564.7538542207, + -188124.65543545736 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -723155.4734128875, + 98875.12446310604 + ], + "y": [ + 938564.7538542207, + -188079.8329504583 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -723155.4734128875, + 98845.6917714939 + ], + "y": [ + 938564.7538542207, + -188129.3743830729 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -8379.412339935, + 95893.574265848 + ], + "y": [ + -458932.0946854003, + -188577.68911072935 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 153864.8390642192, + 97740.36484145897 + ], + "y": [ + -979024.3953836804, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 712361.2951724086, + 97740.36484145897 + ], + "y": [ + 935855.7791733175, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 914316.0572963407, + 97740.36484145897 + ], + "y": [ + 392777.02472150634, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -919652.1895690879, + 97740.36484145897 + ], + "y": [ + -634539.2530658016, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 626046.287861095, + 97740.36484145897 + ], + "y": [ + -733324.4431803057, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -671624.2805811912, + 97740.36484145897 + ], + "y": [ + -721643.7739481903, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -564517.9022853523, + 97228.17238280359 + ], + "y": [ + 227876.3792840539, + -188471.24794147993 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -564517.9022853523, + 96287.81181504241 + ], + "y": [ + 227876.3792840539, + -188922.89599843553 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -836089.2335397754, + 97228.17238280359 + ], + "y": [ + -232102.3256213983, + -188471.24794147993 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -836089.2335397754, + 96287.81181504241 + ], + "y": [ + -232102.3256213983, + -188922.89599843553 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -727307.2831803005, + 96026.40843242637 + ], + "y": [ + -971248.6088668206, + -189429.78822251226 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -727307.2831803005, + 96114.05896419227 + ], + "y": [ + -971248.6088668206, + -189243.0403538959 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -63184.91059391906, + 95834.93768300924 + ], + "y": [ + 715376.7179565134, + -189251.3089257868 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -63184.91059391906, + 95619.17778565394 + ], + "y": [ + 715376.7179565134, + -188563.19407494835 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -63184.91059391906, + 96108.40628370653 + ], + "y": [ + 715376.7179565134, + -188854.39170410443 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -63184.91059391906, + 95731.71785167878 + ], + "y": [ + 715376.7179565134, + -189260.15851219348 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -63184.91059391906, + 95777.00472574684 + ], + "y": [ + 715376.7179565134, + -189231.4279713372 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -63184.91059391906, + 95353.54589236321 + ], + "y": [ + 715376.7179565134, + -188786.31293626514 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -63184.91059391906, + 95800.17831353597 + ], + "y": [ + 715376.7179565134, + -189104.52316957942 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -63184.91059391906, + 95203.24310226098 + ], + "y": [ + 715376.7179565134, + -189182.68148483842 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -63184.91059391906, + 95930.34153333298 + ], + "y": [ + 715376.7179565134, + -189072.0465506361 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -63184.91059391906, + 95903.12103009703 + ], + "y": [ + 715376.7179565134, + -188705.65600489438 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 168229.98075621086, + 96914.4073833856 + ], + "y": [ + 959367.4194005737, + -189967.28432425318 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 168229.98075621086, + 97103.69288164194 + ], + "y": [ + 959367.4194005737, + -189454.98816233617 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 168229.98075621086, + 96898.52471952 + ], + "y": [ + 959367.4194005737, + -189757.15706957557 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 168229.98075621086, + 96820.8105552239 + ], + "y": [ + 959367.4194005737, + -189951.737106575 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 168229.98075621086, + 96112.34947297389 + ], + "y": [ + 959367.4194005737, + -188991.42081728007 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 168229.98075621086, + 96008.4744666249 + ], + "y": [ + 959367.4194005737, + -189636.0078208734 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 168229.98075621086, + 96893.41939654587 + ], + "y": [ + 959367.4194005737, + -190209.4983373492 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 168229.98075621086, + 96865.8409444725 + ], + "y": [ + 959367.4194005737, + -190012.9068404736 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 168229.98075621086, + 97240.38028997074 + ], + "y": [ + 959367.4194005737, + -189864.05117757033 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 168229.98075621086, + 96876.82259242256 + ], + "y": [ + 959367.4194005737, + -190050.28712576124 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 168229.98075621086, + 96619.39742322621 + ], + "y": [ + 959367.4194005737, + -188866.95996207467 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 168229.98075621086, + 96882.99940588712 + ], + "y": [ + 959367.4194005737, + -189208.00816211943 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 168229.98075621086, + 96861.44317975816 + ], + "y": [ + 959367.4194005737, + -189099.37048930768 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 168229.98075621086, + 96768.5817251259 + ], + "y": [ + 959367.4194005737, + -188483.7955207067 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 168229.98075621086, + 96559.08563953191 + ], + "y": [ + 959367.4194005737, + -188865.2383597738 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 168229.98075621086, + 96649.40356388739 + ], + "y": [ + 959367.4194005737, + -188899.90215259913 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 168229.98075621086, + 96625.72014898527 + ], + "y": [ + 959367.4194005737, + -188841.91500915465 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 645979.5543442839, + 97992.50506999153 + ], + "y": [ + -373546.1317002338, + -188310.94209393 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 438081.87126206444, + 97617.39505268811 + ], + "y": [ + -700231.0711965273, + -189567.91347630875 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 438081.87126206444, + 96070.12571463303 + ], + "y": [ + -700231.0711965273, + -189475.84370340698 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 826920.9352810534, + 95866.20481677107 + ], + "y": [ + -963576.0897303212, + -189256.76102591655 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 826920.9352810534, + 95662.62644960554 + ], + "y": [ + -963576.0897303212, + -189118.55548115997 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 826920.9352810534, + 96100.86678198376 + ], + "y": [ + -963576.0897303212, + -189287.09541988553 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -909596.9341151802, + 95405.1846400074 + ], + "y": [ + -112653.8955686256, + -189836.02265256474 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -909596.9341151802, + 98524.57731541038 + ], + "y": [ + -112653.8955686256, + -188267.79946330914 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 631265.6698211387, + 98061.51654616423 + ], + "y": [ + 100376.22156342186, + -188734.64348648756 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 631265.6698211387, + 98127.50014794023 + ], + "y": [ + 100376.22156342186, + -188499.89103916325 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 631265.6698211387, + 98433.46713226559 + ], + "y": [ + 100376.22156342186, + -188424.26831552497 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 631265.6698211387, + 98303.3954720316 + ], + "y": [ + 100376.22156342186, + -188471.16226267573 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 777914.9540390078, + 98184.18254674674 + ], + "y": [ + -326112.20207237767, + -188517.9738436573 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -547642.2852201579, + 97740.36484145897 + ], + "y": [ + 981521.6684350774, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 526877.4573910712, + 97740.36484145897 + ], + "y": [ + -482595.47826915927, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -38327.955008397694, + 97740.36484145897 + ], + "y": [ + 648660.3447864088, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 418566.19868298183, + 96465.29272664362 + ], + "y": [ + 843644.3832424028, + -188555.01680973297 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 418566.19868298183, + 96421.49499570957 + ], + "y": [ + 843644.3832424028, + -189062.6660397884 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 197973.49488166915, + 95652.29809552783 + ], + "y": [ + 732209.4835010477, + -189368.04321790536 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 197973.49488166915, + 95574.25352251745 + ], + "y": [ + 732209.4835010477, + -189207.12335782725 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 184766.2002418735, + 97306.68660394431 + ], + "y": [ + -153041.8691462083, + -189190.69568859632 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 184766.2002418735, + 97519.14188663122 + ], + "y": [ + -153041.8691462083, + -188648.39727075843 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 184766.2002418735, + 96800.95464898097 + ], + "y": [ + -153041.8691462083, + -188995.8386599755 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 184766.2002418735, + 96931.14707892697 + ], + "y": [ + -153041.8691462083, + -188818.68200287974 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 715784.4905156529, + 94671.14162737239 + ], + "y": [ + -599028.9563257105, + -189901.5373675402 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 715784.4905156529, + 96918.79607718707 + ], + "y": [ + -599028.9563257105, + -189093.07196799477 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 715784.4905156529, + 96959.17409848377 + ], + "y": [ + -599028.9563257105, + -188154.87099078548 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -516221.8913464849, + 97196.83695998523 + ], + "y": [ + -296776.4651412641, + -187627.1081749794 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -516221.8913464849, + 97409.25368271414 + ], + "y": [ + -296776.4651412641, + -187857.75124697632 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -516221.8913464849, + 97234.04346137235 + ], + "y": [ + -296776.4651412641, + -187760.40303329699 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -516221.8913464849, + 97434.01515339047 + ], + "y": [ + -296776.4651412641, + -187858.44732430877 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -516221.8913464849, + 97272.13864563021 + ], + "y": [ + -296776.4651412641, + -187957.10022871735 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -434623.4691013651, + 95962.08383797004 + ], + "y": [ + 859557.5830612996, + -188630.5751925975 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -434623.4691013651, + 95958.17194866823 + ], + "y": [ + 859557.5830612996, + -188333.01761814565 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -5596.113939467129, + 97155.50811563137 + ], + "y": [ + 965780.9909117548, + -188696.13322752403 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -5596.113939467129, + 96918.79607718707 + ], + "y": [ + 965780.9909117548, + -189093.07196799477 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -5596.113939467129, + 95778.09112358528 + ], + "y": [ + 965780.9909117548, + -188332.3887565364 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -5596.113939467129, + 95567.54268381129 + ], + "y": [ + 965780.9909117548, + -188486.6627500266 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -5596.113939467129, + 95681.96009977852 + ], + "y": [ + 965780.9909117548, + -188895.1305372902 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -5596.113939467129, + 95501.99445714205 + ], + "y": [ + 965780.9909117548, + -189361.39928674913 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -5596.113939467129, + 95451.74998648891 + ], + "y": [ + 965780.9909117548, + -189514.26395840745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -400567.27083104127, + 97324.16299961129 + ], + "y": [ + 477161.9168648309, + -188672.58677714274 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -400567.27083104127, + 97481.45108043253 + ], + "y": [ + 477161.9168648309, + -188275.58704858087 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 663904.7617724848, + 95459.71080597503 + ], + "y": [ + -632418.384718779, + -187965.95478834442 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 663904.7617724848, + 95638.78273951489 + ], + "y": [ + -632418.384718779, + -187471.21704082517 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 663904.7617724848, + 95521.93192587548 + ], + "y": [ + -632418.384718779, + -189024.27048204138 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 663904.7617724848, + 96559.7026621268 + ], + "y": [ + -632418.384718779, + -188563.84477598095 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -897623.4682337678, + 97740.36484145897 + ], + "y": [ + -365382.38695398584, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -857957.9247302185, + 97740.36484145897 + ], + "y": [ + -239563.19322688025, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 517837.1986306305, + 97740.36484145897 + ], + "y": [ + -239304.6913621528, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 232161.74846487082, + 97740.36484145897 + ], + "y": [ + 432969.83003249887, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -321727.77392575116, + 96622.87666955806 + ], + "y": [ + -615440.0230895698, + -189010.6567271695 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -321727.77392575116, + 96449.25631444062 + ], + "y": [ + -615440.0230895698, + -189191.62724059867 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 538787.438030321, + 94919.54440569754 + ], + "y": [ + -554931.4032421844, + -189723.8971601925 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 538787.438030321, + 94171.18973519026 + ], + "y": [ + -554931.4032421844, + -190283.4150628221 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 617187.9259473727, + 97228.17238280359 + ], + "y": [ + 896897.3146678181, + -188471.24794147993 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 704105.6988044545, + 96959.17409848377 + ], + "y": [ + -346647.9730130474, + -188154.87099078548 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 704105.6988044545, + 96918.79607718707 + ], + "y": [ + -346647.9730130474, + -189093.07196799477 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -169312.1842001153, + 98378.94284214679 + ], + "y": [ + 64189.91681325048, + -188285.74392279977 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -169312.1842001153, + 94645.87712676502 + ], + "y": [ + 64189.91681325048, + -190048.63972499638 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -169312.1842001153, + 95834.93768300924 + ], + "y": [ + 64189.91681325048, + -189251.3089257868 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -169312.1842001153, + 95619.17778565394 + ], + "y": [ + 64189.91681325048, + -188563.19407494835 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -169312.1842001153, + 96108.40628370653 + ], + "y": [ + 64189.91681325048, + -188854.39170410443 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -169312.1842001153, + 95731.71785167878 + ], + "y": [ + 64189.91681325048, + -189260.15851219348 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -169312.1842001153, + 95777.00472574684 + ], + "y": [ + 64189.91681325048, + -189231.4279713372 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -169312.1842001153, + 95353.54589236321 + ], + "y": [ + 64189.91681325048, + -188786.31293626514 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -169312.1842001153, + 95800.17831353597 + ], + "y": [ + 64189.91681325048, + -189104.52316957942 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -169312.1842001153, + 95203.24310226098 + ], + "y": [ + 64189.91681325048, + -189182.68148483842 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -169312.1842001153, + 95930.34153333298 + ], + "y": [ + 64189.91681325048, + -189072.0465506361 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 739393.8950776226, + 96735.91203018947 + ], + "y": [ + -38732.925036637054, + -186790.41009242184 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 739393.8950776226, + 97334.69528656456 + ], + "y": [ + -38732.925036637054, + -187248.01430917686 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 739393.8950776226, + 95915.62243658677 + ], + "y": [ + -38732.925036637054, + -186364.1134175767 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 739393.8950776226, + 94473.57318014126 + ], + "y": [ + -38732.925036637054, + -184046.07233791953 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 739393.8950776226, + 96498.2979299931 + ], + "y": [ + -38732.925036637054, + -187468.17123172226 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 739393.8950776226, + 97046.83129228091 + ], + "y": [ + -38732.925036637054, + -187004.07979892765 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 27058.202771294447, + 97136.55546326986 + ], + "y": [ + -537662.0371003775, + -187444.98398375107 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 27058.202771294447, + 97605.64203060168 + ], + "y": [ + -537662.0371003775, + -187212.75750088846 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 27058.202771294447, + 97651.32746016643 + ], + "y": [ + -537662.0371003775, + -187393.45287008572 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 27058.202771294447, + 97499.57548817585 + ], + "y": [ + -537662.0371003775, + -187430.50547179487 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 27058.202771294447, + 97615.00090956 + ], + "y": [ + -537662.0371003775, + -187206.375494998 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 27058.202771294447, + 97672.92128722146 + ], + "y": [ + -537662.0371003775, + -187142.3027271855 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 21387.915970575654, + 96532.6646683294 + ], + "y": [ + 966495.4235025916, + -188726.61235021544 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -96792.91913518484, + 98932.31091884513 + ], + "y": [ + 783870.0048633596, + -187594.8777657927 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -96792.91913518484, + 98926.20655583622 + ], + "y": [ + 783870.0048633596, + -188109.5947916895 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -96792.91913518484, + 98881.20399257346 + ], + "y": [ + 783870.0048633596, + -188135.7951117508 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -96792.91913518484, + 98873.6590998779 + ], + "y": [ + 783870.0048633596, + -188126.67429510137 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -96792.91913518484, + 98776.08147395353 + ], + "y": [ + 783870.0048633596, + -188068.89540782082 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -96792.91913518484, + 98916.08043593282 + ], + "y": [ + 783870.0048633596, + -188138.17806449422 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -96792.91913518484, + 98775.64297666437 + ], + "y": [ + 783870.0048633596, + -188113.8147030654 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -96792.91913518484, + 98833.5386160878 + ], + "y": [ + 783870.0048633596, + -188119.49823623613 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -96792.91913518484, + 98779.4951496633 + ], + "y": [ + 783870.0048633596, + -188123.9780570342 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -96792.91913518484, + 98769.87019965112 + ], + "y": [ + 783870.0048633596, + -188121.51859750494 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -96792.91913518484, + 98763.69912444155 + ], + "y": [ + 783870.0048633596, + -188082.81454332572 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -96792.91913518484, + 98715.38337956829 + ], + "y": [ + 783870.0048633596, + -188023.85098966694 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -96792.91913518484, + 98838.01226486915 + ], + "y": [ + 783870.0048633596, + -188038.4334288893 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -96792.91913518484, + 98731.25835265023 + ], + "y": [ + 783870.0048633596, + -188097.6602407291 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -96792.91913518484, + 98794.9356782363 + ], + "y": [ + 783870.0048633596, + -188124.65543545736 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -96792.91913518484, + 98875.12446310604 + ], + "y": [ + 783870.0048633596, + -188079.8329504583 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -96792.91913518484, + 98845.6917714939 + ], + "y": [ + 783870.0048633596, + -188129.3743830729 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -21227.49778743449, + 96214.62212633847 + ], + "y": [ + -74587.61620013266, + -188040.02763009068 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 276976.17238035274, + 96146.8337078855 + ], + "y": [ + 831651.3050455592, + -188376.78890401422 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 276976.17238035274, + 95343.9410888273 + ], + "y": [ + 831651.3050455592, + -189797.29543539853 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 276976.17238035274, + 95506.46666204746 + ], + "y": [ + 831651.3050455592, + -188727.56930522466 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 276976.17238035274, + 95380.57975889063 + ], + "y": [ + 831651.3050455592, + -189767.66077987218 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 276976.17238035274, + 95213.69401511893 + ], + "y": [ + 831651.3050455592, + -189402.54379102314 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 276976.17238035274, + 94761.32003739124 + ], + "y": [ + 831651.3050455592, + -189855.4536758818 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 276976.17238035274, + 96370.41426861439 + ], + "y": [ + 831651.3050455592, + -188921.83564302602 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -755074.7222507059, + 97598.41715003968 + ], + "y": [ + -34707.954877353455, + -187109.55145493208 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -755074.7222507059, + 97191.15673842629 + ], + "y": [ + -34707.954877353455, + -186870.85476427 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -3151.853730977372, + 96556.18686331193 + ], + "y": [ + 132464.72896881544, + -188744.70646205018 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 447205.8626187305, + 97740.36484145897 + ], + "y": [ + 244292.06611394117, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -409297.7949012127, + 96600.23269030724 + ], + "y": [ + -723699.6589583688, + -188570.19383203107 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 721040.7630583367, + 95312.03621158424 + ], + "y": [ + -289391.2403450825, + -187452.2953444194 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 721040.7630583367, + 95103.86724211255 + ], + "y": [ + -289391.2403450825, + -186432.95981047777 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 721040.7630583367, + 94154.4683582202 + ], + "y": [ + -289391.2403450825, + -184493.4638333277 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -551799.6409460857, + 96651.05281133259 + ], + "y": [ + 382873.505401377, + -189681.03829755695 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -495134.76313686476, + 95926.00835539421 + ], + "y": [ + -182000.41286751878, + -189180.69142051495 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -495134.76313686476, + 96918.79607718707 + ], + "y": [ + -182000.41286751878, + -189093.07196799477 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -495134.76313686476, + 96959.17409848377 + ], + "y": [ + -182000.41286751878, + -188154.87099078548 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -566236.2561708712, + 95794.56902475153 + ], + "y": [ + 714299.0223519965, + -189494.99190465917 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -383589.25783163536, + 95275.96542639584 + ], + "y": [ + 26156.182082637035, + -189418.3150618224 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 520674.05570668046, + 92619.51334005372 + ], + "y": [ + 294215.4611805308, + -189406.1804548177 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 520674.05570668046, + 95388.1231928088 + ], + "y": [ + 294215.4611805308, + -188956.60901643464 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -379083.4425797596, + 97740.36484145897 + ], + "y": [ + 200268.81118485073, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 714780.540659039, + 96533.09552389133 + ], + "y": [ + -640258.5646004735, + -188286.47377093224 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 792749.3740975467, + 96602.4666381394 + ], + "y": [ + 45655.76911556612, + -187847.91597445504 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 792749.3740975467, + 95710.95963260993 + ], + "y": [ + 45655.76911556612, + -187772.9366644242 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -695748.732719113, + 96173.23715080458 + ], + "y": [ + -792789.8279053174, + -189454.44287559506 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -695748.732719113, + 96169.80106348639 + ], + "y": [ + -792789.8279053174, + -189336.90265698743 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -841161.2589156998, + 97740.36484145897 + ], + "y": [ + 101492.81294258627, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -195189.11757277558, + 97740.36484145897 + ], + "y": [ + -146176.85529026692, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 431924.74953544035, + 97740.36484145897 + ], + "y": [ + -30810.42899432007, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 876253.9237453884, + 96919.26178312073 + ], + "y": [ + 435382.93784721714, + -189688.38226235847 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 876253.9237453884, + 96999.24006270662 + ], + "y": [ + 435382.93784721714, + -189642.32271672558 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 876253.9237453884, + 96911.02758063171 + ], + "y": [ + 435382.93784721714, + -189773.80511431769 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -969676.0286274004, + 96767.7608495193 + ], + "y": [ + -322459.2340622958, + -188623.37539469652 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -814469.2956539985, + 97228.17238280359 + ], + "y": [ + -174970.74177023242, + -188471.24794147993 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -814469.2956539985, + 95402.18303854323 + ], + "y": [ + -174970.74177023242, + -188059.06910793387 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -203858.51979069636, + 96616.28197124632 + ], + "y": [ + 26905.66458774213, + -189486.94419473826 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -203858.51979069636, + 96643.07015445872 + ], + "y": [ + 26905.66458774213, + -188345.75062919507 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -203858.51979069636, + 96611.07880435153 + ], + "y": [ + 26905.66458774213, + -189045.68105489522 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 987883.3246678433, + 95963.6655367038 + ], + "y": [ + -947156.7174291624, + -186490.92481183048 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 987883.3246678433, + 96323.93164666534 + ], + "y": [ + -947156.7174291624, + -188035.43847485105 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 987883.3246678433, + 96035.94449947504 + ], + "y": [ + -947156.7174291624, + -187899.97545537198 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 987883.3246678433, + 95826.13450428299 + ], + "y": [ + -947156.7174291624, + -188759.4892448286 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -754434.0508021094, + 95894.3821805092 + ], + "y": [ + 548994.2918747881, + -189867.76456386773 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -754434.0508021094, + 96167.45474416234 + ], + "y": [ + 548994.2918747881, + -189265.0331807753 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -754434.0508021094, + 96878.0650637567 + ], + "y": [ + 548994.2918747881, + -188785.27223021127 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -754434.0508021094, + 96926.74644690406 + ], + "y": [ + 548994.2918747881, + -189150.0722038921 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -754434.0508021094, + 95735.81320135522 + ], + "y": [ + 548994.2918747881, + -189966.51788839934 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -877967.6203988978, + 96785.2273252981 + ], + "y": [ + 933396.9389264802, + -187864.57873495863 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -616004.2932641512, + 96844.44949459478 + ], + "y": [ + -298576.4863351168, + -188459.5042273985 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -616004.2932641512, + 96868.09370002619 + ], + "y": [ + -298576.4863351168, + -187485.8021358164 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -616004.2932641512, + 96840.061255232 + ], + "y": [ + -298576.4863351168, + -187835.19770223383 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 650337.6304247482, + 97740.36484145897 + ], + "y": [ + 981905.2432800552, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 615619.3556276786, + 97740.36484145897 + ], + "y": [ + 672698.2694803685, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -205710.37365605726, + 97228.17238280359 + ], + "y": [ + 269049.57331865886, + -188471.24794147993 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -205710.37365605726, + 96287.81181504241 + ], + "y": [ + 269049.57331865886, + -188922.89599843553 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -452877.2624604085, + 96450.55318015978 + ], + "y": [ + 82853.81087077859, + -188339.61248515616 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 170430.45436057568, + 96234.86536056163 + ], + "y": [ + 867446.6458449088, + -188482.4680775093 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 170430.45436057568, + 95388.1231928088 + ], + "y": [ + 867446.6458449088, + -188956.60901643464 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 66750.84993936031, + 95910.45905898156 + ], + "y": [ + 730782.4794822566, + -190059.0897295911 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -76184.7834570475, + 97740.36484145897 + ], + "y": [ + 636929.57350753, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 223240.49951923918, + 97740.36484145897 + ], + "y": [ + 529693.9688298834, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 47468.46409605654, + 97740.36484145897 + ], + "y": [ + -258215.03400263525, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 47468.46409605654, + 97216.8097752767 + ], + "y": [ + -258215.03400263525, + -188449.63396273268 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -900078.2113245784, + 97740.36484145897 + ], + "y": [ + -697221.9707553786, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -707282.1263826032, + 97740.36484145897 + ], + "y": [ + 508239.4434232529, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 498738.2468210295, + 97740.36484145897 + ], + "y": [ + -22932.213957937318, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 623681.4455269715, + 95733.15082062641 + ], + "y": [ + -441964.9317826, + -188564.80121031718 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -903849.429763719, + 97651.32746016643 + ], + "y": [ + 173346.7010389238, + -187393.45287008572 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -903849.429763719, + 97136.55546326986 + ], + "y": [ + 173346.7010389238, + -187444.98398375107 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -903849.429763719, + 97605.64203060168 + ], + "y": [ + 173346.7010389238, + -187212.75750088846 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -903849.429763719, + 97499.57548817585 + ], + "y": [ + 173346.7010389238, + -187430.50547179487 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -903849.429763719, + 97615.00090956 + ], + "y": [ + 173346.7010389238, + -187206.375494998 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -903849.429763719, + 97672.92128722146 + ], + "y": [ + 173346.7010389238, + -187142.3027271855 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -761921.4177536746, + 98127.50014794023 + ], + "y": [ + -532732.7823888039, + -188499.89103916325 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -761921.4177536746, + 97623.71573684271 + ], + "y": [ + -532732.7823888039, + -188934.75013167982 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -761921.4177536746, + 98303.3954720316 + ], + "y": [ + -532732.7823888039, + -188471.16226267573 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -289319.9518633871, + 98932.31091884513 + ], + "y": [ + 922786.3563789611, + -187594.8777657927 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -289319.9518633871, + 98926.20655583622 + ], + "y": [ + 922786.3563789611, + -188109.5947916895 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -289319.9518633871, + 98881.20399257346 + ], + "y": [ + 922786.3563789611, + -188135.7951117508 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -289319.9518633871, + 98873.6590998779 + ], + "y": [ + 922786.3563789611, + -188126.67429510137 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -289319.9518633871, + 98776.08147395353 + ], + "y": [ + 922786.3563789611, + -188068.89540782082 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -289319.9518633871, + 98916.08043593282 + ], + "y": [ + 922786.3563789611, + -188138.17806449422 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -289319.9518633871, + 98775.64297666437 + ], + "y": [ + 922786.3563789611, + -188113.8147030654 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -289319.9518633871, + 98833.5386160878 + ], + "y": [ + 922786.3563789611, + -188119.49823623613 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -289319.9518633871, + 98779.4951496633 + ], + "y": [ + 922786.3563789611, + -188123.9780570342 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -289319.9518633871, + 98769.87019965112 + ], + "y": [ + 922786.3563789611, + -188121.51859750494 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -289319.9518633871, + 98763.69912444155 + ], + "y": [ + 922786.3563789611, + -188082.81454332572 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -289319.9518633871, + 98715.38337956829 + ], + "y": [ + 922786.3563789611, + -188023.85098966694 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -289319.9518633871, + 98838.01226486915 + ], + "y": [ + 922786.3563789611, + -188038.4334288893 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -289319.9518633871, + 98731.25835265023 + ], + "y": [ + 922786.3563789611, + -188097.6602407291 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -289319.9518633871, + 98794.9356782363 + ], + "y": [ + 922786.3563789611, + -188124.65543545736 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -289319.9518633871, + 98875.12446310604 + ], + "y": [ + 922786.3563789611, + -188079.8329504583 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -289319.9518633871, + 98845.6917714939 + ], + "y": [ + 922786.3563789611, + -188129.3743830729 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 430326.2401265009, + 96556.18686331193 + ], + "y": [ + -644701.2051098609, + -188744.70646205018 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 526519.186730167, + 97740.36484145897 + ], + "y": [ + 94435.49249267735, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 628334.3788628908, + 97740.36484145897 + ], + "y": [ + -347927.73612048425, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 141499.46505001077, + 97740.36484145897 + ], + "y": [ + -590558.1079634632, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -25360.886258957606, + 97740.36484145897 + ], + "y": [ + 436659.297220233, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -709849.9682138389, + 97740.36484145897 + ], + "y": [ + -123683.88473853997, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 472144.8048529735, + 97740.36484145897 + ], + "y": [ + -688526.3661659575, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 642676.881996413, + 97532.46968364714 + ], + "y": [ + 316655.25208180136, + -187821.3765527352 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 642676.881996413, + 97358.46679886585 + ], + "y": [ + 316655.25208180136, + -188482.5310615353 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 985082.8450351985, + 97532.46968364714 + ], + "y": [ + 916492.8733069033, + -187821.3765527352 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 985082.8450351985, + 97358.46679886585 + ], + "y": [ + 916492.8733069033, + -188482.5310615353 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 767568.1344808547, + 96003.07301754713 + ], + "y": [ + -386181.65959297324, + -189407.17407776418 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 767568.1344808547, + 95855.84606940606 + ], + "y": [ + -386181.65959297324, + -189594.04877099616 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -439114.2156817536, + 90620.59321338178 + ], + "y": [ + -487813.6298938742, + -189928.77888545024 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -439114.2156817536, + 94139.8012458913 + ], + "y": [ + -487813.6298938742, + -190063.494640501 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -439114.2156817536, + 94032.80335215264 + ], + "y": [ + -487813.6298938742, + -190324.0838511919 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -439114.2156817536, + 93807.67468704915 + ], + "y": [ + -487813.6298938742, + -190002.50380021115 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -439114.2156817536, + 94732.86002550159 + ], + "y": [ + -487813.6298938742, + -189351.62227285848 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 712395.3589967475, + 96955.0168977828 + ], + "y": [ + -354283.3441196564, + -188667.17352392792 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -67881.32275742265, + 96373.51181593174 + ], + "y": [ + 596646.8317409, + -189386.891690723 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 324337.7237462275, + 96024.31193605777 + ], + "y": [ + 522818.3144789189, + -188871.73421564943 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 177913.9037321007, + 96039.53114090665 + ], + "y": [ + -384164.92908829, + -187862.98846391006 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 177913.9037321007, + 96558.40139577903 + ], + "y": [ + -384164.92908829, + -187369.8494239768 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -475020.10876459733, + 96648.53242134354 + ], + "y": [ + 320792.0802057198, + -188047.51511369456 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -475020.10876459733, + 96344.26723680123 + ], + "y": [ + 320792.0802057198, + -188898.55180012845 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -475020.10876459733, + 96248.28034246547 + ], + "y": [ + 320792.0802057198, + -189023.57039513884 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 829759.5568487745, + 96483.28090692386 + ], + "y": [ + 779329.0476945671, + -189300.64988114213 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 621840.5604610262, + 96054.44520130524 + ], + "y": [ + 45889.27917682817, + -189304.23943329643 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 241848.8026121215, + 96524.24227801626 + ], + "y": [ + -253784.5924087889, + -189802.91324633866 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 241848.8026121215, + 96583.58536032659 + ], + "y": [ + -253784.5924087889, + -189198.96904724132 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 241848.8026121215, + 95881.63940456003 + ], + "y": [ + -253784.5924087889, + -190149.611876793 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 272875.8067462236, + 95096.87780489783 + ], + "y": [ + -934164.0465042376, + -189688.97127087243 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 272875.8067462236, + 94429.634403017 + ], + "y": [ + -934164.0465042376, + -190162.42457619242 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -434770.8766206291, + 96769.24653086865 + ], + "y": [ + -656028.3240911526, + -189121.32206798793 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 806359.0699789898, + 95885.77494615254 + ], + "y": [ + 248447.30831388495, + -185673.72485317432 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 806359.0699789898, + 97401.66966851291 + ], + "y": [ + 248447.30831388495, + -187602.98284577316 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 806359.0699789898, + 96529.94166735753 + ], + "y": [ + 248447.30831388495, + -187118.0943589478 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 806359.0699789898, + 96400.6315649038 + ], + "y": [ + 248447.30831388495, + -187049.29511418982 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -863812.5608722302, + 96701.50888855853 + ], + "y": [ + -189224.20790707073, + -188760.63914555783 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -863812.5608722302, + 96563.36738665988 + ], + "y": [ + -189224.20790707073, + -188352.16461745944 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -863812.5608722302, + 96663.0086169134 + ], + "y": [ + -189224.20790707073, + -188788.10931841948 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 675721.386773738, + 96404.13831153684 + ], + "y": [ + 822378.6475941191, + -188307.55943122407 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -792990.950272441, + 97358.46679886585 + ], + "y": [ + -411076.1745670002, + -188482.5310615353 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -792990.950272441, + 97532.46968364714 + ], + "y": [ + -411076.1745670002, + -187821.3765527352 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 79002.14739262879, + 95923.70592479738 + ], + "y": [ + 632391.1711196257, + -185447.3982690385 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 79002.14739262879, + 95540.24503251979 + ], + "y": [ + 632391.1711196257, + -185647.43874032347 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 79002.14739262879, + 95920.065981809 + ], + "y": [ + 632391.1711196257, + -186600.68816277097 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 79002.14739262879, + 95963.6655367038 + ], + "y": [ + 632391.1711196257, + -186490.92481183048 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 267310.8001232671, + 96456.96747554903 + ], + "y": [ + -234070.1943759147, + -190030.77698961753 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 267310.8001232671, + 96427.6516351581 + ], + "y": [ + -234070.1943759147, + -189844.44305599996 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 267310.8001232671, + 96826.02448370877 + ], + "y": [ + -234070.1943759147, + -189312.96716657415 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -49360.913627868984, + 95922.0581596575 + ], + "y": [ + -988385.3949405677, + -188863.83470003767 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -49360.913627868984, + 95802.9629154136 + ], + "y": [ + -988385.3949405677, + -190030.6059389626 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -49360.913627868984, + 95957.78104570328 + ], + "y": [ + -988385.3949405677, + -188831.9884617397 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -49360.913627868984, + 96331.52105283472 + ], + "y": [ + -988385.3949405677, + -188800.5645587159 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 81010.32478152437, + 96392.03219267243 + ], + "y": [ + -256534.5830081587, + -188270.16098356986 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 81010.32478152437, + 96039.53114090665 + ], + "y": [ + -256534.5830081587, + -187862.98846391006 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 81010.32478152437, + 95481.26094749449 + ], + "y": [ + -256534.5830081587, + -188288.73056814942 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 81010.32478152437, + 96072.651127653 + ], + "y": [ + -256534.5830081587, + -188325.90735821644 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 698548.8043876948, + 96107.71912624051 + ], + "y": [ + -581501.1925851901, + -187036.11661907207 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 698548.8043876948, + 95682.31879557903 + ], + "y": [ + -581501.1925851901, + -187430.4310402768 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 698548.8043876948, + 96011.6169628847 + ], + "y": [ + -581501.1925851901, + -187168.63791618857 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -777612.1742197457, + 98745.28871415959 + ], + "y": [ + 101762.26026891544, + -188085.78649439852 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -777612.1742197457, + 98737.9075507478 + ], + "y": [ + 101762.26026891544, + -188069.8757916443 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -777612.1742197457, + 98260.19273313228 + ], + "y": [ + 101762.26026891544, + -188377.16521032414 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 25182.32358250505, + 97358.46679886585 + ], + "y": [ + -640495.1551968363, + -188482.5310615353 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 25182.32358250505, + 97532.46968364714 + ], + "y": [ + -640495.1551968363, + -187821.3765527352 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 92403.72030892958 + ], + "y": [ + -204040.0324043048, + -181388.6636291559 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 92552.59924319923 + ], + "y": [ + -204040.0324043048, + -186958.0626639662 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 94130.55860663287 + ], + "y": [ + -204040.0324043048, + -187792.11829844635 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 92453.32910364396 + ], + "y": [ + -204040.0324043048, + -186964.88142731908 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 92636.97281790803 + ], + "y": [ + -204040.0324043048, + -186890.040734751 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 94694.68806398017 + ], + "y": [ + -204040.0324043048, + -187516.96845806637 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 93639.94569899137 + ], + "y": [ + -204040.0324043048, + -187371.3989655883 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 94259.03278558327 + ], + "y": [ + -204040.0324043048, + -187673.56257634406 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 91080.58784143622 + ], + "y": [ + -204040.0324043048, + -188468.66418560426 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 93850.41662442079 + ], + "y": [ + -204040.0324043048, + -187827.28797163125 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 92357.81244688503 + ], + "y": [ + -204040.0324043048, + -188015.37292595976 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 92015.08959235293 + ], + "y": [ + -204040.0324043048, + -186963.61210988168 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 92793.59818111316 + ], + "y": [ + -204040.0324043048, + -186909.75756834846 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 94015.54400806065 + ], + "y": [ + -204040.0324043048, + -188500.0586157652 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 93415.0685794173 + ], + "y": [ + -204040.0324043048, + -187625.4001681701 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 92661.92845541582 + ], + "y": [ + -204040.0324043048, + -186957.07730695538 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 92700.30450697383 + ], + "y": [ + -204040.0324043048, + -187126.5717021234 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 92811.56373493784 + ], + "y": [ + -204040.0324043048, + -187092.89589648045 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 88980.87619367571 + ], + "y": [ + -204040.0324043048, + -187547.0278070721 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 93666.16904241925 + ], + "y": [ + -204040.0324043048, + -186215.06335089865 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 92727.31906879041 + ], + "y": [ + -204040.0324043048, + -186961.92845610308 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 92625.18394918887 + ], + "y": [ + -204040.0324043048, + -187072.4040574778 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 92710.21548334243 + ], + "y": [ + -204040.0324043048, + -186908.50557712573 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 92730.67067426581 + ], + "y": [ + -204040.0324043048, + -187018.58994966594 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 92599.58217260841 + ], + "y": [ + -204040.0324043048, + -186937.57642460006 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 92761.81424118878 + ], + "y": [ + -204040.0324043048, + -187082.89602712472 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 92651.26372829395 + ], + "y": [ + -204040.0324043048, + -186995.12405826268 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 92548.69810217191 + ], + "y": [ + -204040.0324043048, + -187033.26399727527 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 94753.5297564697 + ], + "y": [ + -204040.0324043048, + -187917.0637720583 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 92642.4602856306 + ], + "y": [ + -204040.0324043048, + -187031.77413979647 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 91676.43793576607 + ], + "y": [ + -204040.0324043048, + -188265.26483815484 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 92695.15487336805 + ], + "y": [ + -204040.0324043048, + -186858.39035521806 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 93155.38758721903 + ], + "y": [ + -204040.0324043048, + -188079.2339962156 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 89305.71197876369 + ], + "y": [ + -204040.0324043048, + -187486.7108342232 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 94890.65745591454 + ], + "y": [ + -204040.0324043048, + -187583.99768382817 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 93887.36045593988 + ], + "y": [ + -204040.0324043048, + -187642.49697600745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 93682.44991506475 + ], + "y": [ + -204040.0324043048, + -186233.90314590227 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 92689.24617566908 + ], + "y": [ + -204040.0324043048, + -187072.79060259266 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 93904.56333636155 + ], + "y": [ + -204040.0324043048, + -187621.1473503119 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 92764.63612228677 + ], + "y": [ + -204040.0324043048, + -187006.72435799113 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 93226.39690794115 + ], + "y": [ + -204040.0324043048, + -187790.78028682835 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -459999.322682785, + 93143.11311426201 + ], + "y": [ + -204040.0324043048, + -187892.14861530808 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -530206.2725823066, + 94983.58739011025 + ], + "y": [ + 267036.07940844476, + -188892.18297269146 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -530206.2725823066, + 93345.5384733388 + ], + "y": [ + 267036.07940844476, + -188905.7409194041 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -530206.2725823066, + 93475.56240329082 + ], + "y": [ + 267036.07940844476, + -189138.7526208499 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -530206.2725823066, + 93855.61888073095 + ], + "y": [ + 267036.07940844476, + -189186.7934963984 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -530206.2725823066, + 95749.39705457314 + ], + "y": [ + 267036.07940844476, + -188827.6268164547 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -530206.2725823066, + 94465.17063363985 + ], + "y": [ + 267036.07940844476, + -188634.27361204935 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -530206.2725823066, + 92913.17761014139 + ], + "y": [ + 267036.07940844476, + -188976.67306946605 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -530206.2725823066, + 91312.64033973779 + ], + "y": [ + 267036.07940844476, + -188450.6558889738 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -530206.2725823066, + 92365.60828492136 + ], + "y": [ + 267036.07940844476, + -188410.6730522339 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -530206.2725823066, + 93034.01413382801 + ], + "y": [ + 267036.07940844476, + -188982.28023135234 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -285897.65920436603, + 95922.0581596575 + ], + "y": [ + 577995.7473875738, + -188863.83470003767 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -285897.65920436603, + 96232.6883024668 + ], + "y": [ + 577995.7473875738, + -188901.95839418104 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -898957.63764533, + 97197.31119879312 + ], + "y": [ + 969717.6194514378, + -188293.05528383492 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -898957.63764533, + 97345.58098981141 + ], + "y": [ + 969717.6194514378, + -188304.60597921925 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -898957.63764533, + 97401.66966851291 + ], + "y": [ + 969717.6194514378, + -187602.98284577316 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -338463.1555088351, + 96319.04144083924 + ], + "y": [ + -176993.74511697164, + -189027.32662829437 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -338463.1555088351, + 94787.68098338218 + ], + "y": [ + -176993.74511697164, + -188703.02110051003 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 96392.03219267243 + ], + "y": [ + 327564.2604767903, + -188270.16098356986 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94304.28587484072 + ], + "y": [ + 327564.2604767903, + -189670.30367153513 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95375.71980775791 + ], + "y": [ + 327564.2604767903, + -187994.90708299744 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 96010.91751038717 + ], + "y": [ + 327564.2604767903, + -188227.91479363065 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94846.74238052499 + ], + "y": [ + 327564.2604767903, + -188959.37304124728 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95360.36419013362 + ], + "y": [ + 327564.2604767903, + -188384.46387554856 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95443.67008227661 + ], + "y": [ + 327564.2604767903, + -188423.99184216498 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95781.4838692387 + ], + "y": [ + 327564.2604767903, + -188238.2147196666 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95621.74045129302 + ], + "y": [ + 327564.2604767903, + -189253.3339606655 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94709.05739456239 + ], + "y": [ + 327564.2604767903, + -189185.39353573837 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95069.66525755977 + ], + "y": [ + 327564.2604767903, + -189354.40611590687 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95628.14642198732 + ], + "y": [ + 327564.2604767903, + -189275.31015895875 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94459.15082891459 + ], + "y": [ + 327564.2604767903, + -189331.45564091532 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95527.20667464145 + ], + "y": [ + 327564.2604767903, + -188567.58941515462 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94762.37057915328 + ], + "y": [ + 327564.2604767903, + -189030.19349696804 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94658.19240918643 + ], + "y": [ + 327564.2604767903, + -189196.05341570152 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94716.98202491149 + ], + "y": [ + 327564.2604767903, + -189004.60313990066 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94759.00609204093 + ], + "y": [ + 327564.2604767903, + -189177.62541549082 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94646.88730549908 + ], + "y": [ + 327564.2604767903, + -189238.99357410418 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95292.52782742439 + ], + "y": [ + 327564.2604767903, + -188534.02363205954 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95093.22706462545 + ], + "y": [ + 327564.2604767903, + -189103.72355039057 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 98085.07588417802 + ], + "y": [ + 327564.2604767903, + -188253.45353298465 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95163.75908553116 + ], + "y": [ + 327564.2604767903, + -188413.92210597807 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 96006.77287976355 + ], + "y": [ + 327564.2604767903, + -188679.23184501874 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95274.60828290615 + ], + "y": [ + 327564.2604767903, + -188187.00891794523 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94773.27914431288 + ], + "y": [ + 327564.2604767903, + -189002.36578898947 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94843.32769305678 + ], + "y": [ + 327564.2604767903, + -189314.34425935848 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94756.04785280023 + ], + "y": [ + 327564.2604767903, + -189077.88806110198 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94693.04021624882 + ], + "y": [ + 327564.2604767903, + -189112.1678726178 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95274.55463163379 + ], + "y": [ + 327564.2604767903, + -188644.9068178371 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94205.42306946588 + ], + "y": [ + 327564.2604767903, + -188854.15596558747 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94740.62358451245 + ], + "y": [ + 327564.2604767903, + -189111.59184893724 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94914.46333674647 + ], + "y": [ + 327564.2604767903, + -188992.06395225637 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95731.94340542807 + ], + "y": [ + 327564.2604767903, + -189040.44316666905 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94554.58874211222 + ], + "y": [ + 327564.2604767903, + -189146.26340260505 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 96091.204926268 + ], + "y": [ + 327564.2604767903, + -188960.36420407722 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95643.38624755875 + ], + "y": [ + 327564.2604767903, + -188977.27182089942 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95405.5970323345 + ], + "y": [ + 327564.2604767903, + -190700.1111637919 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94965.90340529142 + ], + "y": [ + 327564.2604767903, + -189013.04796735963 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94090.45690331612 + ], + "y": [ + 327564.2604767903, + -189379.49234130658 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 92687.32405817328 + ], + "y": [ + 327564.2604767903, + -188621.49299553412 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94400.56846677243 + ], + "y": [ + 327564.2604767903, + -189304.65394903507 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94532.99011271482 + ], + "y": [ + 327564.2604767903, + -189125.53360787733 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94838.88278888688 + ], + "y": [ + 327564.2604767903, + -189135.01597268603 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94912.71843664766 + ], + "y": [ + 327564.2604767903, + -189115.81575099364 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94702.53619375687 + ], + "y": [ + 327564.2604767903, + -189157.19198902682 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94259.06712940332 + ], + "y": [ + 327564.2604767903, + -188738.48340001726 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95687.5583436565 + ], + "y": [ + 327564.2604767903, + -188921.90699962387 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94745.48610069028 + ], + "y": [ + 327564.2604767903, + -189360.31796682146 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94924.7628056497 + ], + "y": [ + 327564.2604767903, + -189070.91343901315 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94836.83100987966 + ], + "y": [ + 327564.2604767903, + -190093.18905705298 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94635.31494511566 + ], + "y": [ + 327564.2604767903, + -189047.08598048709 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95171.36460552194 + ], + "y": [ + 327564.2604767903, + -189299.65616548483 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94428.00833897035 + ], + "y": [ + 327564.2604767903, + -189095.541722688 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 91875.6118444357 + ], + "y": [ + 327564.2604767903, + -188344.0930836277 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94818.5478788063 + ], + "y": [ + 327564.2604767903, + -189171.19029766714 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94803.47505405096 + ], + "y": [ + 327564.2604767903, + -189042.28405360697 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94609.06856092627 + ], + "y": [ + 327564.2604767903, + -189119.99497062556 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95243.05174065192 + ], + "y": [ + 327564.2604767903, + -188237.25251034857 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94579.1668497888 + ], + "y": [ + 327564.2604767903, + -189195.42176761568 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94710.98077661607 + ], + "y": [ + 327564.2604767903, + -189062.39520516488 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94636.4031377064 + ], + "y": [ + 327564.2604767903, + -189376.82012229282 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95594.04154313843 + ], + "y": [ + 327564.2604767903, + -188752.9247450727 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94853.46116542409 + ], + "y": [ + 327564.2604767903, + -189405.91331066622 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95262.41295878915 + ], + "y": [ + 327564.2604767903, + -189552.3086334869 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94996.61867838957 + ], + "y": [ + 327564.2604767903, + -189502.59770853355 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95427.51893881544 + ], + "y": [ + 327564.2604767903, + -189170.9678004025 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95141.30835602302 + ], + "y": [ + 327564.2604767903, + -189264.0420911513 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95135.73958053072 + ], + "y": [ + 327564.2604767903, + -189503.85032749924 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94811.20964058898 + ], + "y": [ + 327564.2604767903, + -189204.769419827 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95308.98963794683 + ], + "y": [ + 327564.2604767903, + -188590.4523846817 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95213.77887412795 + ], + "y": [ + 327564.2604767903, + -188232.11752967277 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94550.01100453151 + ], + "y": [ + 327564.2604767903, + -189226.9114919114 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94616.6585852082 + ], + "y": [ + 327564.2604767903, + -189164.54245151358 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94915.01791906256 + ], + "y": [ + 327564.2604767903, + -189027.77132385422 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94779.60175355068 + ], + "y": [ + 327564.2604767903, + -189230.86162244383 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95651.87929649846 + ], + "y": [ + 327564.2604767903, + -189066.13649801663 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94969.43121341393 + ], + "y": [ + 327564.2604767903, + -188975.60125457792 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94871.66004225804 + ], + "y": [ + 327564.2604767903, + -189062.5039727102 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94698.2564749882 + ], + "y": [ + 327564.2604767903, + -189350.8806358681 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 98122.6370414771 + ], + "y": [ + 327564.2604767903, + -188269.15616936548 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94609.75573408123 + ], + "y": [ + 327564.2604767903, + -188968.20482936336 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95744.51531875192 + ], + "y": [ + 327564.2604767903, + -188815.02865766146 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95569.49080974681 + ], + "y": [ + 327564.2604767903, + -189043.76513096062 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94553.34862649688 + ], + "y": [ + 327564.2604767903, + -189256.66974275385 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94068.90013805934 + ], + "y": [ + 327564.2604767903, + -189395.66537570828 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94911.10914154527 + ], + "y": [ + 327564.2604767903, + -189168.39200200443 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 93841.09081628201 + ], + "y": [ + 327564.2604767903, + -189180.9410564133 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95055.96301467503 + ], + "y": [ + 327564.2604767903, + -189294.69067324145 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94973.76103672285 + ], + "y": [ + 327564.2604767903, + -189527.4692278551 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 93860.33853556491 + ], + "y": [ + 327564.2604767903, + -188818.7674323714 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94666.08189515283 + ], + "y": [ + 327564.2604767903, + -189257.13683550936 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94804.05777877627 + ], + "y": [ + 327564.2604767903, + -189100.23306250124 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95192.48874345585 + ], + "y": [ + 327564.2604767903, + -189550.2287127826 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94682.03972500942 + ], + "y": [ + 327564.2604767903, + -189290.7525839601 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94318.87336662205 + ], + "y": [ + 327564.2604767903, + -189267.28726523466 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 98071.86657727559 + ], + "y": [ + 327564.2604767903, + -188239.65910895087 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95074.67859421566 + ], + "y": [ + 327564.2604767903, + -187509.8701143695 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95052.34933786246 + ], + "y": [ + 327564.2604767903, + -187500.4930551508 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94847.03071224976 + ], + "y": [ + 327564.2604767903, + -189204.5507592727 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94712.39449672872 + ], + "y": [ + 327564.2604767903, + -189093.8532022557 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94681.03509595625 + ], + "y": [ + 327564.2604767903, + -189171.2221999843 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94662.70335696908 + ], + "y": [ + 327564.2604767903, + -189071.60158787234 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94530.9667988148 + ], + "y": [ + 327564.2604767903, + -189093.08976506037 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94394.743184273 + ], + "y": [ + 327564.2604767903, + -189407.5843037053 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 93236.21560331441 + ], + "y": [ + 327564.2604767903, + -189481.84477904785 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95228.59152965351 + ], + "y": [ + 327564.2604767903, + -188480.6248001793 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95599.18088294458 + ], + "y": [ + 327564.2604767903, + -187643.83786716606 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 92172.3185204082 + ], + "y": [ + 327564.2604767903, + -188410.19015950867 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94730.79640190289 + ], + "y": [ + 327564.2604767903, + -189244.75125275418 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95015.49625623692 + ], + "y": [ + 327564.2604767903, + -189322.13919379382 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94674.89580671789 + ], + "y": [ + 327564.2604767903, + -189036.37157464225 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95460.7576657949 + ], + "y": [ + 327564.2604767903, + -188851.6819268115 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95481.26094749449 + ], + "y": [ + 327564.2604767903, + -188288.73056814942 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94694.88936601186 + ], + "y": [ + 327564.2604767903, + -189227.67375761928 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94637.44384110306 + ], + "y": [ + 327564.2604767903, + -189075.98850339456 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94023.65044193376 + ], + "y": [ + 327564.2604767903, + -188744.13909734573 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94711.8919185092 + ], + "y": [ + 327564.2604767903, + -189286.49138647597 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94639.7976547818 + ], + "y": [ + 327564.2604767903, + -189153.23345672205 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94969.34668009236 + ], + "y": [ + 327564.2604767903, + -187858.47857020143 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94867.71860626241 + ], + "y": [ + 327564.2604767903, + -189295.42475244775 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 96039.53114090665 + ], + "y": [ + 327564.2604767903, + -187862.98846391006 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94499.29954296813 + ], + "y": [ + 327564.2604767903, + -189309.40406356056 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94412.16071475198 + ], + "y": [ + 327564.2604767903, + -189446.06561523385 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94500.6446202604 + ], + "y": [ + 327564.2604767903, + -189270.95690073894 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94316.72565507321 + ], + "y": [ + 327564.2604767903, + -189371.36833568558 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94747.77428662438 + ], + "y": [ + 327564.2604767903, + -189045.81476778517 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94831.09840327874 + ], + "y": [ + 327564.2604767903, + -189090.02633489924 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94872.79287174557 + ], + "y": [ + 327564.2604767903, + -189167.51060793153 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94598.10840219341 + ], + "y": [ + 327564.2604767903, + -188997.7891351952 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94789.93569354182 + ], + "y": [ + 327564.2604767903, + -189166.2520355059 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94645.92150016353 + ], + "y": [ + 327564.2604767903, + -189128.02287472552 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94772.43466967792 + ], + "y": [ + 327564.2604767903, + -189377.71392390993 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94783.49907630085 + ], + "y": [ + 327564.2604767903, + -189261.63282785052 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94624.56371474003 + ], + "y": [ + 327564.2604767903, + -189189.44204252012 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95782.49090316397 + ], + "y": [ + 327564.2604767903, + -188832.0659363745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94352.71458049152 + ], + "y": [ + 327564.2604767903, + -189372.78444553076 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94039.43659745945 + ], + "y": [ + 327564.2604767903, + -189522.90111062877 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94724.12280359474 + ], + "y": [ + 327564.2604767903, + -189215.01194453132 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94549.95722461416 + ], + "y": [ + 327564.2604767903, + -189188.26284097042 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95172.62949097781 + ], + "y": [ + 327564.2604767903, + -190170.23694941032 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94748.03678735308 + ], + "y": [ + 327564.2604767903, + -189137.65822856384 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95142.30696566738 + ], + "y": [ + 327564.2604767903, + -189532.13206147918 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94079.97573473441 + ], + "y": [ + 327564.2604767903, + -189244.33702691298 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 92867.65170326555 + ], + "y": [ + 327564.2604767903, + -189342.90886317022 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95137.86898625335 + ], + "y": [ + 327564.2604767903, + -189601.42301397282 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94657.09089040948 + ], + "y": [ + 327564.2604767903, + -189001.4148694418 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94592.18007251328 + ], + "y": [ + 327564.2604767903, + -189031.42372914587 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 91386.79521336866 + ], + "y": [ + 327564.2604767903, + -188346.60400362083 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94302.9983659527 + ], + "y": [ + 327564.2604767903, + -189432.19725203505 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95035.60486780475 + ], + "y": [ + 327564.2604767903, + -189383.60172976655 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95213.0622434433 + ], + "y": [ + 327564.2604767903, + -188396.23465801778 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95306.71022996533 + ], + "y": [ + 327564.2604767903, + -188159.4341766519 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94700.77181220899 + ], + "y": [ + 327564.2604767903, + -188977.16363192897 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94617.81259757694 + ], + "y": [ + 327564.2604767903, + -188924.8418972556 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94535.68576734806 + ], + "y": [ + 327564.2604767903, + -189025.99171597915 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94750.88896059677 + ], + "y": [ + 327564.2604767903, + -189271.29959663784 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94470.20509490756 + ], + "y": [ + 327564.2604767903, + -188897.62049298765 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94511.66669647257 + ], + "y": [ + 327564.2604767903, + -188978.69804431516 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94490.98493329533 + ], + "y": [ + 327564.2604767903, + -188947.4139822555 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94846.70037648812 + ], + "y": [ + 327564.2604767903, + -189026.34351702797 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94034.72001872609 + ], + "y": [ + 327564.2604767903, + -188711.72538129365 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94559.50779408682 + ], + "y": [ + 327564.2604767903, + -189104.3400123642 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94466.7376842554 + ], + "y": [ + 327564.2604767903, + -189226.8573059561 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95513.58278963793 + ], + "y": [ + 327564.2604767903, + -188884.40182536017 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94305.51369188944 + ], + "y": [ + 327564.2604767903, + -189212.70822393885 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94851.28150629238 + ], + "y": [ + 327564.2604767903, + -189665.23911238607 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94772.25786639804 + ], + "y": [ + 327564.2604767903, + -188941.9994408223 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94518.72288699445 + ], + "y": [ + 327564.2604767903, + -189434.8299251847 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 92600.87220891484 + ], + "y": [ + 327564.2604767903, + -188586.70146604645 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94385.63245566067 + ], + "y": [ + 327564.2604767903, + -189292.63817566453 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 96765.01998356344 + ], + "y": [ + 327564.2604767903, + -188468.64488827685 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94624.67668233525 + ], + "y": [ + 327564.2604767903, + -188955.28240884622 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 95320.26347648272 + ], + "y": [ + 327564.2604767903, + -188530.70142542297 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 94187.4208589902 + ], + "y": [ + 327564.2604767903, + -188888.66487646574 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 96407.8149457741 + ], + "y": [ + 327564.2604767903, + -189282.2219107152 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -441941.0409727664, + 93866.57023587385 + ], + "y": [ + 327564.2604767903, + -189684.28770806687 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 507573.35056005995, + 96732.86821624868 + ], + "y": [ + 376214.41089156637, + -188955.7460585158 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 690145.8497871232, + 95848.64233101926 + ], + "y": [ + 303277.8993777547, + -188128.57240646365 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 690145.8497871232, + 96229.66105626737 + ], + "y": [ + 303277.8993777547, + -187792.9688123335 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 690145.8497871232, + 98178.17510730785 + ], + "y": [ + 303277.8993777547, + -187942.22047264426 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 690145.8497871232, + 96273.17959649833 + ], + "y": [ + 303277.8993777547, + -188476.1018531056 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 690145.8497871232, + 92820.89814897874 + ], + "y": [ + 303277.8993777547, + -187953.14158568936 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 690145.8497871232, + 96599.13805686972 + ], + "y": [ + 303277.8993777547, + -188243.55188231324 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 690145.8497871232, + 95659.94479562767 + ], + "y": [ + 303277.8993777547, + -188224.56475781766 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 690145.8497871232, + 96357.58676902352 + ], + "y": [ + 303277.8993777547, + -187566.37581145845 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 690145.8497871232, + 95689.95404916865 + ], + "y": [ + 303277.8993777547, + -188187.95018705592 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 690145.8497871232, + 95858.68960868126 + ], + "y": [ + 303277.8993777547, + -188277.6495023525 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 690145.8497871232, + 95814.95649081406 + ], + "y": [ + 303277.8993777547, + -188172.14856838898 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 690145.8497871232, + 97069.64943071302 + ], + "y": [ + 303277.8993777547, + -187507.9968975285 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 690145.8497871232, + 95560.28088297267 + ], + "y": [ + 303277.8993777547, + -188728.81774535606 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -89085.74572926975, + 96806.8541605258 + ], + "y": [ + 549892.402684508, + -188290.08218015765 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 915263.3573844782, + 96947.40675273385 + ], + "y": [ + -44412.02884230089, + -188107.46199151454 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 915263.3573844782, + 96920.50398772888 + ], + "y": [ + -44412.02884230089, + -188848.55062442037 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 915263.3573844782, + 96767.50358245717 + ], + "y": [ + -44412.02884230089, + -188717.3203540903 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 915263.3573844782, + 96817.66055571858 + ], + "y": [ + -44412.02884230089, + -187899.4158525461 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 713479.5856259892, + 97237.89195347154 + ], + "y": [ + 541172.2541876618, + -187856.58036489805 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 713479.5856259892, + 96947.40675273385 + ], + "y": [ + 541172.2541876618, + -188107.46199151454 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 713479.5856259892, + 96817.66055571858 + ], + "y": [ + 541172.2541876618, + -187899.4158525461 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 713479.5856259892, + 96888.97576383248 + ], + "y": [ + 541172.2541876618, + -188204.3724056574 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 713479.5856259892, + 97141.56965571626 + ], + "y": [ + 541172.2541876618, + -188169.14538504407 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 713479.5856259892, + 97272.16196531034 + ], + "y": [ + 541172.2541876618, + -187899.237151973 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 713479.5856259892, + 97095.49525391203 + ], + "y": [ + 541172.2541876618, + -188069.92329870115 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 713479.5856259892, + 96704.00303777175 + ], + "y": [ + 541172.2541876618, + -188430.55900018988 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 713479.5856259892, + 97189.19276118421 + ], + "y": [ + 541172.2541876618, + -187701.5703586604 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 713479.5856259892, + 97208.55798356787 + ], + "y": [ + 541172.2541876618, + -187761.59383487626 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 713479.5856259892, + 97237.84080032888 + ], + "y": [ + 541172.2541876618, + -187872.25388739264 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 713479.5856259892, + 97406.36037264415 + ], + "y": [ + 541172.2541876618, + -187753.2084302758 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 713479.5856259892, + 97126.32920940703 + ], + "y": [ + 541172.2541876618, + -187765.59237745742 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 713479.5856259892, + 97194.39851002919 + ], + "y": [ + 541172.2541876618, + -187809.27238686706 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 713479.5856259892, + 96183.9812972283 + ], + "y": [ + 541172.2541876618, + -188024.30685571092 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 713479.5856259892, + 96795.31918949624 + ], + "y": [ + 541172.2541876618, + -188424.35361027447 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 713479.5856259892, + 97051.71285679028 + ], + "y": [ + 541172.2541876618, + -187977.63799550864 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 713479.5856259892, + 96645.4446535775 + ], + "y": [ + 541172.2541876618, + -188680.41340104947 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 713479.5856259892, + 97016.89968225527 + ], + "y": [ + 541172.2541876618, + -188480.5260935519 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 713479.5856259892, + 98970.15914526228 + ], + "y": [ + 541172.2541876618, + -184929.26330034356 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -767480.6633687961, + 96164.31165177577 + ], + "y": [ + -871317.3856770733, + -191630.47589507297 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -767480.6633687961, + 96955.80310269099 + ], + "y": [ + -871317.3856770733, + -189739.38463051288 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -767480.6633687961, + 96766.57575414197 + ], + "y": [ + -871317.3856770733, + -189873.68737482626 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -767480.6633687961, + 96880.45975619479 + ], + "y": [ + -871317.3856770733, + -189708.2272477365 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -767480.6633687961, + 97320.49185837018 + ], + "y": [ + -871317.3856770733, + -187892.65214688177 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -767480.6633687961, + 96510.18842656737 + ], + "y": [ + -871317.3856770733, + -187863.91165705194 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -767480.6633687961, + 97003.43303968408 + ], + "y": [ + -871317.3856770733, + -189505.58704021748 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -767480.6633687961, + 96660.51533943972 + ], + "y": [ + -871317.3856770733, + -189880.0757312348 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -767480.6633687961, + 96966.02647052168 + ], + "y": [ + -871317.3856770733, + -189842.1324431489 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -767480.6633687961, + 96859.70450714213 + ], + "y": [ + -871317.3856770733, + -188854.43713783327 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -767480.6633687961, + 96932.30642163414 + ], + "y": [ + -871317.3856770733, + -189536.13208955494 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -767480.6633687961, + 96852.77079415339 + ], + "y": [ + -871317.3856770733, + -188299.83165938678 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -359558.8897121338, + 96039.53114090665 + ], + "y": [ + 569631.0496447363, + -187862.98846391006 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -359558.8897121338, + 95460.7576657949 + ], + "y": [ + 569631.0496447363, + -188851.6819268115 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -359558.8897121338, + 96081.2975453023 + ], + "y": [ + 569631.0496447363, + -189105.21478588888 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 202408.6912441687, + 97015.25817987997 + ], + "y": [ + 576377.5612561785, + -189296.96733505363 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 202408.6912441687, + 96839.05193444177 + ], + "y": [ + 576377.5612561785, + -189498.98953316532 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -472765.09146025503, + 96392.03219267243 + ], + "y": [ + -957608.7704076947, + -188270.16098356986 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -472765.09146025503, + 97817.707556705 + ], + "y": [ + -957608.7704076947, + -188836.9731938192 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -472765.09146025503, + 96743.47300321168 + ], + "y": [ + -957608.7704076947, + -189477.9687240938 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -472765.09146025503, + 96633.1960028662 + ], + "y": [ + -957608.7704076947, + -189686.82438527062 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -472765.09146025503, + 95731.94340542807 + ], + "y": [ + -957608.7704076947, + -189040.44316666905 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -472765.09146025503, + 96072.651127653 + ], + "y": [ + -957608.7704076947, + -188325.90735821644 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -224465.75825735682, + 96915.22190900354 + ], + "y": [ + -773571.3315946127, + -189266.72814157297 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 40079.99249920036, + 96645.1229128067 + ], + "y": [ + 79467.55808399919, + -189703.45302802385 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 850913.531484576, + 97004.95986761729 + ], + "y": [ + -511913.7106276921, + -189135.00336817247 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 850913.531484576, + 96566.99750987656 + ], + "y": [ + -511913.7106276921, + -189278.65997138573 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -907282.0446569585, + 96241.34047154605 + ], + "y": [ + -363660.75017817743, + -189241.36313499292 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 843622.9094645538, + 96094.8508150237 + ], + "y": [ + 258840.60215001003, + -189561.96308897558 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 843622.9094645538, + 96329.29923380495 + ], + "y": [ + 258840.60215001003, + -189390.3446237331 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 115292.52144101188, + 96303.92041500923 + ], + "y": [ + 774502.1446493892, + -191279.9278832995 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 115292.52144101188, + 95909.7739787418 + ], + "y": [ + 774502.1446493892, + -193001.23653771952 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -604109.0475752635, + 96400.51278286969 + ], + "y": [ + -807273.5584057267, + -187859.86995225446 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -604109.0475752635, + 95574.39534418302 + ], + "y": [ + -807273.5584057267, + -189738.0525135467 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -604109.0475752635, + 95694.79665191291 + ], + "y": [ + -807273.5584057267, + -189517.96720841108 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 284988.9338097777, + 96078.87408767999 + ], + "y": [ + 281063.3683157227, + -190973.23484101656 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 284988.9338097777, + 96745.54904144225 + ], + "y": [ + 281063.3683157227, + -189777.8358685715 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 284988.9338097777, + 96885.45509832901 + ], + "y": [ + 281063.3683157227, + -188921.5431373296 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 284988.9338097777, + 96570.03585592323 + ], + "y": [ + 281063.3683157227, + -190144.75403043907 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 284988.9338097777, + 96847.7893432129 + ], + "y": [ + 281063.3683157227, + -188947.86956916028 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -401281.38711647975, + 96580.26314007488 + ], + "y": [ + 74526.5651385103, + -189742.155668336 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -401281.38711647975, + 96283.38222595652 + ], + "y": [ + 74526.5651385103, + -189692.5200326185 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -401281.38711647975, + 96330.75641404516 + ], + "y": [ + 74526.5651385103, + -190156.38084035812 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -401281.38711647975, + 96505.76788267054 + ], + "y": [ + 74526.5651385103, + -189713.56303116062 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -486049.0391869989, + 95933.78130606312 + ], + "y": [ + -44382.38128250083, + -187405.71770728158 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -486049.0391869989, + 95969.93628717288 + ], + "y": [ + -44382.38128250083, + -187389.66797592156 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -623176.5609360784, + 96392.03219267243 + ], + "y": [ + 444682.40044604125, + -188270.16098356986 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -623176.5609360784, + 96241.8368167467 + ], + "y": [ + 444682.40044604125, + -188640.45100665794 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -623176.5609360784, + 96516.24082699847 + ], + "y": [ + 444682.40044604125, + -187622.41354491585 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -623176.5609360784, + 96352.37619288662 + ], + "y": [ + 444682.40044604125, + -188826.8178670996 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 978318.5934822272, + 95527.20667464145 + ], + "y": [ + -299820.94540707394, + -188567.58941515462 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 978318.5934822272, + 95977.4908427389 + ], + "y": [ + -299820.94540707394, + -189837.0067281555 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 978318.5934822272, + 96086.9490860762 + ], + "y": [ + -299820.94540707394, + -189774.66595851514 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 978318.5934822272, + 96094.51833331272 + ], + "y": [ + -299820.94540707394, + -189615.88052612924 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 978318.5934822272, + 96758.39095887466 + ], + "y": [ + -299820.94540707394, + -189272.23379027276 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 978318.5934822272, + 96034.32749733706 + ], + "y": [ + -299820.94540707394, + -190029.28538193705 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 978318.5934822272, + 96026.76816689323 + ], + "y": [ + -299820.94540707394, + -189844.7798702007 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 978318.5934822272, + 96158.4488359556 + ], + "y": [ + -299820.94540707394, + -189790.5959091938 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 978318.5934822272, + 96072.651127653 + ], + "y": [ + -299820.94540707394, + -188325.90735821644 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 978318.5934822272, + 96031.66005598055 + ], + "y": [ + -299820.94540707394, + -189991.2311607774 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -822372.6879477986, + 97015.25817987997 + ], + "y": [ + -852890.6146932214, + -189296.96733505363 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -822372.6879477986, + 97015.25817987997 + ], + "y": [ + -852890.6146932214, + -189296.96733505363 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -822372.6879477986, + 96839.05193444177 + ], + "y": [ + -852890.6146932214, + -189498.98953316532 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -822372.6879477986, + 96864.42186310086 + ], + "y": [ + -852890.6146932214, + -189682.05578414822 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -822372.6879477986, + 96587.15552488458 + ], + "y": [ + -852890.6146932214, + -189987.64885100897 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 625086.0530151355, + 96788.89525885877 + ], + "y": [ + 163635.05716330896, + -189360.52446627786 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 398851.1180425776, + 97189.5131054329 + ], + "y": [ + 910905.3678832464, + -188528.04369924997 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 398851.1180425776, + 97669.69791198618 + ], + "y": [ + 910905.3678832464, + -188875.90551008 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -982531.8952967137, + 97278.5656163335 + ], + "y": [ + 648026.9528531422, + -188016.10442522762 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 829256.0232519812, + 96896.58750176255 + ], + "y": [ + 140476.45945029764, + -188167.02460559944 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 829256.0232519812, + 97154.72425616732 + ], + "y": [ + 140476.45945029764, + -188123.19483452023 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 829256.0232519812, + 96987.80225378742 + ], + "y": [ + 140476.45945029764, + -189105.2816803546 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 829256.0232519812, + 96695.54475332797 + ], + "y": [ + 140476.45945029764, + -188987.74156072343 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 157263.60815314978, + 96726.40817559678 + ], + "y": [ + -303089.9316090217, + -189303.08944739285 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 157263.60815314978, + 96767.46602322998 + ], + "y": [ + -303089.9316090217, + -189317.7229192206 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 157263.60815314978, + 96813.4343547639 + ], + "y": [ + -303089.9316090217, + -189250.6861714318 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 157263.60815314978, + 96791.18101461837 + ], + "y": [ + -303089.9316090217, + -188349.47236547497 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 157263.60815314978, + 96817.66055571858 + ], + "y": [ + -303089.9316090217, + -187899.4158525461 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 850940.5457161552, + 95443.67008227661 + ], + "y": [ + 702957.956639624, + -188423.99184216498 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 850940.5457161552, + 95141.30835602302 + ], + "y": [ + 702957.956639624, + -189264.0420911513 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 850940.5457161552, + 95262.41295878915 + ], + "y": [ + 702957.956639624, + -189552.3086334869 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 850940.5457161552, + 95292.52782742439 + ], + "y": [ + 702957.956639624, + -188534.02363205954 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 850940.5457161552, + 95274.55463163379 + ], + "y": [ + 702957.956639624, + -188644.9068178371 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 850940.5457161552, + 95389.10664694483 + ], + "y": [ + 702957.956639624, + -189577.61389462257 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 850940.5457161552, + 95093.22706462545 + ], + "y": [ + 702957.956639624, + -189103.72355039057 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 850940.5457161552, + 94205.42306946588 + ], + "y": [ + 702957.956639624, + -188854.15596558747 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 850940.5457161552, + 95308.98963794683 + ], + "y": [ + 702957.956639624, + -188590.4523846817 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 850940.5457161552, + 95527.20667464145 + ], + "y": [ + 702957.956639624, + -188567.58941515462 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 850940.5457161552, + 95360.36419013362 + ], + "y": [ + 702957.956639624, + -188384.46387554856 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 850940.5457161552, + 95472.00274613315 + ], + "y": [ + 702957.956639624, + -188477.95331527485 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 850940.5457161552, + 95405.5970323345 + ], + "y": [ + 702957.956639624, + -190700.1111637919 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 850940.5457161552, + 95935.5419641612 + ], + "y": [ + 702957.956639624, + -189378.03325846698 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 850940.5457161552, + 95035.60486780475 + ], + "y": [ + 702957.956639624, + -189383.60172976655 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 850940.5457161552, + 95320.26347648272 + ], + "y": [ + 702957.956639624, + -188530.70142542297 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 850940.5457161552, + 96072.651127653 + ], + "y": [ + 702957.956639624, + -188325.90735821644 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -652873.5736363298, + 96253.58305118927 + ], + "y": [ + 535360.6304546237, + -189231.051408616 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -652873.5736363298, + 96263.70637434645 + ], + "y": [ + 535360.6304546237, + -189290.40865383588 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -165877.75686732464, + 96534.04849627241 + ], + "y": [ + -582178.1698576073, + -186632.56137489137 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 400648.1628683858, + 97358.46679886585 + ], + "y": [ + -122981.7689829138, + -188482.5310615353 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 400648.1628683858, + 97532.46968364714 + ], + "y": [ + -122981.7689829138, + -187821.3765527352 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -844246.5819693888, + 96198.74714645866 + ], + "y": [ + 975052.8974165997, + -189396.51935593525 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -844246.5819693888, + 96023.10216322435 + ], + "y": [ + 975052.8974165997, + -189490.2551625836 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -484658.3050507276, + 97066.1566770924 + ], + "y": [ + -580163.7149676814, + -189589.28553677927 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 27244.414390010574, + 96512.6439304231 + ], + "y": [ + -763095.0042941425, + -189048.4956879801 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 27244.414390010574, + 96656.65493202257 + ], + "y": [ + -763095.0042941425, + -189131.92422966988 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -235998.43433836033, + 98642.78682170947 + ], + "y": [ + -24819.552881023334, + -188104.6983502157 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -235998.43433836033, + 98026.80584910973 + ], + "y": [ + -24819.552881023334, + -187704.763876957 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -235998.43433836033, + 97317.9470175812 + ], + "y": [ + -24819.552881023334, + -189015.4951605007 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -235998.43433836033, + 97272.16196531034 + ], + "y": [ + -24819.552881023334, + -187899.237151973 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -235998.43433836033, + 97558.53189592143 + ], + "y": [ + -24819.552881023334, + -188563.3727238801 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -235998.43433836033, + 97141.56965571626 + ], + "y": [ + -24819.552881023334, + -188169.14538504407 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -235998.43433836033, + 97354.04987112107 + ], + "y": [ + -24819.552881023334, + -188868.86823729656 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -235998.43433836033, + 98156.10361722215 + ], + "y": [ + -24819.552881023334, + -188185.3569399699 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 832880.6118917629, + 97559.12810431966 + ], + "y": [ + -173346.57451710323, + -187448.3572804437 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 832880.6118917629, + 97016.89968225527 + ], + "y": [ + -173346.57451710323, + -188480.5260935519 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 990684.9044964272, + 98672.80035077463 + ], + "y": [ + -417201.7659561833, + -188272.94824742872 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 990684.9044964272, + 97608.46722365031 + ], + "y": [ + -417201.7659561833, + -189247.54195982916 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 990684.9044964272, + 97720.70350653208 + ], + "y": [ + -417201.7659561833, + -189033.53333615928 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 990684.9044964272, + 97761.99442165645 + ], + "y": [ + -417201.7659561833, + -189071.23203874825 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 990684.9044964272, + 96752.4665017377 + ], + "y": [ + -417201.7659561833, + -188876.74592565937 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 990684.9044964272, + 97746.8391580485 + ], + "y": [ + -417201.7659561833, + -189238.02623730994 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 990684.9044964272, + 97819.4972376039 + ], + "y": [ + -417201.7659561833, + -189115.05770210535 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 990684.9044964272, + 97811.11864279254 + ], + "y": [ + -417201.7659561833, + -189231.03855465443 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 990684.9044964272, + 97693.57749236286 + ], + "y": [ + -417201.7659561833, + -189259.5246750294 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 990684.9044964272, + 97735.9507021614 + ], + "y": [ + -417201.7659561833, + -189305.01453652733 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 990684.9044964272, + 97384.36803091576 + ], + "y": [ + -417201.7659561833, + -189185.22678595383 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 990684.9044964272, + 97155.80752875579 + ], + "y": [ + -417201.7659561833, + -189778.15834495376 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 990684.9044964272, + 97787.10318478926 + ], + "y": [ + -417201.7659561833, + -189298.76112672515 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -878821.3304950048, + 96806.8541605258 + ], + "y": [ + 440051.72985487495, + -188290.08218015765 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -878821.3304950048, + 96725.27797613826 + ], + "y": [ + 440051.72985487495, + -188757.12524904165 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -878821.3304950048, + 96947.40675273385 + ], + "y": [ + 440051.72985487495, + -188107.46199151454 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -878821.3304950048, + 96656.51605951994 + ], + "y": [ + 440051.72985487495, + -188126.8200295349 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -878821.3304950048, + 96621.34244090467 + ], + "y": [ + 440051.72985487495, + -188760.00770833693 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -878821.3304950048, + 96787.80852813035 + ], + "y": [ + 440051.72985487495, + -188933.22539579918 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -458711.1024669723, + 97481.5752702023 + ], + "y": [ + 167007.07363240785, + -188674.7471497121 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -458711.1024669723, + 96896.58750176255 + ], + "y": [ + 167007.07363240785, + -188167.02460559944 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -458711.1024669723, + 97154.72425616732 + ], + "y": [ + 167007.07363240785, + -188123.19483452023 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -458711.1024669723, + 96763.64967872995 + ], + "y": [ + 167007.07363240785, + -188336.20643323814 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -458711.1024669723, + 98517.20808727229 + ], + "y": [ + 167007.07363240785, + -188180.73220770183 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -458711.1024669723, + 97409.50882998393 + ], + "y": [ + 167007.07363240785, + -188519.90581438286 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 802251.3174304304, + 96746.40104686156 + ], + "y": [ + 844123.2156411576, + -187932.28950243027 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -504542.1352043298, + 96387.0378486012 + ], + "y": [ + -441582.8475081609, + -188952.85593883562 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 561261.9310804654, + 96137.27428645456 + ], + "y": [ + -202506.6013903658, + -189097.48187960163 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 97633.05212708894, + 96447.65576692639 + ], + "y": [ + -716399.6943027051, + -188308.2995444295 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 97633.05212708894, + 96500.05485471405 + ], + "y": [ + -716399.6943027051, + -188124.98331170535 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 97633.05212708894, + 96602.41413482858 + ], + "y": [ + -716399.6943027051, + -188393.99052171747 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 97633.05212708894, + 96347.26384012886 + ], + "y": [ + -716399.6943027051, + -188347.58050575748 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 97633.05212708894, + 96798.05259841571 + ], + "y": [ + -716399.6943027051, + -188876.59928470026 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 502900.9484947351, + 97123.64353111561 + ], + "y": [ + 256931.79497122642, + -189345.9124851909 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -405277.08141188713, + 98810.40128605721 + ], + "y": [ + 666829.5187873732, + -188180.15644195993 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -405277.08141188713, + 98748.83379870633 + ], + "y": [ + 666829.5187873732, + -189045.54815632163 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -405277.08141188713, + 98766.84037371344 + ], + "y": [ + 666829.5187873732, + -188937.80405805522 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -405277.08141188713, + 98595.68155874425 + ], + "y": [ + 666829.5187873732, + -188767.47226676266 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 15427.685521914647, + 97358.46679886585 + ], + "y": [ + 227772.45012929238, + -188482.5310615353 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 15427.685521914647, + 97532.46968364714 + ], + "y": [ + 227772.45012929238, + -187821.3765527352 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 942482.3561708895, + 95432.28216788654 + ], + "y": [ + 894017.2524725694, + -187601.13526565803 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 942482.3561708895, + 95102.33265077158 + ], + "y": [ + 894017.2524725694, + -187830.46815133246 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 324668.65708667634, + 96969.06747778888 + ], + "y": [ + 826749.0806877838, + -186931.52009524958 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 280237.001949774, + 98047.49514396398 + ], + "y": [ + -149638.04410942073, + -187722.01964145992 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 280237.001949774, + 97477.31474980435 + ], + "y": [ + -149638.04410942073, + -188625.28745242656 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -823020.539712868, + 97384.80366070305 + ], + "y": [ + 892984.7573596186, + -188602.07939852623 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -823020.539712868, + 98571.74309474658 + ], + "y": [ + 892984.7573596186, + -188156.60345261396 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -970779.9930329554, + 95476.30474211962 + ], + "y": [ + -446380.38475321437, + -189331.9915999827 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -970779.9930329554, + 96247.39210484998 + ], + "y": [ + -446380.38475321437, + -188984.34951568441 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -970779.9930329554, + 95988.61012463992 + ], + "y": [ + -446380.38475321437, + -189094.7454633695 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -486550.24362551223, + 97164.97647400496 + ], + "y": [ + 348686.85801109846, + -189479.30333773256 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 231074.82024078374, + 97510.69098668513 + ], + "y": [ + 555197.2759476387, + -188834.4604537936 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 231074.82024078374, + 98349.87077216271 + ], + "y": [ + 555197.2759476387, + -187923.30486023927 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 231074.82024078374, + 98009.1006468227 + ], + "y": [ + 555197.2759476387, + -188635.053643839 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -547870.9118915705, + 96616.28197124632 + ], + "y": [ + 858631.2968465331, + -189486.94419473826 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -547870.9118915705, + 96611.07880435153 + ], + "y": [ + 858631.2968465331, + -189045.68105489522 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -547870.9118915705, + 96643.07015445872 + ], + "y": [ + 858631.2968465331, + -188345.75062919507 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -702264.0646188254, + 96860.00354930486 + ], + "y": [ + -535266.8793977569, + -188696.782377594 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -702264.0646188254, + 97218.18359466371 + ], + "y": [ + -535266.8793977569, + -189006.25883621728 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -702264.0646188254, + 96656.51605951994 + ], + "y": [ + -535266.8793977569, + -188126.8200295349 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -702264.0646188254, + 97154.72425616732 + ], + "y": [ + -535266.8793977569, + -188123.19483452023 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -702264.0646188254, + 96987.80225378742 + ], + "y": [ + -535266.8793977569, + -189105.2816803546 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -702264.0646188254, + 96947.40675273385 + ], + "y": [ + -535266.8793977569, + -188107.46199151454 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -702264.0646188254, + 96791.18101461837 + ], + "y": [ + -535266.8793977569, + -188349.47236547497 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -702264.0646188254, + 96532.6513290047 + ], + "y": [ + -535266.8793977569, + -189387.78435538372 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 158951.22444749888, + 96476.99449429182 + ], + "y": [ + 347729.6376490493, + -189801.49095297614 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 158951.22444749888, + 96460.3440809962 + ], + "y": [ + 347729.6376490493, + -189489.71907673345 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -573579.8815497239, + 96817.66055571858 + ], + "y": [ + 155824.0474256294, + -187899.4158525461 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -573579.8815497239, + 96896.58750176255 + ], + "y": [ + 155824.0474256294, + -188167.02460559944 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -573579.8815497239, + 96656.51605951994 + ], + "y": [ + 155824.0474256294, + -188126.8200295349 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -573579.8815497239, + 97154.72425616732 + ], + "y": [ + 155824.0474256294, + -188123.19483452023 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -573579.8815497239, + 96987.80225378742 + ], + "y": [ + 155824.0474256294, + -189105.2816803546 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -573579.8815497239, + 96947.40675273385 + ], + "y": [ + 155824.0474256294, + -188107.46199151454 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -573579.8815497239, + 96791.18101461837 + ], + "y": [ + 155824.0474256294, + -188349.47236547497 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -573579.8815497239, + 96695.54475332797 + ], + "y": [ + 155824.0474256294, + -188987.74156072343 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -573579.8815497239, + 96532.6513290047 + ], + "y": [ + 155824.0474256294, + -189387.78435538372 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 291482.05335721734, + 93363.71919768747 + ], + "y": [ + 289323.7154408901, + -190382.19427593888 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 291482.05335721734, + 93502.02146333765 + ], + "y": [ + 289323.7154408901, + -190294.21864983928 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 291482.05335721734, + 93218.26568575818 + ], + "y": [ + 289323.7154408901, + -190368.25817851265 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96605.96850560357 + ], + "y": [ + 229215.98538537679, + -189554.68072761627 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96834.80703834713 + ], + "y": [ + 229215.98538537679, + -189522.66677498195 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 95965.26838759349 + ], + "y": [ + 229215.98538537679, + -189623.56254580448 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 94954.26355620637 + ], + "y": [ + 229215.98538537679, + -188251.55613681383 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96061.1094111204 + ], + "y": [ + 229215.98538537679, + -189916.311805951 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 98472.89573129527 + ], + "y": [ + 229215.98538537679, + -188292.3869375497 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96860.00354930486 + ], + "y": [ + 229215.98538537679, + -188696.782377594 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96947.40675273385 + ], + "y": [ + 229215.98538537679, + -188107.46199151454 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 98477.25442843478 + ], + "y": [ + 229215.98538537679, + -188271.77595069932 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96663.3347349886 + ], + "y": [ + 229215.98538537679, + -189041.9225197264 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97182.40630309808 + ], + "y": [ + 229215.98538537679, + -189199.17908190106 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 98498.41434807747 + ], + "y": [ + 229215.98538537679, + -188285.76996994668 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96705.80879914662 + ], + "y": [ + 229215.98538537679, + -189537.7817031003 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96932.7889750408 + ], + "y": [ + 229215.98538537679, + -189352.73404518928 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96884.50148839512 + ], + "y": [ + 229215.98538537679, + -189471.04120599278 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96614.16469347998 + ], + "y": [ + 229215.98538537679, + -189679.53787245677 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96666.70966909935 + ], + "y": [ + 229215.98538537679, + -189408.21023611428 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96700.68589331902 + ], + "y": [ + 229215.98538537679, + -188999.3408802612 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96896.58750176255 + ], + "y": [ + 229215.98538537679, + -188167.02460559944 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96888.97576383248 + ], + "y": [ + 229215.98538537679, + -188204.3724056574 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96643.9005120101 + ], + "y": [ + 229215.98538537679, + -189645.5000292996 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96541.9681406362 + ], + "y": [ + 229215.98538537679, + -189431.51059923717 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97087.54671590365 + ], + "y": [ + 229215.98538537679, + -189615.4869081341 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96751.41823297429 + ], + "y": [ + 229215.98538537679, + -189750.14044068835 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97088.14880740178 + ], + "y": [ + 229215.98538537679, + -189801.76573120884 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96691.22132401943 + ], + "y": [ + 229215.98538537679, + -189558.55733558614 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96817.66055571858 + ], + "y": [ + 229215.98538537679, + -187899.4158525461 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96809.66561279182 + ], + "y": [ + 229215.98538537679, + -189504.89278882294 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96774.85380189044 + ], + "y": [ + 229215.98538537679, + -189522.26639614848 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96773.12113524246 + ], + "y": [ + 229215.98538537679, + -189536.3625339415 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96537.39245144221 + ], + "y": [ + 229215.98538537679, + -189750.30848512865 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96631.60109535737 + ], + "y": [ + 229215.98538537679, + -189442.69507087598 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96479.84660377468 + ], + "y": [ + 229215.98538537679, + -190034.61897906184 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97272.16196531034 + ], + "y": [ + 229215.98538537679, + -187899.237151973 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96957.50399046045 + ], + "y": [ + 229215.98538537679, + -188801.60294815066 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96802.58799326436 + ], + "y": [ + 229215.98538537679, + -189834.3163791867 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96813.4343547639 + ], + "y": [ + 229215.98538537679, + -189250.6861714318 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97026.39229748285 + ], + "y": [ + 229215.98538537679, + -189257.69084732296 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97321.50714071444 + ], + "y": [ + 229215.98538537679, + -188954.66274327494 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96685.14736048535 + ], + "y": [ + 229215.98538537679, + -189640.1945004268 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96659.44539572205 + ], + "y": [ + 229215.98538537679, + -190115.39552164622 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96476.29445285945 + ], + "y": [ + 229215.98538537679, + -188306.66890581805 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 98504.94937934296 + ], + "y": [ + 229215.98538537679, + -188312.41502651962 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96505.43473450017 + ], + "y": [ + 229215.98538537679, + -189659.46917226465 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96630.14481112546 + ], + "y": [ + 229215.98538537679, + -189317.8406785239 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97079.77003968997 + ], + "y": [ + 229215.98538537679, + -189302.72898643688 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97164.16435672548 + ], + "y": [ + 229215.98538537679, + -189169.03781422778 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96758.34868779706 + ], + "y": [ + 229215.98538537679, + -189731.85447908618 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96814.38545725966 + ], + "y": [ + 229215.98538537679, + -189446.80721719595 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97131.06442362265 + ], + "y": [ + 229215.98538537679, + -189275.603776678 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96587.63072624992 + ], + "y": [ + 229215.98538537679, + -189693.2055888678 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96701.44181961339 + ], + "y": [ + 229215.98538537679, + -189753.59627716336 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96868.32753094017 + ], + "y": [ + 229215.98538537679, + -189523.92981689292 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96485.2623043036 + ], + "y": [ + 229215.98538537679, + -189582.96181379963 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96544.79575713704 + ], + "y": [ + 229215.98538537679, + -190328.62833538937 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96879.06539514555 + ], + "y": [ + 229215.98538537679, + -189786.84207760714 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96650.5251142157 + ], + "y": [ + 229215.98538537679, + -189751.89635663538 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97056.66087663827 + ], + "y": [ + 229215.98538537679, + -188815.1944085261 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97018.7876594228 + ], + "y": [ + 229215.98538537679, + -189224.11613190582 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96726.97841332003 + ], + "y": [ + 229215.98538537679, + -189796.11674781732 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96785.79342645025 + ], + "y": [ + 229215.98538537679, + -189932.6237612485 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96719.79877048176 + ], + "y": [ + 229215.98538537679, + -189552.86218391886 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96656.51605951994 + ], + "y": [ + 229215.98538537679, + -188126.8200295349 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96500.3647531615 + ], + "y": [ + 229215.98538537679, + -189830.91246389045 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96920.00376965974 + ], + "y": [ + 229215.98538537679, + -189498.42730696275 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96805.25180958064 + ], + "y": [ + 229215.98538537679, + -189646.04277723422 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96511.27388316976 + ], + "y": [ + 229215.98538537679, + -189493.25493438917 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97143.69979917424 + ], + "y": [ + 229215.98538537679, + -188868.21171990343 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96785.52822630318 + ], + "y": [ + 229215.98538537679, + -189430.8749071048 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96751.7242293975 + ], + "y": [ + 229215.98538537679, + -189418.3979333305 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 98488.89658362548 + ], + "y": [ + 229215.98538537679, + -188294.41257727327 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96527.82964364873 + ], + "y": [ + 229215.98538537679, + -188804.39291762855 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96815.18595416151 + ], + "y": [ + 229215.98538537679, + -189383.2134141077 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96727.94539580634 + ], + "y": [ + 229215.98538537679, + -189408.30108345978 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96877.61190695128 + ], + "y": [ + 229215.98538537679, + -189622.2992613024 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96674.53853073626 + ], + "y": [ + 229215.98538537679, + -189336.00050606855 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96755.77967969238 + ], + "y": [ + 229215.98538537679, + -189494.18089072162 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97629.85915951653 + ], + "y": [ + 229215.98538537679, + -189346.3496150686 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96896.55417266351 + ], + "y": [ + 229215.98538537679, + -189517.63745548116 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96874.61155723894 + ], + "y": [ + 229215.98538537679, + -189562.47650992335 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96781.7373211774 + ], + "y": [ + 229215.98538537679, + -189732.76841517194 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96671.25152661269 + ], + "y": [ + 229215.98538537679, + -189536.8343224868 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96934.94898597764 + ], + "y": [ + 229215.98538537679, + -189457.759153216 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97005.77074047142 + ], + "y": [ + 229215.98538537679, + -189532.57203367492 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96964.78110583073 + ], + "y": [ + 229215.98538537679, + -189507.00155087592 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96640.3915108683 + ], + "y": [ + 229215.98538537679, + -189055.85878078622 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96561.11544487227 + ], + "y": [ + 229215.98538537679, + -190253.9554374968 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96787.83212641206 + ], + "y": [ + 229215.98538537679, + -189453.52787322368 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97117.91370467145 + ], + "y": [ + 229215.98538537679, + -189199.04942802034 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96752.7630566314 + ], + "y": [ + 229215.98538537679, + -189518.1963457777 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97904.95870247688 + ], + "y": [ + 229215.98538537679, + -188415.7452673843 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97287.61876639193 + ], + "y": [ + 229215.98538537679, + -188922.00741313785 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96977.41506513029 + ], + "y": [ + 229215.98538537679, + -189565.95036095765 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96672.9812022687 + ], + "y": [ + 229215.98538537679, + -189599.43976925078 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96586.3268270632 + ], + "y": [ + 229215.98538537679, + -189447.3213721349 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96797.33031385214 + ], + "y": [ + 229215.98538537679, + -189592.0253847243 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96770.78381407568 + ], + "y": [ + 229215.98538537679, + -189704.67210231442 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96767.69056492882 + ], + "y": [ + 229215.98538537679, + -189429.51527102874 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96916.62444917303 + ], + "y": [ + 229215.98538537679, + -189549.2248295347 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96736.187248987 + ], + "y": [ + 229215.98538537679, + -189732.63425983736 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96497.40326486343 + ], + "y": [ + 229215.98538537679, + -189156.18143433816 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96981.69606403777 + ], + "y": [ + 229215.98538537679, + -189593.73394135686 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97757.99670975313 + ], + "y": [ + 229215.98538537679, + -189255.76286114688 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97360.13554374868 + ], + "y": [ + 229215.98538537679, + -188480.57065962657 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96792.24969134637 + ], + "y": [ + 229215.98538537679, + -189396.15620173485 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97386.8040364756 + ], + "y": [ + 229215.98538537679, + -189119.4502426223 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97041.45585776801 + ], + "y": [ + 229215.98538537679, + -189099.2895300957 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96624.01938254207 + ], + "y": [ + 229215.98538537679, + -189372.92718386388 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96974.28350714296 + ], + "y": [ + 229215.98538537679, + -189530.79236599515 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97156.22383491664 + ], + "y": [ + 229215.98538537679, + -189323.80480814414 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96954.62064886169 + ], + "y": [ + 229215.98538537679, + -189638.78145869536 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97046.79482101345 + ], + "y": [ + 229215.98538537679, + -189285.81117966407 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 95844.28052724677 + ], + "y": [ + 229215.98538537679, + -189920.08786925004 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96795.23928720718 + ], + "y": [ + 229215.98538537679, + -189568.58179882303 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96772.56610132441 + ], + "y": [ + 229215.98538537679, + -189490.09496069627 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96821.18944890518 + ], + "y": [ + 229215.98538537679, + -189529.25512316148 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97037.54167528427 + ], + "y": [ + 229215.98538537679, + -189325.65832119124 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97304.17187437204 + ], + "y": [ + 229215.98538537679, + -188851.56730320977 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97045.7174310999 + ], + "y": [ + 229215.98538537679, + -189408.06502858872 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97031.3088470609 + ], + "y": [ + 229215.98538537679, + -189515.4108281232 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96645.4446535775 + ], + "y": [ + 229215.98538537679, + -188680.41340104947 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96973.7313647934 + ], + "y": [ + 229215.98538537679, + -189356.0500464047 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96827.27721865964 + ], + "y": [ + 229215.98538537679, + -188887.3973668111 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96836.63104835567 + ], + "y": [ + 229215.98538537679, + -189225.07031019146 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96915.11359133502 + ], + "y": [ + 229215.98538537679, + -188770.14684657753 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96603.10265344591 + ], + "y": [ + 229215.98538537679, + -189474.47554588024 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96572.35122948136 + ], + "y": [ + 229215.98538537679, + -189774.7476661943 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97218.18359466371 + ], + "y": [ + 229215.98538537679, + -189006.25883621728 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96562.71215702499 + ], + "y": [ + 229215.98538537679, + -189656.34211244347 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96669.45654037285 + ], + "y": [ + 229215.98538537679, + -189485.92172726392 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96608.97450213194 + ], + "y": [ + 229215.98538537679, + -189381.9654969643 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96780.12324046777 + ], + "y": [ + 229215.98538537679, + -189641.00924985827 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96759.8367076845 + ], + "y": [ + 229215.98538537679, + -189677.82690449522 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96729.07888575827 + ], + "y": [ + 229215.98538537679, + -189393.09189406977 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96451.36476325426 + ], + "y": [ + 229215.98538537679, + -189725.99119278492 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96426.58864894029 + ], + "y": [ + 229215.98538537679, + -187911.2710909405 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96654.61006042475 + ], + "y": [ + 229215.98538537679, + -189560.62472315767 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 98502.39684963804 + ], + "y": [ + 229215.98538537679, + -188296.21414801962 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96710.20852553143 + ], + "y": [ + 229215.98538537679, + -189686.30027570974 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97529.59178857305 + ], + "y": [ + 229215.98538537679, + -189068.82122443494 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 98492.45967203799 + ], + "y": [ + 229215.98538537679, + -188278.08712796614 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96763.64967872995 + ], + "y": [ + 229215.98538537679, + -188336.20643323814 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97097.47714912827 + ], + "y": [ + 229215.98538537679, + -189634.1669562323 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96726.40817559678 + ], + "y": [ + 229215.98538537679, + -189303.08944739285 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96949.62066620833 + ], + "y": [ + 229215.98538537679, + -189557.7983769141 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96872.36708461096 + ], + "y": [ + 229215.98538537679, + -189363.34000394432 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97572.7954448912 + ], + "y": [ + 229215.98538537679, + -187689.0483805537 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96534.13113359883 + ], + "y": [ + 229215.98538537679, + -189640.61261352964 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96670.03282167818 + ], + "y": [ + 229215.98538537679, + -189583.51700064118 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96915.56474058192 + ], + "y": [ + 229215.98538537679, + -189321.36395637903 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96690.79996780091 + ], + "y": [ + 229215.98538537679, + -189328.29367726677 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97081.73959470788 + ], + "y": [ + 229215.98538537679, + -188925.91974127013 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96645.28675952984 + ], + "y": [ + 229215.98538537679, + -189730.37815090845 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96845.49984264001 + ], + "y": [ + 229215.98538537679, + -188921.42443902968 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96791.42873166909 + ], + "y": [ + 229215.98538537679, + -189511.2209653839 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96848.6019348336 + ], + "y": [ + 229215.98538537679, + -189692.25637540634 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96653.33167046132 + ], + "y": [ + 229215.98538537679, + -189322.72491470815 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96798.09730894824 + ], + "y": [ + 229215.98538537679, + -189703.6139847984 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96830.20824198317 + ], + "y": [ + 229215.98538537679, + -189590.25078595642 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96974.68588435129 + ], + "y": [ + 229215.98538537679, + -188547.46824695042 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96920.50398772888 + ], + "y": [ + 229215.98538537679, + -188848.55062442037 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97141.56965571626 + ], + "y": [ + 229215.98538537679, + -188169.14538504407 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 95329.09589374838 + ], + "y": [ + 229215.98538537679, + -189621.15970611246 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96625.20312840438 + ], + "y": [ + 229215.98538537679, + -189554.07262256934 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96583.08101942415 + ], + "y": [ + 229215.98538537679, + -188935.33612228493 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97317.9470175812 + ], + "y": [ + 229215.98538537679, + -189015.4951605007 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96848.58357963007 + ], + "y": [ + 229215.98538537679, + -189468.52121776558 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96685.21610856292 + ], + "y": [ + 229215.98538537679, + -189726.9839142311 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96647.86296497285 + ], + "y": [ + 229215.98538537679, + -189604.051822791 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96749.19177745887 + ], + "y": [ + 229215.98538537679, + -189172.60980398947 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96667.27172199388 + ], + "y": [ + 229215.98538537679, + -189516.1723814726 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96915.00366898013 + ], + "y": [ + 229215.98538537679, + -189606.13981497308 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 95683.09108910317 + ], + "y": [ + 229215.98538537679, + -189818.32592583625 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96463.21403142411 + ], + "y": [ + 229215.98538537679, + -189832.11385822124 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96884.74639022724 + ], + "y": [ + 229215.98538537679, + -188799.02956322636 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97951.06604016566 + ], + "y": [ + 229215.98538537679, + -189141.57950872142 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96603.17113805444 + ], + "y": [ + 229215.98538537679, + -189643.42341201042 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 95950.60579597944 + ], + "y": [ + 229215.98538537679, + -189659.6677604097 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96582.65960470523 + ], + "y": [ + 229215.98538537679, + -189525.22410298133 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96319.04144083924 + ], + "y": [ + 229215.98538537679, + -189027.32662829437 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97016.89968225527 + ], + "y": [ + 229215.98538537679, + -188480.5260935519 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96864.74890763631 + ], + "y": [ + 229215.98538537679, + -189794.1589935236 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96899.74561231451 + ], + "y": [ + 229215.98538537679, + -189493.67651902192 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96767.43202743762 + ], + "y": [ + 229215.98538537679, + -189257.11848075397 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96984.0156607433 + ], + "y": [ + 229215.98538537679, + -189190.8420644383 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96697.59306293263 + ], + "y": [ + 229215.98538537679, + -189427.21294576538 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96742.76428952735 + ], + "y": [ + 229215.98538537679, + -189688.7712261936 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96935.54268135317 + ], + "y": [ + 229215.98538537679, + -189402.41667130496 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 95574.39534418302 + ], + "y": [ + 229215.98538537679, + -189738.0525135467 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96991.60346683899 + ], + "y": [ + 229215.98538537679, + -188695.04808894158 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96580.8583468943 + ], + "y": [ + 229215.98538537679, + -189566.4665127886 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96987.80225378742 + ], + "y": [ + 229215.98538537679, + -189105.2816803546 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96480.30494028228 + ], + "y": [ + 229215.98538537679, + -187695.57614406702 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97026.73007218333 + ], + "y": [ + 229215.98538537679, + -188758.55641030593 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96873.58873560156 + ], + "y": [ + 229215.98538537679, + -189744.39363754724 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97154.72425616732 + ], + "y": [ + 229215.98538537679, + -188123.19483452023 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97214.28101702654 + ], + "y": [ + 229215.98538537679, + -188470.03479631987 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96962.13430709024 + ], + "y": [ + 229215.98538537679, + -189424.87314537496 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96445.14131578358 + ], + "y": [ + 229215.98538537679, + -189689.52817768222 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96952.0852964525 + ], + "y": [ + 229215.98538537679, + -189447.98748217383 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96485.30175383571 + ], + "y": [ + 229215.98538537679, + -189736.91566883595 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 98188.17126174309 + ], + "y": [ + 229215.98538537679, + -187803.1415402722 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 98087.3338631131 + ], + "y": [ + 229215.98538537679, + -188615.64024283146 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97264.08371499478 + ], + "y": [ + 229215.98538537679, + -188516.52943830803 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96567.84669526415 + ], + "y": [ + 229215.98538537679, + -189681.64351749184 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96692.64254266855 + ], + "y": [ + 229215.98538537679, + -189583.2115684275 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96954.5126568193 + ], + "y": [ + 229215.98538537679, + -188560.8123839254 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96442.24721615986 + ], + "y": [ + 229215.98538537679, + -188808.58568177576 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96675.1674827983 + ], + "y": [ + 229215.98538537679, + -189710.93255919393 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96911.71700742826 + ], + "y": [ + 229215.98538537679, + -189406.02024615998 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96559.09520602223 + ], + "y": [ + 229215.98538537679, + -189499.59645998385 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96964.90990095795 + ], + "y": [ + 229215.98538537679, + -189483.72175297773 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96368.1267297445 + ], + "y": [ + 229215.98538537679, + -189357.24837546385 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96354.29226248538 + ], + "y": [ + 229215.98538537679, + -189474.95530109046 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 95704.0871202312 + ], + "y": [ + 229215.98538537679, + -189782.36536876537 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96138.82096969092 + ], + "y": [ + 229215.98538537679, + -189258.09496306165 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96702.30104154837 + ], + "y": [ + 229215.98538537679, + -189596.714753665 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 95863.078617055 + ], + "y": [ + 229215.98538537679, + -188890.3664574394 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96928.70418989572 + ], + "y": [ + 229215.98538537679, + -188764.91305512202 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96875.43456713467 + ], + "y": [ + 229215.98538537679, + -189282.2159957167 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96712.85163544948 + ], + "y": [ + 229215.98538537679, + -188923.44433292217 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96210.68445716402 + ], + "y": [ + 229215.98538537679, + -188971.43179267063 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97643.43217333438 + ], + "y": [ + 229215.98538537679, + -188253.40886764217 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96875.38177626212 + ], + "y": [ + 229215.98538537679, + -189394.1110529634 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97277.67379891923 + ], + "y": [ + 229215.98538537679, + -188553.8667206884 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97650.21348938807 + ], + "y": [ + 229215.98538537679, + -188247.0553738609 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97380.97035221593 + ], + "y": [ + 229215.98538537679, + -188500.12824679536 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96767.46602322998 + ], + "y": [ + 229215.98538537679, + -189317.7229192206 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 95912.88033660327 + ], + "y": [ + 229215.98538537679, + -188900.62386161956 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96875.44858847588 + ], + "y": [ + 229215.98538537679, + -188881.29006931305 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97090.26472678532 + ], + "y": [ + 229215.98538537679, + -189122.419390301 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96986.78948010856 + ], + "y": [ + 229215.98538537679, + -189049.75416535302 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96355.34401319342 + ], + "y": [ + 229215.98538537679, + -190290.13307072833 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 98484.83314214389 + ], + "y": [ + 229215.98538537679, + -188263.30442852018 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96480.80058099459 + ], + "y": [ + 229215.98538537679, + -189655.53739052103 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96582.01402568171 + ], + "y": [ + 229215.98538537679, + -189593.4766049247 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96882.04031575473 + ], + "y": [ + 229215.98538537679, + -189658.27998301366 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96747.25944879792 + ], + "y": [ + 229215.98538537679, + -189608.43740396632 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96853.94619098958 + ], + "y": [ + 229215.98538537679, + -189240.7395503507 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 95902.58151687872 + ], + "y": [ + 229215.98538537679, + -189401.6122354161 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 98205.92395781298 + ], + "y": [ + 229215.98538537679, + -187798.89120280318 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97674.61704340234 + ], + "y": [ + 229215.98538537679, + -189230.37339317877 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96816.42131470822 + ], + "y": [ + 229215.98538537679, + -189545.16625437708 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96625.30102032366 + ], + "y": [ + 229215.98538537679, + -189612.82599109344 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96574.89605254125 + ], + "y": [ + 229215.98538537679, + -189466.51428955715 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96695.54475332797 + ], + "y": [ + 229215.98538537679, + -188987.74156072343 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97026.03297053343 + ], + "y": [ + 229215.98538537679, + -189424.6200709084 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96755.84845242432 + ], + "y": [ + 229215.98538537679, + -189622.41040500058 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96494.99482485962 + ], + "y": [ + 229215.98538537679, + -189883.7142335665 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96639.0949732792 + ], + "y": [ + 229215.98538537679, + -189350.129160721 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96550.01108530164 + ], + "y": [ + 229215.98538537679, + -189397.67019498325 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96575.31613115326 + ], + "y": [ + 229215.98538537679, + -189374.36013442566 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96810.72873758491 + ], + "y": [ + 229215.98538537679, + -189312.9879746982 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96896.94014138209 + ], + "y": [ + 229215.98538537679, + -189387.4220162738 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96693.47055992209 + ], + "y": [ + 229215.98538537679, + -189456.31330892164 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96951.68482481911 + ], + "y": [ + 229215.98538537679, + -188757.97295287042 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97105.86446933058 + ], + "y": [ + 229215.98538537679, + -189874.7197630853 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96683.343489294 + ], + "y": [ + 229215.98538537679, + -188938.53921387976 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96700.50651493037 + ], + "y": [ + 229215.98538537679, + -189174.94373042753 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97613.5093531771 + ], + "y": [ + 229215.98538537679, + -188249.57030670525 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97632.10124528216 + ], + "y": [ + 229215.98538537679, + -188260.60515116138 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96831.69055597908 + ], + "y": [ + 229215.98538537679, + -188336.6986691293 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96828.99548296859 + ], + "y": [ + 229215.98538537679, + -187680.87764689644 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97813.18960016311 + ], + "y": [ + 229215.98538537679, + -187251.2510294042 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97805.18437428074 + ], + "y": [ + 229215.98538537679, + -187262.66438443118 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96640.17245945708 + ], + "y": [ + 229215.98538537679, + -189570.2833336003 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96731.09231285357 + ], + "y": [ + 229215.98538537679, + -189763.14706397685 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96542.83564645311 + ], + "y": [ + 229215.98538537679, + -189566.8655000776 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 95421.91735289371 + ], + "y": [ + 229215.98538537679, + -189779.29013892455 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96934.21301456064 + ], + "y": [ + 229215.98538537679, + -189298.26902639432 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96053.80630400538 + ], + "y": [ + 229215.98538537679, + -189143.0578281467 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96579.76590487406 + ], + "y": [ + 229215.98538537679, + -189430.35956357492 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96621.95641731111 + ], + "y": [ + 229215.98538537679, + -189539.6584614828 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96695.15836873942 + ], + "y": [ + 229215.98538537679, + -189404.9591139528 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96467.60417095249 + ], + "y": [ + 229215.98538537679, + -189661.95294361803 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97510.01962082756 + ], + "y": [ + 229215.98538537679, + -188758.00763305573 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96836.22412942452 + ], + "y": [ + 229215.98538537679, + -189602.10511057184 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96686.3684942306 + ], + "y": [ + 229215.98538537679, + -189832.73284060266 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97774.42866113664 + ], + "y": [ + 229215.98538537679, + -187986.2925046758 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96427.1842433544 + ], + "y": [ + 229215.98538537679, + -189638.5204736213 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96602.9455448259 + ], + "y": [ + 229215.98538537679, + -189307.41763655184 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 98341.41820230329 + ], + "y": [ + 229215.98538537679, + -187325.8474831565 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96759.39098466327 + ], + "y": [ + 229215.98538537679, + -188953.73820219914 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96654.14513994215 + ], + "y": [ + 229215.98538537679, + -189477.09111556568 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97094.20573290615 + ], + "y": [ + 229215.98538537679, + -188608.7669540309 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96534.89129183585 + ], + "y": [ + 229215.98538537679, + -189663.5967077643 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97845.68054608024 + ], + "y": [ + 229215.98538537679, + -187902.1950427761 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96714.32338601344 + ], + "y": [ + 229215.98538537679, + -189204.27918840424 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97354.04987112107 + ], + "y": [ + 229215.98538537679, + -188868.86823729656 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 98362.46614454236 + ], + "y": [ + 229215.98538537679, + -187963.18284034188 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96555.05094020838 + ], + "y": [ + 229215.98538537679, + -189589.51983073587 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96417.4243506057 + ], + "y": [ + 229215.98538537679, + -190125.8549583156 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96624.55409529047 + ], + "y": [ + 229215.98538537679, + -189597.31022038838 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96913.27672047008 + ], + "y": [ + 229215.98538537679, + -189659.42206924004 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96613.64565810803 + ], + "y": [ + 229215.98538537679, + -187522.90987740675 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96882.63562796098 + ], + "y": [ + 229215.98538537679, + -189314.3318274669 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97785.31723795002 + ], + "y": [ + 229215.98538537679, + -189123.09886013696 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96921.65832155356 + ], + "y": [ + 229215.98538537679, + -189438.33583540513 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96574.44776110545 + ], + "y": [ + 229215.98538537679, + -189190.64141113937 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96826.02448370877 + ], + "y": [ + 229215.98538537679, + -189312.96716657415 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96722.32663398494 + ], + "y": [ + 229215.98538537679, + -189506.4879067685 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96695.61808666041 + ], + "y": [ + 229215.98538537679, + -189996.88173583825 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97113.91196565128 + ], + "y": [ + 229215.98538537679, + -189506.9208114558 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96976.68282643448 + ], + "y": [ + 229215.98538537679, + -188577.0164252054 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96054.400615084 + ], + "y": [ + 229215.98538537679, + -189355.94588633478 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96278.15788483768 + ], + "y": [ + 229215.98538537679, + -189514.97306091062 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96861.56370770434 + ], + "y": [ + 229215.98538537679, + -189411.36286505614 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97796.07080948977 + ], + "y": [ + 229215.98538537679, + -188802.23079391493 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96611.246762707 + ], + "y": [ + 229215.98538537679, + -189518.63063531838 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96530.79253993953 + ], + "y": [ + 229215.98538537679, + -189595.0859664761 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 95901.82083235442 + ], + "y": [ + 229215.98538537679, + -188849.11552920155 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96962.41375364321 + ], + "y": [ + 229215.98538537679, + -188741.18667656466 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96900.49410984787 + ], + "y": [ + 229215.98538537679, + -189712.08090202446 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96440.3614255588 + ], + "y": [ + 229215.98538537679, + -190133.98681796715 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96738.66732022622 + ], + "y": [ + 229215.98538537679, + -189423.36465952417 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97200.14076518768 + ], + "y": [ + 229215.98538537679, + -190181.23310247317 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96926.75612600744 + ], + "y": [ + 229215.98538537679, + -188309.38290130332 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96532.6513290047 + ], + "y": [ + 229215.98538537679, + -189387.78435538372 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96651.84522301337 + ], + "y": [ + 229215.98538537679, + -189261.45093796574 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97627.58936686792 + ], + "y": [ + 229215.98538537679, + -188229.01322122104 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97563.98838997139 + ], + "y": [ + 229215.98538537679, + -188225.00588929723 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96560.8916778657 + ], + "y": [ + 229215.98538537679, + -187746.04762354173 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96729.69482051903 + ], + "y": [ + 229215.98538537679, + -189649.05343454154 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 96715.7628390581 + ], + "y": [ + 229215.98538537679, + -189292.69033396387 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -662208.9345963952, + 97379.01812972916 + ], + "y": [ + 229215.98538537679, + -190439.80952772064 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 113379.54184456533, + 95933.78130606312 + ], + "y": [ + -118967.65056689085, + -187405.71770728158 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 113379.54184456533, + 95969.93628717288 + ], + "y": [ + -118967.65056689085, + -187389.66797592156 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 718826.5521028038, + 94205.42306946588 + ], + "y": [ + 710262.5151851682, + -188854.15596558747 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 670560.6168920255, + 94485.92993817783 + ], + "y": [ + -838054.4841425869, + -190167.4618217757 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 670560.6168920255, + 95302.46268343864 + ], + "y": [ + -838054.4841425869, + -189777.63112573957 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 381475.48544957186, + 95505.88427993505 + ], + "y": [ + -896069.0167068348, + -188400.0367418278 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -964533.0899372523, + 95182.96656441354 + ], + "y": [ + 980573.850637422, + -189502.7870754483 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -964533.0899372523, + 95083.07696160226 + ], + "y": [ + 980573.850637422, + -189631.87542889913 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -964533.0899372523, + 95260.63775038713 + ], + "y": [ + 980573.850637422, + -189379.6564968773 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -573964.3844729715, + 95343.04710668822 + ], + "y": [ + -951730.5169718482, + -189825.04437502267 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -573964.3844729715, + 95077.9137547502 + ], + "y": [ + -951730.5169718482, + -189697.85110122422 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -573964.3844729715, + 95200.52568374142 + ], + "y": [ + -951730.5169718482, + -189730.2105260354 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -641961.420259417, + 97358.46679886585 + ], + "y": [ + -540573.4524308392, + -188482.5310615353 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -641961.420259417, + 97532.46968364714 + ], + "y": [ + -540573.4524308392, + -187821.3765527352 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 940801.7662788922, + 95457.42674465815 + ], + "y": [ + 362491.91229326796, + -188642.19864755738 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 940801.7662788922, + 98692.43143064567 + ], + "y": [ + 362491.91229326796, + -186804.33417873908 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 444032.79606093984, + 97571.51683328462 + ], + "y": [ + 739083.9627370343, + -189138.6052683931 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 444032.79606093984, + 97321.50714071444 + ], + "y": [ + 739083.9627370343, + -188954.66274327494 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 444032.79606093984, + 97304.17187437204 + ], + "y": [ + 739083.9627370343, + -188851.56730320977 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 444032.79606093984, + 97558.53189592143 + ], + "y": [ + 739083.9627370343, + -188563.3727238801 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 444032.79606093984, + 97529.59178857305 + ], + "y": [ + 739083.9627370343, + -189068.82122443494 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 444032.79606093984, + 97573.23040616274 + ], + "y": [ + 739083.9627370343, + -189186.61889509932 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 444032.79606093984, + 97317.9470175812 + ], + "y": [ + 739083.9627370343, + -189015.4951605007 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 444032.79606093984, + 97722.41636121254 + ], + "y": [ + 739083.9627370343, + -189212.86844851545 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 444032.79606093984, + 96711.97005754894 + ], + "y": [ + 739083.9627370343, + -188462.65509945378 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 444032.79606093984, + 96888.97576383248 + ], + "y": [ + 739083.9627370343, + -188204.3724056574 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 444032.79606093984, + 97182.40630309808 + ], + "y": [ + 739083.9627370343, + -189199.17908190106 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 444032.79606093984, + 98202.27708314388 + ], + "y": [ + 739083.9627370343, + -188255.37224721114 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -484224.4518047343, + 97358.46679886585 + ], + "y": [ + -875175.6763282787, + -188482.5310615353 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -484224.4518047343, + 97532.46968364714 + ], + "y": [ + -875175.6763282787, + -187821.3765527352 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -149110.68317453036, + 97358.46679886585 + ], + "y": [ + 761101.2880335036, + -188482.5310615353 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -149110.68317453036, + 97532.46968364714 + ], + "y": [ + 761101.2880335036, + -187821.3765527352 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 975774.1818193704, + 97820.56830441093 + ], + "y": [ + -542593.2626462264, + -188039.00270855022 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 975774.1818193704, + 98259.11178546748 + ], + "y": [ + -542593.2626462264, + -188214.46720173355 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 975774.1818193704, + 97235.2488696914 + ], + "y": [ + -542593.2626462264, + -188543.17964185297 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 975774.1818193704, + 97297.7274926661 + ], + "y": [ + -542593.2626462264, + -188551.65872850412 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 975774.1818193704, + 97293.5203062695 + ], + "y": [ + -542593.2626462264, + -187924.76781139948 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 975774.1818193704, + 98708.3190257109 + ], + "y": [ + -542593.2626462264, + -188265.91476313816 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 975774.1818193704, + 97802.97859779913 + ], + "y": [ + -542593.2626462264, + -188620.13710179558 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 975774.1818193704, + 97828.5668503006 + ], + "y": [ + -542593.2626462264, + -188797.5960817814 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 975774.1818193704, + 97770.18528248275 + ], + "y": [ + -542593.2626462264, + -188675.01145983627 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 975774.1818193704, + 97622.16011647054 + ], + "y": [ + -542593.2626462264, + -189585.23416607562 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 975774.1818193704, + 96887.45716809586 + ], + "y": [ + -542593.2626462264, + -189073.2131275974 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 975774.1818193704, + 97090.03432996322 + ], + "y": [ + -542593.2626462264, + -187778.6034982877 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 975774.1818193704, + 97697.42848707616 + ], + "y": [ + -542593.2626462264, + -188715.31186791277 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 975774.1818193704, + 97701.66892815946 + ], + "y": [ + -542593.2626462264, + -188783.67793234484 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 975774.1818193704, + 97585.79298176516 + ], + "y": [ + -542593.2626462264, + -188686.17124409127 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 975774.1818193704, + 96404.13831153684 + ], + "y": [ + -542593.2626462264, + -188307.55943122407 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 975774.1818193704, + 97486.26616142577 + ], + "y": [ + -542593.2626462264, + -188717.35827303602 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 975774.1818193704, + 96505.5934631506 + ], + "y": [ + -542593.2626462264, + -189175.1779532503 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 975774.1818193704, + 97579.4448614383 + ], + "y": [ + -542593.2626462264, + -188752.45189673398 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 975774.1818193704, + 97691.63703682291 + ], + "y": [ + -542593.2626462264, + -188617.7522841282 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 900636.500591634, + 96515.60149309262 + ], + "y": [ + 653538.7381658673, + -187330.48424043634 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 725677.6911089884, + 96526.16766938524 + ], + "y": [ + -41310.81616053112, + -190049.08294096706 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 725677.6911089884, + 96542.88730412883 + ], + "y": [ + -41310.81616053112, + -190134.12788602014 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 328217.0229704833, + 95826.70973681552 + ], + "y": [ + -276889.34631344833, + -189436.51072175297 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 328217.0229704833, + 95195.45569059276 + ], + "y": [ + -276889.34631344833, + -188825.24595688403 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 328217.0229704833, + 95229.32767677493 + ], + "y": [ + -276889.34631344833, + -188748.41080724396 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 328217.0229704833, + 94971.08522590312 + ], + "y": [ + -276889.34631344833, + -188632.32322923772 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 328217.0229704833, + 95259.91296974945 + ], + "y": [ + -276889.34631344833, + -188755.87124533966 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 328217.0229704833, + 95151.27865865134 + ], + "y": [ + -276889.34631344833, + -188739.89476481508 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 328217.0229704833, + 95457.42579193789 + ], + "y": [ + -276889.34631344833, + -188763.09490078397 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 431602.0630810575, + 96817.66055571858 + ], + "y": [ + -789429.4666513097, + -187899.4158525461 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 431602.0630810575, + 96806.8541605258 + ], + "y": [ + -789429.4666513097, + -188290.08218015765 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 431602.0630810575, + 96791.18101461837 + ], + "y": [ + -789429.4666513097, + -188349.47236547497 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -96395.66533854649, + 96625.91253011048 + ], + "y": [ + -969264.7181389591, + -187046.38487493325 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -96395.66533854649, + 96516.24082699847 + ], + "y": [ + -969264.7181389591, + -187622.41354491585 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -230307.1527079439, + 96650.26887770933 + ], + "y": [ + -199631.75714235005, + -187967.45205088542 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -230307.1527079439, + 95953.43758977612 + ], + "y": [ + -199631.75714235005, + -188236.06352852797 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -230307.1527079439, + 96414.9173008834 + ], + "y": [ + -199631.75714235005, + -187916.56938459937 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -866085.6054143156, + 96657.44331032071 + ], + "y": [ + -899703.0741891128, + -188277.7110845498 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -866085.6054143156, + 96774.09206013042 + ], + "y": [ + -899703.0741891128, + -187856.57507774787 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 728757.2302041758, + 98370.08752364217 + ], + "y": [ + 11381.849727401639, + -186309.0004789828 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 728757.2302041758, + 98185.39228188255 + ], + "y": [ + 11381.849727401639, + -186448.0761262461 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 728757.2302041758, + 97572.7954448912 + ], + "y": [ + 11381.849727401639, + -187689.0483805537 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 185469.61189416988, + 96888.97576383248 + ], + "y": [ + -597056.648969767, + -188204.3724056574 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 185469.61189416988, + 96866.57408532791 + ], + "y": [ + -597056.648969767, + -187372.14693328072 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 185469.61189416988, + 97930.86589331932 + ], + "y": [ + -597056.648969767, + -186713.31626898306 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 185469.61189416988, + 96177.19856058512 + ], + "y": [ + -597056.648969767, + -188161.6300058421 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 185469.61189416988, + 97176.04373508078 + ], + "y": [ + -597056.648969767, + -187294.3067848806 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 185469.61189416988, + 97153.25597882869 + ], + "y": [ + -597056.648969767, + -187587.45047793945 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 506079.2433519592, + 95574.39534418302 + ], + "y": [ + -147378.84394593493, + -189738.0525135467 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 506079.2433519592, + 95838.54674259001 + ], + "y": [ + -147378.84394593493, + -189873.55077472897 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 506079.2433519592, + 96532.8341303869 + ], + "y": [ + -147378.84394593493, + -187521.8824872184 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 186411.39583669396, + 98997.74271020413 + ], + "y": [ + -998483.13613964, + -188348.79948910305 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 186411.39583669396, + 99362.59751327203 + ], + "y": [ + -998483.13613964, + -189862.6413098155 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 186411.39583669396, + 99276.9196152002 + ], + "y": [ + -998483.13613964, + -189857.14185344288 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 186411.39583669396, + 99226.83402346286 + ], + "y": [ + -998483.13613964, + -189824.66753653612 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 186411.39583669396, + 99522.14887276676 + ], + "y": [ + -998483.13613964, + -189879.5254089133 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 661913.0057686664, + 97465.09518672612 + ], + "y": [ + -634279.3874322197, + -190932.80865181403 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -134443.11900166151, + 96648.9363700922 + ], + "y": [ + -521723.8195950371, + -189214.1812788162 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 6274.1707185636205, + 97362.29677323089 + ], + "y": [ + 833605.513880483, + -192162.3269836861 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 6274.1707185636205, + 97352.27827718583 + ], + "y": [ + 833605.513880483, + -192524.44290793836 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 6274.1707185636205, + 97314.13790026988 + ], + "y": [ + 833605.513880483, + -192115.1138136991 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 505074.68310500745, + 95480.79812433262 + ], + "y": [ + 353085.1610704648, + -188972.92135698648 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -640937.7577869985, + 97358.46679886585 + ], + "y": [ + -183570.00335379926, + -188482.5310615353 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -640937.7577869985, + 97532.46968364714 + ], + "y": [ + -183570.00335379926, + -187821.3765527352 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 348115.135016678, + 98668.36393861687 + ], + "y": [ + -107725.31857915646, + -188186.38974025362 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 348115.135016678, + 97272.16196531034 + ], + "y": [ + -107725.31857915646, + -187899.237151973 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 348115.135016678, + 97838.4175081634 + ], + "y": [ + -107725.31857915646, + -189043.94703463372 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 348115.135016678, + 97754.15865943547 + ], + "y": [ + -107725.31857915646, + -188886.17592031375 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 348115.135016678, + 97321.50714071444 + ], + "y": [ + -107725.31857915646, + -188954.66274327494 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 348115.135016678, + 97287.61876639193 + ], + "y": [ + -107725.31857915646, + -188922.00741313785 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 348115.135016678, + 97387.10298484987 + ], + "y": [ + -107725.31857915646, + -189232.21457982747 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 348115.135016678, + 97354.04987112107 + ], + "y": [ + -107725.31857915646, + -188868.86823729656 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 752993.026601618, + 96987.80225378742 + ], + "y": [ + 899733.8398479873, + -189105.2816803546 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 752993.026601618, + 97218.18359466371 + ], + "y": [ + 899733.8398479873, + -189006.25883621728 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 752993.026601618, + 98517.20808727229 + ], + "y": [ + 899733.8398479873, + -188180.73220770183 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 752993.026601618, + 96947.40675273385 + ], + "y": [ + 899733.8398479873, + -188107.46199151454 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -798864.8616855099, + 96947.40675273385 + ], + "y": [ + -582787.3823669469, + -188107.46199151454 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -798864.8616855099, + 96987.80225378742 + ], + "y": [ + -582787.3823669469, + -189105.2816803546 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -798864.8616855099, + 96791.18101461837 + ], + "y": [ + -582787.3823669469, + -188349.47236547497 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -862762.1182790956, + 96888.97576383248 + ], + "y": [ + -494752.4029342287, + -188204.3724056574 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -862762.1182790956, + 97017.6751012583 + ], + "y": [ + -494752.4029342287, + -187820.75210574528 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -862762.1182790956, + 96866.57408532791 + ], + "y": [ + -494752.4029342287, + -187372.14693328072 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -862762.1182790956, + 97930.86589331932 + ], + "y": [ + -494752.4029342287, + -186713.31626898306 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -862762.1182790956, + 96177.19856058512 + ], + "y": [ + -494752.4029342287, + -188161.6300058421 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -862762.1182790956, + 97176.04373508078 + ], + "y": [ + -494752.4029342287, + -187294.3067848806 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -862762.1182790956, + 97153.25597882869 + ], + "y": [ + -494752.4029342287, + -187587.45047793945 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -356820.70111571206, + 97715.03542524244 + ], + "y": [ + 951061.619790907, + -187459.03461725367 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -356820.70111571206, + 97428.2088550206 + ], + "y": [ + 951061.619790907, + -188430.993490856 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 177560.89683188248, + 96010.91751038717 + ], + "y": [ + 892548.3513514869, + -188227.91479363065 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 177560.89683188248, + 96392.03219267243 + ], + "y": [ + 892548.3513514869, + -188270.16098356986 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 177560.89683188248, + 97045.79560002222 + ], + "y": [ + 892548.3513514869, + -187553.03431553903 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 177560.89683188248, + 96039.53114090665 + ], + "y": [ + 892548.3513514869, + -187862.98846391006 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 177560.89683188248, + 96558.40139577903 + ], + "y": [ + 892548.3513514869, + -187369.8494239768 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 177560.89683188248, + 96072.651127653 + ], + "y": [ + 892548.3513514869, + -188325.90735821644 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -697806.9091883699, + 97717.63943455054 + ], + "y": [ + 943135.0387208643, + -187734.42575994402 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 228554.08877429407, + 96392.03219267243 + ], + "y": [ + -392684.0079784355, + -188270.16098356986 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 228554.08877429407, + 97512.25460842131 + ], + "y": [ + -392684.0079784355, + -187621.21937398304 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 228554.08877429407, + 97068.03081922044 + ], + "y": [ + -392684.0079784355, + -187659.66124892057 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 228554.08877429407, + 97443.46951981564 + ], + "y": [ + -392684.0079784355, + -187626.4788257705 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 228554.08877429407, + 97329.89355877684 + ], + "y": [ + -392684.0079784355, + -188263.86255790308 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 228554.08877429407, + 97519.79955646732 + ], + "y": [ + -392684.0079784355, + -187368.52340470123 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -104591.68288544696, + 97844.94572301708 + ], + "y": [ + 277405.723798744, + -187348.7681817943 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -104591.68288544696, + 97678.1464428742 + ], + "y": [ + 277405.723798744, + -187682.18281394336 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 596758.7520509677, + 98526.54572504741 + ], + "y": [ + 852722.9520124804, + -186584.2836090355 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 684264.4055752846, + 98430.07797759793 + ], + "y": [ + -9577.618462380588, + -188630.62199919912 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 684264.4055752846, + 97500.16873207534 + ], + "y": [ + -9577.618462380588, + -189687.1717524016 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 684264.4055752846, + 96981.97321773143 + ], + "y": [ + -9577.618462380588, + -189392.44618215397 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 38860.38466092723, + 94617.5959694371 + ], + "y": [ + -196380.71636330645, + -187036.08464524065 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -293966.9337601134, + 95301.3607194778 + ], + "y": [ + -843456.7971308902, + -185139.07792481993 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -293966.9337601134, + 95227.77092314835 + ], + "y": [ + -843456.7971308902, + -185139.72357748792 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -293966.9337601134, + 95402.52158220478 + ], + "y": [ + -843456.7971308902, + -185172.0562297005 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -293966.9337601134, + 95276.97798041081 + ], + "y": [ + -843456.7971308902, + -185223.1558109515 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -293966.9337601134, + 94853.13681242797 + ], + "y": [ + -843456.7971308902, + -185302.5690199798 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 205575.50894640197, + 96400.51278286969 + ], + "y": [ + 984973.4491142076, + -187859.86995225446 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 205575.50894640197, + 96480.30494028228 + ], + "y": [ + 984973.4491142076, + -187695.57614406702 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 205575.50894640197, + 96019.73206058989 + ], + "y": [ + 984973.4491142076, + -187760.736691232 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -238955.24483877773, + 95949.12131101474 + ], + "y": [ + -385401.5701649929, + -187476.2628433151 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -238955.24483877773, + 95997.16066474574 + ], + "y": [ + -385401.5701649929, + -187427.76982279553 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -238955.24483877773, + 95427.65531943327 + ], + "y": [ + -385401.5701649929, + -187674.51102416526 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -238955.24483877773, + 96645.63733017922 + ], + "y": [ + -385401.5701649929, + -188223.1502255291 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -238955.24483877773, + 96622.44802724649 + ], + "y": [ + -385401.5701649929, + -188223.8025959115 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -238955.24483877773, + 96637.20944908995 + ], + "y": [ + -385401.5701649929, + -188238.87170758605 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -238955.24483877773, + 96402.067408069 + ], + "y": [ + -385401.5701649929, + -187003.89280649187 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -887559.5147387895, + 96546.81074094832 + ], + "y": [ + 168756.03714719633, + -186542.96075744857 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -887559.5147387895, + 96396.69753430235 + ], + "y": [ + 168756.03714719633, + -186761.60951942398 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -887559.5147387895, + 96935.23882458691 + ], + "y": [ + 168756.03714719633, + -187272.80604379578 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -887559.5147387895, + 96582.14749337402 + ], + "y": [ + 168756.03714719633, + -187924.91100981052 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -810392.7287200175, + 96220.7703218342 + ], + "y": [ + -941058.7217523911, + -184843.25042613945 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -384269.55450074596, + 96400.51278286969 + ], + "y": [ + 173992.82715078935, + -187859.86995225446 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -384269.55450074596, + 96480.30494028228 + ], + "y": [ + 173992.82715078935, + -187695.57614406702 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -384269.55450074596, + 96019.73206058989 + ], + "y": [ + 173992.82715078935, + -187760.736691232 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 825928.0205778476, + 96871.32320011256 + ], + "y": [ + -928462.3937940064, + -186903.6585095412 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -630743.5726622504, + 96963.41552878823 + ], + "y": [ + -650586.8280954399, + -187363.62555888496 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 602845.2465308853, + 96210.59439600962 + ], + "y": [ + -316288.188440164, + -185290.586235629 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 602845.2465308853, + 96315.24613181091 + ], + "y": [ + -316288.188440164, + -185165.9576632683 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 96028.2888002032 + ], + "y": [ + -138.98425530056713, + -187636.6401471091 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 95489.22963590887 + ], + "y": [ + -138.98425530056713, + -187838.56400906073 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 95828.46924619444 + ], + "y": [ + -138.98425530056713, + -187819.29574656484 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 95482.44304451962 + ], + "y": [ + -138.98425530056713, + -188059.9314632963 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 95066.06523441382 + ], + "y": [ + -138.98425530056713, + -188290.363652496 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 95163.75908553116 + ], + "y": [ + -138.98425530056713, + -188413.92210597807 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 95488.52095752831 + ], + "y": [ + -138.98425530056713, + -187943.2258883462 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 96006.77287976355 + ], + "y": [ + -138.98425530056713, + -188679.23184501874 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 95443.67008227661 + ], + "y": [ + -138.98425530056713, + -188423.99184216498 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 95274.60828290615 + ], + "y": [ + -138.98425530056713, + -188187.00891794523 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 95505.50501741502 + ], + "y": [ + -138.98425530056713, + -188099.9720945511 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 95274.55463163379 + ], + "y": [ + -138.98425530056713, + -188644.9068178371 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 95360.36419013362 + ], + "y": [ + -138.98425530056713, + -188384.46387554856 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 95292.52782742439 + ], + "y": [ + -138.98425530056713, + -188534.02363205954 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 95472.00274613315 + ], + "y": [ + -138.98425530056713, + -188477.95331527485 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 95308.98963794683 + ], + "y": [ + -138.98425530056713, + -188590.4523846817 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 95397.10356995185 + ], + "y": [ + -138.98425530056713, + -187941.9237365848 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 95504.42605081353 + ], + "y": [ + -138.98425530056713, + -188412.73187816486 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 95949.84954429526 + ], + "y": [ + -138.98425530056713, + -188208.82409906888 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 95527.20667464145 + ], + "y": [ + -138.98425530056713, + -188567.58941515462 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 95213.0622434433 + ], + "y": [ + -138.98425530056713, + -188396.23465801778 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 95306.71022996533 + ], + "y": [ + -138.98425530056713, + -188159.4341766519 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 95320.26347648272 + ], + "y": [ + -138.98425530056713, + -188530.70142542297 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 95510.02889292239 + ], + "y": [ + -138.98425530056713, + -187463.4585977219 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -223735.95682974058, + 96072.651127653 + ], + "y": [ + -138.98425530056713, + -188325.90735821644 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -641913.5259541672, + 96156.074298552 + ], + "y": [ + -149172.65446396644, + -186479.6446350026 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -641913.5259541672, + 96344.83157727902 + ], + "y": [ + -149172.65446396644, + -187298.47957976593 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -641913.5259541672, + 96192.16190696902 + ], + "y": [ + -149172.65446396644, + -186539.61527157956 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 860516.1611720189, + 96534.04849627241 + ], + "y": [ + -972626.8602657677, + -186632.56137489137 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 857326.5405612354, + 95914.16367038043 + ], + "y": [ + -488546.23140684003, + -186056.69045446397 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 857326.5405612354, + 95991.06452640316 + ], + "y": [ + -488546.23140684003, + -185951.46023938467 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 857326.5405612354, + 95745.4694082097 + ], + "y": [ + -488546.23140684003, + -186802.7182162248 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 857326.5405612354, + 96072.76062132008 + ], + "y": [ + -488546.23140684003, + -185550.27627308652 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -606908.4936988576, + 96296.57518040262 + ], + "y": [ + 718066.3755134307, + -187045.1102206911 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -606908.4936988576, + 96237.23840449286 + ], + "y": [ + 718066.3755134307, + -187073.15041134102 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -606908.4936988576, + 96100.16964314734 + ], + "y": [ + 718066.3755134307, + -187254.26535223567 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -606908.4936988576, + 96577.18594978366 + ], + "y": [ + 718066.3755134307, + -187989.30944414838 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -606908.4936988576, + 96564.47351993735 + ], + "y": [ + 718066.3755134307, + -188000.4487104779 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 327038.5420484947, + 96828.99548296859 + ], + "y": [ + -329842.4340128823, + -187680.87764689644 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 900407.8115062198, + 96768.15156923435 + ], + "y": [ + 859589.5780032114, + -187906.78280195483 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 900407.8115062198, + 96405.88036665124 + ], + "y": [ + 859589.5780032114, + -186681.1635380391 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 900407.8115062198, + 96370.19303826737 + ], + "y": [ + 859589.5780032114, + -186905.37079495806 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 570248.7195378274, + 97409.25368271414 + ], + "y": [ + 900770.1960220302, + -187857.75124697632 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 570248.7195378274, + 97234.04346137235 + ], + "y": [ + 900770.1960220302, + -187760.40303329699 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 570248.7195378274, + 97545.38850460328 + ], + "y": [ + 900770.1960220302, + -187920.62374587829 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 570248.7195378274, + 97434.01515339047 + ], + "y": [ + 900770.1960220302, + -187858.44732430877 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -196417.42374274827, + 96249.72659060232 + ], + "y": [ + 325060.2886201035, + -187659.66132080328 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -196417.42374274827, + 97705.70304050583 + ], + "y": [ + 325060.2886201035, + -187484.91206357404 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -196417.42374274827, + 96625.91253011048 + ], + "y": [ + 325060.2886201035, + -187046.38487493325 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -196417.42374274827, + 96516.24082699847 + ], + "y": [ + 325060.2886201035, + -187622.41354491585 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -196417.42374274827, + 96647.32091240633 + ], + "y": [ + 325060.2886201035, + -186546.9811101811 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -196417.42374274827, + 96573.99731256816 + ], + "y": [ + 325060.2886201035, + -187389.5387646811 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -196417.42374274827, + 96536.36409486223 + ], + "y": [ + 325060.2886201035, + -186874.71930400067 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 302746.5200068291, + 94888.48155674861 + ], + "y": [ + 848396.560279614, + -185839.00663893652 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 302746.5200068291, + 95501.8125864358 + ], + "y": [ + 848396.560279614, + -185362.02426270678 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -185247.41886056017, + 96398.60994140033 + ], + "y": [ + 888292.8972825181, + -186743.67631044146 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -185247.41886056017, + 97087.09725827706 + ], + "y": [ + 888292.8972825181, + -186943.91875814958 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 661833.7999114355, + 95858.67269394762 + ], + "y": [ + 621808.7016435225, + -185611.65728113687 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 342718.2897794898, + 94889.58026607656 + ], + "y": [ + -427243.4059970509, + -189084.9074632962 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 342718.2897794898, + 95744.0722676581 + ], + "y": [ + -427243.4059970509, + -187484.60913141377 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 342718.2897794898, + 96100.16964314734 + ], + "y": [ + -427243.4059970509, + -187254.26535223567 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 342718.2897794898, + 96577.18594978366 + ], + "y": [ + -427243.4059970509, + -187989.30944414838 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 342718.2897794898, + 96564.47351993735 + ], + "y": [ + -427243.4059970509, + -188000.4487104779 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 21877.881505122376, + 96817.66055571858 + ], + "y": [ + 681698.0658289792, + -187899.4158525461 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 21877.881505122376, + 96539.2876843912 + ], + "y": [ + 681698.0658289792, + -186793.02846859442 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 21877.881505122376, + 96488.71126504915 + ], + "y": [ + 681698.0658289792, + -186643.42136934042 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 897967.5960706323, + 96574.07459048775 + ], + "y": [ + -544882.6051615201, + -187063.1911515589 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 426984.0513968357, + 94476.68554039652 + ], + "y": [ + -238668.58589913577, + -188748.28453514946 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 426984.0513968357, + 94952.05763640381 + ], + "y": [ + -238668.58589913577, + -188439.97049711825 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 426984.0513968357, + 94960.14806309502 + ], + "y": [ + -238668.58589913577, + -187368.1489177038 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -910074.4476692642, + 95868.93237525053 + ], + "y": [ + 168749.41483386618, + -185263.2297970409 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 290487.3206044216, + 95682.31879557903 + ], + "y": [ + -89607.81465368229, + -187430.4310402768 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 290487.3206044216, + 96011.6169628847 + ], + "y": [ + -89607.81465368229, + -187168.63791618857 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 290487.3206044216, + 96107.71912624051 + ], + "y": [ + -89607.81465368229, + -187036.11661907207 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -648161.226738482, + 96229.66105626737 + ], + "y": [ + -702869.8868079968, + -187792.9688123335 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -648161.226738482, + 96357.58676902352 + ], + "y": [ + -702869.8868079968, + -187566.37581145845 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -648161.226738482, + 98178.17510730785 + ], + "y": [ + -702869.8868079968, + -187942.22047264426 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -648161.226738482, + 96273.17959649833 + ], + "y": [ + -702869.8868079968, + -188476.1018531056 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -96665.56418908923, + 97358.46679886585 + ], + "y": [ + 800160.8210043467, + -188482.5310615353 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -96665.56418908923, + 97532.46968364714 + ], + "y": [ + 800160.8210043467, + -187821.3765527352 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -597264.9068567748, + 96072.76062132008 + ], + "y": [ + 622638.0385672044, + -185550.27627308652 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -837885.1665043108, + 95844.61270594754 + ], + "y": [ + -929952.2855720208, + -185482.56088321618 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -837885.1665043108, + 95987.03936165375 + ], + "y": [ + -929952.2855720208, + -185326.3459551552 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 882596.9345251996, + 96947.40675273385 + ], + "y": [ + -800941.8133173318, + -188107.46199151454 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 882596.9345251996, + 96896.58750176255 + ], + "y": [ + -800941.8133173318, + -188167.02460559944 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 882596.9345251996, + 97154.72425616732 + ], + "y": [ + -800941.8133173318, + -188123.19483452023 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 381868.0890948134, + 94066.51607848209 + ], + "y": [ + -845799.5709180704, + -185673.3450969795 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 381868.0890948134, + 93666.16904241925 + ], + "y": [ + -845799.5709180704, + -186215.06335089865 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 381868.0890948134, + 93682.44991506475 + ], + "y": [ + -845799.5709180704, + -186233.90314590227 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 381868.0890948134, + 93976.18462674941 + ], + "y": [ + -845799.5709180704, + -185642.18789406322 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 978774.8671757412, + 97272.16196531034 + ], + "y": [ + 902372.4385321912, + -187899.237151973 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 978774.8671757412, + 96656.51605951994 + ], + "y": [ + 902372.4385321912, + -188126.8200295349 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 978774.8671757412, + 96358.25249911078 + ], + "y": [ + 902372.4385321912, + -186143.89671308498 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 978774.8671757412, + 96321.80373689976 + ], + "y": [ + 902372.4385321912, + -186797.5306394901 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 978774.8671757412, + 96114.11946368766 + ], + "y": [ + 902372.4385321912, + -186312.18585102723 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 978774.8671757412, + 95768.86401324993 + ], + "y": [ + 902372.4385321912, + -185867.34727359438 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 978774.8671757412, + 96245.67690227392 + ], + "y": [ + 902372.4385321912, + -186375.3612237879 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 978774.8671757412, + 97449.2228277016 + ], + "y": [ + 902372.4385321912, + -187561.3991996525 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 978774.8671757412, + 96791.18101461837 + ], + "y": [ + 902372.4385321912, + -188349.47236547497 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -194279.80743491635, + 96763.64967872995 + ], + "y": [ + 479812.5750510687, + -188336.20643323814 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -194279.80743491635, + 96400.51278286969 + ], + "y": [ + 479812.5750510687, + -187859.86995225446 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -194279.80743491635, + 96480.30494028228 + ], + "y": [ + 479812.5750510687, + -187695.57614406702 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -194279.80743491635, + 96019.73206058989 + ], + "y": [ + 479812.5750510687, + -187760.736691232 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -520404.53542439133, + 96919.80862750238 + ], + "y": [ + 891543.560257879, + -187194.3312948634 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 839521.0558089447, + 95714.35022151601 + ], + "y": [ + 309357.5824183621, + -185589.1946310685 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 288080.60505450726, + 96636.93741201112 + ], + "y": [ + 875070.4434268685, + -186662.39995437322 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -215057.2188755595, + 96668.40960032 + ], + "y": [ + -152933.8315019162, + -186235.288447879 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -215057.2188755595, + 96517.34543879435 + ], + "y": [ + -152933.8315019162, + -186405.03105329376 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -215057.2188755595, + 97008.15894636505 + ], + "y": [ + -152933.8315019162, + -186892.55000415185 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -215057.2188755595, + 96807.74423569046 + ], + "y": [ + -152933.8315019162, + -187294.12286925653 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -102229.42822348347, + 95387.72814612064 + ], + "y": [ + 94206.78527900539, + -186270.0295100747 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -102229.42822348347, + 95418.41077655359 + ], + "y": [ + 94206.78527900539, + -186078.48063323216 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -102229.42822348347, + 95472.67938384521 + ], + "y": [ + 94206.78527900539, + -186075.9211697261 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 376753.80948773184, + 98114.52152816013 + ], + "y": [ + 349569.01094111404, + -185912.47186195152 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 376753.80948773184, + 98111.97280969669 + ], + "y": [ + 349569.01094111404, + -185961.2957648515 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 376753.80948773184, + 97753.21078683695 + ], + "y": [ + 349569.01094111404, + -186232.2255226064 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 376753.80948773184, + 98142.06219207752 + ], + "y": [ + 349569.01094111404, + -185912.22434019603 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 376753.80948773184, + 97488.66800355395 + ], + "y": [ + 349569.01094111404, + -185580.70430677492 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 376753.80948773184, + 98144.87686544789 + ], + "y": [ + 349569.01094111404, + -185946.11501890482 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -25705.236251931663, + 96528.57510021586 + ], + "y": [ + -533399.1458938323, + -187393.59499414876 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -25705.236251931663, + 96901.55938078823 + ], + "y": [ + -533399.1458938323, + -187309.87049034002 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 235382.84267939447, + 94256.97992301545 + ], + "y": [ + -397745.37628812244, + -187472.30498547002 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 235382.84267939447, + 94390.62485294472 + ], + "y": [ + -397745.37628812244, + -188817.03562402542 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 235382.84267939447, + 94474.18506646619 + ], + "y": [ + -397745.37628812244, + -187333.3919005783 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -768077.3568489492, + 96818.20189981317 + ], + "y": [ + -484725.09919369535, + -187868.89767386837 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -768077.3568489492, + 96638.80405463175 + ], + "y": [ + -484725.09919369535, + -186633.25689314547 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -13964.755390297512, + 95888.00973910451 + ], + "y": [ + 144159.2999215613, + -185460.96898446843 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -13964.755390297512, + 95799.49717635973 + ], + "y": [ + 144159.2999215613, + -185628.17632635156 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 660747.1133854709, + 95761.360020285 + ], + "y": [ + 694026.5122361657, + -186311.45221873518 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 660747.1133854709, + 95802.05331128874 + ], + "y": [ + 694026.5122361657, + -187196.24604930566 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -435531.37121292826, + 96973.49939574185 + ], + "y": [ + -882195.7653029837, + -187276.60266658547 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -435531.37121292826, + 96633.26092124682 + ], + "y": [ + -882195.7653029837, + -186565.47062728266 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 988256.9959860345, + 97052.8332660283 + ], + "y": [ + -254949.26705717092, + -187852.313928534 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 988256.9959860345, + 97011.81451068369 + ], + "y": [ + -254949.26705717092, + -187557.78543535888 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 988256.9959860345, + 97113.70285257122 + ], + "y": [ + -254949.26705717092, + -187719.1913994157 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 988256.9959860345, + 97210.3004088966 + ], + "y": [ + -254949.26705717092, + -187972.83650257328 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 988256.9959860345, + 97188.26787866931 + ], + "y": [ + -254949.26705717092, + -187960.29676871523 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 988256.9959860345, + 97011.81451068369 + ], + "y": [ + -254949.26705717092, + -187557.78543535888 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 988256.9959860345, + 97113.70285257122 + ], + "y": [ + -254949.26705717092, + -187719.1913994157 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 988256.9959860345, + 97056.56327204366 + ], + "y": [ + -254949.26705717092, + -187911.10264278692 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 988256.9959860345, + 97626.44431224155 + ], + "y": [ + -254949.26705717092, + -188630.8453506235 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 988256.9959860345, + 97350.90150160708 + ], + "y": [ + -254949.26705717092, + -187496.3832271789 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 988256.9959860345, + 97188.26787866931 + ], + "y": [ + -254949.26705717092, + -187960.29676871523 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 988256.9959860345, + 97350.90150160708 + ], + "y": [ + -254949.26705717092, + -187496.3832271789 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 988256.9959860345, + 97162.69508453069 + ], + "y": [ + -254949.26705717092, + -188349.65680053786 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 988256.9959860345, + 97210.3004088966 + ], + "y": [ + -254949.26705717092, + -187972.83650257328 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 28339.46953594202, + 97817.20098235017 + ], + "y": [ + -462491.0589268401, + -185809.88961724282 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 28339.46953594202, + 96022.18132064518 + ], + "y": [ + -462491.0589268401, + -186934.3360415499 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 28339.46953594202, + 95599.18088294458 + ], + "y": [ + -462491.0589268401, + -187643.83786716606 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 967043.4622880626, + 95375.71980775791 + ], + "y": [ + -430007.8911960938, + -187994.90708299744 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 967043.4622880626, + 95781.4838692387 + ], + "y": [ + -430007.8911960938, + -188238.2147196666 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 967043.4622880626, + 95680.02527851156 + ], + "y": [ + -430007.8911960938, + -187629.56098631225 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 967043.4622880626, + 95894.41366117746 + ], + "y": [ + -430007.8911960938, + -187007.5772303797 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 967043.4622880626, + 95794.3620644187 + ], + "y": [ + -430007.8911960938, + -187291.49824795782 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 926635.0133391499, + 96845.07860198681 + ], + "y": [ + -536448.641531344, + -186121.19306263936 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 926635.0133391499, + 97276.29878619949 + ], + "y": [ + -536448.641531344, + -187012.46365318543 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 926635.0133391499, + 97481.0467852597 + ], + "y": [ + -536448.641531344, + -186679.30936474973 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -535039.744551085, + 96200.64224390368 + ], + "y": [ + -564353.4323777468, + -185419.46969980895 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -666783.5869524132, + 96069.95563247148 + ], + "y": [ + 349059.9686039351, + -185379.2656174194 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -212732.11676849678, + 96759.80185472532 + ], + "y": [ + -514225.7770431149, + -186901.45563588393 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -212732.11676849678, + 97151.48266936177 + ], + "y": [ + -514225.7770431149, + -187807.15683063408 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -359443.6248692099, + 97525.66398682565 + ], + "y": [ + 757689.3317536355, + -187994.28122602464 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -359443.6248692099, + 98129.8335044742 + ], + "y": [ + 757689.3317536355, + -187308.64998441696 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -150943.60975530808, + 95869.4969027973 + ], + "y": [ + -430408.69367142377, + -188350.75252464804 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -150943.60975530808, + 95947.6612354604 + ], + "y": [ + -430408.69367142377, + -186863.31396841115 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 942137.0889056928, + 97219.2344849453 + ], + "y": [ + 86268.5009564601, + -187720.11017674877 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 942137.0889056928, + 97524.9702327776 + ], + "y": [ + 86268.5009564601, + -187287.84841348106 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 942137.0889056928, + 96743.02101349403 + ], + "y": [ + 86268.5009564601, + -187854.13914095613 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 942137.0889056928, + 97462.76341227313 + ], + "y": [ + 86268.5009564601, + -187014.84911061524 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 942137.0889056928, + 97570.78852224046 + ], + "y": [ + 86268.5009564601, + -187234.71318697152 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 942137.0889056928, + 97965.90473223805 + ], + "y": [ + 86268.5009564601, + -187204.27240844848 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 942137.0889056928, + 98426.11814680099 + ], + "y": [ + 86268.5009564601, + -187291.09671769937 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 942137.0889056928, + 97400.88013760047 + ], + "y": [ + 86268.5009564601, + -187094.25690049428 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 942137.0889056928, + 97830.50425286932 + ], + "y": [ + 86268.5009564601, + -187609.4187582251 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 942137.0889056928, + 97563.51909740941 + ], + "y": [ + 86268.5009564601, + -187718.59193484212 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 942137.0889056928, + 97959.05424320973 + ], + "y": [ + 86268.5009564601, + -186509.34289278075 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 942137.0889056928, + 97250.30982328247 + ], + "y": [ + 86268.5009564601, + -188147.50652534553 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 263248.3851843943, + 97598.41715003968 + ], + "y": [ + -156068.9752368236, + -187109.55145493208 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 263248.3851843943, + 97191.15673842629 + ], + "y": [ + -156068.9752368236, + -186870.85476427 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 263248.3851843943, + 96876.62587606598 + ], + "y": [ + -156068.9752368236, + -186342.25549461835 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 263248.3851843943, + 97177.84417040872 + ], + "y": [ + -156068.9752368236, + -186442.0690847481 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 435040.8329212534, + 98932.31091884513 + ], + "y": [ + -246207.73709491672, + -187594.8777657927 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 435040.8329212534, + 98926.20655583622 + ], + "y": [ + -246207.73709491672, + -188109.5947916895 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 435040.8329212534, + 98881.20399257346 + ], + "y": [ + -246207.73709491672, + -188135.7951117508 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 435040.8329212534, + 98873.6590998779 + ], + "y": [ + -246207.73709491672, + -188126.67429510137 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 435040.8329212534, + 98776.08147395353 + ], + "y": [ + -246207.73709491672, + -188068.89540782082 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 435040.8329212534, + 98916.08043593282 + ], + "y": [ + -246207.73709491672, + -188138.17806449422 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 435040.8329212534, + 98775.64297666437 + ], + "y": [ + -246207.73709491672, + -188113.8147030654 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 435040.8329212534, + 98833.5386160878 + ], + "y": [ + -246207.73709491672, + -188119.49823623613 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 435040.8329212534, + 98779.4951496633 + ], + "y": [ + -246207.73709491672, + -188123.9780570342 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 435040.8329212534, + 98769.87019965112 + ], + "y": [ + -246207.73709491672, + -188121.51859750494 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 435040.8329212534, + 98763.69912444155 + ], + "y": [ + -246207.73709491672, + -188082.81454332572 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 435040.8329212534, + 98715.38337956829 + ], + "y": [ + -246207.73709491672, + -188023.85098966694 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 435040.8329212534, + 98838.01226486915 + ], + "y": [ + -246207.73709491672, + -188038.4334288893 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 435040.8329212534, + 98731.25835265023 + ], + "y": [ + -246207.73709491672, + -188097.6602407291 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 435040.8329212534, + 98794.9356782363 + ], + "y": [ + -246207.73709491672, + -188124.65543545736 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 435040.8329212534, + 98875.12446310604 + ], + "y": [ + -246207.73709491672, + -188079.8329504583 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 435040.8329212534, + 98845.6917714939 + ], + "y": [ + -246207.73709491672, + -188129.3743830729 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -268079.75936596474, + 97044.98522321004 + ], + "y": [ + 478973.0794877556, + -186558.77337581848 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -268079.75936596474, + 96890.44446357607 + ], + "y": [ + 478973.0794877556, + -186655.24842534095 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 403899.78181010886, + 95746.74077759727 + ], + "y": [ + 119281.5836990242, + -185972.4842459763 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 403899.78181010886, + 95514.38455692613 + ], + "y": [ + 119281.5836990242, + -185153.37826635112 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 403899.78181010886, + 96085.91161839501 + ], + "y": [ + 119281.5836990242, + -185765.32519087984 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 403899.78181010886, + 95540.81075134124 + ], + "y": [ + 119281.5836990242, + -185186.70637920234 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 403899.78181010886, + 95161.64737314533 + ], + "y": [ + 119281.5836990242, + -185070.59019309614 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -405306.02044891764, + 97743.37633435942 + ], + "y": [ + 388189.0314436558, + -187673.30496193952 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -405306.02044891764, + 97368.18786729996 + ], + "y": [ + 388189.0314436558, + -187761.64483234545 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -405306.02044891764, + 97400.16397729573 + ], + "y": [ + 388189.0314436558, + -187256.5867709403 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -405306.02044891764, + 97615.97056569872 + ], + "y": [ + 388189.0314436558, + -187366.18291352072 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -405306.02044891764, + 97788.7651245566 + ], + "y": [ + 388189.0314436558, + -187524.54517428228 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -405306.02044891764, + 97923.16505107327 + ], + "y": [ + 388189.0314436558, + -187510.56934074408 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -405306.02044891764, + 97749.77214743374 + ], + "y": [ + 388189.0314436558, + -187529.40680193529 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -405306.02044891764, + 97737.47168433828 + ], + "y": [ + 388189.0314436558, + -187454.64105987392 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -88739.66357379004, + 97643.42074759667 + ], + "y": [ + -524230.97112853, + -187519.31181360115 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -88739.66357379004, + 97749.29069670282 + ], + "y": [ + -524230.97112853, + -187123.06288107514 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -88739.66357379004, + 98137.79198213125 + ], + "y": [ + -524230.97112853, + -187477.63157623674 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -88739.66357379004, + 97782.44112987598 + ], + "y": [ + -524230.97112853, + -187257.24688779732 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -88739.66357379004, + 97566.10709216155 + ], + "y": [ + -524230.97112853, + -186882.32732606877 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -655098.6365330735, + 97247.41509419652 + ], + "y": [ + -17390.03349064716, + -185744.03743667188 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -655098.6365330735, + 98703.6866543077 + ], + "y": [ + -17390.03349064716, + -185647.84002902228 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -655098.6365330735, + 97300.96068285858 + ], + "y": [ + -17390.03349064716, + -186969.98767638186 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -655098.6365330735, + 97415.93818773415 + ], + "y": [ + -17390.03349064716, + -185902.72286645 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 286552.26150755887, + 97789.92707115466 + ], + "y": [ + -791736.2387877613, + -187303.182190925 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 286552.26150755887, + 96750.40498635444 + ], + "y": [ + -791736.2387877613, + -188126.80564361744 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 286552.26150755887, + 97809.32654645263 + ], + "y": [ + -791736.2387877613, + -187360.58931040493 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 286552.26150755887, + 97809.59302628535 + ], + "y": [ + -791736.2387877613, + -186921.38953855107 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 286552.26150755887, + 97788.58031988013 + ], + "y": [ + -791736.2387877613, + -186929.557108324 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 286552.26150755887, + 97768.46861576667 + ], + "y": [ + -791736.2387877613, + -187311.67435395776 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 286552.26150755887, + 97504.52578621544 + ], + "y": [ + -791736.2387877613, + -187395.2983959365 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -252963.25799429885, + 96578.02421964555 + ], + "y": [ + -249018.1239022182, + -187080.93819916193 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -252963.25799429885, + 96409.96532967011 + ], + "y": [ + -249018.1239022182, + -186222.8395883536 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 486620.05816211493, + 96325.12988946559 + ], + "y": [ + 425687.551390582, + -187442.89148744586 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 486620.05816211493, + 96767.96478692938 + ], + "y": [ + 425687.551390582, + -188140.00051928166 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 486620.05816211493, + 96753.02617057231 + ], + "y": [ + 425687.551390582, + -188151.46145141035 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 486620.05816211493, + 96869.39684947954 + ], + "y": [ + 425687.551390582, + -187564.53232755137 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -328431.293413165, + 95763.40443589797 + ], + "y": [ + 541551.3039466413, + -188215.09477527425 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -328431.293413165, + 95719.63523794102 + ], + "y": [ + 541551.3039466413, + -187376.35249447948 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -328431.293413165, + 95771.1095203462 + ], + "y": [ + 541551.3039466413, + -188189.81482384 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -328431.293413165, + 95203.1376507783 + ], + "y": [ + 541551.3039466413, + -188034.83047066652 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -328431.293413165, + 96270.15699232905 + ], + "y": [ + 541551.3039466413, + -187747.06924668472 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -328431.293413165, + 95244.0575474311 + ], + "y": [ + 541551.3039466413, + -188800.80256482895 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -328431.293413165, + 96476.2244248884 + ], + "y": [ + 541551.3039466413, + -187102.12973368363 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -328431.293413165, + 96533.83917036175 + ], + "y": [ + 541551.3039466413, + -187917.99657074743 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 986835.0736272966, + 95627.6655653288 + ], + "y": [ + 777474.9590574694, + -185057.76047148168 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 986835.0736272966, + 96487.74751288781 + ], + "y": [ + 777474.9590574694, + -186486.71688355424 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 986835.0736272966, + 95709.93291907338 + ], + "y": [ + 777474.9590574694, + -185130.529001914 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 986835.0736272966, + 95658.32063821593 + ], + "y": [ + 777474.9590574694, + -185147.71919034136 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -41600.750115048155, + 97536.70985088356 + ], + "y": [ + -308779.8303713793, + -187135.60577403157 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -41600.750115048155, + 98229.18483310309 + ], + "y": [ + -308779.8303713793, + -187646.46474410285 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -41600.750115048155, + 97334.69528656456 + ], + "y": [ + -308779.8303713793, + -187248.01430917686 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 629509.3608464187, + 95989.76467211267 + ], + "y": [ + -585205.0374690447, + -185284.9406615433 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -653765.5633018771, + 97600.72228126202 + ], + "y": [ + -109038.59249090897, + -186286.42140426437 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -653765.5633018771, + 97959.01602952153 + ], + "y": [ + -109038.59249090897, + -186595.59491334032 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -653765.5633018771, + 98371.01061870782 + ], + "y": [ + -109038.59249090897, + -187638.170551301 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -653765.5633018771, + 97789.64547242364 + ], + "y": [ + -109038.59249090897, + -186478.24245183423 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 487810.7120183575, + 95737.0210501743 + ], + "y": [ + -476955.21757166047, + -187993.35866484616 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 487810.7120183575, + 96247.5730261708 + ], + "y": [ + -476955.21757166047, + -187229.13331112568 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 79696.72280020501, + 96716.89120782126 + ], + "y": [ + 89599.82920407894, + -187938.08243107222 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 79696.72280020501, + 96085.91161839501 + ], + "y": [ + 89599.82920407894, + -185765.32519087984 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 93058.14653318057, + 97052.70205106144 + ], + "y": [ + -202663.00039897067, + -186825.88912431858 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 93058.14653318057, + 96826.71329736618 + ], + "y": [ + -202663.00039897067, + -186708.8994492446 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 93058.14653318057, + 96991.17451689237 + ], + "y": [ + -202663.00039897067, + -187164.0688469574 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 792119.881503258, + 97052.70205106144 + ], + "y": [ + 40745.30815238342, + -186825.88912431858 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 792119.881503258, + 96991.17451689237 + ], + "y": [ + 40745.30815238342, + -187164.0688469574 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 167826.07426211916, + 96760.3513556949 + ], + "y": [ + -984531.7167255103, + -187461.08290298193 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 167826.07426211916, + 96464.55718535923 + ], + "y": [ + -984531.7167255103, + -187221.3523749667 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 167826.07426211916, + 96534.278171482 + ], + "y": [ + -984531.7167255103, + -186992.1811585919 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 167826.07426211916, + 96405.88296277358 + ], + "y": [ + -984531.7167255103, + -187142.28778417234 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 167826.07426211916, + 97516.13365436997 + ], + "y": [ + -984531.7167255103, + -187056.31471454934 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -38509.35045387782, + 94593.1532092616 + ], + "y": [ + -972130.0647174548, + -186746.17776224224 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -38509.35045387782, + 94062.66633331862 + ], + "y": [ + -972130.0647174548, + -187434.38846414318 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -38509.35045387782, + 93616.21500771031 + ], + "y": [ + -972130.0647174548, + -187826.61084050385 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 464766.31972976757, + 96780.96571153034 + ], + "y": [ + 273270.0597006592, + -187003.93902302586 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 464766.31972976757, + 96527.45528447787 + ], + "y": [ + 273270.0597006592, + -187742.596093895 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 502981.5468323673, + 95617.05222697879 + ], + "y": [ + -599291.6704083991, + -185540.26300420432 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 502981.5468323673, + 96115.57754246322 + ], + "y": [ + -599291.6704083991, + -185199.27035351453 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 868139.6588996886, + 95481.26094749449 + ], + "y": [ + 750002.6005460201, + -188288.73056814942 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 868139.6588996886, + 96350.897783121 + ], + "y": [ + 750002.6005460201, + -186980.8144633269 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 868139.6588996886, + 95443.67008227661 + ], + "y": [ + 750002.6005460201, + -188423.99184216498 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 868139.6588996886, + 95360.36419013362 + ], + "y": [ + 750002.6005460201, + -188384.46387554856 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 868139.6588996886, + 95505.50501741502 + ], + "y": [ + 750002.6005460201, + -188099.9720945511 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 868139.6588996886, + 95828.46924619444 + ], + "y": [ + 750002.6005460201, + -187819.29574656484 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 868139.6588996886, + 95163.75908553116 + ], + "y": [ + 750002.6005460201, + -188413.92210597807 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 868139.6588996886, + 95489.22963590887 + ], + "y": [ + 750002.6005460201, + -187838.56400906073 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 868139.6588996886, + 95274.60828290615 + ], + "y": [ + 750002.6005460201, + -188187.00891794523 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 868139.6588996886, + 95527.20667464145 + ], + "y": [ + 750002.6005460201, + -188567.58941515462 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 868139.6588996886, + 95397.10356995185 + ], + "y": [ + 750002.6005460201, + -187941.9237365848 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 868139.6588996886, + 95228.59152965351 + ], + "y": [ + 750002.6005460201, + -188480.6248001793 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 868139.6588996886, + 95594.04154313843 + ], + "y": [ + 750002.6005460201, + -188752.9247450727 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 868139.6588996886, + 95243.05174065192 + ], + "y": [ + 750002.6005460201, + -188237.25251034857 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 868139.6588996886, + 95213.77887412795 + ], + "y": [ + 750002.6005460201, + -188232.11752967277 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 868139.6588996886, + 95713.33557938566 + ], + "y": [ + 750002.6005460201, + -186369.47424236263 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 868139.6588996886, + 95510.02889292239 + ], + "y": [ + 750002.6005460201, + -187463.4585977219 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 868139.6588996886, + 96022.18132064518 + ], + "y": [ + 750002.6005460201, + -186934.3360415499 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 868139.6588996886, + 95306.71022996533 + ], + "y": [ + 750002.6005460201, + -188159.4341766519 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 868139.6588996886, + 96072.651127653 + ], + "y": [ + 750002.6005460201, + -188325.90735821644 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -170207.19763056102, + 95448.68746731608 + ], + "y": [ + 756890.1641414585, + -184908.1166309739 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -170207.19763056102, + 95293.92851935429 + ], + "y": [ + 756890.1641414585, + -184198.70078145587 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -443329.20444239624, + 96424.48707246192 + ], + "y": [ + 264180.56110761315, + -186439.9649841702 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -525909.7546974054, + 96039.53114090665 + ], + "y": [ + 804859.604823416, + -187862.98846391006 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -525909.7546974054, + 96558.40139577903 + ], + "y": [ + 804859.604823416, + -187369.8494239768 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 578051.3518156023, + 96049.17164979059 + ], + "y": [ + -178356.25676065582, + -185019.88314560454 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 61547.78938514394, + 97598.41715003968 + ], + "y": [ + 707865.61845407, + -187109.55145493208 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 61547.78938514394, + 97200.7730276014 + ], + "y": [ + 707865.61845407, + -187639.15760068822 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 61547.78938514394, + 97446.90168966807 + ], + "y": [ + 707865.61845407, + -186765.58714734673 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 61547.78938514394, + 97965.90473223805 + ], + "y": [ + 707865.61845407, + -187204.27240844848 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 61547.78938514394, + 97959.05424320973 + ], + "y": [ + 707865.61845407, + -186509.34289278075 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 522257.1386652817, + 96440.9774229316 + ], + "y": [ + -119638.06642065445, + -187686.9419411423 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 522257.1386652817, + 97474.17223906965 + ], + "y": [ + -119638.06642065445, + -187048.28032769196 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 522257.1386652817, + 96627.09595023748 + ], + "y": [ + -119638.06642065445, + -186794.89125618731 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 522257.1386652817, + 96508.0649915055 + ], + "y": [ + -119638.06642065445, + -186822.41511138683 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 522257.1386652817, + 96252.73601927159 + ], + "y": [ + -119638.06642065445, + -187563.39014736656 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 577392.8090613643, + 97191.15673842629 + ], + "y": [ + 896088.1357434693, + -186870.85476427 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 577392.8090613643, + 97598.41715003968 + ], + "y": [ + 896088.1357434693, + -187109.55145493208 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 577392.8090613643, + 96912.8602518081 + ], + "y": [ + 896088.1357434693, + -187385.0923661435 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 577392.8090613643, + 96640.9561634297 + ], + "y": [ + 896088.1357434693, + -186888.21059285887 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 577392.8090613643, + 96548.78849614567 + ], + "y": [ + 896088.1357434693, + -185829.80948671233 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 577392.8090613643, + 97092.6033555316 + ], + "y": [ + 896088.1357434693, + -187041.9723647092 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 577392.8090613643, + 96137.93531003897 + ], + "y": [ + 896088.1357434693, + -185125.23152722794 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 577392.8090613643, + 97681.82650463261 + ], + "y": [ + 896088.1357434693, + -187095.6197581376 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 577392.8090613643, + 96900.36956234596 + ], + "y": [ + 896088.1357434693, + -185897.53117830772 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 577392.8090613643, + 99054.93251049488 + ], + "y": [ + 896088.1357434693, + -185769.0972955552 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 577392.8090613643, + 97621.5308801509 + ], + "y": [ + 896088.1357434693, + -186826.48542049516 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 577392.8090613643, + 96840.81091989319 + ], + "y": [ + 896088.1357434693, + -185756.5836062822 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 577392.8090613643, + 97398.68149419299 + ], + "y": [ + 896088.1357434693, + -186973.73232271746 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 577392.8090613643, + 96052.90997742687 + ], + "y": [ + 896088.1357434693, + -185101.1509899331 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 577392.8090613643, + 97140.91541633583 + ], + "y": [ + 896088.1357434693, + -186015.29034764567 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 577392.8090613643, + 96883.35271778212 + ], + "y": [ + 896088.1357434693, + -186628.54466062496 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 577392.8090613643, + 96961.63219735424 + ], + "y": [ + 896088.1357434693, + -185868.99053592625 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 577392.8090613643, + 96593.15685874 + ], + "y": [ + 896088.1357434693, + -185892.3867642372 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 577392.8090613643, + 96942.49668912489 + ], + "y": [ + 896088.1357434693, + -185982.92772953527 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 577392.8090613643, + 97329.44637332104 + ], + "y": [ + 896088.1357434693, + -186563.35158898422 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 577392.8090613643, + 97283.72077280736 + ], + "y": [ + 896088.1357434693, + -186333.64344871804 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 665091.1247342328, + 96411.51796021752 + ], + "y": [ + 764306.5082644378, + -188137.57555694113 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 665091.1247342328, + 96339.24938310328 + ], + "y": [ + 764306.5082644378, + -186649.44372244837 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 786778.6542879742, + 97736.94813016456 + ], + "y": [ + 738347.6293918168, + -185398.36138060363 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 786778.6542879742, + 97910.96993785165 + ], + "y": [ + 738347.6293918168, + -186628.42409363462 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 786778.6542879742, + 96786.0414096176 + ], + "y": [ + 738347.6293918168, + -185328.69791728977 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 786778.6542879742, + 99128.8683145138 + ], + "y": [ + 738347.6293918168, + -185645.35316113118 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 815950.3189379036, + 97910.96993785165 + ], + "y": [ + 298009.30941031687, + -186628.42409363462 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 815950.3189379036, + 99128.8683145138 + ], + "y": [ + 298009.30941031687, + -185645.35316113118 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 815950.3189379036, + 96786.0414096176 + ], + "y": [ + 298009.30941031687, + -185328.69791728977 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 38830.39103194141, + 96211.67174914089 + ], + "y": [ + 876862.1278722695, + -185190.4973312962 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 38830.39103194141, + 95720.51419720666 + ], + "y": [ + 876862.1278722695, + -184810.0609463012 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 38830.39103194141, + 96607.09318109117 + ], + "y": [ + 876862.1278722695, + -185673.16887228226 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 38830.39103194141, + 95599.53684369884 + ], + "y": [ + 876862.1278722695, + -184555.20493347468 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -635979.9761410847, + 97078.78573950223 + ], + "y": [ + -996033.6480989374, + -186603.54049738206 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -635979.9761410847, + 95886.98258580548 + ], + "y": [ + -996033.6480989374, + -185000.47819436324 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -635979.9761410847, + 96463.65900406071 + ], + "y": [ + -996033.6480989374, + -185769.4575393162 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -635979.9761410847, + 96509.39820433313 + ], + "y": [ + -996033.6480989374, + -185778.33475206984 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -635979.9761410847, + 96509.4296845907 + ], + "y": [ + -996033.6480989374, + -185864.6939073649 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -635979.9761410847, + 96099.61138898744 + ], + "y": [ + -996033.6480989374, + -185242.38515533158 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -651013.7192327545, + 97122.96681206446 + ], + "y": [ + 960523.7131412292, + -185902.13729941534 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -651013.7192327545, + 95950.47769478709 + ], + "y": [ + 960523.7131412292, + -184710.20690531647 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -651013.7192327545, + 98675.12932763455 + ], + "y": [ + 960523.7131412292, + -186336.77161351635 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -651013.7192327545, + 97289.15046436754 + ], + "y": [ + 960523.7131412292, + -186119.94401614703 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 811131.8183294842, + 97014.53523334138 + ], + "y": [ + -380830.05584140925, + -185893.69281000222 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 811131.8183294842, + 97526.53767625983 + ], + "y": [ + -380830.05584140925, + -187563.04088038372 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 811131.8183294842, + 97181.11827309501 + ], + "y": [ + -380830.05584140925, + -186983.54442722624 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 811131.8183294842, + 98660.63217404629 + ], + "y": [ + -380830.05584140925, + -187703.92647279546 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 811131.8183294842, + 98412.44821844941 + ], + "y": [ + -380830.05584140925, + -185743.6029551579 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 811131.8183294842, + 97765.48056752425 + ], + "y": [ + -380830.05584140925, + -185968.90039689335 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 811131.8183294842, + 97130.87354039263 + ], + "y": [ + -380830.05584140925, + -186108.22088459652 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 811131.8183294842, + 97611.64317798252 + ], + "y": [ + -380830.05584140925, + -186089.89882082163 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 811131.8183294842, + 96607.81846515763 + ], + "y": [ + -380830.05584140925, + -185308.25354167318 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 811131.8183294842, + 97565.68134613338 + ], + "y": [ + -380830.05584140925, + -186216.4074492947 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 190593.36686297934, + 97878.18936700777 + ], + "y": [ + 166563.21910749128, + -186691.95573974657 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 190593.36686297934, + 98088.69457083048 + ], + "y": [ + 166563.21910749128, + -186418.54900034756 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 190593.36686297934, + 102537.64337792993 + ], + "y": [ + 166563.21910749128, + -184684.6304903929 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 190593.36686297934, + 97336.72314742803 + ], + "y": [ + 166563.21910749128, + -186003.21438929535 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 190593.36686297934, + 97384.85502032931 + ], + "y": [ + 166563.21910749128, + -186109.56426562366 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 190593.36686297934, + 97739.50461726454 + ], + "y": [ + 166563.21910749128, + -186120.97182205616 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 190593.36686297934, + 97790.18756915494 + ], + "y": [ + 166563.21910749128, + -186324.3395864327 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 190593.36686297934, + 98423.75905911079 + ], + "y": [ + 166563.21910749128, + -186722.7974234636 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 588024.254014322, + 92914.29701391104 + ], + "y": [ + 534859.9422349943, + -140718.26168474945 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 588024.254014322, + 94521.0965568673 + ], + "y": [ + 534859.9422349943, + -162271.2627223581 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 316053.7349427122, + 96813.45598094136 + ], + "y": [ + -132114.9342579806, + -186085.13248614842 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 316053.7349427122, + 96835.92874774396 + ], + "y": [ + -132114.9342579806, + -186068.28536481576 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 316053.7349427122, + 96172.09176973494 + ], + "y": [ + -132114.9342579806, + -185427.49168366197 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 587577.2507856083, + 96100.97014585767 + ], + "y": [ + 80900.4134705249, + -184985.73631769797 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 587577.2507856083, + 95705.40993449507 + ], + "y": [ + 80900.4134705249, + -184766.12089212818 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 351301.77422378736, + 96845.07860198681 + ], + "y": [ + -579394.7183499117, + -186121.19306263936 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 351301.77422378736, + 97276.29878619949 + ], + "y": [ + -579394.7183499117, + -187012.46365318543 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 351301.77422378736, + 97481.0467852597 + ], + "y": [ + -579394.7183499117, + -186679.30936474973 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 848868.644806498, + 96827.38300101372 + ], + "y": [ + 819699.6980095763, + -185693.59243815514 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 848868.644806498, + 96461.24693139427 + ], + "y": [ + 819699.6980095763, + -186460.20786475393 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 848868.644806498, + 96535.82894445845 + ], + "y": [ + 819699.6980095763, + -186037.59716773787 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -299923.25938496925, + 96054.16110461712 + ], + "y": [ + 386546.83880120324, + -185450.5833065486 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -299923.25938496925, + 96003.46856538253 + ], + "y": [ + 386546.83880120324, + -185396.0966615638 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -299923.25938496925, + 96117.67522368413 + ], + "y": [ + 386546.83880120324, + -185276.4054007422 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -360885.8773834229, + 96380.27321562011 + ], + "y": [ + 821573.6475867204, + -184847.09039631113 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -345441.7571526054, + 96039.52555482746 + ], + "y": [ + 981695.7421767967, + -184823.61753243406 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -345441.7571526054, + 96091.70581400175 + ], + "y": [ + 981695.7421767967, + -184778.45025064657 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -345441.7571526054, + 96269.04428473447 + ], + "y": [ + 981695.7421767967, + -185109.39166642443 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 437694.3292319815, + 97245.37390852053 + ], + "y": [ + 614305.8973532458, + -185556.4843562863 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 947333.3380176532, + 96333.93226534751 + ], + "y": [ + 77534.99257079021, + -186719.88216859457 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 947333.3380176532, + 96524.6669755778 + ], + "y": [ + 77534.99257079021, + -186773.59087394056 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 947333.3380176532, + 96558.43883318681 + ], + "y": [ + 77534.99257079021, + -186505.48261010222 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 947333.3380176532, + 97209.46385807885 + ], + "y": [ + 77534.99257079021, + -187516.20202739417 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 947333.3380176532, + 96281.59320080571 + ], + "y": [ + 77534.99257079021, + -188001.86892294977 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 947333.3380176532, + 96876.62587606598 + ], + "y": [ + 77534.99257079021, + -186342.25549461835 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 947333.3380176532, + 97681.82650463261 + ], + "y": [ + 77534.99257079021, + -187095.6197581376 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 916183.0371557598, + 97191.15673842629 + ], + "y": [ + 626708.9342158604, + -186870.85476427 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 916183.0371557598, + 97598.41715003968 + ], + "y": [ + 626708.9342158604, + -187109.55145493208 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 916183.0371557598, + 97177.84417040872 + ], + "y": [ + 626708.9342158604, + -186442.0690847481 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 916183.0371557598, + 97329.44637332104 + ], + "y": [ + 626708.9342158604, + -186563.35158898422 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 388152.5796828631, + 97334.199382075 + ], + "y": [ + 952690.7658094943, + -186684.80121130878 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 388152.5796828631, + 96164.9303846309 + ], + "y": [ + 952690.7658094943, + -184705.8070100957 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -789394.6420817033, + 95667.80679021226 + ], + "y": [ + 116504.86283671646, + -184864.84138353547 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -789394.6420817033, + 95658.32343165908 + ], + "y": [ + 116504.86283671646, + -184566.07730183762 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -84551.7835832943, + 95648.34307354958 + ], + "y": [ + -420122.1368730317, + -186337.80196089507 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -84551.7835832943, + 95901.87035986596 + ], + "y": [ + -420122.1368730317, + -185906.65861356055 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -84551.7835832943, + 95796.6220412549 + ], + "y": [ + -420122.1368730317, + -186150.906960568 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -84551.7835832943, + 95732.4030502184 + ], + "y": [ + -420122.1368730317, + -186089.31929989046 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -84551.7835832943, + 96335.57621806604 + ], + "y": [ + -420122.1368730317, + -186474.6235265719 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 946906.6064106144, + 95737.0210501743 + ], + "y": [ + -538892.5293056685, + -187993.35866484616 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 946906.6064106144, + 96247.5730261708 + ], + "y": [ + -538892.5293056685, + -187229.13331112568 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 608890.8180953821, + 96407.22560594323 + ], + "y": [ + 171879.1916242357, + -186468.51753357225 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 608890.8180953821, + 96440.07084499848 + ], + "y": [ + 171879.1916242357, + -186122.9165758566 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 677591.4524686069, + 96991.17451689237 + ], + "y": [ + -584452.5975392128, + -187164.0688469574 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 677591.4524686069, + 97052.70205106144 + ], + "y": [ + -584452.5975392128, + -186825.88912431858 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 521072.90601517487, + 95514.95574487532 + ], + "y": [ + 573054.9331839461, + -186174.69969704037 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -178216.50664417076, + 97878.18936700777 + ], + "y": [ + 884904.7618596369, + -186691.95573974657 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -178216.50664417076, + 97384.85502032931 + ], + "y": [ + 884904.7618596369, + -186109.56426562366 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -178216.50664417076, + 98088.69457083048 + ], + "y": [ + 884904.7618596369, + -186418.54900034756 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -178216.50664417076, + 97790.18756915494 + ], + "y": [ + 884904.7618596369, + -186324.3395864327 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -14463.351502338017, + 96947.40675273385 + ], + "y": [ + 72455.83117650512, + -188107.46199151454 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -14463.351502338017, + 96817.66055571858 + ], + "y": [ + 72455.83117650512, + -187899.4158525461 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -14463.351502338017, + 96400.51278286969 + ], + "y": [ + 72455.83117650512, + -187859.86995225446 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -14463.351502338017, + 96656.51605951994 + ], + "y": [ + 72455.83117650512, + -188126.8200295349 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -14463.351502338017, + 97154.72425616732 + ], + "y": [ + 72455.83117650512, + -188123.19483452023 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -14463.351502338017, + 97559.12810431966 + ], + "y": [ + 72455.83117650512, + -187448.3572804437 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 554892.5945752865, + 97442.1178182285 + ], + "y": [ + 829740.9884726934, + -187820.43378501857 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 554892.5945752865, + 96871.98342831364 + ], + "y": [ + 829740.9884726934, + -186775.64544110073 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -387963.4681192348, + 96189.19527054564 + ], + "y": [ + -331959.35190203565, + -185619.5302422243 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -387963.4681192348, + 97753.78297929207 + ], + "y": [ + -331959.35190203565, + -185704.2175677414 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -387963.4681192348, + 96341.35508815081 + ], + "y": [ + -331959.35190203565, + -185937.20459336432 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -387963.4681192348, + 95819.77591622746 + ], + "y": [ + -331959.35190203565, + -185523.5880471388 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -387963.4681192348, + 95836.41008943335 + ], + "y": [ + -331959.35190203565, + -185073.60125989263 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -387963.4681192348, + 96259.9082581497 + ], + "y": [ + -331959.35190203565, + -185681.62401491503 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -387963.4681192348, + 96624.18025269137 + ], + "y": [ + -331959.35190203565, + -185755.25804511458 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -387963.4681192348, + 96869.39684947954 + ], + "y": [ + -331959.35190203565, + -187564.53232755137 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -387963.4681192348, + 96595.38846744089 + ], + "y": [ + -331959.35190203565, + -185742.32278142963 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -387963.4681192348, + 96273.9014736457 + ], + "y": [ + -331959.35190203565, + -185812.36978806616 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -387963.4681192348, + 97698.15736668535 + ], + "y": [ + -331959.35190203565, + -186839.17366214117 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -387963.4681192348, + 96237.38326345755 + ], + "y": [ + -331959.35190203565, + -185460.24572993352 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -387963.4681192348, + 96272.62459980143 + ], + "y": [ + -331959.35190203565, + -185767.89203574616 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -387963.4681192348, + 96297.69636707871 + ], + "y": [ + -331959.35190203565, + -185411.53656573629 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -387963.4681192348, + 95372.37969661041 + ], + "y": [ + -331959.35190203565, + -186079.66390792772 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -387963.4681192348, + 96464.1710890281 + ], + "y": [ + -331959.35190203565, + -185233.48683497915 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -387963.4681192348, + 96300.0043841075 + ], + "y": [ + -331959.35190203565, + -184948.90466462815 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -387963.4681192348, + 95976.46298115156 + ], + "y": [ + -331959.35190203565, + -185247.7806087925 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -387963.4681192348, + 96423.89730001795 + ], + "y": [ + -331959.35190203565, + -186549.85209355422 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -387963.4681192348, + 95705.40993449507 + ], + "y": [ + -331959.35190203565, + -184766.12089212818 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -387963.4681192348, + 97225.12273154467 + ], + "y": [ + -331959.35190203565, + -186917.39214776302 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -387963.4681192348, + 96380.40661308727 + ], + "y": [ + -331959.35190203565, + -186657.063249416 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 717447.7001192871, + 96196.257368652 + ], + "y": [ + -428399.58301674377, + -186137.98831876533 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 180005.58774911758, + 97687.97327166176 + ], + "y": [ + -679954.6677934721, + -187630.12975349987 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 180005.58774911758, + 97598.41715003968 + ], + "y": [ + -679954.6677934721, + -187109.55145493208 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 180005.58774911758, + 97764.93718471118 + ], + "y": [ + -679954.6677934721, + -187687.3081902085 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 180005.58774911758, + 97964.99194759796 + ], + "y": [ + -679954.6677934721, + -187525.68775441864 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 180005.58774911758, + 97077.67459906588 + ], + "y": [ + -679954.6677934721, + -187326.55715253745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 180005.58774911758, + 96053.464316358 + ], + "y": [ + -679954.6677934721, + -189245.3547860996 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 180005.58774911758, + 97681.82650463261 + ], + "y": [ + -679954.6677934721, + -187095.6197581376 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 698099.5531065653, + 95950.13199504191 + ], + "y": [ + 84986.55436247282, + -184795.0131029055 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 698099.5531065653, + 95847.60434582221 + ], + "y": [ + 84986.55436247282, + -184934.10299478343 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 698099.5531065653, + 96119.17908740342 + ], + "y": [ + 84986.55436247282, + -184595.03593603414 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -656436.9674364273, + 95905.42580827077 + ], + "y": [ + -490268.42281844106, + -185557.18603881687 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -656436.9674364273, + 95919.99780721203 + ], + "y": [ + -490268.42281844106, + -184826.82895671725 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -580427.8565184487, + 96185.37627813521 + ], + "y": [ + -223739.6026945686, + -185703.95718490216 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -580427.8565184487, + 95946.3884071162 + ], + "y": [ + -223739.6026945686, + -185294.42224015918 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -580427.8565184487, + 96244.27988515895 + ], + "y": [ + -223739.6026945686, + -185575.41563245628 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -580427.8565184487, + 96196.74025182828 + ], + "y": [ + -223739.6026945686, + -185794.81985080332 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -580427.8565184487, + 96174.10171537164 + ], + "y": [ + -223739.6026945686, + -186172.60986329245 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -580427.8565184487, + 96538.8108213843 + ], + "y": [ + -223739.6026945686, + -185661.8516968439 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -580427.8565184487, + 97589.77077865561 + ], + "y": [ + -223739.6026945686, + -185638.24577050543 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -580427.8565184487, + 96255.53165206172 + ], + "y": [ + -223739.6026945686, + -185965.40347835567 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -580427.8565184487, + 96989.12139942696 + ], + "y": [ + -223739.6026945686, + -186004.1374210784 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -580427.8565184487, + 96386.3485642869 + ], + "y": [ + -223739.6026945686, + -185781.3584731582 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -580427.8565184487, + 96209.17705200447 + ], + "y": [ + -223739.6026945686, + -185664.76866772544 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -580427.8565184487, + 96404.94279951866 + ], + "y": [ + -223739.6026945686, + -185815.6127283012 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -580427.8565184487, + 95582.13652811556 + ], + "y": [ + -223739.6026945686, + -184723.17471127305 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -580427.8565184487, + 96075.92114230867 + ], + "y": [ + -223739.6026945686, + -186009.95200031195 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -580427.8565184487, + 96933.47649225005 + ], + "y": [ + -223739.6026945686, + -186195.38531040744 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -580427.8565184487, + 96208.32555016727 + ], + "y": [ + -223739.6026945686, + -185753.05619845918 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -580427.8565184487, + 96486.76296481364 + ], + "y": [ + -223739.6026945686, + -185703.19314166557 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -580427.8565184487, + 96310.8706914388 + ], + "y": [ + -223739.6026945686, + -186594.9114183287 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -580427.8565184487, + 96156.77295171334 + ], + "y": [ + -223739.6026945686, + -185580.15593113314 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -580427.8565184487, + 96208.35637264428 + ], + "y": [ + -223739.6026945686, + -185541.68129385356 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -580427.8565184487, + 96987.0677801975 + ], + "y": [ + -223739.6026945686, + -186549.16628896404 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -580427.8565184487, + 96412.81309344785 + ], + "y": [ + -223739.6026945686, + -185479.2357860194 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 345722.8774127468, + 95605.5078529397 + ], + "y": [ + 406002.0457023177, + -184578.21753488245 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 345722.8774127468, + 95576.46893477392 + ], + "y": [ + 406002.0457023177, + -184618.35740420443 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 345722.8774127468, + 95889.53071914573 + ], + "y": [ + 406002.0457023177, + -184441.46870504398 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 345722.8774127468, + 95560.7221366576 + ], + "y": [ + 406002.0457023177, + -184568.61994464282 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 345722.8774127468, + 95552.49574202929 + ], + "y": [ + 406002.0457023177, + -184661.85928366336 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 345722.8774127468, + 95550.8641318485 + ], + "y": [ + 406002.0457023177, + -184523.38966404533 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -150377.71014886748, + 96405.3198620752 + ], + "y": [ + 665655.8201887235, + -185717.16624584142 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -150377.71014886748, + 95915.425645233 + ], + "y": [ + 665655.8201887235, + -185483.3295420938 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -150377.71014886748, + 96264.80700176922 + ], + "y": [ + 665655.8201887235, + -186417.94305405728 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 155998.46897914205, + 96174.34018844058 + ], + "y": [ + -527494.4459784911, + -186246.51492087843 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 155998.46897914205, + 95670.97648775595 + ], + "y": [ + -527494.4459784911, + -184845.9682979859 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 155998.46897914205, + 95372.88665283406 + ], + "y": [ + -527494.4459784911, + -184540.75647463603 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 65171.48029580055, + 96759.80185472532 + ], + "y": [ + 982085.9587471285, + -186901.45563588393 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 65171.48029580055, + 97151.48266936177 + ], + "y": [ + 982085.9587471285, + -187807.15683063408 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -181637.07161457854, + 95667.97156819428 + ], + "y": [ + -488694.0909168389, + -184666.37763325783 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -181637.07161457854, + 96281.8187118494 + ], + "y": [ + -488694.0909168389, + -185185.18619115572 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -181637.07161457854, + 96786.33551603762 + ], + "y": [ + -488694.0909168389, + -186199.38823877013 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 308041.3932794368, + 95652.45140521994 + ], + "y": [ + -583140.1465101166, + -184507.9099237428 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -287412.34625400434, + 97878.18936700777 + ], + "y": [ + 354225.66150667076, + -186691.95573974657 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -287412.34625400434, + 97384.85502032931 + ], + "y": [ + 354225.66150667076, + -186109.56426562366 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -287412.34625400434, + 98088.69457083048 + ], + "y": [ + 354225.66150667076, + -186418.54900034756 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -287412.34625400434, + 97790.18756915494 + ], + "y": [ + 354225.66150667076, + -186324.3395864327 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -656253.5214717102, + 96204.29166956923 + ], + "y": [ + 216506.6744153916, + -187003.43820973596 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -656253.5214717102, + 96273.36385473177 + ], + "y": [ + 216506.6744153916, + -186545.16136884323 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -656253.5214717102, + 96163.50814490586 + ], + "y": [ + 216506.6744153916, + -186951.0722009215 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -648310.0496600611, + 96142.15372609507 + ], + "y": [ + 154619.27963724674, + -186588.34259437467 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -648310.0496600611, + 96246.21706337249 + ], + "y": [ + 154619.27963724674, + -185936.8747686248 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -648310.0496600611, + 95604.22358935632 + ], + "y": [ + 154619.27963724674, + -186443.85498753583 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -648310.0496600611, + 96630.39978608028 + ], + "y": [ + 154619.27963724674, + -186141.55895141896 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -648310.0496600611, + 95933.78130606312 + ], + "y": [ + 154619.27963724674, + -187405.71770728158 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -648310.0496600611, + 95969.93628717288 + ], + "y": [ + 154619.27963724674, + -187389.66797592156 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -746381.2366853913, + 96866.28592075064 + ], + "y": [ + 25136.598539379218, + -186647.18276851127 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -746381.2366853913, + 96564.72992711587 + ], + "y": [ + 25136.598539379218, + -185889.87833542484 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -19364.354844584097, + 95596.36627113551 + ], + "y": [ + -433884.56447279954, + -184523.06400318502 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -19364.354844584097, + 96182.32358713142 + ], + "y": [ + -433884.56447279954, + -185073.57268297486 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -19364.354844584097, + 96286.66809125463 + ], + "y": [ + -433884.56447279954, + -185077.8905521608 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -19364.354844584097, + 95814.45750461605 + ], + "y": [ + -433884.56447279954, + -184685.0000328583 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97301.69481913165 + ], + "y": [ + 234279.8583667003, + -187192.2975120381 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 96886.2262880243 + ], + "y": [ + 234279.8583667003, + -187002.80523749278 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 96912.85156473947 + ], + "y": [ + 234279.8583667003, + -187003.69318072736 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97085.38663455553 + ], + "y": [ + 234279.8583667003, + -186907.3329708996 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97355.69179208958 + ], + "y": [ + 234279.8583667003, + -187388.2617066739 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97043.19055357405 + ], + "y": [ + 234279.8583667003, + -186950.9060841143 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97406.83103336953 + ], + "y": [ + 234279.8583667003, + -187426.40772893745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97508.64091238416 + ], + "y": [ + 234279.8583667003, + -188015.87833895627 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97596.85822151981 + ], + "y": [ + 234279.8583667003, + -187456.03533027926 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97281.93703232154 + ], + "y": [ + 234279.8583667003, + -186718.14847004472 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97339.53315472855 + ], + "y": [ + 234279.8583667003, + -187192.52823779927 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97182.15385952276 + ], + "y": [ + 234279.8583667003, + -187430.84477593255 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 98255.45010528169 + ], + "y": [ + 234279.8583667003, + -188090.9736323963 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 96708.5597033612 + ], + "y": [ + 234279.8583667003, + -187057.4226896695 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97342.9103563253 + ], + "y": [ + 234279.8583667003, + -187299.00679136443 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97298.42341187966 + ], + "y": [ + 234279.8583667003, + -187898.09108993356 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 98020.16838808233 + ], + "y": [ + 234279.8583667003, + -187800.71024494842 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97476.84212265511 + ], + "y": [ + 234279.8583667003, + -187578.7945424208 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97585.2552421273 + ], + "y": [ + 234279.8583667003, + -187852.2157456399 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97850.09960847285 + ], + "y": [ + 234279.8583667003, + -188445.4527261622 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97800.77052809988 + ], + "y": [ + 234279.8583667003, + -187821.0464781729 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97497.40137546581 + ], + "y": [ + 234279.8583667003, + -187538.8698057885 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97172.85679925286 + ], + "y": [ + 234279.8583667003, + -187904.2446480533 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97230.27471512488 + ], + "y": [ + 234279.8583667003, + -187707.84632557898 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97465.08902518246 + ], + "y": [ + 234279.8583667003, + -187515.5351218408 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97572.7293771363 + ], + "y": [ + 234279.8583667003, + -187294.31909113945 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97060.83487204376 + ], + "y": [ + 234279.8583667003, + -188304.55925484645 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97373.64682205649 + ], + "y": [ + 234279.8583667003, + -186927.86579355603 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97530.9950602946 + ], + "y": [ + 234279.8583667003, + -187675.71540639747 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97230.78206970361 + ], + "y": [ + 234279.8583667003, + -187132.18270199542 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97683.2450611929 + ], + "y": [ + 234279.8583667003, + -186661.11383538053 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97367.93418176113 + ], + "y": [ + 234279.8583667003, + -187238.4395913106 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97194.9145170215 + ], + "y": [ + 234279.8583667003, + -186711.99171266862 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 98030.3922687115 + ], + "y": [ + 234279.8583667003, + -187274.8884360902 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 98164.50513674611 + ], + "y": [ + 234279.8583667003, + -187605.70324073057 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97211.33338583425 + ], + "y": [ + 234279.8583667003, + -187459.62733920277 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97167.07602680264 + ], + "y": [ + 234279.8583667003, + -187350.64454981094 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 98102.01760177093 + ], + "y": [ + 234279.8583667003, + -187987.25877007708 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97473.4025173577 + ], + "y": [ + 234279.8583667003, + -187340.14536462337 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 96869.55087283194 + ], + "y": [ + 234279.8583667003, + -188133.99953381368 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 98618.6314379455 + ], + "y": [ + 234279.8583667003, + -187908.8502698971 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97980.37305163042 + ], + "y": [ + 234279.8583667003, + -187974.06713440962 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 98040.98610521741 + ], + "y": [ + 234279.8583667003, + -188174.96094340537 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97099.06003533595 + ], + "y": [ + 234279.8583667003, + -187654.68501915902 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 98609.76983635421 + ], + "y": [ + 234279.8583667003, + -187919.67545603745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97732.09002327014 + ], + "y": [ + 234279.8583667003, + -188033.5893052449 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97154.99065747266 + ], + "y": [ + 234279.8583667003, + -187179.74870279036 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97218.35146138504 + ], + "y": [ + 234279.8583667003, + -187958.6837154068 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97299.95816584109 + ], + "y": [ + 234279.8583667003, + -187098.08472081405 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97300.96068285858 + ], + "y": [ + 234279.8583667003, + -186969.98767638186 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97626.13132471772 + ], + "y": [ + 234279.8583667003, + -187817.05963383534 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97112.35613433391 + ], + "y": [ + 234279.8583667003, + -187227.08326375764 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97560.98718189307 + ], + "y": [ + 234279.8583667003, + -187840.08914857774 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97185.7097878747 + ], + "y": [ + 234279.8583667003, + -187243.47707715337 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97559.13458489727 + ], + "y": [ + 234279.8583667003, + -187358.05164964797 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97201.16002150408 + ], + "y": [ + 234279.8583667003, + -187870.53601201336 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97516.02947908005 + ], + "y": [ + 234279.8583667003, + -187247.9917175175 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97270.02110151788 + ], + "y": [ + 234279.8583667003, + -187825.62181611278 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97433.41068898393 + ], + "y": [ + 234279.8583667003, + -187383.08957187168 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97833.68675936971 + ], + "y": [ + 234279.8583667003, + -186137.40837100832 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97325.64609840355 + ], + "y": [ + 234279.8583667003, + -187368.8604475479 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97103.12815964877 + ], + "y": [ + 234279.8583667003, + -186975.18042715648 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 97473.72704771126 + ], + "y": [ + 234279.8583667003, + -187218.33649070092 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -625569.4912948359, + 96893.86441244776 + ], + "y": [ + 234279.8583667003, + -187115.92005878876 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 185128.5230804234, + 95331.67170746473 + ], + "y": [ + -703929.9198451278, + -188577.08388106618 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 733527.2827753351, + 96586.20076828018 + ], + "y": [ + -763867.361534357, + -185632.1535476023 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 733527.2827753351, + 96137.68930318531 + ], + "y": [ + -763867.361534357, + -185003.46048722725 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -502221.2423468795, + 97194.9145170215 + ], + "y": [ + 943963.3176441911, + -186711.99171266862 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -502221.2423468795, + 97299.95816584109 + ], + "y": [ + 943963.3176441911, + -187098.08472081405 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -502221.2423468795, + 97300.96068285858 + ], + "y": [ + 943963.3176441911, + -186969.98767638186 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -233364.95639678233, + 96950.1808551135 + ], + "y": [ + -325456.00848321256, + -186782.64173592345 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -233364.95639678233, + 97299.95816584109 + ], + "y": [ + -325456.00848321256, + -187098.08472081405 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -233364.95639678233, + 97300.96068285858 + ], + "y": [ + -325456.00848321256, + -186969.98767638186 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -941688.012740526, + 96390.43113801478 + ], + "y": [ + 172395.02771845582, + -187389.2021586 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 561686.4496072094, + 96858.54175843939 + ], + "y": [ + 749192.7196467996, + -188364.15112362726 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 561686.4496072094, + 97167.39841072715 + ], + "y": [ + 749192.7196467996, + -188088.5917691664 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 561686.4496072094, + 97743.58448295263 + ], + "y": [ + 749192.7196467996, + -187984.06459012086 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 561686.4496072094, + 97449.0985514171 + ], + "y": [ + 749192.7196467996, + -188713.3588507996 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 561686.4496072094, + 97642.36452938811 + ], + "y": [ + 749192.7196467996, + -188624.00866552212 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 561686.4496072094, + 97990.33956338989 + ], + "y": [ + 749192.7196467996, + -188363.5387691212 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 961212.1187088809, + 98636.37989407925 + ], + "y": [ + 624359.6727765179, + -187634.18143546607 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 961212.1187088809, + 97499.45757321935 + ], + "y": [ + 624359.6727765179, + -186777.46669602653 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 961212.1187088809, + 97494.95806383107 + ], + "y": [ + 624359.6727765179, + -186820.56521939114 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 961212.1187088809, + 96707.92401672102 + ], + "y": [ + 624359.6727765179, + -186867.77653250156 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 961212.1187088809, + 97387.15964980441 + ], + "y": [ + 624359.6727765179, + -186618.4433734245 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 961212.1187088809, + 96595.88973241366 + ], + "y": [ + 624359.6727765179, + -187699.43272561228 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 755173.4644584443, + 96547.16032979287 + ], + "y": [ + 480229.27434392227, + -185956.04238149663 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 755173.4644584443, + 96300.87116130441 + ], + "y": [ + 480229.27434392227, + -185637.3755433982 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -476509.16832876677, + 97788.7651245566 + ], + "y": [ + -696677.5803865421, + -187524.54517428228 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -476509.16832876677, + 97368.18786729996 + ], + "y": [ + -696677.5803865421, + -187761.64483234545 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -476509.16832876677, + 97615.97056569872 + ], + "y": [ + -696677.5803865421, + -187366.18291352072 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -476509.16832876677, + 97749.77214743374 + ], + "y": [ + -696677.5803865421, + -187529.40680193529 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -476509.16832876677, + 97737.47168433828 + ], + "y": [ + -696677.5803865421, + -187454.64105987392 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 287186.1271102667, + 95667.97156819428 + ], + "y": [ + 293712.9911647245, + -184666.37763325783 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 287186.1271102667, + 96281.8187118494 + ], + "y": [ + 293712.9911647245, + -185185.18619115572 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 287186.1271102667, + 96004.06807647034 + ], + "y": [ + 293712.9911647245, + -185160.1993215984 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 287186.1271102667, + 96786.33551603762 + ], + "y": [ + 293712.9911647245, + -186199.38823877013 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -561334.5561021474, + 97878.18936700777 + ], + "y": [ + 387741.5291431936, + -186691.95573974657 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -561334.5561021474, + 97384.85502032931 + ], + "y": [ + 387741.5291431936, + -186109.56426562366 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -561334.5561021474, + 98088.69457083048 + ], + "y": [ + 387741.5291431936, + -186418.54900034756 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -561334.5561021474, + 97790.18756915494 + ], + "y": [ + 387741.5291431936, + -186324.3395864327 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 485523.02644619404, + 97334.69528656456 + ], + "y": [ + -232458.25080596138, + -187248.01430917686 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 485523.02644619404, + 97343.70893048414 + ], + "y": [ + -232458.25080596138, + -187466.71062113094 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 485523.02644619404, + 98022.64385800273 + ], + "y": [ + -232458.25080596138, + -188115.28176793884 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 485523.02644619404, + 97909.08890877801 + ], + "y": [ + -232458.25080596138, + -187716.48506167036 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 485523.02644619404, + 96735.91203018947 + ], + "y": [ + -232458.25080596138, + -186790.41009242184 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 485523.02644619404, + 97379.30529940335 + ], + "y": [ + -232458.25080596138, + -188144.50874112692 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 485523.02644619404, + 97912.68866754905 + ], + "y": [ + -232458.25080596138, + -187644.81497540837 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 485523.02644619404, + 97483.5508578201 + ], + "y": [ + -232458.25080596138, + -187452.13970792587 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 485523.02644619404, + 97453.80616460227 + ], + "y": [ + -232458.25080596138, + -187779.38447152777 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 485523.02644619404, + 97390.56459064402 + ], + "y": [ + -232458.25080596138, + -187503.58157137837 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 485523.02644619404, + 97854.95892464767 + ], + "y": [ + -232458.25080596138, + -187819.7552003765 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 485523.02644619404, + 98229.18483310309 + ], + "y": [ + -232458.25080596138, + -187646.46474410285 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 485523.02644619404, + 97689.45585714692 + ], + "y": [ + -232458.25080596138, + -187727.83570354496 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 485523.02644619404, + 96459.9064706218 + ], + "y": [ + -232458.25080596138, + -187950.17000928946 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97368.18786729996 + ], + "y": [ + -387304.96830664296, + -187761.64483234545 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 98220.8617121839 + ], + "y": [ + -387304.96830664296, + -187918.25825739285 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97743.37633435942 + ], + "y": [ + -387304.96830664296, + -187673.30496193952 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97896.16988465277 + ], + "y": [ + -387304.96830664296, + -188059.71110303834 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97276.66123026267 + ], + "y": [ + -387304.96830664296, + -188071.01532488095 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97720.29522867472 + ], + "y": [ + -387304.96830664296, + -188007.70634351147 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97788.7651245566 + ], + "y": [ + -387304.96830664296, + -187524.54517428228 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97988.47049740942 + ], + "y": [ + -387304.96830664296, + -188127.41684105122 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 96786.33551603762 + ], + "y": [ + -387304.96830664296, + -186199.38823877013 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97334.69528656456 + ], + "y": [ + -387304.96830664296, + -187248.01430917686 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 98169.99665670788 + ], + "y": [ + -387304.96830664296, + -188138.2687240919 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97706.1575554865 + ], + "y": [ + -387304.96830664296, + -187963.5766486151 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97314.87265253808 + ], + "y": [ + -387304.96830664296, + -188544.97753253547 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97929.82001151697 + ], + "y": [ + -387304.96830664296, + -187850.79133717477 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97400.16397729573 + ], + "y": [ + -387304.96830664296, + -187256.5867709403 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97928.27341274354 + ], + "y": [ + -387304.96830664296, + -188029.4838038799 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97615.97056569872 + ], + "y": [ + -387304.96830664296, + -187366.18291352072 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97923.16505107327 + ], + "y": [ + -387304.96830664296, + -187510.56934074408 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97607.80752654132 + ], + "y": [ + -387304.96830664296, + -187927.5772533455 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97786.29869250092 + ], + "y": [ + -387304.96830664296, + -188053.78221453892 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97805.14139405916 + ], + "y": [ + -387304.96830664296, + -187985.91644521983 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 98093.39526957169 + ], + "y": [ + -387304.96830664296, + -188319.77932730978 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97448.93124443709 + ], + "y": [ + -387304.96830664296, + -188058.86903379706 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97659.20648661858 + ], + "y": [ + -387304.96830664296, + -187950.90711760413 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97773.13707838414 + ], + "y": [ + -387304.96830664296, + -188156.86956179672 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97290.81332207196 + ], + "y": [ + -387304.96830664296, + -188229.6880717756 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97691.44923546405 + ], + "y": [ + -387304.96830664296, + -187953.60593885268 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97536.70985088356 + ], + "y": [ + -387304.96830664296, + -187135.60577403157 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 98040.70809859729 + ], + "y": [ + -387304.96830664296, + -188484.82353855815 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97682.17810885303 + ], + "y": [ + -387304.96830664296, + -188095.58751833517 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97902.9875639131 + ], + "y": [ + -387304.96830664296, + -187872.1074932044 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 98103.51583993803 + ], + "y": [ + -387304.96830664296, + -187955.31108521658 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97737.47168433828 + ], + "y": [ + -387304.96830664296, + -187454.64105987392 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97433.16878255778 + ], + "y": [ + -387304.96830664296, + -188110.34340208996 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 98011.69742537098 + ], + "y": [ + -387304.96830664296, + -188020.26106810436 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97956.78235187841 + ], + "y": [ + -387304.96830664296, + -188084.40086565504 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97712.75424892707 + ], + "y": [ + -387304.96830664296, + -188071.6303022562 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -374210.50593961857, + 97337.3673240496 + ], + "y": [ + -387304.96830664296, + -188480.56911294378 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 712593.3587444853, + 96357.32745947987 + ], + "y": [ + 2464.0321624218586, + -189671.69440695026 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 712593.3587444853, + 96262.42166171632 + ], + "y": [ + 2464.0321624218586, + -189769.90898797516 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 712593.3587444853, + 95826.03997621946 + ], + "y": [ + 2464.0321624218586, + -190284.9707253069 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -482613.4945723788, + 98066.1726574899 + ], + "y": [ + -546694.4807160796, + -188031.62889293503 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -482613.4945723788, + 97701.3804478227 + ], + "y": [ + -546694.4807160796, + -186743.00019037828 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -482613.4945723788, + 98084.85055027793 + ], + "y": [ + -546694.4807160796, + -188003.55552109788 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -482613.4945723788, + 97165.59160948182 + ], + "y": [ + -546694.4807160796, + -188363.56661918454 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -452038.74419801694, + 97497.40137546581 + ], + "y": [ + -18247.514801625897, + -187538.8698057885 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -452038.74419801694, + 97476.84212265511 + ], + "y": [ + -18247.514801625897, + -187578.7945424208 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -452038.74419801694, + 97172.85679925286 + ], + "y": [ + -18247.514801625897, + -187904.2446480533 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -452038.74419801694, + 97585.2552421273 + ], + "y": [ + -18247.514801625897, + -187852.2157456399 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -452038.74419801694, + 98255.45010528169 + ], + "y": [ + -18247.514801625897, + -188090.9736323963 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -452038.74419801694, + 97482.29772041427 + ], + "y": [ + -18247.514801625897, + -187746.85639765018 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -452038.74419801694, + 97230.27471512488 + ], + "y": [ + -18247.514801625897, + -187707.84632557898 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -452038.74419801694, + 97465.08902518246 + ], + "y": [ + -18247.514801625897, + -187515.5351218408 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -452038.74419801694, + 98030.3922687115 + ], + "y": [ + -18247.514801625897, + -187274.8884360902 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -452038.74419801694, + 98164.50513674611 + ], + "y": [ + -18247.514801625897, + -187605.70324073057 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -452038.74419801694, + 98102.01760177093 + ], + "y": [ + -18247.514801625897, + -187987.25877007708 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -452038.74419801694, + 98040.98610521741 + ], + "y": [ + -18247.514801625897, + -188174.96094340537 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -452038.74419801694, + 97300.96068285858 + ], + "y": [ + -18247.514801625897, + -186969.98767638186 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -452038.74419801694, + 97299.95816584109 + ], + "y": [ + -18247.514801625897, + -187098.08472081405 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -452038.74419801694, + 96893.86441244776 + ], + "y": [ + -18247.514801625897, + -187115.92005878876 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -535310.6977113642, + 98201.32974009505 + ], + "y": [ + 194804.46059409328, + -188346.87533387216 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 381373.32463077886, + 98883.68742329624 + ], + "y": [ + 772791.1447093579, + -187903.51839239706 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 381373.32463077886, + 98667.49767503393 + ], + "y": [ + 772791.1447093579, + -188043.9321563204 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 381373.32463077886, + 97488.73626458432 + ], + "y": [ + 772791.1447093579, + -188112.71027176845 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -974324.3390105796, + 97162.69508453069 + ], + "y": [ + 235715.32964076058, + -188349.65680053786 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 806644.7911977044, + 96010.7115980084 + ], + "y": [ + -491094.78861466685, + -188550.03414205718 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 127035.20726680085, + 95771.1095203462 + ], + "y": [ + 4389.73784561969, + -188189.81482384 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 127035.20726680085, + 95763.40443589797 + ], + "y": [ + 4389.73784561969, + -188215.09477527425 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 127035.20726680085, + 95244.0575474311 + ], + "y": [ + 4389.73784561969, + -188800.80256482895 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -613747.5981969669, + 96872.15210964113 + ], + "y": [ + 833497.7104795736, + -189449.1232264199 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -613747.5981969669, + 96379.22200820879 + ], + "y": [ + 833497.7104795736, + -189768.43355961813 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -613747.5981969669, + 96906.24888628504 + ], + "y": [ + 833497.7104795736, + -188740.94405652286 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -613747.5981969669, + 96854.63537850163 + ], + "y": [ + 833497.7104795736, + -189567.65591494428 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -613747.5981969669, + 97264.45498533218 + ], + "y": [ + 833497.7104795736, + -188309.81027713025 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -613747.5981969669, + 98010.49563338193 + ], + "y": [ + 833497.7104795736, + -188392.79233416848 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -613747.5981969669, + 97612.43902974202 + ], + "y": [ + 833497.7104795736, + -189319.79863515618 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -825092.242771966, + 97623.61756268641 + ], + "y": [ + 408212.97885851806, + -189378.6089809849 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -825092.242771966, + 97499.04801278567 + ], + "y": [ + 408212.97885851806, + -189178.14899455837 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -825092.242771966, + 97608.46277176453 + ], + "y": [ + 408212.97885851806, + -188386.42729721224 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -825092.242771966, + 97167.39841072715 + ], + "y": [ + 408212.97885851806, + -188088.5917691664 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -825092.242771966, + 95934.14872105536 + ], + "y": [ + 408212.97885851806, + -189445.19176040665 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -825092.242771966, + 97455.35219073194 + ], + "y": [ + 408212.97885851806, + -187087.48998708234 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 820212.0126397252, + 97335.19348886795 + ], + "y": [ + 49207.25516157076, + -188826.42779028194 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -911815.111465116, + 98225.34302642361 + ], + "y": [ + -33771.355710310316, + -188553.87487120138 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -911815.111465116, + 98229.77888928792 + ], + "y": [ + -33771.355710310316, + -187941.06540326262 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -911815.111465116, + 98675.12932763455 + ], + "y": [ + -33771.355710310316, + -186336.77161351635 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 489670.6800430286, + 97482.53862767345 + ], + "y": [ + 496911.4186762655, + -189771.93099297164 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 489670.6800430286, + 97276.46828922024 + ], + "y": [ + 496911.4186762655, + -188529.93400312582 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 489670.6800430286, + 97499.88151314572 + ], + "y": [ + 496911.4186762655, + -189358.06753687156 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 959231.5187373273, + 95737.0210501743 + ], + "y": [ + 154504.9866469945, + -187993.35866484616 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 959231.5187373273, + 96247.5730261708 + ], + "y": [ + 154504.9866469945, + -187229.13331112568 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -927929.0330374057, + 96991.17451689237 + ], + "y": [ + -912578.2146259764, + -187164.0688469574 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -927929.0330374057, + 97052.70205106144 + ], + "y": [ + -912578.2146259764, + -186825.88912431858 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 588029.7165107527, + 96299.26984037684 + ], + "y": [ + -452817.84163980297, + -188609.42242236514 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 588029.7165107527, + 96500.32458861038 + ], + "y": [ + -452817.84163980297, + -188787.1864357604 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 588029.7165107527, + 96778.83528846483 + ], + "y": [ + -452817.84163980297, + -188843.1765843312 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 588029.7165107527, + 96483.80491367223 + ], + "y": [ + -452817.84163980297, + -188754.528514879 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -426997.16687418986, + 97878.18936700777 + ], + "y": [ + 887978.6196577046, + -186691.95573974657 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -426997.16687418986, + 98088.69457083048 + ], + "y": [ + 887978.6196577046, + -186418.54900034756 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -426997.16687418986, + 102537.64337792993 + ], + "y": [ + 887978.6196577046, + -184684.6304903929 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -426997.16687418986, + 97336.72314742803 + ], + "y": [ + 887978.6196577046, + -186003.21438929535 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -426997.16687418986, + 97384.85502032931 + ], + "y": [ + 887978.6196577046, + -186109.56426562366 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -426997.16687418986, + 97739.50461726454 + ], + "y": [ + 887978.6196577046, + -186120.97182205616 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -426997.16687418986, + 97790.18756915494 + ], + "y": [ + 887978.6196577046, + -186324.3395864327 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -426997.16687418986, + 98423.75905911079 + ], + "y": [ + 887978.6196577046, + -186722.7974234636 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 712085.8290284196, + 100136.85344995526 + ], + "y": [ + -661416.3336804246, + -188094.74107414478 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 712085.8290284196, + 99551.68465587133 + ], + "y": [ + -661416.3336804246, + -188088.6155039975 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 712085.8290284196, + 100437.39062185503 + ], + "y": [ + -661416.3336804246, + -188060.38234672905 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 712085.8290284196, + 99551.98543303015 + ], + "y": [ + -661416.3336804246, + -188067.26794690712 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 712085.8290284196, + 99562.25712118535 + ], + "y": [ + -661416.3336804246, + -187621.21847052537 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 435772.6139411109, + 99359.06703624275 + ], + "y": [ + -428227.62305677007, + -188157.58246492682 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -440084.7440775184, + 98574.50972172228 + ], + "y": [ + -98018.59328603357, + -188516.84498886167 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -440084.7440775184, + 98667.49767503393 + ], + "y": [ + -98018.59328603357, + -188043.9321563204 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -440084.7440775184, + 98883.68742329624 + ], + "y": [ + -98018.59328603357, + -187903.51839239706 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -440084.7440775184, + 98538.96596090084 + ], + "y": [ + -98018.59328603357, + -187915.12744256484 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -440084.7440775184, + 99762.90131115422 + ], + "y": [ + -98018.59328603357, + -188443.7578148925 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 710759.9155269597, + 98977.8256826855 + ], + "y": [ + 661880.6475154626, + -188116.10771085072 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 710759.9155269597, + 97325.59157415244 + ], + "y": [ + 661880.6475154626, + -187264.47609357847 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -215550.8344180117, + 100141.87894949828 + ], + "y": [ + -117998.84324321552, + -188176.21031836848 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -215550.8344180117, + 99845.35414701192 + ], + "y": [ + -117998.84324321552, + -188170.57903762278 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 891032.4039561477, + 98971.68304848456 + ], + "y": [ + -483940.39773233776, + -188294.6644996429 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 790332.191399174, + 99673.93123472382 + ], + "y": [ + 945279.7207307717, + -188036.63953174325 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 790332.191399174, + 99291.99320881635 + ], + "y": [ + 945279.7207307717, + -188101.5543653428 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 963066.2603491714, + 99276.35931151945 + ], + "y": [ + 493187.76874040184, + -188248.6764013949 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -685442.0011943391, + 99120.91791864607 + ], + "y": [ + -998343.7313215322, + -188319.83415129757 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 57957.366801817625, + 98129.8335044742 + ], + "y": [ + 213652.26322442287, + -187308.64998441696 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 57957.366801817625, + 99397.55134035554 + ], + "y": [ + 213652.26322442287, + -188097.50692052435 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -730374.7417052435, + 97698.15736668535 + ], + "y": [ + 392420.49640112574, + -186839.17366214117 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -47892.04997571828, + 97598.41715003968 + ], + "y": [ + -399813.58192147256, + -187109.55145493208 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -47892.04997571828, + 97965.90473223805 + ], + "y": [ + -399813.58192147256, + -187204.27240844848 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -47892.04997571828, + 98426.11814680099 + ], + "y": [ + -399813.58192147256, + -187291.09671769937 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 610875.7945680574, + 97740.36484145897 + ], + "y": [ + 847862.16445857, + -187808.73897039745 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 632616.1117033211, + 99184.60882109228 + ], + "y": [ + 252398.00249854306, + -188134.4762723594 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 632616.1117033211, + 99142.08519452307 + ], + "y": [ + 252398.00249854306, + -188272.49029985358 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 632616.1117033211, + 99316.2243501031 + ], + "y": [ + 252398.00249854306, + -188206.77019901376 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -105937.42716478017, + 98622.91972235353 + ], + "y": [ + -122681.34997729407, + -188508.96860365788 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -105937.42716478017, + 98628.35943001318 + ], + "y": [ + -122681.34997729407, + -188262.8988252888 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 993726.2469277983, + 97052.70205106144 + ], + "y": [ + -220228.04861147137, + -186825.88912431858 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 993726.2469277983, + 96991.17451689237 + ], + "y": [ + -220228.04861147137, + -187164.0688469574 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 669797.903895613, + 96995.58808119217 + ], + "y": [ + 366595.0386351318, + -187569.11179548127 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 669797.903895613, + 96874.32517213062 + ], + "y": [ + 366595.0386351318, + -186292.02017205243 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 669797.903895613, + 96984.11595684849 + ], + "y": [ + 366595.0386351318, + -187472.02889830602 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 669797.903895613, + 97109.16179890749 + ], + "y": [ + 366595.0386351318, + -187099.9147383517 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 669797.903895613, + 97136.19437689305 + ], + "y": [ + 366595.0386351318, + -186900.76235636437 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -610474.3031996711, + 97491.9260662067 + ], + "y": [ + 478391.1169981494, + -188027.44881588852 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -359953.17372292135, + 96341.35508815081 + ], + "y": [ + -477039.16144049476, + -185937.20459336432 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 800919.0893525608, + 95591.49480913648 + ], + "y": [ + -66359.28264260315, + -188680.97177115767 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 800919.0893525608, + 96362.21507081333 + ], + "y": [ + -66359.28264260315, + -188432.67762655424 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 800919.0893525608, + 96805.5627237504 + ], + "y": [ + -66359.28264260315, + -188121.5471579039 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 800919.0893525608, + 96743.02101349403 + ], + "y": [ + -66359.28264260315, + -187854.13914095613 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 288707.8838759225, + 98077.79681744472 + ], + "y": [ + -666477.8792067101, + -187785.39966082262 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 288707.8838759225, + 98078.46725482005 + ], + "y": [ + -666477.8792067101, + -188432.80628645205 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 288707.8838759225, + 97340.80449807804 + ], + "y": [ + -666477.8792067101, + -187926.7782463939 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 288707.8838759225, + 98528.28228471124 + ], + "y": [ + -666477.8792067101, + -188158.79572465117 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 288707.8838759225, + 97488.0322813689 + ], + "y": [ + -666477.8792067101, + -189762.7876085155 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -788593.7694426945, + 96435.9592073502 + ], + "y": [ + 927578.3245770739, + -189266.35842376057 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -699791.7379094269, + 97411.333447029 + ], + "y": [ + 223346.97203642075, + -186732.12278519588 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -576254.7272775868, + 97430.46651931974 + ], + "y": [ + 417199.34494340996, + -188614.55061231283 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -576254.7272775868, + 97362.69630546733 + ], + "y": [ + 417199.34494340996, + -188647.95316923055 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -576254.7272775868, + 97147.4098591697 + ], + "y": [ + 417199.34494340996, + -187592.5524397363 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -576254.7272775868, + 96935.63520473371 + ], + "y": [ + 417199.34494340996, + -188932.9501046265 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -576254.7272775868, + 97289.22073553668 + ], + "y": [ + 417199.34494340996, + -188606.43169921683 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -576254.7272775868, + 97850.12598200802 + ], + "y": [ + 417199.34494340996, + -188170.21924476055 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -576254.7272775868, + 97597.36616865019 + ], + "y": [ + 417199.34494340996, + -188549.55255864532 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 962442.7194031442, + 96412.37649005053 + ], + "y": [ + -588673.8683068216, + -187962.6323277363 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 962442.7194031442, + 97375.63672739729 + ], + "y": [ + -588673.8683068216, + -187191.96052360526 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 193663.74090908578, + 96830.34367432375 + ], + "y": [ + -579415.6741968989, + -186920.5220397891 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 193663.74090908578, + 96727.0857416317 + ], + "y": [ + -579415.6741968989, + -186786.62616005604 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 193663.74090908578, + 96968.7576874346 + ], + "y": [ + -579415.6741968989, + -186385.05781979268 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 97743.37633435942 + ], + "y": [ + -326642.1044466499, + -187673.30496193952 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 97788.7651245566 + ], + "y": [ + -326642.1044466499, + -187524.54517428228 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 97706.1575554865 + ], + "y": [ + -326642.1044466499, + -187963.5766486151 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 97773.13707838414 + ], + "y": [ + -326642.1044466499, + -188156.86956179672 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 98028.98765417963 + ], + "y": [ + -326642.1044466499, + -188061.28832562154 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 97254.19037202669 + ], + "y": [ + -326642.1044466499, + -187390.1456922822 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 98343.20918176853 + ], + "y": [ + -326642.1044466499, + -188062.07603085358 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 97314.87265253808 + ], + "y": [ + -326642.1044466499, + -188544.97753253547 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 97448.93124443709 + ], + "y": [ + -326642.1044466499, + -188058.86903379706 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 97720.29522867472 + ], + "y": [ + -326642.1044466499, + -188007.70634351147 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 98178.54170307206 + ], + "y": [ + -326642.1044466499, + -188037.6869183598 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 98199.86102071151 + ], + "y": [ + -326642.1044466499, + -188212.0229575658 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 97368.18786729996 + ], + "y": [ + -326642.1044466499, + -187761.64483234545 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 97400.16397729573 + ], + "y": [ + -326642.1044466499, + -187256.5867709403 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 97928.27341274354 + ], + "y": [ + -326642.1044466499, + -188029.4838038799 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 98220.8617121839 + ], + "y": [ + -326642.1044466499, + -187918.25825739285 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 97691.44923546405 + ], + "y": [ + -326642.1044466499, + -187953.60593885268 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 97744.85805549823 + ], + "y": [ + -326642.1044466499, + -187930.06229443732 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 98056.94048479544 + ], + "y": [ + -326642.1044466499, + -188090.36866231312 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 97615.97056569872 + ], + "y": [ + -326642.1044466499, + -187366.18291352072 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 97951.56325025932 + ], + "y": [ + -326642.1044466499, + -188036.00538210757 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 98093.39526957169 + ], + "y": [ + -326642.1044466499, + -188319.77932730978 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 97888.06964139262 + ], + "y": [ + -326642.1044466499, + -188133.31477841723 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 97749.77214743374 + ], + "y": [ + -326642.1044466499, + -187529.40680193529 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 97737.47168433828 + ], + "y": [ + -326642.1044466499, + -187454.64105987392 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 98115.52004533702 + ], + "y": [ + -326642.1044466499, + -188173.70843883988 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 192898.7761189127, + 97337.3673240496 + ], + "y": [ + -326642.1044466499, + -188480.56911294378 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -636627.180160112, + 99023.4635169911 + ], + "y": [ + -650987.8956618933, + -187844.47640926004 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -636627.180160112, + 97788.7651245566 + ], + "y": [ + -650987.8956618933, + -187524.54517428228 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -636627.180160112, + 99401.61250638886 + ], + "y": [ + -650987.8956618933, + -187872.30401330232 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -636627.180160112, + 97749.77214743374 + ], + "y": [ + -650987.8956618933, + -187529.40680193529 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 823874.0941544147, + 97878.18936700777 + ], + "y": [ + 764290.832324826, + -186691.95573974657 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 823874.0941544147, + 97384.85502032931 + ], + "y": [ + 764290.832324826, + -186109.56426562366 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 823874.0941544147, + 98088.69457083048 + ], + "y": [ + 764290.832324826, + -186418.54900034756 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 823874.0941544147, + 97790.18756915494 + ], + "y": [ + 764290.832324826, + -186324.3395864327 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 787091.7877283216, + 97878.18936700777 + ], + "y": [ + -965373.510477915, + -186691.95573974657 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 787091.7877283216, + 97384.85502032931 + ], + "y": [ + -965373.510477915, + -186109.56426562366 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 787091.7877283216, + 98088.69457083048 + ], + "y": [ + -965373.510477915, + -186418.54900034756 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 787091.7877283216, + 97790.18756915494 + ], + "y": [ + -965373.510477915, + -186324.3395864327 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -678923.3564325646, + 98987.744183523 + ], + "y": [ + 7794.401001574247, + -187796.24083019167 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -678923.3564325646, + 99579.00966292991 + ], + "y": [ + 7794.401001574247, + -187732.98575521674 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -678923.3564325646, + 98635.38198452107 + ], + "y": [ + 7794.401001574247, + -187983.71489758827 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -536139.8345770207, + 100098.40192877872 + ], + "y": [ + -692135.5560318063, + -188083.6875223691 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 483038.4019771743, + 98017.95961808166 + ], + "y": [ + 862693.8081331758, + -187897.73274734168 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 483038.4019771743, + 99022.78768529206 + ], + "y": [ + 862693.8081331758, + -188059.30925306716 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -615542.8321597268, + 96435.29713124092 + ], + "y": [ + -737450.0551246805, + -189142.09064355088 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -615542.8321597268, + 96392.03219267243 + ], + "y": [ + -737450.0551246805, + -188270.16098356986 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -615542.8321597268, + 96931.12324851674 + ], + "y": [ + -737450.0551246805, + -188583.01081795827 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -615542.8321597268, + 95651.87929649846 + ], + "y": [ + -737450.0551246805, + -189066.13649801663 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -615542.8321597268, + 95594.04154313843 + ], + "y": [ + -737450.0551246805, + -188752.9247450727 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -615542.8321597268, + 96463.50079272543 + ], + "y": [ + -737450.0551246805, + -187487.7635363833 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -615542.8321597268, + 96120.0822298696 + ], + "y": [ + -737450.0551246805, + -189713.64541984547 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -615542.8321597268, + 96240.44430881485 + ], + "y": [ + -737450.0551246805, + -189555.82412272718 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -615542.8321597268, + 96101.99869734746 + ], + "y": [ + -737450.0551246805, + -189852.59554859076 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -615542.8321597268, + 96315.36819369205 + ], + "y": [ + -737450.0551246805, + -189218.8087403817 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -615542.8321597268, + 95937.25203342551 + ], + "y": [ + -737450.0551246805, + -190167.76777641778 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -615542.8321597268, + 96235.33414286007 + ], + "y": [ + -737450.0551246805, + -189645.6152674434 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -615542.8321597268, + 96530.33748860421 + ], + "y": [ + -737450.0551246805, + -188532.9554546275 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -615542.8321597268, + 96182.08723044166 + ], + "y": [ + -737450.0551246805, + -189523.58352465904 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -615542.8321597268, + 96258.26403190757 + ], + "y": [ + -737450.0551246805, + -189343.14144035138 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -425154.8175794468, + 98709.8651975024 + ], + "y": [ + -475462.72028761625, + -188235.48072958956 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -425154.8175794468, + 99109.15521458666 + ], + "y": [ + -475462.72028761625, + -188180.02447286362 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 389129.0935796654, + 100640.4787093486 + ], + "y": [ + -878946.7812968763, + -188078.15933603563 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 389129.0935796654, + 100235.20982182995 + ], + "y": [ + -878946.7812968763, + -187990.69685232927 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -622531.8936491543, + 102213.573130387 + ], + "y": [ + -960923.7018518934, + -188502.1043309098 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -622531.8936491543, + 100665.20298807592 + ], + "y": [ + -960923.7018518934, + -188206.01901300566 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -622531.8936491543, + 101380.72545035236 + ], + "y": [ + -960923.7018518934, + -188368.05619089317 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -942230.4813874803, + 99856.27897972005 + ], + "y": [ + -309835.924111922, + -187629.39631769145 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -942230.4813874803, + 99786.36456658994 + ], + "y": [ + -309835.924111922, + -187643.6924245978 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -942230.4813874803, + 99683.00699846164 + ], + "y": [ + -309835.924111922, + -187638.51851489613 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -702245.1002356531, + 97369.40146033755 + ], + "y": [ + -581931.2077126874, + -188302.59803287973 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 167597.5150278466, + 98812.91818171015 + ], + "y": [ + -193151.43113910628, + -187804.318709099 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 426236.00695759256, + 97843.27029212235 + ], + "y": [ + -320810.1968006805, + -188499.9137700682 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 426236.00695759256, + 97167.39841072715 + ], + "y": [ + -320810.1968006805, + -188088.5917691664 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 426236.00695759256, + 97743.58448295263 + ], + "y": [ + -320810.1968006805, + -187984.06459012086 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 426236.00695759256, + 97449.0985514171 + ], + "y": [ + -320810.1968006805, + -188713.3588507996 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 426236.00695759256, + 97728.72992702796 + ], + "y": [ + -320810.1968006805, + -188417.0795439115 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 102710.81065561782, + 98904.72563619397 + ], + "y": [ + 735584.2491990248, + -188684.44500197342 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 102710.81065561782, + 98942.09530630929 + ], + "y": [ + 735584.2491990248, + -188616.47166411072 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 102710.81065561782, + 98891.2416273708 + ], + "y": [ + 735584.2491990248, + -189238.12878373484 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 772772.6984495806, + 97368.18786729996 + ], + "y": [ + 571406.0633091565, + -187761.64483234545 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 772772.6984495806, + 97400.16397729573 + ], + "y": [ + 571406.0633091565, + -187256.5867709403 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 772772.6984495806, + 97615.97056569872 + ], + "y": [ + 571406.0633091565, + -187366.18291352072 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 772772.6984495806, + 97923.16505107327 + ], + "y": [ + 571406.0633091565, + -187510.56934074408 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 772772.6984495806, + 97788.7651245566 + ], + "y": [ + 571406.0633091565, + -187524.54517428228 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 772772.6984495806, + 97749.77214743374 + ], + "y": [ + 571406.0633091565, + -187529.40680193529 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 772772.6984495806, + 97737.47168433828 + ], + "y": [ + 571406.0633091565, + -187454.64105987392 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 966475.7136151139, + 98417.88816057792 + ], + "y": [ + -31191.862881997156, + -187745.42964825404 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 787936.2857831245, + 98932.31091884513 + ], + "y": [ + -482301.2879788475, + -187594.8777657927 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 787936.2857831245, + 98926.20655583622 + ], + "y": [ + -482301.2879788475, + -188109.5947916895 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 787936.2857831245, + 98881.20399257346 + ], + "y": [ + -482301.2879788475, + -188135.7951117508 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 787936.2857831245, + 98873.6590998779 + ], + "y": [ + -482301.2879788475, + -188126.67429510137 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 787936.2857831245, + 98776.08147395353 + ], + "y": [ + -482301.2879788475, + -188068.89540782082 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 787936.2857831245, + 98916.08043593282 + ], + "y": [ + -482301.2879788475, + -188138.17806449422 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 787936.2857831245, + 98775.64297666437 + ], + "y": [ + -482301.2879788475, + -188113.8147030654 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 787936.2857831245, + 98833.5386160878 + ], + "y": [ + -482301.2879788475, + -188119.49823623613 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 787936.2857831245, + 98779.4951496633 + ], + "y": [ + -482301.2879788475, + -188123.9780570342 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 787936.2857831245, + 98769.87019965112 + ], + "y": [ + -482301.2879788475, + -188121.51859750494 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 787936.2857831245, + 98763.69912444155 + ], + "y": [ + -482301.2879788475, + -188082.81454332572 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 787936.2857831245, + 98715.38337956829 + ], + "y": [ + -482301.2879788475, + -188023.85098966694 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 787936.2857831245, + 98838.01226486915 + ], + "y": [ + -482301.2879788475, + -188038.4334288893 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 787936.2857831245, + 98731.25835265023 + ], + "y": [ + -482301.2879788475, + -188097.6602407291 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 787936.2857831245, + 98794.9356782363 + ], + "y": [ + -482301.2879788475, + -188124.65543545736 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 787936.2857831245, + 98875.12446310604 + ], + "y": [ + -482301.2879788475, + -188079.8329504583 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 787936.2857831245, + 98845.6917714939 + ], + "y": [ + -482301.2879788475, + -188129.3743830729 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 417358.92862643854, + 96813.45598094136 + ], + "y": [ + -273644.2666449306, + -186085.13248614842 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 417358.92862643854, + 96835.92874774396 + ], + "y": [ + -273644.2666449306, + -186068.28536481576 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 417358.92862643854, + 97299.95816584109 + ], + "y": [ + -273644.2666449306, + -187098.08472081405 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 417358.92862643854, + 97300.96068285858 + ], + "y": [ + -273644.2666449306, + -186969.98767638186 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 417358.92862643854, + 96172.09176973494 + ], + "y": [ + -273644.2666449306, + -185427.49168366197 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 530081.4122312207, + 97988.12714007127 + ], + "y": [ + -564572.1511337791, + -187642.84655158204 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 530081.4122312207, + 98185.14683392025 + ], + "y": [ + -564572.1511337791, + -188287.79217814526 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 530081.4122312207, + 97299.95816584109 + ], + "y": [ + -564572.1511337791, + -187098.08472081405 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + 530081.4122312207, + 97300.96068285858 + ], + "y": [ + -564572.1511337791, + -186969.98767638186 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -761342.1567954683, + 98502.26373555082 + ], + "y": [ + -879096.8240374251, + -188549.32629648288 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -761342.1567954683, + 98563.51548863579 + ], + "y": [ + -879096.8240374251, + -188250.077786393 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -290976.6678246506, + 98515.43976060345 + ], + "y": [ + 379673.6622571082, + -188161.7726015361 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -290976.6678246506, + 96994.13649214181 + ], + "y": [ + 379673.6622571082, + -187116.7595416007 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -532125.9656384134, + 98899.25788886541 + ], + "y": [ + 793099.5767054925, + -187821.31284373655 + ] + }, + { + "line": { + "color": "blue" + }, + "mode": "lines", + "name": "Line DataFrame 1", + "type": "scatter", + "x": [ + -532125.9656384134, + 98911.1768536842 + ], + "y": [ + 793099.5767054925, + -187704.11156844525 + ] + } + ], + "layout": { + "showlegend": true, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Overlayed Scatter Plot" + }, + "xaxis": { + "title": { + "text": "X-axis Label" + } + }, + "yaxis": { + "title": { + "text": "Y-axis Label" + } + } + } + } + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import plotly.express as px\n", + "import plotly.graph_objects as go\n", + "\n", + "# Create your dataframes (replace df1, df2, df3 with your actual data)\n", + "df1 = company_df\n", + "df2 = person_df\n", + "df3 = person_relations_df\n", + "\n", + "# Create scatter plots for each dataframe\n", + "fig = go.Figure()\n", + "\n", + "# Scatter plot for df1\n", + "fig.add_trace(go.Scatter(\n", + " x=df1['x'],\n", + " y=df1['y'],\n", + " mode='markers',\n", + " name='DataFrame 1',\n", + " hovertext=df1[\"name\"]\n", + "))\n", + "\n", + "# Scatter plot for df2\n", + "fig.add_trace(go.Scatter(\n", + " x=df2['x'],\n", + " y=df2['y'],\n", + " mode='markers',\n", + " name='DataFrame 2',\n", + " hovertext=df2[\"firstname\"]\n", + "))\n", + "\n", + "# Scatter plot for df3\n", + "for i in range(len(df1)):\n", + " fig.add_trace(go.Scatter(\n", + " x=[df3['company_from_x'][i], df3['to_person_x'][i]],\n", + " y=[df3['company_from_y'][i], df3['to_person_y'][i]],\n", + " mode='lines',\n", + " name='Line DataFrame 1',\n", + " line=dict(color='blue')\n", + " ))\n", + "\n", + "# Customize the layout of the plot\n", + "fig.update_layout(\n", + " title='Overlayed Scatter Plot',\n", + " xaxis=dict(title='X-axis Label'),\n", + " yaxis=dict(title='Y-axis Label'),\n", + " showlegend=True # Show legend with dataframe names\n", + ")\n", + "\n", + "# Show the plot\n", + "fig.show()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "for i in range(len(df1)):\n", + " fig.add_trace(go.Scatter(\n", + " x=[df1['x0_column'][i], df1['x1_column'][i]],\n", + " y=[df1['y0_column'][i], df1['y1_column'][i]],\n", + " mode='lines',\n", + " name='Line DataFrame 1',\n", + " line=dict(color='blue')\n", + " ))" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "id": "aba6f3786cd18e89", + "metadata": { + "ExecuteTime": { + "end_time": "2023-10-07T13:41:53.657186500Z", + "start_time": "2023-10-07T13:41:53.497425100Z" + }, + "collapsed": false + }, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "hoverinfo": "none", + "line": { + "color": "#888", + "width": 0.5 + }, + "mode": "lines", + "type": "scatter", + "x": [ + 77282.61765229338, + -504679.8049857015, + null, + 482919.71377339005, + 797890.0566661789, + null, + 320129.40833918104, + -454102.586298186, + null, + -600937.0920693981, + 876253.9237453884, + null, + 360724.37328794546, + -188072.50905787342, + null, + 197973.49488166915, + 985082.8450351985, + null, + 458352.946828549, + 663904.7617724848, + null, + -190477.9447491629, + -203858.51979069636, + null, + 56220.819532364796, + -454102.586298186, + null, + -475020.10876459733, + -982531.8952967137, + null, + 773503.3528407407, + 431602.0630810575, + null, + 32321.233344296375, + 975774.1818193704, + null, + 32321.233344296375, + 857326.5405612354, + null, + -165877.75686732464, + 860516.1611720189, + null, + 231074.82024078374, + -454102.586298186, + null, + -611806.3248940435, + -14463.351502338017, + null, + 32321.233344296375, + 235712.27042544284, + null, + 235712.27042544284, + -597264.9068567748, + null, + 431602.0630810575, + 159141.450872055, + null, + -458711.1024669723, + -588807.6533459923, + null, + 157263.60815314978, + -596759.6697357827, + null, + 159066.9874468782, + 577392.8090613643, + null, + 159066.9874468782, + 916183.0371557598, + null, + 342674.5313034989, + 370173.70037625066, + null, + 93058.14653318057, + 587577.2507856083, + null, + 792119.881503258, + 587577.2507856083, + null, + 587577.2507856083, + 677591.4524686069, + null, + 521072.90601517487, + -24691.683230473325, + null, + 554892.5945752865, + 301584.1595675015, + null, + 113379.54184456533, + -648310.0496600611, + null, + -150943.60975530808, + 83622.16583016257, + null, + 83622.16583016257, + -64795.584166803535, + null, + 227756.20584921018, + -802521.718652915, + null, + -405306.02044891764, + 506936.28230545484, + null, + 264911.4833220334, + 530081.4122312207, + null, + -625569.4912948359, + 264911.4833220334, + null, + 414860.97835098446, + -492150.0337925884, + null, + 987745.54077045, + -454102.586298186, + null, + 807729.8305085383, + -454102.586298186, + null, + 587577.2507856083, + -927929.0330374057, + null, + 287186.1271102667, + -171353.0669321337, + null, + -171353.0669321337, + 772772.6984495806, + null, + 587577.2507856083, + 993726.2469277983, + null, + -476509.16832876677, + 951883.2032729578, + null, + -699791.7379094269, + 704061.1470914854, + null, + 587577.2507856083, + 167597.5150278466, + null, + 403899.78181010886, + 292658.47368995537, + null, + 946906.6064106144, + 292658.47368995537, + null, + 951883.2032729578, + -492150.0337925884, + null, + 944314.1496489326, + -645320.261332402, + null, + 942137.0889056928, + -645320.261332402, + null, + -88739.66357379004, + -613602.9955438446, + null, + -387963.4681192348, + -471326.4887253379, + null, + -502221.2423468795, + 896594.9176006076, + null, + -625569.4912948359, + 896594.9176006076, + null, + -728121.2615781027, + -868290.3040404802, + null, + -45679.01742848979, + -462205.5848496869, + null, + 39590.950316552575, + 547554.522703148, + null, + 460032.0894692578, + -454102.586298186, + null, + -387963.4681192348, + 225969.41310828787, + null, + 109205.8892351293, + -190301.22204413003, + null, + 405209.7695122363, + 109205.8892351293, + null, + -582315.3533217438, + -66996.95100886682, + null, + -689526.4698726246, + 71904.65654530453, + null, + 71904.65654530453, + -66996.95100886682, + null, + -529690.6065362472, + -728546.1606056102, + null, + -728546.1606056102, + -271896.07094580337, + null, + -834076.6783541171, + -588655.115372228, + null, + -834076.6783541171, + -183246.98086339253, + null, + 35545.38425009501, + -859686.782273051, + null, + -332757.17185846076, + 408629.83762795135, + null, + -332757.17185846076, + -933962.716237892, + null, + 295371.4252235613, + -181390.3292990644, + null, + 295371.4252235613, + -911098.2844415642, + null, + -250006.68051605744, + -181390.3292990644, + null, + -250006.68051605744, + -911098.2844415642, + null, + -588655.115372228, + -691607.6877215977, + null, + -691607.6877215977, + -183246.98086339253, + null, + 314454.13470897754, + -691607.6877215977, + null, + 612362.2882014046, + -181390.3292990644, + null, + 612362.2882014046, + -911098.2844415642, + null, + -688198.1244644225, + -181390.3292990644, + null, + -688198.1244644225, + -911098.2844415642, + null, + 627513.0531605089, + -18287.692185093187, + null, + 823338.5231087147, + -181390.3292990644, + null, + -911098.2844415642, + 823338.5231087147, + null, + 750911.3760363817, + 644733.2242558899, + null, + -751563.4689428771, + -989885.9851187116, + null, + -751563.4689428771, + -183246.98086339253, + null, + -113679.02802626473, + -751563.4689428771, + null, + 969500.6935214978, + 526520.4578980436, + null, + 797890.0566661789, + 526520.4578980436, + null, + -213759.13286812452, + 872437.5789128591, + null, + 606747.1336211909, + 183309.3946068618, + null, + 183309.3946068618, + -5574.809952380689, + null, + -989885.9851187116, + 687404.268907857, + null, + -686538.3272101553, + -666823.288382161, + null, + -911098.2844415642, + -686538.3272101553, + null, + -131930.58197698227, + -863832.567187541, + null, + -830756.8210522116, + -863832.567187541, + null, + 466495.4269516823, + -181390.3292990644, + null, + 466495.4269516823, + -911098.2844415642, + null, + -249865.37102783157, + 177798.96221545432, + null, + -773588.2394005709, + 177798.96221545432, + null, + -181390.3292990644, + 116245.11793368476, + null, + -911098.2844415642, + 116245.11793368476, + null, + -181390.3292990644, + -134478.26459281886, + null, + -911098.2844415642, + -134478.26459281886, + null, + 254279.6946992969, + 758539.5335840486, + null, + 118341.36735152123, + 758539.5335840486, + null, + -181390.3292990644, + -972132.6558257593, + null, + -911098.2844415642, + -972132.6558257593, + null, + 524049.83397608064, + 456729.16084220127, + null, + 524049.83397608064, + -251233.1686301623, + null, + -485795.3631268366, + -459114.2883209851, + null, + -485795.3631268366, + -978545.948621703, + null, + -588655.115372228, + 403910.2770509948, + null, + -989885.9851187116, + 403910.2770509948, + null, + -906109.1085695425, + 292546.4053266724, + null, + -906109.1085695425, + 764825.2585659927, + null, + -603784.8030093274, + 292546.4053266724, + null, + -603784.8030093274, + 764825.2585659927, + null, + -294101.62692507624, + 764825.2585659927, + null, + -294101.62692507624, + 292546.4053266724, + null, + -504573.22072466405, + 292546.4053266724, + null, + -504573.22072466405, + 764825.2585659927, + null, + 763622.7483051696, + 292546.4053266724, + null, + 763622.7483051696, + 764825.2585659927, + null, + 85185.09216985381, + 292546.4053266724, + null, + 85185.09216985381, + 764825.2585659927, + null, + 937964.2752123139, + 292546.4053266724, + null, + 937964.2752123139, + 764825.2585659927, + null, + -819933.6966757734, + 292546.4053266724, + null, + -819933.6966757734, + 764825.2585659927, + null, + 170270.17455860748, + -454102.586298186, + null, + -485795.3631268366, + -937535.5504195595, + null, + -560661.2367481291, + 764825.2585659927, + null, + -560661.2367481291, + 292546.4053266724, + null, + -187084.41612170535, + 764825.2585659927, + null, + 662360.6947379261, + 764825.2585659927, + null, + -576159.619036896, + 292546.4053266724, + null, + -576159.619036896, + 764825.2585659927, + null, + -519623.84609460743, + 292546.4053266724, + null, + -519623.84609460743, + 764825.2585659927, + null, + 900779.2194563157, + 292546.4053266724, + null, + 182241.99218478377, + 292546.4053266724, + null, + 182241.99218478377, + 764825.2585659927, + null, + 272834.1028016543, + 292546.4053266724, + null, + 272834.1028016543, + 764825.2585659927, + null, + 971904.6866248937, + 292546.4053266724, + null, + 971904.6866248937, + 764825.2585659927, + null, + -485795.3631268366, + 595780.2402537148, + null, + -588655.115372228, + 279402.88259371225, + null, + -491878.34233527817, + 292546.4053266724, + null, + 764825.2585659927, + -491878.34233527817, + null, + 764825.2585659927, + -409101.8929978014, + null, + 764825.2585659927, + -866017.5489527519, + null, + -866017.5489527519, + 292546.4053266724, + null, + -251516.68698053743, + 292546.4053266724, + null, + 764825.2585659927, + -251516.68698053743, + null, + -299647.1643384531, + 292546.4053266724, + null, + 764825.2585659927, + -299647.1643384531, + null, + 764825.2585659927, + -83799.97128770666, + null, + -83799.97128770666, + 292546.4053266724, + null, + 764825.2585659927, + 448362.05638158624, + null, + -485795.3631268366, + -746593.9791985748, + null, + -625569.4912948359, + 955947.5418821241, + null, + 366636.79277629725, + 292546.4053266724, + null, + 764825.2585659927, + 366636.79277629725, + null, + -288547.1455220523, + 292546.4053266724, + null, + 764825.2585659927, + -288547.1455220523, + null, + 245195.9363499303, + 292546.4053266724, + null, + 764825.2585659927, + 245195.9363499303, + null, + -485795.3631268366, + 539313.0418165693, + null, + 764825.2585659927, + -91761.8873428805, + null, + -91761.8873428805, + 292546.4053266724, + null, + -210116.35963346652, + 292546.4053266724, + null, + 764825.2585659927, + -210116.35963346652, + null, + -461608.042010762, + 701409.3470021723, + null, + -485795.3631268366, + -940957.0717831916, + null, + -752765.3016842231, + -737201.9158822978, + null, + -752765.3016842231, + 424755.65046534536, + null, + -883231.0328140896, + 292546.4053266724, + null, + -883231.0328140896, + 764825.2585659927, + null, + 648246.2669582678, + 292546.4053266724, + null, + 648246.2669582678, + 764825.2585659927, + null, + 596873.7891156799, + 292546.4053266724, + null, + 596873.7891156799, + 764825.2585659927, + null, + 343087.31060714746, + 550143.9271309747, + null, + -485795.3631268366, + 667260.2455580661, + null, + 962506.391907379, + 292546.4053266724, + null, + 764825.2585659927, + 962506.391907379, + null, + 764825.2585659927, + -41909.80183653714, + null, + -41909.80183653714, + 292546.4053266724, + null, + -642915.2614714748, + 292546.4053266724, + null, + 764825.2585659927, + -642915.2614714748, + null, + 764825.2585659927, + 970902.747844056, + null, + -485795.3631268366, + 887110.8021155552, + null, + 799750.1403151368, + -176233.96315346574, + null, + 699178.8707138866, + 292546.4053266724, + null, + 699178.8707138866, + 764825.2585659927, + null, + -77572.38474831896, + 292546.4053266724, + null, + -77572.38474831896, + 764825.2585659927, + null, + 168551.44621210094, + 764825.2585659927, + null, + 479027.0055964698, + 292546.4053266724, + null, + 764825.2585659927, + 479027.0055964698, + null, + 518329.40171165596, + 292546.4053266724, + null, + 764825.2585659927, + 518329.40171165596, + null, + 963742.9327330225, + 292546.4053266724, + null, + -427500.822387743, + -589376.471258098, + null, + 388957.0261418009, + 292546.4053266724, + null, + 764825.2585659927, + 388957.0261418009, + null, + 9216.576356292138, + 292546.4053266724, + null, + 764825.2585659927, + 9216.576356292138, + null, + 764825.2585659927, + -471235.0368947404, + null, + -103892.01976106044, + 292546.4053266724, + null, + 764825.2585659927, + -103892.01976106044, + null, + 20603.31430457385, + 292546.4053266724, + null, + 764825.2585659927, + 20603.31430457385, + null, + -303424.29995457444, + 415033.51132967125, + null, + -991422.9130151526, + 68047.90214285994, + null, + 383509.55259038025, + -213351.52521131895, + null, + -485795.3631268366, + -454744.80523948825, + null, + -485795.3631268366, + 130968.58000013855, + null, + 173335.4152895037, + 292546.4053266724, + null, + 764825.2585659927, + 173335.4152895037, + null, + -368465.52757314546, + 292546.4053266724, + null, + 764825.2585659927, + -368465.52757314546, + null, + 764825.2585659927, + 262822.0069579461, + null, + 764825.2585659927, + 987602.5222118099, + null, + 987602.5222118099, + 292546.4053266724, + null, + 362827.25527501915, + 285759.05408772104, + null, + 264162.3282401524, + 597488.8439013408, + null, + 146669.8955315029, + 597488.8439013408, + null, + 516690.6578063111, + 292546.4053266724, + null, + 764825.2585659927, + 516690.6578063111, + null, + -184543.5533949662, + 292546.4053266724, + null, + 764825.2585659927, + -184543.5533949662, + null, + -485795.3631268366, + 141961.07855290908, + null, + -485795.3631268366, + 477707.52879901003, + null, + 764825.2585659927, + 48518.55827067442, + null, + 292546.4053266724, + 961334.6481529024, + null, + 764825.2585659927, + 961334.6481529024, + null, + 764825.2585659927, + 597885.198668642, + null, + -678012.3070365165, + 292546.4053266724, + null, + 764825.2585659927, + -678012.3070365165, + null, + 764825.2585659927, + 818145.42828364, + null, + 292546.4053266724, + 818145.42828364, + null, + 764825.2585659927, + -122918.52270650638, + null, + 292546.4053266724, + 268358.33778312645, + null, + 764825.2585659927, + 268358.33778312645, + null, + 292546.4053266724, + -962821.1685407511, + null, + 764825.2585659927, + -962821.1685407511, + null, + 292546.4053266724, + 45038.88428834024, + null, + 764825.2585659927, + 45038.88428834024, + null, + 292546.4053266724, + -40001.9478849829, + null, + 764825.2585659927, + -40001.9478849829, + null, + 292546.4053266724, + -362662.6819606953, + null, + 764825.2585659927, + -362662.6819606953, + null, + 292546.4053266724, + 135736.3299043617, + null, + 689114.4503598423, + -443566.7466770268, + null, + 689114.4503598423, + -371863.4527597935, + null, + 158146.76917570524, + -307621.3753141221, + null, + 652708.8801697731, + -636028.5534186077, + null, + -899941.1162503663, + 652708.8801697731, + null, + 117413.10839336138, + 763945.952812722, + null, + 977431.0548240622, + 983669.8479852641, + null, + -899941.1162503663, + 983669.8479852641, + null, + 977431.0548240622, + 32364.15907100687, + null, + -899941.1162503663, + 32364.15907100687, + null, + -847974.5782801093, + -205680.67829882586, + null, + -925298.2728422172, + -621623.8211913281, + null, + -749668.8616756058, + 496978.7903337752, + null, + 587577.2507856083, + -649140.7604522945, + null, + 645225.7201356861, + -682263.0977308097, + null, + -132562.22722753554, + 496978.7903337752, + null, + -14533.452107377887, + -636028.5534186077, + null, + -899941.1162503663, + -14533.452107377887, + null, + 152630.10089153095, + -795379.7646641119, + null, + 735157.0149800046, + -454102.586298186, + null, + 85024.16391676481, + -12967.29595703483, + null, + -182281.42270725666, + 609661.7085588456, + null, + 418352.4765965143, + -981915.8445563326, + null, + 977431.0548240622, + -575846.6534108464, + null, + -899941.1162503663, + -575846.6534108464, + null, + -706738.7165228054, + -738880.1499345918, + null, + 233684.57456860182, + 193255.53151425766, + null, + -272242.8171063103, + 872827.2862087636, + null, + -24691.683230473325, + -454102.586298186, + null, + 253309.69590722895, + -454102.586298186, + null, + 954286.742199924, + -912599.3077388391, + null, + 954286.742199924, + -41047.21677271139, + null, + 103561.59770858775, + -454102.586298186, + null, + 822896.6027357654, + -728307.274642908, + null, + 822896.6027357654, + 530964.126127407, + null, + -242188.22048817002, + -454102.586298186, + null, + -40579.02243977685, + -454102.586298186, + null, + 147982.52449250926, + -454102.586298186, + null, + -615312.6904394762, + -728307.274642908, + null, + -615312.6904394762, + 530964.126127407, + null, + 393077.1877881871, + -728307.274642908, + null, + -205928.61463833012, + 648817.5145515474, + null, + -196094.90074728007, + -205928.61463833012, + null, + -41047.21677271139, + 124960.29178509848, + null, + -41047.21677271139, + 980320.9721807307, + null, + 861981.966217582, + 683000.4284023332, + null, + 861981.966217582, + -371863.4527597935, + null, + -924972.0571454045, + -728307.274642908, + null, + 466563.67026671243, + -567978.7127955292, + null, + -21448.410189587543, + -307372.2410636328, + null, + -307372.2410636328, + 117358.92862004315, + null, + -307372.2410636328, + 117358.92862004315, + null, + 985171.4920396586, + -728307.274642908, + null, + 530964.126127407, + 985171.4920396586, + null, + 558620.9289424835, + -951475.1084669182, + null, + 466563.67026671243, + -951475.1084669182, + null, + 721912.0685070913, + -163576.2588385341, + null, + 721912.0685070913, + -854733.8545677027, + null, + -358749.8174963055, + 721912.0685070913, + null, + -421789.7677491984, + 721912.0685070913, + null, + -682263.0977308097, + 152819.4083321528, + null, + -159519.74000705048, + 528757.7981371396, + null, + -41047.21677271139, + -159519.74000705048, + null, + 221594.5267462014, + -320383.30347257736, + null, + 486939.8239928835, + -454102.586298186, + null, + -21448.410189587543, + -426445.81035255233, + null, + 316169.9514436445, + -426445.81035255233, + null, + 669688.702007017, + -728307.274642908, + null, + 658084.9323840506, + -731922.7386281167, + null, + -952327.836973756, + -731922.7386281167, + null, + 66739.46051902791, + -145721.03503708367, + null, + -865992.2514942115, + -728307.274642908, + null, + 236557.87223559475, + 913139.7718660278, + null, + 910852.0920602485, + -109722.51489403195, + null, + 926032.2731800559, + 698183.1032720456, + null, + -307751.5469476992, + -728307.274642908, + null, + 530964.126127407, + -307751.5469476992, + null, + -65132.54734917773, + -728307.274642908, + null, + 550143.9271309747, + 798580.4599391682, + null, + 266995.3016585989, + 971386.6902436607, + null, + -682263.0977308097, + 266995.3016585989, + null, + -422049.8748792363, + -621784.3596358845, + null, + -41047.21677271139, + -621784.3596358845, + null, + -791000.0656844944, + -340891.51386623963, + null, + -157916.3099396197, + 965810.4953762245, + null, + 775502.1634759973, + 965810.4953762245, + null, + -233660.9642220957, + -728307.274642908, + null, + 134012.77358148622, + -728307.274642908, + null, + 856771.7907479047, + -339120.88280133635, + null, + -41047.21677271139, + -339120.88280133635, + null, + 35545.38425009501, + -865994.9152429418, + null, + 977431.0548240622, + -391624.37866300024, + null, + -391624.37866300024, + 819782.3778926807, + null, + 492843.5812387413, + 164122.44981536551, + null, + 164122.44981536551, + -322222.1009867254, + null, + -322222.1009867254, + -273122.6818702672, + null, + -322222.1009867254, + 648375.4654321772, + null, + 492843.5812387413, + -911386.255718227, + null, + -322222.1009867254, + -911386.255718227, + null, + 977431.0548240622, + -145881.92459988635, + null, + -145881.92459988635, + 819782.3778926807, + null, + 468397.0603039731, + 20289.13467154059, + null, + -511216.2264416995, + 220402.07476972108, + null, + -865994.9152429418, + -839433.4613511378, + null, + -238922.6945320282, + -785453.5126606135, + null, + -859686.782273051, + 763815.8244084439, + null, + -839433.4613511378, + 763815.8244084439, + null, + 977431.0548240622, + -672168.527766483, + null, + 819782.3778926807, + -672168.527766483, + null, + -802521.718652915, + -836192.0242930638, + null, + -322222.1009867254, + -836192.0242930638, + null, + 988222.3716726251, + -327624.1032940919, + null, + -322222.1009867254, + 988222.3716726251, + null, + 546832.9797995964, + 817117.7813975348, + null, + 683377.9850822419, + 817117.7813975348, + null, + 977431.0548240622, + -382381.57208321156, + null, + 819782.3778926807, + -382381.57208321156, + null, + -501202.2611890803, + 742726.859209176, + null, + 461006.2733798683, + -483953.7495870241, + null, + 993169.8272048872, + -327624.1032940919, + null, + -322222.1009867254, + 993169.8272048872, + null, + -938210.1990110476, + -38615.33669416017, + null, + -865994.9152429418, + 19343.09191528283, + null, + -359737.5232536628, + -833849.6950161174, + null, + 492843.5812387413, + -584065.5313868428, + null, + 977431.0548240622, + -795188.4583446136, + null, + 819782.3778926807, + -795188.4583446136, + null, + -865994.9152429418, + 947912.7199171691, + null, + 492843.5812387413, + 476471.5152563388, + null, + -322222.1009867254, + 476471.5152563388, + null, + -730479.4858215358, + 760545.8185140528, + null, + 492843.5812387413, + -997624.8203061946, + null, + -322222.1009867254, + -997624.8203061946, + null, + -958559.1409717347, + 412366.0488617531, + null, + 453988.4332138819, + -926390.3870031927, + null, + -485075.06632204156, + -831518.0754764182, + null, + 492843.5812387413, + -240776.02362994765, + null, + -322222.1009867254, + -240776.02362994765, + null, + -307232.07802182186, + -455186.4174345987, + null, + -454102.586298186, + -200680.5681862598, + null, + -454102.586298186, + 638370.066355362, + null, + -435490.14728919585, + -564971.5754824718, + null, + -435490.14728919585, + -92202.74906087144, + null, + -356328.671811996, + -782225.0600537152, + null, + -454102.586298186, + -536551.0299197846, + null, + -438391.1547383694, + -284302.4138421264, + null, + -435490.14728919585, + -438391.1547383694, + null, + 141130.79943615815, + -691661.6245944632, + null, + 141130.79943615815, + 624035.630911147, + null, + -70957.70632608756, + 5859.207615196205, + null, + 5859.207615196205, + 462622.3479891516, + null, + -766792.2989184954, + 307470.6809337242, + null, + -454102.586298186, + -550020.0952087349, + null, + 587577.2507856083, + -864617.2015054823, + null, + -956467.8967193629, + 205154.82978101927, + null, + 190593.36686297934, + -956467.8967193629, + null, + 780812.1694900701, + -956467.8967193629, + null, + -867435.6178178153, + -799163.3175611261, + null, + -799163.3175611261, + 624035.630911147, + null, + 774885.9141317729, + 612555.9659177166, + null, + 926686.2733395682, + 154181.9189454976, + null, + 154181.9189454976, + -700850.6394597387, + null, + -901061.6611573094, + 361502.5767059032, + null, + -517582.0916435896, + -371120.74698793964, + null, + -454102.586298186, + -793863.2538143109, + null, + -596240.2829503573, + -823096.4695055234, + null, + -633597.1107892569, + 541984.3046998187, + null, + 276519.2093188691, + 541984.3046998187, + null, + 312068.956212292, + -424082.1046796668, + null, + 667658.0968566479, + 183159.6345591602, + null, + 587577.2507856083, + -530794.2353924422, + null, + 928656.4360568917, + -700850.6394597387, + null, + 785076.1176649188, + 928656.4360568917, + null, + -899941.1162503663, + -496497.2335478825, + null, + -496497.2335478825, + -636028.5534186077, + null, + 407849.35765214736, + -183246.98086339253, + null, + -588655.115372228, + 407849.35765214736, + null, + -905977.0547811708, + -978525.2021719315, + null, + -802907.5131513008, + -700850.6394597387, + null, + 785076.1176649188, + -802907.5131513008, + null, + -557037.2814512706, + 845636.7029966115, + null, + -20328.54839748688, + 199428.4919916447, + null, + 190593.36686297934, + 199428.4919916447, + null, + 394217.39772983023, + 370173.70037625066, + null, + 394217.39772983023, + -546981.8192781708, + null, + -773420.1471329172, + 47304.82415004889, + null, + -773420.1471329172, + -694477.9817728173, + null, + -920741.4436678549, + 817517.6184635771, + null, + -716602.890959771, + -621266.9560449793, + null, + 921176.4067803072, + 356698.278740061, + null, + -980076.2235248009, + -959288.5572765302, + null, + -980076.2235248009, + -878045.9821414341, + null, + 80553.70193168665, + 481190.76916848094, + null, + 618782.1244699516, + -118007.17027903684, + null, + -264757.4637711385, + 618782.1244699516, + null, + -454102.586298186, + 889600.3765064016, + null, + -777124.9274659591, + 813752.8634957385, + null, + -480353.54303317115, + -385536.93670941814, + null, + 642887.5529332205, + -959288.5572765302, + null, + 642887.5529332205, + 322244.7211868584, + null, + -454102.586298186, + 479609.2251199442, + null, + -209513.53982177845, + -54.2568822701206, + null, + 587577.2507856083, + -61215.42033610039, + null, + 565668.6981676611, + -785453.5126606135, + null, + 487321.3323061261, + 565668.6981676611, + null, + -952327.836973756, + -282139.9481285012, + null, + -264757.4637711385, + -959288.5572765302, + null, + -118007.17027903684, + -959288.5572765302, + null, + -118007.17027903684, + -157176.03664447056, + null, + 203860.33817112638, + 79963.71184017637, + null, + -275552.67409980064, + -340201.3266911328, + null, + -785453.5126606135, + 245229.65292556954, + null, + 359096.88520256465, + 245229.65292556954, + null, + 430823.64465525333, + -873262.8003619645, + null, + -155364.70874316798, + 344162.29020153667, + null, + 655071.8827625411, + -436085.1153599603, + null, + -594515.5212872077, + 43613.1252557781, + null, + -118007.17027903684, + -410466.1960566309, + null, + -264757.4637711385, + -410466.1960566309, + null, + -196989.70373274927, + 112978.40715750973, + null, + -298356.292464911, + -99956.64532868864, + null, + -988293.7621873369, + -842679.0553811144, + null, + 180005.58774911758, + -885452.1533373225, + null, + -624947.0977210656, + -885452.1533373225, + null, + -624947.0977210656, + -546358.1912804205, + null, + 118341.36735152123, + -546358.1912804205, + null, + -109873.48881074932, + 685277.6504690781, + null, + 528461.408536822, + -158879.87491432432, + null, + 528461.408536822, + 878422.5888265629, + null, + -633597.1107892569, + -468807.7269477244, + null, + 276519.2093188691, + -468807.7269477244, + null, + -624947.0977210656, + -906194.686836411, + null, + 481190.76916848094, + -450971.1288868068, + null, + -730479.4858215358, + -635565.4457632827, + null, + -424191.7750400952, + 910929.0860177912, + null, + 986835.0736272966, + 213984.13246461056, + null, + 942137.0889056928, + 213984.13246461056, + null, + 987880.7432751495, + -229434.9756673648, + null, + 817441.6620766443, + -229434.9756673648, + null, + -614194.6682511497, + -409529.2008980156, + null, + 344833.1258162722, + -409529.2008980156, + null, + 486939.8239928835, + 77009.76021396478, + null, + 390351.85620191856, + -473563.7949953864, + null, + 4713.401427909769, + 14421.365019352317, + null, + -84665.76993441532, + -636028.5534186077, + null, + -899941.1162503663, + -84665.76993441532, + null, + 944314.1496489326, + -934200.4703555017, + null, + 942137.0889056928, + -934200.4703555017, + null, + -454102.586298186, + -561527.6895167028, + null, + -563127.2950407254, + 232516.50339234597, + null, + 232516.50339234597, + 129367.15688846845, + null, + 147982.52449250926, + 50846.95541483297, + null, + 587577.2507856083, + -681612.1072798342, + null, + -690023.2138685087, + -261676.87664463822, + null, + -454102.586298186, + 562431.0076399741, + null, + 147982.52449250926, + -66015.35047639784, + null, + 916586.6606952572, + 115729.24020113629, + null, + -624947.0977210656, + 786610.187710862, + null, + 942137.0889056928, + 786610.187710862, + null, + 916586.6606952572, + -397630.8008376086, + null, + -847974.8310260638, + 370173.70037625066, + null, + -847974.8310260638, + -546981.8192781708, + null, + 420021.4463546965, + 370173.70037625066, + null, + 420021.4463546965, + -546981.8192781708, + null, + 942137.0889056928, + 51871.86163710788, + null, + 118341.36735152123, + 51871.86163710788, + null, + 521813.52874387166, + 370173.70037625066, + null, + 521813.52874387166, + 409624.55964518554, + null, + -883109.8371806932, + -179827.40244080508, + null, + -883109.8371806932, + -546981.8192781708, + null, + -387963.4681192348, + 919420.8622752513, + null, + -728307.274642908, + 123252.75945565072, + null, + 530964.126127407, + 123252.75945565072, + null, + 587577.2507856083, + 560353.2055427589, + null, + 133053.16122446588, + -555914.7275795464, + null, + 505084.0013940303, + 133053.16122446588, + null, + 577392.8090613643, + -200571.0906061211, + null, + 916183.0371557598, + -200571.0906061211, + null, + 577392.8090613643, + -468513.2612679026, + null, + -270676.14341981197, + -479063.14112764824, + null, + 118341.36735152123, + -479063.14112764824, + null, + 190785.54963623497, + 579875.3899708529, + null, + 103074.37200741231, + 370173.70037625066, + null, + 103074.37200741231, + -546981.8192781708, + null, + 323347.94712743163, + -139886.43633667342, + null, + -267938.64974705374, + 370173.70037625066, + null, + -267938.64974705374, + -546981.8192781708, + null, + -708295.0091724356, + 370173.70037625066, + null, + -708295.0091724356, + -546981.8192781708, + null, + -386358.7164788742, + 299747.16771257494, + null, + -479063.14112764824, + -386358.7164788742, + null, + 118341.36735152123, + -386358.7164788742, + null, + -270676.14341981197, + 299747.16771257494, + null, + 118341.36735152123, + 299747.16771257494, + null, + -559491.0604224965, + 370173.70037625066, + null, + -559491.0604224965, + -546981.8192781708, + null, + -542498.5120243762, + 370173.70037625066, + null, + -542498.5120243762, + -546981.8192781708, + null, + -454102.586298186, + -922699.7788318148, + null, + 944314.1496489326, + -559258.3662861967, + null, + 916183.0371557598, + -300273.9307739282, + null, + 118341.36735152123, + -300273.9307739282, + null, + -959288.5572765302, + 309648.1670935587, + null, + 764523.5890097027, + 370173.70037625066, + null, + 764523.5890097027, + -546981.8192781708, + null, + 94387.71254925072, + -384676.9757273485, + null, + 505084.0013940303, + -384676.9757273485, + null, + -270676.14341981197, + 465303.56751728075, + null, + 118341.36735152123, + 465303.56751728075, + null, + 577392.8090613643, + 387152.3805970955, + null, + -270676.14341981197, + 387152.3805970955, + null, + 370173.70037625066, + -641075.7681453216, + null, + -546981.8192781708, + -641075.7681453216, + null, + 370173.70037625066, + 95311.43163698363, + null, + -546981.8192781708, + 95311.43163698363, + null, + -139886.43633667342, + -252671.6832573741, + null, + 370173.70037625066, + 522713.3475521484, + null, + -546981.8192781708, + 522713.3475521484, + null, + 95962.08383797004, + 95962.08383797004, + null, + 95962.08383797004, + 95958.17194866823, + null, + 95958.17194866823, + 96588.81767117835, + null, + 95958.17194866823, + 95948.88284577774, + null, + 95958.17194866823, + 95880.89608253656, + null, + 95958.17194866823, + 96750.96023331824, + null, + 95958.17194866823, + 96510.55405575983, + null, + 95958.17194866823, + 95767.91624828705, + null, + 96588.81767117835, + 96740.50167159707, + null, + 96588.81767117835, + 97209.95143029183, + null, + 95962.08383797004, + 95948.88284577774, + null, + 95958.17194866823, + 95948.88284577774, + null, + 96750.96023331824, + 97361.55787856234, + null, + 96750.96023331824, + 96730.38048016379, + null, + 96750.96023331824, + 96981.97292405601, + null, + 96750.96023331824, + 97064.56846526945, + null, + 96750.96023331824, + 96996.94863760758, + null, + 96750.96023331824, + 95612.3798589922, + null, + 96750.96023331824, + 97025.10002004895, + null, + 96750.96023331824, + 97085.03905872672, + null, + 96750.96023331824, + 97181.50823801635, + null, + 96750.96023331824, + 97107.98327536366, + null, + 96750.96023331824, + 96671.54609170722, + null, + 96750.96023331824, + 96264.44273321965, + null, + 96750.96023331824, + 97372.74334299575, + null, + 96750.96023331824, + 97234.35747194423, + null, + 96750.96023331824, + 97271.91592592461, + null, + 96750.96023331824, + 97377.86830334815, + null, + 96750.96023331824, + 97325.9129722734, + null, + 96750.96023331824, + 97061.7840428774, + null, + 96750.96023331824, + 97215.01978405566, + null, + 96750.96023331824, + 97358.31856309062, + null, + 96750.96023331824, + 97190.77820654793, + null, + 96750.96023331824, + 96441.85290714615, + null, + 96750.96023331824, + 97203.18137378134, + null, + 96750.96023331824, + 96615.52267587048, + null, + 96750.96023331824, + 97362.57990476971, + null, + 96750.96023331824, + 96430.3182329276, + null, + 96750.96023331824, + 97216.0877466562, + null, + 96750.96023331824, + 97087.72560216134, + null, + 96750.96023331824, + 96827.37265721356, + null, + 96750.96023331824, + 97471.93322774443, + null, + 96750.96023331824, + 96478.42530029602, + null, + 96750.96023331824, + 97500.18404094946, + null, + 96750.96023331824, + 96989.78155035034, + null, + 96750.96023331824, + 98448.42923749553, + null, + 96750.96023331824, + 97143.83269179585, + null, + 96750.96023331824, + 97369.40146033755, + null, + 96750.96023331824, + 97339.71103793576, + null, + 96750.96023331824, + 96553.64509810388, + null, + 96750.96023331824, + 97302.65739635656, + null, + 96750.96023331824, + 97335.30821090189, + null, + 96750.96023331824, + 96554.76711541406, + null, + 96750.96023331824, + 97344.39094759998, + null, + 96750.96023331824, + 98269.13543855402, + null, + 96750.96023331824, + 97120.93183600294, + null, + 96750.96023331824, + 97096.28494217026, + null, + 96750.96023331824, + 96822.6506902651, + null, + 96750.96023331824, + 97442.83746991267, + null, + 96750.96023331824, + 96832.47969398995, + null, + 96750.96023331824, + 97815.81719436, + null, + 96750.96023331824, + 98066.53944077659, + null, + 96750.96023331824, + 97949.99254977489, + null, + 96750.96023331824, + 97258.58975162834, + null, + 96750.96023331824, + 97072.87553268592, + null, + 96750.96023331824, + 97177.44060503879, + null, + 96750.96023331824, + 98940.06816975218, + null, + 96750.96023331824, + 98016.83324711236, + null, + 96750.96023331824, + 97830.47996234937, + null, + 96750.96023331824, + 97767.76658830828, + null, + 96750.96023331824, + 96641.47157063635, + null, + 96750.96023331824, + 97299.95033359852, + null, + 96750.96023331824, + 97365.44574077036, + null, + 96750.96023331824, + 97290.08489077912, + null, + 96750.96023331824, + 97322.93543564298, + null, + 96750.96023331824, + 97060.5787311115, + null, + 96750.96023331824, + 97049.53534278259, + null, + 96750.96023331824, + 97242.69405553193, + null, + 96750.96023331824, + 98081.17812602762, + null, + 96750.96023331824, + 97249.66244594876, + null, + 96750.96023331824, + 97854.52508088839, + null, + 96750.96023331824, + 97955.02720756274, + null, + 96750.96023331824, + 97077.71122197901, + null, + 96750.96023331824, + 96385.16496434633, + null, + 96750.96023331824, + 97510.89358759671, + null, + 96750.96023331824, + 98459.92232309152, + null, + 96750.96023331824, + 97615.68830856765, + null, + 96750.96023331824, + 98138.33403478275, + null, + 96750.96023331824, + 97827.98206777098, + null, + 96750.96023331824, + 96467.8745823571, + null, + 96750.96023331824, + 95886.51435711926, + null, + 96750.96023331824, + 98461.45076976992, + null, + 96750.96023331824, + 98367.57183739317, + null, + 96750.96023331824, + 96854.14568860013, + null, + 96750.96023331824, + 97266.32321649927, + null, + 96750.96023331824, + 97363.0231077364, + null, + 96750.96023331824, + 97395.40628065314, + null, + 96750.96023331824, + 96172.41683035072, + null, + 96750.96023331824, + 96250.45766620964, + null, + 96750.96023331824, + 95520.1645763566, + null, + 96750.96023331824, + 98448.70225290018, + null, + 96750.96023331824, + 96321.45254240566, + null, + 96750.96023331824, + 97264.50790734109, + null, + 96750.96023331824, + 97236.52009824176, + null, + 96750.96023331824, + 97339.43922054533, + null, + 96750.96023331824, + 97243.18425457999, + null, + 96750.96023331824, + 97315.50747893736, + null, + 96750.96023331824, + 97215.05533166551, + null, + 96750.96023331824, + 96750.67919465902, + null, + 96750.96023331824, + 96758.2131173848, + null, + 96750.96023331824, + 96298.09511180542, + null, + 96750.96023331824, + 95861.24531062585, + null, + 96750.96023331824, + 96714.78752865449, + null, + 96750.96023331824, + 97410.9196281361, + null, + 96750.96023331824, + 96859.54396498862, + null, + 96750.96023331824, + 96181.25693811684, + null, + 96750.96023331824, + 96930.48088011655, + null, + 96750.96023331824, + 97770.14515646077, + null, + 96750.96023331824, + 97490.27494702111, + null, + 96750.96023331824, + 97286.18570891903, + null, + 96750.96023331824, + 97389.10178705663, + null, + 96750.96023331824, + 97331.16186692334, + null, + 96750.96023331824, + 96488.13453110759, + null, + 96750.96023331824, + 96074.87019613585, + null, + 96750.96023331824, + 97074.27772427908, + null, + 96750.96023331824, + 96074.67218939119, + null, + 96750.96023331824, + 97117.04988156656, + null, + 96750.96023331824, + 96276.76290288504, + null, + 96750.96023331824, + 96138.27909570166, + null, + 96750.96023331824, + 97145.57365835275, + null, + 96750.96023331824, + 96646.8046235456, + null, + 96750.96023331824, + 95954.7235059804, + null, + 96750.96023331824, + 97344.23333565774, + null, + 96750.96023331824, + 97312.16899856621, + null, + 96750.96023331824, + 97226.77467613107, + null, + 96750.96023331824, + 97363.94242415007, + null, + 96750.96023331824, + 96602.40260405943, + null, + 96750.96023331824, + 95405.95241141658, + null, + 96750.96023331824, + 97026.79872519187, + null, + 96750.96023331824, + 96882.48118360608, + null, + 96750.96023331824, + 96170.99341163754, + null, + 96750.96023331824, + 96129.26226123162, + null, + 96750.96023331824, + 97352.31659100096, + null, + 96750.96023331824, + 96609.21495158957, + null, + 96750.96023331824, + 98432.06023611217, + null, + 96750.96023331824, + 96466.10004162915, + null, + 96750.96023331824, + 95721.84547331538, + null, + 96750.96023331824, + 97171.80979185148, + null, + 96750.96023331824, + 96673.26868148368, + null, + 96750.96023331824, + 97242.36535343947, + null, + 96750.96023331824, + 96662.13325458604, + null, + 96750.96023331824, + 95361.48898776405, + null, + 96750.96023331824, + 96723.71649615404, + null, + 96750.96023331824, + 96577.78689065653, + null, + 96750.96023331824, + 96304.89053116819, + null, + 96750.96023331824, + 96020.02948032114, + null, + 96750.96023331824, + 94721.83869654656, + null, + 96750.96023331824, + 97298.65959230787, + null, + 96750.96023331824, + 96640.12295334176, + null, + 96750.96023331824, + 96271.64391619014, + null, + 96750.96023331824, + 96408.13622599524, + null, + 96750.96023331824, + 97309.18348925584, + null, + 96750.96023331824, + 97289.56699193796, + null, + 96750.96023331824, + 97270.2903153982, + null, + 96750.96023331824, + 96874.40221688445, + null, + 96750.96023331824, + 96746.46975225132, + null, + 96750.96023331824, + 96348.29844805674, + null, + 96750.96023331824, + 96668.17509388815, + null, + 96750.96023331824, + 96090.94263214861, + null, + 96750.96023331824, + 96360.12432055575, + null, + 96750.96023331824, + 96792.48106870924, + null, + 96750.96023331824, + 96829.16589823875, + null, + 96750.96023331824, + 96813.03260829017, + null, + 96750.96023331824, + 96852.64814433026, + null, + 96750.96023331824, + 97324.36613168383, + null, + 96750.96023331824, + 97379.06355223498, + null, + 96750.96023331824, + 96719.96913872726, + null, + 96750.96023331824, + 96565.3052812955, + null, + 96750.96023331824, + 96062.65271303893, + null, + 96750.96023331824, + 96318.63129865125, + null, + 96750.96023331824, + 96775.11425416196, + null, + 96750.96023331824, + 97357.37235340624, + null, + 96750.96023331824, + 97277.72395289454, + null, + 96750.96023331824, + 97289.76170017247, + null, + 96750.96023331824, + 97321.48237207504, + null, + 96750.96023331824, + 97227.68741107298, + null, + 96750.96023331824, + 97204.20955384977, + null, + 96750.96023331824, + 96229.06326601339, + null, + 96750.96023331824, + 97325.19271104848, + null, + 96750.96023331824, + 97617.21646735941, + null, + 96750.96023331824, + 98449.27256362812, + null, + 96750.96023331824, + 96581.33099308431, + null, + 96750.96023331824, + 97228.58212383334, + null, + 96750.96023331824, + 97299.24309043337, + null, + 96750.96023331824, + 97252.41548140156, + null, + 96750.96023331824, + 97357.81547028142, + null, + 96750.96023331824, + 97236.43218292532, + null, + 96750.96023331824, + 97305.00730192695, + null, + 96750.96023331824, + 97195.88804075729, + null, + 96750.96023331824, + 97218.59509104007, + null, + 96750.96023331824, + 96261.3196088678, + null, + 96750.96023331824, + 93808.41622785716, + null, + 96750.96023331824, + 96850.96393927754, + null, + 96750.96023331824, + 96537.12189876002, + null, + 96750.96023331824, + 96361.20003453246, + null, + 96750.96023331824, + 96470.92604424445, + null, + 96750.96023331824, + 96487.89609305817, + null, + 96750.96023331824, + 96645.9713144198, + null, + 96750.96023331824, + 96399.42211136232, + null, + 96750.96023331824, + 96412.58182949589, + null, + 96750.96023331824, + 95545.86201701668, + null, + 96750.96023331824, + 96748.01232561683, + null, + 96750.96023331824, + 96556.53529112086, + null, + 96750.96023331824, + 96657.04377656122, + null, + 96750.96023331824, + 96611.79891677048, + null, + 96750.96023331824, + 97214.1761793492, + null, + 96750.96023331824, + 96131.39404043475, + null, + 96750.96023331824, + 96721.96485809215, + null, + 96750.96023331824, + 96569.72587527646, + null, + 96750.96023331824, + 96176.22696258772, + null, + 96750.96023331824, + 96122.91322426367, + null, + 96750.96023331824, + 96198.64527732105, + null, + 96750.96023331824, + 97964.68713880659, + null, + 96750.96023331824, + 97183.30733835287, + null, + 96750.96023331824, + 92882.88036181602, + null, + 96750.96023331824, + 93947.1652778539, + null, + 96750.96023331824, + 96330.25949972049, + null, + 96750.96023331824, + 97170.81081425113, + null, + 96750.96023331824, + 95845.43465437011, + null, + 96750.96023331824, + 94883.17834351698, + null, + 96750.96023331824, + 96709.27952791477, + null, + 96750.96023331824, + 96667.2918950391, + null, + 96750.96023331824, + 95837.80625601206, + null, + 96750.96023331824, + 96820.63808370597, + null, + 96750.96023331824, + 96806.18517489852, + null, + 96750.96023331824, + 97280.51740997269, + null, + 96750.96023331824, + 96714.28622859313, + null, + 96750.96023331824, + 96088.28655554891, + null, + 96750.96023331824, + 96842.71240942011, + null, + 96750.96023331824, + 96636.80398752526, + null, + 96750.96023331824, + 96814.47946325276, + null, + 96750.96023331824, + 96686.4149689825, + null, + 96750.96023331824, + 96733.90105315663, + null, + 96750.96023331824, + 96744.78801527941, + null, + 96750.96023331824, + 96492.3193299354, + null, + 96750.96023331824, + 96406.73123341237, + null, + 96750.96023331824, + 96335.82539154506, + null, + 96750.96023331824, + 96082.8637414932, + null, + 96750.96023331824, + 96567.91127200374, + null, + 96750.96023331824, + 96501.22061638958, + null, + 96750.96023331824, + 96231.57047597128, + null, + 96750.96023331824, + 96447.73644124497, + null, + 96750.96023331824, + 96907.51876847682, + null, + 96750.96023331824, + 96140.78208609398, + null, + 96750.96023331824, + 96791.93089613823, + null, + 96750.96023331824, + 96773.1294794952, + null, + 96750.96023331824, + 97215.55371993229, + null, + 96750.96023331824, + 96989.24436251477, + null, + 96750.96023331824, + 96715.92227964214, + null, + 96750.96023331824, + 96692.76062085203, + null, + 96750.96023331824, + 96896.91552525175, + null, + 96750.96023331824, + 96737.85869639236, + null, + 96750.96023331824, + 95444.01440252263, + null, + 96750.96023331824, + 96447.8287589237, + null, + 96750.96023331824, + 96639.08049903584, + null, + 96750.96023331824, + 97213.58157620984, + null, + 96750.96023331824, + 96349.45899615414, + null, + 96750.96023331824, + 96911.82889073166, + null, + 96750.96023331824, + 96584.25000074002, + null, + 96750.96023331824, + 97638.83972944805, + null, + 96750.96023331824, + 97141.32121371166, + null, + 96750.96023331824, + 97589.68831697167, + null, + 96750.96023331824, + 96754.87507754394, + null, + 96750.96023331824, + 97436.04173144014, + null, + 96750.96023331824, + 96829.7050884141, + null, + 96750.96023331824, + 96707.30691234408, + null, + 96750.96023331824, + 96535.511292164, + null, + 96750.96023331824, + 96405.25838544288, + null, + 96750.96023331824, + 96596.4969197861, + null, + 96750.96023331824, + 96957.15143187257, + null, + 96750.96023331824, + 98108.28736915902, + null, + 96510.55405575983, + 97092.03590641617, + null, + 95767.91624828705, + 95739.18477075809, + null, + 95767.91624828705, + 95638.78273951489, + null, + 96740.50167159707, + 96868.09370002619, + null, + 96740.50167159707, + 96840.061255232, + null, + 97209.95143029183, + 97740.36484145897, + null, + 97361.55787856234, + 97740.36484145897, + null, + 96730.38048016379, + 97228.17238280359, + null, + 96730.38048016379, + 96287.81181504241, + null, + 96981.97292405601, + 97228.17238280359, + null, + 97064.56846526945, + 97306.68660394431, + null, + 97064.56846526945, + 97519.14188663122, + null, + 97064.56846526945, + 96800.95464898097, + null, + 97064.56846526945, + 96931.14707892697, + null, + 96996.94863760758, + 96653.93028602129, + null, + 96996.94863760758, + 97306.68660394431, + null, + 96996.94863760758, + 97519.14188663122, + null, + 96996.94863760758, + 96800.95464898097, + null, + 96996.94863760758, + 96931.14707892697, + null, + 95612.3798589922, + 96612.17178282065, + null, + 95612.3798589922, + 94019.39320785269, + null, + 95612.3798589922, + 96918.79607718707, + null, + 95612.3798589922, + 95778.09112358528, + null, + 95612.3798589922, + 94801.82599832956, + null, + 95612.3798589922, + 94998.66487738185, + null, + 95612.3798589922, + 95681.96009977852, + null, + 95612.3798589922, + 95501.99445714205, + null, + 95612.3798589922, + 95451.74998648891, + null, + 97025.10002004895, + 97377.6500584912, + null, + 97025.10002004895, + 96918.79607718707, + null, + 97025.10002004895, + 96959.17409848377, + null, + 97085.03905872672, + 97453.56935622763, + null, + 97181.50823801635, + 97492.36374902399, + null, + 97181.50823801635, + 97452.67144706869, + null, + 97107.98327536366, + 97467.97384514623, + null, + 96671.54609170722, + 96643.07015445872, + null, + 96671.54609170722, + 96616.28197124632, + null, + 96671.54609170722, + 96611.07880435153, + null, + 96264.44273321965, + 95591.49480913648, + null, + 96264.44273321965, + 96743.02101349403, + null, + 96264.44273321965, + 96450.68991158345, + null, + 97372.74334299575, + 96877.98110658897, + null, + 97372.74334299575, + 97082.82303991095, + null, + 97372.74334299575, + 98237.07311872549, + null, + 97372.74334299575, + 97435.85714721317, + null, + 97234.35747194423, + 96347.73945345664, + null, + 97234.35747194423, + 98753.0342330029, + null, + 97234.35747194423, + 97389.05654094371, + null, + 97234.35747194423, + 97350.06903114164, + null, + 97234.35747194423, + 97254.23934987192, + null, + 97234.35747194423, + 96919.826641072, + null, + 97234.35747194423, + 97357.32608817489, + null, + 97234.35747194423, + 97311.70614692672, + null, + 97234.35747194423, + 96312.49145069612, + null, + 97271.91592592461, + 97740.36484145897, + null, + 97377.86830334815, + 97740.36484145897, + null, + 97325.9129722734, + 97740.36484145897, + null, + 97061.7840428774, + 97342.74090899815, + null, + 97215.01978405566, + 97676.19241492003, + null, + 97215.01978405566, + 97533.87560124022, + null, + 97215.01978405566, + 96983.61207113188, + null, + 97215.01978405566, + 97042.01258952515, + null, + 97358.31856309062, + 97651.32746016643, + null, + 97358.31856309062, + 97136.55546326986, + null, + 97358.31856309062, + 97605.64203060168, + null, + 97358.31856309062, + 97499.57548817585, + null, + 97358.31856309062, + 97615.00090956, + null, + 97358.31856309062, + 97672.92128722146, + null, + 97190.77820654793, + 97634.83104178979, + null, + 96441.85290714615, + 95512.48672079766, + null, + 96441.85290714615, + 95520.58581704031, + null, + 96441.85290714615, + 96295.26828740547, + null, + 96441.85290714615, + 96282.43445699873, + null, + 96441.85290714615, + 96568.35948892368, + null, + 96441.85290714615, + 96305.70007753118, + null, + 96441.85290714615, + 96281.6988740464, + null, + 96441.85290714615, + 96634.97232577665, + null, + 96441.85290714615, + 96658.50723704832, + null, + 96441.85290714615, + 96327.25960947742, + null, + 96441.85290714615, + 96412.87128274282, + null, + 96441.85290714615, + 95612.05251687022, + null, + 96441.85290714615, + 96308.17494820403, + null, + 96441.85290714615, + 96460.09274444025, + null, + 96441.85290714615, + 96049.36643690022, + null, + 96441.85290714615, + 96412.62955632774, + null, + 96441.85290714615, + 96616.7559403405, + null, + 96441.85290714615, + 96519.5204681799, + null, + 96441.85290714615, + 97093.69642855125, + null, + 96441.85290714615, + 96679.99009179635, + null, + 96441.85290714615, + 95633.12109295135, + null, + 96441.85290714615, + 96619.3340165115, + null, + 96441.85290714615, + 96150.03424362313, + null, + 96441.85290714615, + 95937.7713444444, + null, + 96441.85290714615, + 96585.71992460922, + null, + 96441.85290714615, + 96491.68898578656, + null, + 96441.85290714615, + 95350.83394336532, + null, + 96441.85290714615, + 96134.20248253406, + null, + 96441.85290714615, + 96072.38567279669, + null, + 96441.85290714615, + 96772.82588738113, + null, + 96441.85290714615, + 96977.58687203821, + null, + 96441.85290714615, + 96304.58681365351, + null, + 96441.85290714615, + 96251.19968281969, + null, + 96441.85290714615, + 96108.91834438108, + null, + 96441.85290714615, + 96778.70350523331, + null, + 96441.85290714615, + 96382.02705846845, + null, + 96441.85290714615, + 94634.35092199444, + null, + 96441.85290714615, + 96601.97537172223, + null, + 96441.85290714615, + 96473.43688595422, + null, + 96441.85290714615, + 96422.64317562626, + null, + 96441.85290714615, + 96431.47888012671, + null, + 96441.85290714615, + 96636.83424445745, + null, + 96441.85290714615, + 96056.19248735494, + null, + 96441.85290714615, + 96515.11905526402, + null, + 96441.85290714615, + 96660.38035113053, + null, + 96441.85290714615, + 95774.24926109349, + null, + 96441.85290714615, + 97585.87618383576, + null, + 96441.85290714615, + 96583.5257472604, + null, + 96441.85290714615, + 95122.89837108535, + null, + 96441.85290714615, + 96605.90599322402, + null, + 96441.85290714615, + 96038.36554774032, + null, + 96441.85290714615, + 96031.4993704607, + null, + 96441.85290714615, + 96675.71260270195, + null, + 96441.85290714615, + 97049.512435505, + null, + 96441.85290714615, + 96433.845799983, + null, + 96441.85290714615, + 95897.07037264043, + null, + 96441.85290714615, + 96960.27176327427, + null, + 96441.85290714615, + 96307.85692216411, + null, + 96441.85290714615, + 96242.35848519257, + null, + 96441.85290714615, + 96819.81129369602, + null, + 96441.85290714615, + 97249.8102467086, + null, + 96441.85290714615, + 96108.87427334944, + null, + 96441.85290714615, + 97349.66316971318, + null, + 96441.85290714615, + 97012.3360267975, + null, + 96441.85290714615, + 96330.17839103569, + null, + 96441.85290714615, + 98400.16393508099, + null, + 96441.85290714615, + 96728.43531848033, + null, + 96441.85290714615, + 95819.22417527653, + null, + 96441.85290714615, + 97357.92552252565, + null, + 96441.85290714615, + 96299.78998071494, + null, + 96441.85290714615, + 97385.46389592621, + null, + 96441.85290714615, + 97411.8360170104, + null, + 96441.85290714615, + 97204.89839977278, + null, + 96441.85290714615, + 96463.30750173924, + null, + 96441.85290714615, + 96598.60562028212, + null, + 96441.85290714615, + 95896.43296916565, + null, + 96441.85290714615, + 96091.45432140626, + null, + 96441.85290714615, + 97311.35174306807, + null, + 96441.85290714615, + 96200.70472225144, + null, + 96441.85290714615, + 97500.53674710442, + null, + 96441.85290714615, + 96082.33537164425, + null, + 96441.85290714615, + 96477.12621197902, + null, + 96441.85290714615, + 96347.4403938442, + null, + 96441.85290714615, + 96763.1280194511, + null, + 96441.85290714615, + 96773.35799206587, + null, + 96441.85290714615, + 96670.27291581893, + null, + 96441.85290714615, + 94870.7294183785, + null, + 96441.85290714615, + 96530.4881400899, + null, + 96441.85290714615, + 95996.08028297019, + null, + 96441.85290714615, + 95648.0622321095, + null, + 96441.85290714615, + 95765.59330845765, + null, + 96441.85290714615, + 96347.57634764894, + null, + 96441.85290714615, + 96313.51649151853, + null, + 96441.85290714615, + 96240.89790514634, + null, + 96441.85290714615, + 97253.59328958677, + null, + 96441.85290714615, + 96585.02524485815, + null, + 96441.85290714615, + 97110.64567914454, + null, + 96441.85290714615, + 96401.05087142391, + null, + 96441.85290714615, + 97634.16117706981, + null, + 96441.85290714615, + 97632.23610323192, + null, + 96441.85290714615, + 96476.9266197321, + null, + 96441.85290714615, + 96143.59715704634, + null, + 96441.85290714615, + 96442.3959926909, + null, + 96441.85290714615, + 97173.67520609817, + null, + 96441.85290714615, + 97452.54296459325, + null, + 96441.85290714615, + 98764.71093073962, + null, + 96441.85290714615, + 94675.58068459465, + null, + 96441.85290714615, + 96584.45858311476, + null, + 96441.85290714615, + 96074.51018899358, + null, + 96441.85290714615, + 96941.3855747379, + null, + 96441.85290714615, + 96481.93148257826, + null, + 96441.85290714615, + 96194.20097196527, + null, + 96441.85290714615, + 96410.63417003947, + null, + 96441.85290714615, + 96268.58433157318, + null, + 96441.85290714615, + 96844.08726268722, + null, + 96441.85290714615, + 96732.61589548577, + null, + 96441.85290714615, + 97054.54306076036, + null, + 96441.85290714615, + 96736.36947326055, + null, + 96441.85290714615, + 95950.87856285187, + null, + 96441.85290714615, + 96058.5884161396, + null, + 96441.85290714615, + 96074.46008448287, + null, + 96441.85290714615, + 96373.61215631547, + null, + 96441.85290714615, + 96774.68889401545, + null, + 96441.85290714615, + 95954.6226953649, + null, + 96441.85290714615, + 97375.91125894338, + null, + 96441.85290714615, + 96762.60907180404, + null, + 96441.85290714615, + 96892.63356474544, + null, + 96441.85290714615, + 96499.75723381033, + null, + 96441.85290714615, + 96294.09088720444, + null, + 96441.85290714615, + 96966.39468034501, + null, + 96441.85290714615, + 96109.50994722702, + null, + 96441.85290714615, + 96088.99615148573, + null, + 96441.85290714615, + 96447.29551553998, + null, + 96441.85290714615, + 95819.44644735986, + null, + 96441.85290714615, + 96218.35482989937, + null, + 96441.85290714615, + 95899.18906383448, + null, + 96441.85290714615, + 96769.01595020863, + null, + 96441.85290714615, + 96274.30300397708, + null, + 96441.85290714615, + 96042.0069575773, + null, + 96441.85290714615, + 97385.79270355738, + null, + 96441.85290714615, + 96229.39248836122, + null, + 96441.85290714615, + 96126.32784334563, + null, + 96441.85290714615, + 96635.17803046739, + null, + 96441.85290714615, + 96526.03756640776, + null, + 96441.85290714615, + 96032.39838433285, + null, + 96441.85290714615, + 97463.6827927217, + null, + 96441.85290714615, + 95854.85581067526, + null, + 96441.85290714615, + 96404.04885412315, + null, + 96441.85290714615, + 96940.5437378161, + null, + 96441.85290714615, + 96906.44900909, + null, + 96441.85290714615, + 96406.17290872385, + null, + 96441.85290714615, + 97193.59098538685, + null, + 96441.85290714615, + 97229.6312230193, + null, + 96441.85290714615, + 96433.95166449582, + null, + 96441.85290714615, + 97275.9101009866, + null, + 96441.85290714615, + 96243.29294451735, + null, + 96441.85290714615, + 97395.09075685765, + null, + 96441.85290714615, + 96491.31294403854, + null, + 96441.85290714615, + 96377.89286649457, + null, + 96441.85290714615, + 96395.26906016511, + null, + 96441.85290714615, + 97324.02537320471, + null, + 97203.18137378134, + 97620.07637011069, + null, + 97362.57990476971, + 97651.32746016643, + null, + 97362.57990476971, + 97136.55546326986, + null, + 97362.57990476971, + 97605.64203060168, + null, + 97362.57990476971, + 97499.57548817585, + null, + 97362.57990476971, + 97615.00090956, + null, + 97362.57990476971, + 97672.92128722146, + null, + 96430.3182329276, + 96147.39169169297, + null, + 97216.0877466562, + 97643.64988982778, + null, + 97216.0877466562, + 97033.93508477152, + null, + 97216.0877466562, + 97602.881367329, + null, + 97087.72560216134, + 97306.68660394431, + null, + 97087.72560216134, + 97519.14188663122, + null, + 97087.72560216134, + 96800.95464898097, + null, + 97087.72560216134, + 96931.14707892697, + null, + 96827.37265721356, + 97155.50811563137, + null, + 96827.37265721356, + 96918.79607718707, + null, + 96827.37265721356, + 96612.17178282065, + null, + 97471.93322774443, + 98171.17574764158, + null, + 96478.42530029602, + 96541.43397278279, + null, + 96478.42530029602, + 96167.45474416234, + null, + 96478.42530029602, + 95870.52327035548, + null, + 96478.42530029602, + 96926.74644690406, + null, + 96478.42530029602, + 96878.0650637567, + null, + 96478.42530029602, + 96356.62202527624, + null, + 97500.18404094946, + 97610.48729478249, + null, + 97500.18404094946, + 97375.10606040448, + null, + 97500.18404094946, + 98168.55916640947, + null, + 96989.78155035034, + 97401.99871940678, + null, + 96989.78155035034, + 96722.2929728447, + null, + 96989.78155035034, + 97054.36607374287, + null, + 96989.78155035034, + 96603.25260090239, + null, + 98448.42923749553, + 98932.31091884513, + null, + 98448.42923749553, + 98926.20655583622, + null, + 98448.42923749553, + 98881.20399257346, + null, + 98448.42923749553, + 98873.6590998779, + null, + 98448.42923749553, + 98776.08147395353, + null, + 98448.42923749553, + 98916.08043593282, + null, + 98448.42923749553, + 98775.64297666437, + null, + 98448.42923749553, + 98833.5386160878, + null, + 98448.42923749553, + 98779.4951496633, + null, + 98448.42923749553, + 98769.87019965112, + null, + 98448.42923749553, + 98763.69912444155, + null, + 98448.42923749553, + 98715.38337956829, + null, + 98448.42923749553, + 98838.01226486915, + null, + 98448.42923749553, + 98731.25835265023, + null, + 98448.42923749553, + 98794.9356782363, + null, + 98448.42923749553, + 98875.12446310604, + null, + 98448.42923749553, + 98845.6917714939, + null, + 97143.83269179585, + 97598.41715003968, + null, + 97143.83269179585, + 97191.15673842629, + null, + 97369.40146033755, + 97554.49945784982, + null, + 97339.71103793576, + 97136.55546326986, + null, + 97339.71103793576, + 97605.64203060168, + null, + 97339.71103793576, + 97651.32746016643, + null, + 97339.71103793576, + 97499.57548817585, + null, + 97339.71103793576, + 97615.00090956, + null, + 97339.71103793576, + 97672.92128722146, + null, + 96553.64509810388, + 96994.3545714313, + null, + 96553.64509810388, + 96415.73464421919, + null, + 96553.64509810388, + 96234.84158094184, + null, + 97302.65739635656, + 97792.47295206528, + null, + 97335.30821090189, + 97740.36484145897, + null, + 96554.76711541406, + 96462.81227754163, + null, + 97344.39094759998, + 97740.36484145897, + null, + 98269.13543855402, + 97852.29653105894, + null, + 98269.13543855402, + 97497.28727853562, + null, + 98269.13543855402, + 97343.57538035887, + null, + 98269.13543855402, + 97366.39316478191, + null, + 98269.13543855402, + 97781.84828947709, + null, + 98269.13543855402, + 98514.4612858039, + null, + 98269.13543855402, + 98281.43831840085, + null, + 98269.13543855402, + 97921.70930511011, + null, + 98269.13543855402, + 97902.18401137421, + null, + 98269.13543855402, + 98983.632695647, + null, + 98269.13543855402, + 99203.2809335762, + null, + 98269.13543855402, + 98509.44614370928, + null, + 98269.13543855402, + 96494.98600367835, + null, + 98269.13543855402, + 98740.78608913493, + null, + 98269.13543855402, + 99612.16066233935, + null, + 98269.13543855402, + 100399.53610597138, + null, + 98269.13543855402, + 99242.27473376936, + null, + 98269.13543855402, + 97873.62352691275, + null, + 98269.13543855402, + 98601.01896303026, + null, + 98269.13543855402, + 97723.80989181406, + null, + 98269.13543855402, + 98367.93488464183, + null, + 98269.13543855402, + 98698.73643764145, + null, + 98269.13543855402, + 98474.73668821216, + null, + 98269.13543855402, + 97769.5225019777, + null, + 98269.13543855402, + 98424.79828892439, + null, + 98269.13543855402, + 98849.99134497087, + null, + 98269.13543855402, + 97153.8202347327, + null, + 98269.13543855402, + 97784.87511330319, + null, + 98269.13543855402, + 98488.59232974793, + null, + 98269.13543855402, + 97835.98880603131, + null, + 98269.13543855402, + 98697.76296828069, + null, + 98269.13543855402, + 98425.30418388022, + null, + 98269.13543855402, + 97352.5478411118, + null, + 98269.13543855402, + 99087.60514794616, + null, + 98269.13543855402, + 99562.51936967154, + null, + 98269.13543855402, + 97438.32392949228, + null, + 98269.13543855402, + 99581.18821252153, + null, + 98269.13543855402, + 98484.49246054886, + null, + 98269.13543855402, + 98589.19418356709, + null, + 98269.13543855402, + 99047.9458477898, + null, + 98269.13543855402, + 97904.87372888521, + null, + 98269.13543855402, + 98685.34030967425, + null, + 98269.13543855402, + 97236.56543939441, + null, + 98269.13543855402, + 98552.63522931661, + null, + 97120.93183600294, + 97306.68660394431, + null, + 97120.93183600294, + 97519.14188663122, + null, + 97120.93183600294, + 96931.14707892697, + null, + 97096.28494217026, + 97440.7506574999, + null, + 96822.6506902651, + 97375.10606040448, + null, + 96822.6506902651, + 96448.97691094204, + null, + 96822.6506902651, + 96722.2929728447, + null, + 97442.83746991267, + 97272.57643613985, + null, + 97442.83746991267, + 96709.59744547942, + null, + 97442.83746991267, + 98547.70620576198, + null, + 97442.83746991267, + 97115.24870623546, + null, + 96832.47969398995, + 96930.11819667481, + null, + 96832.47969398995, + 97074.16623154836, + null, + 96832.47969398995, + 96568.92366528956, + null, + 97815.81719436, + 98713.83774017166, + null, + 97815.81719436, + 98345.9554260893, + null, + 97815.81719436, + 97740.55752143663, + null, + 98066.53944077659, + 97988.18684320113, + null, + 98066.53944077659, + 99349.28939642792, + null, + 97949.99254977489, + 96556.14889918086, + null, + 97949.99254977489, + 99625.77747749203, + null, + 97949.99254977489, + 98427.86290460796, + null, + 97258.58975162834, + 97740.36484145897, + null, + 97072.87553268592, + 97468.41119559384, + null, + 97177.44060503879, + 97532.46968364714, + null, + 97177.44060503879, + 97025.5243570638, + null, + 98940.06816975218, + 97403.19800982128, + null, + 98940.06816975218, + 99189.38105820611, + null, + 98940.06816975218, + 99130.3078520612, + null, + 98940.06816975218, + 98512.10297397664, + null, + 98940.06816975218, + 98519.8177010953, + null, + 98940.06816975218, + 99017.67985713482, + null, + 98940.06816975218, + 97619.72683427205, + null, + 98940.06816975218, + 98914.83209812317, + null, + 98940.06816975218, + 98147.84267591721, + null, + 98940.06816975218, + 97949.55637290105, + null, + 98940.06816975218, + 99502.83924873942, + null, + 98940.06816975218, + 98872.0205731119, + null, + 98940.06816975218, + 98390.87404103394, + null, + 98940.06816975218, + 99053.11429206465, + null, + 98940.06816975218, + 102016.60254936705, + null, + 98940.06816975218, + 98075.21405525423, + null, + 98940.06816975218, + 99162.58751241713, + null, + 98940.06816975218, + 99982.38307176298, + null, + 98940.06816975218, + 98292.59127337417, + null, + 98940.06816975218, + 100060.98457894419, + null, + 98940.06816975218, + 99185.22072761349, + null, + 98940.06816975218, + 97947.04358444022, + null, + 98940.06816975218, + 97474.60738990385, + null, + 98940.06816975218, + 99170.7047386012, + null, + 98940.06816975218, + 98052.15218821482, + null, + 98940.06816975218, + 98616.68136712202, + null, + 98940.06816975218, + 99500.63364741569, + null, + 98940.06816975218, + 98316.9751512879, + null, + 98940.06816975218, + 99176.98993944687, + null, + 98940.06816975218, + 99162.04598470115, + null, + 98940.06816975218, + 97788.31675277463, + null, + 98940.06816975218, + 100348.89954635833, + null, + 98940.06816975218, + 99148.26930216937, + null, + 98940.06816975218, + 100486.82668676783, + null, + 98940.06816975218, + 99758.98817475478, + null, + 98940.06816975218, + 96889.7794321626, + null, + 98940.06816975218, + 99026.6226858807, + null, + 98940.06816975218, + 99069.25619307961, + null, + 98940.06816975218, + 101823.31476410347, + null, + 98940.06816975218, + 98379.14339417113, + null, + 98940.06816975218, + 101380.81652138675, + null, + 98940.06816975218, + 99254.27452910501, + null, + 98940.06816975218, + 99227.13583415966, + null, + 98940.06816975218, + 98212.04884196128, + null, + 98940.06816975218, + 99094.77135415385, + null, + 98940.06816975218, + 98915.86627395742, + null, + 98940.06816975218, + 98121.78812235915, + null, + 98940.06816975218, + 99010.43098706538, + null, + 98940.06816975218, + 99006.76819217965, + null, + 98940.06816975218, + 98421.28339426052, + null, + 98940.06816975218, + 98918.94691074, + null, + 98940.06816975218, + 98809.12475691538, + null, + 98940.06816975218, + 99070.331362437, + null, + 98940.06816975218, + 97874.19535094783, + null, + 98940.06816975218, + 98942.96036569965, + null, + 98940.06816975218, + 98368.76399286573, + null, + 98940.06816975218, + 97911.02555719024, + null, + 98940.06816975218, + 98818.24534258251, + null, + 98940.06816975218, + 99191.65795239966, + null, + 98940.06816975218, + 99272.95214509276, + null, + 98940.06816975218, + 98629.16309416488, + null, + 98940.06816975218, + 98896.61825153053, + null, + 98940.06816975218, + 97353.8831923671, + null, + 98940.06816975218, + 98413.72450899602, + null, + 98940.06816975218, + 99048.52954857876, + null, + 98940.06816975218, + 99860.44427206193, + null, + 98940.06816975218, + 99875.65907184825, + null, + 98940.06816975218, + 98991.31426615387, + null, + 98940.06816975218, + 98545.72335094343, + null, + 98940.06816975218, + 99143.15955432564, + null, + 98940.06816975218, + 97910.12779784399, + null, + 98940.06816975218, + 98656.64266720755, + null, + 98940.06816975218, + 98406.94597948619, + null, + 98940.06816975218, + 97476.14534117641, + null, + 98940.06816975218, + 97524.08090876219, + null, + 98940.06816975218, + 99171.65872471192, + null, + 98940.06816975218, + 99548.50572708945, + null, + 98940.06816975218, + 97949.35571979226, + null, + 98940.06816975218, + 99391.34679357102, + null, + 98940.06816975218, + 98722.02495329459, + null, + 98940.06816975218, + 99374.50165106604, + null, + 98940.06816975218, + 97825.10446462789, + null, + 98940.06816975218, + 97650.77807951198, + null, + 98940.06816975218, + 99091.39852136569, + null, + 98940.06816975218, + 98663.5728126574, + null, + 98940.06816975218, + 98159.03165818081, + null, + 98940.06816975218, + 99060.55516943279, + null, + 98940.06816975218, + 99070.36691418258, + null, + 98940.06816975218, + 94807.18741906618, + null, + 98940.06816975218, + 99956.68584656977, + null, + 98940.06816975218, + 99881.38194405592, + null, + 98940.06816975218, + 99269.75421848508, + null, + 98940.06816975218, + 98657.65560967932, + null, + 98940.06816975218, + 99187.14420424569, + null, + 98940.06816975218, + 99130.37213728795, + null, + 98940.06816975218, + 98433.94367818839, + null, + 98940.06816975218, + 98598.39852284717, + null, + 98940.06816975218, + 99397.67295607875, + null, + 98940.06816975218, + 100062.94026884029, + null, + 98940.06816975218, + 99683.93197275087, + null, + 98940.06816975218, + 98942.47918301482, + null, + 98940.06816975218, + 98372.2920372052, + null, + 98940.06816975218, + 99106.89445006047, + null, + 98940.06816975218, + 99057.76069575727, + null, + 98940.06816975218, + 98225.6719769043, + null, + 98940.06816975218, + 98965.17216239334, + null, + 98940.06816975218, + 99161.06627467804, + null, + 98940.06816975218, + 100038.45200630881, + null, + 98940.06816975218, + 99231.69745173643, + null, + 98940.06816975218, + 99643.13410786055, + null, + 98940.06816975218, + 99121.89628822553, + null, + 98940.06816975218, + 98896.0953062042, + null, + 98940.06816975218, + 98996.3949186886, + null, + 98940.06816975218, + 99010.23040006083, + null, + 98940.06816975218, + 99067.43224177675, + null, + 98940.06816975218, + 98982.5538246546, + null, + 98940.06816975218, + 99326.93888038411, + null, + 98940.06816975218, + 97455.17599729972, + null, + 98940.06816975218, + 98980.69875328755, + null, + 98940.06816975218, + 99685.34161040152, + null, + 98940.06816975218, + 100612.93716200726, + null, + 98940.06816975218, + 99244.69832153102, + null, + 98940.06816975218, + 99226.22079845401, + null, + 98940.06816975218, + 99091.55472439228, + null, + 98940.06816975218, + 99026.64548034257, + null, + 98940.06816975218, + 98688.75667619119, + null, + 98940.06816975218, + 99060.11730816362, + null, + 98940.06816975218, + 99629.11999021804, + null, + 98940.06816975218, + 99571.7539254891, + null, + 98940.06816975218, + 99395.9830884571, + null, + 98940.06816975218, + 99183.91384425001, + null, + 98940.06816975218, + 99022.60912279715, + null, + 98940.06816975218, + 98991.26055747598, + null, + 98940.06816975218, + 99097.9010589485, + null, + 98016.83324711236, + 98904.92041991555, + null, + 98016.83324711236, + 98790.64444216965, + null, + 97830.47996234937, + 98653.03461351694, + null, + 97830.47996234937, + 98528.28228471124, + null, + 97830.47996234937, + 96470.76012407262, + null, + 97830.47996234937, + 98077.79681744472, + null, + 97830.47996234937, + 99214.362436891, + null, + 97767.76658830828, + 98581.61307739322, + null, + 97767.76658830828, + 97662.82472168292, + null, + 97767.76658830828, + 97762.19782518726, + null, + 97767.76658830828, + 98322.0050156767, + null, + 97299.95033359852, + 97740.36484145897, + null, + 97365.44574077036, + 97740.36484145897, + null, + 97290.08489077912, + 97740.36484145897, + null, + 97322.93543564298, + 97740.36484145897, + null, + 97060.5787311115, + 97468.41119559384, + null, + 97049.53534278259, + 97228.17238280359, + null, + 97242.69405553193, + 97740.36484145897, + null, + 98081.17812602762, + 98186.65877994802, + null, + 98081.17812602762, + 98241.1113495342, + null, + 98081.17812602762, + 98809.36210538005, + null, + 98081.17812602762, + 98799.40792106478, + null, + 98081.17812602762, + 98692.54803294275, + null, + 97249.66244594876, + 97740.36484145897, + null, + 97854.52508088839, + 98857.10511058902, + null, + 97955.02720756274, + 98692.54803294275, + null, + 97955.02720756274, + 98818.13714193161, + null, + 97077.71122197901, + 97358.46679886585, + null, + 96385.16496434633, + 96071.64726551576, + null, + 97510.89358759671, + 98184.18254674674, + null, + 98459.92232309152, + 98932.31091884513, + null, + 98459.92232309152, + 98926.20655583622, + null, + 98459.92232309152, + 98881.20399257346, + null, + 98459.92232309152, + 98873.6590998779, + null, + 98459.92232309152, + 98776.08147395353, + null, + 98459.92232309152, + 98916.08043593282, + null, + 98459.92232309152, + 98775.64297666437, + null, + 98459.92232309152, + 98833.5386160878, + null, + 98459.92232309152, + 98779.4951496633, + null, + 98459.92232309152, + 98769.87019965112, + null, + 98459.92232309152, + 98763.69912444155, + null, + 98459.92232309152, + 98715.38337956829, + null, + 98459.92232309152, + 98838.01226486915, + null, + 98459.92232309152, + 98731.25835265023, + null, + 98459.92232309152, + 98794.9356782363, + null, + 98459.92232309152, + 98875.12446310604, + null, + 98459.92232309152, + 98845.6917714939, + null, + 97615.68830856765, + 98420.51887894224, + null, + 98138.33403478275, + 99085.54243090276, + null, + 98138.33403478275, + 99105.27578480003, + null, + 97827.98206777098, + 98161.02751086211, + null, + 97827.98206777098, + 98705.71088691853, + null, + 97827.98206777098, + 97375.10606040448, + null, + 97827.98206777098, + 98721.31378803315, + null, + 97827.98206777098, + 98128.91359559372, + null, + 97827.98206777098, + 98293.07266113821, + null, + 97827.98206777098, + 97827.63907828067, + null, + 97827.98206777098, + 98054.0065827654, + null, + 97827.98206777098, + 96722.2929728447, + null, + 97827.98206777098, + 98251.89202247094, + null, + 97827.98206777098, + 98211.55320628641, + null, + 97827.98206777098, + 97401.99871940678, + null, + 97827.98206777098, + 96475.17933169345, + null, + 97827.98206777098, + 98168.55916640947, + null, + 97827.98206777098, + 98568.00044350624, + null, + 97827.98206777098, + 98364.36914082733, + null, + 97827.98206777098, + 98331.41182590384, + null, + 97827.98206777098, + 98163.10895570937, + null, + 97827.98206777098, + 97554.9960699299, + null, + 97827.98206777098, + 98038.14058948433, + null, + 97827.98206777098, + 98858.81885856122, + null, + 97827.98206777098, + 96255.92043157357, + null, + 97827.98206777098, + 98120.00401419179, + null, + 97827.98206777098, + 99907.08283776883, + null, + 97827.98206777098, + 97770.11547186453, + null, + 97827.98206777098, + 98260.97237711879, + null, + 97827.98206777098, + 98649.88742805325, + null, + 97827.98206777098, + 98112.09979592523, + null, + 97827.98206777098, + 98728.80932783807, + null, + 97827.98206777098, + 98743.18237840163, + null, + 97827.98206777098, + 96497.28753916033, + null, + 97827.98206777098, + 99041.0309662276, + null, + 97827.98206777098, + 98538.18176070268, + null, + 97827.98206777098, + 98404.5074674531, + null, + 97827.98206777098, + 98168.58123872355, + null, + 97827.98206777098, + 99485.28366531829, + null, + 97827.98206777098, + 98727.3121423661, + null, + 97827.98206777098, + 98706.38695246876, + null, + 97827.98206777098, + 98212.5660722969, + null, + 97827.98206777098, + 96338.9907537572, + null, + 97827.98206777098, + 94647.79050717162, + null, + 97827.98206777098, + 98994.41997788764, + null, + 96467.8745823571, + 96237.3014003704, + null, + 95886.51435711926, + 94688.11906145522, + null, + 95886.51435711926, + 96639.48963731402, + null, + 95886.51435711926, + 95635.79388111227, + null, + 95886.51435711926, + 95971.63945756324, + null, + 95886.51435711926, + 96148.36985614852, + null, + 98461.45076976992, + 98932.31091884513, + null, + 98461.45076976992, + 98926.20655583622, + null, + 98461.45076976992, + 98881.20399257346, + null, + 98461.45076976992, + 98873.6590998779, + null, + 98461.45076976992, + 98776.08147395353, + null, + 98461.45076976992, + 98916.08043593282, + null, + 98461.45076976992, + 98775.64297666437, + null, + 98461.45076976992, + 98833.5386160878, + null, + 98461.45076976992, + 98779.4951496633, + null, + 98461.45076976992, + 98769.87019965112, + null, + 98461.45076976992, + 98763.69912444155, + null, + 98461.45076976992, + 98715.38337956829, + null, + 98461.45076976992, + 98838.01226486915, + null, + 98461.45076976992, + 98731.25835265023, + null, + 98461.45076976992, + 98794.9356782363, + null, + 98461.45076976992, + 98875.12446310604, + null, + 98461.45076976992, + 98845.6917714939, + null, + 98367.57183739317, + 98932.31091884513, + null, + 98367.57183739317, + 98926.20655583622, + null, + 98367.57183739317, + 98881.20399257346, + null, + 98367.57183739317, + 98873.6590998779, + null, + 98367.57183739317, + 98776.08147395353, + null, + 98367.57183739317, + 98916.08043593282, + null, + 98367.57183739317, + 97265.23793720463, + null, + 98367.57183739317, + 98833.5386160878, + null, + 98367.57183739317, + 98779.4951496633, + null, + 98367.57183739317, + 98769.87019965112, + null, + 98367.57183739317, + 98763.69912444155, + null, + 98367.57183739317, + 98715.38337956829, + null, + 98367.57183739317, + 98838.01226486915, + null, + 98367.57183739317, + 98731.25835265023, + null, + 98367.57183739317, + 98794.9356782363, + null, + 98367.57183739317, + 98875.12446310604, + null, + 98367.57183739317, + 98845.6917714939, + null, + 96854.14568860013, + 96877.98110658897, + null, + 96854.14568860013, + 97082.82303991095, + null, + 96854.14568860013, + 96888.812856475, + null, + 96854.14568860013, + 96702.93382964614, + null, + 96854.14568860013, + 96685.11446346446, + null, + 96854.14568860013, + 96692.14973493623, + null, + 97266.32321649927, + 97854.41540216467, + null, + 97266.32321649927, + 96886.64740803099, + null, + 97363.0231077364, + 97740.36484145897, + null, + 97395.40628065314, + 97740.36484145897, + null, + 96172.41683035072, + 96012.22372465217, + null, + 96172.41683035072, + 95855.37346994528, + null, + 96172.41683035072, + 96019.51490257688, + null, + 96172.41683035072, + 95928.73602388412, + null, + 96250.45766620964, + 95655.37022945724, + null, + 96250.45766620964, + 96175.94057358746, + null, + 95520.1645763566, + 98401.53156330762, + null, + 95520.1645763566, + 95386.7915315098, + null, + 95520.1645763566, + 95383.19508052658, + null, + 95520.1645763566, + 92604.63107627998, + null, + 98448.70225290018, + 98932.31091884513, + null, + 98448.70225290018, + 98926.20655583622, + null, + 98448.70225290018, + 98881.20399257346, + null, + 98448.70225290018, + 98873.6590998779, + null, + 98448.70225290018, + 98776.08147395353, + null, + 98448.70225290018, + 98916.08043593282, + null, + 98448.70225290018, + 98775.64297666437, + null, + 98448.70225290018, + 98833.5386160878, + null, + 98448.70225290018, + 98779.4951496633, + null, + 98448.70225290018, + 98769.87019965112, + null, + 98448.70225290018, + 98763.69912444155, + null, + 98448.70225290018, + 98715.38337956829, + null, + 98448.70225290018, + 98838.01226486915, + null, + 98448.70225290018, + 98731.25835265023, + null, + 98448.70225290018, + 98794.9356782363, + null, + 98448.70225290018, + 98875.12446310604, + null, + 98448.70225290018, + 98845.6917714939, + null, + 96321.45254240566, + 95893.574265848, + null, + 97264.50790734109, + 97740.36484145897, + null, + 97236.52009824176, + 97740.36484145897, + null, + 97339.43922054533, + 97740.36484145897, + null, + 97243.18425457999, + 97740.36484145897, + null, + 97315.50747893736, + 97740.36484145897, + null, + 97215.05533166551, + 97740.36484145897, + null, + 96750.67919465902, + 97228.17238280359, + null, + 96750.67919465902, + 96287.81181504241, + null, + 96758.2131173848, + 97228.17238280359, + null, + 96758.2131173848, + 96287.81181504241, + null, + 96298.09511180542, + 96026.40843242637, + null, + 96298.09511180542, + 96114.05896419227, + null, + 95861.24531062585, + 95834.93768300924, + null, + 95861.24531062585, + 95619.17778565394, + null, + 95861.24531062585, + 96108.40628370653, + null, + 95861.24531062585, + 95731.71785167878, + null, + 95861.24531062585, + 95777.00472574684, + null, + 95861.24531062585, + 95353.54589236321, + null, + 95861.24531062585, + 95800.17831353597, + null, + 95861.24531062585, + 95203.24310226098, + null, + 95861.24531062585, + 95930.34153333298, + null, + 95861.24531062585, + 95903.12103009703, + null, + 96714.78752865449, + 96914.4073833856, + null, + 96714.78752865449, + 97103.69288164194, + null, + 96714.78752865449, + 96898.52471952, + null, + 96714.78752865449, + 96820.8105552239, + null, + 96714.78752865449, + 96112.34947297389, + null, + 96714.78752865449, + 96008.4744666249, + null, + 96714.78752865449, + 96893.41939654587, + null, + 96714.78752865449, + 96865.8409444725, + null, + 96714.78752865449, + 97240.38028997074, + null, + 96714.78752865449, + 96876.82259242256, + null, + 96714.78752865449, + 96619.39742322621, + null, + 96714.78752865449, + 96882.99940588712, + null, + 96714.78752865449, + 96861.44317975816, + null, + 96714.78752865449, + 96768.5817251259, + null, + 96714.78752865449, + 96559.08563953191, + null, + 96714.78752865449, + 96649.40356388739, + null, + 96714.78752865449, + 96625.72014898527, + null, + 97410.9196281361, + 97992.50506999153, + null, + 96859.54396498862, + 97617.39505268811, + null, + 96859.54396498862, + 96070.12571463303, + null, + 96181.25693811684, + 95866.20481677107, + null, + 96181.25693811684, + 95662.62644960554, + null, + 96181.25693811684, + 96100.86678198376, + null, + 96930.48088011655, + 95405.1846400074, + null, + 96930.48088011655, + 98524.57731541038, + null, + 97770.14515646077, + 98061.51654616423, + null, + 97770.14515646077, + 98127.50014794023, + null, + 97770.14515646077, + 98433.46713226559, + null, + 97770.14515646077, + 98303.3954720316, + null, + 97490.27494702111, + 98184.18254674674, + null, + 97286.18570891903, + 97740.36484145897, + null, + 97389.10178705663, + 97740.36484145897, + null, + 97331.16186692334, + 97740.36484145897, + null, + 96488.13453110759, + 96465.29272664362, + null, + 96488.13453110759, + 96421.49499570957, + null, + 96074.87019613585, + 95652.29809552783, + null, + 96074.87019613585, + 95574.25352251745, + null, + 97074.27772427908, + 97306.68660394431, + null, + 97074.27772427908, + 97519.14188663122, + null, + 97074.27772427908, + 96800.95464898097, + null, + 97074.27772427908, + 96931.14707892697, + null, + 96074.67218939119, + 94671.14162737239, + null, + 96074.67218939119, + 96918.79607718707, + null, + 96074.67218939119, + 96959.17409848377, + null, + 97117.04988156656, + 97196.83695998523, + null, + 97117.04988156656, + 97409.25368271414, + null, + 97117.04988156656, + 97234.04346137235, + null, + 97117.04988156656, + 97434.01515339047, + null, + 97117.04988156656, + 97272.13864563021, + null, + 95962.08383797004, + 96276.76290288504, + null, + 95958.17194866823, + 96276.76290288504, + null, + 96138.27909570166, + 97155.50811563137, + null, + 96138.27909570166, + 96918.79607718707, + null, + 96138.27909570166, + 95778.09112358528, + null, + 96138.27909570166, + 95567.54268381129, + null, + 96138.27909570166, + 95681.96009977852, + null, + 96138.27909570166, + 95501.99445714205, + null, + 96138.27909570166, + 95451.74998648891, + null, + 97145.57365835275, + 97324.16299961129, + null, + 97145.57365835275, + 97481.45108043253, + null, + 95954.7235059804, + 95459.71080597503, + null, + 95954.7235059804, + 95638.78273951489, + null, + 95954.7235059804, + 95521.93192587548, + null, + 95954.7235059804, + 96559.7026621268, + null, + 97344.23333565774, + 97740.36484145897, + null, + 97312.16899856621, + 97740.36484145897, + null, + 97226.77467613107, + 97740.36484145897, + null, + 97363.94242415007, + 97740.36484145897, + null, + 96602.40260405943, + 96622.87666955806, + null, + 96602.40260405943, + 96449.25631444062, + null, + 95405.95241141658, + 94919.54440569754, + null, + 95405.95241141658, + 94171.18973519026, + null, + 97026.79872519187, + 97228.17238280359, + null, + 96882.48118360608, + 96959.17409848377, + null, + 96882.48118360608, + 96918.79607718707, + null, + 96170.99341163754, + 98378.94284214679, + null, + 96170.99341163754, + 94645.87712676502, + null, + 96170.99341163754, + 95834.93768300924, + null, + 96170.99341163754, + 95619.17778565394, + null, + 96170.99341163754, + 96108.40628370653, + null, + 96170.99341163754, + 95731.71785167878, + null, + 96170.99341163754, + 95777.00472574684, + null, + 96170.99341163754, + 95353.54589236321, + null, + 96170.99341163754, + 95800.17831353597, + null, + 96170.99341163754, + 95203.24310226098, + null, + 96170.99341163754, + 95930.34153333298, + null, + 96129.26226123162, + 96735.91203018947, + null, + 96129.26226123162, + 97334.69528656456, + null, + 96129.26226123162, + 95915.62243658677, + null, + 96129.26226123162, + 94473.57318014126, + null, + 96129.26226123162, + 96498.2979299931, + null, + 96129.26226123162, + 97046.83129228091, + null, + 97352.31659100096, + 97136.55546326986, + null, + 97352.31659100096, + 97605.64203060168, + null, + 97352.31659100096, + 97651.32746016643, + null, + 97352.31659100096, + 97499.57548817585, + null, + 97352.31659100096, + 97615.00090956, + null, + 97352.31659100096, + 97672.92128722146, + null, + 96609.21495158957, + 96532.6646683294, + null, + 98432.06023611217, + 98932.31091884513, + null, + 98432.06023611217, + 98926.20655583622, + null, + 98432.06023611217, + 98881.20399257346, + null, + 98432.06023611217, + 98873.6590998779, + null, + 98432.06023611217, + 98776.08147395353, + null, + 98432.06023611217, + 98916.08043593282, + null, + 98432.06023611217, + 98775.64297666437, + null, + 98432.06023611217, + 98833.5386160878, + null, + 98432.06023611217, + 98779.4951496633, + null, + 98432.06023611217, + 98769.87019965112, + null, + 98432.06023611217, + 98763.69912444155, + null, + 98432.06023611217, + 98715.38337956829, + null, + 98432.06023611217, + 98838.01226486915, + null, + 98432.06023611217, + 98731.25835265023, + null, + 98432.06023611217, + 98794.9356782363, + null, + 98432.06023611217, + 98875.12446310604, + null, + 98432.06023611217, + 98845.6917714939, + null, + 96466.10004162915, + 96214.62212633847, + null, + 95721.84547331538, + 96146.8337078855, + null, + 95721.84547331538, + 95343.9410888273, + null, + 95721.84547331538, + 95506.46666204746, + null, + 95721.84547331538, + 95380.57975889063, + null, + 95721.84547331538, + 95213.69401511893, + null, + 95721.84547331538, + 94761.32003739124, + null, + 95721.84547331538, + 96370.41426861439, + null, + 97171.80979185148, + 97598.41715003968, + null, + 97171.80979185148, + 97191.15673842629, + null, + 96673.26868148368, + 96556.18686331193, + null, + 97242.36535343947, + 97740.36484145897, + null, + 96662.13325458604, + 96600.23269030724, + null, + 95361.48898776405, + 95312.03621158424, + null, + 95361.48898776405, + 95103.86724211255, + null, + 95361.48898776405, + 94154.4683582202, + null, + 96723.71649615404, + 96651.05281133259, + null, + 96577.78689065653, + 95926.00835539421, + null, + 96577.78689065653, + 96918.79607718707, + null, + 96577.78689065653, + 96959.17409848377, + null, + 96304.89053116819, + 95794.56902475153, + null, + 96020.02948032114, + 95275.96542639584, + null, + 94721.83869654656, + 92619.51334005372, + null, + 94721.83869654656, + 95388.1231928088, + null, + 97298.65959230787, + 97740.36484145897, + null, + 96640.12295334176, + 96533.09552389133, + null, + 96271.64391619014, + 96602.4666381394, + null, + 96271.64391619014, + 95710.95963260993, + null, + 96408.13622599524, + 96173.23715080458, + null, + 96408.13622599524, + 96169.80106348639, + null, + 97309.18348925584, + 97740.36484145897, + null, + 97289.56699193796, + 97740.36484145897, + null, + 97270.2903153982, + 97740.36484145897, + null, + 96874.40221688445, + 96919.26178312073, + null, + 96874.40221688445, + 96999.24006270662, + null, + 96874.40221688445, + 96911.02758063171, + null, + 96746.46975225132, + 96767.7608495193, + null, + 96348.29844805674, + 97228.17238280359, + null, + 96348.29844805674, + 95402.18303854323, + null, + 96668.17509388815, + 96616.28197124632, + null, + 96668.17509388815, + 96643.07015445872, + null, + 96668.17509388815, + 96611.07880435153, + null, + 96090.94263214861, + 95963.6655367038, + null, + 96090.94263214861, + 96323.93164666534, + null, + 96090.94263214861, + 96035.94449947504, + null, + 96090.94263214861, + 95826.13450428299, + null, + 96360.12432055575, + 95894.3821805092, + null, + 96360.12432055575, + 96167.45474416234, + null, + 96360.12432055575, + 96878.0650637567, + null, + 96360.12432055575, + 96926.74644690406, + null, + 96360.12432055575, + 95735.81320135522, + null, + 96813.03260829017, + 96785.2273252981, + null, + 96852.64814433026, + 96844.44949459478, + null, + 96852.64814433026, + 96868.09370002619, + null, + 96852.64814433026, + 96840.061255232, + null, + 97324.36613168383, + 97740.36484145897, + null, + 97379.06355223498, + 97740.36484145897, + null, + 96719.96913872726, + 97228.17238280359, + null, + 96719.96913872726, + 96287.81181504241, + null, + 96565.3052812955, + 96450.55318015978, + null, + 96062.65271303893, + 96234.86536056163, + null, + 96062.65271303893, + 95388.1231928088, + null, + 96318.63129865125, + 95910.45905898156, + null, + 97357.37235340624, + 97740.36484145897, + null, + 97277.72395289454, + 97740.36484145897, + null, + 97289.76170017247, + 97740.36484145897, + null, + 97289.76170017247, + 97216.8097752767, + null, + 97321.48237207504, + 97740.36484145897, + null, + 97227.68741107298, + 97740.36484145897, + null, + 97204.20955384977, + 97740.36484145897, + null, + 96229.06326601339, + 95733.15082062641, + null, + 97325.19271104848, + 97651.32746016643, + null, + 97325.19271104848, + 97136.55546326986, + null, + 97325.19271104848, + 97605.64203060168, + null, + 97325.19271104848, + 97499.57548817585, + null, + 97325.19271104848, + 97615.00090956, + null, + 97325.19271104848, + 97672.92128722146, + null, + 97617.21646735941, + 98127.50014794023, + null, + 97617.21646735941, + 97623.71573684271, + null, + 97617.21646735941, + 98303.3954720316, + null, + 98449.27256362812, + 98932.31091884513, + null, + 98449.27256362812, + 98926.20655583622, + null, + 98449.27256362812, + 98881.20399257346, + null, + 98449.27256362812, + 98873.6590998779, + null, + 98449.27256362812, + 98776.08147395353, + null, + 98449.27256362812, + 98916.08043593282, + null, + 98449.27256362812, + 98775.64297666437, + null, + 98449.27256362812, + 98833.5386160878, + null, + 98449.27256362812, + 98779.4951496633, + null, + 98449.27256362812, + 98769.87019965112, + null, + 98449.27256362812, + 98763.69912444155, + null, + 98449.27256362812, + 98715.38337956829, + null, + 98449.27256362812, + 98838.01226486915, + null, + 98449.27256362812, + 98731.25835265023, + null, + 98449.27256362812, + 98794.9356782363, + null, + 98449.27256362812, + 98875.12446310604, + null, + 98449.27256362812, + 98845.6917714939, + null, + 96581.33099308431, + 96556.18686331193, + null, + 97228.58212383334, + 97740.36484145897, + null, + 97299.24309043337, + 97740.36484145897, + null, + 97252.41548140156, + 97740.36484145897, + null, + 97357.81547028142, + 97740.36484145897, + null, + 97236.43218292532, + 97740.36484145897, + null, + 97305.00730192695, + 97740.36484145897, + null, + 97195.88804075729, + 97532.46968364714, + null, + 97195.88804075729, + 97358.46679886585, + null, + 97218.59509104007, + 97532.46968364714, + null, + 97218.59509104007, + 97358.46679886585, + null, + 96261.3196088678, + 96003.07301754713, + null, + 96261.3196088678, + 95855.84606940606, + null, + 93808.41622785716, + 90620.59321338178, + null, + 93808.41622785716, + 94139.8012458913, + null, + 93808.41622785716, + 94032.80335215264, + null, + 93808.41622785716, + 93807.67468704915, + null, + 93808.41622785716, + 94732.86002550159, + null, + 96850.96393927754, + 96955.0168977828, + null, + 96537.12189876002, + 96373.51181593174, + null, + 96361.20003453246, + 96024.31193605777, + null, + 96470.92604424445, + 96039.53114090665, + null, + 96470.92604424445, + 96558.40139577903, + null, + 96487.89609305817, + 96648.53242134354, + null, + 96487.89609305817, + 96344.26723680123, + null, + 96487.89609305817, + 96248.28034246547, + null, + 96645.9713144198, + 96483.28090692386, + null, + 96399.42211136232, + 96054.44520130524, + null, + 96412.58182949589, + 96524.24227801626, + null, + 96412.58182949589, + 96583.58536032659, + null, + 96412.58182949589, + 95881.63940456003, + null, + 95545.86201701668, + 95096.87780489783, + null, + 95545.86201701668, + 94429.634403017, + null, + 96748.01232561683, + 96769.24653086865, + null, + 96556.53529112086, + 95885.77494615254, + null, + 96556.53529112086, + 97401.66966851291, + null, + 96556.53529112086, + 96529.94166735753, + null, + 96556.53529112086, + 96400.6315649038, + null, + 96657.04377656122, + 96701.50888855853, + null, + 96657.04377656122, + 96563.36738665988, + null, + 96657.04377656122, + 96663.0086169134, + null, + 96611.79891677048, + 96404.13831153684, + null, + 97214.1761793492, + 97358.46679886585, + null, + 97214.1761793492, + 97532.46968364714, + null, + 96131.39404043475, + 95923.70592479738, + null, + 96131.39404043475, + 95540.24503251979, + null, + 96131.39404043475, + 95920.065981809, + null, + 96131.39404043475, + 95963.6655367038, + null, + 96569.72587527646, + 96456.96747554903, + null, + 96569.72587527646, + 96427.6516351581, + null, + 96569.72587527646, + 96826.02448370877, + null, + 96176.22696258772, + 95922.0581596575, + null, + 96176.22696258772, + 95802.9629154136, + null, + 96176.22696258772, + 95957.78104570328, + null, + 96176.22696258772, + 96331.52105283472, + null, + 96122.91322426367, + 96392.03219267243, + null, + 96122.91322426367, + 96039.53114090665, + null, + 96122.91322426367, + 95481.26094749449, + null, + 96122.91322426367, + 96072.651127653, + null, + 96198.64527732105, + 96107.71912624051, + null, + 96198.64527732105, + 95682.31879557903, + null, + 96198.64527732105, + 96011.6169628847, + null, + 97964.68713880659, + 98745.28871415959, + null, + 97964.68713880659, + 98737.9075507478, + null, + 97964.68713880659, + 98260.19273313228, + null, + 97183.30733835287, + 97358.46679886585, + null, + 97183.30733835287, + 97532.46968364714, + null, + 92882.88036181602, + 92403.72030892958, + null, + 92882.88036181602, + 92552.59924319923, + null, + 92882.88036181602, + 94130.55860663287, + null, + 92882.88036181602, + 92453.32910364396, + null, + 92882.88036181602, + 92636.97281790803, + null, + 92882.88036181602, + 94694.68806398017, + null, + 92882.88036181602, + 93639.94569899137, + null, + 92882.88036181602, + 94259.03278558327, + null, + 92882.88036181602, + 91080.58784143622, + null, + 92882.88036181602, + 93850.41662442079, + null, + 92882.88036181602, + 92357.81244688503, + null, + 92882.88036181602, + 92015.08959235293, + null, + 92882.88036181602, + 92793.59818111316, + null, + 92882.88036181602, + 94015.54400806065, + null, + 92882.88036181602, + 93415.0685794173, + null, + 92882.88036181602, + 92661.92845541582, + null, + 92882.88036181602, + 92700.30450697383, + null, + 92882.88036181602, + 92811.56373493784, + null, + 92882.88036181602, + 88980.87619367571, + null, + 92882.88036181602, + 93666.16904241925, + null, + 92882.88036181602, + 92727.31906879041, + null, + 92882.88036181602, + 92625.18394918887, + null, + 92882.88036181602, + 92710.21548334243, + null, + 92882.88036181602, + 92730.67067426581, + null, + 92882.88036181602, + 92599.58217260841, + null, + 92882.88036181602, + 92761.81424118878, + null, + 92882.88036181602, + 92651.26372829395, + null, + 92882.88036181602, + 92548.69810217191, + null, + 92882.88036181602, + 94753.5297564697, + null, + 92882.88036181602, + 92642.4602856306, + null, + 92882.88036181602, + 91676.43793576607, + null, + 92882.88036181602, + 92695.15487336805, + null, + 92882.88036181602, + 93155.38758721903, + null, + 92882.88036181602, + 89305.71197876369, + null, + 92882.88036181602, + 94890.65745591454, + null, + 92882.88036181602, + 93887.36045593988, + null, + 92882.88036181602, + 93682.44991506475, + null, + 92882.88036181602, + 92689.24617566908, + null, + 92882.88036181602, + 93904.56333636155, + null, + 92882.88036181602, + 92764.63612228677, + null, + 92882.88036181602, + 93226.39690794115, + null, + 92882.88036181602, + 93143.11311426201, + null, + 93947.1652778539, + 94983.58739011025, + null, + 93947.1652778539, + 93345.5384733388, + null, + 93947.1652778539, + 93475.56240329082, + null, + 93947.1652778539, + 93855.61888073095, + null, + 93947.1652778539, + 95749.39705457314, + null, + 93947.1652778539, + 94465.17063363985, + null, + 93947.1652778539, + 92913.17761014139, + null, + 93947.1652778539, + 91312.64033973779, + null, + 93947.1652778539, + 92365.60828492136, + null, + 93947.1652778539, + 93034.01413382801, + null, + 96330.25949972049, + 95922.0581596575, + null, + 96330.25949972049, + 96232.6883024668, + null, + 97170.81081425113, + 97197.31119879312, + null, + 97170.81081425113, + 97345.58098981141, + null, + 97170.81081425113, + 97401.66966851291, + null, + 95845.43465437011, + 96319.04144083924, + null, + 95845.43465437011, + 94787.68098338218, + null, + 94883.17834351698, + 96392.03219267243, + null, + 94883.17834351698, + 94304.28587484072, + null, + 94883.17834351698, + 95375.71980775791, + null, + 94883.17834351698, + 96010.91751038717, + null, + 94883.17834351698, + 94846.74238052499, + null, + 94883.17834351698, + 95360.36419013362, + null, + 94883.17834351698, + 95443.67008227661, + null, + 94883.17834351698, + 95781.4838692387, + null, + 94883.17834351698, + 95621.74045129302, + null, + 94883.17834351698, + 94709.05739456239, + null, + 94883.17834351698, + 95069.66525755977, + null, + 94883.17834351698, + 95628.14642198732, + null, + 94883.17834351698, + 94459.15082891459, + null, + 94883.17834351698, + 95527.20667464145, + null, + 94883.17834351698, + 94762.37057915328, + null, + 94883.17834351698, + 94658.19240918643, + null, + 94883.17834351698, + 94716.98202491149, + null, + 94883.17834351698, + 94759.00609204093, + null, + 94883.17834351698, + 94646.88730549908, + null, + 94883.17834351698, + 95292.52782742439, + null, + 94883.17834351698, + 95093.22706462545, + null, + 94883.17834351698, + 98085.07588417802, + null, + 94883.17834351698, + 95163.75908553116, + null, + 94883.17834351698, + 96006.77287976355, + null, + 94883.17834351698, + 95274.60828290615, + null, + 94883.17834351698, + 94773.27914431288, + null, + 94883.17834351698, + 94843.32769305678, + null, + 94883.17834351698, + 94756.04785280023, + null, + 94883.17834351698, + 94693.04021624882, + null, + 94883.17834351698, + 95274.55463163379, + null, + 94883.17834351698, + 94205.42306946588, + null, + 94883.17834351698, + 94740.62358451245, + null, + 94883.17834351698, + 94914.46333674647, + null, + 94883.17834351698, + 95731.94340542807, + null, + 94883.17834351698, + 94554.58874211222, + null, + 94883.17834351698, + 96091.204926268, + null, + 94883.17834351698, + 95643.38624755875, + null, + 94883.17834351698, + 95405.5970323345, + null, + 94883.17834351698, + 94965.90340529142, + null, + 94883.17834351698, + 94090.45690331612, + null, + 94883.17834351698, + 92687.32405817328, + null, + 94883.17834351698, + 94400.56846677243, + null, + 94883.17834351698, + 94532.99011271482, + null, + 94883.17834351698, + 94838.88278888688, + null, + 94883.17834351698, + 94912.71843664766, + null, + 94883.17834351698, + 94702.53619375687, + null, + 94883.17834351698, + 94259.06712940332, + null, + 94883.17834351698, + 95687.5583436565, + null, + 94883.17834351698, + 94745.48610069028, + null, + 94883.17834351698, + 94924.7628056497, + null, + 94883.17834351698, + 94836.83100987966, + null, + 94883.17834351698, + 94635.31494511566, + null, + 94883.17834351698, + 95171.36460552194, + null, + 94883.17834351698, + 94428.00833897035, + null, + 94883.17834351698, + 91875.6118444357, + null, + 94883.17834351698, + 94818.5478788063, + null, + 94883.17834351698, + 94803.47505405096, + null, + 94883.17834351698, + 94609.06856092627, + null, + 94883.17834351698, + 95243.05174065192, + null, + 94883.17834351698, + 94579.1668497888, + null, + 94883.17834351698, + 94710.98077661607, + null, + 94883.17834351698, + 94636.4031377064, + null, + 94883.17834351698, + 95594.04154313843, + null, + 94883.17834351698, + 94853.46116542409, + null, + 94883.17834351698, + 95262.41295878915, + null, + 94883.17834351698, + 94996.61867838957, + null, + 94883.17834351698, + 95427.51893881544, + null, + 94883.17834351698, + 95141.30835602302, + null, + 94883.17834351698, + 95135.73958053072, + null, + 94883.17834351698, + 94811.20964058898, + null, + 94883.17834351698, + 95308.98963794683, + null, + 94883.17834351698, + 95213.77887412795, + null, + 94883.17834351698, + 94550.01100453151, + null, + 94883.17834351698, + 94616.6585852082, + null, + 94883.17834351698, + 94915.01791906256, + null, + 94883.17834351698, + 94779.60175355068, + null, + 94883.17834351698, + 95651.87929649846, + null, + 94883.17834351698, + 94969.43121341393, + null, + 94883.17834351698, + 94871.66004225804, + null, + 94883.17834351698, + 94698.2564749882, + null, + 94883.17834351698, + 98122.6370414771, + null, + 94883.17834351698, + 94609.75573408123, + null, + 94883.17834351698, + 95744.51531875192, + null, + 94883.17834351698, + 95569.49080974681, + null, + 94883.17834351698, + 94553.34862649688, + null, + 94883.17834351698, + 94068.90013805934, + null, + 94883.17834351698, + 94911.10914154527, + null, + 94883.17834351698, + 93841.09081628201, + null, + 94883.17834351698, + 95055.96301467503, + null, + 94883.17834351698, + 94973.76103672285, + null, + 94883.17834351698, + 93860.33853556491, + null, + 94883.17834351698, + 94666.08189515283, + null, + 94883.17834351698, + 94804.05777877627, + null, + 94883.17834351698, + 95192.48874345585, + null, + 94883.17834351698, + 94682.03972500942, + null, + 94883.17834351698, + 94318.87336662205, + null, + 94883.17834351698, + 98071.86657727559, + null, + 94883.17834351698, + 95074.67859421566, + null, + 94883.17834351698, + 95052.34933786246, + null, + 94883.17834351698, + 94847.03071224976, + null, + 94883.17834351698, + 94712.39449672872, + null, + 94883.17834351698, + 94681.03509595625, + null, + 94883.17834351698, + 94662.70335696908, + null, + 94883.17834351698, + 94530.9667988148, + null, + 94883.17834351698, + 94394.743184273, + null, + 94883.17834351698, + 93236.21560331441, + null, + 94883.17834351698, + 95228.59152965351, + null, + 94883.17834351698, + 95599.18088294458, + null, + 94883.17834351698, + 92172.3185204082, + null, + 94883.17834351698, + 94730.79640190289, + null, + 94883.17834351698, + 95015.49625623692, + null, + 94883.17834351698, + 94674.89580671789, + null, + 94883.17834351698, + 95460.7576657949, + null, + 94883.17834351698, + 95481.26094749449, + null, + 94883.17834351698, + 94694.88936601186, + null, + 94883.17834351698, + 94637.44384110306, + null, + 94883.17834351698, + 94023.65044193376, + null, + 94883.17834351698, + 94711.8919185092, + null, + 94883.17834351698, + 94639.7976547818, + null, + 94883.17834351698, + 94969.34668009236, + null, + 94883.17834351698, + 94867.71860626241, + null, + 94883.17834351698, + 96039.53114090665, + null, + 94883.17834351698, + 94499.29954296813, + null, + 94883.17834351698, + 94412.16071475198, + null, + 94883.17834351698, + 94500.6446202604, + null, + 94883.17834351698, + 94316.72565507321, + null, + 94883.17834351698, + 94747.77428662438, + null, + 94883.17834351698, + 94831.09840327874, + null, + 94883.17834351698, + 94872.79287174557, + null, + 94883.17834351698, + 94598.10840219341, + null, + 94883.17834351698, + 94789.93569354182, + null, + 94883.17834351698, + 94645.92150016353, + null, + 94883.17834351698, + 94772.43466967792, + null, + 94883.17834351698, + 94783.49907630085, + null, + 94883.17834351698, + 94624.56371474003, + null, + 94883.17834351698, + 95782.49090316397, + null, + 94883.17834351698, + 94352.71458049152, + null, + 94883.17834351698, + 94039.43659745945, + null, + 94883.17834351698, + 94724.12280359474, + null, + 94883.17834351698, + 94549.95722461416, + null, + 94883.17834351698, + 95172.62949097781, + null, + 94883.17834351698, + 94748.03678735308, + null, + 94883.17834351698, + 95142.30696566738, + null, + 94883.17834351698, + 94079.97573473441, + null, + 94883.17834351698, + 92867.65170326555, + null, + 94883.17834351698, + 95137.86898625335, + null, + 94883.17834351698, + 94657.09089040948, + null, + 94883.17834351698, + 94592.18007251328, + null, + 94883.17834351698, + 91386.79521336866, + null, + 94883.17834351698, + 94302.9983659527, + null, + 94883.17834351698, + 95035.60486780475, + null, + 94883.17834351698, + 95213.0622434433, + null, + 94883.17834351698, + 95306.71022996533, + null, + 94883.17834351698, + 94700.77181220899, + null, + 94883.17834351698, + 94617.81259757694, + null, + 94883.17834351698, + 94535.68576734806, + null, + 94883.17834351698, + 94750.88896059677, + null, + 94883.17834351698, + 94470.20509490756, + null, + 94883.17834351698, + 94511.66669647257, + null, + 94883.17834351698, + 94490.98493329533, + null, + 94883.17834351698, + 94846.70037648812, + null, + 94883.17834351698, + 94034.72001872609, + null, + 94883.17834351698, + 94559.50779408682, + null, + 94883.17834351698, + 94466.7376842554, + null, + 94883.17834351698, + 95513.58278963793, + null, + 94883.17834351698, + 94305.51369188944, + null, + 94883.17834351698, + 94851.28150629238, + null, + 94883.17834351698, + 94772.25786639804, + null, + 94883.17834351698, + 94518.72288699445, + null, + 94883.17834351698, + 92600.87220891484, + null, + 94883.17834351698, + 94385.63245566067, + null, + 94883.17834351698, + 96765.01998356344, + null, + 94883.17834351698, + 94624.67668233525, + null, + 94883.17834351698, + 95320.26347648272, + null, + 94883.17834351698, + 94187.4208589902, + null, + 94883.17834351698, + 96407.8149457741, + null, + 94883.17834351698, + 93866.57023587385, + null, + 96709.27952791477, + 96732.86821624868, + null, + 95837.80625601206, + 95848.64233101926, + null, + 95837.80625601206, + 96229.66105626737, + null, + 95837.80625601206, + 98178.17510730785, + null, + 95837.80625601206, + 96273.17959649833, + null, + 95837.80625601206, + 92820.89814897874, + null, + 95837.80625601206, + 96599.13805686972, + null, + 95837.80625601206, + 95659.94479562767, + null, + 95837.80625601206, + 96357.58676902352, + null, + 95837.80625601206, + 95689.95404916865, + null, + 95837.80625601206, + 95858.68960868126, + null, + 95837.80625601206, + 95814.95649081406, + null, + 95837.80625601206, + 97069.64943071302, + null, + 95837.80625601206, + 95560.28088297267, + null, + 96820.63808370597, + 96806.8541605258, + null, + 96806.18517489852, + 96947.40675273385, + null, + 96806.18517489852, + 96920.50398772888, + null, + 96806.18517489852, + 96767.50358245717, + null, + 96806.18517489852, + 96817.66055571858, + null, + 97280.51740997269, + 97237.89195347154, + null, + 97280.51740997269, + 96947.40675273385, + null, + 97280.51740997269, + 96817.66055571858, + null, + 97280.51740997269, + 96888.97576383248, + null, + 97280.51740997269, + 97141.56965571626, + null, + 97280.51740997269, + 97272.16196531034, + null, + 97280.51740997269, + 97095.49525391203, + null, + 97280.51740997269, + 96704.00303777175, + null, + 97280.51740997269, + 97189.19276118421, + null, + 97280.51740997269, + 97208.55798356787, + null, + 97280.51740997269, + 97237.84080032888, + null, + 97280.51740997269, + 97406.36037264415, + null, + 97280.51740997269, + 97126.32920940703, + null, + 97280.51740997269, + 97194.39851002919, + null, + 97280.51740997269, + 96183.9812972283, + null, + 97280.51740997269, + 96795.31918949624, + null, + 97280.51740997269, + 97051.71285679028, + null, + 97280.51740997269, + 96645.4446535775, + null, + 97280.51740997269, + 97016.89968225527, + null, + 97280.51740997269, + 98970.15914526228, + null, + 96714.28622859313, + 96164.31165177577, + null, + 96714.28622859313, + 96955.80310269099, + null, + 96714.28622859313, + 96766.57575414197, + null, + 96714.28622859313, + 96880.45975619479, + null, + 96714.28622859313, + 97320.49185837018, + null, + 96714.28622859313, + 96510.18842656737, + null, + 96714.28622859313, + 97003.43303968408, + null, + 96714.28622859313, + 96660.51533943972, + null, + 96714.28622859313, + 96966.02647052168, + null, + 96714.28622859313, + 96859.70450714213, + null, + 96714.28622859313, + 96932.30642163414, + null, + 96714.28622859313, + 96852.77079415339, + null, + 96088.28655554891, + 96039.53114090665, + null, + 96088.28655554891, + 95460.7576657949, + null, + 96088.28655554891, + 96081.2975453023, + null, + 96842.71240942011, + 97015.25817987997, + null, + 96842.71240942011, + 96839.05193444177, + null, + 96636.80398752526, + 96392.03219267243, + null, + 96636.80398752526, + 97817.707556705, + null, + 96636.80398752526, + 96743.47300321168, + null, + 96636.80398752526, + 96633.1960028662, + null, + 96636.80398752526, + 95731.94340542807, + null, + 96636.80398752526, + 96072.651127653, + null, + 96814.47946325276, + 96915.22190900354, + null, + 96686.4149689825, + 96645.1229128067, + null, + 96744.78801527941, + 97004.95986761729, + null, + 96744.78801527941, + 96566.99750987656, + null, + 96492.3193299354, + 96241.34047154605, + null, + 96406.73123341237, + 96094.8508150237, + null, + 96406.73123341237, + 96329.29923380495, + null, + 96335.82539154506, + 96303.92041500923, + null, + 96335.82539154506, + 95909.7739787418, + null, + 96082.8637414932, + 96400.51278286969, + null, + 96082.8637414932, + 95574.39534418302, + null, + 96082.8637414932, + 95694.79665191291, + null, + 96567.91127200374, + 96078.87408767999, + null, + 96567.91127200374, + 96745.54904144225, + null, + 96567.91127200374, + 96885.45509832901, + null, + 96567.91127200374, + 96570.03585592323, + null, + 96567.91127200374, + 96847.7893432129, + null, + 96501.22061638958, + 96580.26314007488, + null, + 96501.22061638958, + 96283.38222595652, + null, + 96501.22061638958, + 96330.75641404516, + null, + 96501.22061638958, + 96505.76788267054, + null, + 96231.57047597128, + 95933.78130606312, + null, + 96231.57047597128, + 95969.93628717288, + null, + 96447.73644124497, + 96392.03219267243, + null, + 96447.73644124497, + 96241.8368167467, + null, + 96447.73644124497, + 96516.24082699847, + null, + 96447.73644124497, + 96352.37619288662, + null, + 96140.78208609398, + 95527.20667464145, + null, + 96140.78208609398, + 95977.4908427389, + null, + 96140.78208609398, + 96086.9490860762, + null, + 96140.78208609398, + 96094.51833331272, + null, + 96140.78208609398, + 96758.39095887466, + null, + 96140.78208609398, + 96034.32749733706, + null, + 96140.78208609398, + 96026.76816689323, + null, + 96140.78208609398, + 96158.4488359556, + null, + 96140.78208609398, + 96072.651127653, + null, + 96140.78208609398, + 96031.66005598055, + null, + 96791.93089613823, + 97015.25817987997, + null, + 96791.93089613823, + 97015.25817987997, + null, + 96791.93089613823, + 96839.05193444177, + null, + 96791.93089613823, + 96864.42186310086, + null, + 96791.93089613823, + 96587.15552488458, + null, + 96773.1294794952, + 96788.89525885877, + null, + 97215.55371993229, + 97189.5131054329, + null, + 97215.55371993229, + 97669.69791198618, + null, + 96989.24436251477, + 97278.5656163335, + null, + 96896.91552525175, + 96896.58750176255, + null, + 96896.91552525175, + 97154.72425616732, + null, + 96896.91552525175, + 96987.80225378742, + null, + 96896.91552525175, + 96695.54475332797, + null, + 96737.85869639236, + 96726.40817559678, + null, + 96737.85869639236, + 96767.46602322998, + null, + 96737.85869639236, + 96813.4343547639, + null, + 96737.85869639236, + 96791.18101461837, + null, + 96737.85869639236, + 96817.66055571858, + null, + 95444.01440252263, + 95443.67008227661, + null, + 95444.01440252263, + 95141.30835602302, + null, + 95444.01440252263, + 95262.41295878915, + null, + 95444.01440252263, + 95292.52782742439, + null, + 95444.01440252263, + 95274.55463163379, + null, + 95444.01440252263, + 95389.10664694483, + null, + 95444.01440252263, + 95093.22706462545, + null, + 95444.01440252263, + 94205.42306946588, + null, + 95444.01440252263, + 95308.98963794683, + null, + 95444.01440252263, + 95527.20667464145, + null, + 95444.01440252263, + 95360.36419013362, + null, + 95444.01440252263, + 95472.00274613315, + null, + 95444.01440252263, + 95405.5970323345, + null, + 95444.01440252263, + 95935.5419641612, + null, + 95444.01440252263, + 95035.60486780475, + null, + 95444.01440252263, + 95320.26347648272, + null, + 95444.01440252263, + 96072.651127653, + null, + 96447.8287589237, + 96253.58305118927, + null, + 96447.8287589237, + 96263.70637434645, + null, + 96639.08049903584, + 96534.04849627241, + null, + 97213.58157620984, + 97358.46679886585, + null, + 97213.58157620984, + 97532.46968364714, + null, + 96349.45899615414, + 96198.74714645866, + null, + 96349.45899615414, + 96023.10216322435, + null, + 96911.82889073166, + 97066.1566770924, + null, + 96584.25000074002, + 96512.6439304231, + null, + 96584.25000074002, + 96656.65493202257, + null, + 97638.83972944805, + 98642.78682170947, + null, + 97638.83972944805, + 98026.80584910973, + null, + 97638.83972944805, + 97317.9470175812, + null, + 97638.83972944805, + 97272.16196531034, + null, + 97638.83972944805, + 97558.53189592143, + null, + 97638.83972944805, + 97141.56965571626, + null, + 97638.83972944805, + 97354.04987112107, + null, + 97638.83972944805, + 98156.10361722215, + null, + 97141.32121371166, + 97559.12810431966, + null, + 97141.32121371166, + 97016.89968225527, + null, + 97589.68831697167, + 98672.80035077463, + null, + 97589.68831697167, + 97608.46722365031, + null, + 97589.68831697167, + 97720.70350653208, + null, + 97589.68831697167, + 97761.99442165645, + null, + 97589.68831697167, + 96752.4665017377, + null, + 97589.68831697167, + 97746.8391580485, + null, + 97589.68831697167, + 97819.4972376039, + null, + 97589.68831697167, + 97811.11864279254, + null, + 97589.68831697167, + 97693.57749236286, + null, + 97589.68831697167, + 97735.9507021614, + null, + 97589.68831697167, + 97384.36803091576, + null, + 97589.68831697167, + 97155.80752875579, + null, + 97589.68831697167, + 97787.10318478926, + null, + 96754.87507754394, + 96806.8541605258, + null, + 96754.87507754394, + 96725.27797613826, + null, + 96754.87507754394, + 96947.40675273385, + null, + 96754.87507754394, + 96656.51605951994, + null, + 96754.87507754394, + 96621.34244090467, + null, + 96754.87507754394, + 96787.80852813035, + null, + 97436.04173144014, + 97481.5752702023, + null, + 97436.04173144014, + 96896.58750176255, + null, + 97436.04173144014, + 97154.72425616732, + null, + 97436.04173144014, + 96763.64967872995, + null, + 97436.04173144014, + 98517.20808727229, + null, + 97436.04173144014, + 97409.50882998393, + null, + 96829.7050884141, + 96746.40104686156, + null, + 96535.511292164, + 96387.0378486012, + null, + 96405.25838544288, + 96137.27428645456, + null, + 96596.4969197861, + 96447.65576692639, + null, + 96596.4969197861, + 96500.05485471405, + null, + 96596.4969197861, + 96602.41413482858, + null, + 96596.4969197861, + 96347.26384012886, + null, + 96596.4969197861, + 96798.05259841571, + null, + 96957.15143187257, + 97123.64353111561, + null, + 98108.28736915902, + 98810.40128605721, + null, + 98108.28736915902, + 98748.83379870633, + null, + 98108.28736915902, + 98766.84037371344, + null, + 98108.28736915902, + 98595.68155874425, + null, + 97092.03590641617, + 97358.46679886585, + null, + 97092.03590641617, + 97532.46968364714, + null, + 95638.78273951489, + 95432.28216788654, + null, + 95638.78273951489, + 95102.33265077158, + null, + 96868.09370002619, + 96969.06747778888, + null, + 97740.36484145897, + 98047.49514396398, + null, + 97740.36484145897, + 97477.31474980435, + null, + 97228.17238280359, + 97384.80366070305, + null, + 97228.17238280359, + 98571.74309474658, + null, + 96287.81181504241, + 95476.30474211962, + null, + 96287.81181504241, + 96247.39210484998, + null, + 96287.81181504241, + 95988.61012463992, + null, + 97306.68660394431, + 97164.97647400496, + null, + 97519.14188663122, + 97510.69098668513, + null, + 97519.14188663122, + 98349.87077216271, + null, + 97519.14188663122, + 98009.1006468227, + null, + 96800.95464898097, + 96616.28197124632, + null, + 96800.95464898097, + 96611.07880435153, + null, + 96800.95464898097, + 96643.07015445872, + null, + 96931.14707892697, + 96860.00354930486, + null, + 96931.14707892697, + 97218.18359466371, + null, + 96931.14707892697, + 96656.51605951994, + null, + 96931.14707892697, + 97154.72425616732, + null, + 96931.14707892697, + 96987.80225378742, + null, + 96931.14707892697, + 96947.40675273385, + null, + 96931.14707892697, + 96791.18101461837, + null, + 96931.14707892697, + 96532.6513290047, + null, + 96653.93028602129, + 96476.99449429182, + null, + 96653.93028602129, + 96460.3440809962, + null, + 96612.17178282065, + 96817.66055571858, + null, + 96612.17178282065, + 96896.58750176255, + null, + 96612.17178282065, + 96656.51605951994, + null, + 96612.17178282065, + 97154.72425616732, + null, + 96612.17178282065, + 96987.80225378742, + null, + 96612.17178282065, + 96947.40675273385, + null, + 96612.17178282065, + 96791.18101461837, + null, + 96612.17178282065, + 96695.54475332797, + null, + 96612.17178282065, + 96532.6513290047, + null, + 94019.39320785269, + 93363.71919768747, + null, + 94019.39320785269, + 93502.02146333765, + null, + 94019.39320785269, + 93218.26568575818, + null, + 96918.79607718707, + 96605.96850560357, + null, + 96918.79607718707, + 96834.80703834713, + null, + 96918.79607718707, + 95965.26838759349, + null, + 96918.79607718707, + 94954.26355620637, + null, + 96918.79607718707, + 96061.1094111204, + null, + 96918.79607718707, + 98472.89573129527, + null, + 96918.79607718707, + 96860.00354930486, + null, + 96918.79607718707, + 96947.40675273385, + null, + 96918.79607718707, + 98477.25442843478, + null, + 96918.79607718707, + 96663.3347349886, + null, + 96918.79607718707, + 97182.40630309808, + null, + 96918.79607718707, + 98498.41434807747, + null, + 96918.79607718707, + 96705.80879914662, + null, + 96918.79607718707, + 96932.7889750408, + null, + 96918.79607718707, + 96884.50148839512, + null, + 96918.79607718707, + 96614.16469347998, + null, + 96918.79607718707, + 96666.70966909935, + null, + 96918.79607718707, + 96700.68589331902, + null, + 96918.79607718707, + 96896.58750176255, + null, + 96918.79607718707, + 96888.97576383248, + null, + 96918.79607718707, + 96643.9005120101, + null, + 96918.79607718707, + 96541.9681406362, + null, + 96918.79607718707, + 97087.54671590365, + null, + 96918.79607718707, + 96751.41823297429, + null, + 96918.79607718707, + 97088.14880740178, + null, + 96918.79607718707, + 96691.22132401943, + null, + 96918.79607718707, + 96817.66055571858, + null, + 96918.79607718707, + 96809.66561279182, + null, + 96918.79607718707, + 96774.85380189044, + null, + 96918.79607718707, + 96773.12113524246, + null, + 96918.79607718707, + 96537.39245144221, + null, + 96918.79607718707, + 96631.60109535737, + null, + 96918.79607718707, + 96479.84660377468, + null, + 96918.79607718707, + 97272.16196531034, + null, + 96918.79607718707, + 96957.50399046045, + null, + 96918.79607718707, + 96802.58799326436, + null, + 96918.79607718707, + 96813.4343547639, + null, + 96918.79607718707, + 97026.39229748285, + null, + 96918.79607718707, + 97321.50714071444, + null, + 96918.79607718707, + 96685.14736048535, + null, + 96918.79607718707, + 96659.44539572205, + null, + 96918.79607718707, + 96476.29445285945, + null, + 96918.79607718707, + 98504.94937934296, + null, + 96918.79607718707, + 96505.43473450017, + null, + 96918.79607718707, + 96630.14481112546, + null, + 96918.79607718707, + 97079.77003968997, + null, + 96918.79607718707, + 97164.16435672548, + null, + 96918.79607718707, + 96758.34868779706, + null, + 96918.79607718707, + 96814.38545725966, + null, + 96918.79607718707, + 97131.06442362265, + null, + 96918.79607718707, + 96587.63072624992, + null, + 96918.79607718707, + 96701.44181961339, + null, + 96918.79607718707, + 96868.32753094017, + null, + 96918.79607718707, + 96485.2623043036, + null, + 96918.79607718707, + 96544.79575713704, + null, + 96918.79607718707, + 96879.06539514555, + null, + 96918.79607718707, + 96650.5251142157, + null, + 96918.79607718707, + 97056.66087663827, + null, + 96918.79607718707, + 97018.7876594228, + null, + 96918.79607718707, + 96726.97841332003, + null, + 96918.79607718707, + 96785.79342645025, + null, + 96918.79607718707, + 96719.79877048176, + null, + 96918.79607718707, + 96656.51605951994, + null, + 96918.79607718707, + 96500.3647531615, + null, + 96918.79607718707, + 96920.00376965974, + null, + 96918.79607718707, + 96805.25180958064, + null, + 96918.79607718707, + 96511.27388316976, + null, + 96918.79607718707, + 97143.69979917424, + null, + 96918.79607718707, + 96785.52822630318, + null, + 96918.79607718707, + 96751.7242293975, + null, + 96918.79607718707, + 98488.89658362548, + null, + 96918.79607718707, + 96527.82964364873, + null, + 96918.79607718707, + 96815.18595416151, + null, + 96918.79607718707, + 96727.94539580634, + null, + 96918.79607718707, + 96877.61190695128, + null, + 96918.79607718707, + 96674.53853073626, + null, + 96918.79607718707, + 96755.77967969238, + null, + 96918.79607718707, + 97629.85915951653, + null, + 96918.79607718707, + 96896.55417266351, + null, + 96918.79607718707, + 96874.61155723894, + null, + 96918.79607718707, + 96781.7373211774, + null, + 96918.79607718707, + 96671.25152661269, + null, + 96918.79607718707, + 96934.94898597764, + null, + 96918.79607718707, + 97005.77074047142, + null, + 96918.79607718707, + 96964.78110583073, + null, + 96918.79607718707, + 96640.3915108683, + null, + 96918.79607718707, + 96561.11544487227, + null, + 96918.79607718707, + 96787.83212641206, + null, + 96918.79607718707, + 97117.91370467145, + null, + 96918.79607718707, + 96752.7630566314, + null, + 96918.79607718707, + 97904.95870247688, + null, + 96918.79607718707, + 97287.61876639193, + null, + 96918.79607718707, + 96977.41506513029, + null, + 96918.79607718707, + 96672.9812022687, + null, + 96918.79607718707, + 96586.3268270632, + null, + 96918.79607718707, + 96797.33031385214, + null, + 96918.79607718707, + 96770.78381407568, + null, + 96918.79607718707, + 96767.69056492882, + null, + 96918.79607718707, + 96916.62444917303, + null, + 96918.79607718707, + 96736.187248987, + null, + 96918.79607718707, + 96497.40326486343, + null, + 96918.79607718707, + 96981.69606403777, + null, + 96918.79607718707, + 97757.99670975313, + null, + 96918.79607718707, + 97360.13554374868, + null, + 96918.79607718707, + 96792.24969134637, + null, + 96918.79607718707, + 97386.8040364756, + null, + 96918.79607718707, + 97041.45585776801, + null, + 96918.79607718707, + 96624.01938254207, + null, + 96918.79607718707, + 96974.28350714296, + null, + 96918.79607718707, + 97156.22383491664, + null, + 96918.79607718707, + 96954.62064886169, + null, + 96918.79607718707, + 97046.79482101345, + null, + 96918.79607718707, + 95844.28052724677, + null, + 96918.79607718707, + 96795.23928720718, + null, + 96918.79607718707, + 96772.56610132441, + null, + 96918.79607718707, + 96821.18944890518, + null, + 96918.79607718707, + 97037.54167528427, + null, + 96918.79607718707, + 97304.17187437204, + null, + 96918.79607718707, + 97045.7174310999, + null, + 96918.79607718707, + 97031.3088470609, + null, + 96918.79607718707, + 96645.4446535775, + null, + 96918.79607718707, + 96973.7313647934, + null, + 96918.79607718707, + 96827.27721865964, + null, + 96918.79607718707, + 96836.63104835567, + null, + 96918.79607718707, + 96915.11359133502, + null, + 96918.79607718707, + 96603.10265344591, + null, + 96918.79607718707, + 96572.35122948136, + null, + 96918.79607718707, + 97218.18359466371, + null, + 96918.79607718707, + 96562.71215702499, + null, + 96918.79607718707, + 96669.45654037285, + null, + 96918.79607718707, + 96608.97450213194, + null, + 96918.79607718707, + 96780.12324046777, + null, + 96918.79607718707, + 96759.8367076845, + null, + 96918.79607718707, + 96729.07888575827, + null, + 96918.79607718707, + 96451.36476325426, + null, + 96918.79607718707, + 96426.58864894029, + null, + 96918.79607718707, + 96654.61006042475, + null, + 96918.79607718707, + 98502.39684963804, + null, + 96918.79607718707, + 96710.20852553143, + null, + 96918.79607718707, + 97529.59178857305, + null, + 96918.79607718707, + 98492.45967203799, + null, + 96918.79607718707, + 96763.64967872995, + null, + 96918.79607718707, + 97097.47714912827, + null, + 96918.79607718707, + 96726.40817559678, + null, + 96918.79607718707, + 96949.62066620833, + null, + 96918.79607718707, + 96872.36708461096, + null, + 96918.79607718707, + 97572.7954448912, + null, + 96918.79607718707, + 96534.13113359883, + null, + 96918.79607718707, + 96670.03282167818, + null, + 96918.79607718707, + 96915.56474058192, + null, + 96918.79607718707, + 96690.79996780091, + null, + 96918.79607718707, + 97081.73959470788, + null, + 96918.79607718707, + 96645.28675952984, + null, + 96918.79607718707, + 96845.49984264001, + null, + 96918.79607718707, + 96791.42873166909, + null, + 96918.79607718707, + 96848.6019348336, + null, + 96918.79607718707, + 96653.33167046132, + null, + 96918.79607718707, + 96798.09730894824, + null, + 96918.79607718707, + 96830.20824198317, + null, + 96918.79607718707, + 96974.68588435129, + null, + 96918.79607718707, + 96920.50398772888, + null, + 96918.79607718707, + 97141.56965571626, + null, + 96918.79607718707, + 95329.09589374838, + null, + 96918.79607718707, + 96625.20312840438, + null, + 96918.79607718707, + 96583.08101942415, + null, + 96918.79607718707, + 97317.9470175812, + null, + 96918.79607718707, + 96848.58357963007, + null, + 96918.79607718707, + 96685.21610856292, + null, + 96918.79607718707, + 96647.86296497285, + null, + 96918.79607718707, + 96749.19177745887, + null, + 96918.79607718707, + 96667.27172199388, + null, + 96918.79607718707, + 96915.00366898013, + null, + 96918.79607718707, + 95683.09108910317, + null, + 96918.79607718707, + 96463.21403142411, + null, + 96918.79607718707, + 96884.74639022724, + null, + 96918.79607718707, + 97951.06604016566, + null, + 96918.79607718707, + 96603.17113805444, + null, + 96918.79607718707, + 95950.60579597944, + null, + 96918.79607718707, + 96582.65960470523, + null, + 96918.79607718707, + 96319.04144083924, + null, + 96918.79607718707, + 97016.89968225527, + null, + 96918.79607718707, + 96864.74890763631, + null, + 96918.79607718707, + 96899.74561231451, + null, + 96918.79607718707, + 96767.43202743762, + null, + 96918.79607718707, + 96984.0156607433, + null, + 96918.79607718707, + 96697.59306293263, + null, + 96918.79607718707, + 96742.76428952735, + null, + 96918.79607718707, + 96935.54268135317, + null, + 96918.79607718707, + 95574.39534418302, + null, + 96918.79607718707, + 96991.60346683899, + null, + 96918.79607718707, + 96580.8583468943, + null, + 96918.79607718707, + 96987.80225378742, + null, + 96918.79607718707, + 96480.30494028228, + null, + 96918.79607718707, + 97026.73007218333, + null, + 96918.79607718707, + 96873.58873560156, + null, + 96918.79607718707, + 97154.72425616732, + null, + 96918.79607718707, + 97214.28101702654, + null, + 96918.79607718707, + 96962.13430709024, + null, + 96918.79607718707, + 96445.14131578358, + null, + 96918.79607718707, + 96952.0852964525, + null, + 96918.79607718707, + 96485.30175383571, + null, + 96918.79607718707, + 98188.17126174309, + null, + 96918.79607718707, + 98087.3338631131, + null, + 96918.79607718707, + 97264.08371499478, + null, + 96918.79607718707, + 96567.84669526415, + null, + 96918.79607718707, + 96692.64254266855, + null, + 96918.79607718707, + 96954.5126568193, + null, + 96918.79607718707, + 96442.24721615986, + null, + 96918.79607718707, + 96675.1674827983, + null, + 96918.79607718707, + 96911.71700742826, + null, + 96918.79607718707, + 96559.09520602223, + null, + 96918.79607718707, + 96964.90990095795, + null, + 96918.79607718707, + 96368.1267297445, + null, + 96918.79607718707, + 96354.29226248538, + null, + 96918.79607718707, + 95704.0871202312, + null, + 96918.79607718707, + 96138.82096969092, + null, + 96918.79607718707, + 96702.30104154837, + null, + 96918.79607718707, + 95863.078617055, + null, + 96918.79607718707, + 96928.70418989572, + null, + 96918.79607718707, + 96875.43456713467, + null, + 96918.79607718707, + 96712.85163544948, + null, + 96918.79607718707, + 96210.68445716402, + null, + 96918.79607718707, + 97643.43217333438, + null, + 96918.79607718707, + 96875.38177626212, + null, + 96918.79607718707, + 97277.67379891923, + null, + 96918.79607718707, + 97650.21348938807, + null, + 96918.79607718707, + 97380.97035221593, + null, + 96918.79607718707, + 96767.46602322998, + null, + 96918.79607718707, + 95912.88033660327, + null, + 96918.79607718707, + 96875.44858847588, + null, + 96918.79607718707, + 97090.26472678532, + null, + 96918.79607718707, + 96986.78948010856, + null, + 96918.79607718707, + 96355.34401319342, + null, + 96918.79607718707, + 98484.83314214389, + null, + 96918.79607718707, + 96480.80058099459, + null, + 96918.79607718707, + 96582.01402568171, + null, + 96918.79607718707, + 96882.04031575473, + null, + 96918.79607718707, + 96747.25944879792, + null, + 96918.79607718707, + 96853.94619098958, + null, + 96918.79607718707, + 95902.58151687872, + null, + 96918.79607718707, + 98205.92395781298, + null, + 96918.79607718707, + 97674.61704340234, + null, + 96918.79607718707, + 96816.42131470822, + null, + 96918.79607718707, + 96625.30102032366, + null, + 96918.79607718707, + 96574.89605254125, + null, + 96918.79607718707, + 96695.54475332797, + null, + 96918.79607718707, + 97026.03297053343, + null, + 96918.79607718707, + 96755.84845242432, + null, + 96918.79607718707, + 96494.99482485962, + null, + 96918.79607718707, + 96639.0949732792, + null, + 96918.79607718707, + 96550.01108530164, + null, + 96918.79607718707, + 96575.31613115326, + null, + 96918.79607718707, + 96810.72873758491, + null, + 96918.79607718707, + 96896.94014138209, + null, + 96918.79607718707, + 96693.47055992209, + null, + 96918.79607718707, + 96951.68482481911, + null, + 96918.79607718707, + 97105.86446933058, + null, + 96918.79607718707, + 96683.343489294, + null, + 96918.79607718707, + 96700.50651493037, + null, + 96918.79607718707, + 97613.5093531771, + null, + 96918.79607718707, + 97632.10124528216, + null, + 96918.79607718707, + 96831.69055597908, + null, + 96918.79607718707, + 96828.99548296859, + null, + 96918.79607718707, + 97813.18960016311, + null, + 96918.79607718707, + 97805.18437428074, + null, + 96918.79607718707, + 96640.17245945708, + null, + 96918.79607718707, + 96731.09231285357, + null, + 96918.79607718707, + 96542.83564645311, + null, + 96918.79607718707, + 95421.91735289371, + null, + 96918.79607718707, + 96934.21301456064, + null, + 96918.79607718707, + 96053.80630400538, + null, + 96918.79607718707, + 96579.76590487406, + null, + 96918.79607718707, + 96621.95641731111, + null, + 96918.79607718707, + 96695.15836873942, + null, + 96918.79607718707, + 96467.60417095249, + null, + 96918.79607718707, + 97510.01962082756, + null, + 96918.79607718707, + 96836.22412942452, + null, + 96918.79607718707, + 96686.3684942306, + null, + 96918.79607718707, + 97774.42866113664, + null, + 96918.79607718707, + 96427.1842433544, + null, + 96918.79607718707, + 96602.9455448259, + null, + 96918.79607718707, + 98341.41820230329, + null, + 96918.79607718707, + 96759.39098466327, + null, + 96918.79607718707, + 96654.14513994215, + null, + 96918.79607718707, + 97094.20573290615, + null, + 96918.79607718707, + 96534.89129183585, + null, + 96918.79607718707, + 97845.68054608024, + null, + 96918.79607718707, + 96714.32338601344, + null, + 96918.79607718707, + 97354.04987112107, + null, + 96918.79607718707, + 98362.46614454236, + null, + 96918.79607718707, + 96555.05094020838, + null, + 96918.79607718707, + 96417.4243506057, + null, + 96918.79607718707, + 96624.55409529047, + null, + 96918.79607718707, + 96913.27672047008, + null, + 96918.79607718707, + 96613.64565810803, + null, + 96918.79607718707, + 96882.63562796098, + null, + 96918.79607718707, + 97785.31723795002, + null, + 96918.79607718707, + 96921.65832155356, + null, + 96918.79607718707, + 96574.44776110545, + null, + 96918.79607718707, + 96826.02448370877, + null, + 96918.79607718707, + 96722.32663398494, + null, + 96918.79607718707, + 96695.61808666041, + null, + 96918.79607718707, + 97113.91196565128, + null, + 96918.79607718707, + 96976.68282643448, + null, + 96918.79607718707, + 96054.400615084, + null, + 96918.79607718707, + 96278.15788483768, + null, + 96918.79607718707, + 96861.56370770434, + null, + 96918.79607718707, + 97796.07080948977, + null, + 96918.79607718707, + 96611.246762707, + null, + 96918.79607718707, + 96530.79253993953, + null, + 96918.79607718707, + 95901.82083235442, + null, + 96918.79607718707, + 96962.41375364321, + null, + 96918.79607718707, + 96900.49410984787, + null, + 96918.79607718707, + 96440.3614255588, + null, + 96918.79607718707, + 96738.66732022622, + null, + 96918.79607718707, + 97200.14076518768, + null, + 96918.79607718707, + 96926.75612600744, + null, + 96918.79607718707, + 96532.6513290047, + null, + 96918.79607718707, + 96651.84522301337, + null, + 96918.79607718707, + 97627.58936686792, + null, + 96918.79607718707, + 97563.98838997139, + null, + 96918.79607718707, + 96560.8916778657, + null, + 96918.79607718707, + 96729.69482051903, + null, + 96918.79607718707, + 96715.7628390581, + null, + 96918.79607718707, + 97379.01812972916, + null, + 95778.09112358528, + 95933.78130606312, + null, + 95778.09112358528, + 95969.93628717288, + null, + 94801.82599832956, + 94205.42306946588, + null, + 94998.66487738185, + 94485.92993817783, + null, + 94998.66487738185, + 95302.46268343864, + null, + 95681.96009977852, + 95505.88427993505, + null, + 95501.99445714205, + 95182.96656441354, + null, + 95501.99445714205, + 95083.07696160226, + null, + 95501.99445714205, + 95260.63775038713, + null, + 95451.74998648891, + 95343.04710668822, + null, + 95451.74998648891, + 95077.9137547502, + null, + 95451.74998648891, + 95200.52568374142, + null, + 97377.6500584912, + 97358.46679886585, + null, + 97377.6500584912, + 97532.46968364714, + null, + 96959.17409848377, + 95457.42674465815, + null, + 96959.17409848377, + 98692.43143064567, + null, + 97453.56935622763, + 97571.51683328462, + null, + 97453.56935622763, + 97321.50714071444, + null, + 97453.56935622763, + 97304.17187437204, + null, + 97453.56935622763, + 97558.53189592143, + null, + 97453.56935622763, + 97529.59178857305, + null, + 97453.56935622763, + 97573.23040616274, + null, + 97453.56935622763, + 97317.9470175812, + null, + 97453.56935622763, + 97722.41636121254, + null, + 97453.56935622763, + 96711.97005754894, + null, + 97453.56935622763, + 96888.97576383248, + null, + 97453.56935622763, + 97182.40630309808, + null, + 97453.56935622763, + 98202.27708314388, + null, + 97492.36374902399, + 97358.46679886585, + null, + 97492.36374902399, + 97532.46968364714, + null, + 97452.67144706869, + 97358.46679886585, + null, + 97452.67144706869, + 97532.46968364714, + null, + 97467.97384514623, + 97820.56830441093, + null, + 97467.97384514623, + 98259.11178546748, + null, + 97467.97384514623, + 97235.2488696914, + null, + 97467.97384514623, + 97297.7274926661, + null, + 97467.97384514623, + 97293.5203062695, + null, + 97467.97384514623, + 98708.3190257109, + null, + 97467.97384514623, + 97802.97859779913, + null, + 97467.97384514623, + 97828.5668503006, + null, + 97467.97384514623, + 97770.18528248275, + null, + 97467.97384514623, + 97622.16011647054, + null, + 97467.97384514623, + 96887.45716809586, + null, + 97467.97384514623, + 97090.03432996322, + null, + 97467.97384514623, + 97697.42848707616, + null, + 97467.97384514623, + 97701.66892815946, + null, + 97467.97384514623, + 97585.79298176516, + null, + 97467.97384514623, + 96404.13831153684, + null, + 97467.97384514623, + 97486.26616142577, + null, + 97467.97384514623, + 96505.5934631506, + null, + 97467.97384514623, + 97579.4448614383, + null, + 97467.97384514623, + 97691.63703682291, + null, + 96643.07015445872, + 96515.60149309262, + null, + 96616.28197124632, + 96526.16766938524, + null, + 96616.28197124632, + 96542.88730412883, + null, + 95591.49480913648, + 95826.70973681552, + null, + 95591.49480913648, + 95195.45569059276, + null, + 95591.49480913648, + 95229.32767677493, + null, + 95591.49480913648, + 94971.08522590312, + null, + 95591.49480913648, + 95259.91296974945, + null, + 95591.49480913648, + 95151.27865865134, + null, + 95591.49480913648, + 95457.42579193789, + null, + 96743.02101349403, + 96817.66055571858, + null, + 96743.02101349403, + 96806.8541605258, + null, + 96743.02101349403, + 96791.18101461837, + null, + 96450.68991158345, + 96625.91253011048, + null, + 96450.68991158345, + 96516.24082699847, + null, + 96877.98110658897, + 96650.26887770933, + null, + 96877.98110658897, + 95953.43758977612, + null, + 96877.98110658897, + 96414.9173008834, + null, + 97082.82303991095, + 96657.44331032071, + null, + 97082.82303991095, + 96774.09206013042, + null, + 98237.07311872549, + 98370.08752364217, + null, + 98237.07311872549, + 98185.39228188255, + null, + 98237.07311872549, + 97572.7954448912, + null, + 97435.85714721317, + 96888.97576383248, + null, + 97435.85714721317, + 96866.57408532791, + null, + 97435.85714721317, + 97930.86589331932, + null, + 97435.85714721317, + 96177.19856058512, + null, + 97435.85714721317, + 97176.04373508078, + null, + 97435.85714721317, + 97153.25597882869, + null, + 96347.73945345664, + 95574.39534418302, + null, + 96347.73945345664, + 95838.54674259001, + null, + 96347.73945345664, + 96532.8341303869, + null, + 98753.0342330029, + 98997.74271020413, + null, + 98753.0342330029, + 99362.59751327203, + null, + 98753.0342330029, + 99276.9196152002, + null, + 98753.0342330029, + 99226.83402346286, + null, + 98753.0342330029, + 99522.14887276676, + null, + 97389.05654094371, + 97465.09518672612, + null, + 96919.826641072, + 96648.9363700922, + null, + 97311.70614692672, + 97362.29677323089, + null, + 97311.70614692672, + 97352.27827718583, + null, + 97311.70614692672, + 97314.13790026988, + null, + 96312.49145069612, + 95480.79812433262, + null, + 97342.74090899815, + 97358.46679886585, + null, + 97342.74090899815, + 97532.46968364714, + null, + 97676.19241492003, + 98668.36393861687, + null, + 97676.19241492003, + 97272.16196531034, + null, + 97676.19241492003, + 97838.4175081634, + null, + 97676.19241492003, + 97754.15865943547, + null, + 97676.19241492003, + 97321.50714071444, + null, + 97676.19241492003, + 97287.61876639193, + null, + 97676.19241492003, + 97387.10298484987, + null, + 97676.19241492003, + 97354.04987112107, + null, + 97533.87560124022, + 96987.80225378742, + null, + 97533.87560124022, + 97218.18359466371, + null, + 97533.87560124022, + 98517.20808727229, + null, + 97533.87560124022, + 96947.40675273385, + null, + 96983.61207113188, + 96947.40675273385, + null, + 96983.61207113188, + 96987.80225378742, + null, + 96983.61207113188, + 96791.18101461837, + null, + 97042.01258952515, + 96888.97576383248, + null, + 97042.01258952515, + 97017.6751012583, + null, + 97042.01258952515, + 96866.57408532791, + null, + 97042.01258952515, + 97930.86589331932, + null, + 97042.01258952515, + 96177.19856058512, + null, + 97042.01258952515, + 97176.04373508078, + null, + 97042.01258952515, + 97153.25597882869, + null, + 97651.32746016643, + 97715.03542524244, + null, + 97651.32746016643, + 97428.2088550206, + null, + 97136.55546326986, + 96010.91751038717, + null, + 97136.55546326986, + 96392.03219267243, + null, + 97136.55546326986, + 97045.79560002222, + null, + 97136.55546326986, + 96039.53114090665, + null, + 97136.55546326986, + 96558.40139577903, + null, + 97136.55546326986, + 96072.651127653, + null, + 97605.64203060168, + 97717.63943455054, + null, + 97499.57548817585, + 96392.03219267243, + null, + 97499.57548817585, + 97512.25460842131, + null, + 97499.57548817585, + 97068.03081922044, + null, + 97499.57548817585, + 97443.46951981564, + null, + 97499.57548817585, + 97329.89355877684, + null, + 97499.57548817585, + 97519.79955646732, + null, + 97615.00090956, + 97844.94572301708, + null, + 97615.00090956, + 97678.1464428742, + null, + 97672.92128722146, + 98526.54572504741, + null, + 97634.83104178979, + 98430.07797759793, + null, + 97634.83104178979, + 97500.16873207534, + null, + 97634.83104178979, + 96981.97321773143, + null, + 95512.48672079766, + 94617.5959694371, + null, + 95520.58581704031, + 95301.3607194778, + null, + 95520.58581704031, + 95227.77092314835, + null, + 95520.58581704031, + 95402.52158220478, + null, + 95520.58581704031, + 95276.97798041081, + null, + 95520.58581704031, + 94853.13681242797, + null, + 96295.26828740547, + 96400.51278286969, + null, + 96295.26828740547, + 96480.30494028228, + null, + 96295.26828740547, + 96019.73206058989, + null, + 96282.43445699873, + 95949.12131101474, + null, + 96282.43445699873, + 95997.16066474574, + null, + 96282.43445699873, + 95427.65531943327, + null, + 96282.43445699873, + 96645.63733017922, + null, + 96282.43445699873, + 96622.44802724649, + null, + 96282.43445699873, + 96637.20944908995, + null, + 96282.43445699873, + 96402.067408069, + null, + 96568.35948892368, + 96546.81074094832, + null, + 96568.35948892368, + 96396.69753430235, + null, + 96568.35948892368, + 96935.23882458691, + null, + 96568.35948892368, + 96582.14749337402, + null, + 96305.70007753118, + 96220.7703218342, + null, + 96281.6988740464, + 96400.51278286969, + null, + 96281.6988740464, + 96480.30494028228, + null, + 96281.6988740464, + 96019.73206058989, + null, + 96634.97232577665, + 96871.32320011256, + null, + 96658.50723704832, + 96963.41552878823, + null, + 96327.25960947742, + 96210.59439600962, + null, + 96327.25960947742, + 96315.24613181091, + null, + 95612.05251687022, + 96028.2888002032, + null, + 95612.05251687022, + 95489.22963590887, + null, + 95612.05251687022, + 95828.46924619444, + null, + 95612.05251687022, + 95482.44304451962, + null, + 95612.05251687022, + 95066.06523441382, + null, + 95612.05251687022, + 95163.75908553116, + null, + 95612.05251687022, + 95488.52095752831, + null, + 95612.05251687022, + 96006.77287976355, + null, + 95612.05251687022, + 95443.67008227661, + null, + 95612.05251687022, + 95274.60828290615, + null, + 95612.05251687022, + 95505.50501741502, + null, + 95612.05251687022, + 95274.55463163379, + null, + 95612.05251687022, + 95360.36419013362, + null, + 95612.05251687022, + 95292.52782742439, + null, + 95612.05251687022, + 95472.00274613315, + null, + 95612.05251687022, + 95308.98963794683, + null, + 95612.05251687022, + 95397.10356995185, + null, + 95612.05251687022, + 95504.42605081353, + null, + 95612.05251687022, + 95949.84954429526, + null, + 95612.05251687022, + 95527.20667464145, + null, + 95612.05251687022, + 95213.0622434433, + null, + 95612.05251687022, + 95306.71022996533, + null, + 95612.05251687022, + 95320.26347648272, + null, + 95612.05251687022, + 95510.02889292239, + null, + 95612.05251687022, + 96072.651127653, + null, + 96308.17494820403, + 96156.074298552, + null, + 96308.17494820403, + 96344.83157727902, + null, + 96308.17494820403, + 96192.16190696902, + null, + 96460.09274444025, + 96534.04849627241, + null, + 96049.36643690022, + 95914.16367038043, + null, + 96049.36643690022, + 95991.06452640316, + null, + 96049.36643690022, + 95745.4694082097, + null, + 96049.36643690022, + 96072.76062132008, + null, + 96412.62955632774, + 96296.57518040262, + null, + 96412.62955632774, + 96237.23840449286, + null, + 96412.62955632774, + 96100.16964314734, + null, + 96412.62955632774, + 96577.18594978366, + null, + 96412.62955632774, + 96564.47351993735, + null, + 96616.7559403405, + 96828.99548296859, + null, + 96519.5204681799, + 96768.15156923435, + null, + 96519.5204681799, + 96405.88036665124, + null, + 96519.5204681799, + 96370.19303826737, + null, + 97093.69642855125, + 97409.25368271414, + null, + 97093.69642855125, + 97234.04346137235, + null, + 97093.69642855125, + 97545.38850460328, + null, + 97093.69642855125, + 97434.01515339047, + null, + 96679.99009179635, + 96249.72659060232, + null, + 96679.99009179635, + 97705.70304050583, + null, + 96679.99009179635, + 96625.91253011048, + null, + 96679.99009179635, + 96516.24082699847, + null, + 96679.99009179635, + 96647.32091240633, + null, + 96679.99009179635, + 96573.99731256816, + null, + 96679.99009179635, + 96536.36409486223, + null, + 95633.12109295135, + 94888.48155674861, + null, + 95633.12109295135, + 95501.8125864358, + null, + 96619.3340165115, + 96398.60994140033, + null, + 96619.3340165115, + 97087.09725827706, + null, + 96150.03424362313, + 95858.67269394762, + null, + 95937.7713444444, + 94889.58026607656, + null, + 95937.7713444444, + 95744.0722676581, + null, + 95937.7713444444, + 96100.16964314734, + null, + 95937.7713444444, + 96577.18594978366, + null, + 95937.7713444444, + 96564.47351993735, + null, + 96585.71992460922, + 96817.66055571858, + null, + 96585.71992460922, + 96539.2876843912, + null, + 96585.71992460922, + 96488.71126504915, + null, + 96491.68898578656, + 96574.07459048775, + null, + 95350.83394336532, + 94476.68554039652, + null, + 95350.83394336532, + 94952.05763640381, + null, + 95350.83394336532, + 94960.14806309502, + null, + 96134.20248253406, + 95868.93237525053, + null, + 96072.38567279669, + 95682.31879557903, + null, + 96072.38567279669, + 96011.6169628847, + null, + 96072.38567279669, + 96107.71912624051, + null, + 96772.82588738113, + 96229.66105626737, + null, + 96772.82588738113, + 96357.58676902352, + null, + 96772.82588738113, + 98178.17510730785, + null, + 96772.82588738113, + 96273.17959649833, + null, + 96977.58687203821, + 97358.46679886585, + null, + 96977.58687203821, + 97532.46968364714, + null, + 96251.19968281969, + 96072.76062132008, + null, + 96108.91834438108, + 95844.61270594754, + null, + 96108.91834438108, + 95987.03936165375, + null, + 96778.70350523331, + 96947.40675273385, + null, + 96778.70350523331, + 96896.58750176255, + null, + 96778.70350523331, + 97154.72425616732, + null, + 94634.35092199444, + 94066.51607848209, + null, + 94634.35092199444, + 93666.16904241925, + null, + 94634.35092199444, + 93682.44991506475, + null, + 94634.35092199444, + 93976.18462674941, + null, + 96601.97537172223, + 97272.16196531034, + null, + 96601.97537172223, + 96656.51605951994, + null, + 96601.97537172223, + 96358.25249911078, + null, + 96601.97537172223, + 96321.80373689976, + null, + 96601.97537172223, + 96114.11946368766, + null, + 96601.97537172223, + 95768.86401324993, + null, + 96601.97537172223, + 96245.67690227392, + null, + 96601.97537172223, + 97449.2228277016, + null, + 96601.97537172223, + 96791.18101461837, + null, + 96422.64317562626, + 96763.64967872995, + null, + 96422.64317562626, + 96400.51278286969, + null, + 96422.64317562626, + 96480.30494028228, + null, + 96422.64317562626, + 96019.73206058989, + null, + 96636.83424445745, + 96919.80862750238, + null, + 96056.19248735494, + 95714.35022151601, + null, + 96515.11905526402, + 96636.93741201112, + null, + 96660.38035113053, + 96668.40960032, + null, + 96660.38035113053, + 96517.34543879435, + null, + 96660.38035113053, + 97008.15894636505, + null, + 96660.38035113053, + 96807.74423569046, + null, + 95774.24926109349, + 95387.72814612064, + null, + 95774.24926109349, + 95418.41077655359, + null, + 95774.24926109349, + 95472.67938384521, + null, + 97585.87618383576, + 98114.52152816013, + null, + 97585.87618383576, + 98111.97280969669, + null, + 97585.87618383576, + 97753.21078683695, + null, + 97585.87618383576, + 98142.06219207752, + null, + 97585.87618383576, + 97488.66800355395, + null, + 97585.87618383576, + 98144.87686544789, + null, + 96583.5257472604, + 96528.57510021586, + null, + 96583.5257472604, + 96901.55938078823, + null, + 95122.89837108535, + 94256.97992301545, + null, + 95122.89837108535, + 94390.62485294472, + null, + 95122.89837108535, + 94474.18506646619, + null, + 96605.90599322402, + 96818.20189981317, + null, + 96605.90599322402, + 96638.80405463175, + null, + 96038.36554774032, + 95888.00973910451, + null, + 96038.36554774032, + 95799.49717635973, + null, + 96031.4993704607, + 95761.360020285, + null, + 96031.4993704607, + 95802.05331128874, + null, + 96675.71260270195, + 96973.49939574185, + null, + 96675.71260270195, + 96633.26092124682, + null, + 97049.512435505, + 97052.8332660283, + null, + 97049.512435505, + 97011.81451068369, + null, + 97049.512435505, + 97113.70285257122, + null, + 97049.512435505, + 97210.3004088966, + null, + 97049.512435505, + 97188.26787866931, + null, + 97049.512435505, + 97011.81451068369, + null, + 97049.512435505, + 97113.70285257122, + null, + 97049.512435505, + 97056.56327204366, + null, + 97049.512435505, + 97626.44431224155, + null, + 97049.512435505, + 97350.90150160708, + null, + 97049.512435505, + 97188.26787866931, + null, + 97049.512435505, + 97350.90150160708, + null, + 97049.512435505, + 97162.69508453069, + null, + 97049.512435505, + 97210.3004088966, + null, + 96433.845799983, + 97817.20098235017, + null, + 96433.845799983, + 96022.18132064518, + null, + 96433.845799983, + 95599.18088294458, + null, + 95897.07037264043, + 95375.71980775791, + null, + 95897.07037264043, + 95781.4838692387, + null, + 95897.07037264043, + 95680.02527851156, + null, + 95897.07037264043, + 95894.41366117746, + null, + 95897.07037264043, + 95794.3620644187, + null, + 96960.27176327427, + 96845.07860198681, + null, + 96960.27176327427, + 97276.29878619949, + null, + 96960.27176327427, + 97481.0467852597, + null, + 96307.85692216411, + 96200.64224390368, + null, + 96242.35848519257, + 96069.95563247148, + null, + 96819.81129369602, + 96759.80185472532, + null, + 96819.81129369602, + 97151.48266936177, + null, + 97249.8102467086, + 97525.66398682565, + null, + 97249.8102467086, + 98129.8335044742, + null, + 96108.87427334944, + 95869.4969027973, + null, + 96108.87427334944, + 95947.6612354604, + null, + 97349.66316971318, + 97219.2344849453, + null, + 97349.66316971318, + 97524.9702327776, + null, + 96743.02101349403, + 97349.66316971318, + null, + 97349.66316971318, + 97462.76341227313, + null, + 97349.66316971318, + 97570.78852224046, + null, + 97349.66316971318, + 97965.90473223805, + null, + 97349.66316971318, + 98426.11814680099, + null, + 97349.66316971318, + 97400.88013760047, + null, + 97349.66316971318, + 97830.50425286932, + null, + 97349.66316971318, + 97563.51909740941, + null, + 97349.66316971318, + 97959.05424320973, + null, + 97349.66316971318, + 97250.30982328247, + null, + 97012.3360267975, + 97598.41715003968, + null, + 97012.3360267975, + 97191.15673842629, + null, + 97012.3360267975, + 96876.62587606598, + null, + 97012.3360267975, + 97177.84417040872, + null, + 98400.16393508099, + 98932.31091884513, + null, + 98400.16393508099, + 98926.20655583622, + null, + 98400.16393508099, + 98881.20399257346, + null, + 98400.16393508099, + 98873.6590998779, + null, + 98400.16393508099, + 98776.08147395353, + null, + 98400.16393508099, + 98916.08043593282, + null, + 98400.16393508099, + 98775.64297666437, + null, + 98400.16393508099, + 98833.5386160878, + null, + 98400.16393508099, + 98779.4951496633, + null, + 98400.16393508099, + 98769.87019965112, + null, + 98400.16393508099, + 98763.69912444155, + null, + 98400.16393508099, + 98715.38337956829, + null, + 98400.16393508099, + 98838.01226486915, + null, + 98400.16393508099, + 98731.25835265023, + null, + 98400.16393508099, + 98794.9356782363, + null, + 98400.16393508099, + 98875.12446310604, + null, + 98400.16393508099, + 98845.6917714939, + null, + 96728.43531848033, + 97044.98522321004, + null, + 96728.43531848033, + 96890.44446357607, + null, + 95819.22417527653, + 95746.74077759727, + null, + 95819.22417527653, + 95514.38455692613, + null, + 95819.22417527653, + 96085.91161839501, + null, + 95819.22417527653, + 95540.81075134124, + null, + 95819.22417527653, + 95161.64737314533, + null, + 97357.92552252565, + 97743.37633435942, + null, + 97357.92552252565, + 97368.18786729996, + null, + 97357.92552252565, + 97400.16397729573, + null, + 97357.92552252565, + 97615.97056569872, + null, + 97357.92552252565, + 97788.7651245566, + null, + 97357.92552252565, + 97923.16505107327, + null, + 97357.92552252565, + 97749.77214743374, + null, + 97357.92552252565, + 97737.47168433828, + null, + 97385.46389592621, + 97643.42074759667, + null, + 97385.46389592621, + 97749.29069670282, + null, + 97385.46389592621, + 98137.79198213125, + null, + 97385.46389592621, + 97782.44112987598, + null, + 97385.46389592621, + 97566.10709216155, + null, + 97411.8360170104, + 97247.41509419652, + null, + 97411.8360170104, + 98703.6866543077, + null, + 97411.8360170104, + 97300.96068285858, + null, + 97411.8360170104, + 97415.93818773415, + null, + 97204.89839977278, + 97789.92707115466, + null, + 97204.89839977278, + 96750.40498635444, + null, + 97204.89839977278, + 97809.32654645263, + null, + 97204.89839977278, + 97809.59302628535, + null, + 97204.89839977278, + 97788.58031988013, + null, + 97204.89839977278, + 97768.46861576667, + null, + 97204.89839977278, + 97504.52578621544, + null, + 96463.30750173924, + 96578.02421964555, + null, + 96463.30750173924, + 96409.96532967011, + null, + 96598.60562028212, + 96325.12988946559, + null, + 96598.60562028212, + 96767.96478692938, + null, + 96598.60562028212, + 96753.02617057231, + null, + 96598.60562028212, + 96869.39684947954, + null, + 95896.43296916565, + 95763.40443589797, + null, + 95896.43296916565, + 95719.63523794102, + null, + 95896.43296916565, + 95771.1095203462, + null, + 95896.43296916565, + 95203.1376507783, + null, + 95896.43296916565, + 96270.15699232905, + null, + 95896.43296916565, + 95244.0575474311, + null, + 95896.43296916565, + 96476.2244248884, + null, + 95896.43296916565, + 96533.83917036175, + null, + 96091.45432140626, + 95627.6655653288, + null, + 96091.45432140626, + 96487.74751288781, + null, + 96091.45432140626, + 95709.93291907338, + null, + 96091.45432140626, + 95658.32063821593, + null, + 97311.35174306807, + 97536.70985088356, + null, + 97311.35174306807, + 98229.18483310309, + null, + 97311.35174306807, + 97334.69528656456, + null, + 96200.70472225144, + 95989.76467211267, + null, + 97500.53674710442, + 97600.72228126202, + null, + 97500.53674710442, + 97959.01602952153, + null, + 97500.53674710442, + 98371.01061870782, + null, + 97500.53674710442, + 97789.64547242364, + null, + 96082.33537164425, + 95737.0210501743, + null, + 96082.33537164425, + 96247.5730261708, + null, + 96477.12621197902, + 96716.89120782126, + null, + 96477.12621197902, + 96085.91161839501, + null, + 96763.1280194511, + 97052.70205106144, + null, + 96763.1280194511, + 96826.71329736618, + null, + 96763.1280194511, + 96991.17451689237, + null, + 96773.35799206587, + 97052.70205106144, + null, + 96773.35799206587, + 96991.17451689237, + null, + 96670.27291581893, + 96760.3513556949, + null, + 96670.27291581893, + 96464.55718535923, + null, + 96670.27291581893, + 96534.278171482, + null, + 96670.27291581893, + 96405.88296277358, + null, + 96670.27291581893, + 97516.13365436997, + null, + 94870.7294183785, + 94593.1532092616, + null, + 94870.7294183785, + 94062.66633331862, + null, + 94870.7294183785, + 93616.21500771031, + null, + 96530.4881400899, + 96780.96571153034, + null, + 96530.4881400899, + 96527.45528447787, + null, + 95996.08028297019, + 95617.05222697879, + null, + 95996.08028297019, + 96115.57754246322, + null, + 95648.0622321095, + 95481.26094749449, + null, + 95648.0622321095, + 96350.897783121, + null, + 95648.0622321095, + 95443.67008227661, + null, + 95648.0622321095, + 95360.36419013362, + null, + 95648.0622321095, + 95505.50501741502, + null, + 95648.0622321095, + 95828.46924619444, + null, + 95648.0622321095, + 95163.75908553116, + null, + 95648.0622321095, + 95489.22963590887, + null, + 95648.0622321095, + 95274.60828290615, + null, + 95648.0622321095, + 95527.20667464145, + null, + 95648.0622321095, + 95397.10356995185, + null, + 95648.0622321095, + 95228.59152965351, + null, + 95648.0622321095, + 95594.04154313843, + null, + 95648.0622321095, + 95243.05174065192, + null, + 95648.0622321095, + 95213.77887412795, + null, + 95648.0622321095, + 95713.33557938566, + null, + 95648.0622321095, + 95510.02889292239, + null, + 95648.0622321095, + 96022.18132064518, + null, + 95648.0622321095, + 95306.71022996533, + null, + 95648.0622321095, + 96072.651127653, + null, + 95765.59330845765, + 95448.68746731608, + null, + 95765.59330845765, + 95293.92851935429, + null, + 96347.57634764894, + 96424.48707246192, + null, + 96313.51649151853, + 96039.53114090665, + null, + 96313.51649151853, + 96558.40139577903, + null, + 96240.89790514634, + 96049.17164979059, + null, + 97253.59328958677, + 97598.41715003968, + null, + 97253.59328958677, + 97200.7730276014, + null, + 97253.59328958677, + 97446.90168966807, + null, + 97253.59328958677, + 97965.90473223805, + null, + 97253.59328958677, + 97959.05424320973, + null, + 96585.02524485815, + 96440.9774229316, + null, + 96585.02524485815, + 97474.17223906965, + null, + 96585.02524485815, + 96627.09595023748, + null, + 96585.02524485815, + 96508.0649915055, + null, + 96585.02524485815, + 96252.73601927159, + null, + 97110.64567914454, + 97191.15673842629, + null, + 97110.64567914454, + 97598.41715003968, + null, + 97110.64567914454, + 96912.8602518081, + null, + 97110.64567914454, + 96640.9561634297, + null, + 97110.64567914454, + 96548.78849614567, + null, + 97110.64567914454, + 97092.6033555316, + null, + 97110.64567914454, + 96137.93531003897, + null, + 97110.64567914454, + 97681.82650463261, + null, + 97110.64567914454, + 96900.36956234596, + null, + 97110.64567914454, + 99054.93251049488, + null, + 97110.64567914454, + 97621.5308801509, + null, + 97110.64567914454, + 96840.81091989319, + null, + 97110.64567914454, + 97398.68149419299, + null, + 97110.64567914454, + 96052.90997742687, + null, + 97110.64567914454, + 97140.91541633583, + null, + 97110.64567914454, + 96883.35271778212, + null, + 97110.64567914454, + 96961.63219735424, + null, + 97110.64567914454, + 96593.15685874, + null, + 97110.64567914454, + 96942.49668912489, + null, + 97110.64567914454, + 97329.44637332104, + null, + 97110.64567914454, + 97283.72077280736, + null, + 96401.05087142391, + 96411.51796021752, + null, + 96401.05087142391, + 96339.24938310328, + null, + 97634.16117706981, + 97736.94813016456, + null, + 97634.16117706981, + 97910.96993785165, + null, + 97634.16117706981, + 96786.0414096176, + null, + 97634.16117706981, + 99128.8683145138, + null, + 97632.23610323192, + 97910.96993785165, + null, + 97632.23610323192, + 99128.8683145138, + null, + 97632.23610323192, + 96786.0414096176, + null, + 96143.59715704634, + 96211.67174914089, + null, + 96143.59715704634, + 95720.51419720666, + null, + 96143.59715704634, + 96607.09318109117, + null, + 96143.59715704634, + 95599.53684369884, + null, + 96442.3959926909, + 97078.78573950223, + null, + 96442.3959926909, + 95886.98258580548, + null, + 96442.3959926909, + 96463.65900406071, + null, + 96442.3959926909, + 96509.39820433313, + null, + 96442.3959926909, + 96509.4296845907, + null, + 96442.3959926909, + 96099.61138898744, + null, + 97173.67520609817, + 97122.96681206446, + null, + 97173.67520609817, + 95950.47769478709, + null, + 97173.67520609817, + 98675.12932763455, + null, + 97173.67520609817, + 97289.15046436754, + null, + 97452.54296459325, + 97014.53523334138, + null, + 97452.54296459325, + 97526.53767625983, + null, + 97452.54296459325, + 97181.11827309501, + null, + 97452.54296459325, + 98660.63217404629, + null, + 97452.54296459325, + 98412.44821844941, + null, + 97452.54296459325, + 97765.48056752425, + null, + 97452.54296459325, + 97130.87354039263, + null, + 97452.54296459325, + 97611.64317798252, + null, + 97452.54296459325, + 96607.81846515763, + null, + 97452.54296459325, + 97565.68134613338, + null, + 98764.71093073962, + 97878.18936700777, + null, + 98764.71093073962, + 98088.69457083048, + null, + 98764.71093073962, + 102537.64337792993, + null, + 98764.71093073962, + 97336.72314742803, + null, + 98764.71093073962, + 97384.85502032931, + null, + 98764.71093073962, + 97739.50461726454, + null, + 98764.71093073962, + 97790.18756915494, + null, + 98764.71093073962, + 98423.75905911079, + null, + 94675.58068459465, + 92914.29701391104, + null, + 94675.58068459465, + 94521.0965568673, + null, + 96584.45858311476, + 96813.45598094136, + null, + 96584.45858311476, + 96835.92874774396, + null, + 96584.45858311476, + 96172.09176973494, + null, + 96074.51018899358, + 96100.97014585767, + null, + 96074.51018899358, + 95705.40993449507, + null, + 96941.3855747379, + 96845.07860198681, + null, + 96941.3855747379, + 97276.29878619949, + null, + 96941.3855747379, + 97481.0467852597, + null, + 96481.93148257826, + 96827.38300101372, + null, + 96481.93148257826, + 96461.24693139427, + null, + 96481.93148257826, + 96535.82894445845, + null, + 96194.20097196527, + 96054.16110461712, + null, + 96194.20097196527, + 96003.46856538253, + null, + 96194.20097196527, + 96117.67522368413, + null, + 96410.63417003947, + 96380.27321562011, + null, + 96268.58433157318, + 96039.52555482746, + null, + 96268.58433157318, + 96091.70581400175, + null, + 96268.58433157318, + 96269.04428473447, + null, + 96844.08726268722, + 97245.37390852053, + null, + 96732.61589548577, + 96333.93226534751, + null, + 96732.61589548577, + 96524.6669755778, + null, + 96732.61589548577, + 96558.43883318681, + null, + 96732.61589548577, + 97209.46385807885, + null, + 96732.61589548577, + 96281.59320080571, + null, + 96732.61589548577, + 96876.62587606598, + null, + 96732.61589548577, + 97681.82650463261, + null, + 97054.54306076036, + 97191.15673842629, + null, + 97054.54306076036, + 97598.41715003968, + null, + 97054.54306076036, + 97177.84417040872, + null, + 97054.54306076036, + 97329.44637332104, + null, + 96736.36947326055, + 97334.199382075, + null, + 96736.36947326055, + 96164.9303846309, + null, + 95950.87856285187, + 95667.80679021226, + null, + 95950.87856285187, + 95658.32343165908, + null, + 96058.5884161396, + 95648.34307354958, + null, + 96058.5884161396, + 95901.87035986596, + null, + 96058.5884161396, + 95796.6220412549, + null, + 96058.5884161396, + 95732.4030502184, + null, + 96058.5884161396, + 96335.57621806604, + null, + 96074.46008448287, + 95737.0210501743, + null, + 96074.46008448287, + 96247.5730261708, + null, + 96373.61215631547, + 96407.22560594323, + null, + 96373.61215631547, + 96440.07084499848, + null, + 96774.68889401545, + 96991.17451689237, + null, + 96774.68889401545, + 97052.70205106144, + null, + 95954.6226953649, + 95514.95574487532, + null, + 97375.91125894338, + 97878.18936700777, + null, + 97375.91125894338, + 97384.85502032931, + null, + 97375.91125894338, + 98088.69457083048, + null, + 97375.91125894338, + 97790.18756915494, + null, + 96762.60907180404, + 96947.40675273385, + null, + 96762.60907180404, + 96817.66055571858, + null, + 96762.60907180404, + 96400.51278286969, + null, + 96762.60907180404, + 96656.51605951994, + null, + 96762.60907180404, + 97154.72425616732, + null, + 96762.60907180404, + 97559.12810431966, + null, + 96892.63356474544, + 97442.1178182285, + null, + 96892.63356474544, + 96871.98342831364, + null, + 96499.75723381033, + 96189.19527054564, + null, + 96499.75723381033, + 97753.78297929207, + null, + 96499.75723381033, + 96341.35508815081, + null, + 96499.75723381033, + 95819.77591622746, + null, + 96499.75723381033, + 95836.41008943335, + null, + 96499.75723381033, + 96259.9082581497, + null, + 96499.75723381033, + 96624.18025269137, + null, + 96499.75723381033, + 96869.39684947954, + null, + 96499.75723381033, + 96595.38846744089, + null, + 96499.75723381033, + 96273.9014736457, + null, + 96499.75723381033, + 97698.15736668535, + null, + 96499.75723381033, + 96237.38326345755, + null, + 96499.75723381033, + 96272.62459980143, + null, + 96499.75723381033, + 96297.69636707871, + null, + 96499.75723381033, + 95372.37969661041, + null, + 96499.75723381033, + 96464.1710890281, + null, + 96499.75723381033, + 96300.0043841075, + null, + 96499.75723381033, + 95976.46298115156, + null, + 96499.75723381033, + 96423.89730001795, + null, + 96499.75723381033, + 95705.40993449507, + null, + 96499.75723381033, + 97225.12273154467, + null, + 96499.75723381033, + 96380.40661308727, + null, + 96294.09088720444, + 96196.257368652, + null, + 96966.39468034501, + 97687.97327166176, + null, + 96966.39468034501, + 97598.41715003968, + null, + 96966.39468034501, + 97764.93718471118, + null, + 96966.39468034501, + 97964.99194759796, + null, + 96966.39468034501, + 97077.67459906588, + null, + 96966.39468034501, + 96053.464316358, + null, + 96966.39468034501, + 97681.82650463261, + null, + 96109.50994722702, + 95950.13199504191, + null, + 96109.50994722702, + 95847.60434582221, + null, + 96109.50994722702, + 96119.17908740342, + null, + 96088.99615148573, + 95905.42580827077, + null, + 96088.99615148573, + 95919.99780721203, + null, + 96447.29551553998, + 96185.37627813521, + null, + 96447.29551553998, + 95946.3884071162, + null, + 96447.29551553998, + 96244.27988515895, + null, + 96447.29551553998, + 96196.74025182828, + null, + 96447.29551553998, + 96174.10171537164, + null, + 96447.29551553998, + 96538.8108213843, + null, + 96447.29551553998, + 97589.77077865561, + null, + 96447.29551553998, + 96255.53165206172, + null, + 96447.29551553998, + 96989.12139942696, + null, + 96447.29551553998, + 96386.3485642869, + null, + 96447.29551553998, + 96209.17705200447, + null, + 96447.29551553998, + 96404.94279951866, + null, + 96447.29551553998, + 95582.13652811556, + null, + 96447.29551553998, + 96075.92114230867, + null, + 96447.29551553998, + 96933.47649225005, + null, + 96447.29551553998, + 96208.32555016727, + null, + 96447.29551553998, + 96486.76296481364, + null, + 96447.29551553998, + 96310.8706914388, + null, + 96447.29551553998, + 96156.77295171334, + null, + 96447.29551553998, + 96208.35637264428, + null, + 96447.29551553998, + 96987.0677801975, + null, + 96447.29551553998, + 96412.81309344785, + null, + 95819.44644735986, + 95605.5078529397, + null, + 95819.44644735986, + 95576.46893477392, + null, + 95819.44644735986, + 95889.53071914573, + null, + 95819.44644735986, + 95560.7221366576, + null, + 95819.44644735986, + 95552.49574202929, + null, + 95819.44644735986, + 95550.8641318485, + null, + 96218.35482989937, + 96405.3198620752, + null, + 96218.35482989937, + 95915.425645233, + null, + 96218.35482989937, + 96264.80700176922, + null, + 95899.18906383448, + 96174.34018844058, + null, + 95899.18906383448, + 95670.97648775595, + null, + 95899.18906383448, + 95372.88665283406, + null, + 96769.01595020863, + 96759.80185472532, + null, + 96769.01595020863, + 97151.48266936177, + null, + 96274.30300397708, + 95667.97156819428, + null, + 96274.30300397708, + 96281.8187118494, + null, + 96274.30300397708, + 96786.33551603762, + null, + 96042.0069575773, + 95652.45140521994, + null, + 97385.79270355738, + 97878.18936700777, + null, + 97385.79270355738, + 97384.85502032931, + null, + 97385.79270355738, + 98088.69457083048, + null, + 97385.79270355738, + 97790.18756915494, + null, + 96229.39248836122, + 96204.29166956923, + null, + 96229.39248836122, + 96273.36385473177, + null, + 96229.39248836122, + 96163.50814490586, + null, + 96126.32784334563, + 96142.15372609507, + null, + 96126.32784334563, + 96246.21706337249, + null, + 96126.32784334563, + 95604.22358935632, + null, + 96126.32784334563, + 96630.39978608028, + null, + 96126.32784334563, + 95933.78130606312, + null, + 96126.32784334563, + 95969.93628717288, + null, + 96635.17803046739, + 96866.28592075064, + null, + 96635.17803046739, + 96564.72992711587, + null, + 96032.39838433285, + 95596.36627113551, + null, + 96032.39838433285, + 96182.32358713142, + null, + 96032.39838433285, + 96286.66809125463, + null, + 96032.39838433285, + 95814.45750461605, + null, + 97463.6827927217, + 97301.69481913165, + null, + 97463.6827927217, + 96886.2262880243, + null, + 97463.6827927217, + 96912.85156473947, + null, + 97463.6827927217, + 97085.38663455553, + null, + 97463.6827927217, + 97355.69179208958, + null, + 97463.6827927217, + 97043.19055357405, + null, + 97463.6827927217, + 97406.83103336953, + null, + 97463.6827927217, + 97508.64091238416, + null, + 97463.6827927217, + 97596.85822151981, + null, + 97463.6827927217, + 97281.93703232154, + null, + 97463.6827927217, + 97339.53315472855, + null, + 97463.6827927217, + 97182.15385952276, + null, + 97463.6827927217, + 98255.45010528169, + null, + 97463.6827927217, + 96708.5597033612, + null, + 97463.6827927217, + 97342.9103563253, + null, + 97463.6827927217, + 97298.42341187966, + null, + 97463.6827927217, + 98020.16838808233, + null, + 97463.6827927217, + 97476.84212265511, + null, + 97463.6827927217, + 97585.2552421273, + null, + 97463.6827927217, + 97850.09960847285, + null, + 97463.6827927217, + 97800.77052809988, + null, + 97463.6827927217, + 97497.40137546581, + null, + 97463.6827927217, + 97172.85679925286, + null, + 97463.6827927217, + 97230.27471512488, + null, + 97463.6827927217, + 97465.08902518246, + null, + 97463.6827927217, + 97572.7293771363, + null, + 97463.6827927217, + 97060.83487204376, + null, + 97463.6827927217, + 97373.64682205649, + null, + 97463.6827927217, + 97530.9950602946, + null, + 97463.6827927217, + 97230.78206970361, + null, + 97463.6827927217, + 97683.2450611929, + null, + 97463.6827927217, + 97367.93418176113, + null, + 97463.6827927217, + 97194.9145170215, + null, + 97463.6827927217, + 98030.3922687115, + null, + 97463.6827927217, + 98164.50513674611, + null, + 97463.6827927217, + 97211.33338583425, + null, + 97463.6827927217, + 97167.07602680264, + null, + 97463.6827927217, + 98102.01760177093, + null, + 97463.6827927217, + 97473.4025173577, + null, + 97463.6827927217, + 96869.55087283194, + null, + 97463.6827927217, + 98618.6314379455, + null, + 97463.6827927217, + 97980.37305163042, + null, + 97463.6827927217, + 98040.98610521741, + null, + 97463.6827927217, + 97099.06003533595, + null, + 97463.6827927217, + 98609.76983635421, + null, + 97463.6827927217, + 97732.09002327014, + null, + 97463.6827927217, + 97154.99065747266, + null, + 97463.6827927217, + 97218.35146138504, + null, + 97463.6827927217, + 97299.95816584109, + null, + 97463.6827927217, + 97300.96068285858, + null, + 97463.6827927217, + 97626.13132471772, + null, + 97463.6827927217, + 97112.35613433391, + null, + 97463.6827927217, + 97560.98718189307, + null, + 97463.6827927217, + 97185.7097878747, + null, + 97463.6827927217, + 97559.13458489727, + null, + 97463.6827927217, + 97201.16002150408, + null, + 97463.6827927217, + 97516.02947908005, + null, + 97463.6827927217, + 97270.02110151788, + null, + 97463.6827927217, + 97433.41068898393, + null, + 97463.6827927217, + 97833.68675936971, + null, + 97463.6827927217, + 97325.64609840355, + null, + 97463.6827927217, + 97103.12815964877, + null, + 97463.6827927217, + 97473.72704771126, + null, + 97463.6827927217, + 96893.86441244776, + null, + 95854.85581067526, + 95331.67170746473, + null, + 96404.04885412315, + 96586.20076828018, + null, + 96404.04885412315, + 96137.68930318531, + null, + 96940.5437378161, + 97194.9145170215, + null, + 96940.5437378161, + 97299.95816584109, + null, + 96940.5437378161, + 97300.96068285858, + null, + 96906.44900909, + 96950.1808551135, + null, + 96906.44900909, + 97299.95816584109, + null, + 96906.44900909, + 97300.96068285858, + null, + 96406.17290872385, + 96390.43113801478, + null, + 97193.59098538685, + 96858.54175843939, + null, + 97193.59098538685, + 97167.39841072715, + null, + 97193.59098538685, + 97743.58448295263, + null, + 97193.59098538685, + 97449.0985514171, + null, + 97193.59098538685, + 97642.36452938811, + null, + 97193.59098538685, + 97990.33956338989, + null, + 97229.6312230193, + 98636.37989407925, + null, + 97229.6312230193, + 97499.45757321935, + null, + 97229.6312230193, + 97494.95806383107, + null, + 97229.6312230193, + 96707.92401672102, + null, + 97229.6312230193, + 97387.15964980441, + null, + 97229.6312230193, + 96595.88973241366, + null, + 96433.95166449582, + 96547.16032979287, + null, + 96433.95166449582, + 96300.87116130441, + null, + 97275.9101009866, + 97788.7651245566, + null, + 97275.9101009866, + 97368.18786729996, + null, + 97275.9101009866, + 97615.97056569872, + null, + 97275.9101009866, + 97749.77214743374, + null, + 97275.9101009866, + 97737.47168433828, + null, + 96243.29294451735, + 95667.97156819428, + null, + 96243.29294451735, + 96281.8187118494, + null, + 96243.29294451735, + 96004.06807647034, + null, + 96243.29294451735, + 96786.33551603762, + null, + 97395.09075685765, + 97878.18936700777, + null, + 97395.09075685765, + 97384.85502032931, + null, + 97395.09075685765, + 98088.69457083048, + null, + 97395.09075685765, + 97790.18756915494, + null, + 97324.02537320471, + 97334.69528656456, + null, + 97324.02537320471, + 97343.70893048414, + null, + 97324.02537320471, + 98022.64385800273, + null, + 97324.02537320471, + 97909.08890877801, + null, + 97324.02537320471, + 96735.91203018947, + null, + 97324.02537320471, + 97379.30529940335, + null, + 97324.02537320471, + 97912.68866754905, + null, + 97324.02537320471, + 97483.5508578201, + null, + 97324.02537320471, + 97453.80616460227, + null, + 97324.02537320471, + 97390.56459064402, + null, + 97324.02537320471, + 97854.95892464767, + null, + 97324.02537320471, + 98229.18483310309, + null, + 97324.02537320471, + 97689.45585714692, + null, + 97324.02537320471, + 96459.9064706218, + null, + 97620.07637011069, + 97368.18786729996, + null, + 97620.07637011069, + 98220.8617121839, + null, + 97620.07637011069, + 97743.37633435942, + null, + 97620.07637011069, + 97896.16988465277, + null, + 97620.07637011069, + 97276.66123026267, + null, + 97620.07637011069, + 97720.29522867472, + null, + 97620.07637011069, + 97788.7651245566, + null, + 97620.07637011069, + 97988.47049740942, + null, + 97620.07637011069, + 96786.33551603762, + null, + 97620.07637011069, + 97334.69528656456, + null, + 97620.07637011069, + 98169.99665670788, + null, + 97620.07637011069, + 97706.1575554865, + null, + 97620.07637011069, + 97314.87265253808, + null, + 97620.07637011069, + 97929.82001151697, + null, + 97620.07637011069, + 97400.16397729573, + null, + 97620.07637011069, + 97928.27341274354, + null, + 97620.07637011069, + 97615.97056569872, + null, + 97620.07637011069, + 97923.16505107327, + null, + 97620.07637011069, + 97607.80752654132, + null, + 97620.07637011069, + 97786.29869250092, + null, + 97620.07637011069, + 97805.14139405916, + null, + 97620.07637011069, + 98093.39526957169, + null, + 97620.07637011069, + 97448.93124443709, + null, + 97620.07637011069, + 97659.20648661858, + null, + 97620.07637011069, + 97773.13707838414, + null, + 97620.07637011069, + 97290.81332207196, + null, + 97620.07637011069, + 97691.44923546405, + null, + 97620.07637011069, + 97536.70985088356, + null, + 97620.07637011069, + 98040.70809859729, + null, + 97620.07637011069, + 97682.17810885303, + null, + 97620.07637011069, + 97902.9875639131, + null, + 97620.07637011069, + 98103.51583993803, + null, + 97620.07637011069, + 97737.47168433828, + null, + 97620.07637011069, + 97433.16878255778, + null, + 97620.07637011069, + 98011.69742537098, + null, + 97620.07637011069, + 97956.78235187841, + null, + 97620.07637011069, + 97712.75424892707, + null, + 97620.07637011069, + 97337.3673240496, + null, + 96147.39169169297, + 96357.32745947987, + null, + 96147.39169169297, + 96262.42166171632, + null, + 96147.39169169297, + 95826.03997621946, + null, + 97643.64988982778, + 98066.1726574899, + null, + 97643.64988982778, + 97701.3804478227, + null, + 97643.64988982778, + 98084.85055027793, + null, + 97643.64988982778, + 97165.59160948182, + null, + 97602.881367329, + 97497.40137546581, + null, + 97602.881367329, + 97476.84212265511, + null, + 97602.881367329, + 97172.85679925286, + null, + 97602.881367329, + 97585.2552421273, + null, + 97602.881367329, + 98255.45010528169, + null, + 97602.881367329, + 97482.29772041427, + null, + 97602.881367329, + 97230.27471512488, + null, + 97602.881367329, + 97465.08902518246, + null, + 97602.881367329, + 98030.3922687115, + null, + 97602.881367329, + 98164.50513674611, + null, + 97602.881367329, + 98102.01760177093, + null, + 97602.881367329, + 98040.98610521741, + null, + 97602.881367329, + 97300.96068285858, + null, + 97602.881367329, + 97299.95816584109, + null, + 97602.881367329, + 96893.86441244776, + null, + 97155.50811563137, + 98201.32974009505, + null, + 98171.17574764158, + 98883.68742329624, + null, + 98171.17574764158, + 98667.49767503393, + null, + 98171.17574764158, + 97488.73626458432, + null, + 96541.43397278279, + 97162.69508453069, + null, + 96167.45474416234, + 96010.7115980084, + null, + 95870.52327035548, + 95771.1095203462, + null, + 95870.52327035548, + 95763.40443589797, + null, + 95870.52327035548, + 95244.0575474311, + null, + 96926.74644690406, + 96872.15210964113, + null, + 96926.74644690406, + 96379.22200820879, + null, + 96926.74644690406, + 96906.24888628504, + null, + 96926.74644690406, + 96854.63537850163, + null, + 96926.74644690406, + 97264.45498533218, + null, + 96926.74644690406, + 98010.49563338193, + null, + 96926.74644690406, + 97612.43902974202, + null, + 96878.0650637567, + 97623.61756268641, + null, + 96878.0650637567, + 97499.04801278567, + null, + 96878.0650637567, + 97608.46277176453, + null, + 96878.0650637567, + 97167.39841072715, + null, + 96878.0650637567, + 95934.14872105536, + null, + 96878.0650637567, + 97455.35219073194, + null, + 97375.10606040448, + 97335.19348886795, + null, + 98168.55916640947, + 98225.34302642361, + null, + 98168.55916640947, + 98229.77888928792, + null, + 98168.55916640947, + 98675.12932763455, + null, + 97401.99871940678, + 97482.53862767345, + null, + 97401.99871940678, + 97276.46828922024, + null, + 97401.99871940678, + 97499.88151314572, + null, + 96722.2929728447, + 95737.0210501743, + null, + 96722.2929728447, + 96247.5730261708, + null, + 97054.36607374287, + 96991.17451689237, + null, + 97054.36607374287, + 97052.70205106144, + null, + 96603.25260090239, + 96299.26984037684, + null, + 96603.25260090239, + 96500.32458861038, + null, + 96603.25260090239, + 96778.83528846483, + null, + 96603.25260090239, + 96483.80491367223, + null, + 98932.31091884513, + 97878.18936700777, + null, + 98932.31091884513, + 98088.69457083048, + null, + 98932.31091884513, + 102537.64337792993, + null, + 98932.31091884513, + 97336.72314742803, + null, + 98932.31091884513, + 97384.85502032931, + null, + 98932.31091884513, + 97739.50461726454, + null, + 98932.31091884513, + 97790.18756915494, + null, + 98932.31091884513, + 98423.75905911079, + null, + 98926.20655583622, + 100136.85344995526, + null, + 98926.20655583622, + 99551.68465587133, + null, + 98926.20655583622, + 100437.39062185503, + null, + 98926.20655583622, + 99551.98543303015, + null, + 98926.20655583622, + 99562.25712118535, + null, + 98881.20399257346, + 99359.06703624275, + null, + 98873.6590998779, + 98574.50972172228, + null, + 98873.6590998779, + 98667.49767503393, + null, + 98873.6590998779, + 98883.68742329624, + null, + 98873.6590998779, + 98538.96596090084, + null, + 98873.6590998779, + 99762.90131115422, + null, + 98776.08147395353, + 98977.8256826855, + null, + 98776.08147395353, + 97325.59157415244, + null, + 98916.08043593282, + 100141.87894949828, + null, + 98916.08043593282, + 99845.35414701192, + null, + 98775.64297666437, + 98971.68304848456, + null, + 98833.5386160878, + 99673.93123472382, + null, + 98833.5386160878, + 99291.99320881635, + null, + 98779.4951496633, + 99276.35931151945, + null, + 98769.87019965112, + 99120.91791864607, + null, + 98763.69912444155, + 98129.8335044742, + null, + 98763.69912444155, + 99397.55134035554, + null, + 98715.38337956829, + 97698.15736668535, + null, + 98838.01226486915, + 97598.41715003968, + null, + 98838.01226486915, + 97965.90473223805, + null, + 98838.01226486915, + 98426.11814680099, + null, + 97740.36484145897, + 98731.25835265023, + null, + 98794.9356782363, + 99184.60882109228, + null, + 98794.9356782363, + 99142.08519452307, + null, + 98794.9356782363, + 99316.2243501031, + null, + 98875.12446310604, + 98622.91972235353, + null, + 98875.12446310604, + 98628.35943001318, + null, + 97598.41715003968, + 97052.70205106144, + null, + 97598.41715003968, + 96991.17451689237, + null, + 97191.15673842629, + 96995.58808119217, + null, + 97191.15673842629, + 96874.32517213062, + null, + 97191.15673842629, + 96984.11595684849, + null, + 97191.15673842629, + 97109.16179890749, + null, + 97191.15673842629, + 97136.19437689305, + null, + 96994.3545714313, + 97491.9260662067, + null, + 96415.73464421919, + 96341.35508815081, + null, + 95591.49480913648, + 96234.84158094184, + null, + 96234.84158094184, + 96362.21507081333, + null, + 96234.84158094184, + 96805.5627237504, + null, + 96743.02101349403, + 96234.84158094184, + null, + 97792.47295206528, + 98077.79681744472, + null, + 97792.47295206528, + 98078.46725482005, + null, + 97792.47295206528, + 97340.80449807804, + null, + 97792.47295206528, + 98528.28228471124, + null, + 97792.47295206528, + 97488.0322813689, + null, + 96462.81227754163, + 96435.9592073502, + null, + 97852.29653105894, + 97411.333447029, + null, + 97497.28727853562, + 97430.46651931974, + null, + 97497.28727853562, + 97362.69630546733, + null, + 97497.28727853562, + 97147.4098591697, + null, + 97497.28727853562, + 96935.63520473371, + null, + 97497.28727853562, + 97289.22073553668, + null, + 97497.28727853562, + 97850.12598200802, + null, + 97497.28727853562, + 97597.36616865019, + null, + 97343.57538035887, + 96412.37649005053, + null, + 97343.57538035887, + 97375.63672739729, + null, + 97366.39316478191, + 96830.34367432375, + null, + 97366.39316478191, + 96727.0857416317, + null, + 97366.39316478191, + 96968.7576874346, + null, + 97781.84828947709, + 97743.37633435942, + null, + 97781.84828947709, + 97788.7651245566, + null, + 97781.84828947709, + 97706.1575554865, + null, + 97781.84828947709, + 97773.13707838414, + null, + 97781.84828947709, + 98028.98765417963, + null, + 97781.84828947709, + 97254.19037202669, + null, + 97781.84828947709, + 98343.20918176853, + null, + 97781.84828947709, + 97314.87265253808, + null, + 97781.84828947709, + 97448.93124443709, + null, + 97781.84828947709, + 97720.29522867472, + null, + 97781.84828947709, + 98178.54170307206, + null, + 97781.84828947709, + 98199.86102071151, + null, + 97781.84828947709, + 97368.18786729996, + null, + 97781.84828947709, + 97400.16397729573, + null, + 97781.84828947709, + 97928.27341274354, + null, + 97781.84828947709, + 98220.8617121839, + null, + 97781.84828947709, + 97691.44923546405, + null, + 97781.84828947709, + 97744.85805549823, + null, + 97781.84828947709, + 98056.94048479544, + null, + 97781.84828947709, + 97615.97056569872, + null, + 97781.84828947709, + 97951.56325025932, + null, + 97781.84828947709, + 98093.39526957169, + null, + 97781.84828947709, + 97888.06964139262, + null, + 97781.84828947709, + 97749.77214743374, + null, + 97781.84828947709, + 97737.47168433828, + null, + 97781.84828947709, + 98115.52004533702, + null, + 97781.84828947709, + 97337.3673240496, + null, + 98514.4612858039, + 99023.4635169911, + null, + 98514.4612858039, + 97788.7651245566, + null, + 98514.4612858039, + 99401.61250638886, + null, + 98514.4612858039, + 97749.77214743374, + null, + 97921.70930511011, + 97878.18936700777, + null, + 97921.70930511011, + 97384.85502032931, + null, + 97921.70930511011, + 98088.69457083048, + null, + 97921.70930511011, + 97790.18756915494, + null, + 97902.18401137421, + 97878.18936700777, + null, + 97902.18401137421, + 97384.85502032931, + null, + 97902.18401137421, + 98088.69457083048, + null, + 97902.18401137421, + 97790.18756915494, + null, + 98983.632695647, + 98987.744183523, + null, + 98983.632695647, + 99579.00966292991, + null, + 98983.632695647, + 98635.38198452107, + null, + 99203.2809335762, + 100098.40192877872, + null, + 98509.44614370928, + 98017.95961808166, + null, + 98509.44614370928, + 99022.78768529206, + null, + 96494.98600367835, + 96435.29713124092, + null, + 96494.98600367835, + 96392.03219267243, + null, + 96494.98600367835, + 96931.12324851674, + null, + 96494.98600367835, + 95651.87929649846, + null, + 96494.98600367835, + 95594.04154313843, + null, + 96494.98600367835, + 96463.50079272543, + null, + 96494.98600367835, + 96120.0822298696, + null, + 96494.98600367835, + 96240.44430881485, + null, + 96494.98600367835, + 96101.99869734746, + null, + 96494.98600367835, + 96315.36819369205, + null, + 96494.98600367835, + 95937.25203342551, + null, + 96494.98600367835, + 96235.33414286007, + null, + 96494.98600367835, + 96530.33748860421, + null, + 96494.98600367835, + 96182.08723044166, + null, + 96494.98600367835, + 96258.26403190757, + null, + 98740.78608913493, + 98709.8651975024, + null, + 98740.78608913493, + 99109.15521458666, + null, + 99612.16066233935, + 100640.4787093486, + null, + 99612.16066233935, + 100235.20982182995, + null, + 100399.53610597138, + 102213.573130387, + null, + 100399.53610597138, + 100665.20298807592, + null, + 100399.53610597138, + 101380.72545035236, + null, + 99242.27473376936, + 99856.27897972005, + null, + 99242.27473376936, + 99786.36456658994, + null, + 99242.27473376936, + 99683.00699846164, + null, + 97369.40146033755, + 97873.62352691275, + null, + 98601.01896303026, + 98812.91818171015, + null, + 97723.80989181406, + 97843.27029212235, + null, + 97723.80989181406, + 97167.39841072715, + null, + 97723.80989181406, + 97743.58448295263, + null, + 97723.80989181406, + 97449.0985514171, + null, + 97723.80989181406, + 97728.72992702796, + null, + 98698.73643764145, + 98904.72563619397, + null, + 98698.73643764145, + 98942.09530630929, + null, + 98698.73643764145, + 98891.2416273708, + null, + 97769.5225019777, + 97368.18786729996, + null, + 97769.5225019777, + 97400.16397729573, + null, + 97769.5225019777, + 97615.97056569872, + null, + 97769.5225019777, + 97923.16505107327, + null, + 97769.5225019777, + 97788.7651245566, + null, + 97769.5225019777, + 97749.77214743374, + null, + 97769.5225019777, + 97737.47168433828, + null, + 98424.79828892439, + 98417.88816057792, + null, + 98932.31091884513, + 98849.99134497087, + null, + 98926.20655583622, + 98849.99134497087, + null, + 98881.20399257346, + 98849.99134497087, + null, + 98873.6590998779, + 98849.99134497087, + null, + 98776.08147395353, + 98849.99134497087, + null, + 98916.08043593282, + 98849.99134497087, + null, + 98775.64297666437, + 98849.99134497087, + null, + 98833.5386160878, + 98849.99134497087, + null, + 98779.4951496633, + 98849.99134497087, + null, + 98769.87019965112, + 98849.99134497087, + null, + 98763.69912444155, + 98849.99134497087, + null, + 98715.38337956829, + 98849.99134497087, + null, + 98838.01226486915, + 98849.99134497087, + null, + 98731.25835265023, + 98849.99134497087, + null, + 98794.9356782363, + 98849.99134497087, + null, + 98875.12446310604, + 98849.99134497087, + null, + 98845.6917714939, + 98849.99134497087, + null, + 97153.8202347327, + 96813.45598094136, + null, + 97153.8202347327, + 96835.92874774396, + null, + 97153.8202347327, + 97299.95816584109, + null, + 97153.8202347327, + 97300.96068285858, + null, + 97153.8202347327, + 96172.09176973494, + null, + 97784.87511330319, + 97988.12714007127, + null, + 97784.87511330319, + 98185.14683392025, + null, + 97784.87511330319, + 97299.95816584109, + null, + 97784.87511330319, + 97300.96068285858, + null, + 98488.59232974793, + 98502.26373555082, + null, + 98488.59232974793, + 98563.51548863579, + null, + 97835.98880603131, + 98515.43976060345, + null, + 97835.98880603131, + 96994.13649214181, + null, + 98697.76296828069, + 98899.25788886541, + null, + 98697.76296828069, + 98911.1768536842, + null, + 98425.30418388022, + 98350.05034462475, + null, + 97352.5478411118, + 97442.5837413775, + null, + 97352.5478411118, + 96877.27316989908, + null, + 97352.5478411118, + 96504.96941037805, + null, + 97352.5478411118, + 97237.72508581873, + null, + 99087.60514794616, + 99586.27547231995, + null, + 99087.60514794616, + 99232.31835984743, + null, + 99087.60514794616, + 99900.79355708066, + null, + 99087.60514794616, + 98675.12932763455, + null, + 99562.51936967154, + 99953.84555270121, + null, + 99562.51936967154, + 100010.22175620866, + null, + 99562.51936967154, + 100488.19339995636, + null, + 99562.51936967154, + 99050.91600599952, + null, + 99562.51936967154, + 100300.1455608082, + null, + 99562.51936967154, + 99125.08385354279, + null, + 97438.32392949228, + 96991.17451689237, + null, + 97438.32392949228, + 97052.70205106144, + null, + 97438.32392949228, + 96826.71329736618, + null, + 99581.18821252153, + 100865.26021198924, + null, + 98589.19418356709, + 98730.97463170756, + null, + 99047.9458477898, + 99515.36066611517, + null, + 99047.9458477898, + 99419.17564342206, + null, + 97904.87372888521, + 97442.1178182285, + null, + 98685.34030967425, + 98962.18713370281, + null, + 97598.41715003968, + 97236.56543939441, + null, + 97191.15673842629, + 97236.56543939441, + null, + 97236.56543939441, + 97681.82650463261, + null, + 97236.56543939441, + 96052.90997742687, + null, + 97191.15673842629, + 97440.7506574999, + null, + 97440.7506574999, + 97329.44637332104, + null, + 97440.7506574999, + 96912.8602518081, + null, + 97440.7506574999, + 97398.68149419299, + null, + 97440.7506574999, + 97283.72077280736, + null, + 97440.7506574999, + 96548.78849614567, + null, + 97440.7506574999, + 97681.82650463261, + null, + 97440.7506574999, + 97366.57493092174, + null, + 97440.7506574999, + 96883.35271778212, + null, + 97440.7506574999, + 96900.36956234596, + null, + 97440.7506574999, + 98539.96016607621, + null, + 97440.7506574999, + 98539.20822724189, + null, + 96448.97691094204, + 96191.69901840627, + null, + 96448.97691094204, + 96265.19900264395, + null, + 96709.59744547942, + 95997.27711720114, + null, + 98547.70620576198, + 98500.0361551715, + null, + 98547.70620576198, + 98246.11805337203, + null, + 98547.70620576198, + 98850.07485794366, + null, + 98547.70620576198, + 98011.22054926708, + null, + 98547.70620576198, + 98026.80584910973, + null, + 98547.70620576198, + 97272.16196531034, + null, + 98547.70620576198, + 101377.60794729496, + null, + 98547.70620576198, + 98957.24165577488, + null, + 98547.70620576198, + 98961.50436798272, + null, + 98547.70620576198, + 97559.12810431966, + null, + 98547.70620576198, + 97237.89195347154, + null, + 98547.70620576198, + 97141.56965571626, + null, + 98547.70620576198, + 98935.5010496066, + null, + 98547.70620576198, + 97774.42866113664, + null, + 97115.24870623546, + 96824.95283232043, + null, + 96930.11819667481, + 97172.85679925286, + null, + 97074.16623154836, + 97299.95816584109, + null, + 97074.16623154836, + 97300.96068285858, + null, + 97074.16623154836, + 96894.77232507731, + null, + 96568.92366528956, + 97119.02524363514, + null, + 96568.92366528956, + 96134.33859468818, + null, + 96568.92366528956, + 96133.66483574735, + null, + 98713.83774017166, + 99362.4122499512, + null, + 98713.83774017166, + 98980.06656171624, + null, + 98345.9554260893, + 98577.91639424925, + null, + 97740.55752143663, + 98301.5427103644, + null, + 97740.55752143663, + 97911.65322441417, + null, + 97191.15673842629, + 97740.55752143663, + null, + 97598.41715003968, + 97740.55752143663, + null, + 97988.18684320113, + 97681.82650463261, + null, + 97988.18684320113, + 98426.11814680099, + null, + 97988.18684320113, + 97621.5308801509, + null, + 97598.41715003968, + 97988.18684320113, + null, + 97988.18684320113, + 97965.90473223805, + null, + 99349.28939642792, + 99947.23103246646, + null, + 99349.28939642792, + 99525.32125049765, + null, + 99349.28939642792, + 98426.11814680099, + null, + 99349.28939642792, + 100615.97017651156, + null, + 99349.28939642792, + 99091.59936505146, + null, + 96556.14889918086, + 96193.09435285682, + null, + 96556.14889918086, + 96209.32610496953, + null, + 96556.14889918086, + 96157.43262757578, + null, + 96556.14889918086, + 96039.16378214146, + null, + 96556.14889918086, + 95666.6047695683, + null, + 99625.77747749203, + 101027.38756222327, + null, + 99625.77747749203, + 100491.07919538966, + null, + 99625.77747749203, + 99965.07519503396, + null, + 98427.86290460796, + 98540.85216934852, + null, + 98427.86290460796, + 99052.2124935182, + null, + 98427.86290460796, + 97895.64290700338, + null, + 98427.86290460796, + 99076.34984414672, + null, + 98427.86290460796, + 98336.60564073424, + null, + 97468.41119559384, + 97788.7651245566, + null, + 97468.41119559384, + 97276.66123026267, + null, + 97468.41119559384, + 97749.77214743374, + null, + 97468.41119559384, + 97737.47168433828, + null, + 97532.46968364714, + 98674.7174457713, + null, + 97403.19800982128, + 96947.40675273385, + null, + 97403.19800982128, + 96817.66055571858, + null, + 97403.19800982128, + 96896.58750176255, + null, + 97403.19800982128, + 96400.51278286969, + null, + 97403.19800982128, + 96656.51605951994, + null, + 97403.19800982128, + 97154.72425616732, + null, + 99130.3078520612, + 99271.76461161645, + null, + 98512.10297397664, + 98114.52152816013, + null, + 98512.10297397664, + 98111.97280969669, + null, + 98512.10297397664, + 97753.21078683695, + null, + 98512.10297397664, + 98142.06219207752, + null, + 98512.10297397664, + 98144.87686544789, + null, + 98512.10297397664, + 99265.99329452899, + null, + 98519.8177010953, + 97961.22502344675, + null, + 99017.67985713482, + 98962.18713370281, + null, + 97619.72683427205, + 96300.0043841075, + null, + 98147.84267591721, + 97330.30197024634, + null, + 98147.84267591721, + 98153.0005023464, + null, + 97949.55637290105, + 97334.69528656456, + null, + 97949.55637290105, + 97996.06129807832, + null, + 97949.55637290105, + 98230.51101716988, + null, + 97949.55637290105, + 97046.83129228091, + null, + 97949.55637290105, + 98279.26861206899, + null, + 99502.83924873942, + 99626.79604297405, + null, + 99502.83924873942, + 99000.02707953496, + null, + 99502.83924873942, + 99142.62317278316, + null, + 99502.83924873942, + 100188.52114244823, + null, + 98872.0205731119, + 99265.28429092855, + null, + 98872.0205731119, + 98156.10361722215, + null, + 98390.87404103394, + 98832.24946054372, + null, + 98390.87404103394, + 98597.7964869281, + null, + 98390.87404103394, + 98557.67286605883, + null, + 98390.87404103394, + 98374.27664176481, + null, + 98390.87404103394, + 98475.73906360153, + null, + 98390.87404103394, + 97731.41157443785, + null, + 98390.87404103394, + 98308.24242195391, + null, + 98390.87404103394, + 97840.92878276923, + null, + 98390.87404103394, + 97886.2552796078, + null, + 98390.87404103394, + 98672.42439807321, + null, + 99053.11429206465, + 98993.730905672, + null, + 99053.11429206465, + 99280.86800505298, + null, + 102016.60254936705, + 102128.56689301181, + null, + 102016.60254936705, + 105318.17245295613, + null, + 102016.60254936705, + 101417.57039700724, + null, + 102016.60254936705, + 102629.20595000873, + null, + 102016.60254936705, + 100636.49150263055, + null, + 102016.60254936705, + 102559.4749251737, + null, + 98075.21405525423, + 97162.69508453069, + null, + 98075.21405525423, + 98019.20026379389, + null, + 99162.58751241713, + 99501.46206268593, + null, + 99162.58751241713, + 98810.35406462688, + null, + 99982.38307176298, + 100839.09741193936, + null, + 98292.59127337417, + 98877.03574041717, + null, + 98292.59127337417, + 97245.37390852053, + null, + 100060.98457894419, + 99714.32506825263, + null, + 100060.98457894419, + 99140.32285163709, + null, + 100060.98457894419, + 101435.76546972904, + null, + 100060.98457894419, + 100379.20660771398, + null, + 100060.98457894419, + 100494.1604689617, + null, + 100060.98457894419, + 100444.83349810736, + null, + 99185.22072761349, + 100171.78786335049, + null, + 99185.22072761349, + 97753.78297929207, + null, + 99185.22072761349, + 99691.16026545654, + null, + 97947.04358444022, + 96300.0043841075, + null, + 97947.04358444022, + 98069.36909948081, + null, + 97947.04358444022, + 98992.20989010415, + null, + 97474.60738990385, + 96464.1710890281, + null, + 97474.60738990385, + 96869.39684947954, + null, + 99170.7047386012, + 99218.7411313723, + null, + 98052.15218821482, + 96341.35508815081, + null, + 98052.15218821482, + 97698.15736668535, + null, + 98052.15218821482, + 99412.54200822763, + null, + 98616.68136712202, + 99155.63016872654, + null, + 98616.68136712202, + 98301.5427103644, + null, + 98616.68136712202, + 98981.42825942171, + null, + 98616.68136712202, + 97830.50425286932, + null, + 98616.68136712202, + 98426.11814680099, + null, + 99500.63364741569, + 99856.27897972005, + null, + 99500.63364741569, + 99786.36456658994, + null, + 99500.63364741569, + 99683.00699846164, + null, + 98316.9751512879, + 97687.97327166176, + null, + 98316.9751512879, + 98756.61116861763, + null, + 98316.9751512879, + 98771.61564503152, + null, + 98316.9751512879, + 97764.93718471118, + null, + 98316.9751512879, + 97964.99194759796, + null, + 98316.9751512879, + 98894.44972464189, + null, + 98316.9751512879, + 97681.82650463261, + null, + 99176.98993944687, + 99331.7744747594, + null, + 97788.31675277463, + 97816.61219866003, + null, + 97788.31675277463, + 96989.12139942696, + null, + 97788.31675277463, + 96987.0677801975, + null, + 100348.89954635833, + 99900.79355708066, + null, + 100348.89954635833, + 102530.11405078055, + null, + 100348.89954635833, + 98675.12932763455, + null, + 100348.89954635833, + 100158.43034755554, + null, + 99148.26930216937, + 98870.69224118859, + null, + 99148.26930216937, + 99495.77993367877, + null, + 99148.26930216937, + 98896.60676749866, + null, + 99148.26930216937, + 99061.38220264099, + null, + 100486.82668676783, + 99749.23255553393, + null, + 100486.82668676783, + 99863.46008168485, + null, + 100486.82668676783, + 101253.85143735835, + null, + 100486.82668676783, + 101066.18080243433, + null, + 100486.82668676783, + 100833.069541554, + null, + 100486.82668676783, + 100216.65510336985, + null, + 100486.82668676783, + 101097.55034226578, + null, + 100486.82668676783, + 101618.20433424404, + null, + 99758.98817475478, + 100357.48060133551, + null, + 99758.98817475478, + 100059.12439104206, + null, + 99758.98817475478, + 100338.86353601632, + null, + 99758.98817475478, + 99586.51857910478, + null, + 99758.98817475478, + 99951.0659012268, + null, + 96889.7794321626, + 97856.81262960663, + null, + 96889.7794321626, + 96575.13863198814, + null, + 96889.7794321626, + 96162.4303606248, + null, + 96889.7794321626, + 95209.07740315559, + null, + 96889.7794321626, + 95825.30565065744, + null, + 96889.7794321626, + 96286.13541218151, + null, + 99069.25619307961, + 98427.35866005206, + null, + 99069.25619307961, + 100540.34287442153, + null, + 99069.25619307961, + 97698.73432565104, + null, + 101823.31476410347, + 104834.05247099117, + null, + 101823.31476410347, + 102345.37784253916, + null, + 101823.31476410347, + 101736.15467046229, + null, + 101823.31476410347, + 102333.66889929863, + null, + 101823.31476410347, + 100557.2821983049, + null, + 98379.14339417113, + 97789.92707115466, + null, + 98379.14339417113, + 99212.64656167013, + null, + 98379.14339417113, + 97809.32654645263, + null, + 98379.14339417113, + 97768.46861576667, + null, + 98379.14339417113, + 97788.58031988013, + null, + 98379.14339417113, + 97809.59302628535, + null, + 98379.14339417113, + 98977.62128580881, + null, + 98379.14339417113, + 98312.73735572214, + null, + 101380.81652138675, + 99304.290069593, + null, + 101380.81652138675, + 101567.70440058614, + null, + 101380.81652138675, + 101580.24476163396, + null, + 101380.81652138675, + 101735.09643628406, + null, + 101380.81652138675, + 101809.73928647002, + null, + 101380.81652138675, + 101785.06810363055, + null, + 101380.81652138675, + 101573.83309184245, + null, + 101380.81652138675, + 102953.17211273103, + null, + 101380.81652138675, + 104198.31260714601, + null, + 101380.81652138675, + 106233.53305936579, + null, + 101380.81652138675, + 102017.0341341957, + null, + 101380.81652138675, + 99527.77886408713, + null, + 101380.81652138675, + 101917.25635551335, + null, + 101380.81652138675, + 101976.86435161783, + null, + 101380.81652138675, + 100243.014205219, + null, + 101380.81652138675, + 99932.49537425906, + null, + 101380.81652138675, + 102190.88209432086, + null, + 101380.81652138675, + 100124.12507747632, + null, + 101380.81652138675, + 101885.99912176745, + null, + 101380.81652138675, + 101697.96826814402, + null, + 101380.81652138675, + 101829.23480550414, + null, + 101380.81652138675, + 101522.08525588791, + null, + 101380.81652138675, + 100597.08688634772, + null, + 101380.81652138675, + 100353.70323921503, + null, + 101380.81652138675, + 102178.3682577673, + null, + 101380.81652138675, + 101779.84963144422, + null, + 101380.81652138675, + 99852.88185831445, + null, + 101380.81652138675, + 99990.35940967675, + null, + 101380.81652138675, + 102063.12360975276, + null, + 101380.81652138675, + 101781.56537819619, + null, + 101380.81652138675, + 101749.04159536793, + null, + 101380.81652138675, + 101634.82305426827, + null, + 101380.81652138675, + 102437.23538334639, + null, + 101380.81652138675, + 101962.97098059615, + null, + 101380.81652138675, + 100466.67560792255, + null, + 101380.81652138675, + 100113.74493313026, + null, + 101380.81652138675, + 100858.32947002299, + null, + 101380.81652138675, + 99975.85497357504, + null, + 101380.81652138675, + 101430.14405480694, + null, + 101380.81652138675, + 102278.80486131168, + null, + 101380.81652138675, + 101812.8020162423, + null, + 101380.81652138675, + 101588.15862456126, + null, + 101380.81652138675, + 102563.3206054858, + null, + 101380.81652138675, + 100748.96797238242, + null, + 101380.81652138675, + 101678.99297077536, + null, + 101380.81652138675, + 100750.28187529245, + null, + 101380.81652138675, + 101454.990611554, + null, + 101380.81652138675, + 100838.817421307, + null, + 101380.81652138675, + 100730.67229205805, + null, + 101380.81652138675, + 99990.30313700912, + null, + 101380.81652138675, + 102022.7910616867, + null, + 101380.81652138675, + 99646.19840781609, + null, + 101380.81652138675, + 99629.49033305429, + null, + 101380.81652138675, + 101905.45676874653, + null, + 101380.81652138675, + 100837.07785367471, + null, + 101380.81652138675, + 101545.97635361711, + null, + 101380.81652138675, + 101489.69453765085, + null, + 101380.81652138675, + 101743.09284030006, + null, + 101380.81652138675, + 101836.64612097175, + null, + 101380.81652138675, + 101856.42797018508, + null, + 101380.81652138675, + 101839.95878378669, + null, + 101380.81652138675, + 101729.67598101968, + null, + 101380.81652138675, + 101661.94211903469, + null, + 101380.81652138675, + 101780.85634799347, + null, + 101380.81652138675, + 101558.64005120956, + null, + 101380.81652138675, + 101330.36334771957, + null, + 101380.81652138675, + 100698.24029410268, + null, + 101380.81652138675, + 101614.75611960207, + null, + 101380.81652138675, + 98644.28600268529, + null, + 101380.81652138675, + 99737.09642278514, + null, + 101380.81652138675, + 100879.74390370514, + null, + 101380.81652138675, + 101077.31846050268, + null, + 101380.81652138675, + 102156.91580320336, + null, + 101380.81652138675, + 101765.97063868862, + null, + 101380.81652138675, + 100219.71623880966, + null, + 101380.81652138675, + 100725.71208858925, + null, + 101380.81652138675, + 102143.24639139706, + null, + 101380.81652138675, + 101792.06935951588, + null, + 101380.81652138675, + 101942.69325653883, + null, + 101380.81652138675, + 101650.40513567929, + null, + 101380.81652138675, + 101988.60520862282, + null, + 101380.81652138675, + 103450.9949418264, + null, + 101380.81652138675, + 101511.31310826991, + null, + 101380.81652138675, + 101648.40427836328, + null, + 101380.81652138675, + 102018.88919342995, + null, + 101380.81652138675, + 101741.66784545634, + null, + 101380.81652138675, + 101581.9987428239, + null, + 99254.27452910501, + 99468.2559944489, + null, + 99254.27452910501, + 99601.83878035982, + null, + 99254.27452910501, + 99603.45577850576, + null, + 99254.27452910501, + 99040.76425546396, + null, + 99254.27452910501, + 99172.24243406764, + null, + 99254.27452910501, + 99528.31511285559, + null, + 99254.27452910501, + 98769.65877246718, + null, + 99254.27452910501, + 99287.60100382363, + null, + 99227.13583415966, + 99475.57144267684, + null, + 98212.04884196128, + 98297.39646140915, + null, + 98212.04884196128, + 97418.97603097925, + null, + 99094.77135415385, + 98936.37152899419, + null, + 99094.77135415385, + 99182.20687722552, + null, + 99094.77135415385, + 99227.14373040265, + null, + 98915.86627395742, + 98821.68699083632, + null, + 98915.86627395742, + 98717.22176373757, + null, + 98915.86627395742, + 98584.01431051758, + null, + 98915.86627395742, + 99272.0781529895, + null, + 98915.86627395742, + 97965.80143681738, + null, + 98915.86627395742, + 98982.5031332364, + null, + 98121.78812235915, + 98027.13708713652, + null, + 98121.78812235915, + 97615.38809747441, + null, + 98121.78812235915, + 97503.33387121037, + null, + 98121.78812235915, + 97752.58113868252, + null, + 98121.78812235915, + 98136.58032128063, + null, + 98121.78812235915, + 98061.10715277967, + null, + 98932.31091884513, + 99010.43098706538, + null, + 98926.20655583622, + 99010.43098706538, + null, + 98881.20399257346, + 99010.43098706538, + null, + 98873.6590998779, + 99010.43098706538, + null, + 98776.08147395353, + 99010.43098706538, + null, + 98916.08043593282, + 99010.43098706538, + null, + 98775.64297666437, + 99010.43098706538, + null, + 98833.5386160878, + 99010.43098706538, + null, + 98779.4951496633, + 99010.43098706538, + null, + 98769.87019965112, + 99010.43098706538, + null, + 98763.69912444155, + 99010.43098706538, + null, + 98715.38337956829, + 99010.43098706538, + null, + 98838.01226486915, + 99010.43098706538, + null, + 98731.25835265023, + 99010.43098706538, + null, + 98794.9356782363, + 99010.43098706538, + null, + 98875.12446310604, + 99010.43098706538, + null, + 98845.6917714939, + 99010.43098706538, + null, + 98932.31091884513, + 99006.76819217965, + null, + 98926.20655583622, + 99006.76819217965, + null, + 98881.20399257346, + 99006.76819217965, + null, + 98873.6590998779, + 99006.76819217965, + null, + 98776.08147395353, + 99006.76819217965, + null, + 98916.08043593282, + 99006.76819217965, + null, + 98775.64297666437, + 99006.76819217965, + null, + 98833.5386160878, + 99006.76819217965, + null, + 98779.4951496633, + 99006.76819217965, + null, + 98769.87019965112, + 99006.76819217965, + null, + 98763.69912444155, + 99006.76819217965, + null, + 98715.38337956829, + 99006.76819217965, + null, + 98838.01226486915, + 99006.76819217965, + null, + 98731.25835265023, + 99006.76819217965, + null, + 98794.9356782363, + 99006.76819217965, + null, + 98875.12446310604, + 99006.76819217965, + null, + 98845.6917714939, + 99006.76819217965, + null, + 98421.28339426052, + 98614.1806245494, + null, + 98421.28339426052, + 98136.20709255511, + null, + 98421.28339426052, + 97999.91203126067, + null, + 98421.28339426052, + 97958.47457130344, + null, + 98421.28339426052, + 98009.09509648604, + null, + 98421.28339426052, + 97850.60195378115, + null, + 98421.28339426052, + 98005.5574452993, + null, + 98421.28339426052, + 97776.72898296927, + null, + 98421.28339426052, + 98631.78626191251, + null, + 98421.28339426052, + 99140.68926056154, + null, + 98421.28339426052, + 98536.86418508874, + null, + 98918.94691074, + 98910.03636312029, + null, + 98918.94691074, + 100242.68992519718, + null, + 98918.94691074, + 97891.04268537596, + null, + 98918.94691074, + 99023.62442100499, + null, + 98918.94691074, + 98951.56237964176, + null, + 98918.94691074, + 98127.50014794023, + null, + 98809.12475691538, + 98742.84185261693, + null, + 98809.12475691538, + 98636.11447862479, + null, + 98809.12475691538, + 98715.24476448026, + null, + 98809.12475691538, + 98700.92429371181, + null, + 98809.12475691538, + 98641.93221348678, + null, + 98809.12475691538, + 98583.13027911846, + null, + 98809.12475691538, + 99072.54185715798, + null, + 99070.331362437, + 99135.47449879821, + null, + 97874.19535094783, + 97789.92707115466, + null, + 97874.19535094783, + 97809.32654645263, + null, + 97874.19535094783, + 97768.46861576667, + null, + 97874.19535094783, + 97504.52578621544, + null, + 97874.19535094783, + 97232.70911561699, + null, + 98942.96036569965, + 98615.37677009653, + null, + 98942.96036569965, + 98917.96441057288, + null, + 98368.76399286573, + 98434.35971075694, + null, + 98368.76399286573, + 97681.16946907644, + null, + 97911.02555719024, + 96856.72362255462, + null, + 97911.02555719024, + 97895.28004870834, + null, + 98818.24534258251, + 98831.79765712937, + null, + 98818.24534258251, + 98438.58130728804, + null, + 99272.95214509276, + 99371.02994235742, + null, + 99272.95214509276, + 99231.0427929239, + null, + 99272.95214509276, + 99676.63268184493, + null, + 99272.95214509276, + 98900.44369968983, + null, + 99272.95214509276, + 99700.42917263086, + null, + 99272.95214509276, + 99577.40761315082, + null, + 99272.95214509276, + 98426.5533743314, + null, + 99272.95214509276, + 99776.94011289947, + null, + 99272.95214509276, + 98899.60200925548, + null, + 99272.95214509276, + 100154.96563673523, + null, + 99272.95214509276, + 98520.33361422195, + null, + 98629.16309416488, + 98367.5384870807, + null, + 98629.16309416488, + 98334.70594223429, + null, + 98896.61825153053, + 98691.85046989784, + null, + 97353.8831923671, + 97255.41454495481, + null, + 97353.8831923671, + 97352.47846420809, + null, + 97353.8831923671, + 97313.7618367065, + null, + 97353.8831923671, + 97296.61777493556, + null, + 97353.8831923671, + 96665.07370474232, + null, + 97353.8831923671, + 96859.96292458837, + null, + 97353.8831923671, + 98321.87992748909, + null, + 97353.8831923671, + 97182.47078555363, + null, + 97353.8831923671, + 97884.83964830039, + null, + 97353.8831923671, + 98136.20709255511, + null, + 97353.8831923671, + 97999.91203126067, + null, + 97353.8831923671, + 97540.60877193058, + null, + 97353.8831923671, + 97276.55612119116, + null, + 97353.8831923671, + 97459.95104458535, + null, + 97353.8831923671, + 97893.0352520524, + null, + 97353.8831923671, + 97962.17985493861, + null, + 97353.8831923671, + 97958.47457130344, + null, + 97353.8831923671, + 97344.09093533971, + null, + 97353.8831923671, + 98205.86697164566, + null, + 97353.8831923671, + 93644.68272986174, + null, + 97353.8831923671, + 98101.62417688777, + null, + 97353.8831923671, + 98009.09509648604, + null, + 97353.8831923671, + 97850.60195378115, + null, + 97353.8831923671, + 98271.36712487994, + null, + 97353.8831923671, + 97452.24353701598, + null, + 97353.8831923671, + 98005.5574452993, + null, + 97353.8831923671, + 98361.52070775314, + null, + 97353.8831923671, + 98166.8451977046, + null, + 97353.8831923671, + 97776.72898296927, + null, + 97353.8831923671, + 97487.35358808235, + null, + 97353.8831923671, + 97647.87367032644, + null, + 97353.8831923671, + 98497.56819029221, + null, + 97353.8831923671, + 97393.78304664446, + null, + 97353.8831923671, + 97502.76078478833, + null, + 97353.8831923671, + 97564.08079360449, + null, + 97353.8831923671, + 97516.18869947606, + null, + 97353.8831923671, + 97435.17397362897, + null, + 97353.8831923671, + 97736.81995700866, + null, + 97353.8831923671, + 97446.32329700516, + null, + 98413.72450899602, + 98582.527096305, + null, + 98413.72450899602, + 97809.54483551205, + null, + 99048.52954857876, + 98878.34647466309, + null, + 99048.52954857876, + 99154.02606674639, + null, + 99048.52954857876, + 99172.02697912694, + null, + 99860.44427206193, + 100490.49130040826, + null, + 99860.44427206193, + 100142.88953715774, + null, + 99860.44427206193, + 99388.84212708821, + null, + 99860.44427206193, + 100563.74448489815, + null, + 99875.65907184825, + 100746.00755669444, + null, + 98932.31091884513, + 98991.31426615387, + null, + 98926.20655583622, + 98991.31426615387, + null, + 98881.20399257346, + 98991.31426615387, + null, + 98873.6590998779, + 98991.31426615387, + null, + 98776.08147395353, + 98991.31426615387, + null, + 98916.08043593282, + 98991.31426615387, + null, + 98775.64297666437, + 98991.31426615387, + null, + 98833.5386160878, + 98991.31426615387, + null, + 98779.4951496633, + 98991.31426615387, + null, + 98769.87019965112, + 98991.31426615387, + null, + 98763.69912444155, + 98991.31426615387, + null, + 98715.38337956829, + 98991.31426615387, + null, + 98838.01226486915, + 98991.31426615387, + null, + 98731.25835265023, + 98991.31426615387, + null, + 98794.9356782363, + 98991.31426615387, + null, + 98875.12446310604, + 98991.31426615387, + null, + 98845.6917714939, + 98991.31426615387, + null, + 98926.20655583622, + 98545.72335094343, + null, + 98932.31091884513, + 98545.72335094343, + null, + 98881.20399257346, + 98545.72335094343, + null, + 98545.72335094343, + 97652.12794157442, + null, + 98545.72335094343, + 97864.25906949551, + null, + 98769.87019965112, + 98545.72335094343, + null, + 98873.6590998779, + 98545.72335094343, + null, + 98776.08147395353, + 98545.72335094343, + null, + 98916.08043593282, + 98545.72335094343, + null, + 98775.64297666437, + 98545.72335094343, + null, + 98833.5386160878, + 98545.72335094343, + null, + 98779.4951496633, + 98545.72335094343, + null, + 98763.69912444155, + 98545.72335094343, + null, + 98715.38337956829, + 98545.72335094343, + null, + 98838.01226486915, + 98545.72335094343, + null, + 98731.25835265023, + 98545.72335094343, + null, + 98794.9356782363, + 98545.72335094343, + null, + 98875.12446310604, + 98545.72335094343, + null, + 98845.6917714939, + 98545.72335094343, + null, + 99143.15955432564, + 99227.43848031209, + null, + 99143.15955432564, + 99361.9255445475, + null, + 99143.15955432564, + 99174.69010994876, + null, + 97136.55546326986, + 97910.12779784399, + null, + 97605.64203060168, + 97910.12779784399, + null, + 97651.32746016643, + 97910.12779784399, + null, + 97499.57548817585, + 97910.12779784399, + null, + 97615.00090956, + 97910.12779784399, + null, + 97672.92128722146, + 97910.12779784399, + null, + 98656.64266720755, + 98657.9373151273, + null, + 98656.64266720755, + 98047.59460307116, + null, + 98656.64266720755, + 98808.2037529869, + null, + 98656.64266720755, + 98641.99704060325, + null, + 98656.64266720755, + 98573.86688152544, + null, + 98406.94597948619, + 98037.7546833775, + null, + 98406.94597948619, + 98063.33951976198, + null, + 98406.94597948619, + 98127.50014794023, + null, + 98406.94597948619, + 97891.04268537596, + null, + 98406.94597948619, + 98238.09327133199, + null, + 98406.94597948619, + 98454.91999809204, + null, + 98406.94597948619, + 98622.72131256308, + null, + 98406.94597948619, + 99683.02342130439, + null, + 98406.94597948619, + 98748.13851273438, + null, + 98406.94597948619, + 98736.6487431001, + null, + 98406.94597948619, + 98461.56188963, + null, + 98406.94597948619, + 98591.3906492825, + null, + 98406.94597948619, + 98735.88204679007, + null, + 98406.94597948619, + 98760.83345788409, + null, + 98406.94597948619, + 98669.98695044409, + null, + 98406.94597948619, + 98554.81272175781, + null, + 98406.94597948619, + 98551.32201482294, + null, + 98406.94597948619, + 98537.48831459216, + null, + 98406.94597948619, + 98994.10656357431, + null, + 98406.94597948619, + 99119.57616554244, + null, + 98406.94597948619, + 97344.39651735617, + null, + 98406.94597948619, + 98722.34383571171, + null, + 98406.94597948619, + 98882.4958894141, + null, + 98406.94597948619, + 97303.13866203713, + null, + 98406.94597948619, + 96302.24669832372, + null, + 98406.94597948619, + 98647.5348287252, + null, + 98406.94597948619, + 98608.5215316511, + null, + 98406.94597948619, + 98222.80841969991, + null, + 98406.94597948619, + 98819.65784093091, + null, + 98406.94597948619, + 99036.66961313797, + null, + 98406.94597948619, + 98624.20331564605, + null, + 98406.94597948619, + 97819.31095483244, + null, + 98406.94597948619, + 97721.18147869087, + null, + 98406.94597948619, + 98271.70807917252, + null, + 98406.94597948619, + 98519.86918764931, + null, + 98406.94597948619, + 98606.63667538292, + null, + 98406.94597948619, + 98519.39123710812, + null, + 98406.94597948619, + 98765.77024442171, + null, + 98406.94597948619, + 98568.58464013341, + null, + 98406.94597948619, + 98724.09688274346, + null, + 98406.94597948619, + 98551.33786774045, + null, + 98406.94597948619, + 98642.19574069705, + null, + 98406.94597948619, + 97931.34716549548, + null, + 98406.94597948619, + 98666.49334653927, + null, + 98406.94597948619, + 98631.64406060676, + null, + 98406.94597948619, + 98838.9801057053, + null, + 98406.94597948619, + 98827.92913925355, + null, + 98406.94597948619, + 98790.2159527499, + null, + 98406.94597948619, + 98181.72232625872, + null, + 98406.94597948619, + 98063.19422735604, + null, + 98406.94597948619, + 98475.91698744615, + null, + 98406.94597948619, + 98570.43191653062, + null, + 98406.94597948619, + 98455.4277807688, + null, + 98406.94597948619, + 98813.72618994876, + null, + 98406.94597948619, + 98846.89766234448, + null, + 97476.14534117641, + 97228.42625405909, + null, + 97476.14534117641, + 97394.11022522849, + null, + 97476.14534117641, + 97532.22883965746, + null, + 97476.14534117641, + 97344.33342659262, + null, + 97476.14534117641, + 97272.0006070915, + null, + 97476.14534117641, + 96925.47458412843, + null, + 97476.14534117641, + 97092.16772009524, + null, + 97476.14534117641, + 97209.90565041362, + null, + 97476.14534117641, + 97856.84020013195, + null, + 97476.14534117641, + 98009.61286792412, + null, + 97476.14534117641, + 97211.79938472387, + null, + 97476.14534117641, + 97045.9347960569, + null, + 97476.14534117641, + 96871.14124722035, + null, + 97476.14534117641, + 97372.91158673672, + null, + 97476.14534117641, + 97023.36540561469, + null, + 97476.14534117641, + 97191.67156979971, + null, + 97476.14534117641, + 97414.64038417542, + null, + 97476.14534117641, + 96885.06814180473, + null, + 97476.14534117641, + 97914.23819876518, + null, + 97476.14534117641, + 97340.71979094419, + null, + 97476.14534117641, + 96805.4528033362, + null, + 97476.14534117641, + 97391.61070686534, + null, + 97476.14534117641, + 97277.04466695724, + null, + 97476.14534117641, + 97953.10373989804, + null, + 97476.14534117641, + 97109.44347958003, + null, + 97476.14534117641, + 96731.40431617344, + null, + 97476.14534117641, + 98037.69686647393, + null, + 97476.14534117641, + 96844.05757802, + null, + 97476.14534117641, + 98053.21280174737, + null, + 97476.14534117641, + 97454.12338544696, + null, + 97476.14534117641, + 97565.17353076243, + null, + 97476.14534117641, + 96943.34146960913, + null, + 97476.14534117641, + 97216.68390135047, + null, + 97476.14534117641, + 97325.96467730298, + null, + 97476.14534117641, + 97320.6256117, + null, + 97524.08090876219, + 96737.12013794533, + null, + 97524.08090876219, + 96149.9240314162, + null, + 97524.08090876219, + 97714.7246102844, + null, + 97524.08090876219, + 97723.43671189145, + null, + 97524.08090876219, + 97537.88311195365, + null, + 97524.08090876219, + 97408.99246023723, + null, + 99171.65872471192, + 99182.43123350566, + null, + 99171.65872471192, + 99265.87966805445, + null, + 99548.50572708945, + 99944.07306174988, + null, + 99548.50572708945, + 99900.64834271275, + null, + 99548.50572708945, + 99812.21227412489, + null, + 99548.50572708945, + 99420.92430477343, + null, + 99548.50572708945, + 99177.62291174373, + null, + 99548.50572708945, + 99488.52585196453, + null, + 99548.50572708945, + 99587.48173322152, + null, + 99548.50572708945, + 99937.87696465585, + null, + 99548.50572708945, + 99591.60747183427, + null, + 99548.50572708945, + 99048.9116417464, + null, + 99548.50572708945, + 99607.88973258882, + null, + 97949.35571979226, + 96915.07628650902, + null, + 99391.34679357102, + 99990.2370091159, + null, + 98932.31091884513, + 99391.34679357102, + null, + 98926.20655583622, + 99391.34679357102, + null, + 98881.20399257346, + 99391.34679357102, + null, + 99391.34679357102, + 101343.89990262453, + null, + 98873.6590998779, + 99391.34679357102, + null, + 98776.08147395353, + 99391.34679357102, + null, + 98916.08043593282, + 99391.34679357102, + null, + 98775.64297666437, + 99391.34679357102, + null, + 98833.5386160878, + 99391.34679357102, + null, + 98779.4951496633, + 99391.34679357102, + null, + 99391.34679357102, + 99709.43474110542, + null, + 98769.87019965112, + 99391.34679357102, + null, + 99391.34679357102, + 99222.80666593021, + null, + 98763.69912444155, + 99391.34679357102, + null, + 99391.34679357102, + 99744.15222602605, + null, + 99391.34679357102, + 99679.73750040874, + null, + 99391.34679357102, + 99788.15934489542, + null, + 98715.38337956829, + 99391.34679357102, + null, + 98838.01226486915, + 99391.34679357102, + null, + 98731.25835265023, + 99391.34679357102, + null, + 98794.9356782363, + 99391.34679357102, + null, + 99391.34679357102, + 99889.87039027306, + null, + 98875.12446310604, + 99391.34679357102, + null, + 99391.34679357102, + 98529.60002690525, + null, + 98845.6917714939, + 99391.34679357102, + null, + 98722.02495329459, + 98918.42807769222, + null, + 98722.02495329459, + 99077.64957318998, + null, + 98722.02495329459, + 97845.28481450288, + null, + 98722.02495329459, + 99041.95245865517, + null, + 98722.02495329459, + 99058.18978821568, + null, + 99374.50165106604, + 99443.36056428892, + null, + 99374.50165106604, + 99938.9075507464, + null, + 98838.01226486915, + 99374.50165106604, + null, + 99374.50165106604, + 99123.1886578178, + null, + 99374.50165106604, + 98975.4583568785, + null, + 97825.10446462789, + 96764.93858259599, + null, + 97825.10446462789, + 97558.91318648357, + null, + 97825.10446462789, + 97906.28247623073, + null, + 97825.10446462789, + 97718.55252171961, + null, + 97825.10446462789, + 97714.7246102844, + null, + 97650.77807951198, + 96152.1057643561, + null, + 97650.77807951198, + 98063.33951976198, + null, + 97650.77807951198, + 97565.17353076243, + null, + 98663.5728126574, + 98297.39646140915, + null, + 98159.03165818081, + 98062.51604299857, + null, + 98159.03165818081, + 97964.38553712035, + null, + 98159.03165818081, + 98023.44519196717, + null, + 98159.03165818081, + 97561.8035357872, + null, + 98159.03165818081, + 97762.95601633764, + null, + 98159.03165818081, + 98326.83556515438, + null, + 98159.03165818081, + 98061.10715277967, + null, + 99060.55516943279, + 99016.5581620588, + null, + 99060.55516943279, + 99240.9405426935, + null, + 99060.55516943279, + 98641.53479851007, + null, + 99060.55516943279, + 99095.8319111279, + null, + 98833.5386160878, + 99070.36691418258, + null, + 98932.31091884513, + 99070.36691418258, + null, + 98881.20399257346, + 99070.36691418258, + null, + 98873.6590998779, + 99070.36691418258, + null, + 98776.08147395353, + 99070.36691418258, + null, + 98916.08043593282, + 99070.36691418258, + null, + 98775.64297666437, + 99070.36691418258, + null, + 98779.4951496633, + 99070.36691418258, + null, + 98769.87019965112, + 99070.36691418258, + null, + 98763.69912444155, + 99070.36691418258, + null, + 99070.36691418258, + 99642.41138351153, + null, + 98715.38337956829, + 99070.36691418258, + null, + 98838.01226486915, + 99070.36691418258, + null, + 98731.25835265023, + 99070.36691418258, + null, + 98794.9356782363, + 99070.36691418258, + null, + 98875.12446310604, + 99070.36691418258, + null, + 98845.6917714939, + 99070.36691418258, + null, + 94807.18741906618, + 96737.12013794533, + null, + 94807.18741906618, + 88590.85511713462, + null, + 94807.18741906618, + 96152.1057643561, + null, + 94807.18741906618, + 95956.16594891516, + null, + 94807.18741906618, + 95103.80826824161, + null, + 94807.18741906618, + 95849.92383113039, + null, + 94807.18741906618, + 95705.12403974576, + null, + 94807.18741906618, + 96150.57574768981, + null, + 94807.18741906618, + 96295.31083736721, + null, + 94807.18741906618, + 96244.53594836782, + null, + 94807.18741906618, + 96149.9240314162, + null, + 94807.18741906618, + 95503.21802046116, + null, + 94807.18741906618, + 96107.21446370435, + null, + 94807.18741906618, + 94297.22907899908, + null, + 94807.18741906618, + 95769.18345824692, + null, + 94807.18741906618, + 95854.58816461003, + null, + 94807.18741906618, + 95472.03336553831, + null, + 94807.18741906618, + 95497.96761435788, + null, + 99956.68584656977, + 100266.60888331049, + null, + 99956.68584656977, + 100515.1022038416, + null, + 99956.68584656977, + 100780.13173749707, + null, + 99956.68584656977, + 100275.49487326102, + null, + 99956.68584656977, + 99308.59414610175, + null, + 99881.38194405592, + 100993.81994431307, + null, + 99881.38194405592, + 98998.48843958214, + null, + 99269.75421848508, + 99497.63865967996, + null, + 98657.65560967932, + 98414.55375540078, + null, + 98657.65560967932, + 98275.0868761614, + null, + 99130.37213728795, + 99123.1886578178, + null, + 99130.37213728795, + 98975.4583568785, + null, + 99130.37213728795, + 99287.0655957827, + null, + 98916.08043593282, + 99130.37213728795, + null, + 99130.37213728795, + 99168.38311213651, + null, + 98845.6917714939, + 99130.37213728795, + null, + 98881.20399257346, + 99130.37213728795, + null, + 98838.01226486915, + 99130.37213728795, + null, + 99130.37213728795, + 99294.3343501885, + null, + 98776.08147395353, + 99130.37213728795, + null, + 98873.6590998779, + 99130.37213728795, + null, + 98433.94367818839, + 97827.76197200979, + null, + 98433.94367818839, + 98414.55316263932, + null, + 98598.39852284717, + 98257.85820299109, + null, + 98598.39852284717, + 98418.17015609592, + null, + 99397.67295607875, + 99776.94011289947, + null, + 99397.67295607875, + 100175.0607969374, + null, + 99397.67295607875, + 100154.96563673523, + null, + 99397.67295607875, + 99700.42917263086, + null, + 99397.67295607875, + 98520.33361422195, + null, + 99397.67295607875, + 99601.83878035982, + null, + 99397.67295607875, + 98426.5533743314, + null, + 99397.67295607875, + 99040.76425546396, + null, + 99397.67295607875, + 99528.31511285559, + null, + 99397.67295607875, + 100123.4034196032, + null, + 99397.67295607875, + 99203.1995445626, + null, + 99397.67295607875, + 100259.94700165218, + null, + 99397.67295607875, + 99172.24243406764, + null, + 99397.67295607875, + 99150.71873965448, + null, + 99397.67295607875, + 99176.45733464141, + null, + 99397.67295607875, + 98536.71552534091, + null, + 100062.94026884029, + 100486.68654940001, + null, + 100062.94026884029, + 99798.83508838428, + null, + 100062.94026884029, + 101233.72050294731, + null, + 100062.94026884029, + 100304.51471837264, + null, + 100062.94026884029, + 99369.55175238507, + null, + 99683.93197275087, + 99459.89574901403, + null, + 99683.93197275087, + 99497.65911985919, + null, + 99683.93197275087, + 99334.08753749864, + null, + 99683.93197275087, + 100439.05341443338, + null, + 99683.93197275087, + 99891.87571608167, + null, + 99683.93197275087, + 99787.73624613034, + null, + 99683.93197275087, + 99837.0082125705, + null, + 99683.93197275087, + 99338.62761306738, + null, + 98942.47918301482, + 99371.02994235742, + null, + 98942.47918301482, + 99398.32512040935, + null, + 98942.47918301482, + 97937.7823995534, + null, + 98942.47918301482, + 99388.84212708821, + null, + 98942.47918301482, + 98960.49823630943, + null, + 98942.47918301482, + 99134.05776587574, + null, + 98372.2920372052, + 97772.18600703926, + null, + 99106.89445006047, + 99187.00950581132, + null, + 99106.89445006047, + 99076.17431450075, + null, + 98225.6719769043, + 97063.32877705898, + null, + 98225.6719769043, + 99009.06890021921, + null, + 98965.17216239334, + 98615.37677009653, + null, + 98965.17216239334, + 98917.96441057288, + null, + 99161.06627467804, + 99244.62898283631, + null, + 99161.06627467804, + 98895.86594871506, + null, + 100038.45200630881, + 101287.53163759898, + null, + 100038.45200630881, + 99459.89574901403, + null, + 100038.45200630881, + 99497.65911985919, + null, + 100038.45200630881, + 100439.05341443338, + null, + 100038.45200630881, + 99891.87571608167, + null, + 100038.45200630881, + 100667.31521747577, + null, + 100038.45200630881, + 99787.73624613034, + null, + 100038.45200630881, + 99837.0082125705, + null, + 100038.45200630881, + 99338.62761306738, + null, + 99231.69745173643, + 99787.73624613034, + null, + 99231.69745173643, + 99440.37140141985, + null, + 99231.69745173643, + 98829.92293140064, + null, + 99231.69745173643, + 100008.8185640341, + null, + 99231.69745173643, + 99630.27697060951, + null, + 99231.69745173643, + 98199.99210205229, + null, + 99231.69745173643, + 99364.76795754352, + null, + 99231.69745173643, + 99587.45269788787, + null, + 99231.69745173643, + 99204.80764182155, + null, + 99231.69745173643, + 99472.18090796605, + null, + 99231.69745173643, + 99584.74778173275, + null, + 99231.69745173643, + 99446.27946308655, + null, + 99231.69745173643, + 98780.33197584302, + null, + 99643.13410786055, + 99746.53204017173, + null, + 99643.13410786055, + 100408.86536513967, + null, + 99643.13410786055, + 98968.71992266763, + null, + 99121.89628822553, + 99016.5581620588, + null, + 99121.89628822553, + 99398.32512040935, + null, + 99121.89628822553, + 99390.22164459903, + null, + 99121.89628822553, + 99420.43636760573, + null, + 99121.89628822553, + 98641.53479851007, + null, + 99121.89628822553, + 98960.49823630943, + null, + 99121.89628822553, + 99004.39514221971, + null, + 99121.89628822553, + 99328.58010501186, + null, + 99121.89628822553, + 99095.8319111279, + null, + 98932.31091884513, + 98996.3949186886, + null, + 98926.20655583622, + 98996.3949186886, + null, + 98881.20399257346, + 98996.3949186886, + null, + 98873.6590998779, + 98996.3949186886, + null, + 98776.08147395353, + 98996.3949186886, + null, + 98916.08043593282, + 98996.3949186886, + null, + 98775.64297666437, + 98996.3949186886, + null, + 98833.5386160878, + 98996.3949186886, + null, + 98779.4951496633, + 98996.3949186886, + null, + 98769.87019965112, + 98996.3949186886, + null, + 98763.69912444155, + 98996.3949186886, + null, + 98715.38337956829, + 98996.3949186886, + null, + 98838.01226486915, + 98996.3949186886, + null, + 98731.25835265023, + 98996.3949186886, + null, + 98794.9356782363, + 98996.3949186886, + null, + 98875.12446310604, + 98996.3949186886, + null, + 98845.6917714939, + 98996.3949186886, + null, + 98932.31091884513, + 99010.23040006083, + null, + 98926.20655583622, + 99010.23040006083, + null, + 98881.20399257346, + 99010.23040006083, + null, + 98873.6590998779, + 99010.23040006083, + null, + 98776.08147395353, + 99010.23040006083, + null, + 98916.08043593282, + 99010.23040006083, + null, + 98775.64297666437, + 99010.23040006083, + null, + 98833.5386160878, + 99010.23040006083, + null, + 98779.4951496633, + 99010.23040006083, + null, + 98769.87019965112, + 99010.23040006083, + null, + 98763.69912444155, + 99010.23040006083, + null, + 98715.38337956829, + 99010.23040006083, + null, + 98838.01226486915, + 99010.23040006083, + null, + 98731.25835265023, + 99010.23040006083, + null, + 98794.9356782363, + 99010.23040006083, + null, + 98875.12446310604, + 99010.23040006083, + null, + 98845.6917714939, + 99010.23040006083, + null, + 98926.20655583622, + 99067.43224177675, + null, + 98932.31091884513, + 99067.43224177675, + null, + 98881.20399257346, + 99067.43224177675, + null, + 99067.43224177675, + 99704.67044515068, + null, + 98873.6590998779, + 99067.43224177675, + null, + 98776.08147395353, + 99067.43224177675, + null, + 98916.08043593282, + 99067.43224177675, + null, + 98775.64297666437, + 99067.43224177675, + null, + 98833.5386160878, + 99067.43224177675, + null, + 98779.4951496633, + 99067.43224177675, + null, + 99067.43224177675, + 99356.71931442092, + null, + 98769.87019965112, + 99067.43224177675, + null, + 99067.43224177675, + 99222.80666593021, + null, + 98763.69912444155, + 99067.43224177675, + null, + 98715.38337956829, + 99067.43224177675, + null, + 98838.01226486915, + 99067.43224177675, + null, + 98731.25835265023, + 99067.43224177675, + null, + 98794.9356782363, + 99067.43224177675, + null, + 98875.12446310604, + 99067.43224177675, + null, + 99067.43224177675, + 98529.60002690525, + null, + 98845.6917714939, + 99067.43224177675, + null, + 98926.20655583622, + 98982.5538246546, + null, + 98881.20399257346, + 98982.5538246546, + null, + 98932.31091884513, + 98982.5538246546, + null, + 98873.6590998779, + 98982.5538246546, + null, + 98776.08147395353, + 98982.5538246546, + null, + 98916.08043593282, + 98982.5538246546, + null, + 98775.64297666437, + 98982.5538246546, + null, + 98833.5386160878, + 98982.5538246546, + null, + 98779.4951496633, + 98982.5538246546, + null, + 98769.87019965112, + 98982.5538246546, + null, + 98763.69912444155, + 98982.5538246546, + null, + 98715.38337956829, + 98982.5538246546, + null, + 98838.01226486915, + 98982.5538246546, + null, + 98731.25835265023, + 98982.5538246546, + null, + 98794.9356782363, + 98982.5538246546, + null, + 98875.12446310604, + 98982.5538246546, + null, + 98845.6917714939, + 98982.5538246546, + null, + 99326.93888038411, + 99744.15222602605, + null, + 99326.93888038411, + 100275.50143084832, + null, + 99326.93888038411, + 99123.1886578178, + null, + 99326.93888038411, + 98975.4583568785, + null, + 99326.93888038411, + 99287.0655957827, + null, + 98916.08043593282, + 99326.93888038411, + null, + 99326.93888038411, + 99168.38311213651, + null, + 98838.01226486915, + 99326.93888038411, + null, + 99326.93888038411, + 99294.3343501885, + null, + 98776.08147395353, + 99326.93888038411, + null, + 98873.6590998779, + 99326.93888038411, + null, + 98881.20399257346, + 99326.93888038411, + null, + 98845.6917714939, + 99326.93888038411, + null, + 97455.17599729972, + 96938.66295867188, + null, + 97455.17599729972, + 96150.57574768981, + null, + 97455.17599729972, + 96737.12013794533, + null, + 97455.17599729972, + 97964.63401886185, + null, + 97455.17599729972, + 97535.23793520761, + null, + 97455.17599729972, + 97420.7621020905, + null, + 97455.17599729972, + 97390.08288766422, + null, + 98980.69875328755, + 99574.3677856123, + null, + 98980.69875328755, + 99273.85480193101, + null, + 98980.69875328755, + 99615.64332690387, + null, + 98980.69875328755, + 99572.0458167728, + null, + 98980.69875328755, + 98127.50014794023, + null, + 98980.69875328755, + 98433.46713226559, + null, + 98980.69875328755, + 98303.3954720316, + null, + 99685.34161040152, + 99982.59484908597, + null, + 99685.34161040152, + 100442.43446705127, + null, + 99685.34161040152, + 98917.55283849573, + null, + 99685.34161040152, + 100405.62380636072, + null, + 99685.34161040152, + 99264.01286919507, + null, + 100612.93716200726, + 101880.18878218585, + null, + 100612.93716200726, + 101201.13786259948, + null, + 100612.93716200726, + 101261.17342969753, + null, + 100612.93716200726, + 100802.37593631717, + null, + 100612.93716200726, + 101061.65052979656, + null, + 100612.93716200726, + 99928.46775743726, + null, + 100612.93716200726, + 100746.53951262421, + null, + 100612.93716200726, + 100868.33657813334, + null, + 100612.93716200726, + 100812.8197399703, + null, + 100612.93716200726, + 101531.87027489231, + null, + 100612.93716200726, + 100295.24230126226, + null, + 100612.93716200726, + 99417.48192028531, + null, + 100612.93716200726, + 101239.75080883966, + null, + 99244.69832153102, + 98930.33399893016, + null, + 99244.69832153102, + 99586.53541170484, + null, + 99244.69832153102, + 99162.91558583234, + null, + 99244.69832153102, + 99368.70015947068, + null, + 99226.22079845401, + 99328.89319402496, + null, + 98932.31091884513, + 99026.64548034257, + null, + 98926.20655583622, + 99026.64548034257, + null, + 98881.20399257346, + 99026.64548034257, + null, + 98845.6917714939, + 99026.64548034257, + null, + 98838.01226486915, + 99026.64548034257, + null, + 98916.08043593282, + 99026.64548034257, + null, + 98776.08147395353, + 99026.64548034257, + null, + 98875.12446310604, + 99026.64548034257, + null, + 98833.5386160878, + 99026.64548034257, + null, + 98731.25835265023, + 99026.64548034257, + null, + 98715.38337956829, + 99026.64548034257, + null, + 98779.4951496633, + 99026.64548034257, + null, + 98763.69912444155, + 99026.64548034257, + null, + 98775.64297666437, + 99026.64548034257, + null, + 98794.9356782363, + 99026.64548034257, + null, + 98769.87019965112, + 99026.64548034257, + null, + 98873.6590998779, + 99026.64548034257, + null, + 98688.75667619119, + 99358.76293373808, + null, + 98688.75667619119, + 97864.25906949551, + null, + 98926.20655583622, + 99060.11730816362, + null, + 98932.31091884513, + 99060.11730816362, + null, + 98881.20399257346, + 99060.11730816362, + null, + 99060.11730816362, + 99704.67044515068, + null, + 98873.6590998779, + 99060.11730816362, + null, + 98776.08147395353, + 99060.11730816362, + null, + 98916.08043593282, + 99060.11730816362, + null, + 98775.64297666437, + 99060.11730816362, + null, + 98833.5386160878, + 99060.11730816362, + null, + 98779.4951496633, + 99060.11730816362, + null, + 99060.11730816362, + 99356.71931442092, + null, + 98769.87019965112, + 99060.11730816362, + null, + 99060.11730816362, + 99222.80666593021, + null, + 98763.69912444155, + 99060.11730816362, + null, + 98715.38337956829, + 99060.11730816362, + null, + 98838.01226486915, + 99060.11730816362, + null, + 98731.25835265023, + 99060.11730816362, + null, + 98794.9356782363, + 99060.11730816362, + null, + 98875.12446310604, + 99060.11730816362, + null, + 99060.11730816362, + 98529.60002690525, + null, + 98845.6917714939, + 99060.11730816362, + null, + 99629.11999021804, + 100016.85978108921, + null, + 99629.11999021804, + 98127.50014794023, + null, + 99629.11999021804, + 100664.31901839633, + null, + 99629.11999021804, + 99767.26452719056, + null, + 99629.11999021804, + 100029.98747600272, + null, + 99629.11999021804, + 100412.32402265836, + null, + 99571.7539254891, + 99398.32512040935, + null, + 99571.7539254891, + 99264.01286919507, + null, + 99571.7539254891, + 99065.72480630428, + null, + 99571.7539254891, + 100442.43446705127, + null, + 99571.7539254891, + 99982.59484908597, + null, + 99571.7539254891, + 98960.49823630943, + null, + 99571.7539254891, + 98917.55283849573, + null, + 99571.7539254891, + 100405.62380636072, + null, + 99395.9830884571, + 98156.27282406032, + null, + 99395.9830884571, + 98227.70254427848, + null, + 99395.9830884571, + 100038.33560601297, + null, + 99395.9830884571, + 101143.74462846812, + null, + 99395.9830884571, + 98467.10096591972, + null, + 99183.91384425001, + 99016.5581620588, + null, + 99183.91384425001, + 99240.9405426935, + null, + 99183.91384425001, + 99388.04981308476, + null, + 99183.91384425001, + 99095.8319111279, + null, + 98932.31091884513, + 99022.60912279715, + null, + 98926.20655583622, + 99022.60912279715, + null, + 98881.20399257346, + 99022.60912279715, + null, + 98873.6590998779, + 99022.60912279715, + null, + 98776.08147395353, + 99022.60912279715, + null, + 98916.08043593282, + 99022.60912279715, + null, + 98775.64297666437, + 99022.60912279715, + null, + 98833.5386160878, + 99022.60912279715, + null, + 98779.4951496633, + 99022.60912279715, + null, + 98769.87019965112, + 99022.60912279715, + null, + 98763.69912444155, + 99022.60912279715, + null, + 98715.38337956829, + 99022.60912279715, + null, + 98838.01226486915, + 99022.60912279715, + null, + 98731.25835265023, + 99022.60912279715, + null, + 98794.9356782363, + 99022.60912279715, + null, + 98875.12446310604, + 99022.60912279715, + null, + 98845.6917714939, + 99022.60912279715, + null, + 98932.31091884513, + 98991.26055747598, + null, + 98926.20655583622, + 98991.26055747598, + null, + 98881.20399257346, + 98991.26055747598, + null, + 98873.6590998779, + 98991.26055747598, + null, + 98776.08147395353, + 98991.26055747598, + null, + 98916.08043593282, + 98991.26055747598, + null, + 98775.64297666437, + 98991.26055747598, + null, + 98833.5386160878, + 98991.26055747598, + null, + 98779.4951496633, + 98991.26055747598, + null, + 98769.87019965112, + 98991.26055747598, + null, + 98763.69912444155, + 98991.26055747598, + null, + 98715.38337956829, + 98991.26055747598, + null, + 98838.01226486915, + 98991.26055747598, + null, + 98731.25835265023, + 98991.26055747598, + null, + 98794.9356782363, + 98991.26055747598, + null, + 98875.12446310604, + 98991.26055747598, + null, + 98845.6917714939, + 98991.26055747598, + null, + 98926.20655583622, + 98904.92041991555, + null, + 98932.31091884513, + 98904.92041991555, + null, + 98881.20399257346, + 98904.92041991555, + null, + 98904.92041991555, + 99160.28669960532, + null, + 98873.6590998779, + 98904.92041991555, + null, + 98776.08147395353, + 98904.92041991555, + null, + 98916.08043593282, + 98904.92041991555, + null, + 98775.64297666437, + 98904.92041991555, + null, + 98833.5386160878, + 98904.92041991555, + null, + 98779.4951496633, + 98904.92041991555, + null, + 98904.92041991555, + 99356.71931442092, + null, + 98904.92041991555, + 99222.80666593021, + null, + 98763.69912444155, + 98904.92041991555, + null, + 98715.38337956829, + 98904.92041991555, + null, + 98838.01226486915, + 98904.92041991555, + null, + 98731.25835265023, + 98904.92041991555, + null, + 98794.9356782363, + 98904.92041991555, + null, + 98875.12446310604, + 98904.92041991555, + null, + 98904.92041991555, + 98529.60002690525, + null, + 98845.6917714939, + 98904.92041991555, + null, + 98769.87019965112, + 98904.92041991555, + null, + 98932.31091884513, + 98790.64444216965, + null, + 98926.20655583622, + 98790.64444216965, + null, + 98881.20399257346, + 98790.64444216965, + null, + 98845.6917714939, + 98790.64444216965, + null, + 98838.01226486915, + 98790.64444216965, + null, + 98916.08043593282, + 98790.64444216965, + null, + 98776.08147395353, + 98790.64444216965, + null, + 98875.12446310604, + 98790.64444216965, + null, + 98873.6590998779, + 98790.64444216965, + null, + 98833.5386160878, + 98790.64444216965, + null, + 98731.25835265023, + 98790.64444216965, + null, + 98715.38337956829, + 98790.64444216965, + null, + 98779.4951496633, + 98790.64444216965, + null, + 98763.69912444155, + 98790.64444216965, + null, + 98775.64297666437, + 98790.64444216965, + null, + 98794.9356782363, + 98790.64444216965, + null, + 98769.87019965112, + 98790.64444216965, + null, + 98932.31091884513, + 98653.03461351694, + null, + 98926.20655583622, + 98653.03461351694, + null, + 98881.20399257346, + 98653.03461351694, + null, + 98873.6590998779, + 98653.03461351694, + null, + 98776.08147395353, + 98653.03461351694, + null, + 98916.08043593282, + 98653.03461351694, + null, + 98775.64297666437, + 98653.03461351694, + null, + 98833.5386160878, + 98653.03461351694, + null, + 98779.4951496633, + 98653.03461351694, + null, + 98769.87019965112, + 98653.03461351694, + null, + 98763.69912444155, + 98653.03461351694, + null, + 98715.38337956829, + 98653.03461351694, + null, + 98838.01226486915, + 98653.03461351694, + null, + 98731.25835265023, + 98653.03461351694, + null, + 98794.9356782363, + 98653.03461351694, + null, + 98875.12446310604, + 98653.03461351694, + null, + 98845.6917714939, + 98653.03461351694, + null, + 98932.31091884513, + 98528.28228471124, + null, + 98926.20655583622, + 98528.28228471124, + null, + 98881.20399257346, + 98528.28228471124, + null, + 98873.6590998779, + 98528.28228471124, + null, + 98776.08147395353, + 98528.28228471124, + null, + 98916.08043593282, + 98528.28228471124, + null, + 98775.64297666437, + 98528.28228471124, + null, + 98833.5386160878, + 98528.28228471124, + null, + 98779.4951496633, + 98528.28228471124, + null, + 98769.87019965112, + 98528.28228471124, + null, + 98763.69912444155, + 98528.28228471124, + null, + 98715.38337956829, + 98528.28228471124, + null, + 98838.01226486915, + 98528.28228471124, + null, + 98731.25835265023, + 98528.28228471124, + null, + 98794.9356782363, + 98528.28228471124, + null, + 98875.12446310604, + 98528.28228471124, + null, + 98845.6917714939, + 98528.28228471124, + null, + 96470.76012407262, + 96152.1057643561, + null, + 96470.76012407262, + 96279.30869943406, + null, + 96470.76012407262, + 96737.12013794533, + null, + 96470.76012407262, + 96388.18293816505, + null, + 96470.76012407262, + 95849.92383113039, + null, + 96470.76012407262, + 96150.57574768981, + null, + 96470.76012407262, + 96295.31083736721, + null, + 96470.76012407262, + 96244.53594836782, + null, + 96470.76012407262, + 96149.9240314162, + null, + 96470.76012407262, + 96692.27028903799, + null, + 96470.76012407262, + 95854.58816461003, + null, + 98077.79681744472, + 99054.46710922422, + null, + 98077.79681744472, + 98968.71992266763, + null, + 98077.79681744472, + 96793.04034680343, + null, + 98077.79681744472, + 98467.10096591972, + null, + 99214.362436891, + 102477.24885418148, + null, + 99214.362436891, + 99962.03299582665, + null, + 99214.362436891, + 99408.87948140925, + null, + 99214.362436891, + 99568.49510955371, + null, + 99214.362436891, + 97652.86342630182, + null, + 99214.362436891, + 97627.2235694482, + null, + 98581.61307739322, + 99106.21684464924, + null, + 98581.61307739322, + 98595.84891148518, + null, + 98581.61307739322, + 99156.63257376007, + null, + 98581.61307739322, + 99241.701769924, + null, + 97662.82472168292, + 98691.20212375972, + null, + 97662.82472168292, + 97995.16766578473, + null, + 97662.82472168292, + 97878.09063826728, + null, + 98322.0050156767, + 99016.5581620588, + null, + 98322.0050156767, + 99240.9405426935, + null, + 98322.0050156767, + 98641.53479851007, + null, + 98322.0050156767, + 98960.49823630943, + null, + 98322.0050156767, + 99095.8319111279, + null, + 97988.18684320113, + 98241.1113495342, + null, + 98241.1113495342, + 98401.52424464934, + null, + 98932.31091884513, + 98809.36210538005, + null, + 98926.20655583622, + 98809.36210538005, + null, + 98881.20399257346, + 98809.36210538005, + null, + 98873.6590998779, + 98809.36210538005, + null, + 98776.08147395353, + 98809.36210538005, + null, + 98916.08043593282, + 98809.36210538005, + null, + 98775.64297666437, + 98809.36210538005, + null, + 98833.5386160878, + 98809.36210538005, + null, + 98779.4951496633, + 98809.36210538005, + null, + 98769.87019965112, + 98809.36210538005, + null, + 98763.69912444155, + 98809.36210538005, + null, + 98715.38337956829, + 98809.36210538005, + null, + 98838.01226486915, + 98809.36210538005, + null, + 98731.25835265023, + 98809.36210538005, + null, + 98794.9356782363, + 98809.36210538005, + null, + 98875.12446310604, + 98809.36210538005, + null, + 98845.6917714939, + 98809.36210538005, + null, + 98932.31091884513, + 98799.40792106478, + null, + 98926.20655583622, + 98799.40792106478, + null, + 98881.20399257346, + 98799.40792106478, + null, + 98873.6590998779, + 98799.40792106478, + null, + 98776.08147395353, + 98799.40792106478, + null, + 98916.08043593282, + 98799.40792106478, + null, + 98775.64297666437, + 98799.40792106478, + null, + 98833.5386160878, + 98799.40792106478, + null, + 98779.4951496633, + 98799.40792106478, + null, + 98769.87019965112, + 98799.40792106478, + null, + 98763.69912444155, + 98799.40792106478, + null, + 98715.38337956829, + 98799.40792106478, + null, + 98838.01226486915, + 98799.40792106478, + null, + 98731.25835265023, + 98799.40792106478, + null, + 98794.9356782363, + 98799.40792106478, + null, + 98875.12446310604, + 98799.40792106478, + null, + 98845.6917714939, + 98799.40792106478, + null, + 98932.31091884513, + 98692.54803294275, + null, + 98926.20655583622, + 98692.54803294275, + null, + 98881.20399257346, + 98692.54803294275, + null, + 98845.6917714939, + 98692.54803294275, + null, + 98838.01226486915, + 98692.54803294275, + null, + 98916.08043593282, + 98692.54803294275, + null, + 98776.08147395353, + 98692.54803294275, + null, + 98875.12446310604, + 98692.54803294275, + null, + 98873.6590998779, + 98692.54803294275, + null, + 98833.5386160878, + 98692.54803294275, + null, + 98731.25835265023, + 98692.54803294275, + null, + 98715.38337956829, + 98692.54803294275, + null, + 98779.4951496633, + 98692.54803294275, + null, + 98763.69912444155, + 98692.54803294275, + null, + 98794.9356782363, + 98692.54803294275, + null, + 98769.87019965112, + 98692.54803294275, + null, + 98775.64297666437, + 98692.54803294275, + null, + 98932.31091884513, + 98857.10511058902, + null, + 98833.5386160878, + 98857.10511058902, + null, + 98926.20655583622, + 98857.10511058902, + null, + 98881.20399257346, + 98857.10511058902, + null, + 98857.10511058902, + 99578.9140767699, + null, + 98873.6590998779, + 98857.10511058902, + null, + 98776.08147395353, + 98857.10511058902, + null, + 98916.08043593282, + 98857.10511058902, + null, + 98775.64297666437, + 98857.10511058902, + null, + 98779.4951496633, + 98857.10511058902, + null, + 98769.87019965112, + 98857.10511058902, + null, + 98857.10511058902, + 99222.80666593021, + null, + 98763.69912444155, + 98857.10511058902, + null, + 98715.38337956829, + 98857.10511058902, + null, + 98838.01226486915, + 98857.10511058902, + null, + 98731.25835265023, + 98857.10511058902, + null, + 98794.9356782363, + 98857.10511058902, + null, + 98875.12446310604, + 98857.10511058902, + null, + 98857.10511058902, + 98529.60002690525, + null, + 98845.6917714939, + 98857.10511058902, + null, + 98818.13714193161, + 99232.9372120856, + null, + 98818.13714193161, + 99103.70219305377, + null, + 98818.13714193161, + 98247.25370404207, + null, + 98818.13714193161, + 99183.89896358912, + null, + 98818.13714193161, + 99108.02772477719, + null, + 98818.13714193161, + 99457.6410217742, + null, + 97358.46679886585, + 98047.59460307116, + null, + 97358.46679886585, + 97381.90305652776, + null, + 97358.46679886585, + 97539.68362575934, + null, + 97358.46679886585, + 97454.32557679321, + null, + 96071.64726551576, + 95643.87509548519, + null, + 96071.64726551576, + 96737.12013794533, + null, + 96071.64726551576, + 96150.57574768981, + null, + 96071.64726551576, + 96152.1057643561, + null, + 96071.64726551576, + 96244.53594836782, + null, + 96071.64726551576, + 96149.9240314162, + null, + 96071.64726551576, + 95854.58816461003, + null, + 96071.64726551576, + 95849.92383113039, + null, + 96071.64726551576, + 95769.18345824692, + null, + 96071.64726551576, + 95705.12403974576, + null, + 98184.18254674674, + 98164.19533467619, + null, + 98184.18254674674, + 98940.87869445772, + null, + 98420.51887894224, + 99064.5138791314, + null, + 99085.54243090276, + 99697.0870632984, + null, + 99085.54243090276, + 99422.03795312622, + null, + 99085.54243090276, + 99004.39514221971, + null, + 99085.54243090276, + 99891.87571608167, + null, + 99085.54243090276, + 99658.1811796683, + null, + 99085.54243090276, + 99310.43005941642, + null, + 99085.54243090276, + 99371.02994235742, + null, + 99085.54243090276, + 99291.88291924677, + null, + 99085.54243090276, + 99357.41168283236, + null, + 99085.54243090276, + 99172.02697912694, + null, + 99085.54243090276, + 99519.81617905492, + null, + 99085.54243090276, + 99398.32512040935, + null, + 99085.54243090276, + 99461.9154620648, + null, + 99085.54243090276, + 99503.27823687728, + null, + 99085.54243090276, + 99204.80764182155, + null, + 99085.54243090276, + 99428.27940191151, + null, + 99085.54243090276, + 97479.47272277385, + null, + 99085.54243090276, + 97966.35131578807, + null, + 99085.54243090276, + 99676.52384181802, + null, + 99085.54243090276, + 99561.79056971268, + null, + 99085.54243090276, + 99364.76795754352, + null, + 99085.54243090276, + 99432.35372583236, + null, + 99085.54243090276, + 99446.59225735396, + null, + 99085.54243090276, + 99428.01341337721, + null, + 99085.54243090276, + 99232.69699144822, + null, + 99085.54243090276, + 99392.972033571, + null, + 99085.54243090276, + 99460.35192451965, + null, + 99085.54243090276, + 99250.82737975198, + null, + 99085.54243090276, + 99528.08669879334, + null, + 99085.54243090276, + 99236.5763742713, + null, + 99085.54243090276, + 99339.81667170062, + null, + 99085.54243090276, + 99587.48173322152, + null, + 99085.54243090276, + 99356.35133098044, + null, + 99085.54243090276, + 98199.99210205229, + null, + 99085.54243090276, + 99016.5581620588, + null, + 99085.54243090276, + 99311.28191822488, + null, + 99085.54243090276, + 98960.49823630943, + null, + 99085.54243090276, + 99388.84212708821, + null, + 99085.54243090276, + 98536.71552534091, + null, + 99085.54243090276, + 99347.20154555528, + null, + 99085.54243090276, + 99326.09755068594, + null, + 99085.54243090276, + 99398.38474298466, + null, + 99085.54243090276, + 99425.06404185461, + null, + 99085.54243090276, + 99459.37878349259, + null, + 99085.54243090276, + 99328.58010501186, + null, + 99085.54243090276, + 99293.81229317529, + null, + 99085.54243090276, + 99329.49500884015, + null, + 99085.54243090276, + 99294.94935916096, + null, + 99105.27578480003, + 99787.73624613034, + null, + 99105.27578480003, + 99397.89778849662, + null, + 99105.27578480003, + 99370.73468447644, + null, + 98161.02751086211, + 98364.9237598564, + null, + 98161.02751086211, + 98314.28463324666, + null, + 98932.31091884513, + 98705.71088691853, + null, + 98926.20655583622, + 98705.71088691853, + null, + 98881.20399257346, + 98705.71088691853, + null, + 98873.6590998779, + 98705.71088691853, + null, + 98776.08147395353, + 98705.71088691853, + null, + 98916.08043593282, + 98705.71088691853, + null, + 98775.64297666437, + 98705.71088691853, + null, + 98833.5386160878, + 98705.71088691853, + null, + 98779.4951496633, + 98705.71088691853, + null, + 98769.87019965112, + 98705.71088691853, + null, + 98763.69912444155, + 98705.71088691853, + null, + 98715.38337956829, + 98705.71088691853, + null, + 98838.01226486915, + 98705.71088691853, + null, + 98731.25835265023, + 98705.71088691853, + null, + 98794.9356782363, + 98705.71088691853, + null, + 98875.12446310604, + 98705.71088691853, + null, + 98845.6917714939, + 98705.71088691853, + null, + 98932.31091884513, + 98721.31378803315, + null, + 98926.20655583622, + 98721.31378803315, + null, + 98881.20399257346, + 98721.31378803315, + null, + 98873.6590998779, + 98721.31378803315, + null, + 98776.08147395353, + 98721.31378803315, + null, + 98916.08043593282, + 98721.31378803315, + null, + 98775.64297666437, + 98721.31378803315, + null, + 98833.5386160878, + 98721.31378803315, + null, + 98779.4951496633, + 98721.31378803315, + null, + 98769.87019965112, + 98721.31378803315, + null, + 98763.69912444155, + 98721.31378803315, + null, + 98715.38337956829, + 98721.31378803315, + null, + 98838.01226486915, + 98721.31378803315, + null, + 98731.25835265023, + 98721.31378803315, + null, + 98794.9356782363, + 98721.31378803315, + null, + 98875.12446310604, + 98721.31378803315, + null, + 98845.6917714939, + 98721.31378803315, + null, + 98128.91359559372, + 98297.57158816028, + null, + 98128.91359559372, + 98299.16730691226, + null, + 98293.07266113821, + 98488.44888265227, + null, + 98293.07266113821, + 98341.92538182945, + null, + 98293.07266113821, + 98498.18579690327, + null, + 97827.63907828067, + 98297.39646140915, + null, + 97827.63907828067, + 97418.97603097925, + null, + 98054.0065827654, + 98221.26321802658, + null, + 98251.89202247094, + 98440.65799241852, + null, + 98251.89202247094, + 98505.26245324187, + null, + 98251.89202247094, + 98273.63810369174, + null, + 98251.89202247094, + 98449.01702979534, + null, + 98211.55320628641, + 98458.30573058059, + null, + 98211.55320628641, + 98435.56007553921, + null, + 96475.17933169345, + 96152.1057643561, + null, + 96475.17933169345, + 96737.12013794533, + null, + 96475.17933169345, + 95849.92383113039, + null, + 96475.17933169345, + 96150.57574768981, + null, + 96475.17933169345, + 96295.31083736721, + null, + 96475.17933169345, + 96244.53594836782, + null, + 96475.17933169345, + 96149.9240314162, + null, + 96475.17933169345, + 95769.18345824692, + null, + 96475.17933169345, + 95854.58816461003, + null, + 98568.00044350624, + 98828.88194167838, + null, + 98568.00044350624, + 98734.89174003295, + null, + 98568.00044350624, + 98753.36326823733, + null, + 98568.00044350624, + 98738.05385712087, + null, + 98568.00044350624, + 98806.68843808728, + null, + 98568.00044350624, + 98927.51583449688, + null, + 98568.00044350624, + 98809.76404802127, + null, + 98568.00044350624, + 98831.44278769466, + null, + 98568.00044350624, + 98721.32609049382, + null, + 98364.36914082733, + 98611.23290157397, + null, + 98364.36914082733, + 98554.33836951133, + null, + 98364.36914082733, + 98662.26737231707, + null, + 98364.36914082733, + 98569.50298295039, + null, + 98331.41182590384, + 98444.26480191355, + null, + 98331.41182590384, + 98440.84097603508, + null, + 98331.41182590384, + 98936.37152899419, + null, + 98331.41182590384, + 97681.16946907644, + null, + 98331.41182590384, + 98691.20212375972, + null, + 98163.10895570937, + 98388.22622587845, + null, + 97554.9960699299, + 97562.5173703681, + null, + 97554.9960699299, + 97659.90156596046, + null, + 97554.9960699299, + 97539.18470334534, + null, + 97554.9960699299, + 97562.28204297766, + null, + 97554.9960699299, + 97628.5805035853, + null, + 97554.9960699299, + 97532.78555592157, + null, + 97554.9960699299, + 97521.31251635685, + null, + 97554.9960699299, + 97457.12642131757, + null, + 97554.9960699299, + 97469.56881373974, + null, + 97554.9960699299, + 97463.881171705, + null, + 97554.9960699299, + 97266.57307609903, + null, + 97554.9960699299, + 97538.36994649333, + null, + 97554.9960699299, + 97506.04706104075, + null, + 97554.9960699299, + 97565.8070193732, + null, + 97554.9960699299, + 97567.95672647221, + null, + 97554.9960699299, + 97576.65796976959, + null, + 97554.9960699299, + 97433.00403301486, + null, + 97554.9960699299, + 97663.14027350585, + null, + 97554.9960699299, + 97624.84001903216, + null, + 97554.9960699299, + 97484.1141530828, + null, + 97554.9960699299, + 97600.38916390667, + null, + 97554.9960699299, + 97509.90124758272, + null, + 98038.14058948433, + 98185.41172751482, + null, + 98932.31091884513, + 98858.81885856122, + null, + 98926.20655583622, + 98858.81885856122, + null, + 98881.20399257346, + 98858.81885856122, + null, + 98858.81885856122, + 99058.37892612514, + null, + 98858.81885856122, + 99224.34320360345, + null, + 98873.6590998779, + 98858.81885856122, + null, + 98776.08147395353, + 98858.81885856122, + null, + 98916.08043593282, + 98858.81885856122, + null, + 98775.64297666437, + 98858.81885856122, + null, + 98833.5386160878, + 98858.81885856122, + null, + 98779.4951496633, + 98858.81885856122, + null, + 98858.81885856122, + 99356.71931442092, + null, + 98769.87019965112, + 98858.81885856122, + null, + 98858.81885856122, + 99222.80666593021, + null, + 98763.69912444155, + 98858.81885856122, + null, + 98715.38337956829, + 98858.81885856122, + null, + 98838.01226486915, + 98858.81885856122, + null, + 98731.25835265023, + 98858.81885856122, + null, + 98794.9356782363, + 98858.81885856122, + null, + 98875.12446310604, + 98858.81885856122, + null, + 98858.81885856122, + 98529.60002690525, + null, + 98845.6917714939, + 98858.81885856122, + null, + 96255.92043157357, + 96152.1057643561, + null, + 96255.92043157357, + 96043.45140605627, + null, + 96255.92043157357, + 96737.12013794533, + null, + 96255.92043157357, + 95705.12403974576, + null, + 96255.92043157357, + 96150.57574768981, + null, + 96255.92043157357, + 96295.31083736721, + null, + 96255.92043157357, + 95849.92383113039, + null, + 96255.92043157357, + 96244.53594836782, + null, + 96255.92043157357, + 96149.9240314162, + null, + 96255.92043157357, + 95769.18345824692, + null, + 96255.92043157357, + 95854.58816461003, + null, + 96255.92043157357, + 95503.21802046116, + null, + 96255.92043157357, + 95472.03336553831, + null, + 96255.92043157357, + 95497.96761435788, + null, + 96255.92043157357, + 96074.1773250052, + null, + 98120.00401419179, + 98353.82046727034, + null, + 99907.08283776883, + 100698.24029410268, + null, + 99907.08283776883, + 100748.96797238242, + null, + 99907.08283776883, + 100096.5789219651, + null, + 99907.08283776883, + 100730.67229205805, + null, + 99907.08283776883, + 100142.84366050502, + null, + 99907.08283776883, + 100114.8346992164, + null, + 99907.08283776883, + 100750.28187529245, + null, + 99907.08283776883, + 100137.00458558447, + null, + 99907.08283776883, + 100088.57204356979, + null, + 99907.08283776883, + 99975.85497357504, + null, + 99907.08283776883, + 99646.19840781609, + null, + 99907.08283776883, + 99629.49033305429, + null, + 99907.08283776883, + 100165.51947574422, + null, + 99907.08283776883, + 100131.45217606793, + null, + 99907.08283776883, + 100837.07785367471, + null, + 99907.08283776883, + 100011.84304283973, + null, + 97770.11547186453, + 97683.34960749114, + null, + 97770.11547186453, + 97662.15750716739, + null, + 98260.97237711879, + 98531.37287469098, + null, + 98260.97237711879, + 98471.56463893122, + null, + 98260.97237711879, + 98391.64714900294, + null, + 98649.88742805325, + 98877.55812845338, + null, + 98649.88742805325, + 99029.5519099041, + null, + 98649.88742805325, + 99040.32401506804, + null, + 98649.88742805325, + 98939.85298657045, + null, + 98649.88742805325, + 99071.00654345889, + null, + 98112.09979592523, + 98134.38177364993, + null, + 98932.31091884513, + 98728.80932783807, + null, + 98926.20655583622, + 98728.80932783807, + null, + 98881.20399257346, + 98728.80932783807, + null, + 98873.6590998779, + 98728.80932783807, + null, + 98776.08147395353, + 98728.80932783807, + null, + 98916.08043593282, + 98728.80932783807, + null, + 98775.64297666437, + 98728.80932783807, + null, + 98833.5386160878, + 98728.80932783807, + null, + 98779.4951496633, + 98728.80932783807, + null, + 98769.87019965112, + 98728.80932783807, + null, + 98763.69912444155, + 98728.80932783807, + null, + 98715.38337956829, + 98728.80932783807, + null, + 98838.01226486915, + 98728.80932783807, + null, + 98731.25835265023, + 98728.80932783807, + null, + 98794.9356782363, + 98728.80932783807, + null, + 98875.12446310604, + 98728.80932783807, + null, + 98845.6917714939, + 98728.80932783807, + null, + 98932.31091884513, + 98743.18237840163, + null, + 98926.20655583622, + 98743.18237840163, + null, + 98881.20399257346, + 98743.18237840163, + null, + 98873.6590998779, + 98743.18237840163, + null, + 98776.08147395353, + 98743.18237840163, + null, + 98916.08043593282, + 98743.18237840163, + null, + 98775.64297666437, + 98743.18237840163, + null, + 98833.5386160878, + 98743.18237840163, + null, + 98779.4951496633, + 98743.18237840163, + null, + 98769.87019965112, + 98743.18237840163, + null, + 98763.69912444155, + 98743.18237840163, + null, + 98715.38337956829, + 98743.18237840163, + null, + 98838.01226486915, + 98743.18237840163, + null, + 98731.25835265023, + 98743.18237840163, + null, + 98794.9356782363, + 98743.18237840163, + null, + 98875.12446310604, + 98743.18237840163, + null, + 98845.6917714939, + 98743.18237840163, + null, + 96497.28753916033, + 96692.27028903799, + null, + 96497.28753916033, + 96152.1057643561, + null, + 96497.28753916033, + 96737.12013794533, + null, + 96497.28753916033, + 95849.92383113039, + null, + 96497.28753916033, + 96150.57574768981, + null, + 96497.28753916033, + 96295.31083736721, + null, + 96497.28753916033, + 96244.53594836782, + null, + 96497.28753916033, + 96149.9240314162, + null, + 96497.28753916033, + 95769.18345824692, + null, + 96497.28753916033, + 95854.58816461003, + null, + 99041.0309662276, + 99281.8124720996, + null, + 99041.0309662276, + 99410.76891600141, + null, + 99041.0309662276, + 99265.15415167905, + null, + 99041.0309662276, + 99928.46775743726, + null, + 99041.0309662276, + 99570.35524851363, + null, + 98538.18176070268, + 98734.64536633549, + null, + 98538.18176070268, + 98817.70091073363, + null, + 98538.18176070268, + 98705.86338872745, + null, + 98538.18176070268, + 98779.15100171715, + null, + 98538.18176070268, + 98743.88825326356, + null, + 98538.18176070268, + 98722.95539743864, + null, + 98404.5074674531, + 98669.66450254756, + null, + 98404.5074674531, + 98727.04413925752, + null, + 98404.5074674531, + 98603.20304504342, + null, + 98404.5074674531, + 98657.34511910615, + null, + 98168.58123872355, + 98306.9719599773, + null, + 98168.58123872355, + 98273.63810369174, + null, + 98168.58123872355, + 98410.69904555679, + null, + 99485.28366531829, + 99459.89574901403, + null, + 99485.28366531829, + 99497.65911985919, + null, + 99485.28366531829, + 99334.08753749864, + null, + 99485.28366531829, + 100439.05341443338, + null, + 99485.28366531829, + 99891.87571608167, + null, + 99485.28366531829, + 100667.31521747577, + null, + 99485.28366531829, + 99787.73624613034, + null, + 99485.28366531829, + 99837.0082125705, + null, + 99485.28366531829, + 99338.62761306738, + null, + 98932.31091884513, + 98727.3121423661, + null, + 98926.20655583622, + 98727.3121423661, + null, + 98881.20399257346, + 98727.3121423661, + null, + 98873.6590998779, + 98727.3121423661, + null, + 98776.08147395353, + 98727.3121423661, + null, + 98916.08043593282, + 98727.3121423661, + null, + 98775.64297666437, + 98727.3121423661, + null, + 98833.5386160878, + 98727.3121423661, + null, + 98779.4951496633, + 98727.3121423661, + null, + 98769.87019965112, + 98727.3121423661, + null, + 98763.69912444155, + 98727.3121423661, + null, + 98715.38337956829, + 98727.3121423661, + null, + 98838.01226486915, + 98727.3121423661, + null, + 98731.25835265023, + 98727.3121423661, + null, + 98794.9356782363, + 98727.3121423661, + null, + 98875.12446310604, + 98727.3121423661, + null, + 98845.6917714939, + 98727.3121423661, + null, + 98932.31091884513, + 98706.38695246876, + null, + 98926.20655583622, + 98706.38695246876, + null, + 98881.20399257346, + 98706.38695246876, + null, + 98845.6917714939, + 98706.38695246876, + null, + 98838.01226486915, + 98706.38695246876, + null, + 98916.08043593282, + 98706.38695246876, + null, + 98776.08147395353, + 98706.38695246876, + null, + 98875.12446310604, + 98706.38695246876, + null, + 98873.6590998779, + 98706.38695246876, + null, + 98833.5386160878, + 98706.38695246876, + null, + 98731.25835265023, + 98706.38695246876, + null, + 98715.38337956829, + 98706.38695246876, + null, + 98763.69912444155, + 98706.38695246876, + null, + 98775.64297666437, + 98706.38695246876, + null, + 98794.9356782363, + 98706.38695246876, + null, + 98769.87019965112, + 98706.38695246876, + null, + 98779.4951496633, + 98706.38695246876, + null, + 98212.5660722969, + 98438.62268190562, + null, + 96338.9907537572, + 96262.06027998815, + null, + 96338.9907537572, + 94859.96864376472, + null, + 96338.9907537572, + 96176.9141455721, + null, + 94647.79050717162, + 94389.95972141267, + null, + 94647.79050717162, + 94306.38229315246, + null, + 94647.79050717162, + 94318.7006224086, + null, + 94647.79050717162, + 94419.1947747694, + null, + 94647.79050717162, + 94392.82814914087, + null, + 94647.79050717162, + 94389.95371194034, + null, + 94647.79050717162, + 94437.83155434212, + null, + 94647.79050717162, + 94218.23975158927, + null, + 94647.79050717162, + 94194.02296244045, + null, + 94647.79050717162, + 94008.58638880895, + null, + 94647.79050717162, + 94284.66655702308, + null, + 94647.79050717162, + 94573.07039112478, + null, + 94647.79050717162, + 94372.80806801579, + null, + 94647.79050717162, + 94272.01261469895, + null, + 94647.79050717162, + 94240.6896417481, + null, + 94647.79050717162, + 94249.69397963368, + null, + 94647.79050717162, + 94597.4481398317, + null, + 94647.79050717162, + 94435.28319563705, + null, + 94647.79050717162, + 94303.52270668159, + null, + 94647.79050717162, + 94178.90319153182, + null, + 94647.79050717162, + 94243.63550838632, + null, + 94647.79050717162, + 94421.52405973361, + null, + 94647.79050717162, + 94859.96864376472, + null, + 94647.79050717162, + 94205.67563602903, + null, + 94647.79050717162, + 94202.7117129383, + null, + 94647.79050717162, + 94320.52454245155, + null, + 94647.79050717162, + 94293.7942434875, + null, + 94647.79050717162, + 94267.58695307715, + null, + 94647.79050717162, + 94495.40317446586, + null, + 94647.79050717162, + 94170.06170101493, + null, + 94647.79050717162, + 94211.52030884504, + null, + 94647.79050717162, + 94212.18498423915, + null, + 94647.79050717162, + 94330.95096713639, + null, + 94647.79050717162, + 94270.53763976666, + null, + 94647.79050717162, + 94390.87449225048, + null, + 94647.79050717162, + 94287.89529624995, + null, + 94647.79050717162, + 94446.13153450796, + null, + 94647.79050717162, + 94354.97654559696, + null, + 94647.79050717162, + 94346.09109533348, + null, + 94647.79050717162, + 94480.69700103143, + null, + 94647.79050717162, + 94273.99317481946, + null, + 94647.79050717162, + 94289.85535250117, + null, + 94647.79050717162, + 94170.9041715765, + null, + 94647.79050717162, + 94324.79195247918, + null, + 94647.79050717162, + 94132.7057344337, + null, + 94647.79050717162, + 94074.80621416663, + null, + 94647.79050717162, + 94249.39377209143, + null, + 94647.79050717162, + 94426.37056546453, + null, + 98994.41997788764, + 99555.46875574846, + null, + 98994.41997788764, + 99804.62331523834, + null, + 98994.41997788764, + 99331.72440120617, + null, + 96237.3014003704, + 96160.81025461864, + null, + 96237.3014003704, + 96205.75452273182, + null, + 96237.3014003704, + 96164.94304166912, + null, + 96237.3014003704, + 96091.27355284609, + null, + 96237.3014003704, + 96321.48275816297, + null, + 94688.11906145522, + 94366.87186140705, + null, + 94688.11906145522, + 94273.99317481946, + null, + 94688.11906145522, + 94306.37066336245, + null, + 94688.11906145522, + 94421.52405973361, + null, + 94688.11906145522, + 94859.96864376472, + null, + 94688.11906145522, + 94267.58695307715, + null, + 94688.11906145522, + 94529.97922971226, + null, + 94688.11906145522, + 94434.94919736736, + null, + 94688.11906145522, + 94289.85535250117, + null, + 94688.11906145522, + 94500.55053658024, + null, + 96639.48963731402, + 97122.97557930264, + null, + 96639.48963731402, + 97100.77454563488, + null, + 96639.48963731402, + 97135.42971177665, + null, + 95635.79388111227, + 95489.19345695784, + null, + 95635.79388111227, + 95488.26419210226, + null, + 95971.63945756324, + 96125.26064461117, + null, + 95971.63945756324, + 95919.73918913995, + null, + 96148.36985614852, + 96370.02373932622, + null, + 96819.81129369602, + 97265.23793720463, + null, + 97265.23793720463, + 96370.02373932622, + null, + 96888.812856475, + 96858.89753394539, + null, + 96888.812856475, + 96901.72588249666, + null, + 96702.93382964614, + 96528.33303416053, + null, + 96685.11446346446, + 96528.33303416053, + null, + 96692.14973493623, + 96528.33303416053, + null, + 97854.41540216467, + 98392.21001148615, + null, + 96886.64740803099, + 96528.33303416053, + null, + 96012.22372465217, + 96053.05650289368, + null, + 95855.37346994528, + 95450.25417539202, + null, + 95855.37346994528, + 95972.78915436483, + null, + 96019.51490257688, + 95970.95308075754, + null, + 96019.51490257688, + 95961.04765530549, + null, + 95928.73602388412, + 95722.21440872799, + null, + 95928.73602388412, + 95729.23859344584, + null, + 95655.37022945724, + 95670.62443730164, + null, + 95655.37022945724, + 95481.39560671317, + null, + 95655.37022945724, + 95340.12961580537, + null, + 95655.37022945724, + 95303.17115160594, + null, + 96175.94057358746, + 96179.6045501681, + null, + 96175.94057358746, + 96109.17619897892, + null, + 98401.53156330762, + 99168.38311213651, + null, + 98401.53156330762, + 98530.61451075874, + null, + 98401.53156330762, + 99222.80666593021, + null, + 98401.53156330762, + 99053.41371146425, + null, + 98401.53156330762, + 98605.97144397798, + null, + 98401.53156330762, + 98975.4583568785, + null, + 98932.31091884513, + 98401.53156330762, + null, + 98401.53156330762, + 98976.19477847009, + null, + 98401.53156330762, + 99267.27734915515, + null, + 98401.53156330762, + 99938.9075507464, + null, + 98401.53156330762, + 98691.31264841248, + null, + 98401.53156330762, + 99232.44990568829, + null, + 98875.12446310604, + 98401.53156330762, + null, + 98401.53156330762, + 99356.71931442092, + null, + 95386.7915315098, + 95257.82795586446, + null, + 95386.7915315098, + 95506.86434038139, + null, + 95386.7915315098, + 95292.85212499998, + null, + 95386.7915315098, + 95488.26419210226, + null, + 95386.7915315098, + 95262.32950182882, + null, + 95386.7915315098, + 95354.57773115158, + null, + 95386.7915315098, + 95458.13438059368, + null, + 95386.7915315098, + 95385.3428089936, + null, + 95386.7915315098, + 95209.67552481889, + null, + 95386.7915315098, + 95311.77032987887, + null, + 95386.7915315098, + 95444.61330598006, + null, + 95386.7915315098, + 95242.05024879698, + null, + 95386.7915315098, + 95252.43928937333, + null, + 95386.7915315098, + 95381.14361410459, + null, + 95386.7915315098, + 95333.87765260295, + null, + 95386.7915315098, + 95351.0489158062, + null, + 95386.7915315098, + 95195.90565530288, + null, + 95386.7915315098, + 95297.633034384, + null, + 95386.7915315098, + 95303.90705774128, + null, + 95386.7915315098, + 95447.04817351245, + null, + 95386.7915315098, + 95285.61582132381, + null, + 95386.7915315098, + 95322.42512021921, + null, + 95386.7915315098, + 95176.15417191545, + null, + 95386.7915315098, + 95381.0517074507, + null, + 95383.19508052658, + 95282.61728466298, + null, + 95383.19508052658, + 95333.87765260295, + null, + 95383.19508052658, + 95354.57773115158, + null, + 92604.63107627998, + 93231.70305331911, + null, + 92604.63107627998, + 92347.74753772338, + null, + 92604.63107627998, + 92216.72434555799, + null, + 92604.63107627998, + 92252.47720808198, + null, + 92604.63107627998, + 92256.07675212514, + null, + 92604.63107627998, + 92324.31396892523, + null, + 92604.63107627998, + 92415.17834135809, + null, + 92604.63107627998, + 92206.14403308384, + null, + 92604.63107627998, + 92211.31836481478, + null, + 92604.63107627998, + 92294.74860434067, + null, + 92604.63107627998, + 92140.90020542977, + null, + 92604.63107627998, + 92009.28930966396, + null, + 92604.63107627998, + 92188.30662763724, + null, + 92604.63107627998, + 92240.06832701992, + null, + 92604.63107627998, + 92136.26649392476, + null, + 92604.63107627998, + 92061.4858642193, + null, + 92604.63107627998, + 92117.94874151466, + null, + 92604.63107627998, + 92301.20739485609, + null, + 92604.63107627998, + 92270.44173942773, + null, + 92604.63107627998, + 92476.04624218972, + null, + 92604.63107627998, + 92274.0842380315, + null, + 92604.63107627998, + 92200.11384624743, + null, + 92604.63107627998, + 92129.61464772673, + null, + 92604.63107627998, + 92107.99155216134, + null, + 92604.63107627998, + 92264.89531600794, + null, + 92604.63107627998, + 92190.23091480859, + null, + 92604.63107627998, + 92280.17186758008, + null, + 92604.63107627998, + 92407.87747716965, + null, + 92604.63107627998, + 92369.8251914418, + null, + 92604.63107627998, + 92374.2328896316, + null, + 92604.63107627998, + 92478.78012790662, + null, + 92604.63107627998, + 92448.86611308221, + null, + 92604.63107627998, + 92122.39984355103, + null, + 92604.63107627998, + 92167.2011910307, + null, + 92604.63107627998, + 92206.32328236508, + null, + 92604.63107627998, + 92300.72398965452, + null, + 92604.63107627998, + 92070.91719750845, + null, + 92604.63107627998, + 92186.0226881958, + null, + 92604.63107627998, + 92274.32072505055, + null, + 92604.63107627998, + 92248.01639772087, + null, + 92604.63107627998, + 92251.44929818394, + null, + 92604.63107627998, + 92394.22447395853, + null, + 92604.63107627998, + 92291.97074429669, + null, + 92604.63107627998, + 92316.73871688145, + null, + 92604.63107627998, + 93059.16988490241, + null, + 92604.63107627998, + 92393.6617867084, + null, + 92604.63107627998, + 92300.0455267758, + null, + 92604.63107627998, + 92200.82708603864, + null, + 92604.63107627998, + 92217.13863978007, + null, + 92604.63107627998, + 92191.01154073558, + null, + 92604.63107627998, + 92088.59875338602, + null, + 92604.63107627998, + 92096.45991653283, + null, + 92604.63107627998, + 92152.5004987375, + null, + 92604.63107627998, + 92189.78925848598, + null, + 92604.63107627998, + 92182.36073816268, + null, + 92604.63107627998, + 92079.45570088438, + null, + 92604.63107627998, + 92255.84570257005, + null, + 92604.63107627998, + 92107.85643126183, + null, + 92604.63107627998, + 92402.8943849796, + null, + 92604.63107627998, + 92140.52812030239, + null, + 92604.63107627998, + 92230.18841609285, + null, + 92604.63107627998, + 92240.46970884116, + null, + 92604.63107627998, + 92092.02752181761, + null, + 92604.63107627998, + 92122.01120625601, + null, + 92604.63107627998, + 92515.26142917994, + null, + 92604.63107627998, + 92299.43199008808, + null, + 92604.63107627998, + 92191.80914221446, + null, + 92604.63107627998, + 92289.3106433427, + null, + 92604.63107627998, + 92278.89223268858, + null, + 92604.63107627998, + 92314.80079542873, + null, + 92604.63107627998, + 92239.59355543758, + null, + 92604.63107627998, + 92214.87566884019, + null, + 92604.63107627998, + 92350.96560856364, + null, + 92604.63107627998, + 92319.24278973592, + null, + 92604.63107627998, + 92120.59934842995, + null, + 92604.63107627998, + 92402.46333965527, + null, + 92604.63107627998, + 92395.55800703372, + null, + 92604.63107627998, + 92407.26663431138, + null, + 92604.63107627998, + 92170.76494797798, + null, + 92604.63107627998, + 92149.3896272451, + null, + 92604.63107627998, + 92149.07451227563, + null, + 92604.63107627998, + 92362.9412919757, + null, + 92604.63107627998, + 92072.22295952133, + null, + 92604.63107627998, + 92165.8074200398, + null, + 92604.63107627998, + 92264.4950612678, + null, + 92604.63107627998, + 92321.76859128801, + null, + 92604.63107627998, + 92243.35934066583, + null, + 92604.63107627998, + 92240.73151292205, + null, + 92604.63107627998, + 92351.74121802478, + null, + 92604.63107627998, + 92212.58705155137, + null, + 92604.63107627998, + 92261.77315785893, + null, + 92604.63107627998, + 92272.0976249191, + null, + 92604.63107627998, + 92458.16706063351, + null, + 92604.63107627998, + 92337.92067785797, + null, + 92604.63107627998, + 92369.46596237014, + null, + 92604.63107627998, + 92309.11050830808, + null, + 92604.63107627998, + 92348.91301035674, + null, + 92604.63107627998, + 92158.63274311995, + null, + 92604.63107627998, + 92359.01992750082, + null, + 92604.63107627998, + 92422.06859334902, + null, + 92604.63107627998, + 92294.31157988217, + null, + 92604.63107627998, + 92285.98502461443, + null, + 92604.63107627998, + 92247.55109256034, + null, + 92604.63107627998, + 92072.40823846689, + null, + 92604.63107627998, + 93217.65623676107, + null, + 92604.63107627998, + 92298.84256798221, + null, + 92604.63107627998, + 92143.44554872952, + null, + 92604.63107627998, + 92114.55881212364, + null, + 92604.63107627998, + 92388.34112005818, + null, + 92604.63107627998, + 92104.1575179089, + null, + 92604.63107627998, + 92178.4738757029, + null, + 92604.63107627998, + 92211.68105250059, + null, + 92604.63107627998, + 92417.7595950224, + null, + 92604.63107627998, + 92171.84482602276, + null, + 92604.63107627998, + 92237.57093869668, + null, + 92604.63107627998, + 92088.96846171409, + null, + 92604.63107627998, + 92070.41065231868, + null, + 92604.63107627998, + 92187.36681509153, + null, + 92604.63107627998, + 92370.404557384, + null, + 92604.63107627998, + 92280.5187113803, + null, + 92604.63107627998, + 92077.55009881165, + null, + 92604.63107627998, + 92097.85089890493, + null, + 92604.63107627998, + 92250.68960775186, + null, + 92604.63107627998, + 92229.6510093099, + null, + 92604.63107627998, + 92124.28625739494, + null, + 92604.63107627998, + 92277.44419006346, + null, + 92604.63107627998, + 92112.15601888165, + null, + 92604.63107627998, + 92236.86729316006, + null, + 92604.63107627998, + 92298.52245461594, + null, + 92604.63107627998, + 92326.23605654163, + null, + 92604.63107627998, + 92131.71539503698, + null, + 92604.63107627998, + 92327.35935856824, + null, + 92604.63107627998, + 92170.31098093353, + null, + 92604.63107627998, + 92316.82956297412, + null, + 92604.63107627998, + 92136.64050642017, + null, + 92604.63107627998, + 92132.58089114129, + null, + 92604.63107627998, + 92087.82568701153, + null, + 92604.63107627998, + 93923.1020165203, + null, + 92604.63107627998, + 92128.44388904206, + null, + 92604.63107627998, + 92165.08700529874, + null, + 92604.63107627998, + 92146.48937205561, + null, + 92604.63107627998, + 92224.22667915009, + null, + 92604.63107627998, + 92276.97318654209, + null, + 92604.63107627998, + 92179.81064205624, + null, + 92604.63107627998, + 92230.56984005714, + null, + 92604.63107627998, + 92194.68123738615, + null, + 92604.63107627998, + 92303.61592663793, + null, + 92604.63107627998, + 92259.52032100408, + null, + 92604.63107627998, + 93895.03036091999, + null, + 92604.63107627998, + 93891.5498056317, + null, + 92604.63107627998, + 92106.50574246883, + null, + 92604.63107627998, + 92274.69795367589, + null, + 92604.63107627998, + 94839.05921223038, + null, + 92604.63107627998, + 95209.07740315559, + null, + 92604.63107627998, + 93892.18559051274, + null, + 92604.63107627998, + 92216.84531759286, + null, + 92604.63107627998, + 92223.28407935618, + null, + 92604.63107627998, + 92322.9398265956, + null, + 92604.63107627998, + 92181.57577859817, + null, + 92604.63107627998, + 92125.35754151737, + null, + 92604.63107627998, + 93909.45243357617, + null, + 92604.63107627998, + 92156.29947048516, + null, + 92604.63107627998, + 92363.13694954333, + null, + 92604.63107627998, + 92241.1538857497, + null, + 92604.63107627998, + 92198.72093061345, + null, + 92604.63107627998, + 92277.94262352257, + null, + 92604.63107627998, + 92348.27216643172, + null, + 92604.63107627998, + 92100.12237040915, + null, + 92604.63107627998, + 92224.97120305183, + null, + 92604.63107627998, + 92162.6663993115, + null, + 92604.63107627998, + 92267.80885625147, + null, + 92604.63107627998, + 92161.25150030805, + null, + 92604.63107627998, + 92495.77534289319, + null, + 92604.63107627998, + 92351.52551961424, + null, + 92604.63107627998, + 92338.47796412221, + null, + 92604.63107627998, + 92326.41795009529, + null, + 92604.63107627998, + 92329.20324077769, + null, + 92604.63107627998, + 92222.80917248885, + null, + 92604.63107627998, + 92314.41985868117, + null, + 92604.63107627998, + 92256.26836982086, + null, + 92604.63107627998, + 92503.48875709479, + null, + 92604.63107627998, + 92496.54476011512, + null, + 92604.63107627998, + 92375.68912132124, + null, + 92604.63107627998, + 92217.9630178079, + null, + 92604.63107627998, + 92295.27871363045, + null, + 92604.63107627998, + 92243.55514949372, + null, + 92604.63107627998, + 92333.49401411432, + null, + 92604.63107627998, + 92265.93497688345, + null, + 92604.63107627998, + 92296.90882344653, + null, + 92604.63107627998, + 92161.89029910951, + null, + 92604.63107627998, + 92322.08469817725, + null, + 92604.63107627998, + 92243.26218856651, + null, + 92604.63107627998, + 92187.51445774999, + null, + 92604.63107627998, + 92167.8995244472, + null, + 92604.63107627998, + 92093.71003634819, + null, + 92604.63107627998, + 92159.09530130218, + null, + 92604.63107627998, + 92196.35201010661, + null, + 92604.63107627998, + 92189.73775652013, + null, + 92604.63107627998, + 92143.18325545135, + null, + 92604.63107627998, + 92385.10208996975, + null, + 92604.63107627998, + 92347.33566601481, + null, + 92604.63107627998, + 92429.41868813094, + null, + 92604.63107627998, + 92212.81898397961, + null, + 92604.63107627998, + 92479.64231084207, + null, + 92604.63107627998, + 92459.66524880938, + null, + 92604.63107627998, + 92426.13656796042, + null, + 92604.63107627998, + 92476.16358429435, + null, + 92604.63107627998, + 92423.07228620039, + null, + 92604.63107627998, + 92180.50690094149, + null, + 92604.63107627998, + 92532.19153863966, + null, + 92604.63107627998, + 93914.93502816484, + null, + 95893.574265848, + 95497.05276392102, + null, + 96026.40843242637, + 95837.77507526969, + null, + 96114.05896419227, + 96053.05650289368, + null, + 95834.93768300924, + 95812.4154540912, + null, + 95834.93768300924, + 95698.50564941308, + null, + 95834.93768300924, + 95628.40799309613, + null, + 95619.17778565394, + 95450.25417539202, + null, + 95619.17778565394, + 95158.67040196666, + null, + 96108.40628370653, + 96060.05473969401, + null, + 96108.40628370653, + 96370.02373932622, + null, + 95731.71785167878, + 95670.62443730164, + null, + 95731.71785167878, + 95340.12961580537, + null, + 95777.00472574684, + 95670.62443730164, + null, + 95777.00472574684, + 95481.39560671317, + null, + 95353.54589236321, + 95255.10891653616, + null, + 95353.54589236321, + 94509.72194374804, + null, + 95800.17831353597, + 96214.29567174465, + null, + 95800.17831353597, + 95303.17115160594, + null, + 95203.24310226098, + 94269.50089276706, + null, + 95203.24310226098, + 95029.52467561196, + null, + 95203.24310226098, + 94894.02889160464, + null, + 95203.24310226098, + 94921.09641509663, + null, + 95903.12103009703, + 96370.02373932622, + null, + 95903.12103009703, + 95497.05276392102, + null, + 96914.4073833856, + 97015.94024530961, + null, + 96914.4073833856, + 96924.78320992363, + null, + 97103.69288164194, + 97343.47929912621, + null, + 96820.8105552239, + 96837.76873429003, + null, + 96820.8105552239, + 96961.74738516554, + null, + 96112.34947297389, + 95497.05276392102, + null, + 96112.34947297389, + 96370.02373932622, + null, + 96112.34947297389, + 96125.26064461117, + null, + 96008.4744666249, + 95318.86888176948, + null, + 96893.41939654587, + 96858.8259365058, + null, + 96893.41939654587, + 96993.28565305514, + null, + 96893.41939654587, + 96943.63194993603, + null, + 96893.41939654587, + 96906.35772752426, + null, + 96893.41939654587, + 97022.69247553179, + null, + 96865.8409444725, + 96984.5487179883, + null, + 96865.8409444725, + 96874.58922306824, + null, + 97240.38028997074, + 97747.21900755091, + null, + 97240.38028997074, + 97417.73753495087, + null, + 96876.82259242256, + 96969.69441581002, + null, + 96619.39742322621, + 96528.33303416053, + null, + 96882.99940588712, + 96901.72588249666, + null, + 96882.99940588712, + 96968.60153243598, + null, + 96861.44317975816, + 96901.72588249666, + null, + 96861.44317975816, + 96858.89753394539, + null, + 96819.81129369602, + 96768.5817251259, + null, + 96768.5817251259, + 96747.02345144031, + null, + 96768.5817251259, + 96601.21280775112, + null, + 96768.5817251259, + 96977.1650347663, + null, + 96559.08563953191, + 96528.33303416053, + null, + 96649.40356388739, + 96528.33303416053, + null, + 96625.72014898527, + 96528.33303416053, + null, + 97992.50506999153, + 98392.21001148615, + null, + 96070.12571463303, + 95368.49227674282, + null, + 96070.12571463303, + 95670.62443730164, + null, + 96070.12571463303, + 96056.0944855474, + null, + 95866.20481677107, + 95670.62443730164, + null, + 95866.20481677107, + 95618.32230128575, + null, + 95662.62644960554, + 95004.62236427962, + null, + 95662.62644960554, + 95368.49227674282, + null, + 95662.62644960554, + 96214.29567174465, + null, + 95662.62644960554, + 95618.32230128575, + null, + 95405.1846400074, + 94573.07039112478, + null, + 95405.1846400074, + 94597.4481398317, + null, + 95405.1846400074, + 94859.96864376472, + null, + 95405.1846400074, + 95064.92563679993, + null, + 98932.31091884513, + 98524.57731541038, + null, + 98926.20655583622, + 98524.57731541038, + null, + 98881.20399257346, + 98524.57731541038, + null, + 98873.6590998779, + 98524.57731541038, + null, + 98776.08147395353, + 98524.57731541038, + null, + 98916.08043593282, + 98524.57731541038, + null, + 98775.64297666437, + 98524.57731541038, + null, + 98833.5386160878, + 98524.57731541038, + null, + 98779.4951496633, + 98524.57731541038, + null, + 98769.87019965112, + 98524.57731541038, + null, + 98763.69912444155, + 98524.57731541038, + null, + 98715.38337956829, + 98524.57731541038, + null, + 98838.01226486915, + 98524.57731541038, + null, + 98731.25835265023, + 98524.57731541038, + null, + 98794.9356782363, + 98524.57731541038, + null, + 98875.12446310604, + 98524.57731541038, + null, + 98845.6917714939, + 98524.57731541038, + null, + 98061.51654616423, + 98235.0876506272, + null, + 98127.50014794023, + 96972.87752214319, + null, + 96819.81129369602, + 98127.50014794023, + null, + 98303.3954720316, + 98629.48902981033, + null, + 96465.29272664362, + 96528.33303416053, + null, + 96421.49499570957, + 96378.79458742414, + null, + 95652.29809552783, + 95368.49227674282, + null, + 95652.29809552783, + 95670.62443730164, + null, + 95652.29809552783, + 95340.12961580537, + null, + 95574.25352251745, + 95285.84544380629, + null, + 95574.25352251745, + 95335.33394613424, + null, + 95574.25352251745, + 95380.30317238574, + null, + 94671.14162737239, + 94292.11046783296, + null, + 94671.14162737239, + 94273.99317481946, + null, + 94671.14162737239, + 94306.37066336245, + null, + 94671.14162737239, + 94421.52405973361, + null, + 94671.14162737239, + 94317.6587058325, + null, + 94671.14162737239, + 94859.96864376472, + null, + 94671.14162737239, + 94267.58695307715, + null, + 94671.14162737239, + 94366.87186140705, + null, + 94671.14162737239, + 94289.85535250117, + null, + 94671.14162737239, + 94322.88661735097, + null, + 97196.83695998523, + 97023.15247734636, + null, + 97409.25368271414, + 96528.33303416053, + null, + 97234.04346137235, + 95972.78915436483, + null, + 97234.04346137235, + 96535.8616409643, + null, + 97434.01515339047, + 96055.6245428955, + null, + 97434.01515339047, + 97606.17229012403, + null, + 95567.54268381129, + 95450.25417539202, + null, + 95567.54268381129, + 95158.67040196666, + null, + 97481.45108043253, + 97591.89461364681, + null, + 97481.45108043253, + 97576.71628926601, + null, + 97481.45108043253, + 97500.32823463708, + null, + 95459.71080597503, + 95328.50872682448, + null, + 95459.71080597503, + 95004.62236427962, + null, + 95459.71080597503, + 95300.26526034814, + null, + 95459.71080597503, + 95271.0473357906, + null, + 95521.93192587548, + 95510.65824351287, + null, + 95521.93192587548, + 95347.32880997096, + null, + 95521.93192587548, + 95271.44501622175, + null, + 95521.93192587548, + 95372.15228673177, + null, + 95521.93192587548, + 95421.30035086887, + null, + 95521.93192587548, + 95244.81624951023, + null, + 95521.93192587548, + 95442.41664362849, + null, + 95521.93192587548, + 95478.64369343246, + null, + 96559.7026621268, + 96410.03307549134, + null, + 96559.7026621268, + 96493.56633299332, + null, + 96559.7026621268, + 97178.27508498696, + null, + 96559.7026621268, + 96593.2717327048, + null, + 96449.25631444062, + 96302.94937464621, + null, + 94919.54440569754, + 94729.26537341278, + null, + 94171.18973519026, + 94389.95972141267, + null, + 94171.18973519026, + 94306.38229315246, + null, + 94171.18973519026, + 94318.7006224086, + null, + 94171.18973519026, + 94419.1947747694, + null, + 94171.18973519026, + 94392.82814914087, + null, + 94171.18973519026, + 94372.80806801579, + null, + 94171.18973519026, + 93861.98590665219, + null, + 94171.18973519026, + 94573.07039112478, + null, + 94171.18973519026, + 94218.23975158927, + null, + 94171.18973519026, + 94194.02296244045, + null, + 94171.18973519026, + 94008.58638880895, + null, + 94171.18973519026, + 94284.66655702308, + null, + 94171.18973519026, + 93956.15973323683, + null, + 94171.18973519026, + 94249.69397963368, + null, + 94171.18973519026, + 94597.4481398317, + null, + 94171.18973519026, + 93878.00338465307, + null, + 94171.18973519026, + 94303.52270668159, + null, + 94171.18973519026, + 93852.65938610463, + null, + 94171.18973519026, + 94178.90319153182, + null, + 94171.18973519026, + 93796.41706922535, + null, + 94171.18973519026, + 94240.6896417481, + null, + 94171.18973519026, + 94306.37066336245, + null, + 94171.18973519026, + 94320.52454245155, + null, + 94171.18973519026, + 93912.14907894815, + null, + 94171.18973519026, + 94243.63550838632, + null, + 94171.18973519026, + 94270.53763976666, + null, + 94171.18973519026, + 94859.96864376472, + null, + 94171.18973519026, + 94205.67563602903, + null, + 94171.18973519026, + 93783.06450327153, + null, + 94171.18973519026, + 94202.7117129383, + null, + 94171.18973519026, + 94293.7942434875, + null, + 94171.18973519026, + 93830.40835361417, + null, + 94171.18973519026, + 93845.20569222173, + null, + 94171.18973519026, + 94267.58695307715, + null, + 94171.18973519026, + 94170.06170101493, + null, + 94171.18973519026, + 94211.52030884504, + null, + 94171.18973519026, + 94212.18498423915, + null, + 94171.18973519026, + 94330.95096713639, + null, + 94171.18973519026, + 93805.02916709852, + null, + 94171.18973519026, + 93848.69468485197, + null, + 94171.18973519026, + 93895.12691645266, + null, + 94171.18973519026, + 94273.99317481946, + null, + 94171.18973519026, + 94272.01261469895, + null, + 94171.18973519026, + 94289.85535250117, + null, + 94171.18973519026, + 93783.44722599696, + null, + 94171.18973519026, + 94170.9041715765, + null, + 94171.18973519026, + 94132.7057344337, + null, + 94171.18973519026, + 94249.39377209143, + null, + 94171.18973519026, + 94214.94588328559, + null, + 98932.31091884513, + 98378.94284214679, + null, + 98926.20655583622, + 98378.94284214679, + null, + 98881.20399257346, + 98378.94284214679, + null, + 98873.6590998779, + 98378.94284214679, + null, + 98776.08147395353, + 98378.94284214679, + null, + 98916.08043593282, + 98378.94284214679, + null, + 98775.64297666437, + 98378.94284214679, + null, + 98833.5386160878, + 98378.94284214679, + null, + 98779.4951496633, + 98378.94284214679, + null, + 98769.87019965112, + 98378.94284214679, + null, + 98763.69912444155, + 98378.94284214679, + null, + 98715.38337956829, + 98378.94284214679, + null, + 98838.01226486915, + 98378.94284214679, + null, + 98731.25835265023, + 98378.94284214679, + null, + 98794.9356782363, + 98378.94284214679, + null, + 98875.12446310604, + 98378.94284214679, + null, + 98845.6917714939, + 98378.94284214679, + null, + 94645.87712676502, + 94389.95972141267, + null, + 94645.87712676502, + 94306.38229315246, + null, + 94645.87712676502, + 94318.7006224086, + null, + 94645.87712676502, + 94419.1947747694, + null, + 94645.87712676502, + 94392.82814914087, + null, + 94645.87712676502, + 94306.37066336245, + null, + 94645.87712676502, + 94372.80806801579, + null, + 94645.87712676502, + 94303.52270668159, + null, + 94645.87712676502, + 94859.96864376472, + null, + 94645.87712676502, + 94320.52454245155, + null, + 94645.87712676502, + 94293.7942434875, + null, + 94645.87712676502, + 94397.66514778201, + null, + 94645.87712676502, + 94330.95096713639, + null, + 94645.87712676502, + 94270.53763976666, + null, + 94645.87712676502, + 94132.7057344337, + null, + 94645.87712676502, + 94214.94588328559, + null, + 96735.91203018947, + 96850.54600123651, + null, + 97196.83695998523, + 97334.69528656456, + null, + 97334.69528656456, + 97426.74158915173, + null, + 97234.04346137235, + 97334.69528656456, + null, + 97409.25368271414, + 97334.69528656456, + null, + 97334.69528656456, + 98273.0404411526, + null, + 95915.62243658677, + 95786.36719281576, + null, + 94473.57318014126, + 93231.70305331911, + null, + 94473.57318014126, + 93217.65623676107, + null, + 94473.57318014126, + 95209.07740315559, + null, + 96498.2979299931, + 96972.87752214319, + null, + 96498.2979299931, + 96349.92934443918, + null, + 96498.2979299931, + 96338.35038049635, + null, + 97046.83129228091, + 97199.92290572009, + null, + 97046.83129228091, + 97155.05669738412, + null, + 96532.6646683294, + 96370.02373932622, + null, + 96214.62212633847, + 95497.05276392102, + null, + 96819.81129369602, + 96214.62212633847, + null, + 96819.81129369602, + 96146.8337078855, + null, + 96146.8337078855, + 95497.05276392102, + null, + 96146.8337078855, + 96125.26064461117, + null, + 95343.9410888273, + 95179.22795563574, + null, + 95343.9410888273, + 95203.19322201304, + null, + 95506.46666204746, + 95450.25417539202, + null, + 95506.46666204746, + 95656.42468831391, + null, + 95380.57975889063, + 95242.50683299675, + null, + 95380.57975889063, + 95206.90394798008, + null, + 95213.69401511893, + 95368.49227674282, + null, + 95213.69401511893, + 95670.62443730164, + null, + 95213.69401511893, + 94585.54283407258, + null, + 94761.32003739124, + 94154.85813823475, + null, + 94761.32003739124, + 94158.20929334633, + null, + 96370.41426861439, + 96601.21280775112, + null, + 96370.41426861439, + 96972.87752214319, + null, + 96370.41426861439, + 96493.32238421563, + null, + 96556.18686331193, + 96972.87752214319, + null, + 96556.18686331193, + 96125.26064461117, + null, + 96556.18686331193, + 96459.46741135049, + null, + 95312.03621158424, + 95450.25417539202, + null, + 95312.03621158424, + 95158.67040196666, + null, + 95103.86724211255, + 95059.96146767413, + null, + 95103.86724211255, + 94963.37886006157, + null, + 95103.86724211255, + 95002.6752162217, + null, + 94154.4683582202, + 94048.93199379041, + null, + 94154.4683582202, + 94005.1775320185, + null, + 94154.4683582202, + 93059.16988490241, + null, + 96651.05281133259, + 96603.54230227087, + null, + 96651.05281133259, + 96550.22153001573, + null, + 95926.00835539421, + 95670.62443730164, + null, + 95926.00835539421, + 95340.12961580537, + null, + 95794.56902475153, + 95756.08622571501, + null, + 95794.56902475153, + 95809.09217161969, + null, + 95794.56902475153, + 95836.83724442031, + null, + 95794.56902475153, + 95271.0473357906, + null, + 95794.56902475153, + 95850.76938404588, + null, + 95275.96542639584, + 95103.97227801211, + null, + 95275.96542639584, + 95376.11147143133, + null, + 95275.96542639584, + 95670.62443730164, + null, + 95275.96542639584, + 94581.3224656246, + null, + 95275.96542639584, + 95004.62236427962, + null, + 95275.96542639584, + 95340.12961580537, + null, + 95275.96542639584, + 95103.11342187891, + null, + 95275.96542639584, + 95124.22218566947, + null, + 92619.51334005372, + 92179.36209571654, + null, + 92619.51334005372, + 92342.1647082602, + null, + 92619.51334005372, + 92343.11266496578, + null, + 92619.51334005372, + 92385.80051301901, + null, + 92619.51334005372, + 92363.17729310234, + null, + 92619.51334005372, + 92415.46817355568, + null, + 92619.51334005372, + 92371.34679188945, + null, + 92619.51334005372, + 92059.19945228689, + null, + 92619.51334005372, + 92254.26120896422, + null, + 92619.51334005372, + 92258.94206324218, + null, + 92619.51334005372, + 92289.21560844104, + null, + 92619.51334005372, + 92203.64139679476, + null, + 92619.51334005372, + 92294.99886701563, + null, + 92619.51334005372, + 92211.95592517799, + null, + 92619.51334005372, + 92290.40010143537, + null, + 92619.51334005372, + 92313.0809202976, + null, + 92619.51334005372, + 92271.08130189306, + null, + 92619.51334005372, + 92439.0785089486, + null, + 92619.51334005372, + 92230.63025610495, + null, + 92619.51334005372, + 92342.20159560516, + null, + 95388.1231928088, + 95229.32911955088, + null, + 95388.1231928088, + 95801.8797460325, + null, + 95388.1231928088, + 95285.84544380629, + null, + 95388.1231928088, + 95380.30317238574, + null, + 95388.1231928088, + 95335.33394613424, + null, + 96533.09552389133, + 96528.33303416053, + null, + 96819.81129369602, + 96602.4666381394, + null, + 96602.4666381394, + 96674.53315191732, + null, + 95710.95963260993, + 95572.39553147889, + null, + 95710.95963260993, + 95506.86434038139, + null, + 95710.95963260993, + 95678.9898490588, + null, + 95710.95963260993, + 95564.26772175558, + null, + 95710.95963260993, + 95634.67560640232, + null, + 95710.95963260993, + 95662.54958325467, + null, + 95710.95963260993, + 95532.36565291665, + null, + 95710.95963260993, + 95726.21465473025, + null, + 95710.95963260993, + 95560.55284189491, + null, + 96173.23715080458, + 95996.56462555612, + null, + 96169.80106348639, + 96053.05650289368, + null, + 96919.26178312073, + 96851.12729283779, + null, + 96999.24006270662, + 97062.67817875755, + null, + 96999.24006270662, + 97050.47210070032, + null, + 96911.02758063171, + 96833.70570836318, + null, + 96911.02758063171, + 96978.96277123882, + null, + 95402.18303854323, + 94491.85479096157, + null, + 95963.6655367038, + 96528.33303416053, + null, + 96323.93164666534, + 96528.33303416053, + null, + 95826.13450428299, + 95618.32230128575, + null, + 95826.13450428299, + 95670.62443730164, + null, + 95894.3821805092, + 95699.64251087462, + null, + 95894.3821805092, + 95729.23859344584, + null, + 95894.3821805092, + 95709.03021955737, + null, + 95894.3821805092, + 95708.33665371903, + null, + 95894.3821805092, + 95679.00902682092, + null, + 95735.81320135522, + 95559.50076204128, + null, + 95735.81320135522, + 95428.96196267167, + null, + 95735.81320135522, + 95512.51691874191, + null, + 95735.81320135522, + 95606.9735303453, + null, + 95735.81320135522, + 95541.43426055746, + null, + 95735.81320135522, + 95436.21133694542, + null, + 95735.81320135522, + 95649.54902588758, + null, + 95735.81320135522, + 95474.01595310215, + null, + 96819.81129369602, + 96785.2273252981, + null, + 96844.44949459478, + 96901.72588249666, + null, + 96844.44949459478, + 96858.89753394539, + null, + 96450.55318015978, + 96528.33303416053, + null, + 96234.86536056163, + 96528.33303416053, + null, + 95910.45905898156, + 96107.19415896157, + null, + 95910.45905898156, + 95523.28532488653, + null, + 95733.15082062641, + 95450.25417539202, + null, + 95733.15082062641, + 95656.42468831391, + null, + 97623.71573684271, + 97550.03779670106, + null, + 97623.71573684271, + 97677.43610441216, + null, + 97623.71573684271, + 97734.7750819923, + null, + 96003.07301754713, + 95670.62443730164, + null, + 96003.07301754713, + 96056.0944855474, + null, + 95855.84606940606, + 95917.55516884955, + null, + 95855.84606940606, + 95318.33825288666, + null, + 90620.59321338178, + 90398.13563399928, + null, + 90620.59321338178, + 90219.83557956429, + null, + 90620.59321338178, + 91850.72333799597, + null, + 90620.59321338178, + 89955.4720743023, + null, + 90620.59321338178, + 90351.7003485438, + null, + 90620.59321338178, + 90158.81527667675, + null, + 90620.59321338178, + 90225.72064624407, + null, + 90620.59321338178, + 89808.82616084766, + null, + 90620.59321338178, + 90236.17206468161, + null, + 90620.59321338178, + 90345.96414554433, + null, + 90620.59321338178, + 90101.23951609244, + null, + 90620.59321338178, + 90156.48155842807, + null, + 90620.59321338178, + 90238.81562165567, + null, + 90620.59321338178, + 90188.37121588881, + null, + 90620.59321338178, + 90049.82466375276, + null, + 90620.59321338178, + 90839.86000529061, + null, + 90620.59321338178, + 91522.46011082169, + null, + 90620.59321338178, + 90426.59718746592, + null, + 90620.59321338178, + 90364.49650618425, + null, + 90620.59321338178, + 90281.57249944574, + null, + 90620.59321338178, + 90204.0364488624, + null, + 90620.59321338178, + 90325.97959319454, + null, + 90620.59321338178, + 90286.08327358324, + null, + 90620.59321338178, + 90368.68853514639, + null, + 90620.59321338178, + 90131.89700646249, + null, + 90620.59321338178, + 90264.36843072166, + null, + 90620.59321338178, + 90283.73132984444, + null, + 90620.59321338178, + 90409.54204067939, + null, + 90620.59321338178, + 90176.72383861212, + null, + 90620.59321338178, + 90161.34034330312, + null, + 90620.59321338178, + 90174.19097516667, + null, + 90620.59321338178, + 90380.46228281433, + null, + 90620.59321338178, + 90216.7935701221, + null, + 90620.59321338178, + 90187.72273738508, + null, + 90620.59321338178, + 90302.22760431943, + null, + 90620.59321338178, + 90255.81325412332, + null, + 90620.59321338178, + 90227.9318507897, + null, + 90620.59321338178, + 90174.31006624116, + null, + 90620.59321338178, + 90292.82642272265, + null, + 90620.59321338178, + 90147.69829486302, + null, + 90620.59321338178, + 90117.02379395122, + null, + 90620.59321338178, + 91536.18144472227, + null, + 90620.59321338178, + 90098.56959740954, + null, + 90620.59321338178, + 89715.23360905857, + null, + 90620.59321338178, + 90344.20893913148, + null, + 90620.59321338178, + 89977.85792588338, + null, + 90620.59321338178, + 90346.25928401393, + null, + 94139.8012458913, + 94273.99317481946, + null, + 94139.8012458913, + 94317.6587058325, + null, + 94139.8012458913, + 94306.37066336245, + null, + 94139.8012458913, + 94421.52405973361, + null, + 94139.8012458913, + 94270.53763976666, + null, + 94139.8012458913, + 94859.96864376472, + null, + 94139.8012458913, + 94267.58695307715, + null, + 94139.8012458913, + 94366.87186140705, + null, + 94139.8012458913, + 93971.80265598431, + null, + 94139.8012458913, + 94289.85535250117, + null, + 94032.80335215264, + 93861.98590665219, + null, + 94032.80335215264, + 94573.07039112478, + null, + 94032.80335215264, + 94218.23975158927, + null, + 94032.80335215264, + 94194.02296244045, + null, + 94032.80335215264, + 94008.58638880895, + null, + 94032.80335215264, + 94284.66655702308, + null, + 94032.80335215264, + 93956.15973323683, + null, + 94032.80335215264, + 94249.69397963368, + null, + 94032.80335215264, + 94597.4481398317, + null, + 94032.80335215264, + 93878.00338465307, + null, + 94032.80335215264, + 94303.52270668159, + null, + 94032.80335215264, + 93852.65938610463, + null, + 94032.80335215264, + 94178.90319153182, + null, + 94032.80335215264, + 93796.41706922535, + null, + 94032.80335215264, + 94240.6896417481, + null, + 94032.80335215264, + 94306.37066336245, + null, + 94032.80335215264, + 94320.52454245155, + null, + 94032.80335215264, + 93912.14907894815, + null, + 94032.80335215264, + 94243.63550838632, + null, + 94032.80335215264, + 94270.53763976666, + null, + 94032.80335215264, + 94859.96864376472, + null, + 94032.80335215264, + 94205.67563602903, + null, + 94032.80335215264, + 93783.06450327153, + null, + 94032.80335215264, + 94202.7117129383, + null, + 94032.80335215264, + 94293.7942434875, + null, + 94032.80335215264, + 93830.40835361417, + null, + 94032.80335215264, + 93845.20569222173, + null, + 94032.80335215264, + 94267.58695307715, + null, + 94032.80335215264, + 94170.06170101493, + null, + 94032.80335215264, + 94211.52030884504, + null, + 94032.80335215264, + 94212.18498423915, + null, + 94032.80335215264, + 94330.95096713639, + null, + 94032.80335215264, + 93805.02916709852, + null, + 94032.80335215264, + 93848.69468485197, + null, + 94032.80335215264, + 93895.12691645266, + null, + 94032.80335215264, + 94273.99317481946, + null, + 94032.80335215264, + 94272.01261469895, + null, + 94032.80335215264, + 94289.85535250117, + null, + 94032.80335215264, + 93725.28554114306, + null, + 94032.80335215264, + 94170.9041715765, + null, + 94032.80335215264, + 94132.7057344337, + null, + 94032.80335215264, + 94249.39377209143, + null, + 93807.67468704915, + 94154.85813823475, + null, + 93807.67468704915, + 94158.20929334633, + null, + 94732.86002550159, + 94503.96161457393, + null, + 94732.86002550159, + 95594.78680514084, + null, + 94732.86002550159, + 95318.86888176948, + null, + 94732.86002550159, + 94607.68459209791, + null, + 94732.86002550159, + 94463.72063775688, + null, + 96373.51181593174, + 96274.70146604127, + null, + 96024.31193605777, + 95919.43239973261, + null, + 96024.31193605777, + 95888.00363924424, + null, + 96039.53114090665, + 96021.01935869602, + null, + 96558.40139577903, + 96528.33303416053, + null, + 96648.53242134354, + 96674.53315191732, + null, + 96819.81129369602, + 96648.53242134354, + null, + 96248.28034246547, + 96060.05473969401, + null, + 96248.28034246547, + 96206.3567727413, + null, + 96483.28090692386, + 96297.63544971858, + null, + 96054.44520130524, + 95670.62443730164, + null, + 96054.44520130524, + 96056.0944855474, + null, + 96524.24227801626, + 96577.88292402872, + null, + 96583.58536032659, + 96449.49416274708, + null, + 96583.58536032659, + 96851.49702075154, + null, + 96583.58536032659, + 96605.92981897558, + null, + 96583.58536032659, + 96610.6899973968, + null, + 95881.63940456003, + 95921.81597746578, + null, + 95881.63940456003, + 95352.39749037023, + null, + 95881.63940456003, + 95951.33594695487, + null, + 95881.63940456003, + 95376.11147143133, + null, + 95881.63940456003, + 96000.54859558669, + null, + 95881.63940456003, + 96016.9478340095, + null, + 95881.63940456003, + 95554.52104992175, + null, + 95881.63940456003, + 95956.77118384998, + null, + 95881.63940456003, + 95898.63188323451, + null, + 95096.87780489783, + 94864.12017348492, + null, + 95096.87780489783, + 94921.19423968834, + null, + 95096.87780489783, + 94905.71651342275, + null, + 94429.634403017, + 94389.95972141267, + null, + 94429.634403017, + 94306.38229315246, + null, + 94429.634403017, + 94318.7006224086, + null, + 94429.634403017, + 94419.1947747694, + null, + 94429.634403017, + 94392.82814914087, + null, + 94429.634403017, + 94306.37066336245, + null, + 94429.634403017, + 94372.80806801579, + null, + 94429.634403017, + 94303.52270668159, + null, + 94429.634403017, + 94859.96864376472, + null, + 94429.634403017, + 94320.52454245155, + null, + 94429.634403017, + 94293.7942434875, + null, + 94429.634403017, + 94397.66514778201, + null, + 94429.634403017, + 94330.95096713639, + null, + 94429.634403017, + 94270.53763976666, + null, + 94429.634403017, + 94132.7057344337, + null, + 94429.634403017, + 94214.94588328559, + null, + 96769.24653086865, + 96730.61407259232, + null, + 96769.24653086865, + 96570.65933290092, + null, + 96769.24653086865, + 96917.55039066126, + null, + 96769.24653086865, + 96845.31383705071, + null, + 96769.24653086865, + 96840.67852705196, + null, + 95885.77494615254, + 95879.40264413109, + null, + 95885.77494615254, + 95209.07740315559, + null, + 97401.66966851291, + 98181.70136908787, + null, + 97401.66966851291, + 97942.41927684227, + null, + 96400.6315649038, + 96298.20404774172, + null, + 96400.6315649038, + 96248.82270435392, + null, + 96701.50888855853, + 96972.87752214319, + null, + 96701.50888855853, + 96601.21280775112, + null, + 96701.50888855853, + 96493.32238421563, + null, + 96563.36738665988, + 96528.33303416053, + null, + 96404.13831153684, + 95450.25417539202, + null, + 96404.13831153684, + 95972.78915436483, + null, + 95923.70592479738, + 95834.40863293177, + null, + 95923.70592479738, + 96535.8616409643, + null, + 95540.24503251979, + 95196.70952197771, + null, + 95540.24503251979, + 95434.60009253638, + null, + 95920.065981809, + 95758.46272512361, + null, + 96456.96747554903, + 96321.48275816297, + null, + 96456.96747554903, + 96465.93766629184, + null, + 96456.96747554903, + 96426.6308128287, + null, + 96427.6516351581, + 96344.06072109731, + null, + 95922.0581596575, + 95497.05276392102, + null, + 95802.9629154136, + 95589.36755805337, + null, + 95802.9629154136, + 95523.28532488653, + null, + 95802.9629154136, + 95645.64475087512, + null, + 95802.9629154136, + 96107.19415896157, + null, + 95957.78104570328, + 95497.05276392102, + null, + 95957.78104570328, + 96370.02373932622, + null, + 96331.52105283472, + 96528.33303416053, + null, + 96072.651127653, + 95450.25417539202, + null, + 96072.651127653, + 95972.78915436483, + null, + 96107.71912624051, + 96102.93297875019, + null, + 95682.31879557903, + 95450.25417539202, + null, + 95682.31879557903, + 95158.67040196666, + null, + 96011.6169628847, + 96051.58400350752, + null, + 96011.6169628847, + 95926.45987169421, + null, + 96011.6169628847, + 95981.8380794005, + null, + 96011.6169628847, + 95863.15308642662, + null, + 98932.31091884513, + 98745.28871415959, + null, + 98926.20655583622, + 98745.28871415959, + null, + 98881.20399257346, + 98745.28871415959, + null, + 98873.6590998779, + 98745.28871415959, + null, + 98776.08147395353, + 98745.28871415959, + null, + 98916.08043593282, + 98745.28871415959, + null, + 98775.64297666437, + 98745.28871415959, + null, + 98833.5386160878, + 98745.28871415959, + null, + 98779.4951496633, + 98745.28871415959, + null, + 98769.87019965112, + 98745.28871415959, + null, + 98763.69912444155, + 98745.28871415959, + null, + 98715.38337956829, + 98745.28871415959, + null, + 98838.01226486915, + 98745.28871415959, + null, + 98731.25835265023, + 98745.28871415959, + null, + 98794.9356782363, + 98745.28871415959, + null, + 98875.12446310604, + 98745.28871415959, + null, + 98845.6917714939, + 98745.28871415959, + null, + 98932.31091884513, + 98737.9075507478, + null, + 98926.20655583622, + 98737.9075507478, + null, + 98881.20399257346, + 98737.9075507478, + null, + 98873.6590998779, + 98737.9075507478, + null, + 98776.08147395353, + 98737.9075507478, + null, + 98916.08043593282, + 98737.9075507478, + null, + 98775.64297666437, + 98737.9075507478, + null, + 98833.5386160878, + 98737.9075507478, + null, + 98779.4951496633, + 98737.9075507478, + null, + 98769.87019965112, + 98737.9075507478, + null, + 98763.69912444155, + 98737.9075507478, + null, + 98715.38337956829, + 98737.9075507478, + null, + 98838.01226486915, + 98737.9075507478, + null, + 98731.25835265023, + 98737.9075507478, + null, + 98794.9356782363, + 98737.9075507478, + null, + 98875.12446310604, + 98737.9075507478, + null, + 98845.6917714939, + 98737.9075507478, + null, + 92403.72030892958, + 92347.74753772338, + null, + 92403.72030892958, + 92216.72434555799, + null, + 92403.72030892958, + 92252.47720808198, + null, + 92403.72030892958, + 92256.07675212514, + null, + 92403.72030892958, + 92001.50766754647, + null, + 92403.72030892958, + 92324.31396892523, + null, + 92403.72030892958, + 92415.17834135809, + null, + 92403.72030892958, + 92206.14403308384, + null, + 92403.72030892958, + 92211.31836481478, + null, + 92403.72030892958, + 92294.74860434067, + null, + 92403.72030892958, + 92140.90020542977, + null, + 92403.72030892958, + 92009.28930966396, + null, + 92403.72030892958, + 92188.30662763724, + null, + 92403.72030892958, + 92240.06832701992, + null, + 92403.72030892958, + 92136.26649392476, + null, + 92403.72030892958, + 92061.4858642193, + null, + 92403.72030892958, + 92117.94874151466, + null, + 92403.72030892958, + 92301.20739485609, + null, + 92403.72030892958, + 92270.44173942773, + null, + 92403.72030892958, + 92027.61116900106, + null, + 92403.72030892958, + 92046.7336558993, + null, + 92403.72030892958, + 92200.11384624743, + null, + 92403.72030892958, + 92129.61464772673, + null, + 92403.72030892958, + 92107.99155216134, + null, + 92403.72030892958, + 92264.89531600794, + null, + 92403.72030892958, + 92280.17186758008, + null, + 92403.72030892958, + 92065.18747125892, + null, + 92403.72030892958, + 92369.8251914418, + null, + 92403.72030892958, + 92374.2328896316, + null, + 92403.72030892958, + 92110.36261703623, + null, + 92403.72030892958, + 91950.95461604063, + null, + 92403.72030892958, + 92122.39984355103, + null, + 92403.72030892958, + 92274.69795367589, + null, + 92403.72030892958, + 92167.2011910307, + null, + 92403.72030892958, + 92206.32328236508, + null, + 92403.72030892958, + 92300.72398965452, + null, + 92403.72030892958, + 92070.91719750845, + null, + 92403.72030892958, + 92186.0226881958, + null, + 92403.72030892958, + 92274.32072505055, + null, + 92403.72030892958, + 92248.01639772087, + null, + 92403.72030892958, + 92251.44929818394, + null, + 92403.72030892958, + 91977.1495556531, + null, + 92403.72030892958, + 92291.97074429669, + null, + 92403.72030892958, + 92393.6617867084, + null, + 92403.72030892958, + 92300.0455267758, + null, + 92403.72030892958, + 92200.82708603864, + null, + 92403.72030892958, + 92217.13863978007, + null, + 92403.72030892958, + 92096.45991653283, + null, + 92403.72030892958, + 92152.5004987375, + null, + 92403.72030892958, + 92189.78925848598, + null, + 92403.72030892958, + 92182.36073816268, + null, + 92403.72030892958, + 92079.45570088438, + null, + 92403.72030892958, + 92255.84570257005, + null, + 92403.72030892958, + 92107.85643126183, + null, + 92403.72030892958, + 92402.8943849796, + null, + 92403.72030892958, + 92140.52812030239, + null, + 92403.72030892958, + 92230.18841609285, + null, + 92403.72030892958, + 92240.46970884116, + null, + 92403.72030892958, + 92092.02752181761, + null, + 92403.72030892958, + 92128.61766596325, + null, + 92403.72030892958, + 92191.80914221446, + null, + 92403.72030892958, + 92289.3106433427, + null, + 92403.72030892958, + 92278.89223268858, + null, + 92403.72030892958, + 92314.80079542873, + null, + 92403.72030892958, + 92239.59355543758, + null, + 92403.72030892958, + 92214.87566884019, + null, + 92403.72030892958, + 92350.96560856364, + null, + 92403.72030892958, + 92319.24278973592, + null, + 92403.72030892958, + 92120.59934842995, + null, + 92403.72030892958, + 92402.46333965527, + null, + 92403.72030892958, + 92395.55800703372, + null, + 92403.72030892958, + 92407.26663431138, + null, + 92403.72030892958, + 92170.76494797798, + null, + 92403.72030892958, + 92149.3896272451, + null, + 92403.72030892958, + 92149.07451227563, + null, + 92403.72030892958, + 92362.9412919757, + null, + 92403.72030892958, + 92072.22295952133, + null, + 92403.72030892958, + 92165.8074200398, + null, + 92403.72030892958, + 92264.4950612678, + null, + 92403.72030892958, + 92321.76859128801, + null, + 92403.72030892958, + 92243.35934066583, + null, + 92403.72030892958, + 92240.73151292205, + null, + 92403.72030892958, + 92190.23091480859, + null, + 92403.72030892958, + 92316.73871688145, + null, + 92403.72030892958, + 93059.16988490241, + null, + 92403.72030892958, + 92191.01154073558, + null, + 92403.72030892958, + 92088.59875338602, + null, + 92403.72030892958, + 92122.01120625601, + null, + 92403.72030892958, + 92351.74121802478, + null, + 92403.72030892958, + 93231.70305331911, + null, + 92403.72030892958, + 92212.58705155137, + null, + 92403.72030892958, + 92261.77315785893, + null, + 92403.72030892958, + 92272.0976249191, + null, + 92403.72030892958, + 91970.65586338179, + null, + 92403.72030892958, + 92369.46596237014, + null, + 92403.72030892958, + 92031.39064637528, + null, + 92403.72030892958, + 92348.91301035674, + null, + 92403.72030892958, + 92158.63274311995, + null, + 92403.72030892958, + 92359.01992750082, + null, + 92403.72030892958, + 92294.31157988217, + null, + 92403.72030892958, + 92285.98502461443, + null, + 92403.72030892958, + 92247.55109256034, + null, + 92403.72030892958, + 92072.40823846689, + null, + 92403.72030892958, + 93217.65623676107, + null, + 92403.72030892958, + 92337.92067785797, + null, + 92403.72030892958, + 92298.84256798221, + null, + 92403.72030892958, + 92143.44554872952, + null, + 92403.72030892958, + 92388.34112005818, + null, + 92403.72030892958, + 92104.1575179089, + null, + 92403.72030892958, + 92178.4738757029, + null, + 92403.72030892958, + 92211.68105250059, + null, + 92403.72030892958, + 92417.7595950224, + null, + 92403.72030892958, + 92171.84482602276, + null, + 92403.72030892958, + 92237.57093869668, + null, + 92403.72030892958, + 92088.96846171409, + null, + 92403.72030892958, + 92070.41065231868, + null, + 92403.72030892958, + 92187.36681509153, + null, + 92403.72030892958, + 92370.404557384, + null, + 92403.72030892958, + 92280.5187113803, + null, + 92403.72030892958, + 92077.55009881165, + null, + 92403.72030892958, + 92097.85089890493, + null, + 92403.72030892958, + 92250.68960775186, + null, + 92403.72030892958, + 92229.6510093099, + null, + 92403.72030892958, + 92136.64050642017, + null, + 92403.72030892958, + 92326.23605654163, + null, + 92403.72030892958, + 92131.71539503698, + null, + 92403.72030892958, + 92327.35935856824, + null, + 92403.72030892958, + 92170.31098093353, + null, + 92403.72030892958, + 92316.82956297412, + null, + 92403.72030892958, + 92124.28625739494, + null, + 92403.72030892958, + 92277.44419006346, + null, + 92403.72030892958, + 92112.15601888165, + null, + 92403.72030892958, + 92236.86729316006, + null, + 92403.72030892958, + 92165.08700529874, + null, + 92403.72030892958, + 92146.48937205561, + null, + 92403.72030892958, + 92298.52245461594, + null, + 92403.72030892958, + 92299.43199008808, + null, + 92403.72030892958, + 92132.58089114129, + null, + 92403.72030892958, + 92087.82568701153, + null, + 92403.72030892958, + 92128.44388904206, + null, + 92403.72030892958, + 92224.22667915009, + null, + 92403.72030892958, + 92179.81064205624, + null, + 92403.72030892958, + 92276.97318654209, + null, + 92403.72030892958, + 92194.68123738615, + null, + 92403.72030892958, + 92230.56984005714, + null, + 92403.72030892958, + 92303.61592663793, + null, + 92403.72030892958, + 92259.52032100408, + null, + 92403.72030892958, + 94839.05921223038, + null, + 92403.72030892958, + 92106.50574246883, + null, + 92403.72030892958, + 95209.07740315559, + null, + 92403.72030892958, + 93892.18559051274, + null, + 92403.72030892958, + 92216.84531759286, + null, + 92403.72030892958, + 92223.28407935618, + null, + 92403.72030892958, + 92322.9398265956, + null, + 92403.72030892958, + 92181.57577859817, + null, + 92403.72030892958, + 92125.35754151737, + null, + 92403.72030892958, + 92156.29947048516, + null, + 92403.72030892958, + 92363.13694954333, + null, + 92403.72030892958, + 92241.1538857497, + null, + 92403.72030892958, + 92198.72093061345, + null, + 92403.72030892958, + 92277.94262352257, + null, + 92403.72030892958, + 92348.27216643172, + null, + 92403.72030892958, + 92100.12237040915, + null, + 92403.72030892958, + 92224.97120305183, + null, + 92403.72030892958, + 92162.6663993115, + null, + 92403.72030892958, + 92267.80885625147, + null, + 92403.72030892958, + 91978.95777114196, + null, + 92403.72030892958, + 92161.25150030805, + null, + 92403.72030892958, + 92295.27871363045, + null, + 92403.72030892958, + 92243.55514949372, + null, + 92403.72030892958, + 92333.49401411432, + null, + 92403.72030892958, + 92217.9630178079, + null, + 92403.72030892958, + 92375.68912132124, + null, + 92403.72030892958, + 92265.93497688345, + null, + 92403.72030892958, + 92296.90882344653, + null, + 92403.72030892958, + 92351.52551961424, + null, + 92403.72030892958, + 92338.47796412221, + null, + 92403.72030892958, + 92326.41795009529, + null, + 92403.72030892958, + 92329.20324077769, + null, + 92403.72030892958, + 92222.80917248885, + null, + 92403.72030892958, + 92314.41985868117, + null, + 92403.72030892958, + 92020.2457296412, + null, + 92403.72030892958, + 92043.62147273764, + null, + 92403.72030892958, + 92010.16427467186, + null, + 92403.72030892958, + 92161.89029910951, + null, + 92403.72030892958, + 92322.08469817725, + null, + 92403.72030892958, + 92243.26218856651, + null, + 92403.72030892958, + 92187.51445774999, + null, + 92403.72030892958, + 92167.8995244472, + null, + 92403.72030892958, + 92093.71003634819, + null, + 92403.72030892958, + 92159.09530130218, + null, + 92403.72030892958, + 92143.18325545135, + null, + 92403.72030892958, + 92385.10208996975, + null, + 92403.72030892958, + 92347.33566601481, + null, + 92403.72030892958, + 92196.35201010661, + null, + 92403.72030892958, + 92189.73775652013, + null, + 92403.72030892958, + 92075.75618980045, + null, + 92403.72030892958, + 92212.81898397961, + null, + 92403.72030892958, + 91997.46138215279, + null, + 92403.72030892958, + 92025.17432984301, + null, + 92403.72030892958, + 92003.87296399754, + null, + 92403.72030892958, + 92024.14688175863, + null, + 92403.72030892958, + 91941.05744628322, + null, + 92403.72030892958, + 92012.21830510841, + null, + 92403.72030892958, + 91983.68058223181, + null, + 92403.72030892958, + 92114.55881212364, + null, + 92552.59924319923, + 92359.994086341, + null, + 94130.55860663287, + 95497.05276392102, + null, + 92453.32910364396, + 92252.86309783008, + null, + 92453.32910364396, + 92240.9291961559, + null, + 94694.68806398017, + 95972.78915436483, + null, + 94694.68806398017, + 96055.6245428955, + null, + 93639.94569899137, + 94491.85479096157, + null, + 94259.03278558327, + 95158.67040196666, + null, + 94259.03278558327, + 95450.25417539202, + null, + 91080.58784143622, + 90351.7003485438, + null, + 91080.58784143622, + 90380.46228281433, + null, + 91080.58784143622, + 90364.49650618425, + null, + 91080.58784143622, + 90398.13563399928, + null, + 93850.41662442079, + 94509.72194374804, + null, + 93850.41662442079, + 93601.82710520699, + null, + 93850.41662442079, + 93704.10085908513, + null, + 93850.41662442079, + 93676.77584347574, + null, + 93850.41662442079, + 93661.20734278191, + null, + 93850.41662442079, + 93572.23203515264, + null, + 93850.41662442079, + 93625.70846719111, + null, + 92357.81244688503, + 92241.75189417685, + null, + 92357.81244688503, + 92167.78389298257, + null, + 92357.81244688503, + 92059.19945228689, + null, + 92357.81244688503, + 92172.4868795517, + null, + 92357.81244688503, + 92131.47925758659, + null, + 92357.81244688503, + 92080.57228640377, + null, + 92357.81244688503, + 92106.30235506344, + null, + 92357.81244688503, + 92074.75278618281, + null, + 92357.81244688503, + 93012.08801458759, + null, + 92015.08959235293, + 91759.60493933014, + null, + 92015.08959235293, + 91728.37308978925, + null, + 92015.08959235293, + 91695.65516466298, + null, + 92015.08959235293, + 91789.34078452658, + null, + 92015.08959235293, + 91675.77505537764, + null, + 94015.54400806065, + 94374.02538445908, + null, + 94015.54400806065, + 94581.3224656246, + null, + 94015.54400806065, + 95004.62236427962, + null, + 94015.54400806065, + 94284.29614613004, + null, + 94015.54400806065, + 94585.54283407258, + null, + 94015.54400806065, + 93859.39002647411, + null, + 94015.54400806065, + 94016.84050671507, + null, + 93415.0685794173, + 93290.35075837071, + null, + 93415.0685794173, + 93239.54198428936, + null, + 93415.0685794173, + 93194.79788029785, + null, + 93415.0685794173, + 93167.29040070769, + null, + 93415.0685794173, + 94178.18816955703, + null, + 93415.0685794173, + 93974.14793620263, + null, + 88980.87619367571, + 88433.87275134888, + null, + 88980.87619367571, + 88488.9677441534, + null, + 88980.87619367571, + 88681.03188674754, + null, + 88980.87619367571, + 88416.20611550778, + null, + 88980.87619367571, + 90542.60014879846, + null, + 88980.87619367571, + 90633.14423891409, + null, + 88980.87619367571, + 88780.30091689393, + null, + 88980.87619367571, + 88617.30277926706, + null, + 88980.87619367571, + 91035.5356559428, + null, + 88980.87619367571, + 88448.45707614523, + null, + 88980.87619367571, + 88512.19912209532, + null, + 88980.87619367571, + 88538.9357978122, + null, + 88980.87619367571, + 88341.69152456298, + null, + 88980.87619367571, + 88232.54276009464, + null, + 88980.87619367571, + 88526.83874423045, + null, + 88980.87619367571, + 90308.66677680974, + null, + 88980.87619367571, + 88752.36011236151, + null, + 88980.87619367571, + 88666.7899021117, + null, + 88980.87619367571, + 88403.96346659532, + null, + 88980.87619367571, + 88409.88494323137, + null, + 88980.87619367571, + 88454.76601265534, + null, + 88980.87619367571, + 88505.90920258727, + null, + 88980.87619367571, + 90506.38154973468, + null, + 88980.87619367571, + 88392.5213902953, + null, + 88980.87619367571, + 88735.10471964773, + null, + 88980.87619367571, + 88700.42226535387, + null, + 88980.87619367571, + 88681.6166974444, + null, + 88980.87619367571, + 88832.50791438138, + null, + 88980.87619367571, + 88374.23866379407, + null, + 88980.87619367571, + 88371.18539682371, + null, + 88980.87619367571, + 90426.63438770593, + null, + 88980.87619367571, + 88802.81744936632, + null, + 88980.87619367571, + 88762.5516918854, + null, + 88980.87619367571, + 88642.14476996369, + null, + 88980.87619367571, + 88687.33186073622, + null, + 88980.87619367571, + 88594.12361541514, + null, + 88980.87619367571, + 88718.94151298529, + null, + 88980.87619367571, + 88689.16209595407, + null, + 88980.87619367571, + 88481.38487480863, + null, + 88980.87619367571, + 90301.01400148685, + null, + 88980.87619367571, + 90255.91067155173, + null, + 88980.87619367571, + 89890.53693961547, + null, + 88980.87619367571, + 88646.405400081, + null, + 88980.87619367571, + 88460.59624312277, + null, + 88980.87619367571, + 88662.00249888693, + null, + 88980.87619367571, + 88593.18598690111, + null, + 88980.87619367571, + 88700.42324644516, + null, + 88980.87619367571, + 88348.35258534538, + null, + 88980.87619367571, + 88456.28864332136, + null, + 88980.87619367571, + 88677.44885952266, + null, + 88980.87619367571, + 88297.34186598746, + null, + 88980.87619367571, + 88438.77445915592, + null, + 88980.87619367571, + 88308.76253998597, + null, + 88980.87619367571, + 88499.31790626561, + null, + 88980.87619367571, + 88332.66197764105, + null, + 88980.87619367571, + 88521.66032586683, + null, + 88980.87619367571, + 88371.9394417322, + null, + 88980.87619367571, + 88577.511326891, + null, + 88980.87619367571, + 88386.19130325745, + null, + 88980.87619367571, + 88432.37386953307, + null, + 88980.87619367571, + 88378.7527447044, + null, + 88980.87619367571, + 88382.83955964923, + null, + 88980.87619367571, + 88546.40237874411, + null, + 88980.87619367571, + 88021.3313163512, + null, + 88980.87619367571, + 88493.2869392708, + null, + 88980.87619367571, + 88405.61962417421, + null, + 88980.87619367571, + 88454.34943629967, + null, + 88980.87619367571, + 88566.55855702402, + null, + 88980.87619367571, + 89972.49873713554, + null, + 88980.87619367571, + 88550.03063889778, + null, + 88980.87619367571, + 88419.76541763252, + null, + 88980.87619367571, + 88378.89271930164, + null, + 88980.87619367571, + 88237.63395624454, + null, + 88980.87619367571, + 88472.27472068885, + null, + 88980.87619367571, + 88737.91876166544, + null, + 88980.87619367571, + 88302.25676877188, + null, + 88980.87619367571, + 88514.96038148971, + null, + 88980.87619367571, + 88472.68228221488, + null, + 88980.87619367571, + 88493.61718394952, + null, + 88980.87619367571, + 88309.7146296434, + null, + 88980.87619367571, + 90148.49574146973, + null, + 88980.87619367571, + 88287.05815100021, + null, + 88980.87619367571, + 88319.4266756192, + null, + 88980.87619367571, + 88282.5637571512, + null, + 88980.87619367571, + 87989.01476337237, + null, + 88980.87619367571, + 88484.61843123702, + null, + 88980.87619367571, + 88385.38652624989, + null, + 88980.87619367571, + 89987.53509523951, + null, + 88980.87619367571, + 88505.4208955274, + null, + 88980.87619367571, + 88485.92827793986, + null, + 88980.87619367571, + 88584.32409483784, + null, + 88980.87619367571, + 88536.5206651761, + null, + 88980.87619367571, + 88256.36741000491, + null, + 88980.87619367571, + 88339.50119407185, + null, + 88980.87619367571, + 88456.82832726875, + null, + 88980.87619367571, + 88530.42214878742, + null, + 88980.87619367571, + 88406.3825486083, + null, + 88980.87619367571, + 88387.08445144663, + null, + 88980.87619367571, + 88396.28713695996, + null, + 88980.87619367571, + 89893.44601705468, + null, + 88980.87619367571, + 88517.61498493739, + null, + 88980.87619367571, + 87977.76471736658, + null, + 88980.87619367571, + 88722.83102403955, + null, + 88980.87619367571, + 88558.76222645218, + null, + 88980.87619367571, + 88306.03062874613, + null, + 88980.87619367571, + 88420.84523966677, + null, + 88980.87619367571, + 88344.8994181755, + null, + 88980.87619367571, + 88449.00053664087, + null, + 88980.87619367571, + 88336.30616370424, + null, + 88980.87619367571, + 88363.98890529925, + null, + 88980.87619367571, + 88362.60096382422, + null, + 88980.87619367571, + 88443.99015417385, + null, + 88980.87619367571, + 88757.2798999845, + null, + 88980.87619367571, + 88351.58373475226, + null, + 88980.87619367571, + 88368.07534914711, + null, + 88980.87619367571, + 88419.7763521424, + null, + 88980.87619367571, + 88717.98407653676, + null, + 88980.87619367571, + 88510.42562080965, + null, + 88980.87619367571, + 88333.83107669742, + null, + 88980.87619367571, + 88626.58763266775, + null, + 88980.87619367571, + 88575.9765857017, + null, + 88980.87619367571, + 88462.28754139256, + null, + 88980.87619367571, + 88836.0395482592, + null, + 88980.87619367571, + 88772.68794489409, + null, + 92548.69810217191, + 92326.05008512983, + null, + 94753.5297564697, + 96299.26984037684, + null, + 95958.17194866823, + 94753.5297564697, + null, + 94753.5297564697, + 94654.22636982724, + null, + 91676.43793576607, + 91536.18144472227, + null, + 91676.43793576607, + 91425.09657158966, + null, + 91676.43793576607, + 91464.44246274077, + null, + 91676.43793576607, + 90839.86000529061, + null, + 93155.38758721903, + 93586.60219175594, + null, + 93155.38758721903, + 93589.13427337709, + null, + 93155.38758721903, + 93025.56253717483, + null, + 93155.38758721903, + 93034.93635287281, + null, + 93155.38758721903, + 93553.88735328836, + null, + 93155.38758721903, + 93542.87285605638, + null, + 89305.71197876369, + 88968.22841893525, + null, + 89305.71197876369, + 89006.03684621748, + null, + 89305.71197876369, + 88902.85749665603, + null, + 89305.71197876369, + 88677.44885952266, + null, + 89305.71197876369, + 88780.30091689393, + null, + 89305.71197876369, + 88681.6166974444, + null, + 89305.71197876369, + 88681.03188674754, + null, + 89305.71197876369, + 88694.73273373555, + null, + 89305.71197876369, + 88700.42324644516, + null, + 89305.71197876369, + 88617.30277926706, + null, + 89305.71197876369, + 88752.36011236151, + null, + 89305.71197876369, + 88666.7899021117, + null, + 89305.71197876369, + 88770.11669048374, + null, + 89305.71197876369, + 88593.18598690111, + null, + 89305.71197876369, + 88998.95831050201, + null, + 89305.71197876369, + 90426.63438770593, + null, + 89305.71197876369, + 90148.49574146973, + null, + 89305.71197876369, + 88813.18253923993, + null, + 89305.71197876369, + 88807.29535139979, + null, + 89305.71197876369, + 88735.10471964773, + null, + 89305.71197876369, + 88862.87020210146, + null, + 89305.71197876369, + 88940.35813020635, + null, + 89305.71197876369, + 88642.14476996369, + null, + 89305.71197876369, + 88719.986854473, + null, + 89305.71197876369, + 89890.53693961547, + null, + 89305.71197876369, + 88711.95391512648, + null, + 89305.71197876369, + 88913.67134750067, + null, + 89305.71197876369, + 88762.5516918854, + null, + 89305.71197876369, + 88905.29290337257, + null, + 89305.71197876369, + 90506.38154973468, + null, + 89305.71197876369, + 88873.49606990181, + null, + 89305.71197876369, + 90308.66677680974, + null, + 89305.71197876369, + 90542.60014879846, + null, + 89305.71197876369, + 88700.42226535387, + null, + 89305.71197876369, + 88374.23866379407, + null, + 89305.71197876369, + 88832.50791438138, + null, + 89305.71197876369, + 88687.33186073622, + null, + 89305.71197876369, + 88802.81744936632, + null, + 89305.71197876369, + 90255.91067155173, + null, + 89305.71197876369, + 88916.1146409448, + null, + 89305.71197876369, + 88737.91876166544, + null, + 89305.71197876369, + 88722.83102403955, + null, + 89305.71197876369, + 88887.42693829109, + null, + 89305.71197876369, + 88662.00249888693, + null, + 89305.71197876369, + 88646.405400081, + null, + 89305.71197876369, + 88689.16209595407, + null, + 89305.71197876369, + 88718.94151298529, + null, + 89305.71197876369, + 88900.39227011942, + null, + 89305.71197876369, + 88819.47647571407, + null, + 89305.71197876369, + 89893.44601705468, + null, + 89305.71197876369, + 88841.7144230516, + null, + 89305.71197876369, + 88757.2798999845, + null, + 89305.71197876369, + 88772.68794489409, + null, + 89305.71197876369, + 88731.15785205181, + null, + 89305.71197876369, + 88785.30435031383, + null, + 89305.71197876369, + 88873.64041918014, + null, + 89305.71197876369, + 88717.98407653676, + null, + 89305.71197876369, + 88933.35245799503, + null, + 89305.71197876369, + 88955.37715307146, + null, + 89305.71197876369, + 88836.0395482592, + null, + 89305.71197876369, + 88808.07844121536, + null, + 89305.71197876369, + 88809.71225972423, + null, + 89305.71197876369, + 88863.25925664409, + null, + 94890.65745591454, + 94860.41464315419, + null, + 94890.65745591454, + 94809.74353848188, + null, + 94890.65745591454, + 94777.2045280774, + null, + 94890.65745591454, + 96939.7130296957, + null, + 94890.65745591454, + 94790.8883359463, + null, + 93226.39690794115, + 93872.05455515652, + null, + 93143.11311426201, + 92974.08923397369, + null, + 93143.11311426201, + 92975.62503977149, + null, + 93143.11311426201, + 93543.4657580988, + null, + 93143.11311426201, + 93550.85862261364, + null, + 94983.58739011025, + 95158.97987464583, + null, + 94983.58739011025, + 96139.27193844452, + null, + 94983.58739011025, + 95170.22302051753, + null, + 93345.5384733388, + 93012.70424918424, + null, + 93345.5384733388, + 93101.41065007175, + null, + 93475.56240329082, + 94269.50089276706, + null, + 93475.56240329082, + 93188.73658225981, + null, + 93475.56240329082, + 93292.01518114925, + null, + 93475.56240329082, + 93186.47665709791, + null, + 93475.56240329082, + 93249.55171832144, + null, + 93475.56240329082, + 93230.54525820872, + null, + 93475.56240329082, + 93293.69529485346, + null, + 93855.61888073095, + 93607.57338921969, + null, + 93855.61888073095, + 93661.48037279883, + null, + 93855.61888073095, + 94284.29614613004, + null, + 93855.61888073095, + 93725.33213726954, + null, + 95749.39705457314, + 96597.50409519735, + null, + 95749.39705457314, + 96851.49702075154, + null, + 95749.39705457314, + 96610.6899973968, + null, + 95749.39705457314, + 96605.92981897558, + null, + 94465.17063363985, + 95126.694711038, + null, + 92913.17761014139, + 92466.47847824058, + null, + 92913.17761014139, + 92535.67420110614, + null, + 92913.17761014139, + 92479.67380046048, + null, + 92913.17761014139, + 92541.5954277938, + null, + 91312.64033973779, + 90840.63104534974, + null, + 91312.64033973779, + 89890.53693961547, + null, + 91312.64033973779, + 90788.74294845924, + null, + 91312.64033973779, + 90426.63438770593, + null, + 91312.64033973779, + 90875.6428904946, + null, + 91312.64033973779, + 90812.108525863, + null, + 92365.60828492136, + 92149.08818936435, + null, + 92365.60828492136, + 91035.5356559428, + null, + 92365.60828492136, + 92087.71439256778, + null, + 92365.60828492136, + 92108.66912483661, + null, + 93034.01413382801, + 92681.49462860484, + null, + 93034.01413382801, + 92747.5621721967, + null, + 93034.01413382801, + 92691.1433270897, + null, + 93034.01413382801, + 92791.81273491016, + null, + 93034.01413382801, + 92719.98650968332, + null, + 94787.68098338218, + 94573.11174744362, + null, + 94787.68098338218, + 93872.05455515652, + null, + 94304.28587484072, + 94008.58638880895, + null, + 95375.71980775791, + 95371.14507899206, + null, + 95375.71980775791, + 95269.93601523693, + null, + 95375.71980775791, + 95369.79664452869, + null, + 95375.71980775791, + 95330.20659727942, + null, + 95375.71980775791, + 95325.98290048962, + null, + 95375.71980775791, + 95235.74548951366, + null, + 96010.91751038717, + 96013.28219965815, + null, + 96010.91751038717, + 95978.47329230273, + null, + 94846.74238052499, + 94947.27988796636, + null, + 94846.74238052499, + 94782.50222163898, + null, + 94846.74238052499, + 95039.5427914881, + null, + 95360.36419013362, + 95219.10848713045, + null, + 95360.36419013362, + 95358.80808645669, + null, + 95958.17194866823, + 95443.67008227661, + null, + 95443.67008227661, + 95508.54286055514, + null, + 95781.4838692387, + 96315.39006631782, + null, + 95781.4838692387, + 96299.4257154321, + null, + 95781.4838692387, + 96299.26984037684, + null, + 95621.74045129302, + 96324.02566311863, + null, + 95621.74045129302, + 96341.18862444937, + null, + 95621.74045129302, + 95444.91699836003, + null, + 95621.74045129302, + 95430.31650863758, + null, + 95069.66525755977, + 95103.11342187891, + null, + 95069.66525755977, + 95368.49227674282, + null, + 95628.14642198732, + 96152.1057643561, + null, + 95628.14642198732, + 95963.35252743993, + null, + 95628.14642198732, + 95950.12484352986, + null, + 94459.15082891459, + 94323.88976489022, + null, + 94459.15082891459, + 94155.83031897117, + null, + 98932.31091884513, + 98085.07588417802, + null, + 98926.20655583622, + 98085.07588417802, + null, + 98881.20399257346, + 98085.07588417802, + null, + 98873.6590998779, + 98085.07588417802, + null, + 98776.08147395353, + 98085.07588417802, + null, + 98916.08043593282, + 98085.07588417802, + null, + 98775.64297666437, + 98085.07588417802, + null, + 98833.5386160878, + 98085.07588417802, + null, + 98779.4951496633, + 98085.07588417802, + null, + 98769.87019965112, + 98085.07588417802, + null, + 98763.69912444155, + 98085.07588417802, + null, + 98715.38337956829, + 98085.07588417802, + null, + 98838.01226486915, + 98085.07588417802, + null, + 98731.25835265023, + 98085.07588417802, + null, + 98794.9356782363, + 98085.07588417802, + null, + 98875.12446310604, + 98085.07588417802, + null, + 98845.6917714939, + 98085.07588417802, + null, + 95163.75908553116, + 94968.90121085287, + null, + 95163.75908553116, + 94947.27988796636, + null, + 95163.75908553116, + 95036.54824379871, + null, + 95163.75908553116, + 94782.50222163898, + null, + 95163.75908553116, + 95039.5427914881, + null, + 95163.75908553116, + 94992.26340793457, + null, + 96006.77287976355, + 97076.61983324688, + null, + 96006.77287976355, + 96500.32458861038, + null, + 96006.77287976355, + 96380.28781055969, + null, + 96006.77287976355, + 96315.39006631782, + null, + 96006.77287976355, + 96299.26984037684, + null, + 96006.77287976355, + 96092.05767088226, + null, + 95274.60828290615, + 95100.65954684408, + null, + 94843.32769305678, + 94781.2730137387, + null, + 94843.32769305678, + 94831.67940813194, + null, + 94843.32769305678, + 95004.62236427962, + null, + 94843.32769305678, + 94764.71974508195, + null, + 95274.55463163379, + 95259.89220700655, + null, + 95274.55463163379, + 95156.78944128797, + null, + 95274.55463163379, + 95163.15549537959, + null, + 94205.42306946588, + 93586.60219175594, + null, + 94205.42306946588, + 93589.13427337709, + null, + 94205.42306946588, + 94170.72543593975, + null, + 94205.42306946588, + 93553.88735328836, + null, + 94205.42306946588, + 93542.87285605638, + null, + 94554.58874211222, + 94320.5506287159, + null, + 96091.204926268, + 96315.39006631782, + null, + 96091.204926268, + 96375.81406263121, + null, + 96091.204926268, + 96299.4257154321, + null, + 96091.204926268, + 96299.26984037684, + null, + 95958.17194866823, + 96091.204926268, + null, + 96091.204926268, + 95990.14658034967, + null, + 96091.204926268, + 96033.27978527645, + null, + 96091.204926268, + 96375.08693072088, + null, + 96091.204926268, + 95820.50112482975, + null, + 96091.204926268, + 97076.61983324688, + null, + 96091.204926268, + 96395.33356184303, + null, + 96091.204926268, + 96133.76841832312, + null, + 96091.204926268, + 96101.04541256488, + null, + 96091.204926268, + 96184.81566043793, + null, + 96091.204926268, + 96483.80491367223, + null, + 95643.38624755875, + 96417.56965551627, + null, + 95643.38624755875, + 96292.33937952145, + null, + 95643.38624755875, + 96139.27193844452, + null, + 95643.38624755875, + 95158.97987464583, + null, + 95643.38624755875, + 95321.40374411321, + null, + 95643.38624755875, + 95359.2518454773, + null, + 95643.38624755875, + 95235.15461115303, + null, + 95643.38624755875, + 95490.83892107032, + null, + 95643.38624755875, + 95403.87461645668, + null, + 95643.38624755875, + 95170.22302051753, + null, + 95643.38624755875, + 95434.7813506805, + null, + 95643.38624755875, + 96371.23865707997, + null, + 95405.5970323345, + 95702.34904687658, + null, + 95405.5970323345, + 95689.63925251232, + null, + 95405.5970323345, + 95363.8470448223, + null, + 95405.5970323345, + 95438.12140415871, + null, + 95405.5970323345, + 95345.12725289499, + null, + 95405.5970323345, + 95719.3642560631, + null, + 95405.5970323345, + 95438.74775398536, + null, + 95405.5970323345, + 95393.95134463186, + null, + 94090.45690331612, + 93915.67461247394, + null, + 94090.45690331612, + 93732.40501876744, + null, + 94090.45690331612, + 93831.28229164788, + null, + 94090.45690331612, + 93834.4304251869, + null, + 94090.45690331612, + 93865.36020794926, + null, + 94090.45690331612, + 93949.04960582733, + null, + 94090.45690331612, + 93901.58796403631, + null, + 94090.45690331612, + 93754.51928787447, + null, + 92687.32405817328, + 92474.5549875663, + null, + 92687.32405817328, + 92541.10114222545, + null, + 92687.32405817328, + 90633.14423891409, + null, + 92687.32405817328, + 92446.28882658892, + null, + 92687.32405817328, + 92510.9837965274, + null, + 94400.56846677243, + 94168.00712644817, + null, + 94400.56846677243, + 94172.93686658355, + null, + 94400.56846677243, + 94268.51034477568, + null, + 94400.56846677243, + 94227.88799197409, + null, + 94532.99011271482, + 94355.93471701951, + null, + 94259.06712940332, + 94060.02601500099, + null, + 94259.06712940332, + 94116.26661644941, + null, + 94259.06712940332, + 93924.85503905709, + null, + 94259.06712940332, + 93949.14419789072, + null, + 94259.06712940332, + 93974.50929033541, + null, + 94259.06712940332, + 94022.64738997868, + null, + 94259.06712940332, + 94312.32437986055, + null, + 94259.06712940332, + 94051.66774220605, + null, + 94259.06712940332, + 94303.31563802196, + null, + 94259.06712940332, + 94003.54982743006, + null, + 94259.06712940332, + 94114.32655875513, + null, + 94259.06712940332, + 94224.29742863894, + null, + 94259.06712940332, + 94131.8182179843, + null, + 94259.06712940332, + 93936.37370318927, + null, + 94259.06712940332, + 93915.56085404499, + null, + 94259.06712940332, + 94104.85477585437, + null, + 94259.06712940332, + 94222.09750375483, + null, + 94259.06712940332, + 94080.12193720396, + null, + 94259.06712940332, + 94175.05303484979, + null, + 94259.06712940332, + 94204.20735933605, + null, + 94259.06712940332, + 94013.74433073374, + null, + 94259.06712940332, + 94149.10075483979, + null, + 94259.06712940332, + 94062.23950461214, + null, + 94259.06712940332, + 95192.18878450526, + null, + 94259.06712940332, + 93981.06452822298, + null, + 95687.5583436565, + 96315.39006631782, + null, + 95687.5583436565, + 96299.26984037684, + null, + 95687.5583436565, + 95563.33831763349, + null, + 95687.5583436565, + 95618.71418981701, + null, + 94745.48610069028, + 94626.96443060684, + null, + 94836.83100987966, + 94961.9962390448, + null, + 94836.83100987966, + 95076.82444005845, + null, + 94836.83100987966, + 95302.82737421893, + null, + 94836.83100987966, + 94608.169715756, + null, + 94836.83100987966, + 94206.32696510479, + null, + 94836.83100987966, + 94702.36469871723, + null, + 94836.83100987966, + 94705.08946322266, + null, + 94836.83100987966, + 94658.895114909, + null, + 94836.83100987966, + 94569.80280676277, + null, + 94836.83100987966, + 94562.66790889218, + null, + 94836.83100987966, + 95304.43340131296, + null, + 94836.83100987966, + 94531.31783311481, + null, + 94836.83100987966, + 95269.88551286564, + null, + 94836.83100987966, + 94541.46811159214, + null, + 94836.83100987966, + 95149.74263120122, + null, + 94836.83100987966, + 94634.25352044987, + null, + 94836.83100987966, + 94697.40319410026, + null, + 94836.83100987966, + 95091.92395340849, + null, + 94836.83100987966, + 95319.99368080994, + null, + 94836.83100987966, + 95301.58079947837, + null, + 94836.83100987966, + 94630.39551651504, + null, + 94836.83100987966, + 94671.14260908996, + null, + 94836.83100987966, + 95089.3896773708, + null, + 94836.83100987966, + 95119.73813153236, + null, + 94836.83100987966, + 94738.65685272905, + null, + 94836.83100987966, + 95068.25673894, + null, + 94836.83100987966, + 94781.31937846432, + null, + 94836.83100987966, + 95154.3406437858, + null, + 94836.83100987966, + 94802.3325423315, + null, + 94836.83100987966, + 95105.70316558772, + null, + 94836.83100987966, + 94684.28311529913, + null, + 94836.83100987966, + 94632.70398735556, + null, + 94836.83100987966, + 94708.44547790081, + null, + 94836.83100987966, + 94740.06561864995, + null, + 94836.83100987966, + 94763.51786066609, + null, + 94836.83100987966, + 95220.63167603598, + null, + 94836.83100987966, + 95125.54875547701, + null, + 94836.83100987966, + 95496.13470559087, + null, + 94836.83100987966, + 94594.42687159672, + null, + 94836.83100987966, + 94583.94583527962, + null, + 94836.83100987966, + 94651.10560516508, + null, + 95171.36460552194, + 95368.49227674282, + null, + 95171.36460552194, + 95257.08556364443, + null, + 95171.36460552194, + 95004.62236427962, + null, + 95171.36460552194, + 95618.32230128575, + null, + 94428.00833897035, + 94170.72543593975, + null, + 94428.00833897035, + 94233.59693590023, + null, + 91875.6118444357, + 90148.49574146973, + null, + 91875.6118444357, + 90308.66677680974, + null, + 91875.6118444357, + 91689.9156042627, + null, + 91875.6118444357, + 91738.548395977, + null, + 91875.6118444357, + 90301.01400148685, + null, + 91875.6118444357, + 91731.93216887595, + null, + 94579.1668497888, + 94346.78033378352, + null, + 94636.4031377064, + 94509.829510502, + null, + 94636.4031377064, + 94528.48663855526, + null, + 95594.04154313843, + 95506.25933017024, + null, + 95594.04154313843, + 95430.9598185061, + null, + 95594.04154313843, + 95449.77751377337, + null, + 95594.04154313843, + 95494.87912905395, + null, + 95594.04154313843, + 95513.21245708983, + null, + 95594.04154313843, + 95579.25511783695, + null, + 94853.46116542409, + 94746.96208609876, + null, + 94853.46116542409, + 95141.50071030506, + null, + 94853.46116542409, + 95088.00070197124, + null, + 94853.46116542409, + 94796.34837723445, + null, + 95262.41295878915, + 95376.11147143133, + null, + 95262.41295878915, + 95554.52104992175, + null, + 95262.41295878915, + 95207.54728400431, + null, + 95262.41295878915, + 95352.39749037023, + null, + 94996.61867838957, + 95025.28048977467, + null, + 94996.61867838957, + 94994.04487668724, + null, + 94996.61867838957, + 95318.33825288666, + null, + 95427.51893881544, + 95103.11342187891, + null, + 95427.51893881544, + 96214.29567174465, + null, + 95141.30835602302, + 95004.62236427962, + null, + 95141.30835602302, + 94992.0641380479, + null, + 95141.30835602302, + 95340.12961580537, + null, + 95141.30835602302, + 95481.39560671317, + null, + 95135.73958053072, + 95157.97425899161, + null, + 95135.73958053072, + 95352.39749037023, + null, + 95135.73958053072, + 95210.51266443045, + null, + 95135.73958053072, + 95112.69654287952, + null, + 95135.73958053072, + 95348.00113621198, + null, + 95308.98963794683, + 95311.6100058997, + null, + 95308.98963794683, + 95220.35730467142, + null, + 94550.01100453151, + 94453.87661400346, + null, + 94616.6585852082, + 94459.76663652401, + null, + 94698.2564749882, + 94569.99639898865, + null, + 94698.2564749882, + 94696.38127915138, + null, + 98932.31091884513, + 98122.6370414771, + null, + 98122.6370414771, + 98503.89968845964, + null, + 98916.08043593282, + 98122.6370414771, + null, + 98838.01226486915, + 98122.6370414771, + null, + 98881.20399257346, + 98122.6370414771, + null, + 98845.6917714939, + 98122.6370414771, + null, + 98122.6370414771, + 98983.70522113536, + null, + 98122.6370414771, + 98975.4583568785, + null, + 98122.6370414771, + 99185.65099595927, + null, + 98122.6370414771, + 99287.0655957827, + null, + 98122.6370414771, + 99938.9075507464, + null, + 94609.75573408123, + 94437.58770435351, + null, + 94609.75573408123, + 94782.50222163898, + null, + 95744.51531875192, + 96186.25940182169, + null, + 95744.51531875192, + 95508.54286055514, + null, + 95962.08383797004, + 95744.51531875192, + null, + 95744.51531875192, + 96315.39006631782, + null, + 95744.51531875192, + 96299.26984037684, + null, + 95958.17194866823, + 95744.51531875192, + null, + 95569.49080974681, + 96315.39006631782, + null, + 95569.49080974681, + 95520.96662625948, + null, + 95569.49080974681, + 95395.53490697088, + null, + 95569.49080974681, + 95820.50112482975, + null, + 94553.34862649688, + 94387.90834024789, + null, + 94553.34862649688, + 94410.44611369238, + null, + 94068.90013805934, + 93880.06664422291, + null, + 94068.90013805934, + 93794.95552713104, + null, + 94068.90013805934, + 93814.6764577686, + null, + 94068.90013805934, + 93852.0802165827, + null, + 94068.90013805934, + 93786.27794848467, + null, + 94068.90013805934, + 93980.98038158142, + null, + 94068.90013805934, + 93927.0380831745, + null, + 94068.90013805934, + 93831.83215691491, + null, + 94068.90013805934, + 93816.85717412099, + null, + 94068.90013805934, + 93831.55273890407, + null, + 94068.90013805934, + 93936.66881951372, + null, + 94911.10914154527, + 95004.62236427962, + null, + 94911.10914154527, + 94585.54283407258, + null, + 94911.10914154527, + 95271.0473357906, + null, + 93841.09081628201, + 93733.53483031287, + null, + 93841.09081628201, + 93809.10347709683, + null, + 93841.09081628201, + 93678.44099698958, + null, + 93841.09081628201, + 93545.624365582, + null, + 93841.09081628201, + 93583.48935321181, + null, + 93841.09081628201, + 93682.62756255489, + null, + 93841.09081628201, + 93720.49376390997, + null, + 93841.09081628201, + 93726.85416195451, + null, + 93841.09081628201, + 93591.16938927768, + null, + 93841.09081628201, + 93615.88912627882, + null, + 93841.09081628201, + 93645.7254103945, + null, + 93841.09081628201, + 93599.67154470751, + null, + 93841.09081628201, + 93654.30749236245, + null, + 93841.09081628201, + 93605.45062289166, + null, + 93841.09081628201, + 93708.17232055379, + null, + 93841.09081628201, + 93763.43794093031, + null, + 93841.09081628201, + 93657.34150918727, + null, + 93841.09081628201, + 93697.51676275049, + null, + 95055.96301467503, + 95004.62236427962, + null, + 95055.96301467503, + 95064.46859551649, + null, + 95055.96301467503, + 95368.49227674282, + null, + 94973.76103672285, + 95028.79614965661, + null, + 94973.76103672285, + 94844.43317012727, + null, + 94973.76103672285, + 94937.32394773186, + null, + 94973.76103672285, + 94924.00711887507, + null, + 94973.76103672285, + 95318.33825288666, + null, + 93860.33853556491, + 93012.08801458759, + null, + 93860.33853556491, + 93657.58783554945, + null, + 94666.08189515283, + 94992.0641380479, + null, + 94666.08189515283, + 94284.29614613004, + null, + 95192.48874345585, + 95004.62236427962, + null, + 95192.48874345585, + 95368.49227674282, + null, + 95192.48874345585, + 95340.12961580537, + null, + 95192.48874345585, + 95006.34673042681, + null, + 95192.48874345585, + 95376.11147143133, + null, + 95192.48874345585, + 95224.50298112346, + null, + 95192.48874345585, + 95352.39749037023, + null, + 95192.48874345585, + 95223.99348673313, + null, + 95192.48874345585, + 95299.88393052109, + null, + 95192.48874345585, + 95670.62443730164, + null, + 95192.48874345585, + 95064.46859551649, + null, + 95192.48874345585, + 95124.22218566947, + null, + 94682.03972500942, + 94552.30907971856, + null, + 94318.87336662205, + 94023.50845498776, + null, + 94318.87336662205, + 94125.37702876132, + null, + 94318.87336662205, + 94255.77571819822, + null, + 94318.87336662205, + 94147.09026993293, + null, + 94318.87336662205, + 94169.13660636239, + null, + 94318.87336662205, + 94222.65689644325, + null, + 98932.31091884513, + 98071.86657727559, + null, + 98926.20655583622, + 98071.86657727559, + null, + 98881.20399257346, + 98071.86657727559, + null, + 98873.6590998779, + 98071.86657727559, + null, + 98776.08147395353, + 98071.86657727559, + null, + 98916.08043593282, + 98071.86657727559, + null, + 98775.64297666437, + 98071.86657727559, + null, + 98833.5386160878, + 98071.86657727559, + null, + 98779.4951496633, + 98071.86657727559, + null, + 98769.87019965112, + 98071.86657727559, + null, + 98763.69912444155, + 98071.86657727559, + null, + 98715.38337956829, + 98071.86657727559, + null, + 98838.01226486915, + 98071.86657727559, + null, + 98731.25835265023, + 98071.86657727559, + null, + 98794.9356782363, + 98071.86657727559, + null, + 98875.12446310604, + 98071.86657727559, + null, + 98845.6917714939, + 98071.86657727559, + null, + 95074.67859421566, + 94957.93426395227, + null, + 95074.67859421566, + 95372.37969661041, + null, + 95052.34933786246, + 95372.37969661041, + null, + 94662.70335696908, + 94782.50222163898, + null, + 94662.70335696908, + 94472.20709603677, + null, + 94530.9667988148, + 94381.42463040476, + null, + 94394.743184273, + 94416.07502472983, + null, + 94394.743184273, + 94281.54409115564, + null, + 94394.743184273, + 94178.83279139998, + null, + 94394.743184273, + 94123.58147436914, + null, + 94394.743184273, + 94169.09157518268, + null, + 93236.21560331441, + 93015.76333927791, + null, + 93236.21560331441, + 92980.63941319492, + null, + 93236.21560331441, + 93190.70549325118, + null, + 93236.21560331441, + 93064.87393138207, + null, + 93236.21560331441, + 91850.72333799597, + null, + 93236.21560331441, + 93000.29090602277, + null, + 93236.21560331441, + 92946.26333688904, + null, + 93236.21560331441, + 93038.8296421908, + null, + 93236.21560331441, + 92995.61564696342, + null, + 93236.21560331441, + 93144.43447376601, + null, + 93236.21560331441, + 93078.77497255687, + null, + 93236.21560331441, + 93051.16869735178, + null, + 95228.59152965351, + 95258.80445753322, + null, + 95228.59152965351, + 94992.0641380479, + null, + 95599.18088294458, + 95466.86915914767, + null, + 95599.18088294458, + 95404.96015034568, + null, + 95599.18088294458, + 95494.47921018649, + null, + 95599.18088294458, + 95449.45774232612, + null, + 95599.18088294458, + 95522.29842584215, + null, + 95599.18088294458, + 95456.8754665219, + null, + 92172.3185204082, + 91949.46390404372, + null, + 92172.3185204082, + 90426.63438770593, + null, + 92172.3185204082, + 90255.91067155173, + null, + 92172.3185204082, + 91994.60911809147, + null, + 92172.3185204082, + 91936.03318656498, + null, + 92172.3185204082, + 91983.70759391226, + null, + 95015.49625623692, + 95103.11342187891, + null, + 95015.49625623692, + 95340.12961580537, + null, + 94637.44384110306, + 94782.50222163898, + null, + 94637.44384110306, + 94472.20709603677, + null, + 94023.65044193376, + 93839.98245358566, + null, + 94023.65044193376, + 93550.85862261364, + null, + 94023.65044193376, + 93844.24306124111, + null, + 94023.65044193376, + 93543.4657580988, + null, + 94711.8919185092, + 94547.62330964052, + null, + 94639.7976547818, + 94547.62330964052, + null, + 94969.34668009236, + 95196.70952197771, + null, + 94969.34668009236, + 94952.15918284946, + null, + 94867.71860626241, + 94890.1592037714, + null, + 94867.71860626241, + 94374.02538445908, + null, + 94867.71860626241, + 95368.49227674282, + null, + 94499.29954296813, + 94345.9720338772, + null, + 94499.29954296813, + 94362.73267824408, + null, + 94412.16071475198, + 94269.5283596859, + null, + 94412.16071475198, + 94207.67763929271, + null, + 94412.16071475198, + 94157.53706668493, + null, + 94412.16071475198, + 94258.38524216403, + null, + 94500.6446202604, + 94301.50601815798, + null, + 94316.72565507321, + 94011.00694174618, + null, + 94316.72565507321, + 94125.6503238661, + null, + 94316.72565507321, + 94227.34616572867, + null, + 94316.72565507321, + 94084.08394396056, + null, + 94316.72565507321, + 94070.50563286559, + null, + 94645.92150016353, + 94443.56661107884, + null, + 94772.43466967792, + 94660.23703662696, + null, + 94772.43466967792, + 94668.42135385043, + null, + 95782.49090316397, + 96400.51278286969, + null, + 95782.49090316397, + 95574.39534418302, + null, + 95782.49090316397, + 96442.24721615986, + null, + 94352.71458049152, + 94046.68004288743, + null, + 94352.71458049152, + 94235.41587667502, + null, + 94352.71458049152, + 94273.344864104, + null, + 94352.71458049152, + 94123.19936245674, + null, + 94352.71458049152, + 94159.63225677669, + null, + 94039.43659745945, + 93803.9261679241, + null, + 94039.43659745945, + 94011.724964968, + null, + 94039.43659745945, + 93912.59330061535, + null, + 94039.43659745945, + 93887.16917253478, + null, + 94039.43659745945, + 93760.95419201358, + null, + 94039.43659745945, + 94123.58147436914, + null, + 94039.43659745945, + 93925.82530456611, + null, + 94039.43659745945, + 93850.32814637737, + null, + 94039.43659745945, + 93675.33911678942, + null, + 94039.43659745945, + 93883.462303006, + null, + 94039.43659745945, + 94178.83279139998, + null, + 94039.43659745945, + 93742.14334667072, + null, + 94039.43659745945, + 93961.40036485184, + null, + 94039.43659745945, + 93887.34458601507, + null, + 94039.43659745945, + 93903.3407406927, + null, + 94039.43659745945, + 93734.96333262778, + null, + 94039.43659745945, + 94169.09157518268, + null, + 94039.43659745945, + 93941.18935024734, + null, + 94724.12280359474, + 94636.41241915552, + null, + 94549.95722461416, + 94424.21404328254, + null, + 94549.95722461416, + 94373.86923886793, + null, + 95172.62949097781, + 95545.38485611489, + null, + 95172.62949097781, + 95182.95535517084, + null, + 95172.62949097781, + 95071.09472843911, + null, + 95172.62949097781, + 95167.69616974294, + null, + 95172.62949097781, + 95087.78815059502, + null, + 95172.62949097781, + 95126.89613229115, + null, + 95172.62949097781, + 95523.23375784527, + null, + 95142.30696566738, + 95376.11147143133, + null, + 95142.30696566738, + 95227.46258123794, + null, + 95142.30696566738, + 95352.39749037023, + null, + 94079.97573473441, + 93916.134535691, + null, + 94079.97573473441, + 93951.52721964949, + null, + 94079.97573473441, + 93984.68193482122, + null, + 94079.97573473441, + 93969.89886979104, + null, + 94079.97573473441, + 93882.34010171027, + null, + 94079.97573473441, + 93865.27925415388, + null, + 94079.97573473441, + 93881.61720809246, + null, + 94079.97573473441, + 93830.32747505195, + null, + 94079.97573473441, + 93936.57704354505, + null, + 92867.65170326555, + 91536.18144472227, + null, + 92867.65170326555, + 91522.46011082169, + null, + 95137.86898625335, + 95157.97425899161, + null, + 95137.86898625335, + 95207.54728400431, + null, + 95137.86898625335, + 95276.48776626095, + null, + 95137.86898625335, + 95352.39749037023, + null, + 95137.86898625335, + 95376.11147143133, + null, + 91386.79521336866, + 89987.53509523951, + null, + 91386.79521336866, + 89893.44601705468, + null, + 91386.79521336866, + 90542.60014879846, + null, + 91386.79521336866, + 90308.66677680974, + null, + 91386.79521336866, + 89972.49873713554, + null, + 91386.79521336866, + 91231.8196566484, + null, + 91386.79521336866, + 90426.63438770593, + null, + 91386.79521336866, + 91261.04328066683, + null, + 91386.79521336866, + 91175.1502515188, + null, + 91386.79521336866, + 91142.8260071247, + null, + 94302.9983659527, + 94013.0077053391, + null, + 94302.9983659527, + 94164.54504032315, + null, + 94302.9983659527, + 94054.4416632055, + null, + 94302.9983659527, + 94131.90713162518, + null, + 94302.9983659527, + 94172.7395942074, + null, + 95035.60486780475, + 94893.15089322784, + null, + 95035.60486780475, + 94968.92914391636, + null, + 95035.60486780475, + 95030.19357548543, + null, + 94535.68576734806, + 94320.32001232714, + null, + 94470.20509490756, + 94224.29742863894, + null, + 94470.20509490756, + 94336.05564681457, + null, + 94470.20509490756, + 94312.32437986055, + null, + 94511.66669647257, + 94303.31563802196, + null, + 94511.66669647257, + 94437.58770435351, + null, + 94490.98493329533, + 94380.74487902022, + null, + 94490.98493329533, + 94204.20735933605, + null, + 94034.72001872609, + 93805.49685278744, + null, + 94034.72001872609, + 93892.59177818336, + null, + 94034.72001872609, + 93543.4657580988, + null, + 94034.72001872609, + 93550.85862261364, + null, + 94559.50779408682, + 94412.0451565415, + null, + 94559.50779408682, + 94426.17357284379, + null, + 94466.7376842554, + 94263.86673325008, + null, + 94466.7376842554, + 94213.89118970706, + null, + 95513.58278963793, + 95385.88848111703, + null, + 95513.58278963793, + 96063.61237925281, + null, + 95513.58278963793, + 95341.12102532042, + null, + 95513.58278963793, + 96073.62002048118, + null, + 94305.51369188944, + 94137.00646966182, + null, + 94305.51369188944, + 94156.0229058292, + null, + 94305.51369188944, + 94202.4207189329, + null, + 94305.51369188944, + 94092.44030875542, + null, + 94305.51369188944, + 94059.33759986472, + null, + 94305.51369188944, + 94176.47708516316, + null, + 94305.51369188944, + 94052.49870231381, + null, + 94851.28150629238, + 94927.69438379064, + null, + 94851.28150629238, + 94849.39986806002, + null, + 94851.28150629238, + 94992.0641380479, + null, + 94851.28150629238, + 94784.33169676425, + null, + 94851.28150629238, + 94810.54708687005, + null, + 94851.28150629238, + 95103.97227801211, + null, + 94851.28150629238, + 94284.29614613004, + null, + 94851.28150629238, + 94919.62429869157, + null, + 94851.28150629238, + 95271.0473357906, + null, + 94851.28150629238, + 94869.35010821253, + null, + 94851.28150629238, + 95006.34673042681, + null, + 94851.28150629238, + 94919.67840200933, + null, + 94851.28150629238, + 94717.01718778357, + null, + 94851.28150629238, + 94734.90055663262, + null, + 94851.28150629238, + 94806.90127093442, + null, + 94851.28150629238, + 94767.73807259565, + null, + 94851.28150629238, + 94857.13685431078, + null, + 94851.28150629238, + 95103.11342187891, + null, + 94851.28150629238, + 95124.22218566947, + null, + 94772.25786639804, + 94793.2995046325, + null, + 94772.25786639804, + 94178.18816955703, + null, + 94772.25786639804, + 95340.12961580537, + null, + 94772.25786639804, + 95303.17115160594, + null, + 94518.72288699445, + 94413.67065318272, + null, + 94518.72288699445, + 94351.82055805538, + null, + 92600.87220891484, + 90542.60014879846, + null, + 92600.87220891484, + 92287.18461593246, + null, + 92600.87220891484, + 92344.79587415236, + null, + 92600.87220891484, + 92395.50229122411, + null, + 94385.63245566067, + 94066.70664866947, + null, + 97662.82472168292, + 96765.01998356344, + null, + 98322.0050156767, + 96765.01998356344, + null, + 96765.01998356344, + 96912.3840775932, + null, + 96765.01998356344, + 96822.83077029923, + null, + 94187.4208589902, + 93872.05455515652, + null, + 94187.4208589902, + 93971.70006909678, + null, + 94187.4208589902, + 94000.24913714765, + null, + 94187.4208589902, + 94065.67460043577, + null, + 96407.8149457741, + 96311.95742018387, + null, + 96407.8149457741, + 96345.35938061375, + null, + 96407.8149457741, + 97943.74694094929, + null, + 93866.57023587385, + 93715.32177876253, + null, + 93866.57023587385, + 93690.44395530979, + null, + 93866.57023587385, + 93623.24293961626, + null, + 93866.57023587385, + 93777.92905171037, + null, + 93866.57023587385, + 93416.58217755376, + null, + 93866.57023587385, + 94206.32696510479, + null, + 93866.57023587385, + 93808.8134274846, + null, + 93866.57023587385, + 93712.4167533155, + null, + 93866.57023587385, + 93499.49299289202, + null, + 93866.57023587385, + 93651.07722955113, + null, + 93866.57023587385, + 93712.05135609517, + null, + 93866.57023587385, + 93668.71539308506, + null, + 93866.57023587385, + 93703.36126922605, + null, + 93866.57023587385, + 93717.46592200446, + null, + 93866.57023587385, + 93805.61396749513, + null, + 93866.57023587385, + 93587.67456189399, + null, + 93866.57023587385, + 93667.50755458296, + null, + 93866.57023587385, + 93740.32595024593, + null, + 93866.57023587385, + 93621.50782413344, + null, + 93866.57023587385, + 93609.40652498248, + null, + 96229.66105626737, + 95801.8797460325, + null, + 96229.66105626737, + 96149.34956899607, + null, + 96229.66105626737, + 96056.31431413464, + null, + 96229.66105626737, + 96243.90733864102, + null, + 98932.31091884513, + 98178.17510730785, + null, + 98926.20655583622, + 98178.17510730785, + null, + 98881.20399257346, + 98178.17510730785, + null, + 98873.6590998779, + 98178.17510730785, + null, + 98776.08147395353, + 98178.17510730785, + null, + 98916.08043593282, + 98178.17510730785, + null, + 98775.64297666437, + 98178.17510730785, + null, + 98833.5386160878, + 98178.17510730785, + null, + 98779.4951496633, + 98178.17510730785, + null, + 98769.87019965112, + 98178.17510730785, + null, + 98763.69912444155, + 98178.17510730785, + null, + 98715.38337956829, + 98178.17510730785, + null, + 98838.01226486915, + 98178.17510730785, + null, + 98731.25835265023, + 98178.17510730785, + null, + 98794.9356782363, + 98178.17510730785, + null, + 98875.12446310604, + 98178.17510730785, + null, + 98845.6917714939, + 98178.17510730785, + null, + 96273.17959649833, + 96152.1057643561, + null, + 96273.17959649833, + 95963.35252743993, + null, + 96273.17959649833, + 95950.12484352986, + null, + 92820.89814897874, + 91035.5356559428, + null, + 92820.89814897874, + 92712.65686256441, + null, + 92820.89814897874, + 92665.20903578005, + null, + 92820.89814897874, + 90506.38154973468, + null, + 92820.89814897874, + 92658.25067258794, + null, + 92820.89814897874, + 92707.16684414347, + null, + 92820.89814897874, + 92610.96365711992, + null, + 92820.89814897874, + 92772.00915250067, + null, + 96599.13805686972, + 96880.93597578706, + null, + 96599.13805686972, + 96861.82056450349, + null, + 96599.13805686972, + 97158.96712629191, + null, + 96599.13805686972, + 96665.38767001704, + null, + 97651.32746016643, + 97069.64943071302, + null, + 97136.55546326986, + 97069.64943071302, + null, + 97605.64203060168, + 97069.64943071302, + null, + 97499.57548817585, + 97069.64943071302, + null, + 97615.00090956, + 97069.64943071302, + null, + 97672.92128722146, + 97069.64943071302, + null, + 95560.28088297267, + 95348.00113621198, + null, + 95560.28088297267, + 95475.64319973848, + null, + 95560.28088297267, + 95529.20616248925, + null, + 95560.28088297267, + 95568.54842738589, + null, + 96806.8541605258, + 97014.70310115164, + null, + 96817.66055571858, + 96807.5317976019, + null, + 97237.89195347154, + 97177.016571983, + null, + 97237.89195347154, + 97043.85947589722, + null, + 97237.89195347154, + 96315.39006631782, + null, + 97237.89195347154, + 96299.26984037684, + null, + 96888.97576383248, + 96417.56965551627, + null, + 96888.97576383248, + 96292.33937952145, + null, + 96888.97576383248, + 96139.27193844452, + null, + 97141.56965571626, + 96417.56965551627, + null, + 97141.56965571626, + 96139.27193844452, + null, + 97141.56965571626, + 96885.77229318066, + null, + 97141.56965571626, + 96885.52179751407, + null, + 97141.56965571626, + 96955.75725837208, + null, + 97141.56965571626, + 96371.23865707997, + null, + 97272.16196531034, + 97336.92046433868, + null, + 97272.16196531034, + 97244.56993259059, + null, + 97272.16196531034, + 97323.01083840418, + null, + 97272.16196531034, + 96214.29567174465, + null, + 97095.49525391203, + 96979.26259545963, + null, + 97095.49525391203, + 97024.96763850165, + null, + 96704.00303777175, + 96443.17666872074, + null, + 96704.00303777175, + 96501.2797849095, + null, + 96704.00303777175, + 96503.74204473906, + null, + 96704.00303777175, + 96486.96356375985, + null, + 96704.00303777175, + 96704.94482097548, + null, + 96704.00303777175, + 96472.26194887214, + null, + 96704.00303777175, + 96638.11644218583, + null, + 96704.00303777175, + 96454.7200242486, + null, + 96183.9812972283, + 95987.50726261239, + null, + 96183.9812972283, + 95192.18878450526, + null, + 96183.9812972283, + 95892.9268070378, + null, + 96795.31918949624, + 96698.7455890938, + null, + 96795.31918949624, + 96584.96543692259, + null, + 96795.31918949624, + 96541.61840316036, + null, + 96795.31918949624, + 96569.40565837403, + null, + 96795.31918949624, + 96528.49682707139, + null, + 97051.71285679028, + 96911.19010484591, + null, + 97051.71285679028, + 96928.75219227053, + null, + 96645.4446535775, + 96186.25940182169, + null, + 96645.4446535775, + 96932.45750407256, + null, + 96645.4446535775, + 96299.4257154321, + null, + 96645.4446535775, + 96375.81406263121, + null, + 96645.4446535775, + 96315.39006631782, + null, + 96645.4446535775, + 96380.28781055969, + null, + 96645.4446535775, + 96299.26984037684, + null, + 96645.4446535775, + 96375.08693072088, + null, + 96645.4446535775, + 96380.28781055969, + null, + 97016.89968225527, + 96934.56900248305, + null, + 97016.89968225527, + 96988.3651054402, + null, + 97016.89968225527, + 97049.75371645692, + null, + 97016.89968225527, + 96844.52551619314, + null, + 97016.89968225527, + 96923.19048697427, + null, + 98970.15914526228, + 98895.54995718307, + null, + 98970.15914526228, + 100636.49150263055, + null, + 96164.31165177577, + 95702.34904687658, + null, + 96164.31165177577, + 96026.0226178126, + null, + 96164.31165177577, + 95689.63925251232, + null, + 96164.31165177577, + 96082.0679626181, + null, + 96164.31165177577, + 96060.02477735966, + null, + 96164.31165177577, + 96033.20740157629, + null, + 96164.31165177577, + 95719.3642560631, + null, + 96955.80310269099, + 97122.38900206238, + null, + 96955.80310269099, + 97074.57158975213, + null, + 96955.80310269099, + 97089.55029562055, + null, + 96766.57575414197, + 96838.02950949712, + null, + 96766.57575414197, + 96554.83252774995, + null, + 96880.45975619479, + 96908.33001617734, + null, + 96880.45975619479, + 96940.36894513863, + null, + 97651.32746016643, + 97320.49185837018, + null, + 97136.55546326986, + 97320.49185837018, + null, + 97605.64203060168, + 97320.49185837018, + null, + 97499.57548817585, + 97320.49185837018, + null, + 97615.00090956, + 97320.49185837018, + null, + 97672.92128722146, + 97320.49185837018, + null, + 96510.18842656737, + 96466.54820005891, + null, + 96510.18842656737, + 96499.21194873397, + null, + 96510.18842656737, + 96432.75800775865, + null, + 96510.18842656737, + 96421.56170751022, + null, + 96510.18842656737, + 96450.86417398539, + null, + 97003.43303968408, + 97074.17942076073, + null, + 97003.43303968408, + 97074.3618961545, + null, + 97003.43303968408, + 97006.12101036114, + null, + 96660.51533943972, + 96754.00401323636, + null, + 96660.51533943972, + 96547.77228387182, + null, + 96966.02647052168, + 96966.40149118089, + null, + 96966.02647052168, + 96956.51991520695, + null, + 96966.02647052168, + 97266.57307609903, + null, + 96859.70450714213, + 96851.49702075154, + null, + 96859.70450714213, + 97028.21718236667, + null, + 96859.70450714213, + 96923.14998898802, + null, + 96859.70450714213, + 96935.43558121054, + null, + 96859.70450714213, + 96876.0341655546, + null, + 96852.77079415339, + 96947.56185065248, + null, + 96852.77079415339, + 96938.83304086134, + null, + 96081.2975453023, + 96132.13052901684, + null, + 97015.25817987997, + 97396.83809185523, + null, + 96839.05193444177, + 96999.23563465345, + null, + 97817.707556705, + 97965.099770708, + null, + 97817.707556705, + 97692.94173735469, + null, + 97817.707556705, + 97983.33638334284, + null, + 97817.707556705, + 98032.72187246279, + null, + 97817.707556705, + 97974.18271627268, + null, + 97817.707556705, + 97786.09247887084, + null, + 97817.707556705, + 97800.2100526241, + null, + 97817.707556705, + 97912.58577131401, + null, + 97817.707556705, + 98515.60094273857, + null, + 97817.707556705, + 97929.92102411941, + null, + 97817.707556705, + 97928.06662872367, + null, + 97817.707556705, + 97948.71845683189, + null, + 97817.707556705, + 97997.23955341357, + null, + 97817.707556705, + 97779.57776729457, + null, + 97817.707556705, + 97918.30088266732, + null, + 97817.707556705, + 97818.95994583191, + null, + 97817.707556705, + 97874.39129412937, + null, + 97817.707556705, + 97831.22264416635, + null, + 97817.707556705, + 97848.66298321466, + null, + 97817.707556705, + 98306.18967874342, + null, + 97817.707556705, + 97716.14241780146, + null, + 97817.707556705, + 97464.08055310673, + null, + 97817.707556705, + 97903.94501359884, + null, + 97817.707556705, + 98510.79621330468, + null, + 97817.707556705, + 97977.63973942658, + null, + 97817.707556705, + 97986.11769113112, + null, + 97817.707556705, + 97783.36471560711, + null, + 97817.707556705, + 97712.53971897205, + null, + 97817.707556705, + 97869.88999145458, + null, + 97817.707556705, + 97745.05257238295, + null, + 97817.707556705, + 97779.36469026067, + null, + 97817.707556705, + 97598.49065794118, + null, + 97817.707556705, + 97644.2460325755, + null, + 97817.707556705, + 97956.81212995679, + null, + 97817.707556705, + 97838.89167622174, + null, + 97817.707556705, + 97665.19276415366, + null, + 97817.707556705, + 97740.7761235048, + null, + 97817.707556705, + 97977.43561497079, + null, + 97817.707556705, + 97910.00226982501, + null, + 97817.707556705, + 97396.83809185523, + null, + 97817.707556705, + 97981.26497740846, + null, + 97817.707556705, + 97934.15325168573, + null, + 97817.707556705, + 97661.65075316017, + null, + 97817.707556705, + 97708.59760735968, + null, + 97817.707556705, + 97635.85467905481, + null, + 97817.707556705, + 97877.97127912445, + null, + 97817.707556705, + 97888.45567349828, + null, + 97817.707556705, + 97743.32967370604, + null, + 97817.707556705, + 97847.28715211149, + null, + 97817.707556705, + 97808.1138347589, + null, + 97817.707556705, + 97882.99271670789, + null, + 97817.707556705, + 97867.45670191568, + null, + 97817.707556705, + 97843.74040890497, + null, + 97817.707556705, + 97742.09038719474, + null, + 97817.707556705, + 97907.24259090831, + null, + 97817.707556705, + 97869.84628046093, + null, + 97817.707556705, + 97773.10518246032, + null, + 97817.707556705, + 97710.26128355986, + null, + 97817.707556705, + 97439.77285801106, + null, + 96743.47300321168, + 96847.44273347312, + null, + 96743.47300321168, + 96871.44532957648, + null, + 96743.47300321168, + 96899.7444137054, + null, + 96633.1960028662, + 96601.40636551428, + null, + 96633.1960028662, + 96719.79711549218, + null, + 96633.1960028662, + 96691.0320269905, + null, + 96915.22190900354, + 97006.08190547314, + null, + 96645.1229128067, + 96441.73368686778, + null, + 96645.1229128067, + 96767.40239764423, + null, + 96645.1229128067, + 96685.375037542, + null, + 97004.95986761729, + 97209.09899176516, + null, + 97004.95986761729, + 97154.83922451224, + null, + 96566.99750987656, + 96484.01880503709, + null, + 96241.34047154605, + 96107.67988071588, + null, + 96241.34047154605, + 96231.62891327246, + null, + 96094.8508150237, + 95866.80224811046, + null, + 96329.29923380495, + 96548.20028247405, + null, + 96303.92041500923, + 96288.80898149563, + null, + 95909.7739787418, + 95833.69324629745, + null, + 95909.7739787418, + 96026.0226178126, + null, + 95909.7739787418, + 95973.3902004487, + null, + 95909.7739787418, + 95936.55609673416, + null, + 95909.7739787418, + 95846.59752469542, + null, + 95909.7739787418, + 95876.33619274442, + null, + 95909.7739787418, + 95823.68246341804, + null, + 95909.7739787418, + 95783.98807985516, + null, + 95909.7739787418, + 95969.8648337016, + null, + 95909.7739787418, + 95894.43298604249, + null, + 95909.7739787418, + 95689.63925251232, + null, + 95909.7739787418, + 95702.34904687658, + null, + 95909.7739787418, + 95929.05645624285, + null, + 95909.7739787418, + 95983.62730236512, + null, + 95909.7739787418, + 95795.10468007735, + null, + 95909.7739787418, + 95861.17559180611, + null, + 95909.7739787418, + 95802.80525539977, + null, + 95909.7739787418, + 96082.0679626181, + null, + 95909.7739787418, + 95825.95151868842, + null, + 95909.7739787418, + 95869.97131479219, + null, + 95909.7739787418, + 95719.3642560631, + null, + 95909.7739787418, + 96060.02477735966, + null, + 95909.7739787418, + 96033.20740157629, + null, + 95909.7739787418, + 95913.086499376, + null, + 95909.7739787418, + 95910.99064717419, + null, + 95909.7739787418, + 95937.64989335113, + null, + 95909.7739787418, + 95891.91884422916, + null, + 95909.7739787418, + 95809.52074514219, + null, + 95909.7739787418, + 95871.0650098643, + null, + 95909.7739787418, + 95938.4418636119, + null, + 95909.7739787418, + 95885.02089259116, + null, + 95909.7739787418, + 95946.77940587135, + null, + 96400.51278286969, + 96463.23121061604, + null, + 95574.39534418302, + 95269.88551286564, + null, + 95574.39534418302, + 95091.92395340849, + null, + 95574.39534418302, + 95149.74263120122, + null, + 95574.39534418302, + 95119.73813153236, + null, + 95574.39534418302, + 95125.54875547701, + null, + 95574.39534418302, + 95154.3406437858, + null, + 95574.39534418302, + 95105.70316558772, + null, + 95574.39534418302, + 95491.37487357768, + null, + 95574.39534418302, + 95068.25673894, + null, + 95574.39534418302, + 95089.3896773708, + null, + 95574.39534418302, + 95076.82444005845, + null, + 95574.39534418302, + 95374.51754883812, + null, + 95574.39534418302, + 95346.23309636129, + null, + 95694.79665191291, + 95585.24481960548, + null, + 95694.79665191291, + 95513.21245708983, + null, + 95694.79665191291, + 95616.19801730258, + null, + 96078.87408767999, + 96091.30297494435, + null, + 96078.87408767999, + 96130.11178472488, + null, + 96078.87408767999, + 96018.67970797754, + null, + 96078.87408767999, + 96092.81017505692, + null, + 96078.87408767999, + 96029.80815869398, + null, + 96078.87408767999, + 96045.61522024043, + null, + 96078.87408767999, + 96041.3107438129, + null, + 96078.87408767999, + 95545.38485611489, + null, + 96078.87408767999, + 96123.66684769333, + null, + 96078.87408767999, + 95523.23375784527, + null, + 96078.87408767999, + 96012.26588549778, + null, + 96745.54904144225, + 96745.93142676732, + null, + 96745.54904144225, + 96767.6667165417, + null, + 96745.54904144225, + 96765.36884569783, + null, + 96885.45509832901, + 96851.49702075154, + null, + 96885.45509832901, + 97327.29514577452, + null, + 96885.45509832901, + 96923.14998898802, + null, + 96885.45509832901, + 96950.00862634687, + null, + 96885.45509832901, + 96876.0341655546, + null, + 96847.7893432129, + 96839.1737376899, + null, + 96847.7893432129, + 96851.49702075154, + null, + 96847.7893432129, + 97028.21718236667, + null, + 96847.7893432129, + 96923.14998898802, + null, + 96847.7893432129, + 96935.43558121054, + null, + 96847.7893432129, + 96876.0341655546, + null, + 96580.26314007488, + 96614.39435499303, + null, + 96283.38222595652, + 96132.13052901684, + null, + 96330.75641404516, + 96337.84299855285, + null, + 96330.75641404516, + 96363.40943473825, + null, + 96330.75641404516, + 96199.08353982247, + null, + 96330.75641404516, + 96210.67360754788, + null, + 96330.75641404516, + 96379.20593323221, + null, + 96330.75641404516, + 96158.6409534142, + null, + 95933.78130606312, + 95809.38081404867, + null, + 95933.78130606312, + 95830.62061346209, + null, + 95969.93628717288, + 95892.9781546145, + null, + 96241.8368167467, + 96251.50221250225, + null, + 96516.24082699847, + 96480.34466709888, + null, + 96516.24082699847, + 96507.82112088494, + null, + 96516.24082699847, + 96463.20514033035, + null, + 96352.37619288662, + 96341.40385775307, + null, + 95977.4908427389, + 96010.78631802801, + null, + 96086.9490860762, + 96023.45133971501, + null, + 96758.39095887466, + 97209.09899176516, + null, + 96758.39095887466, + 97154.83922451224, + null, + 96034.32749733706, + 96002.90560331904, + null, + 96034.32749733706, + 95966.166341996, + null, + 96026.76816689323, + 96106.27906720324, + null, + 96026.76816689323, + 95807.67280945969, + null, + 96158.4488359556, + 96395.43569347766, + null, + 96158.4488359556, + 96344.44312350763, + null, + 96158.4488359556, + 96138.17632150596, + null, + 96158.4488359556, + 96013.09656267504, + null, + 96158.4488359556, + 96303.38543537387, + null, + 96031.66005598055, + 95894.19050089734, + null, + 96864.42186310086, + 96982.27860412037, + null, + 96864.42186310086, + 96803.66959486734, + null, + 96864.42186310086, + 96947.0577205457, + null, + 96587.15552488458, + 96600.41453955312, + null, + 96587.15552488458, + 96568.01566290409, + null, + 96587.15552488458, + 96593.52949252554, + null, + 96788.89525885877, + 96954.2291584623, + null, + 96788.89525885877, + 96858.60884095871, + null, + 97189.5131054329, + 97317.61147548359, + null, + 97669.69791198618, + 97800.71562505228, + null, + 97669.69791198618, + 97965.28083636134, + null, + 97669.69791198618, + 97889.61604333931, + null, + 97669.69791198618, + 97866.41918264618, + null, + 97409.25368271414, + 97278.5656163335, + null, + 97234.04346137235, + 97278.5656163335, + null, + 97434.01515339047, + 97278.5656163335, + null, + 97272.13864563021, + 97278.5656163335, + null, + 96896.58750176255, + 96409.68164770227, + null, + 97154.72425616732, + 98306.18967874342, + null, + 97154.72425616732, + 97206.50614037958, + null, + 97154.72425616732, + 97635.85467905481, + null, + 97154.72425616732, + 97172.59542951442, + null, + 97154.72425616732, + 97439.77285801106, + null, + 96987.80225378742, + 96871.44532957648, + null, + 96987.80225378742, + 96847.44273347312, + null, + 96987.80225378742, + 96899.7444137054, + null, + 96987.80225378742, + 97072.76067775434, + null, + 96695.54475332797, + 96537.27883527981, + null, + 96726.40817559678, + 96711.59348660789, + null, + 96726.40817559678, + 96724.52250491997, + null, + 96767.46602322998, + 96763.88111565771, + null, + 96813.4343547639, + 96763.6034842352, + null, + 96791.18101461837, + 96974.48285660804, + null, + 96791.18101461837, + 96961.18408244224, + null, + 96791.18101461837, + 96795.80972533752, + null, + 96791.18101461837, + 96829.80108971853, + null, + 95389.10664694483, + 95448.9319500581, + null, + 95389.10664694483, + 95427.81805651919, + null, + 95472.00274613315, + 95349.78105291045, + null, + 95935.5419641612, + 96420.91570369813, + null, + 95935.5419641612, + 95853.47014194234, + null, + 96253.58305118927, + 96132.08577076395, + null, + 96263.70637434645, + 96214.23708082634, + null, + 96198.74714645866, + 96076.5874277015, + null, + 96023.10216322435, + 95735.4846520663, + null, + 96023.10216322435, + 96051.52523546964, + null, + 97066.1566770924, + 97068.07558913079, + null, + 97066.1566770924, + 97209.09899176516, + null, + 97066.1566770924, + 97179.42918462172, + null, + 97066.1566770924, + 97139.53818571626, + null, + 97066.1566770924, + 97016.58216276058, + null, + 97066.1566770924, + 97038.98862670796, + null, + 96512.6439304231, + 96463.23121061604, + null, + 96656.65493202257, + 96765.36884569783, + null, + 96656.65493202257, + 96803.66959486734, + null, + 98932.31091884513, + 98642.78682170947, + null, + 98926.20655583622, + 98642.78682170947, + null, + 98881.20399257346, + 98642.78682170947, + null, + 98873.6590998779, + 98642.78682170947, + null, + 98776.08147395353, + 98642.78682170947, + null, + 98916.08043593282, + 98642.78682170947, + null, + 98775.64297666437, + 98642.78682170947, + null, + 98833.5386160878, + 98642.78682170947, + null, + 98779.4951496633, + 98642.78682170947, + null, + 98769.87019965112, + 98642.78682170947, + null, + 98763.69912444155, + 98642.78682170947, + null, + 98715.38337956829, + 98642.78682170947, + null, + 98838.01226486915, + 98642.78682170947, + null, + 98731.25835265023, + 98642.78682170947, + null, + 98794.9356782363, + 98642.78682170947, + null, + 98875.12446310604, + 98642.78682170947, + null, + 98845.6917714939, + 98642.78682170947, + null, + 98026.80584910973, + 97678.54460695155, + null, + 97317.9470175812, + 97173.72709588033, + null, + 97317.9470175812, + 97217.85077478534, + null, + 97317.9470175812, + 97186.76808718561, + null, + 97317.9470175812, + 97395.26641208559, + null, + 97317.9470175812, + 97417.15574620935, + null, + 97317.9470175812, + 97295.81122049606, + null, + 97317.9470175812, + 97315.37804363752, + null, + 97317.9470175812, + 97253.70170188205, + null, + 97317.9470175812, + 97259.73605669996, + null, + 97317.9470175812, + 97279.28897112967, + null, + 97558.53189592143, + 97664.79092225397, + null, + 97354.04987112107, + 97273.1165047572, + null, + 97354.04987112107, + 97433.88051161826, + null, + 97354.04987112107, + 97074.3618961545, + null, + 98156.10361722215, + 98311.21608497082, + null, + 98156.10361722215, + 97635.0392809572, + null, + 97559.12810431966, + 97317.61147548359, + null, + 97559.12810431966, + 97598.2216287689, + null, + 98932.31091884513, + 98672.80035077463, + null, + 98926.20655583622, + 98672.80035077463, + null, + 98881.20399257346, + 98672.80035077463, + null, + 98775.64297666437, + 98672.80035077463, + null, + 98715.38337956829, + 98672.80035077463, + null, + 98794.9356782363, + 98672.80035077463, + null, + 98873.6590998779, + 98672.80035077463, + null, + 98776.08147395353, + 98672.80035077463, + null, + 98916.08043593282, + 98672.80035077463, + null, + 98833.5386160878, + 98672.80035077463, + null, + 98779.4951496633, + 98672.80035077463, + null, + 98769.87019965112, + 98672.80035077463, + null, + 98763.69912444155, + 98672.80035077463, + null, + 98838.01226486915, + 98672.80035077463, + null, + 98731.25835265023, + 98672.80035077463, + null, + 98875.12446310604, + 98672.80035077463, + null, + 98845.6917714939, + 98672.80035077463, + null, + 97608.46722365031, + 97709.20997216344, + null, + 97720.70350653208, + 97800.71562505228, + null, + 97720.70350653208, + 97889.61604333931, + null, + 97720.70350653208, + 97965.28083636134, + null, + 97720.70350653208, + 97594.02550440448, + null, + 97720.70350653208, + 97671.76762343859, + null, + 97720.70350653208, + 97714.52375615494, + null, + 97720.70350653208, + 97866.41918264618, + null, + 97720.70350653208, + 97630.64426674997, + null, + 97720.70350653208, + 97630.27163188967, + null, + 97720.70350653208, + 97681.43345802989, + null, + 97720.70350653208, + 97643.84165540582, + null, + 97720.70350653208, + 97620.62074300427, + null, + 97720.70350653208, + 97592.75683781573, + null, + 97720.70350653208, + 97567.9839306081, + null, + 97720.70350653208, + 97915.08026442358, + null, + 97720.70350653208, + 97666.16284196392, + null, + 97720.70350653208, + 97636.2185941283, + null, + 97720.70350653208, + 97938.20290569965, + null, + 97720.70350653208, + 97529.40911807289, + null, + 97761.99442165645, + 97800.71562505228, + null, + 97761.99442165645, + 97889.61604333931, + null, + 97761.99442165645, + 97671.76762343859, + null, + 97761.99442165645, + 97643.84165540582, + null, + 96752.4665017377, + 96885.52179751407, + null, + 96752.4665017377, + 96885.77229318066, + null, + 96752.4665017377, + 96570.60229277262, + null, + 96752.4665017377, + 96292.33937952145, + null, + 96752.4665017377, + 96139.27193844452, + null, + 97746.8391580485, + 97853.50880407833, + null, + 97819.4972376039, + 97921.9922589436, + null, + 97819.4972376039, + 97776.59221266376, + null, + 97811.11864279254, + 97836.39549321984, + null, + 97811.11864279254, + 97975.90235149172, + null, + 97693.57749236286, + 97774.09837247997, + null, + 97735.9507021614, + 97885.48780049814, + null, + 97384.36803091576, + 97209.09899176516, + null, + 97384.36803091576, + 97307.21202722845, + null, + 97155.80752875579, + 97154.83922451224, + null, + 97155.80752875579, + 97068.07558913079, + null, + 97155.80752875579, + 97209.09899176516, + null, + 97155.80752875579, + 97121.93628053812, + null, + 97155.80752875579, + 97121.55585614218, + null, + 97155.80752875579, + 97140.73149429487, + null, + 97155.80752875579, + 97150.90263007056, + null, + 97155.80752875579, + 97060.39526332059, + null, + 97155.80752875579, + 97030.8631274604, + null, + 97155.80752875579, + 97192.97755496252, + null, + 97155.80752875579, + 97069.80879175542, + null, + 97155.80752875579, + 97093.05262002055, + null, + 97155.80752875579, + 97139.53818571626, + null, + 97155.80752875579, + 97052.29009434805, + null, + 97155.80752875579, + 97170.58382246458, + null, + 97155.80752875579, + 97179.82576003372, + null, + 97155.80752875579, + 97082.68825227836, + null, + 97155.80752875579, + 97144.30771257113, + null, + 97155.80752875579, + 97121.76766377356, + null, + 97155.80752875579, + 97118.1717151702, + null, + 97155.80752875579, + 97157.3153393121, + null, + 97155.80752875579, + 97050.33862467408, + null, + 97155.80752875579, + 97089.79100594205, + null, + 97155.80752875579, + 97119.19599796484, + null, + 97155.80752875579, + 97192.94699549448, + null, + 97155.80752875579, + 97012.5425356616, + null, + 97155.80752875579, + 97224.20831847242, + null, + 97155.80752875579, + 97187.0630187911, + null, + 97155.80752875579, + 96974.48285660804, + null, + 97155.80752875579, + 97163.31890311823, + null, + 97155.80752875579, + 96961.18408244224, + null, + 97155.80752875579, + 97219.79709559798, + null, + 97787.10318478926, + 97908.54958943304, + null, + 96656.51605951994, + 96700.81684331024, + null, + 96656.51605951994, + 96063.61237925281, + null, + 96656.51605951994, + 96073.62002048118, + null, + 96656.51605951994, + 96523.60268508628, + null, + 96656.51605951994, + 96536.9589902775, + null, + 96621.34244090467, + 96463.23121061604, + null, + 96787.80852813035, + 96843.7034070459, + null, + 97481.5752702023, + 97444.83065967944, + null, + 96763.64967872995, + 96765.36884569783, + null, + 96763.64967872995, + 96803.66959486734, + null, + 98932.31091884513, + 98517.20808727229, + null, + 98926.20655583622, + 98517.20808727229, + null, + 98881.20399257346, + 98517.20808727229, + null, + 98873.6590998779, + 98517.20808727229, + null, + 98776.08147395353, + 98517.20808727229, + null, + 98916.08043593282, + 98517.20808727229, + null, + 98775.64297666437, + 98517.20808727229, + null, + 98833.5386160878, + 98517.20808727229, + null, + 98779.4951496633, + 98517.20808727229, + null, + 98769.87019965112, + 98517.20808727229, + null, + 98763.69912444155, + 98517.20808727229, + null, + 98715.38337956829, + 98517.20808727229, + null, + 98838.01226486915, + 98517.20808727229, + null, + 98731.25835265023, + 98517.20808727229, + null, + 98794.9356782363, + 98517.20808727229, + null, + 98517.20808727229, + 98860.0592368339, + null, + 98845.6917714939, + 98517.20808727229, + null, + 97409.50882998393, + 97317.61147548359, + null, + 96746.40104686156, + 96799.07382149246, + null, + 96746.40104686156, + 96769.12236389377, + null, + 96387.0378486012, + 96283.05593791128, + null, + 96137.27428645456, + 95873.06749071793, + null, + 96447.65576692639, + 96306.41541740084, + null, + 96500.05485471405, + 96480.34466709888, + null, + 96500.05485471405, + 96507.82112088494, + null, + 96500.05485471405, + 96463.20514033035, + null, + 96347.26384012886, + 96364.42892209158, + null, + 96798.05259841571, + 96883.54640512177, + null, + 96798.05259841571, + 97074.3618961545, + null, + 96798.05259841571, + 96712.7933388927, + null, + 97123.64353111561, + 97074.17942076073, + null, + 97123.64353111561, + 97193.71178642656, + null, + 97123.64353111561, + 97273.1165047572, + null, + 98932.31091884513, + 98810.40128605721, + null, + 98926.20655583622, + 98810.40128605721, + null, + 98881.20399257346, + 98810.40128605721, + null, + 98775.64297666437, + 98810.40128605721, + null, + 98715.38337956829, + 98810.40128605721, + null, + 98794.9356782363, + 98810.40128605721, + null, + 98873.6590998779, + 98810.40128605721, + null, + 98776.08147395353, + 98810.40128605721, + null, + 98916.08043593282, + 98810.40128605721, + null, + 98833.5386160878, + 98810.40128605721, + null, + 98779.4951496633, + 98810.40128605721, + null, + 98769.87019965112, + 98810.40128605721, + null, + 98763.69912444155, + 98810.40128605721, + null, + 98838.01226486915, + 98810.40128605721, + null, + 98731.25835265023, + 98810.40128605721, + null, + 98875.12446310604, + 98810.40128605721, + null, + 98845.6917714939, + 98810.40128605721, + null, + 98748.83379870633, + 98946.53758317565, + null, + 98748.83379870633, + 98999.3555672314, + null, + 98748.83379870633, + 99135.63249379155, + null, + 98748.83379870633, + 99025.96218669585, + null, + 98766.84037371344, + 99101.35715048546, + null, + 98766.84037371344, + 98889.17100958912, + null, + 98766.84037371344, + 99046.37042367825, + null, + 98766.84037371344, + 98893.51043752216, + null, + 98595.68155874425, + 98892.5809756726, + null, + 98595.68155874425, + 98837.61105136099, + null, + 95432.28216788654, + 95302.53383954187, + null, + 95102.33265077158, + 94943.81309137406, + null, + 95102.33265077158, + 94902.98810497618, + null, + 95102.33265077158, + 94869.28850625391, + null, + 95102.33265077158, + 94852.59422578581, + null, + 96969.06747778888, + 97020.50549542202, + null, + 96969.06747778888, + 96986.83239293261, + null, + 96969.06747778888, + 97094.066664134, + null, + 98047.49514396398, + 98260.94835930769, + null, + 98047.49514396398, + 98082.85901569464, + null, + 97477.31474980435, + 97307.21202722845, + null, + 97477.31474980435, + 97209.09899176516, + null, + 98932.31091884513, + 98571.74309474658, + null, + 98926.20655583622, + 98571.74309474658, + null, + 98881.20399257346, + 98571.74309474658, + null, + 98873.6590998779, + 98571.74309474658, + null, + 98776.08147395353, + 98571.74309474658, + null, + 98916.08043593282, + 98571.74309474658, + null, + 98775.64297666437, + 98571.74309474658, + null, + 98833.5386160878, + 98571.74309474658, + null, + 98779.4951496633, + 98571.74309474658, + null, + 98769.87019965112, + 98571.74309474658, + null, + 98763.69912444155, + 98571.74309474658, + null, + 98715.38337956829, + 98571.74309474658, + null, + 98838.01226486915, + 98571.74309474658, + null, + 98731.25835265023, + 98571.74309474658, + null, + 98794.9356782363, + 98571.74309474658, + null, + 98875.12446310604, + 98571.74309474658, + null, + 98845.6917714939, + 98571.74309474658, + null, + 95476.30474211962, + 95141.50071030506, + null, + 95476.30474211962, + 95264.5613351477, + null, + 95476.30474211962, + 95224.54314081938, + null, + 95476.30474211962, + 95147.05653917076, + null, + 95476.30474211962, + 95210.90866045954, + null, + 95476.30474211962, + 95088.00070197124, + null, + 95988.61012463992, + 95835.68963088898, + null, + 97164.97647400496, + 96954.2291584623, + null, + 98349.87077216271, + 99148.01739523798, + null, + 98349.87077216271, + 98385.07485641103, + null, + 98009.1006468227, + 98515.60094273857, + null, + 98009.1006468227, + 97983.33638334284, + null, + 98009.1006468227, + 97974.18271627268, + null, + 98009.1006468227, + 97929.92102411941, + null, + 98009.1006468227, + 97928.06662872367, + null, + 98009.1006468227, + 97948.71845683189, + null, + 98009.1006468227, + 97997.23955341357, + null, + 98009.1006468227, + 97918.30088266732, + null, + 98009.1006468227, + 97818.95994583191, + null, + 98009.1006468227, + 97874.39129412937, + null, + 98009.1006468227, + 98306.18967874342, + null, + 98009.1006468227, + 97903.94501359884, + null, + 98009.1006468227, + 98510.79621330468, + null, + 98009.1006468227, + 98068.59743234728, + null, + 98009.1006468227, + 97783.36471560711, + null, + 98009.1006468227, + 97869.88999145458, + null, + 98009.1006468227, + 97977.63973942658, + null, + 98009.1006468227, + 97956.81212995679, + null, + 98009.1006468227, + 97838.89167622174, + null, + 98009.1006468227, + 97977.43561497079, + null, + 98009.1006468227, + 97981.26497740846, + null, + 98009.1006468227, + 97934.15325168573, + null, + 98009.1006468227, + 97848.66298321466, + null, + 98009.1006468227, + 97635.85467905481, + null, + 98009.1006468227, + 97847.28715211149, + null, + 98009.1006468227, + 97808.1138347589, + null, + 98009.1006468227, + 97882.99271670789, + null, + 98009.1006468227, + 97867.45670191568, + null, + 96860.00354930486, + 96845.55844426356, + null, + 97218.18359466371, + 97243.43268804229, + null, + 96532.6513290047, + 96395.43569347766, + null, + 96532.6513290047, + 96303.38543537387, + null, + 96532.6513290047, + 96344.44312350763, + null, + 96532.6513290047, + 96262.47034418354, + null, + 96476.99449429182, + 96441.73368686778, + null, + 93363.71919768747, + 93028.7413036078, + null, + 93502.02146333765, + 93186.25366672484, + null, + 93218.26568575818, + 92977.72507249404, + null, + 93218.26568575818, + 92967.15683152963, + null, + 96605.96850560357, + 96460.11226065892, + null, + 96834.80703834713, + 96803.5646686902, + null, + 95965.26838759349, + 95319.99368080994, + null, + 95965.26838759349, + 95788.68637466984, + null, + 95965.26838759349, + 95496.13470559087, + null, + 95965.26838759349, + 95594.81419372423, + null, + 93850.41662442079, + 94954.26355620637, + null, + 93904.56333636155, + 94954.26355620637, + null, + 93887.36045593988, + 94954.26355620637, + null, + 96061.1094111204, + 96001.25876488656, + null, + 96061.1094111204, + 96014.43994346815, + null, + 96061.1094111204, + 96063.34010957202, + null, + 96061.1094111204, + 95815.74790477773, + null, + 95894.3821805092, + 96061.1094111204, + null, + 96061.1094111204, + 95887.24825329146, + null, + 96061.1094111204, + 95898.24021797186, + null, + 96541.43397278279, + 96061.1094111204, + null, + 96061.1094111204, + 95800.38688365607, + null, + 96061.1094111204, + 95888.21662057075, + null, + 96061.1094111204, + 95858.74283800049, + null, + 96061.1094111204, + 95794.28661051509, + null, + 96061.1094111204, + 95859.12821844933, + null, + 96061.1094111204, + 96082.30693369107, + null, + 96061.1094111204, + 95925.95600315143, + null, + 96061.1094111204, + 95766.1829793558, + null, + 96061.1094111204, + 95895.34584537416, + null, + 96061.1094111204, + 95924.27915490832, + null, + 96061.1094111204, + 95788.73920911511, + null, + 96061.1094111204, + 95879.84007489719, + null, + 96061.1094111204, + 95750.612045373, + null, + 96061.1094111204, + 95776.9903894864, + null, + 96061.1094111204, + 95885.74462050153, + null, + 96061.1094111204, + 95921.1715910264, + null, + 96061.1094111204, + 95781.69527505395, + null, + 96061.1094111204, + 95962.10736111771, + null, + 96061.1094111204, + 95808.00418231983, + null, + 96061.1094111204, + 95865.57200803333, + null, + 96061.1094111204, + 95863.63939621505, + null, + 96061.1094111204, + 95774.27234822566, + null, + 96061.1094111204, + 95853.77680046998, + null, + 96061.1094111204, + 95910.88556421259, + null, + 96167.45474416234, + 96061.1094111204, + null, + 96061.1094111204, + 96030.4428217032, + null, + 95735.81320135522, + 96061.1094111204, + null, + 96878.0650637567, + 96061.1094111204, + null, + 96061.1094111204, + 96042.10223037108, + null, + 96061.1094111204, + 95793.92940460428, + null, + 96061.1094111204, + 95817.54264444362, + null, + 96061.1094111204, + 95900.49165315344, + null, + 96061.1094111204, + 95954.14624176064, + null, + 96926.74644690406, + 96061.1094111204, + null, + 95870.52327035548, + 96061.1094111204, + null, + 96061.1094111204, + 95906.63393497696, + null, + 96061.1094111204, + 95798.73471721575, + null, + 96061.1094111204, + 95745.01102164591, + null, + 96061.1094111204, + 95961.3303111423, + null, + 96061.1094111204, + 95851.78152974402, + null, + 96061.1094111204, + 95820.22984781419, + null, + 96061.1094111204, + 95983.45394155434, + null, + 96061.1094111204, + 95944.3474958281, + null, + 96061.1094111204, + 95805.59370462758, + null, + 96061.1094111204, + 95833.09723097256, + null, + 96061.1094111204, + 95882.46806050198, + null, + 96061.1094111204, + 96082.40454432127, + null, + 96061.1094111204, + 95995.73359705324, + null, + 96061.1094111204, + 95991.11497192552, + null, + 98932.31091884513, + 98472.89573129527, + null, + 98926.20655583622, + 98472.89573129527, + null, + 98881.20399257346, + 98472.89573129527, + null, + 98873.6590998779, + 98472.89573129527, + null, + 98776.08147395353, + 98472.89573129527, + null, + 98916.08043593282, + 98472.89573129527, + null, + 98775.64297666437, + 98472.89573129527, + null, + 98833.5386160878, + 98472.89573129527, + null, + 98779.4951496633, + 98472.89573129527, + null, + 98769.87019965112, + 98472.89573129527, + null, + 98763.69912444155, + 98472.89573129527, + null, + 98715.38337956829, + 98472.89573129527, + null, + 98838.01226486915, + 98472.89573129527, + null, + 98731.25835265023, + 98472.89573129527, + null, + 98794.9356782363, + 98472.89573129527, + null, + 98875.12446310604, + 98472.89573129527, + null, + 98472.89573129527, + 98649.67528264625, + null, + 98932.31091884513, + 98477.25442843478, + null, + 98926.20655583622, + 98477.25442843478, + null, + 98881.20399257346, + 98477.25442843478, + null, + 98873.6590998779, + 98477.25442843478, + null, + 98776.08147395353, + 98477.25442843478, + null, + 98916.08043593282, + 98477.25442843478, + null, + 98775.64297666437, + 98477.25442843478, + null, + 98833.5386160878, + 98477.25442843478, + null, + 98779.4951496633, + 98477.25442843478, + null, + 98769.87019965112, + 98477.25442843478, + null, + 98763.69912444155, + 98477.25442843478, + null, + 98715.38337956829, + 98477.25442843478, + null, + 98838.01226486915, + 98477.25442843478, + null, + 98731.25835265023, + 98477.25442843478, + null, + 98794.9356782363, + 98477.25442843478, + null, + 98875.12446310604, + 98477.25442843478, + null, + 98845.6917714939, + 98477.25442843478, + null, + 96663.3347349886, + 96463.23121061604, + null, + 97182.40630309808, + 97117.49595890373, + null, + 97182.40630309808, + 97197.27249529856, + null, + 98932.31091884513, + 98498.41434807747, + null, + 98926.20655583622, + 98498.41434807747, + null, + 98881.20399257346, + 98498.41434807747, + null, + 98873.6590998779, + 98498.41434807747, + null, + 98776.08147395353, + 98498.41434807747, + null, + 98916.08043593282, + 98498.41434807747, + null, + 98775.64297666437, + 98498.41434807747, + null, + 98833.5386160878, + 98498.41434807747, + null, + 98779.4951496633, + 98498.41434807747, + null, + 98769.87019965112, + 98498.41434807747, + null, + 98763.69912444155, + 98498.41434807747, + null, + 98715.38337956829, + 98498.41434807747, + null, + 98838.01226486915, + 98498.41434807747, + null, + 98731.25835265023, + 98498.41434807747, + null, + 98794.9356782363, + 98498.41434807747, + null, + 98875.12446310604, + 98498.41434807747, + null, + 98845.6917714939, + 98498.41434807747, + null, + 96705.80879914662, + 96614.39435499303, + null, + 96932.7889750408, + 96987.99039298572, + null, + 96884.50148839512, + 96954.2291584623, + null, + 96614.16469347998, + 96471.15884437542, + null, + 96614.16469347998, + 96401.1275917856, + null, + 96666.70966909935, + 96471.15884437542, + null, + 96700.68589331902, + 97076.61983324688, + null, + 96700.68589331902, + 96932.45750407256, + null, + 96700.68589331902, + 96299.26984037684, + null, + 96700.68589331902, + 96395.33356184303, + null, + 96643.9005120101, + 96519.89986547377, + null, + 96541.9681406362, + 96340.059287469, + null, + 96541.9681406362, + 96410.37135011521, + null, + 97087.54671590365, + 97292.93398642252, + null, + 97087.54671590365, + 97219.50145431058, + null, + 96751.41823297429, + 96758.83817622448, + null, + 96751.41823297429, + 96555.4285949727, + null, + 96751.41823297429, + 96557.90997067219, + null, + 97088.14880740178, + 97163.04215667228, + null, + 97088.14880740178, + 97209.09899176516, + null, + 97088.14880740178, + 97121.55585614218, + null, + 97088.14880740178, + 97140.73149429487, + null, + 97088.14880740178, + 97150.90263007056, + null, + 97088.14880740178, + 97154.83922451224, + null, + 97088.14880740178, + 97060.39526332059, + null, + 97088.14880740178, + 97030.8631274604, + null, + 97088.14880740178, + 97192.97755496252, + null, + 97088.14880740178, + 97069.80879175542, + null, + 97088.14880740178, + 97093.05262002055, + null, + 97088.14880740178, + 97139.53818571626, + null, + 97088.14880740178, + 97052.29009434805, + null, + 97088.14880740178, + 97179.82576003372, + null, + 97088.14880740178, + 97170.58382246458, + null, + 97088.14880740178, + 97082.68825227836, + null, + 97088.14880740178, + 97144.30771257113, + null, + 97088.14880740178, + 97121.76766377356, + null, + 97088.14880740178, + 97118.1717151702, + null, + 97088.14880740178, + 97157.3153393121, + null, + 97088.14880740178, + 97050.33862467408, + null, + 97088.14880740178, + 97089.79100594205, + null, + 97088.14880740178, + 97119.19599796484, + null, + 97088.14880740178, + 97192.94699549448, + null, + 97088.14880740178, + 96997.88918754808, + null, + 97088.14880740178, + 97224.20831847242, + null, + 97088.14880740178, + 97187.0630187911, + null, + 97088.14880740178, + 96974.48285660804, + null, + 97088.14880740178, + 97163.31890311823, + null, + 97088.14880740178, + 96961.18408244224, + null, + 97088.14880740178, + 97219.79709559798, + null, + 96691.22132401943, + 96566.86592637633, + null, + 96809.66561279182, + 96741.71992541496, + null, + 96774.85380189044, + 96654.07142456822, + null, + 96774.85380189044, + 96724.52250491997, + null, + 96773.12113524246, + 96673.03202241314, + null, + 96537.39245144221, + 96381.8808988381, + null, + 96537.39245144221, + 96466.11337870629, + null, + 96537.39245144221, + 96184.16322498767, + null, + 96631.60109535737, + 96380.49868274544, + null, + 96479.84660377468, + 96326.5027952699, + null, + 96479.84660377468, + 96296.73893583009, + null, + 96479.84660377468, + 96375.2552069928, + null, + 96479.84660377468, + 96357.78292133319, + null, + 96479.84660377468, + 96286.9291927851, + null, + 96479.84660377468, + 96246.68502634903, + null, + 96957.50399046045, + 97048.72682453197, + null, + 96957.50399046045, + 96851.49702075154, + null, + 96957.50399046045, + 97028.21718236667, + null, + 96957.50399046045, + 96923.14998898802, + null, + 96957.50399046045, + 96876.0341655546, + null, + 96802.58799326436, + 96800.12747201516, + null, + 96802.58799326436, + 96669.10745909809, + null, + 96802.58799326436, + 96746.57388650633, + null, + 97321.50714071444, + 97343.90785178638, + null, + 97321.50714071444, + 97273.1165047572, + null, + 96685.14736048535, + 96482.93915699786, + null, + 96685.14736048535, + 96579.15695246731, + null, + 96659.44539572205, + 96449.674325555, + null, + 96659.44539572205, + 96511.37611718207, + null, + 96659.44539572205, + 96563.68467824848, + null, + 96659.44539572205, + 96603.53985991675, + null, + 96659.44539572205, + 96576.16422373797, + null, + 96659.44539572205, + 96559.07462697028, + null, + 96659.44539572205, + 96667.1457439772, + null, + 96659.44539572205, + 96707.43842318884, + null, + 96400.51278286969, + 96476.29445285945, + null, + 96476.29445285945, + 96480.30494028228, + null, + 96476.29445285945, + 96019.73206058989, + null, + 98932.31091884513, + 98504.94937934296, + null, + 98926.20655583622, + 98504.94937934296, + null, + 98881.20399257346, + 98504.94937934296, + null, + 98775.64297666437, + 98504.94937934296, + null, + 98715.38337956829, + 98504.94937934296, + null, + 98794.9356782363, + 98504.94937934296, + null, + 98873.6590998779, + 98504.94937934296, + null, + 98776.08147395353, + 98504.94937934296, + null, + 98916.08043593282, + 98504.94937934296, + null, + 98833.5386160878, + 98504.94937934296, + null, + 98779.4951496633, + 98504.94937934296, + null, + 98769.87019965112, + 98504.94937934296, + null, + 98763.69912444155, + 98504.94937934296, + null, + 98838.01226486915, + 98504.94937934296, + null, + 98731.25835265023, + 98504.94937934296, + null, + 98504.94937934296, + 98866.40507525875, + null, + 98845.6917714939, + 98504.94937934296, + null, + 96505.43473450017, + 96294.38155504024, + null, + 96505.43473450017, + 96331.3818016878, + null, + 96505.43473450017, + 96244.46002266672, + null, + 96630.14481112546, + 96510.0142862338, + null, + 97164.16435672548, + 97464.08055310673, + null, + 96758.34868779706, + 96649.72165456243, + null, + 96758.34868779706, + 96692.3996161877, + null, + 96814.38545725966, + 96547.35184122685, + null, + 97131.06442362265, + 97144.30771257113, + null, + 97131.06442362265, + 97307.21202722845, + null, + 96587.63072624992, + 96418.39905249886, + null, + 96587.63072624992, + 96399.6880630568, + null, + 96701.44181961339, + 96636.52368680722, + null, + 96701.44181961339, + 96516.19638795867, + null, + 96701.44181961339, + 96653.81040415911, + null, + 96868.32753094017, + 96751.98122261248, + null, + 96485.2623043036, + 96227.75935192012, + null, + 96485.2623043036, + 96249.42668704614, + null, + 96544.79575713704, + 96407.06818233056, + null, + 96544.79575713704, + 96417.2575216783, + null, + 96544.79575713704, + 96467.9741020259, + null, + 96544.79575713704, + 96563.98031394236, + null, + 96544.79575713704, + 96340.90830816297, + null, + 96544.79575713704, + 96517.5416974432, + null, + 96544.79575713704, + 96293.66797750315, + null, + 96544.79575713704, + 96385.24672593034, + null, + 96544.79575713704, + 96452.35418290344, + null, + 96544.79575713704, + 96477.54492869324, + null, + 96544.79575713704, + 96558.94098791521, + null, + 96544.79575713704, + 96519.48340383028, + null, + 96879.06539514555, + 96940.61921871464, + null, + 96879.06539514555, + 96866.34077155108, + null, + 96879.06539514555, + 96843.3061731239, + null, + 96650.5251142157, + 96585.22828871832, + null, + 96650.5251142157, + 96565.27947982831, + null, + 97056.66087663827, + 97317.61147548359, + null, + 97056.66087663827, + 97072.10533498741, + null, + 96726.97841332003, + 96625.08705431149, + null, + 96785.79342645025, + 96853.9052170461, + null, + 96785.79342645025, + 96531.63874364064, + null, + 96785.79342645025, + 96871.44532957648, + null, + 96785.79342645025, + 96745.38836951589, + null, + 96785.79342645025, + 96847.44273347312, + null, + 96785.79342645025, + 96709.64199598243, + null, + 96785.79342645025, + 96775.56196087823, + null, + 96785.79342645025, + 96899.7444137054, + null, + 96719.79877048176, + 96495.57184522109, + null, + 96500.3647531615, + 96306.57092112032, + null, + 96500.3647531615, + 96275.78388021147, + null, + 96500.3647531615, + 96370.03794746965, + null, + 96500.3647531615, + 96292.10169388607, + null, + 96500.3647531615, + 96294.95527136317, + null, + 96920.00376965974, + 96846.80544199326, + null, + 96805.25180958064, + 96851.66207692302, + null, + 96805.25180958064, + 96702.97319735656, + null, + 96511.27388316976, + 96349.6190768548, + null, + 96511.27388316976, + 96258.48571134004, + null, + 97143.69979917424, + 97252.59719313495, + null, + 97143.69979917424, + 97154.83922451224, + null, + 96785.52822630318, + 96548.20028247405, + null, + 96751.7242293975, + 96548.20028247405, + null, + 98932.31091884513, + 98488.89658362548, + null, + 98926.20655583622, + 98488.89658362548, + null, + 98881.20399257346, + 98488.89658362548, + null, + 98873.6590998779, + 98488.89658362548, + null, + 98776.08147395353, + 98488.89658362548, + null, + 98916.08043593282, + 98488.89658362548, + null, + 98775.64297666437, + 98488.89658362548, + null, + 98833.5386160878, + 98488.89658362548, + null, + 98779.4951496633, + 98488.89658362548, + null, + 98769.87019965112, + 98488.89658362548, + null, + 98763.69912444155, + 98488.89658362548, + null, + 98715.38337956829, + 98488.89658362548, + null, + 98838.01226486915, + 98488.89658362548, + null, + 98731.25835265023, + 98488.89658362548, + null, + 98794.9356782363, + 98488.89658362548, + null, + 98875.12446310604, + 98488.89658362548, + null, + 98845.6917714939, + 98488.89658362548, + null, + 96527.82964364873, + 96460.1939559876, + null, + 96527.82964364873, + 96376.62703671993, + null, + 96815.18595416151, + 96703.80801170786, + null, + 96727.94539580634, + 96662.28905885534, + null, + 96877.61190695128, + 96942.23050900064, + null, + 96877.61190695128, + 96810.581309827, + null, + 96674.53853073626, + 96507.31968996138, + null, + 97629.85915951653, + 98302.08638915663, + null, + 97629.85915951653, + 97699.99862934169, + null, + 96896.55417266351, + 96842.11261185446, + null, + 96874.61155723894, + 96826.8605851453, + null, + 96781.7373211774, + 96682.42592128347, + null, + 96781.7373211774, + 96691.51413998567, + null, + 96781.7373211774, + 96632.26025311099, + null, + 96671.25152661269, + 96441.73368686778, + null, + 96934.94898597764, + 97030.17159452607, + null, + 97005.77074047142, + 96947.06423913098, + null, + 96964.78110583073, + 96998.45637942558, + null, + 96640.3915108683, + 96463.23121061604, + null, + 96561.11544487227, + 96508.82058759003, + null, + 96561.11544487227, + 96365.36880602528, + null, + 96561.11544487227, + 96443.84614856978, + null, + 96561.11544487227, + 96381.30359501102, + null, + 96561.11544487227, + 96415.57824478621, + null, + 96561.11544487227, + 96616.32530084581, + null, + 96561.11544487227, + 96464.2147426376, + null, + 96561.11544487227, + 96504.26771421164, + null, + 96561.11544487227, + 96540.14681438672, + null, + 96561.11544487227, + 96400.02414032049, + null, + 96561.11544487227, + 96445.40242258714, + null, + 96787.83212641206, + 96762.63831109481, + null, + 97117.91370467145, + 96987.99039298572, + null, + 97117.91370467145, + 97455.00830613056, + null, + 97117.91370467145, + 97021.7617808701, + null, + 96752.7630566314, + 96774.3551833301, + null, + 97904.95870247688, + 98515.60094273857, + null, + 97904.95870247688, + 97926.52813372754, + null, + 97904.95870247688, + 98306.18967874342, + null, + 97904.95870247688, + 97929.92102411941, + null, + 97904.95870247688, + 98510.79621330468, + null, + 97904.95870247688, + 97635.85467905481, + null, + 97287.61876639193, + 97262.5053951968, + null, + 96977.41506513029, + 96894.29567379835, + null, + 96672.9812022687, + 96367.91849148819, + null, + 96586.3268270632, + 96296.49819133696, + null, + 96797.33031385214, + 96702.411898372, + null, + 96797.33031385214, + 96728.37168468689, + null, + 96770.78381407568, + 96615.69330291961, + null, + 96770.78381407568, + 96726.2537056596, + null, + 96767.69056492882, + 96563.22587738044, + null, + 96916.62444917303, + 96907.9005061301, + null, + 96736.187248987, + 96708.36771981973, + null, + 96736.187248987, + 96698.93064682311, + null, + 96541.43397278279, + 96497.40326486343, + null, + 96167.45474416234, + 96497.40326486343, + null, + 95870.52327035548, + 96497.40326486343, + null, + 96926.74644690406, + 96497.40326486343, + null, + 96878.0650637567, + 96497.40326486343, + null, + 96981.69606403777, + 96960.32727627664, + null, + 96981.69606403777, + 96980.06357552174, + null, + 97757.99670975313, + 97802.4735093547, + null, + 97757.99670975313, + 98238.09327133199, + null, + 97757.99670975313, + 97757.03382286149, + null, + 98127.50014794023, + 97757.99670975313, + null, + 97757.99670975313, + 97770.91510749719, + null, + 97757.99670975313, + 97871.68952338253, + null, + 97740.36484145897, + 97360.13554374868, + null, + 97386.8040364756, + 97800.71562505228, + null, + 96624.01938254207, + 96422.93764887511, + null, + 96974.28350714296, + 96974.71298464685, + null, + 97156.22383491664, + 97144.30771257113, + null, + 97156.22383491664, + 97307.21202722845, + null, + 96954.62064886169, + 96921.55152222289, + null, + 95844.28052724677, + 95302.82737421893, + null, + 95844.28052724677, + 95269.88551286564, + null, + 95844.28052724677, + 95301.58079947837, + null, + 96795.23928720718, + 96619.58665232721, + null, + 96772.56610132441, + 96627.8685334852, + null, + 96821.18944890518, + 96596.30039366569, + null, + 97304.17187437204, + 97678.54460695155, + null, + 97045.7174310999, + 97133.53939254158, + null, + 97031.3088470609, + 97004.26608294796, + null, + 96827.27721865964, + 96682.55990265342, + null, + 96827.27721865964, + 96851.49702075154, + null, + 96827.27721865964, + 97028.21718236667, + null, + 96827.27721865964, + 96923.14998898802, + null, + 96827.27721865964, + 96629.03830283, + null, + 96827.27721865964, + 96876.0341655546, + null, + 96915.11359133502, + 97014.70310115164, + null, + 96603.10265344591, + 96352.69265795489, + null, + 96572.35122948136, + 96451.83502848627, + null, + 96572.35122948136, + 96388.62115022908, + null, + 96572.35122948136, + 96506.360585659, + null, + 96572.35122948136, + 96426.21771977462, + null, + 96562.71215702499, + 96303.38543537387, + null, + 96562.71215702499, + 96395.43569347766, + null, + 96562.71215702499, + 96344.44312350763, + null, + 96669.45654037285, + 96395.43569347766, + null, + 96608.97450213194, + 96407.47366494461, + null, + 96780.12324046777, + 96702.411898372, + null, + 96780.12324046777, + 96728.37168468689, + null, + 96759.8367076845, + 96743.50898743446, + null, + 96759.8367076845, + 96633.1194771479, + null, + 96759.8367076845, + 96635.14748627754, + null, + 96729.07888575827, + 96548.20028247405, + null, + 96451.36476325426, + 96230.63804023997, + null, + 96451.36476325426, + 96214.45179065752, + null, + 96451.36476325426, + 96326.17101723391, + null, + 96451.36476325426, + 96264.4633906848, + null, + 96426.58864894029, + 96204.29166956923, + null, + 96426.58864894029, + 96326.03203539555, + null, + 96426.58864894029, + 96163.50814490586, + null, + 96654.61006042475, + 96597.34646395275, + null, + 96654.61006042475, + 96480.32372855049, + null, + 98932.31091884513, + 98502.39684963804, + null, + 98926.20655583622, + 98502.39684963804, + null, + 98881.20399257346, + 98502.39684963804, + null, + 98873.6590998779, + 98502.39684963804, + null, + 98776.08147395353, + 98502.39684963804, + null, + 98916.08043593282, + 98502.39684963804, + null, + 98775.64297666437, + 98502.39684963804, + null, + 98833.5386160878, + 98502.39684963804, + null, + 98779.4951496633, + 98502.39684963804, + null, + 98769.87019965112, + 98502.39684963804, + null, + 98763.69912444155, + 98502.39684963804, + null, + 98715.38337956829, + 98502.39684963804, + null, + 98838.01226486915, + 98502.39684963804, + null, + 98731.25835265023, + 98502.39684963804, + null, + 98794.9356782363, + 98502.39684963804, + null, + 98875.12446310604, + 98502.39684963804, + null, + 98845.6917714939, + 98502.39684963804, + null, + 96710.20852553143, + 96614.39435499303, + null, + 97529.59178857305, + 97889.61604333931, + null, + 97529.59178857305, + 97800.71562505228, + null, + 97529.59178857305, + 97866.41918264618, + null, + 97529.59178857305, + 97681.43345802989, + null, + 98932.31091884513, + 98492.45967203799, + null, + 98926.20655583622, + 98492.45967203799, + null, + 98881.20399257346, + 98492.45967203799, + null, + 98873.6590998779, + 98492.45967203799, + null, + 98776.08147395353, + 98492.45967203799, + null, + 98916.08043593282, + 98492.45967203799, + null, + 98775.64297666437, + 98492.45967203799, + null, + 98833.5386160878, + 98492.45967203799, + null, + 98779.4951496633, + 98492.45967203799, + null, + 98769.87019965112, + 98492.45967203799, + null, + 98763.69912444155, + 98492.45967203799, + null, + 98715.38337956829, + 98492.45967203799, + null, + 98838.01226486915, + 98492.45967203799, + null, + 98731.25835265023, + 98492.45967203799, + null, + 98794.9356782363, + 98492.45967203799, + null, + 98875.12446310604, + 98492.45967203799, + null, + 98845.6917714939, + 98492.45967203799, + null, + 97097.47714912827, + 97264.75648080865, + null, + 97097.47714912827, + 97257.64186751444, + null, + 96949.62066620833, + 96991.85166421087, + null, + 96534.13113359883, + 96282.02445261383, + null, + 96534.13113359883, + 96359.59055510542, + null, + 96670.03282167818, + 96566.85044926865, + null, + 96690.79996780091, + 96473.19788319884, + null, + 97081.73959470788, + 97154.5299795744, + null, + 96645.28675952984, + 96490.39362234698, + null, + 96645.28675952984, + 96550.42568876117, + null, + 96645.28675952984, + 96419.62931704587, + null, + 96845.49984264001, + 96999.63956845234, + null, + 96845.49984264001, + 96751.08674126698, + null, + 96791.42873166909, + 96697.972959275, + null, + 96848.6019348336, + 96786.71030341781, + null, + 96848.6019348336, + 96839.30379383995, + null, + 96653.33167046132, + 96483.84977258719, + null, + 96798.09730894824, + 96630.67704789808, + null, + 96798.09730894824, + 96741.70102760034, + null, + 96830.20824198317, + 96764.80067828426, + null, + 96830.20824198317, + 96850.49988985712, + null, + 96974.68588435129, + 96831.87898093375, + null, + 96974.68588435129, + 97251.29570214036, + null, + 95329.09589374838, + 95113.59086581854, + null, + 95329.09589374838, + 95755.97930162637, + null, + 95329.09589374838, + 95090.31969622265, + null, + 95329.09589374838, + 94651.26562740092, + null, + 95329.09589374838, + 95107.1092473078, + null, + 95329.09589374838, + 95161.92092814026, + null, + 95329.09589374838, + 95269.77791673102, + null, + 95329.09589374838, + 95130.88387122283, + null, + 95329.09589374838, + 94666.81011124076, + null, + 95329.09589374838, + 95191.5612620277, + null, + 95329.09589374838, + 94632.1940988171, + null, + 95329.09589374838, + 95137.02904450543, + null, + 95329.09589374838, + 95043.44752242198, + null, + 95329.09589374838, + 95149.33302637907, + null, + 95329.09589374838, + 95332.0281496231, + null, + 95329.09589374838, + 95051.6652616009, + null, + 95329.09589374838, + 94894.8557690638, + null, + 95329.09589374838, + 95076.64600235653, + null, + 95329.09589374838, + 95203.48852639197, + null, + 96625.20312840438, + 96425.8921864831, + null, + 96625.20312840438, + 96459.65196670996, + null, + 96583.08101942415, + 96496.92588523787, + null, + 96848.58357963007, + 96811.1950275651, + null, + 96685.21610856292, + 96617.12965504579, + null, + 96685.21610856292, + 96426.74328504282, + null, + 96647.86296497285, + 96419.78444368274, + null, + 96647.86296497285, + 96390.50907439676, + null, + 96667.27172199388, + 96459.36232519409, + null, + 96915.00366898013, + 96916.32646882013, + null, + 95683.09108910317, + 95563.48042896115, + null, + 95683.09108910317, + 95896.24687835442, + null, + 95683.09108910317, + 95420.08235331165, + null, + 95683.09108910317, + 95488.16296761732, + null, + 95683.09108910317, + 95383.02891986139, + null, + 95683.09108910317, + 96008.8630213765, + null, + 95683.09108910317, + 95350.61927221605, + null, + 95683.09108910317, + 94956.26073389688, + null, + 95683.09108910317, + 95518.54082292983, + null, + 95683.09108910317, + 95469.88782918702, + null, + 95683.09108910317, + 95566.89754228467, + null, + 95683.09108910317, + 95612.32634584681, + null, + 95683.09108910317, + 95478.11245689954, + null, + 95683.09108910317, + 95445.99882292173, + null, + 95683.09108910317, + 95589.15203844642, + null, + 95683.09108910317, + 95493.91450694384, + null, + 95683.09108910317, + 95549.1482381842, + null, + 95683.09108910317, + 95521.79485298232, + null, + 95683.09108910317, + 95556.00537198065, + null, + 95683.09108910317, + 95508.91601184626, + null, + 96463.21403142411, + 96320.6147981449, + null, + 96463.21403142411, + 96280.13460877546, + null, + 96463.21403142411, + 96364.24649076725, + null, + 96463.21403142411, + 96287.69376743624, + null, + 96884.74639022724, + 96851.49702075154, + null, + 96884.74639022724, + 96923.14998898802, + null, + 96884.74639022724, + 97028.21718236667, + null, + 96884.74639022724, + 96950.00862634687, + null, + 96884.74639022724, + 96876.0341655546, + null, + 97951.06604016566, + 98121.99524766194, + null, + 97951.06604016566, + 98541.0584592708, + null, + 97951.06604016566, + 98192.76039404483, + null, + 97951.06604016566, + 98615.37677009653, + null, + 97951.06604016566, + 98166.22543913256, + null, + 96603.17113805444, + 96353.00819301896, + null, + 96603.17113805444, + 96521.41109040649, + null, + 95950.60579597944, + 95304.43340131296, + null, + 95950.60579597944, + 95891.16448274408, + null, + 95950.60579597944, + 95763.46923048091, + null, + 95950.60579597944, + 95496.13470559087, + null, + 95950.60579597944, + 95594.81419372423, + null, + 96582.65960470523, + 96520.96063954935, + null, + 96582.65960470523, + 96403.02771334902, + null, + 96582.65960470523, + 96412.24011894669, + null, + 96864.74890763631, + 96917.0504390173, + null, + 96864.74890763631, + 96852.02764313435, + null, + 96864.74890763631, + 96819.88884441124, + null, + 96899.74561231451, + 96856.08674797573, + null, + 96767.43202743762, + 96637.07411913297, + null, + 96767.43202743762, + 96814.95159931354, + null, + 96697.59306293263, + 96595.76290712562, + null, + 96742.76428952735, + 96573.87616748073, + null, + 96742.76428952735, + 96669.5411390961, + null, + 96991.60346683899, + 97051.91473217483, + null, + 96991.60346683899, + 96975.78810501436, + null, + 96991.60346683899, + 96999.63956845234, + null, + 96580.8583468943, + 96516.89264409817, + null, + 96580.8583468943, + 96297.57838530713, + null, + 97026.73007218333, + 96999.63956845234, + null, + 96873.58873560156, + 96880.24502229964, + null, + 96873.58873560156, + 96813.11555393686, + null, + 97214.28101702654, + 97154.5299795744, + null, + 97214.28101702654, + 97327.92623575436, + null, + 97214.28101702654, + 97390.38924442463, + null, + 97214.28101702654, + 97217.68695204523, + null, + 97214.28101702654, + 97256.87195236332, + null, + 97214.28101702654, + 97480.31551961288, + null, + 97214.28101702654, + 97371.5537889121, + null, + 97214.28101702654, + 97455.46534428223, + null, + 96445.14131578358, + 96178.32783293263, + null, + 96445.14131578358, + 96288.25558674558, + null, + 96445.14131578358, + 96312.40887120423, + null, + 96485.30175383571, + 96107.19415896157, + null, + 98188.17126174309, + 98206.17346571821, + null, + 98188.17126174309, + 99076.34984414672, + null, + 98188.17126174309, + 98174.05663849172, + null, + 98188.17126174309, + 99052.2124935182, + null, + 98188.17126174309, + 98336.60564073424, + null, + 98077.79681744472, + 98087.3338631131, + null, + 98087.3338631131, + 98324.36922376543, + null, + 99214.362436891, + 98087.3338631131, + null, + 97264.08371499478, + 97251.29570214036, + null, + 97264.08371499478, + 96831.87898093375, + null, + 97264.08371499478, + 97173.60699000407, + null, + 97264.08371499478, + 97332.19078180875, + null, + 97264.08371499478, + 97130.93518291095, + null, + 97264.08371499478, + 97156.34417751052, + null, + 97264.08371499478, + 97609.3784728033, + null, + 97264.08371499478, + 97117.46051610255, + null, + 97264.08371499478, + 97241.77508500633, + null, + 97264.08371499478, + 97226.72413865545, + null, + 97264.08371499478, + 97196.29476853299, + null, + 97264.08371499478, + 97724.67813450533, + null, + 97264.08371499478, + 97276.15490972344, + null, + 97264.08371499478, + 97701.28948749202, + null, + 97264.08371499478, + 97457.63289470712, + null, + 96567.84669526415, + 96442.07780488765, + null, + 96567.84669526415, + 96319.50737816031, + null, + 96692.64254266855, + 96415.56866223014, + null, + 96692.64254266855, + 96651.65284073511, + null, + 96954.5126568193, + 96831.87898093375, + null, + 96954.5126568193, + 97251.29570214036, + null, + 96442.24721615986, + 96232.86087179637, + null, + 96675.1674827983, + 96606.10302187508, + null, + 96911.71700742826, + 97019.00700298675, + null, + 96559.09520602223, + 96368.48020052267, + null, + 96559.09520602223, + 96333.02852864751, + null, + 96964.90990095795, + 97033.84918681574, + null, + 96368.1267297445, + 96098.29554204186, + null, + 96368.1267297445, + 96303.35813014845, + null, + 96368.1267297445, + 96273.10836010888, + null, + 96368.1267297445, + 96182.82288333018, + null, + 96354.29226248538, + 96357.43491363594, + null, + 96354.29226248538, + 95811.10727705582, + null, + 95704.0871202312, + 95544.22235669453, + null, + 95704.0871202312, + 95595.09996121706, + null, + 95704.0871202312, + 95488.16296761732, + null, + 95704.0871202312, + 95480.30012594952, + null, + 95704.0871202312, + 94956.26073389688, + null, + 95704.0871202312, + 95630.32606664213, + null, + 95704.0871202312, + 95635.66118562045, + null, + 95704.0871202312, + 95518.54082292983, + null, + 95704.0871202312, + 95477.04217425716, + null, + 95704.0871202312, + 95589.15203844642, + null, + 95704.0871202312, + 95566.89754228467, + null, + 95704.0871202312, + 95526.6492594866, + null, + 95704.0871202312, + 95677.11645382897, + null, + 95704.0871202312, + 95633.84325508482, + null, + 95704.0871202312, + 95639.12017602292, + null, + 95704.0871202312, + 95440.45450474763, + null, + 96138.82096969092, + 95896.24687835442, + null, + 96138.82096969092, + 95488.16296761732, + null, + 96702.30104154837, + 96496.37422061864, + null, + 96702.30104154837, + 96582.20480650054, + null, + 95863.078617055, + 95660.56955803781, + null, + 95863.078617055, + 95677.28372527665, + null, + 95863.078617055, + 95433.91832923502, + null, + 95863.078617055, + 95662.78785902, + null, + 95863.078617055, + 95394.9696974827, + null, + 95863.078617055, + 95584.7247328939, + null, + 95863.078617055, + 95655.13837228577, + null, + 96928.70418989572, + 96851.49702075154, + null, + 96928.70418989572, + 97028.21718236667, + null, + 96928.70418989572, + 96923.14998898802, + null, + 96928.70418989572, + 96935.43558121054, + null, + 96928.70418989572, + 96876.0341655546, + null, + 96712.85163544948, + 96577.59886148201, + null, + 96712.85163544948, + 96767.96478692938, + null, + 96210.68445716402, + 95827.30190509118, + null, + 96210.68445716402, + 95996.87226871056, + null, + 96210.68445716402, + 96067.66573265979, + null, + 97643.43217333438, + 97669.8057337455, + null, + 97643.43217333438, + 97840.92878276923, + null, + 97643.43217333438, + 97731.41157443785, + null, + 97643.43217333438, + 98308.24242195391, + null, + 97643.43217333438, + 97462.8360510825, + null, + 97643.43217333438, + 97686.73198942652, + null, + 97643.43217333438, + 97886.2552796078, + null, + 97277.67379891923, + 97731.41157443785, + null, + 97277.67379891923, + 97200.78870621523, + null, + 97277.67379891923, + 97178.27508498696, + null, + 97277.67379891923, + 97347.83353013977, + null, + 97650.21348938807, + 98308.24242195391, + null, + 97650.21348938807, + 97686.73198942652, + null, + 97650.21348938807, + 97731.41157443785, + null, + 97650.21348938807, + 97840.92878276923, + null, + 97650.21348938807, + 97886.2552796078, + null, + 97650.21348938807, + 97462.8360510825, + null, + 97740.36484145897, + 97380.97035221593, + null, + 95912.88033660327, + 95523.31266376271, + null, + 95912.88033660327, + 95677.28372527665, + null, + 95912.88033660327, + 95587.1461297883, + null, + 95912.88033660327, + 95662.78785902, + null, + 95912.88033660327, + 95660.56955803781, + null, + 95912.88033660327, + 95686.28768720085, + null, + 95912.88033660327, + 95449.79737749403, + null, + 95912.88033660327, + 95756.18992749622, + null, + 96875.44858847588, + 96999.63956845234, + null, + 96875.44858847588, + 96751.08674126698, + null, + 97090.26472678532, + 97086.01387112806, + null, + 97090.26472678532, + 97178.8195800679, + null, + 96986.78948010856, + 96779.52312444507, + null, + 96986.78948010856, + 96696.75499455728, + null, + 96986.78948010856, + 97327.92623575436, + null, + 96355.34401319342, + 96245.55891904428, + null, + 96355.34401319342, + 96123.0994416502, + null, + 96355.34401319342, + 96240.73074210918, + null, + 96355.34401319342, + 96194.04975573476, + null, + 96355.34401319342, + 96319.13173343345, + null, + 96355.34401319342, + 96089.44566542986, + null, + 96355.34401319342, + 96232.75989347267, + null, + 96355.34401319342, + 96158.38431777383, + null, + 96355.34401319342, + 96136.68738677424, + null, + 96355.34401319342, + 96145.58360721846, + null, + 96355.34401319342, + 96316.94696925921, + null, + 96355.34401319342, + 96211.57352484837, + null, + 96355.34401319342, + 96211.6334262142, + null, + 96355.34401319342, + 96123.06440631351, + null, + 96355.34401319342, + 96134.85280188615, + null, + 96355.34401319342, + 96182.97559382278, + null, + 98932.31091884513, + 98484.83314214389, + null, + 98926.20655583622, + 98484.83314214389, + null, + 98881.20399257346, + 98484.83314214389, + null, + 98873.6590998779, + 98484.83314214389, + null, + 98776.08147395353, + 98484.83314214389, + null, + 98916.08043593282, + 98484.83314214389, + null, + 98775.64297666437, + 98484.83314214389, + null, + 98833.5386160878, + 98484.83314214389, + null, + 98779.4951496633, + 98484.83314214389, + null, + 98769.87019965112, + 98484.83314214389, + null, + 98763.69912444155, + 98484.83314214389, + null, + 98715.38337956829, + 98484.83314214389, + null, + 98838.01226486915, + 98484.83314214389, + null, + 98731.25835265023, + 98484.83314214389, + null, + 98794.9356782363, + 98484.83314214389, + null, + 98875.12446310604, + 98484.83314214389, + null, + 98845.6917714939, + 98484.83314214389, + null, + 96480.80058099459, + 96287.01295744094, + null, + 96480.80058099459, + 96338.51191040609, + null, + 96582.01402568171, + 96403.5050298606, + null, + 96882.04031575473, + 96875.59396292178, + null, + 96747.25944879792, + 96704.33088316167, + null, + 96747.25944879792, + 96496.97484619204, + null, + 95902.58151687872, + 95797.50684788941, + null, + 95902.58151687872, + 95312.43543057372, + null, + 95902.58151687872, + 95287.49345178728, + null, + 98205.92395781298, + 99076.34984414672, + null, + 98205.92395781298, + 98206.17346571821, + null, + 98205.92395781298, + 99052.2124935182, + null, + 98205.92395781298, + 98336.60564073424, + null, + 97674.61704340234, + 98395.83998663595, + null, + 97674.61704340234, + 97750.79463862568, + null, + 97674.61704340234, + 97657.87281536582, + null, + 96816.42131470822, + 96840.11576563944, + null, + 96625.30102032366, + 96376.43948973017, + null, + 96625.30102032366, + 96495.3723510915, + null, + 96574.89605254125, + 96497.74165956042, + null, + 96755.84845242432, + 96558.50289816254, + null, + 96494.99482485962, + 96382.03130978186, + null, + 96494.99482485962, + 96234.20343302292, + null, + 96494.99482485962, + 96326.90714764067, + null, + 96494.99482485962, + 96357.04479517954, + null, + 96494.99482485962, + 96281.48297221736, + null, + 96639.0949732792, + 96446.30797136255, + null, + 96550.01108530164, + 96225.19846793341, + null, + 96575.31613115326, + 96371.17820751171, + null, + 96693.47055992209, + 96569.07380883017, + null, + 96951.68482481911, + 96950.00862634687, + null, + 96951.68482481911, + 96851.49702075154, + null, + 96951.68482481911, + 96923.14998898802, + null, + 96951.68482481911, + 97028.21718236667, + null, + 96951.68482481911, + 96876.0341655546, + null, + 97105.86446933058, + 97280.91341371622, + null, + 97105.86446933058, + 97100.77454563488, + null, + 97105.86446933058, + 97218.93574565095, + null, + 96683.343489294, + 96565.89355648131, + null, + 96683.343489294, + 96608.2925808813, + null, + 96700.50651493037, + 96593.2717327048, + null, + 96700.50651493037, + 96665.38767001704, + null, + 96700.50651493037, + 96716.35557903055, + null, + 97613.5093531771, + 98308.24242195391, + null, + 97613.5093531771, + 97462.8360510825, + null, + 97613.5093531771, + 97840.92878276923, + null, + 97613.5093531771, + 97731.41157443785, + null, + 97613.5093531771, + 97810.76745979962, + null, + 97632.10124528216, + 98308.24242195391, + null, + 97632.10124528216, + 97686.73198942652, + null, + 97632.10124528216, + 97731.41157443785, + null, + 97632.10124528216, + 97840.92878276923, + null, + 97632.10124528216, + 97886.2552796078, + null, + 97632.10124528216, + 97462.8360510825, + null, + 96831.69055597908, + 96799.07382149246, + null, + 96831.69055597908, + 96769.12236389377, + null, + 96828.99548296859, + 97231.17400973858, + null, + 96828.99548296859, + 96987.0388482267, + null, + 96828.99548296859, + 96774.76905790945, + null, + 98237.07311872549, + 97813.18960016311, + null, + 97082.82303991095, + 97813.18960016311, + null, + 97813.18960016311, + 97556.9433582567, + null, + 97435.85714721317, + 97813.18960016311, + null, + 97813.18960016311, + 99045.69549244376, + null, + 98237.07311872549, + 97805.18437428074, + null, + 97805.18437428074, + 97931.99436757823, + null, + 96877.98110658897, + 97805.18437428074, + null, + 97805.18437428074, + 97949.65290238698, + null, + 97435.85714721317, + 97805.18437428074, + null, + 97805.18437428074, + 99045.69549244376, + null, + 96640.17245945708, + 96437.8955859198, + null, + 96640.17245945708, + 96751.08674126698, + null, + 96640.17245945708, + 96465.63670795687, + null, + 96731.09231285357, + 96585.25834546462, + null, + 96731.09231285357, + 96706.89991097018, + null, + 96731.09231285357, + 96628.1569422172, + null, + 96542.83564645311, + 96318.02244651552, + null, + 96542.83564645311, + 96427.64493117196, + null, + 95421.91735289371, + 94720.26653909442, + null, + 95421.91735289371, + 95165.60765656806, + null, + 95421.91735289371, + 95287.49345178728, + null, + 95421.91735289371, + 94940.55038345407, + null, + 95421.91735289371, + 95179.98869710567, + null, + 95421.91735289371, + 94980.51218130976, + null, + 95421.91735289371, + 95061.79356597684, + null, + 95421.91735289371, + 94945.25304730092, + null, + 95421.91735289371, + 95218.24789975998, + null, + 95421.91735289371, + 96299.29312064001, + null, + 95421.91735289371, + 95092.07362612062, + null, + 95421.91735289371, + 95174.19946651293, + null, + 95421.91735289371, + 95245.56999040095, + null, + 95421.91735289371, + 95253.853946145, + null, + 95421.91735289371, + 95135.57488677127, + null, + 95421.91735289371, + 95102.64566147253, + null, + 95421.91735289371, + 95119.56649114176, + null, + 96053.80630400538, + 95785.50464150192, + null, + 96053.80630400538, + 95930.64975742831, + null, + 96053.80630400538, + 95820.45227237958, + null, + 96053.80630400538, + 95892.37091878834, + null, + 96053.80630400538, + 96174.00550679922, + null, + 96053.80630400538, + 95798.21104623494, + null, + 96053.80630400538, + 95825.84470023373, + null, + 96053.80630400538, + 95872.20122936343, + null, + 96053.80630400538, + 95844.9614653563, + null, + 96053.80630400538, + 96098.29554204186, + null, + 96579.76590487406, + 96340.55814080912, + null, + 96579.76590487406, + 96480.38866600777, + null, + 96621.95641731111, + 96597.4329122248, + null, + 96621.95641731111, + 96454.60099367701, + null, + 96695.15836873942, + 96506.66704797432, + null, + 96467.60417095249, + 96263.45212900022, + null, + 96467.60417095249, + 96207.88317037163, + null, + 96467.60417095249, + 96239.24501049277, + null, + 97510.01962082756, + 97251.29570214036, + null, + 97510.01962082756, + 97502.79670139607, + null, + 97510.01962082756, + 97701.28948749202, + null, + 97510.01962082756, + 97646.15538785749, + null, + 97510.01962082756, + 97931.6145145542, + null, + 97510.01962082756, + 97940.34990023683, + null, + 97510.01962082756, + 97378.81936381076, + null, + 96836.22412942452, + 96721.91479976212, + null, + 96686.3684942306, + 96641.41744060135, + null, + 96686.3684942306, + 96599.08173979487, + null, + 96686.3684942306, + 96422.81562140894, + null, + 96427.1842433544, + 96008.8630213765, + null, + 96427.1842433544, + 96187.153632889, + null, + 96602.9455448259, + 96392.32036753843, + null, + 98341.41820230329, + 98307.31494297627, + null, + 98341.41820230329, + 99000.02707953496, + null, + 98341.41820230329, + 98369.87703318744, + null, + 98341.41820230329, + 98339.77818469383, + null, + 98341.41820230329, + 98427.93641245601, + null, + 98341.41820230329, + 98341.62446619211, + null, + 98341.41820230329, + 98369.9982167125, + null, + 98341.41820230329, + 98268.48803241228, + null, + 98341.41820230329, + 100188.52114244823, + null, + 98341.41820230329, + 99142.62317278316, + null, + 98341.41820230329, + 98448.94646022301, + null, + 98341.41820230329, + 96731.3904431557, + null, + 98341.41820230329, + 98352.28433632314, + null, + 96759.39098466327, + 96621.16848786185, + null, + 96759.39098466327, + 96612.95877130973, + null, + 96759.39098466327, + 96625.94037806959, + null, + 96759.39098466327, + 96605.92981897558, + null, + 96759.39098466327, + 97028.21718236667, + null, + 96759.39098466327, + 96851.49702075154, + null, + 96759.39098466327, + 96825.0533209765, + null, + 96759.39098466327, + 96923.14998898802, + null, + 96759.39098466327, + 96787.91853941279, + null, + 96759.39098466327, + 96725.21853912911, + null, + 96759.39098466327, + 96716.1939460555, + null, + 96759.39098466327, + 96655.75488131844, + null, + 96759.39098466327, + 96648.99550677605, + null, + 96654.14513994215, + 96506.56055945194, + null, + 97094.20573290615, + 97090.90147876457, + null, + 97094.20573290615, + 97384.010881173, + null, + 96534.89129183585, + 96271.12157331877, + null, + 96534.89129183585, + 96358.9276402708, + null, + 97845.68054608024, + 97731.41157443785, + null, + 97845.68054608024, + 97886.2552796078, + null, + 97845.68054608024, + 97462.8360510825, + null, + 97845.68054608024, + 97810.76745979962, + null, + 97845.68054608024, + 98308.24242195391, + null, + 97845.68054608024, + 97840.92878276923, + null, + 97845.68054608024, + 98672.42439807321, + null, + 96714.32338601344, + 96593.2717327048, + null, + 98362.46614454236, + 99009.30827088827, + null, + 98362.46614454236, + 98968.59244384883, + null, + 98362.46614454236, + 98993.06721654031, + null, + 98362.46614454236, + 99007.66770283102, + null, + 98362.46614454236, + 98982.44152343833, + null, + 96555.05094020838, + 96558.77218868272, + null, + 96417.4243506057, + 96190.10973020262, + null, + 96417.4243506057, + 96250.37299645566, + null, + 96417.4243506057, + 96247.07790109511, + null, + 96417.4243506057, + 96302.24175317744, + null, + 96417.4243506057, + 96250.83240914228, + null, + 96417.4243506057, + 96351.475287113, + null, + 96417.4243506057, + 96280.03121427099, + null, + 96417.4243506057, + 96392.52396079557, + null, + 96417.4243506057, + 96324.87273668234, + null, + 96417.4243506057, + 96241.51104963907, + null, + 96624.55409529047, + 96413.63133191726, + null, + 96624.55409529047, + 96408.68879235374, + null, + 96913.27672047008, + 96797.9408935972, + null, + 96913.27672047008, + 96891.75413899266, + null, + 96613.64565810803, + 96341.35508815081, + null, + 97785.31723795002, + 97872.05462730178, + null, + 97785.31723795002, + 98368.3157961383, + null, + 97785.31723795002, + 98341.32886938391, + null, + 96921.65832155356, + 97051.32161185639, + null, + 96574.44776110545, + 96393.24636570562, + null, + 96574.44776110545, + 96769.40892205865, + null, + 96574.44776110545, + 96722.44044323963, + null, + 96574.44776110545, + 96341.18862444937, + null, + 96722.32663398494, + 96646.47732164423, + null, + 96695.61808666041, + 96507.62309485405, + null, + 96695.61808666041, + 96702.3442322927, + null, + 96695.61808666041, + 96787.53069444415, + null, + 96695.61808666041, + 96722.57467608203, + null, + 96695.61808666041, + 96485.20563873606, + null, + 97113.91196565128, + 97263.68940530941, + null, + 97113.91196565128, + 97278.01659724039, + null, + 96976.68282643448, + 96831.87898093375, + null, + 96976.68282643448, + 97251.29570214036, + null, + 96054.400615084, + 95723.36890130429, + null, + 96054.400615084, + 95332.0281496231, + null, + 96278.15788483768, + 95755.97930162637, + null, + 96278.15788483768, + 96034.81351488702, + null, + 96861.56370770434, + 96933.61776383803, + null, + 97796.07080948977, + 98051.83495872519, + null, + 97796.07080948977, + 98282.75113269164, + null, + 97796.07080948977, + 98323.4492928728, + null, + 96611.246762707, + 96597.00315049812, + null, + 96611.246762707, + 96393.29657255062, + null, + 96530.79253993953, + 96290.54005636094, + null, + 96530.79253993953, + 96374.06870812083, + null, + 95901.82083235442, + 95655.13837228577, + null, + 95901.82083235442, + 95584.7247328939, + null, + 95901.82083235442, + 95523.31266376271, + null, + 95901.82083235442, + 95604.78437746258, + null, + 95901.82083235442, + 95677.28372527665, + null, + 95901.82083235442, + 95750.88589559712, + null, + 95901.82083235442, + 95662.78785902, + null, + 95901.82083235442, + 95660.56955803781, + null, + 96962.41375364321, + 96851.49702075154, + null, + 96962.41375364321, + 97028.21718236667, + null, + 96962.41375364321, + 96923.14998898802, + null, + 96962.41375364321, + 96935.43558121054, + null, + 96962.41375364321, + 96876.0341655546, + null, + 96900.49410984787, + 97174.68042421268, + null, + 96900.49410984787, + 96780.36553825779, + null, + 96440.3614255588, + 96348.04132276963, + null, + 96440.3614255588, + 96507.5533367388, + null, + 96440.3614255588, + 96316.94089233372, + null, + 96440.3614255588, + 96406.34759988818, + null, + 96440.3614255588, + 96363.44874937553, + null, + 96440.3614255588, + 96158.53654821051, + null, + 96440.3614255588, + 96216.07768368315, + null, + 96440.3614255588, + 96348.04132276963, + null, + 97200.14076518768, + 97218.93574565095, + null, + 97200.14076518768, + 97100.77454563488, + null, + 97200.14076518768, + 97174.090292395, + null, + 97200.14076518768, + 97280.91341371622, + null, + 97200.14076518768, + 97135.42971177665, + null, + 97200.14076518768, + 97122.97557930264, + null, + 97200.14076518768, + 97423.83529752935, + null, + 97200.14076518768, + 97375.40849798809, + null, + 97200.14076518768, + 97387.39945246921, + null, + 97200.14076518768, + 97357.55932487166, + null, + 97200.14076518768, + 97219.12677975238, + null, + 97200.14076518768, + 97360.80913412399, + null, + 96926.75612600744, + 96928.39803287762, + null, + 97627.58936686792, + 97669.8057337455, + null, + 97627.58936686792, + 97840.92878276923, + null, + 97627.58936686792, + 97731.41157443785, + null, + 97627.58936686792, + 98308.24242195391, + null, + 97627.58936686792, + 97886.2552796078, + null, + 97627.58936686792, + 97462.8360510825, + null, + 97627.58936686792, + 97686.73198942652, + null, + 97563.98838997139, + 97462.8360510825, + null, + 97563.98838997139, + 97731.41157443785, + null, + 97563.98838997139, + 97178.27508498696, + null, + 97563.98838997139, + 97840.92878276923, + null, + 97563.98838997139, + 98308.24242195391, + null, + 96560.8916778657, + 96246.46103177394, + null, + 96560.8916778657, + 96334.44832490938, + null, + 96560.8916778657, + 96384.7612066812, + null, + 96560.8916778657, + 96687.66890433879, + null, + 96729.69482051903, + 96514.01373575524, + null, + 96729.69482051903, + 96559.36666294347, + null, + 97379.01812972916, + 97476.66833626306, + null, + 97379.01812972916, + 97373.24159478948, + null, + 97379.01812972916, + 97399.87460150667, + null, + 97379.01812972916, + 97562.28816473442, + null, + 97379.01812972916, + 97327.25600335708, + null, + 97379.01812972916, + 97433.19547536578, + null, + 97379.01812972916, + 97363.08021092854, + null, + 97379.01812972916, + 97362.61765653682, + null, + 97379.01812972916, + 97683.34960749114, + null, + 97379.01812972916, + 97499.4469867388, + null, + 97379.01812972916, + 97347.82046104649, + null, + 97379.01812972916, + 97543.28758222131, + null, + 97379.01812972916, + 97469.73246031212, + null, + 97379.01812972916, + 97415.07468682253, + null, + 97379.01812972916, + 97598.37960952554, + null, + 97379.01812972916, + 97397.52997943097, + null, + 97379.01812972916, + 97662.15750716739, + null, + 97379.01812972916, + 97135.42971177665, + null, + 97379.01812972916, + 97425.84737468093, + null, + 97379.01812972916, + 97442.60346559418, + null, + 97379.01812972916, + 97329.7050864847, + null, + 97379.01812972916, + 97122.97557930264, + null, + 97379.01812972916, + 97360.80913412399, + null, + 97379.01812972916, + 97478.52336595049, + null, + 97379.01812972916, + 97523.48067645995, + null, + 97379.01812972916, + 97395.43776515307, + null, + 94485.92993817783, + 94173.98426701757, + null, + 94485.92993817783, + 94720.26653909442, + null, + 95302.46268343864, + 94998.21891939109, + null, + 95302.46268343864, + 95779.10418991868, + null, + 95302.46268343864, + 95221.76445761636, + null, + 95505.88427993505, + 95563.21593931832, + null, + 95182.96656441354, + 94927.01228813837, + null, + 95083.07696160226, + 94813.05089936001, + null, + 95343.04710668822, + 95049.81398051501, + null, + 95343.04710668822, + 95811.10727705582, + null, + 95077.9137547502, + 94831.6216521726, + null, + 95457.42674465815, + 95106.99733425377, + null, + 95457.42674465815, + 95584.7247328939, + null, + 95457.42674465815, + 95200.37789406479, + null, + 95457.42674465815, + 95655.13837228577, + null, + 95457.42674465815, + 95433.91832923502, + null, + 95457.42674465815, + 95604.78437746258, + null, + 95457.42674465815, + 95523.31266376271, + null, + 95457.42674465815, + 95234.04044483494, + null, + 95457.42674465815, + 95174.54016347298, + null, + 95457.42674465815, + 94998.56050464817, + null, + 95457.42674465815, + 95358.6847925196, + null, + 95457.42674465815, + 95209.7640142139, + null, + 95457.42674465815, + 95181.22582686505, + null, + 95457.42674465815, + 95750.88589559712, + null, + 95457.42674465815, + 95039.32892818669, + null, + 95457.42674465815, + 95677.28372527665, + null, + 95457.42674465815, + 95161.43568020596, + null, + 95457.42674465815, + 95230.15753292643, + null, + 95457.42674465815, + 95587.1461297883, + null, + 95457.42674465815, + 95205.08422479422, + null, + 95457.42674465815, + 95169.67825607181, + null, + 95457.42674465815, + 95260.99071858512, + null, + 95457.42674465815, + 95662.78785902, + null, + 95457.42674465815, + 95077.42775615962, + null, + 95457.42674465815, + 95660.56955803781, + null, + 95457.42674465815, + 95115.87710930793, + null, + 95457.42674465815, + 94984.96709079483, + null, + 95457.42674465815, + 95249.41713009618, + null, + 95457.42674465815, + 95383.8578284938, + null, + 95457.42674465815, + 95171.9930292263, + null, + 98692.43143064567, + 100266.60888331049, + null, + 98692.43143064567, + 99308.59414610175, + null, + 98692.43143064567, + 98974.75635141051, + null, + 97571.51683328462, + 97495.42818133085, + null, + 97573.23040616274, + 97573.7137546718, + null, + 97722.41636121254, + 97879.1667547636, + null, + 97722.41636121254, + 97752.0332341938, + null, + 97722.41636121254, + 97924.88876319247, + null, + 96711.97005754894, + 96286.84995846129, + null, + 96711.97005754894, + 96816.00002137569, + null, + 96711.97005754894, + 97159.9719032367, + null, + 96711.97005754894, + 96602.25381360695, + null, + 96711.97005754894, + 96541.22800334581, + null, + 96711.97005754894, + 96580.09282569413, + null, + 96711.97005754894, + 96262.58755908567, + null, + 96711.97005754894, + 96477.68388301556, + null, + 96711.97005754894, + 96520.83266213229, + null, + 96711.97005754894, + 96593.26452848932, + null, + 96711.97005754894, + 96652.32078447807, + null, + 96711.97005754894, + 96275.60911911029, + null, + 98202.27708314388, + 98131.84060703998, + null, + 98202.27708314388, + 98116.51550369726, + null, + 98202.27708314388, + 98310.25317294084, + null, + 98202.27708314388, + 98895.86594871506, + null, + 98202.27708314388, + 98307.49097620593, + null, + 97820.56830441093, + 97731.41157443785, + null, + 97820.56830441093, + 97462.8360510825, + null, + 97820.56830441093, + 98308.24242195391, + null, + 97820.56830441093, + 97884.20567526405, + null, + 97820.56830441093, + 97840.92878276923, + null, + 97820.56830441093, + 97810.76745979962, + null, + 98259.11178546748, + 98116.51550369726, + null, + 98259.11178546748, + 98131.84060703998, + null, + 98259.11178546748, + 98310.25317294084, + null, + 98259.11178546748, + 98307.49097620593, + null, + 98259.11178546748, + 98895.86594871506, + null, + 97235.2488696914, + 96999.63956845234, + null, + 97297.7274926661, + 96999.63956845234, + null, + 97293.5203062695, + 97199.92290572009, + null, + 97293.5203062695, + 97155.05669738412, + null, + 98932.31091884513, + 98708.3190257109, + null, + 98708.3190257109, + 99127.37165225792, + null, + 98708.3190257109, + 99097.36317848787, + null, + 98708.3190257109, + 99210.74174635496, + null, + 98708.3190257109, + 98849.06017740154, + null, + 98708.3190257109, + 98931.42109207704, + null, + 98708.3190257109, + 98929.66878863417, + null, + 98708.3190257109, + 98951.6481871395, + null, + 98731.25835265023, + 98708.3190257109, + null, + 97802.97859779913, + 97956.99862073422, + null, + 97802.97859779913, + 97903.59153920232, + null, + 97802.97859779913, + 97860.23120298976, + null, + 97828.5668503006, + 98057.19172951505, + null, + 97828.5668503006, + 98025.37844863573, + null, + 97770.18528248275, + 97995.64472124574, + null, + 97622.16011647054, + 97562.28816473442, + null, + 97622.16011647054, + 97685.86516354248, + null, + 97622.16011647054, + 97728.43536218064, + null, + 97622.16011647054, + 97598.37960952554, + null, + 97622.16011647054, + 97765.6532261492, + null, + 97622.16011647054, + 97803.44920114131, + null, + 97622.16011647054, + 97788.58947764522, + null, + 96887.45716809586, + 96299.29312064001, + null, + 97090.03432996322, + 96763.14768007296, + null, + 97090.03432996322, + 96915.00173927705, + null, + 97697.42848707616, + 97836.10518643745, + null, + 97701.66892815946, + 97688.00073934876, + null, + 97585.79298176516, + 97727.63593382601, + null, + 96505.5934631506, + 96098.29554204186, + null, + 96505.5934631506, + 96303.35813014845, + null, + 96505.5934631506, + 96406.38208067756, + null, + 96505.5934631506, + 95779.10418991868, + null, + 96505.5934631506, + 96174.00550679922, + null, + 97579.4448614383, + 97708.14663611, + null, + 97691.63703682291, + 97718.08452896669, + null, + 96515.60149309262, + 96686.05597598436, + null, + 96515.60149309262, + 96547.64348049424, + null, + 96515.60149309262, + 96672.85908683737, + null, + 96515.60149309262, + 96601.66672785666, + null, + 96515.60149309262, + 96337.24183924371, + null, + 96515.60149309262, + 96471.83044519875, + null, + 96515.60149309262, + 96356.6894447284, + null, + 96515.60149309262, + 96509.91978677841, + null, + 96515.60149309262, + 96367.48296617898, + null, + 96515.60149309262, + 96432.49913903954, + null, + 96515.60149309262, + 96517.06841258459, + null, + 96515.60149309262, + 96452.70654576157, + null, + 96515.60149309262, + 96355.89866425129, + null, + 96515.60149309262, + 96476.90982705473, + null, + 96515.60149309262, + 96614.76664132059, + null, + 96515.60149309262, + 96331.56711893888, + null, + 96515.60149309262, + 96422.76850011421, + null, + 96515.60149309262, + 96487.64826356656, + null, + 96515.60149309262, + 96648.68948995211, + null, + 96515.60149309262, + 96506.86847470027, + null, + 96515.60149309262, + 96641.51720485609, + null, + 96515.60149309262, + 96602.56608801859, + null, + 96515.60149309262, + 96362.82663265921, + null, + 96515.60149309262, + 96444.06436374444, + null, + 96526.16766938524, + 96569.70648172167, + null, + 96542.88730412883, + 96487.07322596954, + null, + 96470.76012407262, + 95826.70973681552, + null, + 95826.70973681552, + 95643.58976360751, + null, + 95826.70973681552, + 95590.93383746725, + null, + 95826.70973681552, + 95607.44304430792, + null, + 95195.45569059276, + 94997.80525697407, + null, + 95229.32767677493, + 94969.456558474, + null, + 94971.08522590312, + 94753.18278928977, + null, + 94971.08522590312, + 94684.56361039644, + null, + 94971.08522590312, + 94746.05696180757, + null, + 95151.27865865134, + 95106.99733425377, + null, + 95151.27865865134, + 94740.64356322309, + null, + 95151.27865865134, + 94928.47293991121, + null, + 95151.27865865134, + 95041.75112957697, + null, + 95151.27865865134, + 94749.29729931387, + null, + 95151.27865865134, + 95433.91832923502, + null, + 95151.27865865134, + 95584.7247328939, + null, + 95151.27865865134, + 94787.770570493, + null, + 95151.27865865134, + 94862.61137248392, + null, + 95151.27865865134, + 95655.13837228577, + null, + 95151.27865865134, + 95077.42775615962, + null, + 95151.27865865134, + 94765.37085488303, + null, + 95151.27865865134, + 95769.4273404822, + null, + 95151.27865865134, + 95394.9696974827, + null, + 95151.27865865134, + 94928.36583728541, + null, + 95151.27865865134, + 95449.79737749403, + null, + 95151.27865865134, + 95200.37789406479, + null, + 95151.27865865134, + 94632.31889352873, + null, + 95151.27865865134, + 94848.32260879887, + null, + 95151.27865865134, + 96731.3904431557, + null, + 95151.27865865134, + 94909.4801901364, + null, + 95151.27865865134, + 94822.21338392912, + null, + 95151.27865865134, + 94772.02659537169, + null, + 95151.27865865134, + 95523.31266376271, + null, + 95151.27865865134, + 94744.73198904234, + null, + 95151.27865865134, + 95234.04044483494, + null, + 95151.27865865134, + 94799.15550751943, + null, + 95151.27865865134, + 95174.54016347298, + null, + 95151.27865865134, + 95331.3487126772, + null, + 95151.27865865134, + 94998.56050464817, + null, + 95151.27865865134, + 94775.49929541259, + null, + 95151.27865865134, + 94819.89007159689, + null, + 95151.27865865134, + 94833.73793561508, + null, + 95151.27865865134, + 94887.7091277814, + null, + 95151.27865865134, + 95358.6847925196, + null, + 95151.27865865134, + 94811.2932859593, + null, + 95151.27865865134, + 95209.7640142139, + null, + 95151.27865865134, + 95604.78437746258, + null, + 95151.27865865134, + 95181.22582686505, + null, + 95151.27865865134, + 95750.88589559712, + null, + 95151.27865865134, + 95165.44960730286, + null, + 95151.27865865134, + 94879.54696254854, + null, + 95151.27865865134, + 94815.49520473366, + null, + 95151.27865865134, + 95002.99557299165, + null, + 95151.27865865134, + 94871.39332069001, + null, + 95151.27865865134, + 95039.32892818669, + null, + 95151.27865865134, + 94881.5729079285, + null, + 95151.27865865134, + 94903.21119163149, + null, + 95151.27865865134, + 95677.28372527665, + null, + 95151.27865865134, + 95161.43568020596, + null, + 95151.27865865134, + 94804.50966103506, + null, + 95151.27865865134, + 94769.12513718361, + null, + 95151.27865865134, + 95230.15753292643, + null, + 95151.27865865134, + 95587.1461297883, + null, + 95151.27865865134, + 95205.08422479422, + null, + 95151.27865865134, + 95634.67329415417, + null, + 95151.27865865134, + 95169.67825607181, + null, + 95151.27865865134, + 95260.99071858512, + null, + 95151.27865865134, + 94756.36115087039, + null, + 95151.27865865134, + 94725.74020589143, + null, + 95151.27865865134, + 94908.2961139866, + null, + 95151.27865865134, + 95587.21671942728, + null, + 95151.27865865134, + 94731.62379447502, + null, + 95151.27865865134, + 95662.78785902, + null, + 95151.27865865134, + 94928.27605842218, + null, + 95151.27865865134, + 94873.87443292578, + null, + 95151.27865865134, + 94827.75783125078, + null, + 95151.27865865134, + 95776.62332951289, + null, + 95151.27865865134, + 94861.48746533257, + null, + 95151.27865865134, + 95660.56955803781, + null, + 95151.27865865134, + 94778.80690072749, + null, + 95151.27865865134, + 95115.87710930793, + null, + 95151.27865865134, + 94984.96709079483, + null, + 95151.27865865134, + 94847.18021121435, + null, + 95151.27865865134, + 94681.21667693715, + null, + 95151.27865865134, + 94686.68850821337, + null, + 95151.27865865134, + 94859.03733117373, + null, + 95151.27865865134, + 94833.66567461635, + null, + 95151.27865865134, + 95249.41713009618, + null, + 95151.27865865134, + 94865.96693864682, + null, + 95151.27865865134, + 94825.48265916525, + null, + 95151.27865865134, + 94928.14149642424, + null, + 95151.27865865134, + 95383.8578284938, + null, + 95151.27865865134, + 95120.7974751264, + null, + 95151.27865865134, + 94943.54808386687, + null, + 95151.27865865134, + 94808.9434265245, + null, + 95151.27865865134, + 95171.9930292263, + null, + 95457.42579193789, + 95165.44960730286, + null, + 95457.42579193789, + 95660.56955803781, + null, + 95457.42579193789, + 95677.28372527665, + null, + 95457.42579193789, + 95433.91832923502, + null, + 95457.42579193789, + 95662.78785902, + null, + 95457.42579193789, + 95655.13837228577, + null, + 95457.42579193789, + 95394.9696974827, + null, + 95457.42579193789, + 95584.7247328939, + null, + 96625.91253011048, + 96695.73403401808, + null, + 96625.91253011048, + 96735.6625162933, + null, + 96625.91253011048, + 96720.60531021802, + null, + 96625.91253011048, + 96564.020422332, + null, + 96625.91253011048, + 96823.59189171705, + null, + 96625.91253011048, + 96630.43975177128, + null, + 96625.91253011048, + 96563.44435641338, + null, + 96625.91253011048, + 96615.96874056084, + null, + 96650.26887770933, + 96465.01599917706, + null, + 95953.43758977612, + 96286.84995846129, + null, + 95953.43758977612, + 96009.67472811212, + null, + 95953.43758977612, + 95126.694711038, + null, + 95953.43758977612, + 95630.2045767319, + null, + 95953.43758977612, + 96089.02815632267, + null, + 95953.43758977612, + 96262.58755908567, + null, + 95953.43758977612, + 96067.89889393673, + null, + 95953.43758977612, + 95766.15219288901, + null, + 95953.43758977612, + 95729.41349529594, + null, + 95953.43758977612, + 96275.60911911029, + null, + 95953.43758977612, + 95620.76960465858, + null, + 95953.43758977612, + 95734.53772507152, + null, + 96414.9173008834, + 96089.02815632267, + null, + 96414.9173008834, + 96217.61152393422, + null, + 96657.44331032071, + 96518.38805351868, + null, + 96657.44331032071, + 96495.48054519108, + null, + 96657.44331032071, + 96608.2925808813, + null, + 96657.44331032071, + 96432.90834803335, + null, + 96657.44331032071, + 96413.40389535019, + null, + 96774.09206013042, + 96609.85637492496, + null, + 98185.39228188255, + 98132.66739592743, + null, + 98185.39228188255, + 98184.11582898955, + null, + 96866.57408532791, + 96737.38123752185, + null, + 96866.57408532791, + 96331.92386954006, + null, + 98237.07311872549, + 97930.86589331932, + null, + 97930.86589331932, + 97949.65290238698, + null, + 97435.85714721317, + 97930.86589331932, + null, + 97930.86589331932, + 99045.69549244376, + null, + 96177.19856058512, + 95677.28372527665, + null, + 96177.19856058512, + 95655.13837228577, + null, + 96177.19856058512, + 95584.7247328939, + null, + 96177.19856058512, + 95769.4273404822, + null, + 96177.19856058512, + 95776.62332951289, + null, + 96177.19856058512, + 95587.21671942728, + null, + 96177.19856058512, + 95662.78785902, + null, + 96177.19856058512, + 95660.56955803781, + null, + 97176.04373508078, + 97054.61849023897, + null, + 97153.25597882869, + 96988.38709557017, + null, + 97153.25597882869, + 96999.63956845234, + null, + 95838.54674259001, + 95651.72246340426, + null, + 95838.54674259001, + 95685.44647783595, + null, + 95838.54674259001, + 95599.68294597721, + null, + 95838.54674259001, + 95603.36657863882, + null, + 96532.8341303869, + 97330.30197024634, + null, + 96532.8341303869, + 96341.35508815081, + null, + 98932.31091884513, + 98997.74271020413, + null, + 98926.20655583622, + 98997.74271020413, + null, + 98881.20399257346, + 98997.74271020413, + null, + 98873.6590998779, + 98997.74271020413, + null, + 98776.08147395353, + 98997.74271020413, + null, + 98916.08043593282, + 98997.74271020413, + null, + 98775.64297666437, + 98997.74271020413, + null, + 98833.5386160878, + 98997.74271020413, + null, + 98779.4951496633, + 98997.74271020413, + null, + 98769.87019965112, + 98997.74271020413, + null, + 98763.69912444155, + 98997.74271020413, + null, + 98715.38337956829, + 98997.74271020413, + null, + 98838.01226486915, + 98997.74271020413, + null, + 98731.25835265023, + 98997.74271020413, + null, + 98794.9356782363, + 98997.74271020413, + null, + 98875.12446310604, + 98997.74271020413, + null, + 98845.6917714939, + 98997.74271020413, + null, + 99362.59751327203, + 99482.36791712252, + null, + 99362.59751327203, + 99652.18317202266, + null, + 99276.9196152002, + 99507.27055929118, + null, + 99226.83402346286, + 99448.66639839622, + null, + 99226.83402346286, + 99444.04255201604, + null, + 99522.14887276676, + 99707.96750950199, + null, + 99522.14887276676, + 99813.91502764664, + null, + 99522.14887276676, + 99805.25726658729, + null, + 97465.09518672612, + 97523.91805244905, + null, + 96648.9363700922, + 96496.92588523787, + null, + 97362.29677323089, + 97387.44466697019, + null, + 97352.27827718583, + 97325.35357186201, + null, + 97352.27827718583, + 97349.58185053393, + null, + 97352.27827718583, + 97397.94499439833, + null, + 97314.13790026988, + 97295.9111719528, + null, + 95480.79812433262, + 95655.13837228577, + null, + 95480.79812433262, + 95604.78437746258, + null, + 95480.79812433262, + 95234.04044483494, + null, + 95480.79812433262, + 95584.7247328939, + null, + 95480.79812433262, + 95358.6847925196, + null, + 95480.79812433262, + 95677.28372527665, + null, + 95480.79812433262, + 95587.1461297883, + null, + 95480.79812433262, + 95662.78785902, + null, + 95480.79812433262, + 95660.56955803781, + null, + 95480.79812433262, + 95312.95855588862, + null, + 95480.79812433262, + 95249.43208736234, + null, + 95480.79812433262, + 95120.7974751264, + null, + 95480.79812433262, + 95249.13612521146, + null, + 95480.79812433262, + 95383.8578284938, + null, + 98932.31091884513, + 98668.36393861687, + null, + 98926.20655583622, + 98668.36393861687, + null, + 98881.20399257346, + 98668.36393861687, + null, + 98873.6590998779, + 98668.36393861687, + null, + 98776.08147395353, + 98668.36393861687, + null, + 98916.08043593282, + 98668.36393861687, + null, + 98775.64297666437, + 98668.36393861687, + null, + 98833.5386160878, + 98668.36393861687, + null, + 98779.4951496633, + 98668.36393861687, + null, + 98769.87019965112, + 98668.36393861687, + null, + 98763.69912444155, + 98668.36393861687, + null, + 98715.38337956829, + 98668.36393861687, + null, + 98838.01226486915, + 98668.36393861687, + null, + 98731.25835265023, + 98668.36393861687, + null, + 98794.9356782363, + 98668.36393861687, + null, + 98875.12446310604, + 98668.36393861687, + null, + 98845.6917714939, + 98668.36393861687, + null, + 97838.4175081634, + 97909.5256296521, + null, + 97754.15865943547, + 97671.5271836395, + null, + 97387.10298484987, + 97320.9751458158, + null, + 97387.10298484987, + 97288.32585044665, + null, + 97387.10298484987, + 97287.42371834854, + null, + 97387.10298484987, + 97331.31191752062, + null, + 97387.10298484987, + 97174.68042421268, + null, + 97715.03542524244, + 97753.86362578296, + null, + 97428.2088550206, + 97209.09899176516, + null, + 97428.2088550206, + 97307.21202722845, + null, + 97717.63943455054, + 97462.8360510825, + null, + 97717.63943455054, + 97731.41157443785, + null, + 97717.63943455054, + 97178.27508498696, + null, + 97717.63943455054, + 97840.92878276923, + null, + 97717.63943455054, + 98308.24242195391, + null, + 97512.25460842131, + 97544.31371711488, + null, + 97068.03081922044, + 96799.07382149246, + null, + 97068.03081922044, + 96769.12236389377, + null, + 97443.46951981564, + 97269.95524537595, + null, + 97329.89355877684, + 97154.5299795744, + null, + 97329.89355877684, + 97136.05458186644, + null, + 97329.89355877684, + 97327.92623575436, + null, + 97329.89355877684, + 97217.68695204523, + null, + 97329.89355877684, + 97256.87195236332, + null, + 97329.89355877684, + 97480.31551961288, + null, + 97329.89355877684, + 97371.5537889121, + null, + 97329.89355877684, + 97455.46534428223, + null, + 97136.55546326986, + 97519.79955646732, + null, + 97605.64203060168, + 97519.79955646732, + null, + 97651.32746016643, + 97519.79955646732, + null, + 97499.57548817585, + 97519.79955646732, + null, + 97615.00090956, + 97519.79955646732, + null, + 97672.92128722146, + 97519.79955646732, + null, + 97844.94572301708, + 97836.10112215702, + null, + 97844.94572301708, + 97912.74332734982, + null, + 97844.94572301708, + 98032.12952113833, + null, + 97844.94572301708, + 97812.02122999499, + null, + 97678.1464428742, + 97676.13557284081, + null, + 97678.1464428742, + 97591.89461364681, + null, + 97678.1464428742, + 97812.02122999499, + null, + 97678.1464428742, + 97576.71628926601, + null, + 97678.1464428742, + 97867.82302155967, + null, + 98526.54572504741, + 99218.7411313723, + null, + 98430.07797759793, + 99050.31283061483, + null, + 98430.07797759793, + 98655.12240236765, + null, + 97500.16873207534, + 97608.77421579452, + null, + 97500.16873207534, + 97263.68940530941, + null, + 97500.16873207534, + 97544.46873198576, + null, + 97500.16873207534, + 97278.01659724039, + null, + 97500.16873207534, + 97555.47422544137, + null, + 97500.16873207534, + 97628.07066642634, + null, + 97500.16873207534, + 97445.71186335788, + null, + 96981.97321773143, + 96299.29312064001, + null, + 94617.5959694371, + 94178.18816955703, + null, + 94617.5959694371, + 94535.23441251172, + null, + 94617.5959694371, + 94453.30770379661, + null, + 94617.5959694371, + 93974.14793620263, + null, + 94617.5959694371, + 94555.46811316232, + null, + 95301.3607194778, + 95173.1058684115, + null, + 95227.77092314835, + 95061.07101043357, + null, + 95276.97798041081, + 95125.54161959406, + null, + 94853.13681242797, + 94642.13333896926, + null, + 94853.13681242797, + 94577.33860504878, + null, + 94853.13681242797, + 94677.93437523032, + null, + 94853.13681242797, + 94598.57761381929, + null, + 94853.13681242797, + 94704.25329936552, + null, + 96019.73206058989, + 95898.80369104634, + null, + 96019.73206058989, + 95859.76101831674, + null, + 96019.73206058989, + 95488.16296761732, + null, + 96019.73206058989, + 95812.8085668192, + null, + 96019.73206058989, + 95924.0510925754, + null, + 96019.73206058989, + 95896.15100446602, + null, + 95949.12131101474, + 95824.9408665822, + null, + 95997.16066474574, + 95758.1497186825, + null, + 95427.65531943327, + 95253.24133716796, + null, + 95427.65531943327, + 95156.66415912467, + null, + 95427.65531943327, + 95285.10107414321, + null, + 95427.65531943327, + 95193.57186281015, + null, + 95427.65531943327, + 95101.30623358215, + null, + 95427.65531943327, + 95288.3668867181, + null, + 95427.65531943327, + 95214.81168632788, + null, + 95427.65531943327, + 95178.04877880761, + null, + 95427.65531943327, + 95238.4612240695, + null, + 96645.63733017922, + 96851.49702075154, + null, + 96645.63733017922, + 97028.21718236667, + null, + 96645.63733017922, + 96923.14998898802, + null, + 96645.63733017922, + 96935.43558121054, + null, + 96645.63733017922, + 96876.0341655546, + null, + 96622.44802724649, + 96851.49702075154, + null, + 96622.44802724649, + 97028.21718236667, + null, + 96622.44802724649, + 96923.14998898802, + null, + 96622.44802724649, + 96950.00862634687, + null, + 96622.44802724649, + 96876.0341655546, + null, + 96637.20944908995, + 96950.00862634687, + null, + 96637.20944908995, + 96851.49702075154, + null, + 96637.20944908995, + 96923.14998898802, + null, + 96637.20944908995, + 97028.21718236667, + null, + 96637.20944908995, + 96876.0341655546, + null, + 96402.067408069, + 96585.10907993346, + null, + 96396.69753430235, + 96390.6462111492, + null, + 96396.69753430235, + 96213.5014235769, + null, + 96935.23882458691, + 96884.94841533682, + null, + 96935.23882458691, + 96843.19044479831, + null, + 96935.23882458691, + 97462.8360510825, + null, + 96935.23882458691, + 96976.72186679111, + null, + 96582.14749337402, + 96565.89355648131, + null, + 96582.14749337402, + 96668.19262520867, + null, + 96582.14749337402, + 96637.07411913297, + null, + 96582.14749337402, + 96608.2925808813, + null, + 96582.14749337402, + 96580.09282569413, + null, + 96582.14749337402, + 96527.43586088887, + null, + 96582.14749337402, + 96519.96662272481, + null, + 96582.14749337402, + 96553.27398847301, + null, + 96871.32320011256, + 97178.27508498696, + null, + 96871.32320011256, + 96843.19044479831, + null, + 96963.41552878823, + 97462.8360510825, + null, + 96963.41552878823, + 97159.9719032367, + null, + 96963.41552878823, + 96957.88158177114, + null, + 96963.41552878823, + 97178.27508498696, + null, + 96963.41552878823, + 96816.00002137569, + null, + 96963.41552878823, + 96976.72186679111, + null, + 96210.59439600962, + 96076.39327665615, + null, + 96028.2888002032, + 96254.52857694228, + null, + 96028.2888002032, + 96282.33518668677, + null, + 96028.2888002032, + 96286.57370428348, + null, + 95489.22963590887, + 95362.96257854867, + null, + 95828.46924619444, + 95762.442921347, + null, + 95828.46924619444, + 96331.92386954006, + null, + 95482.44304451962, + 95381.11813749094, + null, + 95066.06523441382, + 94883.10635112034, + null, + 95066.06523441382, + 95025.3184603646, + null, + 95066.06523441382, + 94949.60061790438, + null, + 95066.06523441382, + 94776.97725616019, + null, + 95066.06523441382, + 94991.55991969479, + null, + 95066.06523441382, + 94952.53942297342, + null, + 95066.06523441382, + 94891.32234489628, + null, + 95066.06523441382, + 94826.4909333284, + null, + 95505.50501741502, + 95394.6894172284, + null, + 95505.50501741502, + 95529.53434892082, + null, + 95505.50501741502, + 95613.36862572782, + null, + 95505.50501741502, + 95440.45332612093, + null, + 95505.50501741502, + 95428.17340896445, + null, + 95397.10356995185, + 95290.12180962758, + null, + 95504.42605081353, + 95617.83943211543, + null, + 95949.84954429526, + 96409.68164770227, + null, + 95510.02889292239, + 95506.86434038139, + null, + 95510.02889292239, + 95509.51889809627, + null, + 96156.074298552, + 95991.33991024262, + null, + 96156.074298552, + 96055.57318060596, + null, + 96344.83157727902, + 96496.92588523787, + null, + 96192.16190696902, + 96097.44273427612, + null, + 95914.16367038043, + 95848.90900012582, + null, + 95745.4694082097, + 95563.21593931832, + null, + 95745.4694082097, + 95668.59789817403, + null, + 96072.76062132008, + 95969.73089143247, + null, + 96296.57518040262, + 96307.29746684979, + null, + 96237.23840449286, + 96110.446524941, + null, + 96100.16964314734, + 96018.1989928102, + null, + 96100.16964314734, + 95916.88717086082, + null, + 96577.18594978366, + 96851.49702075154, + null, + 96577.18594978366, + 97028.21718236667, + null, + 96577.18594978366, + 96923.14998898802, + null, + 96577.18594978366, + 96935.43558121054, + null, + 96577.18594978366, + 96876.0341655546, + null, + 96564.47351993735, + 96851.49702075154, + null, + 96564.47351993735, + 97028.21718236667, + null, + 96564.47351993735, + 96923.14998898802, + null, + 96564.47351993735, + 96935.43558121054, + null, + 96564.47351993735, + 96876.0341655546, + null, + 96768.15156923435, + 96851.49702075154, + null, + 96768.15156923435, + 97028.21718236667, + null, + 96768.15156923435, + 96923.14998898802, + null, + 96768.15156923435, + 96935.43558121054, + null, + 96768.15156923435, + 96876.0341655546, + null, + 96405.88036665124, + 96259.9088278092, + null, + 96370.19303826737, + 96265.8396473732, + null, + 96370.19303826737, + 96425.09656179631, + null, + 97545.38850460328, + 97090.90147876457, + null, + 97545.38850460328, + 97384.010881173, + null, + 96249.72659060232, + 96286.84995846129, + null, + 96249.72659060232, + 96089.02815632267, + null, + 96249.72659060232, + 96009.67472811212, + null, + 96249.72659060232, + 96067.89889393673, + null, + 97705.70304050583, + 98146.26357853966, + null, + 97705.70304050583, + 98310.25317294084, + null, + 97705.70304050583, + 98116.51550369726, + null, + 97705.70304050583, + 98131.84060703998, + null, + 96647.32091240633, + 96740.13124735563, + null, + 96647.32091240633, + 96595.41352686423, + null, + 96647.32091240633, + 96654.64167636221, + null, + 96647.32091240633, + 96513.8684829462, + null, + 96573.99731256816, + 96544.75552813962, + null, + 96573.99731256816, + 96711.99932746214, + null, + 96573.99731256816, + 96702.77287733635, + null, + 96573.99731256816, + 96282.33518668677, + null, + 96573.99731256816, + 96799.07382149246, + null, + 96573.99731256816, + 96622.89110754011, + null, + 96573.99731256816, + 96769.12236389377, + null, + 96573.99731256816, + 96650.8577845288, + null, + 96573.99731256816, + 96254.52857694228, + null, + 96573.99731256816, + 96660.99210432713, + null, + 96573.99731256816, + 96286.57370428348, + null, + 96573.99731256816, + 96495.89435277808, + null, + 94888.48155674861, + 94583.67896061894, + null, + 94888.48155674861, + 94658.26682954257, + null, + 94888.48155674861, + 94620.28434976013, + null, + 94888.48155674861, + 94669.0910072042, + null, + 94888.48155674861, + 94620.28434976013, + null, + 96398.60994140033, + 96251.15095739174, + null, + 96398.60994140033, + 96304.23939903782, + null, + 96398.60994140033, + 96226.01518961282, + null, + 96398.60994140033, + 96320.65693732718, + null, + 96398.60994140033, + 96277.56204314627, + null, + 97087.09725827706, + 97635.0392809572, + null, + 95858.67269394762, + 95674.83501563323, + null, + 95858.67269394762, + 95736.15092677393, + null, + 95858.67269394762, + 95786.53743239374, + null, + 94889.58026607656, + 94663.42415631165, + null, + 94889.58026607656, + 94690.05816224274, + null, + 94889.58026607656, + 94529.54887138213, + null, + 94889.58026607656, + 94573.33511403036, + null, + 94889.58026607656, + 94595.57719945294, + null, + 94889.58026607656, + 94607.51235993573, + null, + 94889.58026607656, + 94666.84271139963, + null, + 94889.58026607656, + 95312.43543057372, + null, + 94889.58026607656, + 94624.39247192521, + null, + 94889.58026607656, + 94549.16204838405, + null, + 94889.58026607656, + 94491.8662499373, + null, + 94889.58026607656, + 95287.49345178728, + null, + 94889.58026607656, + 94952.55129948242, + null, + 94889.58026607656, + 95061.79356597684, + null, + 94889.58026607656, + 94980.51218130976, + null, + 94889.58026607656, + 94945.25304730092, + null, + 94889.58026607656, + 94615.64321919113, + null, + 94889.58026607656, + 94720.26653909442, + null, + 94889.58026607656, + 94522.78269468108, + null, + 94889.58026607656, + 94562.82084434494, + null, + 94889.58026607656, + 94593.73117840412, + null, + 94889.58026607656, + 94579.78144755292, + null, + 95744.0722676581, + 95571.72373244617, + null, + 96539.2876843912, + 96621.22573818848, + null, + 96488.71126504915, + 96470.6891870684, + null, + 96574.07459048775, + 96831.87898093375, + null, + 94476.68554039652, + 94666.81011124076, + null, + 94476.68554039652, + 94228.39378501002, + null, + 94476.68554039652, + 94061.36529939531, + null, + 94476.68554039652, + 94022.25691774377, + null, + 94476.68554039652, + 94052.96379103974, + null, + 94476.68554039652, + 94651.26562740092, + null, + 94476.68554039652, + 94285.83388955456, + null, + 94476.68554039652, + 94165.01695821773, + null, + 94476.68554039652, + 94632.1940988171, + null, + 94476.68554039652, + 94230.32019308097, + null, + 94952.05763640381, + 95332.0281496231, + null, + 94952.05763640381, + 94894.8557690638, + null, + 94952.05763640381, + 94662.60718160463, + null, + 94960.14806309502, + 94700.17153728654, + null, + 95868.93237525053, + 95735.32005357998, + null, + 95868.93237525053, + 95692.66532182253, + null, + 95844.61270594754, + 95665.0896772998, + null, + 95844.61270594754, + 95717.17249319649, + null, + 94066.51607848209, + 93771.64901934502, + null, + 93976.18462674941, + 93792.45591967623, + null, + 93976.18462674941, + 93697.6920875846, + null, + 93976.18462674941, + 93762.18661659818, + null, + 96358.25249911078, + 96281.32850564222, + null, + 96358.25249911078, + 96253.68359021118, + null, + 96358.25249911078, + 96325.10446742897, + null, + 96358.25249911078, + 96337.60461817843, + null, + 96358.25249911078, + 96325.43171609768, + null, + 96358.25249911078, + 96171.94045814378, + null, + 96358.25249911078, + 96236.30172944344, + null, + 96358.25249911078, + 96372.84433195303, + null, + 96358.25249911078, + 96416.50330670876, + null, + 96358.25249911078, + 96461.59608065485, + null, + 96321.80373689976, + 96187.06552247319, + null, + 96114.11946368766, + 96046.32402735324, + null, + 96114.11946368766, + 96093.98837699907, + null, + 96114.11946368766, + 95954.38507019526, + null, + 96114.11946368766, + 96049.50535520805, + null, + 96114.11946368766, + 95998.29219547354, + null, + 96114.11946368766, + 95970.68481188625, + null, + 96114.11946368766, + 95908.75378900667, + null, + 96114.11946368766, + 96010.59585795696, + null, + 96114.11946368766, + 95963.09163288568, + null, + 95768.86401324993, + 95614.9761433545, + null, + 95768.86401324993, + 95473.6830691956, + null, + 95768.86401324993, + 95625.48730067638, + null, + 95768.86401324993, + 95504.31384644122, + null, + 95768.86401324993, + 95585.85264252442, + null, + 95768.86401324993, + 95698.5799699456, + null, + 95768.86401324993, + 95371.62884591159, + null, + 95768.86401324993, + 95361.67422421975, + null, + 95768.86401324993, + 95619.42230416782, + null, + 95768.86401324993, + 95663.18864254322, + null, + 95768.86401324993, + 96284.55056147317, + null, + 95768.86401324993, + 95559.6425612621, + null, + 95768.86401324993, + 95412.5939248789, + null, + 95768.86401324993, + 95399.43047732508, + null, + 96245.67690227392, + 96134.90709775368, + null, + 96245.67690227392, + 96196.76537660908, + null, + 96245.67690227392, + 96165.55211580031, + null, + 96245.67690227392, + 96220.62136154641, + null, + 96245.67690227392, + 96083.77668077107, + null, + 96245.67690227392, + 96256.84714815787, + null, + 96245.67690227392, + 96145.48967947123, + null, + 96245.67690227392, + 96140.70858890428, + null, + 97449.2228277016, + 97462.8360510825, + null, + 97449.2228277016, + 97731.41157443785, + null, + 97449.2228277016, + 97178.27508498696, + null, + 97449.2228277016, + 97840.92878276923, + null, + 97449.2228277016, + 98308.24242195391, + null, + 96919.80862750238, + 97462.8360510825, + null, + 96919.80862750238, + 97018.01929554026, + null, + 96919.80862750238, + 96861.82056450349, + null, + 96919.80862750238, + 96848.85035393931, + null, + 96919.80862750238, + 96886.03757990844, + null, + 95714.35022151601, + 95472.53473339273, + null, + 95714.35022151601, + 95592.3590579154, + null, + 95714.35022151601, + 95577.60998891103, + null, + 96636.93741201112, + 96769.12236389377, + null, + 96517.34543879435, + 96402.25288687303, + null, + 97082.82303991095, + 97008.15894636505, + null, + 97008.15894636505, + 97556.9433582567, + null, + 96807.74423569046, + 96999.63956845234, + null, + 96807.74423569046, + 96931.73639236027, + null, + 95387.72814612064, + 95307.82377822268, + null, + 95387.72814612064, + 95312.76274987488, + null, + 95387.72814612064, + 95246.617811933, + null, + 95387.72814612064, + 95202.42610294092, + null, + 95418.41077655359, + 95189.33791646003, + null, + 95418.41077655359, + 95279.44711489225, + null, + 95472.67938384521, + 95246.69781047499, + null, + 95472.67938384521, + 95324.53269217705, + null, + 98114.52152816013, + 98252.20125651163, + null, + 98114.52152816013, + 98157.37070871185, + null, + 98111.97280969669, + 98357.10377182142, + null, + 98111.97280969669, + 98324.73469132032, + null, + 98111.97280969669, + 98295.76754954316, + null, + 97753.21078683695, + 97105.86251341687, + null, + 98142.06219207752, + 98258.1504517649, + null, + 98142.06219207752, + 98246.01088839823, + null, + 97488.66800355395, + 97429.76144404312, + null, + 98144.87686544789, + 98240.64626714814, + null, + 98144.87686544789, + 98321.03221855451, + null, + 98144.87686544789, + 98271.68050762633, + null, + 96528.57510021586, + 96496.92588523787, + null, + 96901.55938078823, + 97251.29570214036, + null, + 94256.97992301545, + 93752.3312236433, + null, + 94256.97992301545, + 93756.90772025482, + null, + 94390.62485294472, + 95488.16296761732, + null, + 94390.62485294472, + 93953.20323974107, + null, + 94390.62485294472, + 94091.98744666459, + null, + 94390.62485294472, + 94956.26073389688, + null, + 94390.62485294472, + 94124.10076790105, + null, + 94390.62485294472, + 94087.37147599955, + null, + 94390.62485294472, + 94126.81383111597, + null, + 94390.62485294472, + 94013.12054823448, + null, + 94390.62485294472, + 94172.54386589286, + null, + 94390.62485294472, + 94029.39526780658, + null, + 94390.62485294472, + 94131.47438278008, + null, + 94390.62485294472, + 93941.60029047483, + null, + 94474.18506646619, + 94051.09597981113, + null, + 96818.20189981317, + 96851.49702075154, + null, + 96818.20189981317, + 97028.21718236667, + null, + 96818.20189981317, + 96923.14998898802, + null, + 96818.20189981317, + 96935.43558121054, + null, + 96818.20189981317, + 96876.0341655546, + null, + 96638.80405463175, + 96692.12311657275, + null, + 95888.00973910451, + 95777.45510873004, + null, + 95799.49717635973, + 95708.6636061905, + null, + 95799.49717635973, + 95660.79157564534, + null, + 95761.360020285, + 95632.78201832197, + null, + 95802.05331128874, + 95733.23099723773, + null, + 95802.05331128874, + 95827.30190509118, + null, + 95802.05331128874, + 95625.2334428732, + null, + 96973.49939574185, + 97158.96712629191, + null, + 96973.49939574185, + 96880.93597578706, + null, + 96973.49939574185, + 96861.82056450349, + null, + 96973.49939574185, + 97462.8360510825, + null, + 96633.26092124682, + 96690.8587748414, + null, + 96633.26092124682, + 96662.49126502928, + null, + 96633.26092124682, + 96745.05165244982, + null, + 97052.8332660283, + 96880.93597578706, + null, + 97052.8332660283, + 96861.82056450349, + null, + 97052.8332660283, + 97158.96712629191, + null, + 97052.8332660283, + 97124.39568027973, + null, + 97011.81451068369, + 97095.89811358032, + null, + 97011.81451068369, + 96769.12236389377, + null, + 97113.70285257122, + 97095.89811358032, + null, + 97113.70285257122, + 97112.51508375412, + null, + 97210.3004088966, + 97438.94706894625, + null, + 97210.3004088966, + 97298.1281701925, + null, + 97210.3004088966, + 97162.94378004716, + null, + 97210.3004088966, + 97368.28761209213, + null, + 97210.3004088966, + 97145.35276682033, + null, + 97188.26787866931, + 97198.43320497262, + null, + 97188.26787866931, + 97245.58511308912, + null, + 97188.26787866931, + 97404.46242057864, + null, + 97188.26787866931, + 97240.73904594999, + null, + 97188.26787866931, + 97394.17633422943, + null, + 97188.26787866931, + 97150.0365297859, + null, + 97056.56327204366, + 97051.91473217483, + null, + 97056.56327204366, + 96980.44928277681, + null, + 97626.44431224155, + 98203.0854152399, + null, + 97626.44431224155, + 97903.23099241641, + null, + 97626.44431224155, + 97820.00767848469, + null, + 97740.36484145897, + 97350.90150160708, + null, + 97162.69508453069, + 97165.28391525596, + null, + 97162.69508453069, + 97121.42521929949, + null, + 97817.20098235017, + 99200.76991821163, + null, + 97817.20098235017, + 97730.10289313177, + null, + 97817.20098235017, + 97679.4016292501, + null, + 96022.18132064518, + 95973.2616830581, + null, + 96022.18132064518, + 96015.96776704377, + null, + 95680.02527851156, + 95591.27380732736, + null, + 95680.02527851156, + 95648.05875995208, + null, + 95680.02527851156, + 95602.29812834255, + null, + 95680.02527851156, + 95613.36862572782, + null, + 95794.3620644187, + 95765.18576710457, + null, + 95794.3620644187, + 95710.673787455, + null, + 96845.07860198681, + 96760.92857071379, + null, + 97276.29878619949, + 98107.98397593139, + null, + 97276.29878619949, + 97143.57757258782, + null, + 97276.29878619949, + 97117.76259346868, + null, + 97276.29878619949, + 97199.548737579, + null, + 97276.29878619949, + 97244.54058788632, + null, + 97276.29878619949, + 97151.98882224852, + null, + 97276.29878619949, + 97119.08649562852, + null, + 97276.29878619949, + 97228.8586541166, + null, + 97276.29878619949, + 97278.2734802375, + null, + 97481.0467852597, + 97971.15353949438, + null, + 97481.0467852597, + 97948.15175790482, + null, + 97481.0467852597, + 97981.75949850792, + null, + 96200.64224390368, + 96126.7346762115, + null, + 96069.95563247148, + 95933.5287680958, + null, + 96069.95563247148, + 95988.09830570368, + null, + 96759.80185472532, + 96776.65072818978, + null, + 97151.48266936177, + 96831.87898093375, + null, + 97151.48266936177, + 97251.29570214036, + null, + 97151.48266936177, + 97646.15538785749, + null, + 97151.48266936177, + 97332.19078180875, + null, + 97151.48266936177, + 97241.77508500633, + null, + 97151.48266936177, + 97609.3784728033, + null, + 97151.48266936177, + 97117.46051610255, + null, + 97151.48266936177, + 97156.34417751052, + null, + 97151.48266936177, + 97173.60699000407, + null, + 97151.48266936177, + 97174.4902451007, + null, + 97525.66398682565, + 97724.67813450533, + null, + 97525.66398682565, + 97251.29570214036, + null, + 97525.66398682565, + 97332.19078180875, + null, + 97525.66398682565, + 97701.28948749202, + null, + 97525.66398682565, + 97457.63289470712, + null, + 97525.66398682565, + 97535.24128889033, + null, + 97525.66398682565, + 97502.79670139607, + null, + 97525.66398682565, + 97857.0437324069, + null, + 98129.8335044742, + 98441.4708798117, + null, + 98129.8335044742, + 98378.02420745678, + null, + 95869.4969027973, + 96098.29554204186, + null, + 95869.4969027973, + 95892.37091878834, + null, + 95869.4969027973, + 95798.21104623494, + null, + 95869.4969027973, + 95785.50464150192, + null, + 95869.4969027973, + 95765.99579339992, + null, + 95869.4969027973, + 95820.45227237958, + null, + 95869.4969027973, + 95825.84470023373, + null, + 95869.4969027973, + 95844.9614653563, + null, + 95869.4969027973, + 95872.20122936343, + null, + 95947.6612354604, + 95805.27848287535, + null, + 97219.2344849453, + 97014.70310115164, + null, + 97524.9702327776, + 97459.28505940326, + null, + 97524.9702327776, + 97675.57302296757, + null, + 97570.78852224046, + 97657.0685191219, + null, + 97570.78852224046, + 97609.83906118742, + null, + 98426.11814680099, + 98605.62696637101, + null, + 98426.11814680099, + 98594.57251546823, + null, + 97830.50425286932, + 97731.41157443785, + null, + 97830.50425286932, + 97462.8360510825, + null, + 97830.50425286932, + 98308.24242195391, + null, + 97830.50425286932, + 97840.92878276923, + null, + 97830.50425286932, + 97686.73198942652, + null, + 97830.50425286932, + 97159.9719032367, + null, + 97830.50425286932, + 97884.20567526405, + null, + 97830.50425286932, + 97669.8057337455, + null, + 97830.50425286932, + 97810.76745979962, + null, + 97563.51909740941, + 97231.17400973858, + null, + 98237.07311872549, + 97959.05424320973, + null, + 97959.05424320973, + 97556.9433582567, + null, + 97959.05424320973, + 97949.65290238698, + null, + 97959.05424320973, + 97931.99436757823, + null, + 97435.85714721317, + 97959.05424320973, + null, + 97959.05424320973, + 99045.69549244376, + null, + 97250.30982328247, + 97292.27504024247, + null, + 97250.30982328247, + 97208.17700488467, + null, + 97250.30982328247, + 97153.8030933662, + null, + 97250.30982328247, + 97461.83260827704, + null, + 97250.30982328247, + 97099.70079043217, + null, + 97250.30982328247, + 97067.465012111, + null, + 97250.30982328247, + 97404.7469494071, + null, + 97250.30982328247, + 97118.95086045063, + null, + 97250.30982328247, + 97039.56267630485, + null, + 97250.30982328247, + 97100.65924565001, + null, + 97250.30982328247, + 97324.6914900351, + null, + 97250.30982328247, + 97043.84788523692, + null, + 97250.30982328247, + 97481.10824091855, + null, + 97250.30982328247, + 97510.25838188223, + null, + 97250.30982328247, + 97122.99450066582, + null, + 97250.30982328247, + 97151.83752746668, + null, + 97250.30982328247, + 97178.8195800679, + null, + 97250.30982328247, + 97116.3702029372, + null, + 97250.30982328247, + 97317.08656207834, + null, + 97250.30982328247, + 97297.57988152267, + null, + 97250.30982328247, + 97399.26667465223, + null, + 97250.30982328247, + 97110.35476659756, + null, + 97250.30982328247, + 97245.9845655978, + null, + 97250.30982328247, + 97338.6794096304, + null, + 97177.84417040872, + 97304.16071013291, + null, + 97177.84417040872, + 97221.2851500303, + null, + 97177.84417040872, + 97218.18204837828, + null, + 97044.98522321004, + 97028.63638755542, + null, + 96890.44446357607, + 96672.85908683737, + null, + 96890.44446357607, + 96793.83633777838, + null, + 96890.44446357607, + 96686.05597598436, + null, + 96890.44446357607, + 96614.76664132059, + null, + 96890.44446357607, + 96860.75623904701, + null, + 96890.44446357607, + 96803.46095891818, + null, + 95746.74077759727, + 95603.43349316179, + null, + 95746.74077759727, + 95538.75882410601, + null, + 95746.74077759727, + 95603.43349316179, + null, + 95514.38455692613, + 95403.35995732812, + null, + 95161.64737314533, + 94982.11885713646, + null, + 95161.64737314533, + 95371.62884591159, + null, + 95161.64737314533, + 95091.65908345411, + null, + 95161.64737314533, + 95006.98525443788, + null, + 95161.64737314533, + 94961.43165547009, + null, + 95161.64737314533, + 95412.5939248789, + null, + 95161.64737314533, + 94945.53507458087, + null, + 95161.64737314533, + 94903.43608338811, + null, + 95161.64737314533, + 95361.67422421975, + null, + 95161.64737314533, + 95399.43047732508, + null, + 95161.64737314533, + 95065.55850772645, + null, + 95161.64737314533, + 95011.65811258498, + null, + 95161.64737314533, + 94939.05144867142, + null, + 97743.37633435942, + 97851.96545124071, + null, + 97743.37633435942, + 97776.20823036006, + null, + 97743.37633435942, + 97951.79743510587, + null, + 97743.37633435942, + 97678.34155724986, + null, + 97743.37633435942, + 98068.90809649408, + null, + 97368.18786729996, + 97252.59719313495, + null, + 97368.18786729996, + 97154.83922451224, + null, + 97044.98522321004, + 97400.16397729573, + null, + 96890.44446357607, + 97400.16397729573, + null, + 97615.97056569872, + 97644.57598419554, + null, + 97788.7651245566, + 97731.41157443785, + null, + 97788.7651245566, + 97840.23347415248, + null, + 97788.7651245566, + 97858.72921784101, + null, + 97788.7651245566, + 98308.24242195391, + null, + 97788.7651245566, + 97840.92878276923, + null, + 97788.7651245566, + 97884.20567526405, + null, + 97788.7651245566, + 97998.55969379349, + null, + 97923.16505107327, + 97810.76745979962, + null, + 97923.16505107327, + 98308.24242195391, + null, + 97923.16505107327, + 97840.92878276923, + null, + 97923.16505107327, + 97462.8360510825, + null, + 97923.16505107327, + 97731.41157443785, + null, + 97923.16505107327, + 97886.2552796078, + null, + 97923.16505107327, + 98672.42439807321, + null, + 97749.77214743374, + 97686.73198942652, + null, + 97749.77214743374, + 97731.41157443785, + null, + 97749.77214743374, + 97462.8360510825, + null, + 97749.77214743374, + 98308.24242195391, + null, + 97749.77214743374, + 97840.92878276923, + null, + 97737.47168433828, + 97900.61279437604, + null, + 97737.47168433828, + 97911.67531684053, + null, + 97737.47168433828, + 97775.50314469819, + null, + 97737.47168433828, + 98310.25317294084, + null, + 97737.47168433828, + 98146.26357853966, + null, + 97737.47168433828, + 97890.9310548109, + null, + 97643.42074759667, + 97462.8360510825, + null, + 97643.42074759667, + 97731.41157443785, + null, + 97643.42074759667, + 97178.27508498696, + null, + 97643.42074759667, + 97840.92878276923, + null, + 97643.42074759667, + 98308.24242195391, + null, + 97749.29069670282, + 97940.44104273879, + null, + 97749.29069670282, + 97891.33496893896, + null, + 97749.29069670282, + 97867.3221662809, + null, + 98137.79198213125, + 98116.51550369726, + null, + 98137.79198213125, + 98131.84060703998, + null, + 98137.79198213125, + 98310.25317294084, + null, + 98137.79198213125, + 98307.49097620593, + null, + 98137.79198213125, + 98895.86594871506, + null, + 97782.44112987598, + 97936.31670167827, + null, + 97782.44112987598, + 97945.53098688826, + null, + 97782.44112987598, + 98007.87228599943, + null, + 97782.44112987598, + 97872.15207962286, + null, + 97566.10709216155, + 97671.66130484144, + null, + 97247.41509419652, + 97137.2003252543, + null, + 97247.41509419652, + 97176.99512205806, + null, + 97247.41509419652, + 97178.02769187269, + null, + 98237.07311872549, + 98703.6866543077, + null, + 98703.6866543077, + 99234.6345322715, + null, + 98703.6866543077, + 99045.69549244376, + null, + 98703.6866543077, + 99167.15507702739, + null, + 98703.6866543077, + 99196.99137747717, + null, + 98703.6866543077, + 99345.95077259775, + null, + 98703.6866543077, + 99298.94031897592, + null, + 97300.96068285858, + 97390.38924442463, + null, + 97300.96068285858, + 97371.5537889121, + null, + 97415.93818773415, + 97434.89728860323, + null, + 97789.92707115466, + 97758.09088007455, + null, + 97789.92707115466, + 97717.66882748203, + null, + 96750.40498635444, + 96299.26984037684, + null, + 96750.40498635444, + 96500.32458861038, + null, + 96750.40498635444, + 96778.83528846483, + null, + 96750.40498635444, + 96483.80491367223, + null, + 97809.32654645263, + 97692.05204438251, + null, + 97809.59302628535, + 97864.44960459028, + null, + 97788.58031988013, + 97856.92589348364, + null, + 97768.46861576667, + 97646.7315802885, + null, + 97504.52578621544, + 97518.4690028683, + null, + 96578.02421964555, + 96568.3757200578, + null, + 96578.02421964555, + 96831.87898093375, + null, + 96409.96532967011, + 96360.79423069155, + null, + 96325.12988946559, + 96201.11846761782, + null, + 96325.12988946559, + 96147.12728695886, + null, + 96767.96478692938, + 96950.00862634687, + null, + 96767.96478692938, + 96851.49702075154, + null, + 96767.96478692938, + 97028.21718236667, + null, + 96767.96478692938, + 96923.14998898802, + null, + 96767.96478692938, + 96876.0341655546, + null, + 96753.02617057231, + 96851.49702075154, + null, + 96753.02617057231, + 97028.21718236667, + null, + 96753.02617057231, + 96923.14998898802, + null, + 96753.02617057231, + 96935.43558121054, + null, + 96753.02617057231, + 96725.21853912911, + null, + 96753.02617057231, + 96712.80076694199, + null, + 96753.02617057231, + 96716.1939460555, + null, + 96753.02617057231, + 96876.0341655546, + null, + 96869.39684947954, + 96950.00862634687, + null, + 96869.39684947954, + 96851.49702075154, + null, + 96869.39684947954, + 96923.14998898802, + null, + 96869.39684947954, + 97028.21718236667, + null, + 96869.39684947954, + 96876.0341655546, + null, + 95763.40443589797, + 95593.06297803868, + null, + 95203.1376507783, + 95019.76951112322, + null, + 95203.1376507783, + 95102.28517788525, + null, + 95203.1376507783, + 94975.72901611873, + null, + 95203.1376507783, + 95116.68898388208, + null, + 95203.1376507783, + 94867.64816679416, + null, + 95203.1376507783, + 94984.22203293043, + null, + 95203.1376507783, + 94919.08305377813, + null, + 96270.15699232905, + 96508.73199069055, + null, + 96270.15699232905, + 96791.11917374496, + null, + 95244.0575474311, + 95287.49345178728, + null, + 95244.0575474311, + 95061.79356597684, + null, + 95244.0575474311, + 94924.30340248237, + null, + 95244.0575474311, + 95102.2093582555, + null, + 95244.0575474311, + 95018.57997559619, + null, + 95244.0575474311, + 95013.28433948402, + null, + 95244.0575474311, + 95084.45208789824, + null, + 95244.0575474311, + 94952.55129948242, + null, + 95244.0575474311, + 95044.35313290669, + null, + 95244.0575474311, + 94991.32690242348, + null, + 96476.2244248884, + 96292.96228716835, + null, + 96476.2244248884, + 97105.86251341687, + null, + 96533.83917036175, + 97251.29570214036, + null, + 96533.83917036175, + 96831.87898093375, + null, + 95627.6655653288, + 95396.31854026583, + null, + 95627.6655653288, + 95370.67728844626, + null, + 96487.74751288781, + 96457.41148009703, + null, + 96487.74751288781, + 96281.24470025112, + null, + 96487.74751288781, + 96915.00173927705, + null, + 96487.74751288781, + 96614.76664132059, + null, + 96487.74751288781, + 96476.90982705473, + null, + 96487.74751288781, + 96763.14768007296, + null, + 96487.74751288781, + 96370.77101982675, + null, + 95709.93291907338, + 95464.53667424759, + null, + 95658.32063821593, + 95403.07991812484, + null, + 95658.32063821593, + 95460.77332334426, + null, + 97536.70985088356, + 97713.34748462857, + null, + 97536.70985088356, + 97678.75741357544, + null, + 98229.18483310309, + 98480.18557061398, + null, + 98229.18483310309, + 98344.96213348431, + null, + 98229.18483310309, + 98429.70413093227, + null, + 98229.18483310309, + 98511.79293987446, + null, + 98229.18483310309, + 98324.36922376543, + null, + 98229.18483310309, + 98434.76946955148, + null, + 98229.18483310309, + 98467.42435958885, + null, + 98077.79681744472, + 98229.18483310309, + null, + 98528.28228471124, + 98229.18483310309, + null, + 99214.362436891, + 98229.18483310309, + null, + 98229.18483310309, + 98524.49222600524, + null, + 98229.18483310309, + 98559.46645536512, + null, + 95989.76467211267, + 95959.85383984294, + null, + 97959.01602952153, + 98087.31445184478, + null, + 97959.01602952153, + 98071.68595187098, + null, + 98371.01061870782, + 98629.22677301739, + null, + 98371.01061870782, + 98324.36922376543, + null, + 98528.28228471124, + 98371.01061870782, + null, + 98371.01061870782, + 98588.84201485832, + null, + 99214.362436891, + 98371.01061870782, + null, + 98371.01061870782, + 97942.41927684227, + null, + 97789.64547242364, + 97955.36336549766, + null, + 97789.64547242364, + 97936.09237213417, + null, + 95737.0210501743, + 95655.13837228577, + null, + 95737.0210501743, + 95584.7247328939, + null, + 95737.0210501743, + 95523.31266376271, + null, + 95737.0210501743, + 95604.78437746258, + null, + 95737.0210501743, + 95677.28372527665, + null, + 95737.0210501743, + 95587.1461297883, + null, + 95737.0210501743, + 95662.78785902, + null, + 95737.0210501743, + 95660.56955803781, + null, + 95737.0210501743, + 95331.3487126772, + null, + 95737.0210501743, + 95383.8578284938, + null, + 96247.5730261708, + 96198.27647513033, + null, + 96247.5730261708, + 96152.66864658507, + null, + 96716.89120782126, + 96586.95927925126, + null, + 96716.89120782126, + 96712.80076694199, + null, + 96716.89120782126, + 96851.49702075154, + null, + 96716.89120782126, + 97028.21718236667, + null, + 96716.89120782126, + 96923.14998898802, + null, + 96716.89120782126, + 96935.43558121054, + null, + 96716.89120782126, + 96876.0341655546, + null, + 97052.70205106144, + 97158.89221586598, + null, + 96826.71329736618, + 96585.10907993346, + null, + 96826.71329736618, + 96284.55056147317, + null, + 96991.17451689237, + 97020.82930599325, + null, + 96991.17451689237, + 97021.39491967497, + null, + 96991.17451689237, + 96979.82022752479, + null, + 96991.17451689237, + 97016.71696412006, + null, + 96760.3513556949, + 96721.31987028342, + null, + 96760.3513556949, + 96644.41975002215, + null, + 96760.3513556949, + 97090.90147876457, + null, + 96760.3513556949, + 96671.14731805214, + null, + 96464.55718535923, + 96322.43872730463, + null, + 96464.55718535923, + 96408.99138701527, + null, + 96464.55718535923, + 96380.36068124554, + null, + 96534.278171482, + 96410.01535381378, + null, + 96534.278171482, + 96545.67249216154, + null, + 96405.88296277358, + 96337.69690409732, + null, + 96405.88296277358, + 96379.29684177249, + null, + 96405.88296277358, + 96256.40262368404, + null, + 97516.13365436997, + 98094.94144871847, + null, + 97516.13365436997, + 98102.66578906662, + null, + 94593.1532092616, + 94425.17698527497, + null, + 94062.66633331862, + 93711.5032857345, + null, + 94062.66633331862, + 93766.13514013491, + null, + 94062.66633331862, + 93794.37719324508, + null, + 94062.66633331862, + 93725.48220687856, + null, + 93616.21500771031, + 93282.32117482684, + null, + 93616.21500771031, + 93221.73955457543, + null, + 93616.21500771031, + 93208.18303346328, + null, + 93616.21500771031, + 93325.79765311313, + null, + 93616.21500771031, + 93214.11532235434, + null, + 93616.21500771031, + 93315.33872157881, + null, + 93616.21500771031, + 93266.84118076335, + null, + 93616.21500771031, + 93260.96297517662, + null, + 96780.96571153034, + 96947.56185065248, + null, + 96780.96571153034, + 96938.83304086134, + null, + 96527.45528447787, + 96468.45059842155, + null, + 96527.45528447787, + 96605.92981897558, + null, + 96527.45528447787, + 96625.94037806959, + null, + 95617.05222697879, + 95419.01295011838, + null, + 95617.05222697879, + 95522.29690782333, + null, + 95617.05222697879, + 95434.63162470613, + null, + 95617.05222697879, + 95522.59347807155, + null, + 96115.57754246322, + 96162.4303606248, + null, + 96115.57754246322, + 96419.20807083481, + null, + 96115.57754246322, + 96121.69831110585, + null, + 96115.57754246322, + 96286.13541218151, + null, + 96350.897783121, + 97051.56980439604, + null, + 95713.33557938566, + 95549.4392720819, + null, + 95713.33557938566, + 95516.47032069488, + null, + 95713.33557938566, + 95879.40264413109, + null, + 95448.68746731608, + 95289.99947728145, + null, + 95448.68746731608, + 96162.4303606248, + null, + 95448.68746731608, + 95209.07740315559, + null, + 95448.68746731608, + 93892.18559051274, + null, + 95448.68746731608, + 96419.20807083481, + null, + 95448.68746731608, + 96286.13541218151, + null, + 95963.6655367038, + 95448.68746731608, + null, + 95448.68746731608, + 95545.42707969059, + null, + 95448.68746731608, + 95587.50972921033, + null, + 95448.68746731608, + 96121.69831110585, + null, + 95448.68746731608, + 95825.30565065744, + null, + 95293.92851935429, + 95085.7358614468, + null, + 95293.92851935429, + 95766.82836995482, + null, + 95293.92851935429, + 95105.9704756148, + null, + 95293.92851935429, + 95815.83892952197, + null, + 95293.92851935429, + 95289.99947728145, + null, + 95293.92851935429, + 95191.15728912293, + null, + 95293.92851935429, + 95879.40264413109, + null, + 95293.92851935429, + 95512.73349904499, + null, + 95923.70592479738, + 95293.92851935429, + null, + 95293.92851935429, + 95626.14363249643, + null, + 95293.92851935429, + 94839.05921223038, + null, + 95293.92851935429, + 95032.40110092318, + null, + 95293.92851935429, + 95631.07394328593, + null, + 95293.92851935429, + 95590.81174307152, + null, + 95293.92851935429, + 95912.25682425735, + null, + 95293.92851935429, + 95597.7906661159, + null, + 95293.92851935429, + 95579.93831216634, + null, + 95293.92851935429, + 95715.19253104036, + null, + 95293.92851935429, + 95126.23354130394, + null, + 95293.92851935429, + 96534.17654783507, + null, + 95293.92851935429, + 95015.33918715396, + null, + 95293.92851935429, + 95796.61373078152, + null, + 95293.92851935429, + 95643.13524318043, + null, + 95293.92851935429, + 95746.24059541902, + null, + 95293.92851935429, + 95559.2112095161, + null, + 95293.92851935429, + 95766.4420442681, + null, + 95293.92851935429, + 93895.03036091999, + null, + 95293.92851935429, + 95545.42707969059, + null, + 95293.92851935429, + 96526.79557731359, + null, + 95293.92851935429, + 95131.5941183471, + null, + 95293.92851935429, + 95018.48362985617, + null, + 95293.92851935429, + 96065.14768742399, + null, + 95293.92851935429, + 95634.93267958445, + null, + 95293.92851935429, + 93923.1020165203, + null, + 95293.92851935429, + 93891.5498056317, + null, + 95293.92851935429, + 95527.42462717323, + null, + 95293.92851935429, + 95194.44309703742, + null, + 95293.92851935429, + 95813.90918667779, + null, + 95293.92851935429, + 95726.95869510453, + null, + 95293.92851935429, + 95954.92061138574, + null, + 95293.92851935429, + 95112.53926171671, + null, + 95293.92851935429, + 96575.13863198814, + null, + 95293.92851935429, + 95049.89107673854, + null, + 95293.92851935429, + 95733.5582374262, + null, + 95293.92851935429, + 95852.81047544103, + null, + 95293.92851935429, + 95167.71564066921, + null, + 95293.92851935429, + 95788.6686934094, + null, + 95293.92851935429, + 95156.93526218369, + null, + 95293.92851935429, + 96162.4303606248, + null, + 95293.92851935429, + 95209.07740315559, + null, + 95293.92851935429, + 95503.24905229843, + null, + 95293.92851935429, + 95227.31453053986, + null, + 95293.92851935429, + 93892.18559051274, + null, + 95293.92851935429, + 93909.45243357617, + null, + 95293.92851935429, + 95256.82853161849, + null, + 95293.92851935429, + 95777.06593763633, + null, + 95293.92851935429, + 95778.11133873799, + null, + 95293.92851935429, + 95841.15444703231, + null, + 95293.92851935429, + 95545.63612104181, + null, + 95293.92851935429, + 95535.85549573906, + null, + 95293.92851935429, + 95111.693114726, + null, + 95540.24503251979, + 95293.92851935429, + null, + 95293.92851935429, + 95161.29561184804, + null, + 95293.92851935429, + 95751.83804119815, + null, + 95293.92851935429, + 95154.35913268666, + null, + 95293.92851935429, + 95743.57295726631, + null, + 95293.92851935429, + 95566.08096854025, + null, + 95293.92851935429, + 95071.67988020071, + null, + 95293.92851935429, + 95320.52292032006, + null, + 95293.92851935429, + 95795.05422834658, + null, + 95293.92851935429, + 95080.07065852977, + null, + 95293.92851935429, + 95078.64341067748, + null, + 95293.92851935429, + 96121.69831110585, + null, + 95293.92851935429, + 95009.57828432537, + null, + 95293.92851935429, + 96286.13541218151, + null, + 95293.92851935429, + 93914.93502816484, + null, + 95293.92851935429, + 95204.47944062315, + null, + 95293.92851935429, + 95257.49256519784, + null, + 96424.48707246192, + 96576.33824877361, + null, + 96424.48707246192, + 96687.66890433879, + null, + 96424.48707246192, + 96378.93466044324, + null, + 96424.48707246192, + 96299.85768372391, + null, + 96424.48707246192, + 96612.8462594204, + null, + 96424.48707246192, + 96619.36075421462, + null, + 96049.17164979059, + 96050.51896679334, + null, + 97200.7730276014, + 97096.25480847151, + null, + 97200.7730276014, + 97461.17357839017, + null, + 97200.7730276014, + 97113.68749649214, + null, + 97200.7730276014, + 97070.65467482769, + null, + 97200.7730276014, + 97085.84775973822, + null, + 97446.90168966807, + 97511.27320539985, + null, + 97446.90168966807, + 97471.4065804253, + null, + 96440.9774229316, + 96460.1939559876, + null, + 96440.9774229316, + 96376.62703671993, + null, + 97474.17223906965, + 98094.94144871847, + null, + 97474.17223906965, + 98102.66578906662, + null, + 96252.73601927159, + 96172.51733633167, + null, + 96912.8602518081, + 96596.14681899169, + null, + 96912.8602518081, + 96432.47446387983, + null, + 96912.8602518081, + 96730.72662363359, + null, + 96912.8602518081, + 96815.74842835017, + null, + 96912.8602518081, + 96432.60634695792, + null, + 96640.9561634297, + 96466.54820005891, + null, + 96640.9561634297, + 96499.21194873397, + null, + 96640.9561634297, + 96432.75800775865, + null, + 96640.9561634297, + 96421.56170751022, + null, + 96640.9561634297, + 96450.86417398539, + null, + 96548.78849614567, + 95879.40264413109, + null, + 96548.78849614567, + 95209.07740315559, + null, + 97092.6033555316, + 97017.1669084225, + null, + 97092.6033555316, + 97173.35179768581, + null, + 97092.6033555316, + 96791.11917374496, + null, + 97092.6033555316, + 96929.96417980653, + null, + 97092.6033555316, + 96895.32993115457, + null, + 96137.93531003897, + 95796.61373078152, + null, + 96137.93531003897, + 95960.83337961102, + null, + 96137.93531003897, + 95973.18677822626, + null, + 96137.93531003897, + 96575.13863198814, + null, + 96137.93531003897, + 95209.07740315559, + null, + 96137.93531003897, + 96185.91987135717, + null, + 97681.82650463261, + 98053.0642172455, + null, + 97681.82650463261, + 98181.70136908787, + null, + 97681.82650463261, + 98274.51626017109, + null, + 97681.82650463261, + 98416.67608487829, + null, + 96900.36956234596, + 96833.09629477594, + null, + 96900.36956234596, + 96389.15700605555, + null, + 96900.36956234596, + 96728.86287279802, + null, + 99054.93251049488, + 100266.60888331049, + null, + 99054.93251049488, + 100515.1022038416, + null, + 99054.93251049488, + 99228.92028443553, + null, + 99054.93251049488, + 99212.70100378105, + null, + 99054.93251049488, + 99232.68405354682, + null, + 99054.93251049488, + 99103.44876993205, + null, + 97621.5308801509, + 97711.83186455314, + null, + 97621.5308801509, + 97603.39364622922, + null, + 96840.81091989319, + 96767.66900065186, + null, + 96840.81091989319, + 96575.13863198814, + null, + 97651.32746016643, + 97398.68149419299, + null, + 97136.55546326986, + 97398.68149419299, + null, + 97605.64203060168, + 97398.68149419299, + null, + 97499.57548817585, + 97398.68149419299, + null, + 97615.00090956, + 97398.68149419299, + null, + 97672.92128722146, + 97398.68149419299, + null, + 96052.90997742687, + 95740.22395410195, + null, + 96052.90997742687, + 94839.05921223038, + null, + 96052.90997742687, + 96575.13863198814, + null, + 96052.90997742687, + 95954.92061138574, + null, + 96052.90997742687, + 95715.19253104036, + null, + 96052.90997742687, + 95209.07740315559, + null, + 96052.90997742687, + 95874.51064937194, + null, + 96052.90997742687, + 96162.4303606248, + null, + 97140.91541633583, + 97094.08230838644, + null, + 96883.35271778212, + 96576.33824877361, + null, + 96883.35271778212, + 96687.66890433879, + null, + 96883.35271778212, + 96612.8462594204, + null, + 96883.35271778212, + 96619.36075421462, + null, + 96961.63219735424, + 96858.31183832121, + null, + 96961.63219735424, + 97019.63624773566, + null, + 96961.63219735424, + 96947.97323662853, + null, + 96961.63219735424, + 96831.27749069908, + null, + 96593.15685874, + 96392.74500653436, + null, + 96593.15685874, + 96436.86822188261, + null, + 96593.15685874, + 96376.91690518416, + null, + 96593.15685874, + 96350.55565716545, + null, + 96593.15685874, + 96321.15146800532, + null, + 96593.15685874, + 96524.80040507406, + null, + 96942.49668912489, + 96860.6503292752, + null, + 96411.51796021752, + 96680.86127426095, + null, + 96411.51796021752, + 96398.83615088987, + null, + 96411.51796021752, + 96391.62172387257, + null, + 96411.51796021752, + 96272.74969865312, + null, + 97910.96993785165, + 97698.46004125582, + null, + 97910.96993785165, + 98150.22448558552, + null, + 98581.61307739322, + 97910.96993785165, + null, + 97910.96993785165, + 98046.56042319539, + null, + 97662.82472168292, + 97910.96993785165, + null, + 97762.19782518726, + 97910.96993785165, + null, + 96786.0414096176, + 95879.40264413109, + null, + 96786.0414096176, + 95954.92061138574, + null, + 96786.0414096176, + 96065.14768742399, + null, + 96786.0414096176, + 96833.09629477594, + null, + 96786.0414096176, + 96091.68950774056, + null, + 99128.8683145138, + 100266.60888331049, + null, + 99128.8683145138, + 100515.1022038416, + null, + 99128.8683145138, + 99340.31910283645, + null, + 99128.8683145138, + 99313.20979173463, + null, + 99128.8683145138, + 100780.13173749707, + null, + 99128.8683145138, + 99308.59414610175, + null, + 99128.8683145138, + 98974.75635141051, + null, + 96211.67174914089, + 96162.4303606248, + null, + 96211.67174914089, + 96419.20807083481, + null, + 96211.67174914089, + 96121.69831110585, + null, + 96211.67174914089, + 96286.13541218151, + null, + 95720.51419720666, + 95879.40264413109, + null, + 95720.51419720666, + 95209.07740315559, + null, + 95720.51419720666, + 96121.69831110585, + null, + 96607.09318109117, + 96470.73828277734, + null, + 96607.09318109117, + 96565.0881456934, + null, + 96607.09318109117, + 97185.1808281155, + null, + 95599.53684369884, + 94839.05921223038, + null, + 95599.53684369884, + 95500.49413841194, + null, + 95599.53684369884, + 95740.22395410195, + null, + 95599.53684369884, + 95209.07740315559, + null, + 95599.53684369884, + 96162.4303606248, + null, + 95599.53684369884, + 96121.69831110585, + null, + 97078.78573950223, + 97254.60654731093, + null, + 97136.55546326986, + 97078.78573950223, + null, + 97605.64203060168, + 97078.78573950223, + null, + 97078.78573950223, + 97228.53082661908, + null, + 97078.78573950223, + 97457.80305691704, + null, + 97078.78573950223, + 97262.678362189, + null, + 97672.92128722146, + 97078.78573950223, + null, + 97615.00090956, + 97078.78573950223, + null, + 95886.98258580548, + 94839.05921223038, + null, + 95886.98258580548, + 95740.22395410195, + null, + 95886.98258580548, + 95874.51064937194, + null, + 95886.98258580548, + 95209.07740315559, + null, + 95886.98258580548, + 96162.4303606248, + null, + 95886.98258580548, + 96121.69831110585, + null, + 95886.98258580548, + 96286.13541218151, + null, + 96463.65900406071, + 96245.81287553936, + null, + 96463.65900406071, + 96314.41375523742, + null, + 96463.65900406071, + 96401.76747586693, + null, + 96463.65900406071, + 96355.90615678827, + null, + 96509.39820433313, + 96369.69059048773, + null, + 96099.61138898744, + 95954.92061138574, + null, + 96099.61138898744, + 95715.19253104036, + null, + 96099.61138898744, + 96575.13863198814, + null, + 96099.61138898744, + 96162.4303606248, + null, + 96099.61138898744, + 96286.13541218151, + null, + 96099.61138898744, + 95209.07740315559, + null, + 96099.61138898744, + 96419.20807083481, + null, + 97122.96681206446, + 97186.3132997967, + null, + 97122.96681206446, + 97064.47646579129, + null, + 97122.96681206446, + 97158.96990923911, + null, + 95923.70592479738, + 95950.47769478709, + null, + 95950.47769478709, + 95777.06593763633, + null, + 95950.47769478709, + 95870.52884118582, + null, + 95950.47769478709, + 95634.93267958445, + null, + 95950.47769478709, + 95590.81174307152, + null, + 95950.47769478709, + 96526.79557731359, + null, + 95950.47769478709, + 95726.95869510453, + null, + 95950.47769478709, + 95746.24059541902, + null, + 95950.47769478709, + 95626.14363249643, + null, + 95950.47769478709, + 95579.93831216634, + null, + 95950.47769478709, + 95733.5582374262, + null, + 95950.47769478709, + 95840.07213390034, + null, + 95950.47769478709, + 96575.13863198814, + null, + 95950.47769478709, + 95597.7906661159, + null, + 95950.47769478709, + 95643.13524318043, + null, + 95950.47769478709, + 95680.1096833134, + null, + 95950.47769478709, + 95778.11133873799, + null, + 95950.47769478709, + 95545.63612104181, + null, + 95950.47769478709, + 95527.42462717323, + null, + 95950.47769478709, + 95559.2112095161, + null, + 95950.47769478709, + 95841.15444703231, + null, + 98675.12932763455, + 98796.43807365598, + null, + 97289.15046436754, + 97288.66317264974, + null, + 97289.15046436754, + 97400.5708421359, + null, + 97014.53523334138, + 96733.77607604802, + null, + 97014.53523334138, + 96760.86563639867, + null, + 97014.53523334138, + 96753.76496796569, + null, + 97526.53767625983, + 97532.78555592157, + null, + 97526.53767625983, + 97632.01085607987, + null, + 97526.53767625983, + 97400.5708421359, + null, + 97526.53767625983, + 97562.28204297766, + null, + 97526.53767625983, + 97563.26458780964, + null, + 97526.53767625983, + 97562.5173703681, + null, + 97526.53767625983, + 97588.76856320181, + null, + 97181.11827309501, + 96947.56185065248, + null, + 97181.11827309501, + 96938.83304086134, + null, + 98932.31091884513, + 98660.63217404629, + null, + 98926.20655583622, + 98660.63217404629, + null, + 98881.20399257346, + 98660.63217404629, + null, + 98873.6590998779, + 98660.63217404629, + null, + 98776.08147395353, + 98660.63217404629, + null, + 98916.08043593282, + 98660.63217404629, + null, + 98775.64297666437, + 98660.63217404629, + null, + 98833.5386160878, + 98660.63217404629, + null, + 98779.4951496633, + 98660.63217404629, + null, + 98769.87019965112, + 98660.63217404629, + null, + 98763.69912444155, + 98660.63217404629, + null, + 98715.38337956829, + 98660.63217404629, + null, + 98838.01226486915, + 98660.63217404629, + null, + 98731.25835265023, + 98660.63217404629, + null, + 98794.9356782363, + 98660.63217404629, + null, + 98875.12446310604, + 98660.63217404629, + null, + 98845.6917714939, + 98660.63217404629, + null, + 98412.44821844941, + 99361.59793953648, + null, + 97765.48056752425, + 97903.46526431757, + null, + 97765.48056752425, + 97873.51796335696, + null, + 97765.48056752425, + 97948.39404069813, + null, + 97130.87354039263, + 96889.0306429424, + null, + 97130.87354039263, + 96907.48571010484, + null, + 97130.87354039263, + 97191.09182635164, + null, + 97130.87354039263, + 96942.59821550541, + null, + 97611.64317798252, + 97747.44748826537, + null, + 96607.81846515763, + 95814.45750461605, + null, + 96607.81846515763, + 96387.01730151517, + null, + 96607.81846515763, + 96598.19218239089, + null, + 96607.81846515763, + 96473.28103194672, + null, + 96607.81846515763, + 96658.84703021134, + null, + 96607.81846515763, + 96494.81661435854, + null, + 96607.81846515763, + 96672.20067299905, + null, + 96607.81846515763, + 96598.19772505444, + null, + 96607.81846515763, + 96510.46443991837, + null, + 96607.81846515763, + 96286.66809125463, + null, + 96607.81846515763, + 96701.69552746598, + null, + 96607.81846515763, + 96539.74460144996, + null, + 97136.55546326986, + 97878.18936700777, + null, + 97499.57548817585, + 97878.18936700777, + null, + 97878.18936700777, + 97457.80305691704, + null, + 97605.64203060168, + 97878.18936700777, + null, + 97615.00090956, + 97878.18936700777, + null, + 97672.92128722146, + 97878.18936700777, + null, + 98088.69457083048, + 98226.84081787949, + null, + 98088.69457083048, + 98241.35583628787, + null, + 102537.64337792993, + 100266.60888331049, + null, + 102537.64337792993, + 100515.1022038416, + null, + 102537.64337792993, + 103012.50040913292, + null, + 102537.64337792993, + 103050.16207521364, + null, + 102537.64337792993, + 102935.46730939098, + null, + 102537.64337792993, + 102950.02495500898, + null, + 102537.64337792993, + 103115.61980314259, + null, + 102537.64337792993, + 102981.6591476348, + null, + 102537.64337792993, + 102970.32847474286, + null, + 102537.64337792993, + 103050.37577267221, + null, + 102537.64337792993, + 103039.45476144501, + null, + 102537.64337792993, + 103145.40971868698, + null, + 102537.64337792993, + 102881.9871404351, + null, + 102537.64337792993, + 102896.31427168078, + null, + 102537.64337792993, + 102743.93553159607, + null, + 102537.64337792993, + 103003.97003289565, + null, + 102537.64337792993, + 103071.21323586704, + null, + 102537.64337792993, + 102958.121892692, + null, + 102537.64337792993, + 102990.59814603475, + null, + 102537.64337792993, + 102955.94479850777, + null, + 102537.64337792993, + 103041.38776247326, + null, + 102537.64337792993, + 103006.17533551028, + null, + 102537.64337792993, + 103097.54858465325, + null, + 102537.64337792993, + 103093.03210077138, + null, + 102537.64337792993, + 102849.4521539362, + null, + 102537.64337792993, + 102929.61114879283, + null, + 102537.64337792993, + 102836.82326066242, + null, + 102537.64337792993, + 102850.0467744593, + null, + 102537.64337792993, + 102710.33828378592, + null, + 102537.64337792993, + 103171.58738973808, + null, + 102537.64337792993, + 103039.75462604016, + null, + 102537.64337792993, + 102822.41041165365, + null, + 102537.64337792993, + 103145.40299178564, + null, + 102537.64337792993, + 102893.70015633377, + null, + 102537.64337792993, + 103068.00837449041, + null, + 102537.64337792993, + 102885.78859789654, + null, + 102537.64337792993, + 103053.80194217195, + null, + 102537.64337792993, + 103120.61740341707, + null, + 102537.64337792993, + 103353.3242908138, + null, + 102537.64337792993, + 103044.72318410393, + null, + 102537.64337792993, + 102885.22782431466, + null, + 102537.64337792993, + 102934.2236077041, + null, + 102537.64337792993, + 102936.50978128517, + null, + 102537.64337792993, + 102797.13886249666, + null, + 102537.64337792993, + 103138.73232130763, + null, + 102537.64337792993, + 102970.44843874604, + null, + 102537.64337792993, + 102673.92982323217, + null, + 102537.64337792993, + 103391.80690165356, + null, + 102537.64337792993, + 102918.21735494805, + null, + 102537.64337792993, + 103087.20566196111, + null, + 102537.64337792993, + 102940.683338319, + null, + 102537.64337792993, + 102799.74205444116, + null, + 102537.64337792993, + 103183.68169934869, + null, + 102537.64337792993, + 102917.88714022035, + null, + 102537.64337792993, + 103082.19417204797, + null, + 102537.64337792993, + 103013.92678419144, + null, + 102537.64337792993, + 103079.13759889861, + null, + 102537.64337792993, + 102796.76557690598, + null, + 102537.64337792993, + 103008.94428849094, + null, + 102537.64337792993, + 102914.14727498162, + null, + 102537.64337792993, + 103097.33141408257, + null, + 102537.64337792993, + 102984.59817230792, + null, + 102537.64337792993, + 102999.242153458, + null, + 102537.64337792993, + 102825.0800232946, + null, + 102537.64337792993, + 102943.62442164868, + null, + 102537.64337792993, + 102996.76586737529, + null, + 102537.64337792993, + 103056.99415971928, + null, + 102537.64337792993, + 103067.37440468137, + null, + 102537.64337792993, + 102735.70852544352, + null, + 102537.64337792993, + 102977.56662627251, + null, + 102537.64337792993, + 103052.37715191457, + null, + 102537.64337792993, + 102856.38596651099, + null, + 102537.64337792993, + 103162.96543297928, + null, + 102537.64337792993, + 103029.09037497792, + null, + 102537.64337792993, + 103086.18250158385, + null, + 102537.64337792993, + 103144.62346271172, + null, + 102537.64337792993, + 102857.39568352004, + null, + 102537.64337792993, + 103018.48102906163, + null, + 102537.64337792993, + 102846.81397282002, + null, + 102537.64337792993, + 102959.24234304379, + null, + 102537.64337792993, + 102860.97984399927, + null, + 102537.64337792993, + 103204.38427585832, + null, + 102537.64337792993, + 103037.63504006495, + null, + 102537.64337792993, + 102976.99922262576, + null, + 102537.64337792993, + 102915.13967065407, + null, + 102537.64337792993, + 102948.12263359, + null, + 102537.64337792993, + 102905.30463146325, + null, + 102537.64337792993, + 102775.59654509142, + null, + 102537.64337792993, + 103064.59068768269, + null, + 102537.64337792993, + 103127.2944683463, + null, + 102537.64337792993, + 103034.67848377136, + null, + 102537.64337792993, + 100780.13173749707, + null, + 102537.64337792993, + 103118.71870989143, + null, + 102537.64337792993, + 103071.00150506526, + null, + 102537.64337792993, + 102791.07795037152, + null, + 102537.64337792993, + 103141.91696005758, + null, + 102537.64337792993, + 102900.66287637541, + null, + 102537.64337792993, + 103159.2274797242, + null, + 102537.64337792993, + 102953.45731484497, + null, + 102537.64337792993, + 103076.07764829494, + null, + 102537.64337792993, + 103180.222746918, + null, + 102537.64337792993, + 102929.58826717759, + null, + 102537.64337792993, + 103023.01993823654, + null, + 102537.64337792993, + 102806.18146902687, + null, + 102537.64337792993, + 102815.61399877533, + null, + 102537.64337792993, + 103103.79792250128, + null, + 102537.64337792993, + 103062.08365221192, + null, + 102537.64337792993, + 103127.22842256306, + null, + 102537.64337792993, + 102987.13535610563, + null, + 102537.64337792993, + 103015.066909508, + null, + 102537.64337792993, + 103003.68988635896, + null, + 102537.64337792993, + 103019.86716613526, + null, + 102537.64337792993, + 103015.5953490687, + null, + 102537.64337792993, + 102965.30578971672, + null, + 102537.64337792993, + 102846.40082320553, + null, + 102537.64337792993, + 103043.9117792615, + null, + 102537.64337792993, + 102956.1297050231, + null, + 102537.64337792993, + 103183.26568270578, + null, + 102537.64337792993, + 103076.71371945935, + null, + 102537.64337792993, + 102839.27781745781, + null, + 102537.64337792993, + 103195.814589243, + null, + 102537.64337792993, + 102844.52372308212, + null, + 102537.64337792993, + 103048.07930443641, + null, + 102537.64337792993, + 103116.44549536241, + null, + 102537.64337792993, + 102887.65778558908, + null, + 102537.64337792993, + 102787.7592041423, + null, + 102537.64337792993, + 102878.33658342516, + null, + 102537.64337792993, + 102975.28613555466, + null, + 102537.64337792993, + 102777.14875199659, + null, + 102537.64337792993, + 102784.83487471334, + null, + 102537.64337792993, + 103055.67082885235, + null, + 102537.64337792993, + 102922.95094014877, + null, + 102537.64337792993, + 103018.59506549768, + null, + 102537.64337792993, + 103099.08631775716, + null, + 102537.64337792993, + 103074.18589615662, + null, + 102537.64337792993, + 102895.43270597128, + null, + 102537.64337792993, + 102761.9969007521, + null, + 102537.64337792993, + 103040.86211690954, + null, + 102537.64337792993, + 103078.14916824212, + null, + 102537.64337792993, + 103141.03868202487, + null, + 102537.64337792993, + 103220.7702303365, + null, + 102537.64337792993, + 103039.71918145288, + null, + 102537.64337792993, + 103000.09208703019, + null, + 102537.64337792993, + 103093.18540186799, + null, + 102537.64337792993, + 102886.24823604496, + null, + 102537.64337792993, + 102734.2330280844, + null, + 102537.64337792993, + 103124.81756865612, + null, + 102537.64337792993, + 103116.45746689758, + null, + 102537.64337792993, + 103116.44206372628, + null, + 102537.64337792993, + 102905.47635113973, + null, + 102537.64337792993, + 102876.54018840358, + null, + 102537.64337792993, + 102995.30845949444, + null, + 102537.64337792993, + 103461.52053531604, + null, + 102537.64337792993, + 103109.24014121846, + null, + 102537.64337792993, + 102639.10208368214, + null, + 102537.64337792993, + 103127.93620264718, + null, + 97336.72314742803, + 96162.4303606248, + null, + 97336.72314742803, + 96419.20807083481, + null, + 97336.72314742803, + 96121.69831110585, + null, + 97336.72314742803, + 96286.13541218151, + null, + 97384.85502032931, + 96162.4303606248, + null, + 97384.85502032931, + 96419.20807083481, + null, + 97384.85502032931, + 96121.69831110585, + null, + 97384.85502032931, + 96286.13541218151, + null, + 97739.50461726454, + 96575.13863198814, + null, + 97739.50461726454, + 96526.79557731359, + null, + 97739.50461726454, + 97816.11957295614, + null, + 97739.50461726454, + 97744.13754822216, + null, + 97739.50461726454, + 97875.02824277256, + null, + 97739.50461726454, + 97875.23810233118, + null, + 97739.50461726454, + 97860.97988843071, + null, + 97790.18756915494, + 96575.13863198814, + null, + 97790.18756915494, + 97874.20140366515, + null, + 97790.18756915494, + 97813.77444698993, + null, + 97790.18756915494, + 97295.41993443215, + null, + 98423.75905911079, + 98504.0608151538, + null, + 98423.75905911079, + 98563.09341475698, + null, + 92914.29701391104, + 92714.11963007496, + null, + 92914.29701391104, + 92747.05003046816, + null, + 92914.29701391104, + 92736.93813690646, + null, + 92914.29701391104, + 92758.02599424361, + null, + 92914.29701391104, + 92772.32573698397, + null, + 92914.29701391104, + 92875.48053840011, + null, + 92914.29701391104, + 92643.21127411565, + null, + 92914.29701391104, + 92635.69548630752, + null, + 92914.29701391104, + 92662.91635122887, + null, + 92914.29701391104, + 92806.5752589732, + null, + 92914.29701391104, + 92672.51828517085, + null, + 92914.29701391104, + 92780.45361230415, + null, + 92914.29701391104, + 92910.85152531487, + null, + 92914.29701391104, + 92750.21944483303, + null, + 92914.29701391104, + 92929.03768547083, + null, + 92914.29701391104, + 92695.48300652891, + null, + 92914.29701391104, + 92763.33740890355, + null, + 92914.29701391104, + 92746.60202937137, + null, + 92914.29701391104, + 92804.83283425898, + null, + 92914.29701391104, + 92656.75321387713, + null, + 92914.29701391104, + 92720.63886172147, + null, + 92914.29701391104, + 92781.03766208091, + null, + 92914.29701391104, + 92955.99148324825, + null, + 92914.29701391104, + 92819.90574053729, + null, + 92914.29701391104, + 92863.93843996643, + null, + 92914.29701391104, + 92762.18406665193, + null, + 92914.29701391104, + 92731.96951288165, + null, + 92914.29701391104, + 92829.5244158295, + null, + 92914.29701391104, + 92829.06364513682, + null, + 92914.29701391104, + 92964.21376697725, + null, + 92914.29701391104, + 92797.61369683825, + null, + 92914.29701391104, + 92899.57389546379, + null, + 92914.29701391104, + 92689.95383378031, + null, + 92914.29701391104, + 92879.10271586856, + null, + 92914.29701391104, + 92918.23986331817, + null, + 92914.29701391104, + 92770.44632801176, + null, + 92914.29701391104, + 92826.16653182537, + null, + 92914.29701391104, + 92776.46176010194, + null, + 92914.29701391104, + 92799.3624177929, + null, + 92914.29701391104, + 92744.89756492016, + null, + 92914.29701391104, + 92788.55500541464, + null, + 92914.29701391104, + 92743.6893037566, + null, + 92914.29701391104, + 92755.14253033418, + null, + 92914.29701391104, + 92674.50485570161, + null, + 92914.29701391104, + 92778.98325152327, + null, + 92914.29701391104, + 92823.64619231266, + null, + 92914.29701391104, + 92845.58188637684, + null, + 92914.29701391104, + 92870.93404835771, + null, + 92914.29701391104, + 92855.1291239748, + null, + 92914.29701391104, + 92698.77859603205, + null, + 92914.29701391104, + 92802.31863144008, + null, + 92914.29701391104, + 92892.72049598476, + null, + 92914.29701391104, + 92868.7121626449, + null, + 92914.29701391104, + 92915.20617790846, + null, + 92914.29701391104, + 92928.39381493034, + null, + 92914.29701391104, + 92847.40821100175, + null, + 92914.29701391104, + 92864.43936845861, + null, + 92914.29701391104, + 92876.39180829469, + null, + 92914.29701391104, + 92838.77007893879, + null, + 92914.29701391104, + 92968.71300952189, + null, + 92914.29701391104, + 92759.73292583875, + null, + 92914.29701391104, + 92887.42259766499, + null, + 92914.29701391104, + 92908.28155211873, + null, + 92914.29701391104, + 92748.72130275492, + null, + 92914.29701391104, + 92958.5054330462, + null, + 92914.29701391104, + 92972.27137717552, + null, + 92914.29701391104, + 92886.64791972426, + null, + 92914.29701391104, + 92932.43400044982, + null, + 92914.29701391104, + 92868.65401523824, + null, + 92914.29701391104, + 92789.25845787131, + null, + 92914.29701391104, + 92871.2505752866, + null, + 92914.29701391104, + 92915.12458208142, + null, + 92914.29701391104, + 92741.2233382749, + null, + 92914.29701391104, + 92825.6682181709, + null, + 92914.29701391104, + 92937.13338499848, + null, + 92914.29701391104, + 92714.19169562703, + null, + 92914.29701391104, + 92710.4092859258, + null, + 92914.29701391104, + 92715.643325396, + null, + 92914.29701391104, + 92693.19807508035, + null, + 92914.29701391104, + 92785.66175398401, + null, + 92914.29701391104, + 92762.37604498131, + null, + 92914.29701391104, + 92898.36187164378, + null, + 92914.29701391104, + 92816.23744248544, + null, + 92914.29701391104, + 92846.47331272127, + null, + 92914.29701391104, + 92805.50156317676, + null, + 92914.29701391104, + 92908.05512282117, + null, + 92914.29701391104, + 92780.10459702351, + null, + 92914.29701391104, + 92735.8872940194, + null, + 92914.29701391104, + 92809.1992299666, + null, + 92914.29701391104, + 92734.73602492957, + null, + 92914.29701391104, + 92822.90992394777, + null, + 92914.29701391104, + 92792.15515640823, + null, + 92914.29701391104, + 92768.14688762419, + null, + 92914.29701391104, + 92907.89027775265, + null, + 92914.29701391104, + 92803.08916804337, + null, + 92914.29701391104, + 92805.67467569452, + null, + 92914.29701391104, + 92674.69300068788, + null, + 92914.29701391104, + 92860.77077420008, + null, + 92914.29701391104, + 92652.28269502005, + null, + 92914.29701391104, + 92931.03691748106, + null, + 92914.29701391104, + 92786.45165805808, + null, + 92914.29701391104, + 92690.068927953, + null, + 92914.29701391104, + 92654.04075146845, + null, + 92914.29701391104, + 92770.35188046416, + null, + 92914.29701391104, + 92806.45226779237, + null, + 92914.29701391104, + 92678.6570565419, + null, + 92914.29701391104, + 92789.38337680516, + null, + 92914.29701391104, + 92816.16939505044, + null, + 92914.29701391104, + 92681.04409740334, + null, + 92914.29701391104, + 92791.67829836892, + null, + 92914.29701391104, + 92670.95905256645, + null, + 92914.29701391104, + 92718.19280810321, + null, + 92914.29701391104, + 92931.93535013939, + null, + 92914.29701391104, + 92832.21310659085, + null, + 92914.29701391104, + 92970.07983820014, + null, + 92914.29701391104, + 92785.25516080103, + null, + 92914.29701391104, + 92703.7009482962, + null, + 92914.29701391104, + 92743.15309026223, + null, + 92914.29701391104, + 92832.99190630158, + null, + 92914.29701391104, + 92848.17018472671, + null, + 92914.29701391104, + 92856.6758347593, + null, + 92914.29701391104, + 92700.80017637742, + null, + 92914.29701391104, + 92811.6659175343, + null, + 92914.29701391104, + 92820.39777410144, + null, + 92914.29701391104, + 92637.22500048368, + null, + 92914.29701391104, + 92724.95781401754, + null, + 92914.29701391104, + 92918.12000715463, + null, + 92914.29701391104, + 92764.62782096473, + null, + 92914.29701391104, + 92834.87795946051, + null, + 92914.29701391104, + 92716.36551030405, + null, + 92914.29701391104, + 92688.16204123068, + null, + 92914.29701391104, + 92769.98293309148, + null, + 92914.29701391104, + 92747.11480769856, + null, + 92914.29701391104, + 92830.97365426456, + null, + 92914.29701391104, + 92956.88845743412, + null, + 92914.29701391104, + 92667.03163689894, + null, + 92914.29701391104, + 92773.97104867987, + null, + 92914.29701391104, + 92765.97352504909, + null, + 92914.29701391104, + 92817.15251278403, + null, + 92914.29701391104, + 92839.25105015197, + null, + 92914.29701391104, + 92684.27446517262, + null, + 92914.29701391104, + 92738.68503255733, + null, + 92914.29701391104, + 92928.56873551727, + null, + 92914.29701391104, + 92951.93214721176, + null, + 92914.29701391104, + 92840.23927959817, + null, + 92914.29701391104, + 92837.4325323441, + null, + 92914.29701391104, + 92773.24336533085, + null, + 92914.29701391104, + 92707.69711555765, + null, + 92914.29701391104, + 92894.12452528065, + null, + 92914.29701391104, + 92795.44137357986, + null, + 92914.29701391104, + 92872.08606858594, + null, + 92914.29701391104, + 92908.58904558522, + null, + 92914.29701391104, + 92895.13083815288, + null, + 92914.29701391104, + 92968.34537712067, + null, + 92914.29701391104, + 92933.32350347849, + null, + 92914.29701391104, + 92817.07788508855, + null, + 92914.29701391104, + 92708.3826511513, + null, + 92914.29701391104, + 92633.09806031307, + null, + 92914.29701391104, + 92724.69669127463, + null, + 92914.29701391104, + 92801.33010757218, + null, + 92914.29701391104, + 92859.73470884244, + null, + 92914.29701391104, + 92850.4893758, + null, + 92914.29701391104, + 92796.35612079636, + null, + 92914.29701391104, + 92724.80064222643, + null, + 92914.29701391104, + 92763.48617614119, + null, + 92914.29701391104, + 92691.12432749973, + null, + 92914.29701391104, + 92832.2455281412, + null, + 92914.29701391104, + 92821.6970235056, + null, + 92914.29701391104, + 92851.82952662438, + null, + 92914.29701391104, + 92739.55758843302, + null, + 92914.29701391104, + 92845.21219008189, + null, + 92914.29701391104, + 92889.60537235835, + null, + 92914.29701391104, + 92834.7670703216, + null, + 92914.29701391104, + 92733.8821803168, + null, + 92914.29701391104, + 92986.54378267881, + null, + 92914.29701391104, + 92947.59593567792, + null, + 92914.29701391104, + 92856.64253156737, + null, + 92914.29701391104, + 92846.37780126568, + null, + 92914.29701391104, + 92929.57342431239, + null, + 92914.29701391104, + 92694.65154614455, + null, + 92914.29701391104, + 92725.73648513126, + null, + 92914.29701391104, + 92909.37864471917, + null, + 92914.29701391104, + 92805.98275581197, + null, + 92914.29701391104, + 92737.17105520054, + null, + 92914.29701391104, + 92878.3665763355, + null, + 92914.29701391104, + 92802.85003718645, + null, + 92914.29701391104, + 92856.84754805104, + null, + 92914.29701391104, + 92888.32012726701, + null, + 92914.29701391104, + 92898.5423456085, + null, + 92914.29701391104, + 92936.9208329952, + null, + 92914.29701391104, + 92705.6426947887, + null, + 92914.29701391104, + 92802.4910911643, + null, + 92914.29701391104, + 92703.75887355224, + null, + 92914.29701391104, + 92720.32907766118, + null, + 92914.29701391104, + 92776.69738221027, + null, + 92914.29701391104, + 92670.03570964884, + null, + 92914.29701391104, + 92863.90985342726, + null, + 92914.29701391104, + 92783.24992765753, + null, + 92914.29701391104, + 92630.81613535142, + null, + 92914.29701391104, + 92650.60838023956, + null, + 92914.29701391104, + 92761.85914886044, + null, + 92914.29701391104, + 92892.90945921653, + null, + 92914.29701391104, + 92872.33464950968, + null, + 92914.29701391104, + 92900.15446475662, + null, + 92914.29701391104, + 92870.6477486372, + null, + 92914.29701391104, + 92933.1992941243, + null, + 92914.29701391104, + 92851.02442957304, + null, + 92914.29701391104, + 92751.17943703893, + null, + 92914.29701391104, + 92823.51293857984, + null, + 92914.29701391104, + 92945.57764957601, + null, + 92914.29701391104, + 92729.4609843271, + null, + 92914.29701391104, + 92890.45354067329, + null, + 92914.29701391104, + 92861.71457971018, + null, + 92914.29701391104, + 92758.15563703989, + null, + 92914.29701391104, + 92954.24674729079, + null, + 92914.29701391104, + 92684.86692219344, + null, + 92914.29701391104, + 92867.89952269728, + null, + 92914.29701391104, + 92753.36839914953, + null, + 92914.29701391104, + 92815.38400026898, + null, + 92914.29701391104, + 92641.38065955654, + null, + 92914.29701391104, + 92913.90088716414, + null, + 92914.29701391104, + 92828.71624935322, + null, + 92914.29701391104, + 92789.6538543949, + null, + 92914.29701391104, + 92893.38018644902, + null, + 92914.29701391104, + 92846.85628511268, + null, + 92914.29701391104, + 92874.80861019567, + null, + 94521.0965568673, + 94389.82268512787, + null, + 94521.0965568673, + 94473.83901464478, + null, + 96813.45598094136, + 96726.85001938077, + null, + 96813.45598094136, + 96856.75307244163, + null, + 96172.09176973494, + 95879.40264413109, + null, + 96172.09176973494, + 95209.07740315559, + null, + 96172.09176973494, + 96121.69831110585, + null, + 96100.97014585767, + 96162.4303606248, + null, + 96100.97014585767, + 96286.13541218151, + null, + 96100.97014585767, + 96121.69831110585, + null, + 95705.40993449507, + 94839.05921223038, + null, + 95705.40993449507, + 95500.49413841194, + null, + 95705.40993449507, + 95740.22395410195, + null, + 95705.40993449507, + 96162.4303606248, + null, + 95705.40993449507, + 95209.07740315559, + null, + 95705.40993449507, + 96121.69831110585, + null, + 96827.38300101372, + 96575.13863198814, + null, + 96827.38300101372, + 96887.63327582092, + null, + 96827.38300101372, + 97295.41993443215, + null, + 96461.24693139427, + 96576.33824877361, + null, + 96461.24693139427, + 96687.66890433879, + null, + 96461.24693139427, + 96378.93466044324, + null, + 96461.24693139427, + 96299.85768372391, + null, + 96461.24693139427, + 96612.8462594204, + null, + 96461.24693139427, + 96619.36075421462, + null, + 96535.82894445845, + 96757.24745508902, + null, + 96054.16110461712, + 95941.37906805627, + null, + 96003.46856538253, + 95883.81802686673, + null, + 96269.04428473447, + 96162.4303606248, + null, + 96269.04428473447, + 96419.20807083481, + null, + 96269.04428473447, + 96121.69831110585, + null, + 96269.04428473447, + 96286.13541218151, + null, + 97245.37390852053, + 96575.13863198814, + null, + 97245.37390852053, + 97300.31066052879, + null, + 97245.37390852053, + 96526.79557731359, + null, + 97245.37390852053, + 97227.48630235011, + null, + 96333.93226534751, + 96246.46103177394, + null, + 96333.93226534751, + 96107.43914118575, + null, + 96333.93226534751, + 96267.78319342206, + null, + 96333.93226534751, + 96223.35433626908, + null, + 96524.6669755778, + 96431.48255781003, + null, + 96524.6669755778, + 96576.33824877361, + null, + 96524.6669755778, + 96378.93466044324, + null, + 96524.6669755778, + 96299.85768372391, + null, + 96524.6669755778, + 96612.8462594204, + null, + 96524.6669755778, + 96619.36075421462, + null, + 96524.6669755778, + 96906.24469590047, + null, + 96558.43883318681, + 96456.6197756494, + null, + 96558.43883318681, + 96621.2306651311, + null, + 97409.25368271414, + 97209.46385807885, + null, + 97234.04346137235, + 97209.46385807885, + null, + 97545.38850460328, + 97209.46385807885, + null, + 97434.01515339047, + 97209.46385807885, + null, + 96281.59320080571, + 96103.35761667813, + null, + 96281.59320080571, + 96135.79066248288, + null, + 96281.59320080571, + 96596.14681899169, + null, + 96281.59320080571, + 96066.03066201929, + null, + 96281.59320080571, + 96124.46503141584, + null, + 96281.59320080571, + 96209.36237781073, + null, + 96281.59320080571, + 96049.12329461102, + null, + 96281.59320080571, + 96234.19587815474, + null, + 96281.59320080571, + 96182.34124187389, + null, + 96281.59320080571, + 96069.25402929624, + null, + 96281.59320080571, + 96110.12517865465, + null, + 96281.59320080571, + 96104.37397737885, + null, + 97334.199382075, + 97698.46004125582, + null, + 97662.82472168292, + 97334.199382075, + null, + 97762.19782518726, + 97334.199382075, + null, + 96164.9303846309, + 95879.40264413109, + null, + 96164.9303846309, + 94839.05921223038, + null, + 96164.9303846309, + 95912.25682425735, + null, + 96164.9303846309, + 97856.81262960663, + null, + 96164.9303846309, + 96091.68950774056, + null, + 96164.9303846309, + 95209.07740315559, + null, + 96164.9303846309, + 95874.51064937194, + null, + 95667.80679021226, + 95879.40264413109, + null, + 95667.80679021226, + 95473.87175752441, + null, + 95667.80679021226, + 95587.50972921033, + null, + 95667.80679021226, + 95545.42707969059, + null, + 95658.32343165908, + 95740.22395410195, + null, + 95658.32343165908, + 94839.05921223038, + null, + 95658.32343165908, + 96575.13863198814, + null, + 95658.32343165908, + 95500.49413841194, + null, + 95658.32343165908, + 95715.19253104036, + null, + 95658.32343165908, + 96091.68950774056, + null, + 95658.32343165908, + 95209.07740315559, + null, + 95648.34307354958, + 95529.50498627951, + null, + 95648.34307354958, + 95559.19394644504, + null, + 95648.34307354958, + 95475.06861200492, + null, + 95796.6220412549, + 95576.43864239694, + null, + 95796.6220412549, + 95675.56715847473, + null, + 95732.4030502184, + 95652.38718337071, + null, + 95732.4030502184, + 95529.44060928901, + null, + 96335.57621806604, + 96576.33824877361, + null, + 96335.57621806604, + 96687.66890433879, + null, + 96335.57621806604, + 96619.36075421462, + null, + 96407.22560594323, + 96463.32828761848, + null, + 96407.22560594323, + 96576.33824877361, + null, + 96407.22560594323, + 96378.93466044324, + null, + 96407.22560594323, + 96619.36075421462, + null, + 96407.22560594323, + 96612.8462594204, + null, + 96440.07084499848, + 96332.28386414018, + null, + 96440.07084499848, + 96704.88510542022, + null, + 95514.95574487532, + 95312.76274987488, + null, + 95514.95574487532, + 95307.82377822268, + null, + 95514.95574487532, + 95403.82629332301, + null, + 95514.95574487532, + 95414.5198416682, + null, + 95514.95574487532, + 95428.74452499427, + null, + 97442.1178182285, + 97820.00767848469, + null, + 96871.98342831364, + 96837.5234314195, + null, + 96189.19527054564, + 95981.4289276959, + null, + 96189.19527054564, + 96091.23112460926, + null, + 97753.78297929207, + 97608.10402017404, + null, + 97753.78297929207, + 97884.05250852642, + null, + 97753.78297929207, + 97883.03260448822, + null, + 97753.78297929207, + 97729.09348492567, + null, + 97753.78297929207, + 97618.47312684309, + null, + 97753.78297929207, + 97807.37725707618, + null, + 97753.78297929207, + 97782.00465249535, + null, + 97753.78297929207, + 97819.38169053383, + null, + 97753.78297929207, + 97944.82949518417, + null, + 97753.78297929207, + 97765.78400893019, + null, + 97753.78297929207, + 97793.209213772, + null, + 97753.78297929207, + 97914.72098171483, + null, + 97753.78297929207, + 97738.23489846344, + null, + 97753.78297929207, + 97051.56980439604, + null, + 97753.78297929207, + 97952.48333090381, + null, + 97753.78297929207, + 97679.97545734418, + null, + 97753.78297929207, + 97907.07772482715, + null, + 97753.78297929207, + 97692.3701015755, + null, + 97753.78297929207, + 97854.94207901634, + null, + 97753.78297929207, + 97911.10388910468, + null, + 97753.78297929207, + 97721.07590051215, + null, + 97753.78297929207, + 97836.27828454283, + null, + 97753.78297929207, + 97690.94002689296, + null, + 97753.78297929207, + 97837.0291488112, + null, + 97753.78297929207, + 97866.5629916667, + null, + 97753.78297929207, + 97641.92112939028, + null, + 97753.78297929207, + 97668.29733496392, + null, + 97753.78297929207, + 97745.78152964913, + null, + 97753.78297929207, + 97791.99447045982, + null, + 97753.78297929207, + 97799.84504107031, + null, + 97753.78297929207, + 97895.17566291973, + null, + 97753.78297929207, + 97556.46186289481, + null, + 97753.78297929207, + 97842.08313682882, + null, + 97753.78297929207, + 97646.58785246593, + null, + 97753.78297929207, + 97955.37870272386, + null, + 97753.78297929207, + 97569.3314865344, + null, + 97753.78297929207, + 97686.2269103041, + null, + 97753.78297929207, + 97716.19446453296, + null, + 97753.78297929207, + 97566.32146451849, + null, + 97753.78297929207, + 97749.43723227644, + null, + 97753.78297929207, + 97817.99605739959, + null, + 97753.78297929207, + 97770.29128264848, + null, + 97753.78297929207, + 97837.88980822326, + null, + 97753.78297929207, + 97659.10882033668, + null, + 97753.78297929207, + 97944.48848345084, + null, + 97753.78297929207, + 97724.71001358965, + null, + 97753.78297929207, + 97840.4488438348, + null, + 97753.78297929207, + 97682.13216992372, + null, + 96341.35508815081, + 95841.15444703231, + null, + 96341.35508815081, + 96182.13562718286, + null, + 96341.35508815081, + 95879.40264413109, + null, + 96341.35508815081, + 96575.13863198814, + null, + 96341.35508815081, + 95209.07740315559, + null, + 96341.35508815081, + 96162.4303606248, + null, + 96341.35508815081, + 96286.13541218151, + null, + 96341.35508815081, + 95825.30565065744, + null, + 96341.35508815081, + 96121.69831110585, + null, + 95819.77591622746, + 95658.74013915077, + null, + 95819.77591622746, + 95503.24905229843, + null, + 95819.77591622746, + 95545.42707969059, + null, + 95819.77591622746, + 95679.24097287183, + null, + 95963.6655367038, + 95819.77591622746, + null, + 95836.41008943335, + 95879.40264413109, + null, + 95836.41008943335, + 96162.4303606248, + null, + 95836.41008943335, + 95209.07740315559, + null, + 95836.41008943335, + 95545.42707969059, + null, + 95836.41008943335, + 95587.50972921033, + null, + 95836.41008943335, + 96121.69831110585, + null, + 96259.9082581497, + 96253.47998191483, + null, + 96624.18025269137, + 96760.86563639867, + null, + 96624.18025269137, + 96753.76496796569, + null, + 96624.18025269137, + 96733.77607604802, + null, + 96595.38846744089, + 96760.86563639867, + null, + 96595.38846744089, + 96753.76496796569, + null, + 97698.15736668535, + 97834.98736896088, + null, + 96237.38326345755, + 96049.63837547174, + null, + 96237.38326345755, + 96387.01730151517, + null, + 96237.38326345755, + 96089.25686352311, + null, + 96237.38326345755, + 96121.88887235317, + null, + 96272.62459980143, + 96094.58974753537, + null, + 96297.69636707871, + 96176.81124765753, + null, + 96297.69636707871, + 96239.21475237247, + null, + 96297.69636707871, + 96187.2673674574, + null, + 96297.69636707871, + 96332.65419596537, + null, + 96297.69636707871, + 96233.66033300763, + null, + 95372.37969661041, + 95879.40264413109, + null, + 95372.37969661041, + 95209.07740315559, + null, + 96464.1710890281, + 97856.81262960663, + null, + 96464.1710890281, + 95879.40264413109, + null, + 96464.1710890281, + 95912.25682425735, + null, + 96464.1710890281, + 96065.14768742399, + null, + 96464.1710890281, + 95852.81047544103, + null, + 96464.1710890281, + 96091.68950774056, + null, + 96464.1710890281, + 95209.07740315559, + null, + 96300.0043841075, + 95766.82836995482, + null, + 96300.0043841075, + 96233.30699052043, + null, + 96300.0043841075, + 96134.36234317473, + null, + 96300.0043841075, + 95796.61373078152, + null, + 96300.0043841075, + 95746.24059541902, + null, + 96300.0043841075, + 95815.83892952197, + null, + 96300.0043841075, + 96297.38515154971, + null, + 96300.0043841075, + 95726.95869510453, + null, + 96300.0043841075, + 95766.4420442681, + null, + 96300.0043841075, + 95733.5582374262, + null, + 96300.0043841075, + 96575.13863198814, + null, + 96300.0043841075, + 95788.6686934094, + null, + 96300.0043841075, + 95813.90918667779, + null, + 96300.0043841075, + 96151.41022304098, + null, + 96300.0043841075, + 96082.6862769373, + null, + 96300.0043841075, + 96223.09032145453, + null, + 96300.0043841075, + 95777.06593763633, + null, + 96300.0043841075, + 96262.14436611164, + null, + 96300.0043841075, + 95751.83804119815, + null, + 96300.0043841075, + 95778.11133873799, + null, + 96300.0043841075, + 96180.26927345316, + null, + 96300.0043841075, + 95743.57295726631, + null, + 96300.0043841075, + 96170.58043821786, + null, + 96300.0043841075, + 95795.05422834658, + null, + 96300.0043841075, + 96141.79495419456, + null, + 96300.0043841075, + 95841.15444703231, + null, + 96300.0043841075, + 96226.17274284131, + null, + 95976.46298115156, + 95766.82836995482, + null, + 95923.70592479738, + 95976.46298115156, + null, + 95976.46298115156, + 95631.07394328593, + null, + 95976.46298115156, + 96575.13863198814, + null, + 95976.46298115156, + 95879.78023428856, + null, + 95540.24503251979, + 95976.46298115156, + null, + 96423.89730001795, + 96463.32828761848, + null, + 96423.89730001795, + 96576.33824877361, + null, + 96423.89730001795, + 96378.93466044324, + null, + 96423.89730001795, + 96619.36075421462, + null, + 96423.89730001795, + 96612.8462594204, + null, + 97651.32746016643, + 97225.12273154467, + null, + 97136.55546326986, + 97225.12273154467, + null, + 97605.64203060168, + 97225.12273154467, + null, + 97499.57548817585, + 97225.12273154467, + null, + 97615.00090956, + 97225.12273154467, + null, + 97672.92128722146, + 97225.12273154467, + null, + 96380.40661308727, + 96450.86417398539, + null, + 96380.40661308727, + 96318.37473253458, + null, + 96380.40661308727, + 96384.7612066812, + null, + 96380.40661308727, + 96432.75800775865, + null, + 96196.257368652, + 96032.14228891094, + null, + 96196.257368652, + 96318.37473253458, + null, + 96196.257368652, + 96246.46103177394, + null, + 97764.93718471118, + 98052.01818030688, + null, + 97764.93718471118, + 98000.89472177274, + null, + 97764.93718471118, + 98030.63733564413, + null, + 97964.99194759796, + 98149.10712130788, + null, + 97964.99194759796, + 98216.62724920495, + null, + 97964.99194759796, + 98213.69694156857, + null, + 97964.99194759796, + 98136.52770175759, + null, + 96053.464316358, + 95844.27494216182, + null, + 96053.464316358, + 95882.75653309235, + null, + 96053.464316358, + 96049.12329461102, + null, + 96053.464316358, + 95858.11291681843, + null, + 96053.464316358, + 95873.13670582481, + null, + 96053.464316358, + 96066.03066201929, + null, + 96053.464316358, + 95915.45945457155, + null, + 96053.464316358, + 96661.15501811591, + null, + 96053.464316358, + 95780.44924539157, + null, + 96053.464316358, + 96680.86127426095, + null, + 96053.464316358, + 95886.06286226807, + null, + 96053.464316358, + 95746.45351481336, + null, + 96053.464316358, + 95768.15206604342, + null, + 96053.464316358, + 95691.04939234379, + null, + 96053.464316358, + 95836.51390847687, + null, + 96053.464316358, + 95934.77941414388, + null, + 96053.464316358, + 95816.16075862515, + null, + 96053.464316358, + 96432.47446387983, + null, + 96053.464316358, + 95721.1118486502, + null, + 96053.464316358, + 95900.55166557113, + null, + 96053.464316358, + 95799.86698698705, + null, + 96053.464316358, + 96081.51773116515, + null, + 96053.464316358, + 95846.27746233897, + null, + 96053.464316358, + 95973.08240383722, + null, + 96053.464316358, + 95929.56949551513, + null, + 96053.464316358, + 95856.24184208568, + null, + 96053.464316358, + 95962.648951747, + null, + 96053.464316358, + 95937.40790539984, + null, + 96053.464316358, + 95824.43387327349, + null, + 96053.464316358, + 95733.48913760284, + null, + 96053.464316358, + 95793.6820658207, + null, + 96053.464316358, + 95772.40764226652, + null, + 96053.464316358, + 95922.24975383069, + null, + 96053.464316358, + 95914.52764200403, + null, + 96053.464316358, + 95878.63974632234, + null, + 96053.464316358, + 96432.60634695792, + null, + 96053.464316358, + 95810.1892282629, + null, + 96053.464316358, + 95986.87215922702, + null, + 96053.464316358, + 95854.36203630836, + null, + 96053.464316358, + 95751.93219087191, + null, + 96053.464316358, + 95948.29108104784, + null, + 96053.464316358, + 95933.10890391868, + null, + 96053.464316358, + 95771.1520841971, + null, + 96053.464316358, + 96026.31169836612, + null, + 96053.464316358, + 95774.14507709046, + null, + 96053.464316358, + 95990.44398072414, + null, + 96053.464316358, + 96104.37397737885, + null, + 96053.464316358, + 96644.71742174745, + null, + 96053.464316358, + 95797.38464544155, + null, + 96053.464316358, + 95759.28364262846, + null, + 96053.464316358, + 95879.32488590298, + null, + 96053.464316358, + 96007.02552024368, + null, + 96053.464316358, + 95799.71339132743, + null, + 96053.464316358, + 95986.9049325351, + null, + 96053.464316358, + 95945.23705564445, + null, + 96053.464316358, + 96030.33284891481, + null, + 96053.464316358, + 95810.60492377383, + null, + 96053.464316358, + 95867.72485103867, + null, + 96053.464316358, + 95904.66765956307, + null, + 96053.464316358, + 96033.15612682415, + null, + 95847.60434582221, + 95749.64560857885, + null, + 95847.60434582221, + 95740.81234286937, + null, + 95847.60434582221, + 95693.87231896988, + null, + 95847.60434582221, + 95747.4548018069, + null, + 95847.60434582221, + 95791.04080191755, + null, + 96119.17908740342, + 94839.05921223038, + null, + 96119.17908740342, + 95912.25682425735, + null, + 96119.17908740342, + 97856.81262960663, + null, + 96119.17908740342, + 95879.40264413109, + null, + 96119.17908740342, + 96091.68950774056, + null, + 96119.17908740342, + 95209.07740315559, + null, + 96119.17908740342, + 95874.51064937194, + null, + 95905.42580827077, + 95954.92061138574, + null, + 95905.42580827077, + 95786.72480025757, + null, + 95963.6655367038, + 95905.42580827077, + null, + 95919.99780721203, + 95726.95869510453, + null, + 95919.99780721203, + 95746.24059541902, + null, + 95919.99780721203, + 96534.17654783507, + null, + 95919.99780721203, + 95954.92061138574, + null, + 95923.70592479738, + 95919.99780721203, + null, + 95919.99780721203, + 95777.06593763633, + null, + 95919.99780721203, + 95870.52884118582, + null, + 95919.99780721203, + 95566.08096854025, + null, + 95919.99780721203, + 96389.15700605555, + null, + 95919.99780721203, + 95512.73349904499, + null, + 95919.99780721203, + 95733.5582374262, + null, + 95919.99780721203, + 96575.13863198814, + null, + 95919.99780721203, + 95643.13524318043, + null, + 95919.99780721203, + 95778.11133873799, + null, + 95919.99780721203, + 95535.85549573906, + null, + 95919.99780721203, + 95631.07394328593, + null, + 96185.37627813521, + 96004.96794127276, + null, + 95946.3884071162, + 95879.40264413109, + null, + 95946.3884071162, + 96575.13863198814, + null, + 95946.3884071162, + 95209.07740315559, + null, + 95946.3884071162, + 96091.68950774056, + null, + 95946.3884071162, + 96286.13541218151, + null, + 95946.3884071162, + 96419.20807083481, + null, + 95946.3884071162, + 95825.30565065744, + null, + 95946.3884071162, + 96121.69831110585, + null, + 96244.27988515895, + 96069.3698993026, + null, + 96174.10171537164, + 96032.14228891094, + null, + 96174.10171537164, + 95936.80461170511, + null, + 96174.10171537164, + 96246.46103177394, + null, + 96538.8108213843, + 96733.77607604802, + null, + 97589.77077865561, + 98391.3654527381, + null, + 97589.77077865561, + 97562.46612950841, + null, + 97589.77077865561, + 98382.73052405847, + null, + 97589.77077865561, + 97552.51833446544, + null, + 96255.53165206172, + 96247.06477880469, + null, + 96255.53165206172, + 96115.75097550079, + null, + 96255.53165206172, + 96236.82264330242, + null, + 96255.53165206172, + 96287.68799404218, + null, + 96255.53165206172, + 96341.9584726013, + null, + 96255.53165206172, + 96334.04844919537, + null, + 96255.53165206172, + 96189.50164004327, + null, + 96255.53165206172, + 96129.95296040154, + null, + 96989.12139942696, + 96686.53014972531, + null, + 96989.12139942696, + 96666.27787163145, + null, + 96989.12139942696, + 96682.58310310973, + null, + 96386.3485642869, + 96315.1576937446, + null, + 96386.3485642869, + 96403.18675110892, + null, + 96386.3485642869, + 96432.7187319126, + null, + 96404.94279951866, + 96338.47765596065, + null, + 96404.94279951866, + 96273.99014457836, + null, + 96404.94279951866, + 96495.87133068114, + null, + 95582.13652811556, + 95879.40264413109, + null, + 95582.13652811556, + 94839.05921223038, + null, + 95582.13652811556, + 95209.07740315559, + null, + 96075.92114230867, + 95869.20236478248, + null, + 96075.92114230867, + 95912.008333997, + null, + 96075.92114230867, + 95949.1600784945, + null, + 95963.6655367038, + 96075.92114230867, + null, + 96933.47649225005, + 97411.333447029, + null, + 96208.32555016727, + 96105.10042717274, + null, + 96486.76296481364, + 96613.09529056762, + null, + 96486.76296481364, + 96555.82518831582, + null, + 96310.8706914388, + 96352.76136627332, + null, + 96310.8706914388, + 96318.37473253458, + null, + 96310.8706914388, + 96450.86417398539, + null, + 96310.8706914388, + 96129.08577941864, + null, + 96310.8706914388, + 96421.56170751022, + null, + 96310.8706914388, + 96432.75800775865, + null, + 96310.8706914388, + 96147.46587683262, + null, + 96310.8706914388, + 96112.49719695996, + null, + 96156.77295171334, + 95965.43289062445, + null, + 96208.35637264428, + 96033.98990398803, + null, + 96987.0677801975, + 96928.39803287762, + null, + 96987.0677801975, + 96932.98205381237, + null, + 96412.81309344785, + 96686.53014972531, + null, + 96412.81309344785, + 96212.6841921486, + null, + 96412.81309344785, + 96666.27787163145, + null, + 96412.81309344785, + 96682.58310310973, + null, + 95576.46893477392, + 95445.50029813193, + null, + 95552.49574202929, + 95395.99414455838, + null, + 95550.8641318485, + 95500.49413841194, + null, + 95550.8641318485, + 95740.22395410195, + null, + 95550.8641318485, + 94839.05921223038, + null, + 95550.8641318485, + 95209.07740315559, + null, + 95550.8641318485, + 96162.4303606248, + null, + 95550.8641318485, + 96121.69831110585, + null, + 96405.3198620752, + 96309.88478423315, + null, + 97078.78573950223, + 96405.3198620752, + null, + 95886.98258580548, + 96405.3198620752, + null, + 96463.65900406071, + 96405.3198620752, + null, + 96509.39820433313, + 96405.3198620752, + null, + 96509.4296845907, + 96405.3198620752, + null, + 96099.61138898744, + 96405.3198620752, + null, + 95915.425645233, + 95773.4170104861, + null, + 96264.80700176922, + 96431.48255781003, + null, + 96264.80700176922, + 96378.93466044324, + null, + 96264.80700176922, + 96109.23688977351, + null, + 96264.80700176922, + 96096.91431835426, + null, + 96264.80700176922, + 96576.33824877361, + null, + 96264.80700176922, + 96246.46103177394, + null, + 96264.80700176922, + 96011.82130088062, + null, + 96264.80700176922, + 96612.8462594204, + null, + 96264.80700176922, + 96061.42099266543, + null, + 96264.80700176922, + 96619.36075421462, + null, + 96264.80700176922, + 96074.03549605754, + null, + 96264.80700176922, + 96088.75199644471, + null, + 96264.80700176922, + 96118.24342476773, + null, + 96174.34018844058, + 96576.33824877361, + null, + 96174.34018844058, + 96378.93466044324, + null, + 96174.34018844058, + 96109.23688977351, + null, + 96174.34018844058, + 96096.91431835426, + null, + 96174.34018844058, + 96246.46103177394, + null, + 96174.34018844058, + 96612.8462594204, + null, + 95670.97648775595, + 95879.40264413109, + null, + 95670.97648775595, + 95209.07740315559, + null, + 95670.97648775595, + 96121.69831110585, + null, + 95372.88665283406, + 95879.40264413109, + null, + 95372.88665283406, + 94839.05921223038, + null, + 95372.88665283406, + 95209.07740315559, + null, + 95667.97156819428, + 94839.05921223038, + null, + 95667.97156819428, + 95740.22395410195, + null, + 95667.97156819428, + 95209.07740315559, + null, + 95667.97156819428, + 96162.4303606248, + null, + 95667.97156819428, + 95874.51064937194, + null, + 95667.97156819428, + 96121.69831110585, + null, + 96281.8187118494, + 96162.4303606248, + null, + 96281.8187118494, + 96419.20807083481, + null, + 96281.8187118494, + 96121.69831110585, + null, + 96281.8187118494, + 96286.13541218151, + null, + 96786.33551603762, + 96861.46033115732, + null, + 96786.33551603762, + 96640.5620202917, + null, + 96786.33551603762, + 96557.59659352103, + null, + 96786.33551603762, + 96575.13863198814, + null, + 96786.33551603762, + 96588.30967872712, + null, + 95652.45140521994, + 95740.22395410195, + null, + 95652.45140521994, + 94839.05921223038, + null, + 95652.45140521994, + 96575.13863198814, + null, + 95652.45140521994, + 95715.19253104036, + null, + 95652.45140521994, + 96091.68950774056, + null, + 95652.45140521994, + 95209.07740315559, + null, + 95652.45140521994, + 95874.51064937194, + null, + 96204.29166956923, + 96008.88833191514, + null, + 96204.29166956923, + 96027.13384085294, + null, + 96273.36385473177, + 96431.48255781003, + null, + 96273.36385473177, + 96576.33824877361, + null, + 96273.36385473177, + 96378.93466044324, + null, + 96273.36385473177, + 96109.23688977351, + null, + 96273.36385473177, + 96096.91431835426, + null, + 96273.36385473177, + 96246.46103177394, + null, + 96273.36385473177, + 96061.42099266543, + null, + 96273.36385473177, + 96619.36075421462, + null, + 96273.36385473177, + 96074.03549605754, + null, + 96273.36385473177, + 96088.75199644471, + null, + 96273.36385473177, + 96612.8462594204, + null, + 96273.36385473177, + 96118.24342476773, + null, + 96163.50814490586, + 95883.83699885607, + null, + 96163.50814490586, + 95975.06514142088, + null, + 96163.50814490586, + 96004.72927759534, + null, + 96163.50814490586, + 95950.19346715305, + null, + 96163.50814490586, + 96051.95003272599, + null, + 96163.50814490586, + 95893.51889181437, + null, + 96163.50814490586, + 96432.75800775865, + null, + 96163.50814490586, + 96352.76136627332, + null, + 96163.50814490586, + 96318.37473253458, + null, + 96163.50814490586, + 96450.86417398539, + null, + 96163.50814490586, + 96129.08577941864, + null, + 96163.50814490586, + 96421.56170751022, + null, + 96163.50814490586, + 96144.89367540594, + null, + 96163.50814490586, + 96101.32030537611, + null, + 96163.50814490586, + 95923.907758798, + null, + 96163.50814490586, + 96043.19356552222, + null, + 96163.50814490586, + 96087.111627038, + null, + 96163.50814490586, + 95969.29263186545, + null, + 96163.50814490586, + 96043.87770069051, + null, + 96163.50814490586, + 96147.46587683262, + null, + 96163.50814490586, + 95992.08890608055, + null, + 96142.15372609507, + 95999.96496058637, + null, + 96142.15372609507, + 96012.29670587514, + null, + 96142.15372609507, + 96246.46103177394, + null, + 96142.15372609507, + 96576.33824877361, + null, + 96142.15372609507, + 96299.85768372391, + null, + 96246.21706337249, + 96392.74500653436, + null, + 96246.21706337249, + 96376.91690518416, + null, + 96246.21706337249, + 96350.55565716545, + null, + 96246.21706337249, + 96321.15146800532, + null, + 95604.22358935632, + 95384.71934393427, + null, + 95604.22358935632, + 95319.53976511759, + null, + 95604.22358935632, + 95500.60372435469, + null, + 95604.22358935632, + 95386.86547266938, + null, + 95604.22358935632, + 95393.91431790583, + null, + 95604.22358935632, + 95496.27699337724, + null, + 96630.39978608028, + 96569.52588876095, + null, + 96630.39978608028, + 96654.64167636221, + null, + 96630.39978608028, + 96682.8032109078, + null, + 96630.39978608028, + 96505.5768828933, + null, + 96630.39978608028, + 96561.1289662077, + null, + 96630.39978608028, + 96942.59821550541, + null, + 96630.39978608028, + 96907.48571010484, + null, + 96630.39978608028, + 96889.0306429424, + null, + 96630.39978608028, + 96679.55975867888, + null, + 95596.36627113551, + 95351.97758507192, + null, + 96182.32358713142, + 96162.4303606248, + null, + 96182.32358713142, + 96419.20807083481, + null, + 96182.32358713142, + 96121.69831110585, + null, + 96182.32358713142, + 96286.13541218151, + null, + 96286.66809125463, + 96162.4303606248, + null, + 96286.66809125463, + 96419.20807083481, + null, + 96286.66809125463, + 96121.69831110585, + null, + 96286.66809125463, + 96286.13541218151, + null, + 95814.45750461605, + 94839.05921223038, + null, + 95814.45750461605, + 95740.22395410195, + null, + 95814.45750461605, + 96575.13863198814, + null, + 95814.45750461605, + 96091.68950774056, + null, + 95814.45750461605, + 95209.07740315559, + null, + 95814.45750461605, + 95874.51064937194, + null, + 95814.45750461605, + 96121.69831110585, + null, + 97301.69481913165, + 97189.57952601701, + null, + 96886.2262880243, + 96576.33824877361, + null, + 96886.2262880243, + 96687.66890433879, + null, + 96886.2262880243, + 96612.8462594204, + null, + 96886.2262880243, + 96619.36075421462, + null, + 96912.85156473947, + 96612.8462594204, + null, + 96912.85156473947, + 96576.33824877361, + null, + 96912.85156473947, + 96619.36075421462, + null, + 97085.38663455553, + 96757.24745508902, + null, + 97085.38663455553, + 96943.5826191979, + null, + 97355.69179208958, + 97250.13277358422, + null, + 97043.19055357405, + 96704.88510542022, + null, + 97043.19055357405, + 96935.82800306576, + null, + 97406.83103336953, + 97299.19607449145, + null, + 97508.64091238416, + 97525.78803979425, + null, + 97281.93703232154, + 97186.3132997967, + null, + 97281.93703232154, + 97178.4335252593, + null, + 97281.93703232154, + 97235.96464026743, + null, + 97281.93703232154, + 97158.96990923911, + null, + 97339.53315472855, + 97343.6823481417, + null, + 97339.53315472855, + 97223.42280780959, + null, + 97182.15385952276, + 96962.82978313397, + null, + 98255.45010528169, + 98078.46725482005, + null, + 98077.79681744472, + 98255.45010528169, + null, + 98528.28228471124, + 98255.45010528169, + null, + 98255.45010528169, + 98366.5317572711, + null, + 98653.03461351694, + 98255.45010528169, + null, + 98255.45010528169, + 98294.15306017191, + null, + 99214.362436891, + 98255.45010528169, + null, + 98255.45010528169, + 98141.6380062112, + null, + 96708.5597033612, + 96352.76136627332, + null, + 96708.5597033612, + 96318.37473253458, + null, + 96708.5597033612, + 96450.86417398539, + null, + 96708.5597033612, + 96421.56170751022, + null, + 96708.5597033612, + 96432.75800775865, + null, + 97342.9103563253, + 97298.22480265996, + null, + 97342.9103563253, + 97263.87438890443, + null, + 97298.42341187966, + 97405.45190185368, + null, + 97298.42341187966, + 97265.26688568054, + null, + 97298.42341187966, + 97143.09835047876, + null, + 97298.42341187966, + 97129.06878847051, + null, + 97298.42341187966, + 97235.87959368073, + null, + 98020.16838808233, + 98296.91832297333, + null, + 98020.16838808233, + 98283.52624727061, + null, + 97476.84212265511, + 97321.80845451674, + null, + 97476.84212265511, + 97570.19222318186, + null, + 97492.36374902399, + 97585.2552421273, + null, + 97585.2552421273, + 97592.15333958538, + null, + 97585.2552421273, + 97634.27256841559, + null, + 97585.2552421273, + 97731.86232399511, + null, + 97850.09960847285, + 97488.0322813689, + null, + 98528.28228471124, + 97850.09960847285, + null, + 98077.79681744472, + 97850.09960847285, + null, + 97850.09960847285, + 98027.23840369366, + null, + 97850.09960847285, + 98078.46725482005, + null, + 97850.09960847285, + 98141.6380062112, + null, + 97800.77052809988, + 98014.4662099854, + null, + 97800.77052809988, + 98070.63175874326, + null, + 97800.77052809988, + 97912.42274945986, + null, + 97800.77052809988, + 97847.58279285853, + null, + 97800.77052809988, + 97961.59489284047, + null, + 97800.77052809988, + 97668.12360152378, + null, + 97497.40137546581, + 97354.44949091639, + null, + 97497.40137546581, + 97438.11718141663, + null, + 97172.85679925286, + 97123.22683661472, + null, + 97172.85679925286, + 97010.00916339061, + null, + 97172.85679925286, + 97003.53337889878, + null, + 97172.85679925286, + 97130.84549007515, + null, + 97172.85679925286, + 97129.06878847051, + null, + 97172.85679925286, + 97126.32749050998, + null, + 97172.85679925286, + 97031.44944641803, + null, + 97172.85679925286, + 97089.4267597361, + null, + 97172.85679925286, + 97004.45699478449, + null, + 97172.85679925286, + 97072.86333942694, + null, + 97172.85679925286, + 97161.1662180509, + null, + 97172.85679925286, + 97054.70302158214, + null, + 97230.27471512488, + 97126.32749050998, + null, + 97230.27471512488, + 97130.84549007515, + null, + 97230.27471512488, + 96956.32059970194, + null, + 97230.27471512488, + 97023.40738180937, + null, + 97230.27471512488, + 97117.40589499525, + null, + 97230.27471512488, + 97029.66141271086, + null, + 97230.27471512488, + 97109.4740304231, + null, + 97230.27471512488, + 97150.9713187897, + null, + 97465.08902518246, + 97384.12423704745, + null, + 97465.08902518246, + 97261.41344047216, + null, + 97060.83487204376, + 97058.39697873502, + null, + 97060.83487204376, + 96637.24626095728, + null, + 97598.41715003968, + 97373.64682205649, + null, + 97177.84417040872, + 97373.64682205649, + null, + 97191.15673842629, + 97373.64682205649, + null, + 97530.9950602946, + 97326.30387106475, + null, + 97530.9950602946, + 97762.94327311365, + null, + 97530.9950602946, + 97434.17271064689, + null, + 97230.78206970361, + 97043.03097313532, + null, + 97230.78206970361, + 97243.08337739702, + null, + 97230.78206970361, + 97145.76310622979, + null, + 97230.78206970361, + 97095.05235018766, + null, + 97878.18936700777, + 97683.2450611929, + null, + 97384.85502032931, + 97683.2450611929, + null, + 98088.69457083048, + 97683.2450611929, + null, + 97790.18756915494, + 97683.2450611929, + null, + 97367.93418176113, + 97256.31857012321, + null, + 97367.93418176113, + 97209.354903683, + null, + 97194.9145170215, + 97275.21589329709, + null, + 98030.3922687115, + 98126.72194186601, + null, + 98030.3922687115, + 98029.23649616924, + null, + 98030.3922687115, + 98218.18612787206, + null, + 98030.3922687115, + 98173.49799372526, + null, + 98030.3922687115, + 98243.20668277878, + null, + 98030.3922687115, + 97942.74096463536, + null, + 98030.3922687115, + 98086.92377545155, + null, + 98030.3922687115, + 98136.26463837818, + null, + 98030.3922687115, + 98032.10914792269, + null, + 98030.3922687115, + 98164.7191831383, + null, + 98030.3922687115, + 98177.75893148144, + null, + 98030.3922687115, + 98048.7976669239, + null, + 98030.3922687115, + 98085.14677152337, + null, + 98030.3922687115, + 98137.73454611025, + null, + 98030.3922687115, + 98087.89687269753, + null, + 98030.3922687115, + 98058.3882260423, + null, + 98030.3922687115, + 98196.25269400347, + null, + 98030.3922687115, + 98165.00907916101, + null, + 98030.3922687115, + 98038.87796969373, + null, + 98030.3922687115, + 98047.80561487027, + null, + 98030.3922687115, + 98214.51331152665, + null, + 98030.3922687115, + 98221.44438791503, + null, + 98030.3922687115, + 98250.33407362783, + null, + 98030.3922687115, + 98175.28356611886, + null, + 98030.3922687115, + 98086.64316477746, + null, + 98030.3922687115, + 98153.95335586341, + null, + 98164.50513674611, + 98987.744183523, + null, + 98164.50513674611, + 98453.38379434445, + null, + 97211.33338583425, + 97072.80267951578, + null, + 97211.33338583425, + 97051.94872116366, + null, + 97167.07602680264, + 97109.16179890749, + null, + 97167.07602680264, + 96984.11595684849, + null, + 98102.01760177093, + 98217.55465375583, + null, + 98102.01760177093, + 98311.68272827691, + null, + 98102.01760177093, + 98378.07785934748, + null, + 98102.01760177093, + 98246.37587520153, + null, + 98102.01760177093, + 98230.17666779128, + null, + 98102.01760177093, + 98046.28708608718, + null, + 98102.01760177093, + 98251.18088487917, + null, + 98102.01760177093, + 98319.10302793559, + null, + 98102.01760177093, + 98197.145671496, + null, + 98102.01760177093, + 98233.44659529526, + null, + 98102.01760177093, + 98348.03221156073, + null, + 98102.01760177093, + 98051.83495872519, + null, + 98528.28228471124, + 98102.01760177093, + null, + 98102.01760177093, + 98248.99486452407, + null, + 96400.51278286969, + 96869.55087283194, + null, + 96860.00354930486, + 96869.55087283194, + null, + 96442.24721615986, + 96869.55087283194, + null, + 98932.31091884513, + 98618.6314379455, + null, + 98926.20655583622, + 98618.6314379455, + null, + 98881.20399257346, + 98618.6314379455, + null, + 98845.6917714939, + 98618.6314379455, + null, + 98838.01226486915, + 98618.6314379455, + null, + 98916.08043593282, + 98618.6314379455, + null, + 98776.08147395353, + 98618.6314379455, + null, + 98875.12446310604, + 98618.6314379455, + null, + 98873.6590998779, + 98618.6314379455, + null, + 98833.5386160878, + 98618.6314379455, + null, + 98731.25835265023, + 98618.6314379455, + null, + 98715.38337956829, + 98618.6314379455, + null, + 98779.4951496633, + 98618.6314379455, + null, + 98763.69912444155, + 98618.6314379455, + null, + 98775.64297666437, + 98618.6314379455, + null, + 98794.9356782363, + 98618.6314379455, + null, + 98769.87019965112, + 98618.6314379455, + null, + 97980.37305163042, + 98266.98788422802, + null, + 97980.37305163042, + 98282.75113269164, + null, + 98040.98610521741, + 98323.4492928728, + null, + 98040.98610521741, + 98282.75113269164, + null, + 98040.98610521741, + 98381.35948380831, + null, + 98040.98610521741, + 98387.01183578208, + null, + 97099.06003533595, + 96930.45087312897, + null, + 97099.06003533595, + 96711.39206785646, + null, + 98932.31091884513, + 98609.76983635421, + null, + 98926.20655583622, + 98609.76983635421, + null, + 98881.20399257346, + 98609.76983635421, + null, + 98845.6917714939, + 98609.76983635421, + null, + 98838.01226486915, + 98609.76983635421, + null, + 98916.08043593282, + 98609.76983635421, + null, + 98776.08147395353, + 98609.76983635421, + null, + 98875.12446310604, + 98609.76983635421, + null, + 98873.6590998779, + 98609.76983635421, + null, + 98833.5386160878, + 98609.76983635421, + null, + 98731.25835265023, + 98609.76983635421, + null, + 98715.38337956829, + 98609.76983635421, + null, + 98779.4951496633, + 98609.76983635421, + null, + 98763.69912444155, + 98609.76983635421, + null, + 98775.64297666437, + 98609.76983635421, + null, + 98794.9356782363, + 98609.76983635421, + null, + 98769.87019965112, + 98609.76983635421, + null, + 97732.09002327014, + 97730.67186086356, + null, + 97732.09002327014, + 97737.3791540576, + null, + 97732.09002327014, + 97760.05643502806, + null, + 97732.09002327014, + 97812.77410308796, + null, + 97732.09002327014, + 97846.09235022662, + null, + 97732.09002327014, + 97844.89671201118, + null, + 97732.09002327014, + 97790.3443567589, + null, + 97732.09002327014, + 97780.88601719037, + null, + 97732.09002327014, + 97793.6389519722, + null, + 97732.09002327014, + 97822.87456305856, + null, + 97732.09002327014, + 97756.11969829707, + null, + 97732.09002327014, + 97714.25738805142, + null, + 97732.09002327014, + 97797.73998808523, + null, + 97154.99065747266, + 97059.65093863031, + null, + 97154.99065747266, + 97074.06837654435, + null, + 97154.99065747266, + 96906.24469590047, + null, + 97218.35146138504, + 97051.91473217483, + null, + 97218.35146138504, + 96999.63956845234, + null, + 97299.95816584109, + 97267.94399725233, + null, + 97299.95816584109, + 97420.50106316275, + null, + 97299.95816584109, + 97668.12360152378, + null, + 97626.13132471772, + 97625.9522204539, + null, + 97626.13132471772, + 97641.00229908383, + null, + 97626.13132471772, + 97516.38998854977, + null, + 97626.13132471772, + 97847.58279285853, + null, + 97626.13132471772, + 97567.99530773342, + null, + 97626.13132471772, + 97610.07987633217, + null, + 97112.35613433391, + 97071.63031530446, + null, + 97112.35613433391, + 96996.84956326048, + null, + 97112.35613433391, + 96993.23426998722, + null, + 97560.98718189307, + 97664.79092225397, + null, + 97185.7097878747, + 97019.97811091317, + null, + 97185.7097878747, + 96980.83698822696, + null, + 97185.7097878747, + 97085.24353199765, + null, + 97201.16002150408, + 96992.79396284865, + null, + 97201.16002150408, + 97123.22683661472, + null, + 97201.16002150408, + 97129.06878847051, + null, + 97201.16002150408, + 97010.00916339061, + null, + 97201.16002150408, + 97235.87959368073, + null, + 97270.02110151788, + 97123.22683661472, + null, + 97270.02110151788, + 97154.35896812822, + null, + 97270.02110151788, + 97143.09835047876, + null, + 97270.02110151788, + 97235.87959368073, + null, + 97270.02110151788, + 97130.84549007515, + null, + 97433.41068898393, + 97382.12160605498, + null, + 97910.96993785165, + 97833.68675936971, + null, + 99128.8683145138, + 97833.68675936971, + null, + 96786.0414096176, + 97833.68675936971, + null, + 97833.68675936971, + 97967.22245570888, + null, + 97325.64609840355, + 97293.33443899159, + null, + 97103.12815964877, + 96764.02037724445, + null, + 97473.72704771126, + 97500.29116980988, + null, + 96893.86441244776, + 96463.32828761848, + null, + 96893.86441244776, + 96576.33824877361, + null, + 96893.86441244776, + 96378.93466044324, + null, + 96893.86441244776, + 96619.36075421462, + null, + 96893.86441244776, + 96612.8462594204, + null, + 95331.67170746473, + 94961.9962390448, + null, + 95331.67170746473, + 95076.82444005845, + null, + 95331.67170746473, + 95220.63167603598, + null, + 95331.67170746473, + 95123.75313616887, + null, + 95331.67170746473, + 95594.81419372423, + null, + 96586.20076828018, + 96504.0113092561, + null, + 96586.20076828018, + 96749.74084841611, + null, + 96586.20076828018, + 96786.69954014356, + null, + 96586.20076828018, + 96590.63286272458, + null, + 96586.20076828018, + 96722.33353227373, + null, + 96950.1808551135, + 97074.06837654435, + null, + 96950.1808551135, + 97030.2520829105, + null, + 96950.1808551135, + 97059.65093863031, + null, + 96950.1808551135, + 96829.08746262993, + null, + 96950.1808551135, + 96842.27837158077, + null, + 96950.1808551135, + 96906.24469590047, + null, + 96390.43113801478, + 96405.86324838473, + null, + 96390.43113801478, + 96370.02373932622, + null, + 96858.54175843939, + 96795.14077544119, + null, + 96858.54175843939, + 96420.91570369813, + null, + 96858.54175843939, + 96809.16183135839, + null, + 97167.39841072715, + 97123.22683661472, + null, + 97167.39841072715, + 97143.09835047876, + null, + 97167.39841072715, + 97296.74368922459, + null, + 97167.39841072715, + 97010.00916339061, + null, + 97167.39841072715, + 97003.53337889878, + null, + 97167.39841072715, + 97129.06878847051, + null, + 97167.39841072715, + 97004.45699478449, + null, + 97167.39841072715, + 97031.44944641803, + null, + 97167.39841072715, + 97130.84549007515, + null, + 97167.39841072715, + 97089.4267597361, + null, + 97167.39841072715, + 97126.32749050998, + null, + 97167.39841072715, + 97235.87959368073, + null, + 97167.39841072715, + 97072.86333942694, + null, + 97167.39841072715, + 97161.1662180509, + null, + 97743.58448295263, + 97952.9294243462, + null, + 97743.58448295263, + 97955.84289253918, + null, + 97743.58448295263, + 97937.84650883084, + null, + 97743.58448295263, + 97926.20155611816, + null, + 97743.58448295263, + 97921.57888470891, + null, + 97449.0985514171, + 97447.89786565928, + null, + 97449.0985514171, + 97584.54867327097, + null, + 97449.0985514171, + 97440.19299843578, + null, + 97449.0985514171, + 97537.69416462189, + null, + 97449.0985514171, + 97557.92783029494, + null, + 97449.0985514171, + 97520.47130796686, + null, + 97449.0985514171, + 97420.5839825796, + null, + 97449.0985514171, + 97406.49600346612, + null, + 97449.0985514171, + 97524.95581496398, + null, + 97449.0985514171, + 97470.45712281887, + null, + 97449.0985514171, + 97550.40349062327, + null, + 97449.0985514171, + 97402.25470761966, + null, + 97449.0985514171, + 97501.53966637526, + null, + 97449.0985514171, + 97456.21491158627, + null, + 97449.0985514171, + 97486.11011137227, + null, + 97449.0985514171, + 97490.76512311144, + null, + 97449.0985514171, + 97473.15345637558, + null, + 97449.0985514171, + 97380.45145645179, + null, + 97449.0985514171, + 97364.93794419584, + null, + 97449.0985514171, + 97493.31139326544, + null, + 97642.36452938811, + 97642.23998100052, + null, + 97642.36452938811, + 97733.12248701614, + null, + 97990.33956338989, + 98615.37677009653, + null, + 97990.33956338989, + 98266.1684006728, + null, + 98636.37989407925, + 99212.51030616327, + null, + 98636.37989407925, + 99089.64531938844, + null, + 98636.37989407925, + 98975.4583568785, + null, + 98873.6590998779, + 98636.37989407925, + null, + 98636.37989407925, + 99287.0655957827, + null, + 98636.37989407925, + 99222.80666593021, + null, + 98636.37989407925, + 99232.44990568829, + null, + 98875.12446310604, + 98636.37989407925, + null, + 97499.45757321935, + 97568.18928030234, + null, + 97499.45757321935, + 97664.13121209273, + null, + 97494.95806383107, + 97608.50198699025, + null, + 96707.92401672102, + 96432.75800775865, + null, + 96707.92401672102, + 96450.86417398539, + null, + 96707.92401672102, + 96421.56170751022, + null, + 97387.15964980441, + 97516.32843180199, + null, + 96595.88973241366, + 96299.26984037684, + null, + 95958.17194866823, + 96595.88973241366, + null, + 96547.16032979287, + 96764.02037724445, + null, + 97343.70893048414, + 97295.1480213509, + null, + 97343.70893048414, + 97527.7722333421, + null, + 98022.64385800273, + 98323.4492928728, + null, + 98022.64385800273, + 98381.35948380831, + null, + 98022.64385800273, + 98387.01183578208, + null, + 98022.64385800273, + 98282.75113269164, + null, + 97909.08890877801, + 98296.91832297333, + null, + 97909.08890877801, + 98283.52624727061, + null, + 97379.30529940335, + 97343.47929912621, + null, + 97912.68866754905, + 98354.2021118834, + null, + 97912.68866754905, + 97981.00694860649, + null, + 97912.68866754905, + 98133.35294956547, + null, + 97483.5508578201, + 97482.43177391349, + null, + 97453.80616460227, + 97424.13306252814, + null, + 97453.80616460227, + 97531.13306710056, + null, + 97453.80616460227, + 97491.69682662486, + null, + 97453.80616460227, + 97607.29756739261, + null, + 97390.56459064402, + 97402.21565975588, + null, + 97390.56459064402, + 97409.51267743493, + null, + 97854.95892464767, + 97935.18971112657, + null, + 97854.95892464767, + 98014.4662099854, + null, + 97854.95892464767, + 98414.55375540078, + null, + 97854.95892464767, + 97912.42274945986, + null, + 97854.95892464767, + 97847.58279285853, + null, + 97854.95892464767, + 97961.59489284047, + null, + 97854.95892464767, + 97668.12360152378, + null, + 97689.45585714692, + 97935.18971112657, + null, + 97689.45585714692, + 97745.13254705475, + null, + 97689.45585714692, + 97717.30182307873, + null, + 97689.45585714692, + 97641.00229908383, + null, + 97689.45585714692, + 97839.00962931263, + null, + 97689.45585714692, + 97707.07960783267, + null, + 97689.45585714692, + 97847.58279285853, + null, + 96459.9064706218, + 95594.78680514084, + null, + 96459.9064706218, + 96382.50314982572, + null, + 98220.8617121839, + 98949.18912879386, + null, + 97896.16988465277, + 98010.42769601001, + null, + 97896.16988465277, + 97998.11890191796, + null, + 97276.66123026267, + 97154.35896812822, + null, + 97276.66123026267, + 97265.26688568054, + null, + 97276.66123026267, + 97143.09835047876, + null, + 97276.66123026267, + 97129.06878847051, + null, + 97276.66123026267, + 97235.87959368073, + null, + 97988.47049740942, + 97955.84289253918, + null, + 97988.47049740942, + 97952.9294243462, + null, + 97988.47049740942, + 98181.21611959832, + null, + 97988.47049740942, + 97937.84650883084, + null, + 97988.47049740942, + 98133.35294956547, + null, + 97988.47049740942, + 97926.20155611816, + null, + 97988.47049740942, + 98121.44337304786, + null, + 97988.47049740942, + 98071.41054108432, + null, + 98169.99665670788, + 98046.28708608718, + null, + 98169.99665670788, + 98381.74787497967, + null, + 98169.99665670788, + 98311.68272827691, + null, + 98169.99665670788, + 98251.18088487917, + null, + 98169.99665670788, + 98197.145671496, + null, + 98169.99665670788, + 98233.44659529526, + null, + 98169.99665670788, + 98348.03221156073, + null, + 98169.99665670788, + 98051.83495872519, + null, + 98169.99665670788, + 98290.95288923327, + null, + 98528.28228471124, + 98169.99665670788, + null, + 98169.99665670788, + 98248.99486452407, + null, + 97314.87265253808, + 97058.39697873502, + null, + 97314.87265253808, + 97150.45925062025, + null, + 97314.87265253808, + 97261.7617408887, + null, + 97314.87265253808, + 97156.92705815511, + null, + 97314.87265253808, + 96809.13802091916, + null, + 97314.87265253808, + 97271.69810632353, + null, + 97929.82001151697, + 98135.44809761492, + null, + 97929.82001151697, + 97975.85969435751, + null, + 97928.27341274354, + 98087.74110527057, + null, + 97928.27341274354, + 98131.02182023783, + null, + 97786.29869250092, + 97842.3191241412, + null, + 97786.29869250092, + 97897.19574531108, + null, + 97786.29869250092, + 97740.11577656561, + null, + 97805.14139405916, + 97901.20186675964, + null, + 97805.14139405916, + 97932.13537150175, + null, + 98093.39526957169, + 98323.4492928728, + null, + 98093.39526957169, + 98282.75113269164, + null, + 98093.39526957169, + 98381.35948380831, + null, + 98093.39526957169, + 98387.01183578208, + null, + 97448.93124443709, + 97364.53654526435, + null, + 97448.93124443709, + 97596.51200593878, + null, + 97448.93124443709, + 97466.27266862227, + null, + 97448.93124443709, + 97591.70446658987, + null, + 97448.93124443709, + 97559.74444341238, + null, + 97448.93124443709, + 97556.34242910771, + null, + 97448.93124443709, + 97568.50082889231, + null, + 97448.93124443709, + 97504.15192908207, + null, + 97448.93124443709, + 96925.02449761663, + null, + 97448.93124443709, + 97281.94651476617, + null, + 97773.13707838414, + 97730.67186086356, + null, + 97773.13707838414, + 97737.3791540576, + null, + 97773.13707838414, + 97754.87037614986, + null, + 97773.13707838414, + 97760.05643502806, + null, + 97773.13707838414, + 97816.8011205971, + null, + 97773.13707838414, + 97889.86492800197, + null, + 97773.13707838414, + 97790.3443567589, + null, + 97773.13707838414, + 97780.88601719037, + null, + 97773.13707838414, + 97793.6389519722, + null, + 97773.13707838414, + 97822.87456305856, + null, + 97773.13707838414, + 97756.11969829707, + null, + 97773.13707838414, + 97714.25738805142, + null, + 97773.13707838414, + 97797.73998808523, + null, + 97773.13707838414, + 97844.89671201118, + null, + 97290.81332207196, + 97096.25480847151, + null, + 97290.81332207196, + 97113.68749649214, + null, + 97290.81332207196, + 97070.65467482769, + null, + 97290.81332207196, + 97085.84775973822, + null, + 98040.70809859729, + 98299.94934348867, + null, + 98040.70809859729, + 98291.09947188398, + null, + 98040.70809859729, + 98218.1665266749, + null, + 97682.17810885303, + 97646.77543914225, + null, + 97902.9875639131, + 98092.4725283489, + null, + 97902.9875639131, + 98095.24070406985, + null, + 98103.51583993803, + 98265.74336042402, + null, + 98103.51583993803, + 98380.98621041664, + null, + 97433.16878255778, + 97453.59900556323, + null, + 97433.16878255778, + 97265.26688568054, + null, + 97433.16878255778, + 97296.74368922459, + null, + 97433.16878255778, + 97235.87959368073, + null, + 98011.69742537098, + 98354.2021118834, + null, + 98011.69742537098, + 97926.20155611816, + null, + 98011.69742537098, + 98133.35294956547, + null, + 98011.69742537098, + 97952.9294243462, + null, + 97956.78235187841, + 98175.83270961333, + null, + 97956.78235187841, + 98068.84935339227, + null, + 97956.78235187841, + 98076.53351725111, + null, + 97337.3673240496, + 97321.33667852162, + null, + 97337.3673240496, + 97256.20849471942, + null, + 97337.3673240496, + 96809.13802091916, + null, + 97337.3673240496, + 97375.35204686232, + null, + 97337.3673240496, + 97150.45925062025, + null, + 96357.32745947987, + 96085.62481953611, + null, + 96357.32745947987, + 96480.10013682928, + null, + 96357.32745947987, + 96809.13802091916, + null, + 96262.42166171632, + 96085.62481953611, + null, + 96262.42166171632, + 96637.24626095728, + null, + 96262.42166171632, + 96480.10013682928, + null, + 96262.42166171632, + 96809.13802091916, + null, + 95826.03997621946, + 95635.4952582386, + null, + 95826.03997621946, + 95660.99083576904, + null, + 98066.1726574899, + 98301.13718378269, + null, + 98066.1726574899, + 98344.85074410372, + null, + 97384.85502032931, + 97701.3804478227, + null, + 98088.69457083048, + 97701.3804478227, + null, + 97878.18936700777, + 97701.3804478227, + null, + 97739.50461726454, + 97701.3804478227, + null, + 98084.85055027793, + 98394.3083189937, + null, + 98077.79681744472, + 98084.85055027793, + null, + 98084.85055027793, + 98310.53063600973, + null, + 97165.59160948182, + 96851.49702075154, + null, + 97165.59160948182, + 97028.21718236667, + null, + 97165.59160948182, + 96923.14998898802, + null, + 97165.59160948182, + 96935.43558121054, + null, + 97165.59160948182, + 96876.0341655546, + null, + 97482.29772041427, + 97346.1892401973, + null, + 98201.32974009505, + 98480.40348207085, + null, + 98201.32974009505, + 98370.04229097803, + null, + 98201.32974009505, + 97935.18971112657, + null, + 98201.32974009505, + 98451.12892657102, + null, + 98201.32974009505, + 98596.80481606587, + null, + 98201.32974009505, + 98320.60384126543, + null, + 98201.32974009505, + 98702.60040244272, + null, + 98201.32974009505, + 98398.75524090877, + null, + 98201.32974009505, + 98414.55375540078, + null, + 98201.32974009505, + 98445.66094374743, + null, + 98201.32974009505, + 98732.37072864667, + null, + 98201.32974009505, + 98369.26821419236, + null, + 98201.32974009505, + 98345.90054955689, + null, + 98201.32974009505, + 98310.13941730415, + null, + 98201.32974009505, + 97847.58279285853, + null, + 98201.32974009505, + 98350.13090091896, + null, + 98201.32974009505, + 98367.03708190138, + null, + 98883.68742329624, + 98981.74509741156, + null, + 98883.68742329624, + 99115.95103184906, + null, + 98883.68742329624, + 99044.69297651587, + null, + 98883.68742329624, + 99139.70935255074, + null, + 98883.68742329624, + 98942.63618668188, + null, + 98883.68742329624, + 99068.30285214641, + null, + 98667.49767503393, + 98837.87215098692, + null, + 98667.49767503393, + 98941.98492686346, + null, + 97488.73626458432, + 97405.45190185368, + null, + 97488.73626458432, + 97143.09835047876, + null, + 97488.73626458432, + 97123.22683661472, + null, + 97488.73626458432, + 97129.06878847051, + null, + 97488.73626458432, + 97235.87959368073, + null, + 96010.7115980084, + 95925.51936102928, + null, + 96010.7115980084, + 95836.86051364095, + null, + 96010.7115980084, + 95841.63723542419, + null, + 96252.73601927159, + 96010.7115980084, + null, + 96010.7115980084, + 95807.55730759914, + null, + 96872.15210964113, + 96714.19926904603, + null, + 96872.15210964113, + 96823.46958884488, + null, + 96262.42166171632, + 96379.22200820879, + null, + 96357.32745947987, + 96379.22200820879, + null, + 96379.22200820879, + 96172.1853849051, + null, + 96379.22200820879, + 96001.11875324031, + null, + 96379.22200820879, + 96153.74670381845, + null, + 96906.24888628504, + 96851.49702075154, + null, + 96906.24888628504, + 97028.21718236667, + null, + 96906.24888628504, + 96923.14998898802, + null, + 96906.24888628504, + 96950.00862634687, + null, + 96906.24888628504, + 96876.0341655546, + null, + 96854.63537850163, + 96814.77969019499, + null, + 97409.25368271414, + 97264.45498533218, + null, + 97234.04346137235, + 97264.45498533218, + null, + 97434.01515339047, + 97264.45498533218, + null, + 97545.38850460328, + 97264.45498533218, + null, + 98010.49563338193, + 98053.0642172455, + null, + 98010.49563338193, + 98181.70136908787, + null, + 98010.49563338193, + 98464.03856830075, + null, + 98010.49563338193, + 98266.98788422802, + null, + 98010.49563338193, + 98394.3083189937, + null, + 98010.49563338193, + 98189.86043944341, + null, + 98010.49563338193, + 98307.69673094383, + null, + 98010.49563338193, + 98237.26193514904, + null, + 98010.49563338193, + 98310.53063600973, + null, + 98010.49563338193, + 98624.79723960246, + null, + 97612.43902974202, + 98285.95990732293, + null, + 97612.43902974202, + 97698.11772956593, + null, + 97499.04801278567, + 97525.78803979425, + null, + 97499.04801278567, + 97385.0681494814, + null, + 97608.46277176453, + 97730.67186086356, + null, + 97608.46277176453, + 97737.3791540576, + null, + 97608.46277176453, + 97754.87037614986, + null, + 97608.46277176453, + 97760.05643502806, + null, + 97608.46277176453, + 97816.8011205971, + null, + 97608.46277176453, + 97889.86492800197, + null, + 97608.46277176453, + 97844.89671201118, + null, + 97608.46277176453, + 97790.3443567589, + null, + 97608.46277176453, + 97780.88601719037, + null, + 97608.46277176453, + 97793.6389519722, + null, + 97608.46277176453, + 97822.87456305856, + null, + 97608.46277176453, + 97756.11969829707, + null, + 97608.46277176453, + 97714.25738805142, + null, + 97608.46277176453, + 97797.73998808523, + null, + 95934.14872105536, + 95220.63167603598, + null, + 95934.14872105536, + 95496.13470559087, + null, + 95934.14872105536, + 95837.99483341178, + null, + 95934.14872105536, + 95594.81419372423, + null, + 97384.85502032931, + 97455.35219073194, + null, + 97790.18756915494, + 97455.35219073194, + null, + 97336.72314742803, + 97455.35219073194, + null, + 98423.75905911079, + 97455.35219073194, + null, + 98225.34302642361, + 98228.7849099925, + null, + 98225.34302642361, + 98375.74582118145, + null, + 98225.34302642361, + 98182.14007435848, + null, + 98225.34302642361, + 98140.23039610147, + null, + 98225.34302642361, + 98269.97101414308, + null, + 98225.34302642361, + 98274.18301520034, + null, + 98225.34302642361, + 98261.35090991932, + null, + 98225.34302642361, + 98152.55259488344, + null, + 98225.34302642361, + 98222.89012213812, + null, + 98225.34302642361, + 98101.23332558201, + null, + 98229.77888928792, + 98175.87245687013, + null, + 97276.46828922024, + 97265.26688568054, + null, + 97276.46828922024, + 97129.06878847051, + null, + 97276.46828922024, + 97296.74368922459, + null, + 97276.46828922024, + 97235.87959368073, + null, + 97499.88151314572, + 97595.5487286106, + null, + 96299.26984037684, + 96279.56542526848, + null, + 96500.32458861038, + 96530.07073939945, + null, + 96500.32458861038, + 96589.42762961413, + null, + 96778.83528846483, + 96756.45377519565, + null, + 96778.83528846483, + 96827.37038036223, + null, + 96778.83528846483, + 96930.8467707688, + null, + 96483.80491367223, + 96494.91179403212, + null, + 100136.85344995526, + 100553.61137409393, + null, + 100136.85344995526, + 100444.89520239284, + null, + 100136.85344995526, + 100530.44923311533, + null, + 100136.85344995526, + 100626.79397543533, + null, + 100136.85344995526, + 100504.09236604944, + null, + 100136.85344995526, + 100461.50336537426, + null, + 99551.68465587133, + 99852.28352799846, + null, + 99551.68465587133, + 99808.93365789295, + null, + 100437.39062185503, + 100898.1530317686, + null, + 100437.39062185503, + 100848.69931219713, + null, + 100437.39062185503, + 100857.84354867911, + null, + 100437.39062185503, + 100797.99961855274, + null, + 100437.39062185503, + 100682.51103448716, + null, + 100437.39062185503, + 100956.3356976481, + null, + 100437.39062185503, + 100820.29890680054, + null, + 100437.39062185503, + 100757.83911726538, + null, + 100437.39062185503, + 100777.06863317556, + null, + 100437.39062185503, + 100805.1278220788, + null, + 99551.98543303015, + 99897.00034100206, + null, + 99551.98543303015, + 99885.53367261976, + null, + 99562.25712118535, + 99733.89269403598, + null, + 99562.25712118535, + 99931.09159473867, + null, + 98574.50972172228, + 98323.4492928728, + null, + 98574.50972172228, + 98387.01183578208, + null, + 98574.50972172228, + 98381.35948380831, + null, + 98574.50972172228, + 98282.75113269164, + null, + 98538.96596090084, + 98274.51626017109, + null, + 98538.96596090084, + 98266.98788422802, + null, + 98538.96596090084, + 98181.70136908787, + null, + 99762.90131115422, + 99989.17577184312, + null, + 99762.90131115422, + 99402.69167743201, + null, + 99762.90131115422, + 99914.41548040505, + null, + 99762.90131115422, + 99949.71858455199, + null, + 99762.90131115422, + 100007.300600629, + null, + 99762.90131115422, + 99941.71936800965, + null, + 98977.8256826855, + 98624.79723960246, + null, + 98977.8256826855, + 98696.20977067878, + null, + 97325.59157415244, + 96576.33824877361, + null, + 97325.59157415244, + 96687.66890433879, + null, + 97325.59157415244, + 96612.8462594204, + null, + 97325.59157415244, + 96619.36075421462, + null, + 100141.87894949828, + 100481.51513057065, + null, + 100141.87894949828, + 100403.30601497291, + null, + 100141.87894949828, + 100529.91253667448, + null, + 100141.87894949828, + 100568.23920670286, + null, + 100141.87894949828, + 100728.97795077493, + null, + 100141.87894949828, + 100437.50150850076, + null, + 99845.35414701192, + 100194.52138415762, + null, + 99845.35414701192, + 100103.23446886911, + null, + 99845.35414701192, + 100329.56908981693, + null, + 99845.35414701192, + 100165.50473225, + null, + 98971.68304848456, + 98732.37072864667, + null, + 98971.68304848456, + 98702.60040244272, + null, + 99673.93123472382, + 100010.5721553044, + null, + 99673.93123472382, + 100048.20827001765, + null, + 99291.99320881635, + 99552.26651483987, + null, + 99276.35931151945, + 99539.09821540986, + null, + 99397.55134035554, + 99569.29443472087, + null, + 99397.55134035554, + 99712.43812317886, + null, + 99142.08519452307, + 99401.76593393642, + null, + 99316.2243501031, + 99546.359302407, + null, + 99316.2243501031, + 99547.70287765094, + null, + 98622.91972235353, + 98323.4492928728, + null, + 98622.91972235353, + 98282.75113269164, + null, + 98622.91972235353, + 98387.01183578208, + null, + 98622.91972235353, + 98381.35948380831, + null, + 98628.35943001318, + 98464.03856830075, + null, + 98628.35943001318, + 98394.3083189937, + null, + 96995.58808119217, + 96768.76253347314, + null, + 96995.58808119217, + 96838.7838623563, + null, + 96995.58808119217, + 96789.33376936015, + null, + 96995.58808119217, + 96920.93490684904, + null, + 96995.58808119217, + 96831.01533371997, + null, + 96995.58808119217, + 96946.95627384465, + null, + 96995.58808119217, + 96923.16983244233, + null, + 96995.58808119217, + 96808.41765699841, + null, + 96995.58808119217, + 96809.07917067675, + null, + 96995.58808119217, + 96856.67588119206, + null, + 96995.58808119217, + 96847.17765287637, + null, + 96995.58808119217, + 97506.82580701464, + null, + 96874.32517213062, + 96749.74084841611, + null, + 96874.32517213062, + 96786.69954014356, + null, + 96874.32517213062, + 96734.42347125604, + null, + 96874.32517213062, + 96749.37391939254, + null, + 96874.32517213062, + 96816.89633164286, + null, + 96874.32517213062, + 96722.33353227373, + null, + 96984.11595684849, + 97017.1669084225, + null, + 96984.11595684849, + 96732.82218142171, + null, + 96984.11595684849, + 96918.79091209936, + null, + 97109.16179890749, + 96977.91016252428, + null, + 97109.16179890749, + 97203.10489846802, + null, + 97136.19437689305, + 97148.42701927797, + null, + 97491.9260662067, + 97641.00229908383, + null, + 97491.9260662067, + 97394.5768705934, + null, + 97491.9260662067, + 97321.6102346845, + null, + 97491.9260662067, + 97391.15136417256, + null, + 97491.9260662067, + 97421.55628560655, + null, + 97491.9260662067, + 97516.38998854977, + null, + 97491.9260662067, + 97567.99530773342, + null, + 97491.9260662067, + 97935.18971112657, + null, + 97491.9260662067, + 97847.58279285853, + null, + 96362.21507081333, + 96572.70915846486, + null, + 96362.21507081333, + 96569.37282584612, + null, + 96805.5627237504, + 97143.09835047876, + null, + 96805.5627237504, + 96634.02973485782, + null, + 96805.5627237504, + 97123.22683661472, + null, + 96805.5627237504, + 97010.00916339061, + null, + 96805.5627237504, + 96641.9954973643, + null, + 96805.5627237504, + 96956.32059970194, + null, + 96805.5627237504, + 97129.06878847051, + null, + 98078.46725482005, + 98259.271845129, + null, + 98078.46725482005, + 98168.9231416876, + null, + 97340.80449807804, + 97204.8783368979, + null, + 97340.80449807804, + 96915.00173927705, + null, + 97488.0322813689, + 97506.64122277842, + null, + 97488.0322813689, + 97518.73388739799, + null, + 97488.0322813689, + 97294.3314821682, + null, + 97488.0322813689, + 97257.64186751444, + null, + 97488.0322813689, + 97219.50145431058, + null, + 97488.0322813689, + 97388.71359159944, + null, + 97488.0322813689, + 97460.1220450078, + null, + 97488.0322813689, + 97527.0381829492, + null, + 97488.0322813689, + 97574.84489035908, + null, + 97488.0322813689, + 97403.49233740254, + null, + 97488.0322813689, + 97313.23942986008, + null, + 97488.0322813689, + 97292.93398642252, + null, + 97488.0322813689, + 97470.12592517314, + null, + 97488.0322813689, + 97339.79753757949, + null, + 97488.0322813689, + 97554.5235551415, + null, + 97488.0322813689, + 97533.81519896755, + null, + 97488.0322813689, + 97334.74101129781, + null, + 97488.0322813689, + 97489.70814217188, + null, + 97488.0322813689, + 97472.39269986044, + null, + 97488.0322813689, + 97387.12778874076, + null, + 97488.0322813689, + 97437.62011604731, + null, + 97488.0322813689, + 97457.91304211157, + null, + 97488.0322813689, + 97317.43805248154, + null, + 97488.0322813689, + 97264.75648080865, + null, + 97488.0322813689, + 97410.58779561223, + null, + 97488.0322813689, + 97539.58464921622, + null, + 97488.0322813689, + 97342.03150148301, + null, + 97488.0322813689, + 97306.54238286208, + null, + 97488.0322813689, + 97368.47508508009, + null, + 97488.0322813689, + 97462.35402312716, + null, + 97488.0322813689, + 97362.09100683562, + null, + 97488.0322813689, + 97468.63463640668, + null, + 97488.0322813689, + 97407.10414666461, + null, + 97488.0322813689, + 97427.0423299996, + null, + 97488.0322813689, + 97445.06134182603, + null, + 97488.0322813689, + 97384.33030394555, + null, + 97488.0322813689, + 97418.50090063574, + null, + 97488.0322813689, + 97329.77520403042, + null, + 97488.0322813689, + 97501.86106879357, + null, + 97488.0322813689, + 97589.09322622273, + null, + 97488.0322813689, + 97365.55201336363, + null, + 97488.0322813689, + 97496.03917907522, + null, + 97488.0322813689, + 97578.21965017916, + null, + 97488.0322813689, + 97621.96108195561, + null, + 97488.0322813689, + 97597.5695956047, + null, + 97488.0322813689, + 97551.12577735574, + null, + 97411.333447029, + 97566.33074345869, + null, + 97362.69630546733, + 97316.24496342393, + null, + 96866.28592075064, + 97147.4098591697, + null, + 96935.63520473371, + 97150.45925062025, + null, + 96935.63520473371, + 97058.39697873502, + null, + 96935.63520473371, + 96793.86442373705, + null, + 96935.63520473371, + 96480.10013682928, + null, + 96935.63520473371, + 96809.13802091916, + null, + 96935.63520473371, + 97156.92705815511, + null, + 96935.63520473371, + 96637.24626095728, + null, + 96935.63520473371, + 96685.18396788204, + null, + 97289.22073553668, + 97191.87480429292, + null, + 98077.79681744472, + 97850.12598200802, + null, + 97850.12598200802, + 98046.28708608718, + null, + 97850.12598200802, + 97945.10387365565, + null, + 97850.12598200802, + 97813.17651623696, + null, + 96412.37649005053, + 96192.36516650372, + null, + 96412.37649005053, + 96166.65134798315, + null, + 96412.37649005053, + 96151.18947802766, + null, + 96412.37649005053, + 96219.49280554311, + null, + 96412.37649005053, + 96321.49613399363, + null, + 96412.37649005053, + 96348.27089895145, + null, + 96412.37649005053, + 96312.11948904546, + null, + 96412.37649005053, + 96925.02449761663, + null, + 96412.37649005053, + 96413.07673363906, + null, + 96412.37649005053, + 96067.23210924766, + null, + 96412.37649005053, + 96241.04212507296, + null, + 96412.37649005053, + 96371.39408635684, + null, + 96412.37649005053, + 96469.32529389091, + null, + 96412.37649005053, + 96158.31542657371, + null, + 96412.37649005053, + 96711.39206785646, + null, + 96412.37649005053, + 96334.94354943845, + null, + 96412.37649005053, + 96152.51660612367, + null, + 96412.37649005053, + 96247.31090145207, + null, + 96412.37649005053, + 96236.22052335802, + null, + 96412.37649005053, + 96303.25217664873, + null, + 96412.37649005053, + 96187.17079366487, + null, + 96412.37649005053, + 96348.83043260756, + null, + 96412.37649005053, + 96308.4379961576, + null, + 96412.37649005053, + 96338.25209207543, + null, + 96412.37649005053, + 96260.73617752134, + null, + 96412.37649005053, + 96268.88889721669, + null, + 96412.37649005053, + 96157.96193062943, + null, + 97375.63672739729, + 97254.60654731093, + null, + 97136.55546326986, + 97375.63672739729, + null, + 97605.64203060168, + 97375.63672739729, + null, + 97375.63672739729, + 97228.53082661908, + null, + 97375.63672739729, + 97457.80305691704, + null, + 97615.00090956, + 97375.63672739729, + null, + 97672.92128722146, + 97375.63672739729, + null, + 97375.63672739729, + 97262.678362189, + null, + 96830.34367432375, + 96576.33824877361, + null, + 96830.34367432375, + 96687.66890433879, + null, + 96830.34367432375, + 96612.8462594204, + null, + 96830.34367432375, + 96619.36075421462, + null, + 96727.0857416317, + 96431.48255781003, + null, + 96727.0857416317, + 96576.33824877361, + null, + 96727.0857416317, + 96588.03419761182, + null, + 96727.0857416317, + 96619.36075421462, + null, + 96727.0857416317, + 96612.8462594204, + null, + 96727.0857416317, + 96527.41286019633, + null, + 96727.0857416317, + 96551.83742032673, + null, + 96727.0857416317, + 96521.94024587476, + null, + 96968.7576874346, + 96905.2605934214, + null, + 96968.7576874346, + 96786.69954014356, + null, + 96968.7576874346, + 96722.33353227373, + null, + 96968.7576874346, + 97009.34087073864, + null, + 96968.7576874346, + 96749.74084841611, + null, + 96968.7576874346, + 96820.7830898844, + null, + 98028.98765417963, + 98073.30353618528, + null, + 97254.19037202669, + 97030.2520829105, + null, + 97254.19037202669, + 97059.65093863031, + null, + 97254.19037202669, + 97074.06837654435, + null, + 97254.19037202669, + 96906.24469590047, + null, + 98343.20918176853, + 98696.20977067878, + null, + 98343.20918176853, + 98624.79723960246, + null, + 98178.54170307206, + 98310.13941730415, + null, + 98178.54170307206, + 98451.12892657102, + null, + 98199.86102071151, + 98320.60384126543, + null, + 98199.86102071151, + 98370.04229097803, + null, + 98199.86102071151, + 98367.03708190138, + null, + 98056.94048479544, + 98153.01073729256, + null, + 97888.06964139262, + 97890.19215830484, + null, + 98115.52004533702, + 98289.64738099596, + null, + 99023.4635169911, + 99350.28536017142, + null, + 99401.61250638886, + 99507.3720181478, + null, + 99401.61250638886, + 99388.57352758666, + null, + 99401.61250638886, + 99720.51276602945, + null, + 99401.61250638886, + 99470.76221817326, + null, + 98987.744183523, + 99507.3720181478, + null, + 98987.744183523, + 99388.57352758666, + null, + 98987.744183523, + 99470.76221817326, + null, + 99579.00966292991, + 99983.69630418211, + null, + 99579.00966292991, + 99864.71563941333, + null, + 98635.38198452107, + 98464.03856830075, + null, + 98635.38198452107, + 98394.3083189937, + null, + 98635.38198452107, + 98274.51626017109, + null, + 100098.40192877872, + 100490.87413901878, + null, + 100098.40192877872, + 100512.67904571105, + null, + 100098.40192877872, + 100462.96804014868, + null, + 98017.95961808166, + 97506.82580701464, + null, + 98017.95961808166, + 97762.94327311365, + null, + 98017.95961808166, + 98174.24014304766, + null, + 99022.78768529206, + 99182.5898053717, + null, + 99022.78768529206, + 99297.47748745349, + null, + 99022.78768529206, + 99173.09577075086, + null, + 96931.12324851674, + 97096.25480847151, + null, + 96931.12324851674, + 97070.65467482769, + null, + 96931.12324851674, + 97113.68749649214, + null, + 96931.12324851674, + 97018.10490746981, + null, + 96931.12324851674, + 97085.84775973822, + null, + 96463.50079272543, + 96463.32828761848, + null, + 96463.50079272543, + 96576.33824877361, + null, + 96463.50079272543, + 96378.93466044324, + null, + 96463.50079272543, + 96619.36075421462, + null, + 96463.50079272543, + 96612.8462594204, + null, + 96120.0822298696, + 96024.40112653765, + null, + 96120.0822298696, + 95977.23359820171, + null, + 96120.0822298696, + 95944.20879009437, + null, + 96120.0822298696, + 95957.04000819045, + null, + 96240.44430881485, + 96118.28040336892, + null, + 96240.44430881485, + 96136.85927600949, + null, + 96101.99869734746, + 96010.1549176, + null, + 96101.99869734746, + 96088.19892270163, + null, + 96101.99869734746, + 95907.0760779808, + null, + 96101.99869734746, + 96018.50845340571, + null, + 96101.99869734746, + 95951.03051542168, + null, + 96101.99869734746, + 95976.84004061195, + null, + 96315.36819369205, + 96193.58532347402, + null, + 95937.25203342551, + 95724.82667612792, + null, + 95937.25203342551, + 95782.3253503642, + null, + 95937.25203342551, + 95763.58006546515, + null, + 95937.25203342551, + 95802.71249287276, + null, + 95937.25203342551, + 95794.74480692008, + null, + 95937.25203342551, + 95773.72799782119, + null, + 95937.25203342551, + 95705.64201223625, + null, + 95937.25203342551, + 95854.84350284688, + null, + 95937.25203342551, + 95750.69476013878, + null, + 96235.33414286007, + 96100.74371648408, + null, + 96235.33414286007, + 96096.27034812108, + null, + 96235.33414286007, + 96200.85680540389, + null, + 96530.33748860421, + 96732.82218142171, + null, + 96530.33748860421, + 96373.49619860556, + null, + 96182.08723044166, + 96029.76428620814, + null, + 96182.08723044166, + 96057.67371904092, + null, + 96258.26403190757, + 96137.52117336927, + null, + 98709.8651975024, + 98354.2021118834, + null, + 98709.8651975024, + 98923.84604161337, + null, + 99109.15521458666, + 99330.7962680329, + null, + 100640.4787093486, + 101107.14331554841, + null, + 100640.4787093486, + 101171.88975233596, + null, + 100640.4787093486, + 101142.357752018, + null, + 100235.20982182995, + 100568.55851595142, + null, + 102213.573130387, + 102954.7692368723, + null, + 102213.573130387, + 102875.47592578827, + null, + 102213.573130387, + 102873.44929349524, + null, + 102213.573130387, + 102973.29006079929, + null, + 101380.72545035236, + 101911.83591220567, + null, + 101380.72545035236, + 101946.02963869514, + null, + 99856.27897972005, + 100215.14271741606, + null, + 99856.27897972005, + 100200.76545872116, + null, + 99786.36456658994, + 100059.60994106538, + null, + 99786.36456658994, + 100079.51571516019, + null, + 99683.00699846164, + 99936.15523064065, + null, + 98812.91818171015, + 99181.95152123351, + null, + 98812.91818171015, + 98416.67608487829, + null, + 98812.91818171015, + 99195.28356015346, + null, + 98812.91818171015, + 99211.69144249897, + null, + 98812.91818171015, + 98181.70136908787, + null, + 97843.27029212235, + 97980.22062912158, + null, + 98891.2416273708, + 99402.69167743201, + null, + 98891.2416273708, + 99073.87694250268, + null, + 98891.2416273708, + 99151.86765374598, + null, + 98891.2416273708, + 99168.96378888712, + null, + 98891.2416273708, + 99046.5441793224, + null, + 98891.2416273708, + 98976.05727895776, + null, + 98891.2416273708, + 99081.16187921172, + null, + 98891.2416273708, + 99148.53901882828, + null, + 98891.2416273708, + 99113.76487179766, + null, + 98891.2416273708, + 98959.06003485763, + null, + 98891.2416273708, + 99169.54346949601, + null, + 98891.2416273708, + 98982.98037771537, + null, + 98891.2416273708, + 98937.48844781533, + null, + 98891.2416273708, + 99208.54851849852, + null, + 98891.2416273708, + 99061.3646667225, + null, + 98891.2416273708, + 98987.32425560945, + null, + 98891.2416273708, + 98285.95990732293, + null, + 98891.2416273708, + 99071.96756131454, + null, + 98891.2416273708, + 99131.82143847682, + null, + 98417.88816057792, + 98181.70136908787, + null, + 98417.88816057792, + 98053.0642172455, + null, + 98417.88816057792, + 98416.67608487829, + null, + 98185.14683392025, + 98323.4492928728, + null, + 98185.14683392025, + 98282.75113269164, + null, + 98185.14683392025, + 98387.01183578208, + null, + 98185.14683392025, + 98381.35948380831, + null, + 98502.26373555082, + 98323.4492928728, + null, + 98502.26373555082, + 98387.01183578208, + null, + 98502.26373555082, + 98381.35948380831, + null, + 98502.26373555082, + 98282.75113269164, + null, + 98563.51548863579, + 98310.53063600973, + null, + 98563.51548863579, + 98394.3083189937, + null, + 98515.43976060345, + 98324.36922376543, + null, + 98077.79681744472, + 98515.43976060345, + null, + 98515.43976060345, + 98613.13814771906, + null, + 98528.28228471124, + 98515.43976060345, + null, + 99214.362436891, + 98515.43976060345, + null, + 96994.13649214181, + 96576.33824877361, + null, + 96994.13649214181, + 96687.66890433879, + null, + 96994.13649214181, + 96612.8462594204, + null, + 96994.13649214181, + 96619.36075421462, + null, + 98350.05034462475, + 97935.18971112657, + null, + 98350.05034462475, + 98480.40348207085, + null, + 98350.05034462475, + 98370.04229097803, + null, + 98350.05034462475, + 98451.12892657102, + null, + 98350.05034462475, + 98320.60384126543, + null, + 98350.05034462475, + 98310.13941730415, + null, + 98350.05034462475, + 98398.75524090877, + null, + 98350.05034462475, + 98350.13090091896, + null, + 96877.27316989908, + 96569.37282584612, + null, + 96877.27316989908, + 96572.70915846486, + null, + 96504.96941037805, + 95750.88589559712, + null, + 97237.72508581873, + 97220.44655452287, + null, + 97237.72508581873, + 97196.75706828712, + null, + 97237.72508581873, + 97125.53941725435, + null, + 99586.27547231995, + 99718.2462926422, + null, + 99586.27547231995, + 99803.36721250159, + null, + 99586.27547231995, + 99813.23079232925, + null, + 99900.79355708066, + 99931.09159473867, + null, + 99953.84555270121, + 100208.03450922729, + null, + 100010.22175620866, + 100291.24785455817, + null, + 100488.19339995636, + 100818.8068736159, + null, + 100488.19339995636, + 100710.17332989187, + null, + 100488.19339995636, + 100756.53431442664, + null, + 100488.19339995636, + 100742.58004892079, + null, + 100488.19339995636, + 100816.52170155974, + null, + 98932.31091884513, + 99050.91600599952, + null, + 98881.20399257346, + 99050.91600599952, + null, + 98926.20655583622, + 99050.91600599952, + null, + 98845.6917714939, + 99050.91600599952, + null, + 98838.01226486915, + 99050.91600599952, + null, + 98916.08043593282, + 99050.91600599952, + null, + 98776.08147395353, + 99050.91600599952, + null, + 98875.12446310604, + 99050.91600599952, + null, + 98873.6590998779, + 99050.91600599952, + null, + 98833.5386160878, + 99050.91600599952, + null, + 98731.25835265023, + 99050.91600599952, + null, + 98715.38337956829, + 99050.91600599952, + null, + 98779.4951496633, + 99050.91600599952, + null, + 98763.69912444155, + 99050.91600599952, + null, + 98775.64297666437, + 99050.91600599952, + null, + 98794.9356782363, + 99050.91600599952, + null, + 98769.87019965112, + 99050.91600599952, + null, + 100300.1455608082, + 100535.41769180611, + null, + 100300.1455608082, + 100588.8078125849, + null, + 100300.1455608082, + 100684.1289854207, + null, + 99125.08385354279, + 99355.4318094893, + null, + 99125.08385354279, + 99283.37793193322, + null, + 99125.08385354279, + 98884.47395865238, + null, + 99125.08385354279, + 98702.11362056104, + null, + 99125.08385354279, + 98273.0404411526, + null, + 99125.08385354279, + 99212.19665290292, + null, + 99125.08385354279, + 99294.92357045293, + null, + 99125.08385354279, + 99409.68747127595, + null, + 99125.08385354279, + 99366.21868458806, + null, + 100865.26021198924, + 101293.34932264523, + null, + 100865.26021198924, + 101281.5327958176, + null, + 100865.26021198924, + 101334.14824704995, + null, + 100865.26021198924, + 101367.06730180504, + null, + 100865.26021198924, + 101344.2365303306, + null, + 99515.36066611517, + 99029.78237454424, + null, + 99515.36066611517, + 99954.82959672711, + null, + 99515.36066611517, + 99643.0795719138, + null, + 99515.36066611517, + 99636.85899020171, + null, + 99515.36066611517, + 99574.3917835105, + null, + 99515.36066611517, + 99512.35272587591, + null, + 99515.36066611517, + 99507.38002680989, + null, + 99515.36066611517, + 99709.87237972025, + null, + 99515.36066611517, + 99618.5853241082, + null, + 99419.17564342206, + 99492.14181196287, + null, + 99419.17564342206, + 99507.38002680989, + null, + 99419.17564342206, + 99512.35272587591, + null, + 99419.17564342206, + 99538.7844648259, + null, + 99419.17564342206, + 99586.24804608843, + null, + 98962.18713370281, + 99142.8207100815, + null, + 97366.57493092174, + 97428.68780199539, + null, + 98539.96016607621, + 99045.69549244376, + null, + 98539.96016607621, + 99167.15507702739, + null, + 98539.96016607621, + 99196.99137747717, + null, + 98539.96016607621, + 98467.69979749717, + null, + 98539.20822724189, + 99045.69549244376, + null, + 98539.20822724189, + 99167.15507702739, + null, + 98539.20822724189, + 99196.99137747717, + null, + 95997.27711720114, + 95501.56943956636, + null, + 98246.11805337203, + 98020.27360911023, + null, + 98246.11805337203, + 98145.87350225112, + null, + 98246.11805337203, + 98050.34194011665, + null, + 98246.11805337203, + 98168.00603776949, + null, + 98246.11805337203, + 98149.26582746887, + null, + 98850.07485794366, + 99101.32720644573, + null, + 98011.22054926708, + 97907.77536328329, + null, + 98011.22054926708, + 97901.03417870511, + null, + 98011.22054926708, + 97823.51772352493, + null, + 98011.22054926708, + 97887.71552031132, + null, + 98011.22054926708, + 97844.34590883499, + null, + 98011.22054926708, + 97875.84098174631, + null, + 98011.22054926708, + 97972.61225798044, + null, + 98011.22054926708, + 97778.61977575067, + null, + 98011.22054926708, + 97733.80999706348, + null, + 101377.60794729496, + 102294.46222470059, + null, + 101377.60794729496, + 101611.36177265896, + null, + 101377.60794729496, + 101415.64667156886, + null, + 101377.60794729496, + 101663.47791347724, + null, + 101377.60794729496, + 101670.89096728647, + null, + 101377.60794729496, + 101489.91040062429, + null, + 101377.60794729496, + 101683.85992837578, + null, + 101377.60794729496, + 101627.82156718601, + null, + 101377.60794729496, + 101614.52685921428, + null, + 101377.60794729496, + 101670.00019402351, + null, + 101377.60794729496, + 101564.26236712594, + null, + 101377.60794729496, + 101677.59144852104, + null, + 101377.60794729496, + 101503.11750353694, + null, + 101377.60794729496, + 101566.44477254337, + null, + 101377.60794729496, + 101556.6713244582, + null, + 101377.60794729496, + 101576.23104104938, + null, + 101377.60794729496, + 101501.37291680236, + null, + 101377.60794729496, + 102258.94880965956, + null, + 101377.60794729496, + 102241.50007551156, + null, + 101377.60794729496, + 101505.40062337223, + null, + 101377.60794729496, + 102236.92013567835, + null, + 101377.60794729496, + 102271.38430452191, + null, + 101377.60794729496, + 101620.62748966913, + null, + 101377.60794729496, + 101705.56691766535, + null, + 101377.60794729496, + 101616.40249009931, + null, + 101377.60794729496, + 102275.28365277304, + null, + 101377.60794729496, + 101546.7676820338, + null, + 101377.60794729496, + 101530.92806958249, + null, + 101377.60794729496, + 101440.57017023579, + null, + 101377.60794729496, + 102061.11808554111, + null, + 101377.60794729496, + 102273.20050188246, + null, + 98957.24165577488, + 99234.6345322715, + null, + 98957.24165577488, + 99104.38829532635, + null, + 98957.24165577488, + 99167.15507702739, + null, + 98961.50436798272, + 99045.69549244376, + null, + 98961.50436798272, + 99167.15507702739, + null, + 98961.50436798272, + 99196.99137747717, + null, + 98935.5010496066, + 99045.69549244376, + null, + 98935.5010496066, + 99167.15507702739, + null, + 98935.5010496066, + 99196.99137747717, + null, + 96894.77232507731, + 96790.03152514201, + null, + 97409.25368271414, + 97119.02524363514, + null, + 97234.04346137235, + 97119.02524363514, + null, + 97434.01515339047, + 97119.02524363514, + null, + 97545.38850460328, + 97119.02524363514, + null, + 96134.33859468818, + 96103.40886384947, + null, + 96134.33859468818, + 96132.92147820993, + null, + 96134.33859468818, + 95931.69453685306, + null, + 96134.33859468818, + 95990.48196120898, + null, + 96134.33859468818, + 95956.60429664124, + null, + 96133.66483574735, + 95934.42168851243, + null, + 96133.66483574735, + 95911.93174621023, + null, + 99362.4122499512, + 99852.8334694923, + null, + 98980.06656171624, + 99109.0663166796, + null, + 98980.06656171624, + 99132.2467544649, + null, + 98577.91639424925, + 98630.80803171467, + null, + 98577.91639424925, + 98689.92719517139, + null, + 98301.5427103644, + 98600.23627742211, + null, + 97911.65322441417, + 97899.34691313219, + null, + 99947.23103246646, + 100183.97700610255, + null, + 100615.97017651156, + 100698.78901867794, + null, + 100615.97017651156, + 101020.07401227095, + null, + 100615.97017651156, + 100753.17948613792, + null, + 100615.97017651156, + 100929.37102861726, + null, + 100615.97017651156, + 101049.77169559221, + null, + 100615.97017651156, + 101042.64163339522, + null, + 100615.97017651156, + 100956.6831535797, + null, + 98932.31091884513, + 99091.59936505146, + null, + 98926.20655583622, + 99091.59936505146, + null, + 98881.20399257346, + 99091.59936505146, + null, + 98845.6917714939, + 99091.59936505146, + null, + 98838.01226486915, + 99091.59936505146, + null, + 98916.08043593282, + 99091.59936505146, + null, + 98776.08147395353, + 99091.59936505146, + null, + 98875.12446310604, + 99091.59936505146, + null, + 98873.6590998779, + 99091.59936505146, + null, + 98833.5386160878, + 99091.59936505146, + null, + 98731.25835265023, + 99091.59936505146, + null, + 98715.38337956829, + 99091.59936505146, + null, + 98779.4951496633, + 99091.59936505146, + null, + 98763.69912444155, + 99091.59936505146, + null, + 98775.64297666437, + 99091.59936505146, + null, + 98794.9356782363, + 99091.59936505146, + null, + 98769.87019965112, + 99091.59936505146, + null, + 96193.09435285682, + 95941.76966348794, + null, + 96193.09435285682, + 96031.13533407368, + null, + 96193.09435285682, + 96019.14956732029, + null, + 96209.32610496953, + 96068.74269110095, + null, + 96209.32610496953, + 96041.31540570507, + null, + 96157.43262757578, + 95956.81382376744, + null, + 96157.43262757578, + 95973.72556328609, + null, + 96157.43262757578, + 95919.35469646247, + null, + 96039.16378214146, + 95869.3259308094, + null, + 95746.74077759727, + 96039.16378214146, + null, + 96039.16378214146, + 95890.9852158734, + null, + 95666.6047695683, + 95627.49229889535, + null, + 95666.6047695683, + 95584.7247328939, + null, + 95666.6047695683, + 95439.686001942, + null, + 95666.6047695683, + 95523.31266376271, + null, + 95666.6047695683, + 95433.91832923502, + null, + 95666.6047695683, + 95655.13837228577, + null, + 95666.6047695683, + 95604.78437746258, + null, + 95666.6047695683, + 95677.28372527665, + null, + 95666.6047695683, + 95358.6847925196, + null, + 95666.6047695683, + 95587.1461297883, + null, + 95666.6047695683, + 95462.46659073206, + null, + 95666.6047695683, + 95662.78785902, + null, + 95666.6047695683, + 95350.06247732986, + null, + 95666.6047695683, + 95660.56955803781, + null, + 95666.6047695683, + 95352.85380484689, + null, + 95666.6047695683, + 95383.8578284938, + null, + 101027.38756222327, + 101563.87691551438, + null, + 101027.38756222327, + 101274.0689543692, + null, + 101027.38756222327, + 101168.10653818438, + null, + 101027.38756222327, + 101300.33166744621, + null, + 101027.38756222327, + 101234.34457208082, + null, + 101027.38756222327, + 101601.26872970493, + null, + 101027.38756222327, + 101585.65958301134, + null, + 101027.38756222327, + 101602.23613881375, + null, + 100491.07919538966, + 100811.46618206523, + null, + 100491.07919538966, + 100829.32986696697, + null, + 99965.07519503396, + 100126.81551866842, + null, + 99965.07519503396, + 100132.13706504772, + null, + 99052.2124935182, + 99693.89632500503, + null, + 99052.2124935182, + 99710.17309703058, + null, + 99052.2124935182, + 99693.89632500503, + null, + 99052.2124935182, + 99710.17309703058, + null, + 97895.64290700338, + 97773.05134874712, + null, + 97895.64290700338, + 97455.00830613056, + null, + 99076.34984414672, + 100036.94123600336, + null, + 99076.34984414672, + 99063.1409527306, + null, + 99076.34984414672, + 99169.33340406543, + null, + 99076.34984414672, + 100018.92157433346, + null, + 98674.7174457713, + 99234.6345322715, + null, + 98674.7174457713, + 99407.78802846867, + null, + 98674.7174457713, + 99045.69549244376, + null, + 98674.7174457713, + 99167.15507702739, + null, + 99271.76461161645, + 99234.6345322715, + null, + 99271.76461161645, + 99167.15507702739, + null, + 99265.99329452899, + 99407.78802846867, + null, + 99265.99329452899, + 99045.69549244376, + null, + 99265.99329452899, + 99754.96532026985, + null, + 99265.99329452899, + 99736.98260295848, + null, + 97961.22502344675, + 97754.87037614986, + null, + 97961.22502344675, + 97889.86492800197, + null, + 97961.22502344675, + 97816.8011205971, + null, + 97961.22502344675, + 97760.05643502806, + null, + 97961.22502344675, + 97737.3791540576, + null, + 97961.22502344675, + 97844.89671201118, + null, + 97961.22502344675, + 97790.3443567589, + null, + 97961.22502344675, + 97780.88601719037, + null, + 97961.22502344675, + 97793.6389519722, + null, + 97961.22502344675, + 97822.87456305856, + null, + 97961.22502344675, + 97756.11969829707, + null, + 97961.22502344675, + 97714.25738805142, + null, + 97961.22502344675, + 97797.73998808523, + null, + 97330.30197024634, + 97304.55664375074, + null, + 98153.0005023464, + 98194.2498880113, + null, + 98153.0005023464, + 98162.43586684139, + null, + 98153.0005023464, + 98039.41022287405, + null, + 98230.51101716988, + 98449.82609230773, + null, + 98279.26861206899, + 98405.07060129187, + null, + 98279.26861206899, + 98476.86717384406, + null, + 99000.02707953496, + 99009.30827088827, + null, + 99000.02707953496, + 98968.59244384883, + null, + 99000.02707953496, + 98993.06721654031, + null, + 99000.02707953496, + 99007.66770283102, + null, + 99000.02707953496, + 98982.44152343833, + null, + 99142.62317278316, + 99709.78133773808, + null, + 100188.52114244823, + 100811.29454032266, + null, + 100188.52114244823, + 100799.25439064918, + null, + 100188.52114244823, + 100677.38582400509, + null, + 100188.52114244823, + 101079.62659732827, + null, + 100188.52114244823, + 100722.31731806434, + null, + 100188.52114244823, + 100834.06910339087, + null, + 100188.52114244823, + 100697.5591835894, + null, + 100188.52114244823, + 100714.08462751635, + null, + 100188.52114244823, + 100770.01044896716, + null, + 100188.52114244823, + 100791.5569642883, + null, + 99265.28429092855, + 99447.65502558881, + null, + 99265.28429092855, + 99376.7135123605, + null, + 99265.28429092855, + 99310.39242009577, + null, + 99265.28429092855, + 99409.34911582587, + null, + 99265.28429092855, + 99415.06017255128, + null, + 99265.28429092855, + 99369.62794905218, + null, + 98832.24946054372, + 98879.98498514206, + null, + 98832.24946054372, + 98842.26136432061, + null, + 98832.24946054372, + 98989.84252043573, + null, + 98832.24946054372, + 98812.04332174487, + null, + 98832.24946054372, + 99055.69525843728, + null, + 98832.24946054372, + 98951.35380331521, + null, + 98832.24946054372, + 98884.65639907506, + null, + 98832.24946054372, + 99012.5910040835, + null, + 98832.24946054372, + 98920.55399183184, + null, + 98832.24946054372, + 98986.64830287533, + null, + 98597.7964869281, + 98697.12172626315, + null, + 98597.7964869281, + 98620.91786909541, + null, + 98597.7964869281, + 98344.85074410372, + null, + 98597.7964869281, + 98579.78840613288, + null, + 98597.7964869281, + 98665.66923677477, + null, + 98597.7964869281, + 98676.9556260032, + null, + 98597.7964869281, + 98666.27593048109, + null, + 98557.67286605883, + 98600.23627742211, + null, + 98374.27664176481, + 98466.22795573567, + null, + 98374.27664176481, + 98327.10502264924, + null, + 97731.41157443785, + 97761.06111769819, + null, + 97731.41157443785, + 97778.59716574609, + null, + 98308.24242195391, + 99574.3917835105, + null, + 98308.24242195391, + 99029.78237454424, + null, + 98308.24242195391, + 99512.35272587591, + null, + 98308.24242195391, + 99507.38002680989, + null, + 97840.92878276923, + 97828.84470887261, + null, + 97840.92878276923, + 97887.6803134344, + null, + 97840.92878276923, + 98415.58884975722, + null, + 97886.2552796078, + 97970.80486236633, + null, + 97886.2552796078, + 97853.15094800435, + null, + 98672.42439807321, + 99234.6345322715, + null, + 98672.42439807321, + 99407.78802846867, + null, + 98672.42439807321, + 99167.15507702739, + null, + 98993.730905672, + 99142.00061841276, + null, + 98993.730905672, + 99019.66226194054, + null, + 98993.730905672, + 99192.84066023113, + null, + 98993.730905672, + 99195.67384174546, + null, + 98993.730905672, + 98415.58884975722, + null, + 105318.17245295613, + 105702.70779626064, + null, + 105318.17245295613, + 105720.74472153532, + null, + 105318.17245295613, + 105597.88258663817, + null, + 105318.17245295613, + 105537.04043110306, + null, + 105318.17245295613, + 105659.02741920555, + null, + 105318.17245295613, + 105571.73128079504, + null, + 105318.17245295613, + 105609.73144478192, + null, + 105318.17245295613, + 105534.28021291584, + null, + 105318.17245295613, + 105564.00159757282, + null, + 105318.17245295613, + 105754.22947200622, + null, + 105318.17245295613, + 105456.10991948233, + null, + 105318.17245295613, + 105491.33714438768, + null, + 105318.17245295613, + 105716.4703499383, + null, + 105318.17245295613, + 105543.42915303927, + null, + 105318.17245295613, + 105630.69769986445, + null, + 105318.17245295613, + 105645.64612103258, + null, + 105318.17245295613, + 105497.54551993767, + null, + 105318.17245295613, + 105503.81836976812, + null, + 105318.17245295613, + 105623.1784153991, + null, + 105318.17245295613, + 105624.09575786174, + null, + 105318.17245295613, + 105424.31086366, + null, + 105318.17245295613, + 105638.02562345852, + null, + 105318.17245295613, + 105639.8016154403, + null, + 105318.17245295613, + 105447.54534695485, + null, + 105318.17245295613, + 104529.0077171011, + null, + 105318.17245295613, + 105513.51897047486, + null, + 105318.17245295613, + 105541.31168826211, + null, + 105318.17245295613, + 105662.21818670053, + null, + 105318.17245295613, + 105536.89658786391, + null, + 105318.17245295613, + 105587.63908464299, + null, + 105318.17245295613, + 105551.30533148885, + null, + 105318.17245295613, + 105472.97873689594, + null, + 105318.17245295613, + 105562.15649703948, + null, + 105318.17245295613, + 105614.445608318, + null, + 105318.17245295613, + 105605.58224577091, + null, + 105318.17245295613, + 105646.15356609257, + null, + 105318.17245295613, + 105649.11294797633, + null, + 105318.17245295613, + 105639.1427377219, + null, + 105318.17245295613, + 105591.38016161196, + null, + 105318.17245295613, + 105695.7244338854, + null, + 105318.17245295613, + 105501.26262445355, + null, + 105318.17245295613, + 105440.08994178778, + null, + 105318.17245295613, + 105533.16243882055, + null, + 105318.17245295613, + 105517.55400168929, + null, + 105318.17245295613, + 105575.97003898642, + null, + 105318.17245295613, + 105641.5542752146, + null, + 105318.17245295613, + 105618.39256775245, + null, + 105318.17245295613, + 105687.63777874172, + null, + 105318.17245295613, + 105739.36521479895, + null, + 105318.17245295613, + 105637.2752229223, + null, + 105318.17245295613, + 105623.86195710463, + null, + 105318.17245295613, + 105519.4049907799, + null, + 105318.17245295613, + 105536.43145628818, + null, + 105318.17245295613, + 105538.19528796947, + null, + 105318.17245295613, + 105565.0341187142, + null, + 105318.17245295613, + 105726.80316226129, + null, + 105318.17245295613, + 105472.67496843007, + null, + 105318.17245295613, + 105565.60861014514, + null, + 105318.17245295613, + 105721.03776835771, + null, + 105318.17245295613, + 104505.46224372448, + null, + 105318.17245295613, + 105695.48735109183, + null, + 105318.17245295613, + 105519.56230898018, + null, + 105318.17245295613, + 104517.04252285708, + null, + 105318.17245295613, + 105504.7638572277, + null, + 105318.17245295613, + 105675.47517143977, + null, + 105318.17245295613, + 105708.26806277981, + null, + 105318.17245295613, + 105447.26852737083, + null, + 105318.17245295613, + 105720.82332476201, + null, + 105318.17245295613, + 105692.74199201462, + null, + 105318.17245295613, + 105472.93529743854, + null, + 105318.17245295613, + 105505.51038627926, + null, + 105318.17245295613, + 105702.65367969817, + null, + 105318.17245295613, + 105617.41036553025, + null, + 105318.17245295613, + 105463.66708114756, + null, + 105318.17245295613, + 105513.42888557282, + null, + 105318.17245295613, + 105587.24021536975, + null, + 105318.17245295613, + 105666.60642497567, + null, + 105318.17245295613, + 105525.56918281784, + null, + 105318.17245295613, + 105595.04010791137, + null, + 105318.17245295613, + 105444.17622828389, + null, + 105318.17245295613, + 105593.64617351997, + null, + 105318.17245295613, + 105820.99262817558, + null, + 105318.17245295613, + 105488.11414785475, + null, + 105318.17245295613, + 105581.60321262159, + null, + 105318.17245295613, + 105479.62020612431, + null, + 105318.17245295613, + 105674.17917521868, + null, + 105318.17245295613, + 105668.80576224392, + null, + 105318.17245295613, + 105736.3108427153, + null, + 105318.17245295613, + 105672.44716304717, + null, + 105318.17245295613, + 105752.73162429658, + null, + 105318.17245295613, + 105584.94006434933, + null, + 105318.17245295613, + 105569.52484353032, + null, + 105318.17245295613, + 105589.43123760885, + null, + 105318.17245295613, + 105670.77428807763, + null, + 105318.17245295613, + 105553.56081415866, + null, + 105318.17245295613, + 105747.65391754272, + null, + 105318.17245295613, + 105495.33426700001, + null, + 105318.17245295613, + 105680.3612644293, + null, + 105318.17245295613, + 105560.48340758316, + null, + 105318.17245295613, + 105445.55876504377, + null, + 105318.17245295613, + 105629.84276764742, + null, + 105318.17245295613, + 105648.70327510666, + null, + 105318.17245295613, + 105655.30686287093, + null, + 105318.17245295613, + 105565.4869750369, + null, + 105318.17245295613, + 105481.75828279473, + null, + 105318.17245295613, + 105442.67875268511, + null, + 105318.17245295613, + 105526.1879944992, + null, + 105318.17245295613, + 105656.64322979332, + null, + 105318.17245295613, + 105594.35386643908, + null, + 105318.17245295613, + 105612.48488332644, + null, + 105318.17245295613, + 105555.6768617231, + null, + 105318.17245295613, + 105466.87188407933, + null, + 105318.17245295613, + 105686.90580509568, + null, + 105318.17245295613, + 105612.92245493767, + null, + 105318.17245295613, + 105586.46190778396, + null, + 105318.17245295613, + 105553.22245719808, + null, + 105318.17245295613, + 105602.79629216735, + null, + 105318.17245295613, + 105675.06158554988, + null, + 105318.17245295613, + 105749.4487101587, + null, + 105318.17245295613, + 105544.46883093425, + null, + 105318.17245295613, + 105500.52522474098, + null, + 105318.17245295613, + 105559.27154028906, + null, + 105318.17245295613, + 105610.83844839808, + null, + 105318.17245295613, + 105474.40094419045, + null, + 101417.57039700724, + 100811.46618206523, + null, + 101417.57039700724, + 100829.32986696697, + null, + 102629.20595000873, + 102845.67951808334, + null, + 102629.20595000873, + 102881.05506671254, + null, + 102629.20595000873, + 102758.92562444904, + null, + 102629.20595000873, + 102845.59991174893, + null, + 102629.20595000873, + 102770.39328667689, + null, + 102629.20595000873, + 102791.21393627733, + null, + 100636.49150263055, + 100735.89049163861, + null, + 100636.49150263055, + 100714.08462751635, + null, + 102559.4749251737, + 102786.91065751955, + null, + 102559.4749251737, + 102696.68521353304, + null, + 102559.4749251737, + 102794.83285276036, + null, + 102559.4749251737, + 102711.83752916791, + null, + 102559.4749251737, + 102702.49380949287, + null, + 98019.20026379389, + 97921.57016446197, + null, + 98019.20026379389, + 97927.66577067936, + null, + 99501.46206268593, + 99512.35272587591, + null, + 99501.46206268593, + 99574.3917835105, + null, + 99501.46206268593, + 99507.38002680989, + null, + 99501.46206268593, + 99516.12138979742, + null, + 99501.46206268593, + 99602.96430557796, + null, + 99501.46206268593, + 99709.87237972025, + null, + 98810.35406462688, + 98688.38398683874, + null, + 98810.35406462688, + 98595.29230202979, + null, + 98810.35406462688, + 98630.36630678174, + null, + 100839.09741193936, + 101440.91242559247, + null, + 98877.03574041717, + 99045.69549244376, + null, + 98877.03574041717, + 99167.15507702739, + null, + 98877.03574041717, + 99196.99137747717, + null, + 99714.32506825263, + 99888.7474021685, + null, + 99714.32506825263, + 99196.99137747717, + null, + 99140.32285163709, + 99314.8551296866, + null, + 99140.32285163709, + 98391.3654527381, + null, + 99140.32285163709, + 98382.73052405847, + null, + 99140.32285163709, + 99358.88038956131, + null, + 101435.76546972904, + 101577.95064257612, + null, + 101435.76546972904, + 101653.48509896647, + null, + 101435.76546972904, + 101618.87726680218, + null, + 101435.76546972904, + 101696.33854508724, + null, + 101435.76546972904, + 101693.9514589707, + null, + 101435.76546972904, + 101705.56128660376, + null, + 101435.76546972904, + 102075.73811485003, + null, + 101435.76546972904, + 101049.77169559221, + null, + 101435.76546972904, + 101042.64163339522, + null, + 101435.76546972904, + 101584.20875166706, + null, + 101435.76546972904, + 101745.0284195526, + null, + 101435.76546972904, + 101750.29136937985, + null, + 101435.76546972904, + 101723.50378938632, + null, + 101435.76546972904, + 101638.07400466492, + null, + 101435.76546972904, + 101710.07571479805, + null, + 101435.76546972904, + 101605.94890163437, + null, + 101435.76546972904, + 101663.21104220499, + null, + 101435.76546972904, + 101020.07401227095, + null, + 101435.76546972904, + 101571.93741097451, + null, + 101435.76546972904, + 101537.33961984668, + null, + 101435.76546972904, + 101661.32861456498, + null, + 101435.76546972904, + 101809.28157252, + null, + 100379.20660771398, + 100562.85875895302, + null, + 100494.1604689617, + 100691.28122991591, + null, + 100494.1604689617, + 100703.91892473621, + null, + 100494.1604689617, + 100643.93297622279, + null, + 100444.83349810736, + 100629.31140834546, + null, + 100444.83349810736, + 100618.80971613749, + null, + 100171.78786335049, + 100811.46618206523, + null, + 100171.78786335049, + 100829.32986696697, + null, + 99691.16026545654, + 99820.63295952792, + null, + 99691.16026545654, + 99750.92672342333, + null, + 99691.16026545654, + 99919.27050152971, + null, + 99691.16026545654, + 99838.29242204245, + null, + 99691.16026545654, + 99861.68642531082, + null, + 99691.16026545654, + 99828.61773977215, + null, + 99691.16026545654, + 99861.59601408201, + null, + 98069.36909948081, + 98068.53195038276, + null, + 98992.20989010415, + 99008.51573252691, + null, + 98992.20989010415, + 99889.43749238121, + null, + 98992.20989010415, + 99109.3220921073, + null, + 99218.7411313723, + 99234.6345322715, + null, + 99218.7411313723, + 99736.98260295848, + null, + 99218.7411313723, + 99045.69549244376, + null, + 99218.7411313723, + 99431.23960563343, + null, + 99218.7411313723, + 99477.79155051857, + null, + 98237.07311872549, + 99412.54200822763, + null, + 99412.54200822763, + 99931.61590707452, + null, + 99412.54200822763, + 99557.42983475236, + null, + 99412.54200822763, + 99679.01460310047, + null, + 99412.54200822763, + 99781.31591692459, + null, + 99412.54200822763, + 99407.78802846867, + null, + 99412.54200822763, + 99736.98260295848, + null, + 99412.54200822763, + 99045.69549244376, + null, + 99412.54200822763, + 99487.32292325515, + null, + 99412.54200822763, + 99933.44815741768, + null, + 99412.54200822763, + 99734.55623427365, + null, + 99412.54200822763, + 99167.15507702739, + null, + 99412.54200822763, + 99678.11644301329, + null, + 99412.54200822763, + 100044.6384196381, + null, + 99412.54200822763, + 99345.95077259775, + null, + 99412.54200822763, + 99648.52514943464, + null, + 99412.54200822763, + 99734.73651507167, + null, + 99412.54200822763, + 100160.85356023969, + null, + 99412.54200822763, + 99196.99137747717, + null, + 99412.54200822763, + 99298.94031897592, + null, + 99412.54200822763, + 99769.13322520467, + null, + 99155.63016872654, + 99234.6345322715, + null, + 99155.63016872654, + 99407.78802846867, + null, + 99155.63016872654, + 99045.69549244376, + null, + 99155.63016872654, + 99167.15507702739, + null, + 98981.42825942171, + 99045.69549244376, + null, + 98981.42825942171, + 99167.15507702739, + null, + 98981.42825942171, + 99196.99137747717, + null, + 98756.61116861763, + 99078.52085760598, + null, + 98771.61564503152, + 99013.75011741492, + null, + 98771.61564503152, + 98983.9846827361, + null, + 98894.44972464189, + 99328.89319402496, + null, + 99331.7744747594, + 99369.7372803506, + null, + 97816.61219866003, + 97811.37205660775, + null, + 102530.11405078055, + 102770.45633988047, + null, + 102530.11405078055, + 102899.28079331243, + null, + 102530.11405078055, + 102845.04247001756, + null, + 102530.11405078055, + 102895.70055079371, + null, + 102530.11405078055, + 103861.85953601846, + null, + 102530.11405078055, + 102846.78158593367, + null, + 102530.11405078055, + 102811.8399410256, + null, + 102530.11405078055, + 102916.2536478733, + null, + 102530.11405078055, + 102974.00749621436, + null, + 102530.11405078055, + 102909.81065957414, + null, + 102530.11405078055, + 102971.72070191367, + null, + 102530.11405078055, + 102961.37499772165, + null, + 102530.11405078055, + 102754.28742449006, + null, + 102530.11405078055, + 102739.48839184036, + null, + 102530.11405078055, + 102898.81474529942, + null, + 102530.11405078055, + 102794.85431909138, + null, + 102530.11405078055, + 102866.1985748635, + null, + 102530.11405078055, + 102844.89185582798, + null, + 100158.43034755554, + 99709.78133773808, + null, + 98870.69224118859, + 98600.23627742211, + null, + 99495.77993367877, + 99029.78237454424, + null, + 99495.77993367877, + 99954.82959672711, + null, + 99495.77993367877, + 99574.3917835105, + null, + 99495.77993367877, + 99512.35272587591, + null, + 99495.77993367877, + 99507.38002680989, + null, + 99495.77993367877, + 99709.87237972025, + null, + 98896.60676749866, + 98778.26008769598, + null, + 98896.60676749866, + 98708.14130337609, + null, + 98896.60676749866, + 98895.84249312858, + null, + 99061.38220264099, + 98969.34698883492, + null, + 99749.23255553393, + 99955.92746291363, + null, + 99749.23255553393, + 99234.6345322715, + null, + 99749.23255553393, + 99045.69549244376, + null, + 99749.23255553393, + 99956.03049514619, + null, + 99863.46008168485, + 99148.01739523798, + null, + 101253.85143735835, + 101816.88311248944, + null, + 101066.18080243433, + 101202.62539612001, + null, + 101066.18080243433, + 101391.8218569706, + null, + 101066.18080243433, + 101174.63066983833, + null, + 100833.069541554, + 101048.57144304692, + null, + 100833.069541554, + 101000.89468833616, + null, + 100216.65510336985, + 99852.8334694923, + null, + 101097.55034226578, + 101079.62659732827, + null, + 101097.55034226578, + 100811.29454032266, + null, + 101097.55034226578, + 100799.25439064918, + null, + 101097.55034226578, + 101246.78776875495, + null, + 101097.55034226578, + 100834.06910339087, + null, + 101097.55034226578, + 100714.08462751635, + null, + 101097.55034226578, + 101329.93994851012, + null, + 101097.55034226578, + 101396.92720550015, + null, + 101097.55034226578, + 101206.60928117258, + null, + 101097.55034226578, + 100791.5569642883, + null, + 101097.55034226578, + 100770.01044896716, + null, + 101097.55034226578, + 101239.2275985487, + null, + 101097.55034226578, + 101425.18089836829, + null, + 101097.55034226578, + 101374.23433910658, + null, + 101097.55034226578, + 101302.72499833946, + null, + 101097.55034226578, + 101341.02872417537, + null, + 101618.20433424404, + 101903.18715956158, + null, + 101618.20433424404, + 101756.92345298977, + null, + 101618.20433424404, + 101849.86400158559, + null, + 101618.20433424404, + 101917.07900434479, + null, + 101618.20433424404, + 101771.88883756689, + null, + 101618.20433424404, + 101878.49188290893, + null, + 101618.20433424404, + 101859.9833131921, + null, + 101618.20433424404, + 101768.71035459545, + null, + 101618.20433424404, + 101957.66008863025, + null, + 101618.20433424404, + 101925.93381925664, + null, + 101618.20433424404, + 101802.09502770085, + null, + 101618.20433424404, + 101941.68698389355, + null, + 101618.20433424404, + 101820.5319393799, + null, + 101618.20433424404, + 101816.23817021484, + null, + 101618.20433424404, + 101810.24091218987, + null, + 101618.20433424404, + 101956.52492095728, + null, + 101618.20433424404, + 101818.97161414391, + null, + 101618.20433424404, + 101875.49783721726, + null, + 101618.20433424404, + 101811.52595774685, + null, + 100357.48060133551, + 100461.69417982163, + null, + 100357.48060133551, + 100490.95507089696, + null, + 100357.48060133551, + 100584.23507339627, + null, + 100357.48060133551, + 100530.62814033258, + null, + 100357.48060133551, + 100598.89273700629, + null, + 100357.48060133551, + 100590.7203286694, + null, + 100059.12439104206, + 100253.45508330212, + null, + 100059.12439104206, + 100036.94123600336, + null, + 100059.12439104206, + 100018.92157433346, + null, + 100338.86353601632, + 100686.6864121916, + null, + 100338.86353601632, + 100490.75991207774, + null, + 100338.86353601632, + 100036.94123600336, + null, + 100338.86353601632, + 100668.95104477237, + null, + 100338.86353601632, + 100018.92157433346, + null, + 100338.86353601632, + 100709.49045972321, + null, + 99586.51857910478, + 99234.6345322715, + null, + 99586.51857910478, + 99407.78802846867, + null, + 99586.51857910478, + 99045.69549244376, + null, + 99586.51857910478, + 99167.15507702739, + null, + 99586.51857910478, + 100044.6384196381, + null, + 97856.81262960663, + 99234.6345322715, + null, + 97856.81262960663, + 99045.69549244376, + null, + 97856.81262960663, + 99167.15507702739, + null, + 97856.81262960663, + 99196.99137747717, + null, + 97856.81262960663, + 99298.94031897592, + null, + 98237.07311872549, + 96575.13863198814, + null, + 97435.85714721317, + 96575.13863198814, + null, + 96162.4303606248, + 96029.34704917161, + null, + 95209.07740315559, + 95132.0182590058, + null, + 95638.78273951489, + 95825.30565065744, + null, + 95459.71080597503, + 95825.30565065744, + null, + 95825.30565065744, + 95656.09312934356, + null, + 96286.13541218151, + 96141.31999881029, + null, + 100540.34287442153, + 100929.37102861726, + null, + 100540.34287442153, + 100956.6831535797, + null, + 100540.34287442153, + 101042.64163339522, + null, + 100540.34287442153, + 101020.07401227095, + null, + 100540.34287442153, + 100698.78901867794, + null, + 100540.34287442153, + 100753.17948613792, + null, + 100540.34287442153, + 101049.77169559221, + null, + 97698.73432565104, + 96851.49702075154, + null, + 97698.73432565104, + 97327.29514577452, + null, + 97698.73432565104, + 96923.14998898802, + null, + 97698.73432565104, + 97742.89093696582, + null, + 97698.73432565104, + 96935.43558121054, + null, + 104834.05247099117, + 103861.85953601846, + null, + 104834.05247099117, + 105073.0459310981, + null, + 104834.05247099117, + 105250.393807277, + null, + 104834.05247099117, + 105140.76660493574, + null, + 104834.05247099117, + 105754.80884174582, + null, + 104834.05247099117, + 105296.44944531913, + null, + 104834.05247099117, + 105728.57517210917, + null, + 104834.05247099117, + 105331.49139983783, + null, + 104834.05247099117, + 105780.27159862246, + null, + 104834.05247099117, + 105172.1807521991, + null, + 104834.05247099117, + 105292.49635223951, + null, + 104834.05247099117, + 105249.47644010253, + null, + 104834.05247099117, + 105196.48958054805, + null, + 104834.05247099117, + 105286.83303054038, + null, + 104834.05247099117, + 105160.24999280086, + null, + 104834.05247099117, + 105237.16293164933, + null, + 104834.05247099117, + 105751.46313263659, + null, + 104834.05247099117, + 105219.5540524566, + null, + 104834.05247099117, + 105122.87025665042, + null, + 104834.05247099117, + 105134.50465352352, + null, + 104834.05247099117, + 105245.56495725964, + null, + 104834.05247099117, + 105329.65312133559, + null, + 104834.05247099117, + 105255.04680668082, + null, + 104834.05247099117, + 105776.90488419207, + null, + 104834.05247099117, + 105296.69162847476, + null, + 104834.05247099117, + 105290.15459453787, + null, + 104834.05247099117, + 105187.03177049119, + null, + 104834.05247099117, + 105068.00604745663, + null, + 104834.05247099117, + 105210.64546245524, + null, + 104834.05247099117, + 105172.11220199827, + null, + 104834.05247099117, + 105147.22240577158, + null, + 104834.05247099117, + 105110.21176335553, + null, + 104834.05247099117, + 105205.98079610139, + null, + 104834.05247099117, + 105213.94812081721, + null, + 102345.37784253916, + 102632.01767983723, + null, + 102345.37784253916, + 102581.27782990142, + null, + 101736.15467046229, + 102038.80831194275, + null, + 101736.15467046229, + 101079.62659732827, + null, + 102333.66889929863, + 102529.36033743144, + null, + 100557.2821983049, + 99200.76991821163, + null, + 99212.64656167013, + 99512.35272587591, + null, + 99212.64656167013, + 99507.38002680989, + null, + 99212.64656167013, + 99348.7447313686, + null, + 99212.64656167013, + 99133.91865058728, + null, + 99212.64656167013, + 99709.87237972025, + null, + 99212.64656167013, + 99574.3917835105, + null, + 98977.62128580881, + 99234.6345322715, + null, + 98977.62128580881, + 99407.78802846867, + null, + 98977.62128580881, + 99045.69549244376, + null, + 98977.62128580881, + 99167.15507702739, + null, + 98312.73735572214, + 98285.28494219562, + null, + 98312.73735572214, + 98238.1997657076, + null, + 98237.07311872549, + 99304.290069593, + null, + 97435.85714721317, + 99304.290069593, + null, + 101567.70440058614, + 101317.04585495421, + null, + 101735.09643628406, + 102019.01183458454, + null, + 101809.73928647002, + 101995.52746789972, + null, + 101785.06810363055, + 101916.08163925847, + null, + 102953.17211273103, + 102294.46222470059, + null, + 102953.17211273103, + 103456.08986793383, + null, + 102953.17211273103, + 103457.02108909264, + null, + 102953.17211273103, + 103373.99913840227, + null, + 102953.17211273103, + 103524.19866889584, + null, + 102953.17211273103, + 103286.55890268029, + null, + 102953.17211273103, + 103435.72798991972, + null, + 102953.17211273103, + 103264.17278986354, + null, + 102953.17211273103, + 103477.47262815104, + null, + 102953.17211273103, + 102258.94880965956, + null, + 102953.17211273103, + 102241.50007551156, + null, + 102953.17211273103, + 103380.67928748445, + null, + 102953.17211273103, + 102236.92013567835, + null, + 102953.17211273103, + 102271.38430452191, + null, + 102953.17211273103, + 103389.520733978, + null, + 102953.17211273103, + 103504.33007253749, + null, + 102953.17211273103, + 102275.28365277304, + null, + 102953.17211273103, + 102273.20050188246, + null, + 102953.17211273103, + 102974.21228920032, + null, + 104198.31260714601, + 104503.28348820597, + null, + 104198.31260714601, + 104496.15652465288, + null, + 104198.31260714601, + 105460.45902230869, + null, + 104198.31260714601, + 104559.40416265023, + null, + 104198.31260714601, + 105434.4203361631, + null, + 104198.31260714601, + 105455.89490134627, + null, + 104198.31260714601, + 105431.26932589978, + null, + 104198.31260714601, + 104574.61351811924, + null, + 106233.53305936579, + 105780.27159862246, + null, + 106233.53305936579, + 106561.87872816344, + null, + 106233.53305936579, + 105754.80884174582, + null, + 106233.53305936579, + 106776.02255939199, + null, + 106233.53305936579, + 106635.16178182501, + null, + 106233.53305936579, + 105434.4203361631, + null, + 106233.53305936579, + 106732.15504561804, + null, + 106233.53305936579, + 106601.29107885293, + null, + 106233.53305936579, + 106731.17359497877, + null, + 106233.53305936579, + 105460.45902230869, + null, + 106233.53305936579, + 106602.14819754453, + null, + 106233.53305936579, + 106862.10792861404, + null, + 106233.53305936579, + 106755.693741068, + null, + 106233.53305936579, + 106532.5203665794, + null, + 106233.53305936579, + 106759.61558299915, + null, + 106233.53305936579, + 106609.41327421999, + null, + 106233.53305936579, + 106706.91607713986, + null, + 106233.53305936579, + 106650.15180578313, + null, + 106233.53305936579, + 106592.85557378664, + null, + 106233.53305936579, + 106665.85308371624, + null, + 106233.53305936579, + 106765.76699810462, + null, + 106233.53305936579, + 106644.63224566527, + null, + 106233.53305936579, + 106727.0636283268, + null, + 106233.53305936579, + 106691.8254125457, + null, + 106233.53305936579, + 106658.42952704415, + null, + 106233.53305936579, + 106573.8359684691, + null, + 106233.53305936579, + 106946.77846067028, + null, + 106233.53305936579, + 106678.2647647673, + null, + 106233.53305936579, + 106679.82621071998, + null, + 106233.53305936579, + 106820.76911869101, + null, + 106233.53305936579, + 106821.27699738681, + null, + 106233.53305936579, + 106812.8337418669, + null, + 106233.53305936579, + 105751.46313263659, + null, + 106233.53305936579, + 106685.34842842711, + null, + 106233.53305936579, + 106551.31500165496, + null, + 106233.53305936579, + 106823.52842568823, + null, + 106233.53305936579, + 106749.18607248642, + null, + 106233.53305936579, + 106842.31888496643, + null, + 106233.53305936579, + 106742.34691528913, + null, + 106233.53305936579, + 105776.90488419207, + null, + 106233.53305936579, + 107048.685062726, + null, + 106233.53305936579, + 106675.50133822637, + null, + 106233.53305936579, + 106715.18848661716, + null, + 106233.53305936579, + 106770.8177499561, + null, + 106233.53305936579, + 106682.09481440886, + null, + 106233.53305936579, + 106619.69654244954, + null, + 106233.53305936579, + 105728.57517210917, + null, + 106233.53305936579, + 106719.62851343823, + null, + 106233.53305936579, + 106712.21093307452, + null, + 106233.53305936579, + 106792.36538370406, + null, + 106233.53305936579, + 106716.43322221242, + null, + 106233.53305936579, + 106722.43473218425, + null, + 106233.53305936579, + 106613.4142948, + null, + 106233.53305936579, + 107200.47939503906, + null, + 106233.53305936579, + 106762.13888084773, + null, + 106233.53305936579, + 106837.53679908288, + null, + 106233.53305936579, + 106790.73048520643, + null, + 106233.53305936579, + 106553.37983249659, + null, + 106233.53305936579, + 106791.48424114, + null, + 106233.53305936579, + 106579.14641755563, + null, + 106233.53305936579, + 106666.6595550612, + null, + 106233.53305936579, + 106598.67730765055, + null, + 106233.53305936579, + 106632.97128548277, + null, + 106233.53305936579, + 106678.59034848932, + null, + 106233.53305936579, + 105431.26932589978, + null, + 106233.53305936579, + 106794.65299645755, + null, + 106233.53305936579, + 106647.08307701974, + null, + 106233.53305936579, + 106681.56976180268, + null, + 106233.53305936579, + 105455.89490134627, + null, + 106233.53305936579, + 106745.56797317222, + null, + 106233.53305936579, + 106837.31654858893, + null, + 106233.53305936579, + 106708.68509258526, + null, + 106233.53305936579, + 106808.31653286635, + null, + 106233.53305936579, + 106707.63399406707, + null, + 106233.53305936579, + 106778.70466327264, + null, + 106233.53305936579, + 106852.09016633748, + null, + 106233.53305936579, + 106796.85298801294, + null, + 106233.53305936579, + 106725.95900633195, + null, + 106233.53305936579, + 106609.89058123871, + null, + 106233.53305936579, + 106643.67855764981, + null, + 102017.0341341957, + 102302.54250042449, + null, + 102017.0341341957, + 102273.51637285373, + null, + 102017.0341341957, + 102327.68714141687, + null, + 99527.77886408713, + 98515.60094273857, + null, + 99527.77886408713, + 98306.18967874342, + null, + 99527.77886408713, + 98510.79621330468, + null, + 101917.25635551335, + 102134.67476412581, + null, + 101917.25635551335, + 102190.75502881849, + null, + 101917.25635551335, + 101602.23613881375, + null, + 101917.25635551335, + 101601.26872970493, + null, + 101917.25635551335, + 101563.87691551438, + null, + 101917.25635551335, + 102192.64407157355, + null, + 101917.25635551335, + 101585.65958301134, + null, + 101976.86435161783, + 102251.95358990936, + null, + 101976.86435161783, + 102251.26335777057, + null, + 101976.86435161783, + 102191.2547206348, + null, + 100243.014205219, + 100276.21812349626, + null, + 100243.014205219, + 99931.61590707452, + null, + 100243.014205219, + 99361.59793953648, + null, + 100243.014205219, + 100133.57556468557, + null, + 100243.014205219, + 99933.44815741768, + null, + 100243.014205219, + 100169.9290565621, + null, + 100243.014205219, + 100231.58588411789, + null, + 100243.014205219, + 99407.78802846867, + null, + 100243.014205219, + 100459.64579783555, + null, + 100243.014205219, + 100437.37357383645, + null, + 100243.014205219, + 101085.99598431727, + null, + 100243.014205219, + 100418.44291308156, + null, + 100243.014205219, + 100217.0931850488, + null, + 100243.014205219, + 100166.28518205784, + null, + 100243.014205219, + 99736.98260295848, + null, + 100243.014205219, + 100196.8580268146, + null, + 100243.014205219, + 99298.94031897592, + null, + 99932.49537425906, + 99931.61590707452, + null, + 99932.49537425906, + 99407.78802846867, + null, + 99932.49537425906, + 99234.6345322715, + null, + 99932.49537425906, + 100160.85356023969, + null, + 99932.49537425906, + 99045.69549244376, + null, + 99932.49537425906, + 99167.15507702739, + null, + 99932.49537425906, + 100044.6384196381, + null, + 99932.49537425906, + 99298.94031897592, + null, + 102190.88209432086, + 102472.09396205097, + null, + 102190.88209432086, + 102510.40110102798, + null, + 102190.88209432086, + 102426.07836071348, + null, + 102190.88209432086, + 102493.70912809666, + null, + 100124.12507747632, + 99045.69549244376, + null, + 100124.12507747632, + 100370.73279250569, + null, + 100124.12507747632, + 99234.6345322715, + null, + 100124.12507747632, + 100263.99606202378, + null, + 101885.99912176745, + 102185.54162184449, + null, + 101885.99912176745, + 102105.35380535477, + null, + 101697.96826814402, + 101884.12289507367, + null, + 101829.23480550414, + 102089.16961632067, + null, + 100597.08688634772, + 100813.5137450206, + null, + 100597.08688634772, + 100679.36722813868, + null, + 100597.08688634772, + 99574.3917835105, + null, + 100597.08688634772, + 100865.96671772173, + null, + 100353.70323921503, + 99512.35272587591, + null, + 100353.70323921503, + 99954.82959672711, + null, + 100353.70323921503, + 99507.38002680989, + null, + 100353.70323921503, + 100360.08398611244, + null, + 100353.70323921503, + 100417.8409414628, + null, + 102178.3682577673, + 102503.96297081048, + null, + 102178.3682577673, + 102361.26354264608, + null, + 102178.3682577673, + 102361.61563848036, + null, + 102178.3682577673, + 102447.4628204767, + null, + 101779.84963144422, + 102089.33611078521, + null, + 99852.88185831445, + 100276.21812349626, + null, + 99852.88185831445, + 99931.61590707452, + null, + 99852.88185831445, + 100199.38989250545, + null, + 98237.07311872549, + 99852.88185831445, + null, + 99852.88185831445, + 100166.28518205784, + null, + 99852.88185831445, + 100231.58588411789, + null, + 99852.88185831445, + 100378.98935340745, + null, + 99852.88185831445, + 99933.44815741768, + null, + 99852.88185831445, + 99407.78802846867, + null, + 99852.88185831445, + 100003.95047136398, + null, + 99852.88185831445, + 99679.01460310047, + null, + 99852.88185831445, + 99781.31591692459, + null, + 99852.88185831445, + 99967.22110128611, + null, + 99852.88185831445, + 99234.6345322715, + null, + 99852.88185831445, + 99736.98260295848, + null, + 99852.88185831445, + 100160.85356023969, + null, + 99852.88185831445, + 100086.45963356196, + null, + 99852.88185831445, + 99045.69549244376, + null, + 99852.88185831445, + 99878.95454371617, + null, + 99852.88185831445, + 100123.24005124219, + null, + 99852.88185831445, + 99769.13322520467, + null, + 99852.88185831445, + 100169.9290565621, + null, + 99852.88185831445, + 100217.0931850488, + null, + 99852.88185831445, + 100049.4088958235, + null, + 99852.88185831445, + 100174.70969881222, + null, + 99852.88185831445, + 99963.18628188736, + null, + 99852.88185831445, + 100072.569476962, + null, + 99852.88185831445, + 100052.61467437836, + null, + 99852.88185831445, + 100107.50881085078, + null, + 99852.88185831445, + 100081.03971028964, + null, + 99852.88185831445, + 99734.55623427365, + null, + 99852.88185831445, + 100062.94225538117, + null, + 99852.88185831445, + 100133.57556468557, + null, + 99852.88185831445, + 99167.15507702739, + null, + 99852.88185831445, + 100062.83649537648, + null, + 99852.88185831445, + 99678.11644301329, + null, + 99852.88185831445, + 100016.80639456735, + null, + 99852.88185831445, + 100176.00446974729, + null, + 99852.88185831445, + 100061.81776244742, + null, + 99852.88185831445, + 99345.95077259775, + null, + 99852.88185831445, + 100044.6384196381, + null, + 99852.88185831445, + 100094.30522647932, + null, + 99852.88185831445, + 100196.8580268146, + null, + 99852.88185831445, + 99648.52514943464, + null, + 99852.88185831445, + 99925.05483366393, + null, + 99852.88185831445, + 99734.73651507167, + null, + 99852.88185831445, + 100241.64041136006, + null, + 99852.88185831445, + 99298.94031897592, + null, + 99852.88185831445, + 99196.99137747717, + null, + 99990.35940967675, + 99045.69549244376, + null, + 99990.35940967675, + 99167.15507702739, + null, + 99990.35940967675, + 99196.99137747717, + null, + 102063.12360975276, + 102374.89899726883, + null, + 102063.12360975276, + 102326.17920087215, + null, + 101781.56537819619, + 102040.19185746327, + null, + 101749.04159536793, + 102044.87477390302, + null, + 102437.23538334639, + 102681.04976482222, + null, + 102437.23538334639, + 102708.80667103664, + null, + 102437.23538334639, + 102746.23300112753, + null, + 102437.23538334639, + 102779.2332887374, + null, + 102437.23538334639, + 102769.97593312086, + null, + 102437.23538334639, + 102646.19294310108, + null, + 102437.23538334639, + 102704.66675675161, + null, + 101962.97098059615, + 102237.36466432676, + null, + 100466.67560792255, + 99693.89632500503, + null, + 100466.67560792255, + 99710.17309703058, + null, + 100113.74493313026, + 100342.08799841997, + null, + 100113.74493313026, + 100335.85997077923, + null, + 100113.74493313026, + 99045.69549244376, + null, + 100113.74493313026, + 99234.6345322715, + null, + 100113.74493313026, + 100223.83301915645, + null, + 100113.74493313026, + 99754.96532026985, + null, + 100858.32947002299, + 100160.85356023969, + null, + 99975.85497357504, + 99736.98260295848, + null, + 99975.85497357504, + 100160.85356023969, + null, + 99975.85497357504, + 99045.69549244376, + null, + 99975.85497357504, + 99167.15507702739, + null, + 99975.85497357504, + 99196.99137747717, + null, + 99975.85497357504, + 99298.94031897592, + null, + 102278.80486131168, + 102692.31405608842, + null, + 102278.80486131168, + 102579.10480518742, + null, + 102278.80486131168, + 102075.73811485003, + null, + 102278.80486131168, + 102525.51969078122, + null, + 102278.80486131168, + 102647.6977664583, + null, + 102278.80486131168, + 102438.98054800251, + null, + 101812.8020162423, + 102109.63915621935, + null, + 102563.3206054858, + 102294.46222470059, + null, + 102563.3206054858, + 103286.55890268029, + null, + 102563.3206054858, + 103264.17278986354, + null, + 102563.3206054858, + 102258.94880965956, + null, + 102563.3206054858, + 102241.50007551156, + null, + 102563.3206054858, + 102236.92013567835, + null, + 102563.3206054858, + 102271.38430452191, + null, + 102563.3206054858, + 102275.28365277304, + null, + 102563.3206054858, + 102061.11808554111, + null, + 102563.3206054858, + 102273.20050188246, + null, + 102563.3206054858, + 102974.21228920032, + null, + 100748.96797238242, + 100927.9651385238, + null, + 101678.99297077536, + 101440.91242559247, + null, + 100750.28187529245, + 100680.80099572752, + null, + 100750.28187529245, + 100800.39718183145, + null, + 100838.817421307, + 100686.6864121916, + null, + 100838.817421307, + 101086.82262158477, + null, + 100838.817421307, + 100998.98327044309, + null, + 100838.817421307, + 100845.09419351183, + null, + 100838.817421307, + 101033.30132867355, + null, + 100838.817421307, + 101097.27054992382, + null, + 100838.817421307, + 100893.79932863965, + null, + 100838.817421307, + 100948.55715984435, + null, + 100838.817421307, + 100972.4639411515, + null, + 100838.817421307, + 101060.94351000125, + null, + 100838.817421307, + 100955.43618464691, + null, + 100838.817421307, + 101021.96758872966, + null, + 100838.817421307, + 100036.94123600336, + null, + 100838.817421307, + 100668.95104477237, + null, + 100838.817421307, + 100018.92157433346, + null, + 100838.817421307, + 100709.49045972321, + null, + 100838.817421307, + 100931.19533174056, + null, + 100838.817421307, + 101026.39648026331, + null, + 100838.817421307, + 100960.26564636652, + null, + 100838.817421307, + 100884.82814455178, + null, + 100838.817421307, + 101056.54576635997, + null, + 100730.67229205805, + 101004.07943332818, + null, + 100730.67229205805, + 100044.6384196381, + null, + 100730.67229205805, + 101086.33472233359, + null, + 100730.67229205805, + 100378.98935340745, + null, + 100730.67229205805, + 101074.00311444225, + null, + 100730.67229205805, + 100955.59770470153, + null, + 100730.67229205805, + 100985.08882280662, + null, + 99990.30313700912, + 99045.69549244376, + null, + 99990.30313700912, + 99167.15507702739, + null, + 99990.30313700912, + 99196.99137747717, + null, + 102022.7910616867, + 102345.30775637389, + null, + 102022.7910616867, + 102360.48782179103, + null, + 97740.36484145897, + 99646.19840781609, + null, + 97740.36484145897, + 99629.49033305429, + null, + 101905.45676874653, + 102158.60557313335, + null, + 101905.45676874653, + 102239.22675177707, + null, + 100837.07785367471, + 101086.89222661091, + null, + 100837.07785367471, + 101038.90054617883, + null, + 100837.07785367471, + 101062.66465869642, + null, + 100837.07785367471, + 101114.80968133733, + null, + 101743.09284030006, + 101978.09520389797, + null, + 101743.09284030006, + 102012.27612347057, + null, + 101743.09284030006, + 101085.99598431727, + null, + 101836.64612097175, + 102119.8001668184, + null, + 101856.42797018508, + 102146.32891249588, + null, + 101839.95878378669, + 102110.89458927693, + null, + 101729.67598101968, + 102012.93262592147, + null, + 101780.85634799347, + 102027.32069496305, + null, + 101330.36334771957, + 101020.07401227095, + null, + 101330.36334771957, + 101571.93741097451, + null, + 101330.36334771957, + 101577.95064257612, + null, + 101330.36334771957, + 101042.64163339522, + null, + 101330.36334771957, + 100956.6831535797, + null, + 101330.36334771957, + 100929.37102861726, + null, + 101330.36334771957, + 101049.77169559221, + null, + 97136.55546326986, + 98644.28600268529, + null, + 97605.64203060168, + 98644.28600268529, + null, + 97651.32746016643, + 98644.28600268529, + null, + 97499.57548817585, + 98644.28600268529, + null, + 97615.00090956, + 98644.28600268529, + null, + 97672.92128722146, + 98644.28600268529, + null, + 99737.09642278514, + 99009.30827088827, + null, + 99737.09642278514, + 98968.59244384883, + null, + 99737.09642278514, + 98993.06721654031, + null, + 99737.09642278514, + 99007.66770283102, + null, + 99737.09642278514, + 98982.44152343833, + null, + 100879.74390370514, + 100242.68992519718, + null, + 100879.74390370514, + 101009.39541248594, + null, + 100879.74390370514, + 100412.32402265836, + null, + 100879.74390370514, + 101005.45701984284, + null, + 101077.31846050268, + 101079.62659732827, + null, + 101077.31846050268, + 100811.29454032266, + null, + 101077.31846050268, + 100799.25439064918, + null, + 101077.31846050268, + 100677.38582400509, + null, + 101077.31846050268, + 100722.31731806434, + null, + 101077.31846050268, + 100834.06910339087, + null, + 101077.31846050268, + 100697.5591835894, + null, + 101077.31846050268, + 100714.08462751635, + null, + 101077.31846050268, + 101317.20118670381, + null, + 101077.31846050268, + 100770.01044896716, + null, + 101077.31846050268, + 100791.5569642883, + null, + 102156.91580320336, + 102472.85417684923, + null, + 102156.91580320336, + 102486.73414419277, + null, + 102156.91580320336, + 102441.4595203972, + null, + 101765.97063868862, + 101991.62025209401, + null, + 100219.71623880966, + 99574.3917835105, + null, + 100219.71623880966, + 99512.35272587591, + null, + 100219.71623880966, + 99954.82959672711, + null, + 100219.71623880966, + 99507.38002680989, + null, + 100219.71623880966, + 100360.08398611244, + null, + 100219.71623880966, + 100417.8409414628, + null, + 100219.71623880966, + 99709.87237972025, + null, + 100725.71208858925, + 99889.43749238121, + null, + 100725.71208858925, + 100903.69339707514, + null, + 102143.24639139706, + 102484.69136668938, + null, + 102143.24639139706, + 102403.0980081417, + null, + 102143.24639139706, + 102427.6128384684, + null, + 102143.24639139706, + 102361.88691559348, + null, + 101792.06935951588, + 101909.83952413945, + null, + 101942.69325653883, + 102131.74303744955, + null, + 101942.69325653883, + 102301.49116759682, + null, + 101650.40513567929, + 101794.82512531827, + null, + 101988.60520862282, + 101816.88311248944, + null, + 101988.60520862282, + 102311.66790009006, + null, + 101988.60520862282, + 102102.30008742088, + null, + 103450.9949418264, + 104529.0077171011, + null, + 103450.9949418264, + 104517.04252285708, + null, + 103450.9949418264, + 103679.83752006112, + null, + 103450.9949418264, + 103691.81173829258, + null, + 103450.9949418264, + 104505.46224372448, + null, + 103450.9949418264, + 103615.98109999106, + null, + 102018.88919342995, + 102175.9296900868, + null, + 102018.88919342995, + 102319.2367968909, + null, + 101741.66784545634, + 101910.31769046403, + null, + 99603.45577850576, + 99855.59269539596, + null, + 99040.76425546396, + 98518.94253675062, + null, + 99172.24243406764, + 98978.20058631645, + null, + 99172.24243406764, + 98608.15016492098, + null, + 99172.24243406764, + 99439.56645918118, + null, + 99528.31511285559, + 98949.18912879386, + null, + 99528.31511285559, + 99766.19705816366, + null, + 99528.31511285559, + 99793.00774291946, + null, + 98769.65877246718, + 98181.70136908787, + null, + 98769.65877246718, + 98416.67608487829, + null, + 99287.60100382363, + 99544.7067431413, + null, + 99287.60100382363, + 99597.22180864953, + null, + 98838.01226486915, + 99287.60100382363, + null, + 99287.60100382363, + 99185.65099595927, + null, + 99287.60100382363, + 98975.4583568785, + null, + 99287.60100382363, + 99287.0655957827, + null, + 99475.57144267684, + 99652.00107522465, + null, + 98297.39646140915, + 98629.06194375621, + null, + 98297.39646140915, + 98068.90809649408, + null, + 97418.97603097925, + 97236.38714706122, + null, + 97418.97603097925, + 96774.27151536841, + null, + 97418.97603097925, + 97373.43174560844, + null, + 97418.97603097925, + 96661.15501811591, + null, + 97418.97603097925, + 96680.86127426095, + null, + 97418.97603097925, + 97337.73716817379, + null, + 97418.97603097925, + 97270.4959860881, + null, + 97418.97603097925, + 96778.97067219901, + null, + 97418.97603097925, + 97280.19761067317, + null, + 97418.97603097925, + 97564.18875675717, + null, + 97418.97603097925, + 97262.69730354023, + null, + 97418.97603097925, + 97291.68899181754, + null, + 97418.97603097925, + 97322.34378993233, + null, + 97418.97603097925, + 97384.02435958975, + null, + 97418.97603097925, + 96644.71742174745, + null, + 97418.97603097925, + 97411.59609787649, + null, + 97418.97603097925, + 98328.13162079666, + null, + 98936.37152899419, + 99088.98463223837, + null, + 99182.20687722552, + 99088.98463223837, + null, + 99227.14373040265, + 99275.53523335142, + null, + 99227.14373040265, + 99323.60015745301, + null, + 99227.14373040265, + 99346.175304721, + null, + 98821.68699083632, + 98634.55621819719, + null, + 98717.22176373757, + 98380.41809928608, + null, + 98717.22176373757, + 98866.71537147863, + null, + 98717.22176373757, + 98448.21242713043, + null, + 98717.22176373757, + 98634.55621819719, + null, + 98584.01431051758, + 98323.4492928728, + null, + 98584.01431051758, + 98381.35948380831, + null, + 98584.01431051758, + 98387.01183578208, + null, + 98584.01431051758, + 98282.75113269164, + null, + 99272.0781529895, + 99378.38433540135, + null, + 99272.0781529895, + 99352.75585645964, + null, + 99272.0781529895, + 99225.4877064742, + null, + 99272.0781529895, + 99418.16866483733, + null, + 99272.0781529895, + 99430.27884390537, + null, + 99272.0781529895, + 99480.31439861133, + null, + 99272.0781529895, + 99349.43583085632, + null, + 99272.0781529895, + 99353.08989464479, + null, + 99272.0781529895, + 98534.36395672044, + null, + 99272.0781529895, + 99310.86447736768, + null, + 99272.0781529895, + 99249.28903447703, + null, + 99272.0781529895, + 99379.08345923015, + null, + 99272.0781529895, + 99418.72251871403, + null, + 99272.0781529895, + 99307.44341004237, + null, + 99272.0781529895, + 99467.36470738356, + null, + 99272.0781529895, + 99358.52710365926, + null, + 99272.0781529895, + 99463.08823462212, + null, + 99272.0781529895, + 99265.10686255786, + null, + 99272.0781529895, + 99533.1090051132, + null, + 99272.0781529895, + 99430.735616467, + null, + 99272.0781529895, + 99412.77834028199, + null, + 99272.0781529895, + 99265.42166951722, + null, + 99272.0781529895, + 99397.0822658798, + null, + 99272.0781529895, + 99359.96988171423, + null, + 99272.0781529895, + 99232.57690378158, + null, + 99272.0781529895, + 99357.18200421888, + null, + 99272.0781529895, + 99521.77955609749, + null, + 99272.0781529895, + 98328.13162079666, + null, + 99272.0781529895, + 99312.31898186129, + null, + 99272.0781529895, + 99329.83088819458, + null, + 99272.0781529895, + 99324.19866222715, + null, + 99272.0781529895, + 99203.5119953795, + null, + 99272.0781529895, + 99449.90457211129, + null, + 99272.0781529895, + 99463.59916379068, + null, + 99272.0781529895, + 99336.20831706232, + null, + 99272.0781529895, + 99349.75794681006, + null, + 99272.0781529895, + 99502.02039728625, + null, + 99272.0781529895, + 99393.14025308313, + null, + 99272.0781529895, + 99317.14667566899, + null, + 99272.0781529895, + 99213.54020433339, + null, + 99272.0781529895, + 99272.36238573091, + null, + 99272.0781529895, + 99503.60977650297, + null, + 99272.0781529895, + 99272.71339872474, + null, + 99272.0781529895, + 99184.35722457996, + null, + 99272.0781529895, + 99448.69160046501, + null, + 99272.0781529895, + 99474.5870906059, + null, + 99272.0781529895, + 99434.97853800446, + null, + 99272.0781529895, + 99483.7099392884, + null, + 99272.0781529895, + 99270.32006106859, + null, + 99272.0781529895, + 99471.18560763983, + null, + 99272.0781529895, + 99306.12541877851, + null, + 99272.0781529895, + 99551.20671595355, + null, + 99272.0781529895, + 99406.92829413555, + null, + 99272.0781529895, + 99291.30004253573, + null, + 99272.0781529895, + 99374.96501653186, + null, + 99272.0781529895, + 99442.85276686755, + null, + 99272.0781529895, + 99315.38055521878, + null, + 99272.0781529895, + 99276.09987661881, + null, + 99272.0781529895, + 99390.52362469089, + null, + 99272.0781529895, + 99423.5922830648, + null, + 99272.0781529895, + 99354.83844456464, + null, + 99272.0781529895, + 99215.2926091783, + null, + 99272.0781529895, + 99386.53496947915, + null, + 99272.0781529895, + 99528.67144569101, + null, + 99272.0781529895, + 99269.65052503442, + null, + 99272.0781529895, + 99369.25845492617, + null, + 99272.0781529895, + 99387.60981991838, + null, + 99272.0781529895, + 99477.98145048507, + null, + 99272.0781529895, + 99245.2361239818, + null, + 99272.0781529895, + 99213.53053314565, + null, + 99272.0781529895, + 99215.12918935942, + null, + 99272.0781529895, + 99319.8835983256, + null, + 99272.0781529895, + 99540.71579349438, + null, + 99272.0781529895, + 99410.73623499194, + null, + 99272.0781529895, + 99410.99468459656, + null, + 99272.0781529895, + 99314.44014947582, + null, + 99272.0781529895, + 99403.7799505777, + null, + 99272.0781529895, + 99190.33807993686, + null, + 99272.0781529895, + 99451.07278195309, + null, + 99272.0781529895, + 99497.45055468047, + null, + 97965.80143681738, + 97941.62052389975, + null, + 97965.80143681738, + 98042.89559128795, + null, + 97965.80143681738, + 97252.23165797428, + null, + 97965.80143681738, + 97256.71452773576, + null, + 97965.80143681738, + 97717.6450930688, + null, + 98982.5031332364, + 98999.07214531254, + null, + 98982.5031332364, + 98973.05295831346, + null, + 98982.5031332364, + 99054.82425526633, + null, + 98027.13708713652, + 98044.04752415298, + null, + 98027.13708713652, + 97958.60518554217, + null, + 97615.38809747441, + 97684.02089780879, + null, + 97615.38809747441, + 97530.79165170861, + null, + 97615.38809747441, + 97661.53871495918, + null, + 97615.38809747441, + 97082.40295944159, + null, + 97503.33387121037, + 97256.71452773576, + null, + 97503.33387121037, + 97355.44513416784, + null, + 97503.33387121037, + 97152.47967070663, + null, + 97503.33387121037, + 97551.97133100245, + null, + 97503.33387121037, + 97406.15468225554, + null, + 97503.33387121037, + 96899.77531401117, + null, + 97503.33387121037, + 97488.50879118062, + null, + 97503.33387121037, + 97695.66405931095, + null, + 97503.33387121037, + 97252.23165797428, + null, + 97503.33387121037, + 97133.66523509301, + null, + 97503.33387121037, + 97717.6450930688, + null, + 97503.33387121037, + 97654.87379319927, + null, + 97752.58113868252, + 97567.76393513489, + null, + 97752.58113868252, + 97515.78251525074, + null, + 98136.58032128063, + 98015.71454165311, + null, + 98136.58032128063, + 98011.00513967639, + null, + 98061.10715277967, + 97926.2588824606, + null, + 98061.10715277967, + 98011.29610271553, + null, + 98614.1806245494, + 98685.42661265582, + null, + 98136.20709255511, + 98569.01114962301, + null, + 98136.20709255511, + 98455.53829158633, + null, + 97999.91203126067, + 98168.86432508277, + null, + 97999.91203126067, + 98182.35396401546, + null, + 97958.47457130344, + 98033.33645324146, + null, + 98009.09509648604, + 98122.06197821422, + null, + 98009.09509648604, + 98145.7408507303, + null, + 97850.60195378115, + 97958.45417367462, + null, + 97850.60195378115, + 97944.8447446344, + null, + 97850.60195378115, + 97976.78427151311, + null, + 97850.60195378115, + 98064.3325515416, + null, + 97850.60195378115, + 98166.05557341201, + null, + 97850.60195378115, + 97668.12360152378, + null, + 98005.5574452993, + 98143.58155422434, + null, + 98005.5574452993, + 98079.41947586637, + null, + 97617.39505268811, + 97776.72898296927, + null, + 97776.72898296927, + 97816.29128765412, + null, + 97623.61756268641, + 97776.72898296927, + null, + 97776.72898296927, + 97891.037149568, + null, + 97642.36452938811, + 97776.72898296927, + null, + 97499.04801278567, + 97776.72898296927, + null, + 98631.78626191251, + 98917.96441057288, + null, + 98631.78626191251, + 98266.1684006728, + null, + 99140.68926056154, + 99467.37211095681, + null, + 99140.68926056154, + 99465.10355574, + null, + 99140.68926056154, + 99274.13613058651, + null, + 98536.86418508874, + 98616.56911567338, + null, + 98536.86418508874, + 98560.90805367962, + null, + 98536.86418508874, + 98558.38609458414, + null, + 98910.03636312029, + 98880.98424546431, + null, + 98910.03636312029, + 98866.71537147863, + null, + 100242.68992519718, + 100397.5383419908, + null, + 100242.68992519718, + 100402.68978541685, + null, + 100242.68992519718, + 100405.17286216993, + null, + 100242.68992519718, + 100061.66712015377, + null, + 100242.68992519718, + 100531.61939659539, + null, + 100242.68992519718, + 100404.30916741672, + null, + 100242.68992519718, + 100319.7606909308, + null, + 100242.68992519718, + 100407.52446892252, + null, + 100242.68992519718, + 100377.95870123856, + null, + 100242.68992519718, + 100091.88539430087, + null, + 100242.68992519718, + 100272.25022775182, + null, + 100242.68992519718, + 100099.74666749846, + null, + 100242.68992519718, + 100436.44960338628, + null, + 100242.68992519718, + 100341.95706435903, + null, + 100242.68992519718, + 100063.71730651654, + null, + 97891.04268537596, + 97661.53871495918, + null, + 97891.04268537596, + 97684.02089780879, + null, + 97891.04268537596, + 97038.13042712578, + null, + 97891.04268537596, + 97082.40295944159, + null, + 99023.62442100499, + 99128.65672613026, + null, + 99023.62442100499, + 99086.92050953522, + null, + 98951.56237964176, + 98854.21422872371, + null, + 98742.84185261693, + 98753.69995678449, + null, + 98636.11447862479, + 98518.94253675062, + null, + 98636.11447862479, + 98539.2421167469, + null, + 98636.11447862479, + 98549.21922950738, + null, + 98636.11447862479, + 98660.85685852663, + null, + 98715.24476448026, + 98518.94253675062, + null, + 98700.92429371181, + 98518.94253675062, + null, + 98700.92429371181, + 98707.72105670594, + null, + 98700.92429371181, + 98674.46581814122, + null, + 98641.93221348678, + 98203.0854152399, + null, + 98641.93221348678, + 98338.92014174488, + null, + 98641.93221348678, + 98978.20058631645, + null, + 98641.93221348678, + 98777.20226620481, + null, + 98583.13027911846, + 98203.0854152399, + null, + 98583.13027911846, + 98593.35045327418, + null, + 99072.54185715798, + 98858.43542229797, + null, + 99072.54185715798, + 99194.76613677801, + null, + 99072.54185715798, + 99238.598665245, + null, + 99135.47449879821, + 99141.45631430278, + null, + 99135.47449879821, + 99134.6825716299, + null, + 99135.47449879821, + 99094.27600200707, + null, + 97232.70911561699, + 96778.97067219901, + null, + 97232.70911561699, + 96774.27151536841, + null, + 98615.37677009653, + 98811.10588893853, + null, + 98615.37677009653, + 98843.48167264217, + null, + 98615.37677009653, + 98657.83374209405, + null, + 98615.37677009653, + 98842.07415652029, + null, + 98615.37677009653, + 98808.61446596768, + null, + 98917.96441057288, + 98634.55621819719, + null, + 98434.35971075694, + 98331.12197959317, + null, + 97681.16946907644, + 97152.47967070663, + null, + 97681.16946907644, + 97133.66523509301, + null, + 97681.16946907644, + 96974.21051137756, + null, + 97681.16946907644, + 97630.01658930292, + null, + 96856.72362255462, + 96729.15577103519, + null, + 96856.72362255462, + 96683.62819879764, + null, + 96856.72362255462, + 96749.40914201127, + null, + 96856.72362255462, + 96427.63029291548, + null, + 96856.72362255462, + 96556.50208945356, + null, + 96856.72362255462, + 96476.47729265835, + null, + 96856.72362255462, + 96690.58990713069, + null, + 96856.72362255462, + 96682.63202971622, + null, + 96856.72362255462, + 96653.2046434958, + null, + 96856.72362255462, + 96758.39730707722, + null, + 96856.72362255462, + 96298.39834593558, + null, + 96856.72362255462, + 96619.23739357965, + null, + 96856.72362255462, + 96582.497731417, + null, + 96856.72362255462, + 96823.69736253725, + null, + 96856.72362255462, + 97082.40295944159, + null, + 98831.79765712937, + 98838.92697965828, + null, + 98831.79765712937, + 98813.35123913873, + null, + 98831.79765712937, + 98939.02464143044, + null, + 98438.58130728804, + 98015.71454165311, + null, + 98438.58130728804, + 98011.00513967639, + null, + 99371.02994235742, + 99680.868715288, + null, + 99371.02994235742, + 99638.52780788013, + null, + 99231.0427929239, + 99101.32720644573, + null, + 99676.63268184493, + 99963.33470263422, + null, + 98900.44369968983, + 98569.01114962301, + null, + 98900.44369968983, + 98455.53829158633, + null, + 98900.44369968983, + 98861.65395145089, + null, + 98900.44369968983, + 98776.13812199206, + null, + 98900.44369968983, + 99095.76812778092, + null, + 99700.42917263086, + 100018.2529981147, + null, + 99700.42917263086, + 99900.62820788269, + null, + 98426.5533743314, + 98521.7351726817, + null, + 98426.5533743314, + 97028.21718236667, + null, + 98426.5533743314, + 98519.99346824022, + null, + 98426.5533743314, + 98584.58084122544, + null, + 99776.94011289947, + 100138.75423323698, + null, + 99776.94011289947, + 100090.19575634002, + null, + 98899.60200925548, + 98926.99585752713, + null, + 98899.60200925548, + 99231.54971618211, + null, + 98899.60200925548, + 98725.93395914823, + null, + 98899.60200925548, + 98302.08638915663, + null, + 98899.60200925548, + 99114.81760073986, + null, + 98899.60200925548, + 99045.63820710068, + null, + 98899.60200925548, + 99468.37618059154, + null, + 98899.60200925548, + 99177.3613555299, + null, + 98899.60200925548, + 97943.74694094929, + null, + 98899.60200925548, + 98988.53553480796, + null, + 98899.60200925548, + 98629.06194375621, + null, + 100154.96563673523, + 100522.9307233778, + null, + 100154.96563673523, + 100464.55461316847, + null, + 100154.96563673523, + 100449.40777875896, + null, + 100154.96563673523, + 100495.63241925946, + null, + 100154.96563673523, + 100576.36749710432, + null, + 100154.96563673523, + 100455.6413624251, + null, + 100154.96563673523, + 100525.73188351096, + null, + 100154.96563673523, + 100351.79368494135, + null, + 100154.96563673523, + 100476.8920067561, + null, + 100154.96563673523, + 100427.28950578252, + null, + 98520.33361422195, + 98769.78629555774, + null, + 98520.33361422195, + 98770.78359572044, + null, + 98520.33361422195, + 98068.38917637721, + null, + 98520.33361422195, + 98746.9346100943, + null, + 97545.38850460328, + 98520.33361422195, + null, + 98520.33361422195, + 98699.80357689559, + null, + 98520.33361422195, + 98884.47395865238, + null, + 97434.01515339047, + 98520.33361422195, + null, + 98520.33361422195, + 98702.11362056104, + null, + 98520.33361422195, + 98826.116121155, + null, + 98520.33361422195, + 98273.0404411526, + null, + 98520.33361422195, + 98799.14209262622, + null, + 98520.33361422195, + 98725.28103778043, + null, + 98520.33361422195, + 98787.95269882937, + null, + 98367.5384870807, + 98129.7525732422, + null, + 98367.5384870807, + 98403.21551613676, + null, + 98367.5384870807, + 98151.80634944019, + null, + 98334.70594223429, + 98015.71454165311, + null, + 98334.70594223429, + 98011.00513967639, + null, + 98691.85046989784, + 98569.01114962301, + null, + 98691.85046989784, + 98455.53829158633, + null, + 97255.41454495481, + 97189.75008136328, + null, + 97313.7618367065, + 97327.96341535875, + null, + 97296.61777493556, + 97292.96960541717, + null, + 97296.61777493556, + 97276.7637530654, + null, + 96665.07370474232, + 96579.02120154037, + null, + 96665.07370474232, + 96667.30159934703, + null, + 96665.07370474232, + 96523.83444580324, + null, + 96665.07370474232, + 96319.13173343345, + null, + 96665.07370474232, + 96601.08098118886, + null, + 96665.07370474232, + 96236.40087597791, + null, + 96665.07370474232, + 96316.94696925921, + null, + 96859.96292458837, + 96907.29475216444, + null, + 96859.96292458837, + 96790.16254788224, + null, + 96859.96292458837, + 96760.16114880143, + null, + 96859.96292458837, + 96793.1547839298, + null, + 96859.96292458837, + 96842.40378280648, + null, + 96859.96292458837, + 96818.91536222614, + null, + 96355.34401319342, + 96859.96292458837, + null, + 98321.87992748909, + 98299.94934348867, + null, + 98321.87992748909, + 98461.43619215692, + null, + 98321.87992748909, + 98969.8900532446, + null, + 98321.87992748909, + 98952.25912959375, + null, + 98321.87992748909, + 98580.65213422495, + null, + 97306.68660394431, + 97182.47078555363, + null, + 97182.47078555363, + 97141.36470938755, + null, + 96931.14707892697, + 97182.47078555363, + null, + 97884.83964830039, + 98129.7525732422, + null, + 97884.83964830039, + 98044.04752415298, + null, + 97884.83964830039, + 98151.80634944019, + null, + 97884.83964830039, + 98095.02656369311, + null, + 97540.60877193058, + 97617.95626612005, + null, + 97540.60877193058, + 97665.4420007734, + null, + 97540.60877193058, + 97481.78136987441, + null, + 97276.55612119116, + 97127.93819900935, + null, + 97276.55612119116, + 97221.84975595506, + null, + 97459.95104458535, + 97516.68785216649, + null, + 97459.95104458535, + 97585.7108158271, + null, + 97893.0352520524, + 98338.92014174488, + null, + 97893.0352520524, + 97957.26827753473, + null, + 97962.17985493861, + 98518.94253675062, + null, + 97962.17985493861, + 97968.93352559829, + null, + 97344.09093533971, + 97264.96842755843, + null, + 97617.39505268811, + 98205.86697164566, + null, + 98205.86697164566, + 98299.92048938914, + null, + 98205.86697164566, + 99305.95497196195, + null, + 97623.61756268641, + 98205.86697164566, + null, + 93644.68272986174, + 93512.0665150006, + null, + 93644.68272986174, + 93468.51530246586, + null, + 93644.68272986174, + 91029.6718792886, + null, + 93644.68272986174, + 93426.45832585903, + null, + 93644.68272986174, + 91037.1098997176, + null, + 98101.62417688777, + 98242.79590727984, + null, + 98101.62417688777, + 98725.93395914823, + null, + 98271.36712487994, + 99088.98463223837, + null, + 97452.24353701598, + 97462.89725909327, + null, + 97452.24353701598, + 97456.2056098314, + null, + 98361.52070775314, + 98266.1684006728, + null, + 98615.37677009653, + 98361.52070775314, + null, + 98361.52070775314, + 98192.76039404483, + null, + 98361.52070775314, + 98541.0584592708, + null, + 98361.52070775314, + 98433.14621035084, + null, + 98361.52070775314, + 98477.429727746, + null, + 98361.52070775314, + 98538.82780358141, + null, + 98361.52070775314, + 98375.01487679547, + null, + 98361.52070775314, + 98416.20709657238, + null, + 98361.52070775314, + 98325.44484999502, + null, + 98361.52070775314, + 98166.22543913256, + null, + 98361.52070775314, + 98375.97684548568, + null, + 98361.52070775314, + 98682.66165069364, + null, + 98917.96441057288, + 98361.52070775314, + null, + 98361.52070775314, + 98525.56000149965, + null, + 98361.52070775314, + 98534.19792713977, + null, + 98361.52070775314, + 98503.47469608205, + null, + 98361.52070775314, + 98474.2557014724, + null, + 98166.8451977046, + 98266.1684006728, + null, + 98166.8451977046, + 98279.5985168257, + null, + 98166.8451977046, + 98541.0584592708, + null, + 98166.8451977046, + 98325.44484999502, + null, + 98166.8451977046, + 98682.66165069364, + null, + 97487.35358808235, + 97624.27677318298, + null, + 97647.87367032644, + 97802.02757327574, + null, + 97647.87367032644, + 97742.78747464505, + null, + 97647.87367032644, + 97756.40467231974, + null, + 97647.87367032644, + 97757.15441742557, + null, + 97647.87367032644, + 97763.11112414948, + null, + 98497.56819029221, + 99009.30827088827, + null, + 98497.56819029221, + 98968.59244384883, + null, + 98497.56819029221, + 98993.06721654031, + null, + 98497.56819029221, + 99007.66770283102, + null, + 98497.56819029221, + 98982.44152343833, + null, + 97393.78304664446, + 97343.47929912621, + null, + 97502.76078478833, + 97632.86870117598, + null, + 97502.76078478833, + 97548.50753261574, + null, + 97502.76078478833, + 97550.14905081774, + null, + 97564.08079360449, + 97702.15796126818, + null, + 97564.08079360449, + 97668.33495977538, + null, + 97564.08079360449, + 97591.06376324758, + null, + 97516.18869947606, + 97578.69930046126, + null, + 97736.81995700866, + 97852.61077277781, + null, + 97736.81995700866, + 97880.34737144559, + null, + 97736.81995700866, + 97861.94027265099, + null, + 97736.81995700866, + 97853.43014004357, + null, + 97736.81995700866, + 97905.97332804937, + null, + 97446.32329700516, + 97511.90340028529, + null, + 97446.32329700516, + 97451.31724560489, + null, + 98582.527096305, + 98569.01114962301, + null, + 98582.527096305, + 98455.53829158633, + null, + 98582.527096305, + 98861.65395145089, + null, + 98582.527096305, + 98776.13812199206, + null, + 97809.54483551205, + 97185.1808281155, + null, + 98878.34647466309, + 98518.94253675062, + null, + 98878.34647466309, + 99037.5226338215, + null, + 99154.02606674639, + 99544.7067431413, + null, + 98776.08147395353, + 99154.02606674639, + null, + 99154.02606674639, + 99185.65099595927, + null, + 99154.02606674639, + 98975.4583568785, + null, + 99154.02606674639, + 99294.3343501885, + null, + 99154.02606674639, + 99287.0655957827, + null, + 98916.08043593282, + 99154.02606674639, + null, + 99154.02606674639, + 99168.38311213651, + null, + 98881.20399257346, + 99154.02606674639, + null, + 98838.01226486915, + 99154.02606674639, + null, + 98845.6917714939, + 99154.02606674639, + null, + 98873.6590998779, + 99154.02606674639, + null, + 100490.49130040826, + 100727.75513265263, + null, + 100490.49130040826, + 100750.1025781271, + null, + 100490.49130040826, + 100687.04963334247, + null, + 100490.49130040826, + 100602.82413484645, + null, + 100490.49130040826, + 100640.07222561758, + null, + 100142.88953715774, + 100255.5576926834, + null, + 99388.84212708821, + 98969.8900532446, + null, + 99388.84212708821, + 99740.00115531619, + null, + 100563.74448489815, + 100701.21851963115, + null, + 100563.74448489815, + 100775.90866047998, + null, + 100563.74448489815, + 100801.37971775861, + null, + 100563.74448489815, + 100846.7632036239, + null, + 100563.74448489815, + 100839.18720467621, + null, + 100746.00755669444, + 101317.04585495421, + null, + 100746.00755669444, + 100901.78826113316, + null, + 97652.12794157442, + 97684.02089780879, + null, + 97652.12794157442, + 97229.1829487141, + null, + 97652.12794157442, + 97038.13042712578, + null, + 97652.12794157442, + 97082.40295944159, + null, + 97864.25906949551, + 97839.59876865869, + null, + 97864.25906949551, + 97910.66450289705, + null, + 97864.25906949551, + 98039.3188920253, + null, + 97864.25906949551, + 97934.20656019785, + null, + 97864.25906949551, + 97891.53141790035, + null, + 97864.25906949551, + 98026.30394341591, + null, + 97864.25906949551, + 98087.87224633229, + null, + 97864.25906949551, + 97950.34128723628, + null, + 97864.25906949551, + 98003.43954283377, + null, + 97864.25906949551, + 97956.48157305346, + null, + 97864.25906949551, + 98065.65357283973, + null, + 97864.25906949551, + 98003.37029682676, + null, + 97864.25906949551, + 98058.47170369046, + null, + 97864.25906949551, + 98005.49620436512, + null, + 97864.25906949551, + 96534.17654783507, + null, + 99227.43848031209, + 99320.77326235635, + null, + 98657.9373151273, + 98557.66658610443, + null, + 98047.59460307116, + 98082.7411356652, + null, + 98047.59460307116, + 98154.79026285015, + null, + 98047.59460307116, + 98056.63600860414, + null, + 98808.2037529869, + 98887.5178660438, + null, + 98808.2037529869, + 98858.33028971287, + null, + 98808.2037529869, + 98978.20058631645, + null, + 98808.2037529869, + 98814.80490784877, + null, + 98808.2037529869, + 98801.02414722591, + null, + 98808.2037529869, + 98608.15016492098, + null, + 98808.2037529869, + 98777.20226620481, + null, + 98641.99704060325, + 98561.74883562999, + null, + 98573.86688152544, + 98550.27263705501, + null, + 98573.86688152544, + 98534.96076552787, + null, + 98573.86688152544, + 98475.56960112561, + null, + 97453.56935622763, + 98037.7546833775, + null, + 97306.68660394431, + 98037.7546833775, + null, + 98037.7546833775, + 98380.41809928608, + null, + 98037.7546833775, + 98634.55621819719, + null, + 98037.7546833775, + 98448.21242713043, + null, + 98238.09327133199, + 98634.55621819719, + null, + 98454.91999809204, + 98323.4492928728, + null, + 98454.91999809204, + 98381.35948380831, + null, + 98454.91999809204, + 98387.01183578208, + null, + 98622.72131256308, + 98680.67319796431, + null, + 98622.72131256308, + 98762.74855690046, + null, + 99683.02342130439, + 100061.66712015377, + null, + 99683.02342130439, + 100091.88539430087, + null, + 99683.02342130439, + 99810.55530468805, + null, + 99683.02342130439, + 100099.74666749846, + null, + 99683.02342130439, + 100063.71730651654, + null, + 98748.13851273438, + 98806.04554028373, + null, + 98748.13851273438, + 98848.42698144261, + null, + 98736.6487431001, + 98857.8438649981, + null, + 98736.6487431001, + 98852.46109769984, + null, + 98736.6487431001, + 98865.24822179487, + null, + 98736.6487431001, + 98812.89064703413, + null, + 98591.3906492825, + 98685.42661265582, + null, + 98735.88204679007, + 98862.90020767787, + null, + 98735.88204679007, + 98912.2032568487, + null, + 98735.88204679007, + 98848.37039474472, + null, + 98760.83345788409, + 98927.63991134016, + null, + 98669.98695044409, + 98871.604415136, + null, + 98554.81272175781, + 98590.82216815953, + null, + 98551.32201482294, + 98580.43638270833, + null, + 98537.48831459216, + 98576.02995710363, + null, + 98994.10656357431, + 99183.69321269826, + null, + 98994.10656357431, + 99184.45845454505, + null, + 98994.10656357431, + 99203.41993384891, + null, + 98994.10656357431, + 99138.15878651995, + null, + 98994.10656357431, + 99087.05635140055, + null, + 98994.10656357431, + 99077.1384967604, + null, + 98994.10656357431, + 99232.24004132024, + null, + 98994.10656357431, + 99125.68851110415, + null, + 99119.57616554244, + 99251.01558609436, + null, + 99119.57616554244, + 99179.65212891849, + null, + 99119.57616554244, + 99256.69258645491, + null, + 99119.57616554244, + 99310.08167305635, + null, + 99119.57616554244, + 99356.00094070661, + null, + 99119.57616554244, + 99276.65181129325, + null, + 99119.57616554244, + 99384.78207485296, + null, + 99119.57616554244, + 99335.96076485507, + null, + 99119.57616554244, + 99296.20265730387, + null, + 99119.57616554244, + 99213.97061960657, + null, + 97344.39651735617, + 96851.49702075154, + null, + 97344.39651735617, + 97028.21718236667, + null, + 97344.39651735617, + 96923.14998898802, + null, + 97344.39651735617, + 96935.43558121054, + null, + 97344.39651735617, + 96876.0341655546, + null, + 98722.34383571171, + 98964.38050539838, + null, + 98722.34383571171, + 98965.82200587254, + null, + 98882.4958894141, + 99044.8950183139, + null, + 98882.4958894141, + 99100.15481263316, + null, + 98882.4958894141, + 99075.39447626255, + null, + 98882.4958894141, + 99003.3483507825, + null, + 98882.4958894141, + 98925.76540962922, + null, + 98882.4958894141, + 99020.01817893048, + null, + 97303.13866203713, + 97407.28894967055, + null, + 97303.13866203713, + 96932.45750407256, + null, + 96299.26984037684, + 97303.13866203713, + null, + 96302.24669832372, + 96098.29296669562, + null, + 96302.24669832372, + 95976.09403074846, + null, + 96302.24669832372, + 95634.67329415417, + null, + 96302.24669832372, + 96042.6556096919, + null, + 96302.24669832372, + 95604.78437746258, + null, + 96302.24669832372, + 95769.4273404822, + null, + 96302.24669832372, + 95655.13837228577, + null, + 96302.24669832372, + 95662.78785902, + null, + 96302.24669832372, + 95660.56955803781, + null, + 96302.24669832372, + 95677.28372527665, + null, + 96302.24669832372, + 95776.62332951289, + null, + 96302.24669832372, + 95587.1461297883, + null, + 98647.5348287252, + 98812.20854097081, + null, + 98608.5215316511, + 98743.59086221435, + null, + 98608.5215316511, + 98698.0390158326, + null, + 98222.80841969991, + 97747.21900755091, + null, + 98222.80841969991, + 98395.64092112977, + null, + 98819.65784093091, + 99088.98463223837, + null, + 99036.66961313797, + 99111.66394753019, + null, + 99036.66961313797, + 99274.85653841426, + null, + 99036.66961313797, + 99114.81760073986, + null, + 99036.66961313797, + 99231.54971618211, + null, + 98624.20331564605, + 98707.12897134296, + null, + 98624.20331564605, + 98672.40559262648, + null, + 98624.20331564605, + 98740.33441798067, + null, + 97819.31095483244, + 97915.07564498202, + null, + 97819.31095483244, + 97256.71452773576, + null, + 97819.31095483244, + 97854.3706268973, + null, + 97819.31095483244, + 97252.23165797428, + null, + 97819.31095483244, + 97654.87379319927, + null, + 97721.18147869087, + 97152.47967070663, + null, + 97721.18147869087, + 97695.66405931095, + null, + 97721.18147869087, + 97133.66523509301, + null, + 97721.18147869087, + 97779.51858962477, + null, + 98271.70807917252, + 98015.71454165311, + null, + 98271.70807917252, + 98011.00513967639, + null, + 98519.86918764931, + 98580.6830473668, + null, + 98606.63667538292, + 98706.46663611768, + null, + 98519.39123710812, + 98640.08887323189, + null, + 98765.77024442171, + 98958.9528701298, + null, + 98765.77024442171, + 98946.07821880339, + null, + 98568.58464013341, + 98660.70375119649, + null, + 98724.09688274346, + 98862.90020767787, + null, + 98724.09688274346, + 98912.2032568487, + null, + 98724.09688274346, + 98848.37039474472, + null, + 98551.33786774045, + 98701.649867651, + null, + 98642.19574069705, + 98748.18261153143, + null, + 97563.51909740941, + 97931.34716549548, + null, + 97598.41715003968, + 97931.34716549548, + null, + 97764.93718471118, + 97931.34716549548, + null, + 97687.97327166176, + 97931.34716549548, + null, + 98666.49334653927, + 98769.34553580024, + null, + 98666.49334653927, + 98811.9140649854, + null, + 98666.49334653927, + 98763.92551654496, + null, + 98838.9801057053, + 98943.77117264194, + null, + 98838.9801057053, + 98920.62609439224, + null, + 98838.9801057053, + 98965.91211265045, + null, + 98838.9801057053, + 99052.24477125063, + null, + 98838.9801057053, + 99044.50329098791, + null, + 98827.92913925355, + 99032.0128001208, + null, + 98827.92913925355, + 99017.68748657264, + null, + 98790.2159527499, + 98920.27979214246, + null, + 98790.2159527499, + 98997.79724083436, + null, + 98181.72232625872, + 97903.23099241641, + null, + 98181.72232625872, + 98048.50795422566, + null, + 98063.19422735604, + 97903.23099241641, + null, + 98063.19422735604, + 98136.90529710805, + null, + 98063.19422735604, + 98100.62435260214, + null, + 98063.19422735604, + 98171.72774331711, + null, + 98063.19422735604, + 97957.26827753473, + null, + 98063.19422735604, + 98048.50795422566, + null, + 98063.19422735604, + 98063.40476674002, + null, + 98063.19422735604, + 97962.8529627224, + null, + 98063.19422735604, + 97820.00767848469, + null, + 98475.91698744615, + 98518.94253675062, + null, + 98813.72618994876, + 99088.98463223837, + null, + 98846.89766234448, + 99088.98463223837, + null, + 97228.42625405909, + 97088.36103582702, + null, + 97228.42625405909, + 97132.34495519406, + null, + 97545.38850460328, + 97532.22883965746, + null, + 97409.25368271414, + 97532.22883965746, + null, + 97532.22883965746, + 98068.38917637721, + null, + 97234.04346137235, + 97532.22883965746, + null, + 97272.0006070915, + 97104.45756857881, + null, + 96925.47458412843, + 96619.58665232721, + null, + 96925.47458412843, + 96664.92235510008, + null, + 96925.47458412843, + 96821.97556877533, + null, + 97092.16772009524, + 96897.6332798164, + null, + 97209.90565041362, + 96990.68878793032, + null, + 97856.84020013195, + 97903.23099241641, + null, + 97856.84020013195, + 97838.15687650762, + null, + 97856.84020013195, + 97957.26827753473, + null, + 97856.84020013195, + 97840.98673438343, + null, + 97856.84020013195, + 98048.50795422566, + null, + 97856.84020013195, + 97962.8529627224, + null, + 97856.84020013195, + 97820.00767848469, + null, + 97856.84020013195, + 97860.03824334558, + null, + 97856.84020013195, + 98113.9638494234, + null, + 98009.61286792412, + 98518.94253675062, + null, + 97211.79938472387, + 97039.67013502431, + null, + 97045.9347960569, + 96315.39006631782, + null, + 96299.26984037684, + 97045.9347960569, + null, + 97662.82472168292, + 97045.9347960569, + null, + 96871.14124722035, + 96492.5609236822, + null, + 96871.14124722035, + 96615.15999672425, + null, + 96871.14124722035, + 96528.33063667924, + null, + 96871.14124722035, + 96614.04896619167, + null, + 97023.36540561469, + 96775.60254599106, + null, + 97023.36540561469, + 97020.82930599325, + null, + 97023.36540561469, + 97021.39491967497, + null, + 97023.36540561469, + 97016.71696412006, + null, + 97023.36540561469, + 96785.05589602233, + null, + 97023.36540561469, + 96979.82022752479, + null, + 97023.36540561469, + 96813.96810061809, + null, + 97191.67156979971, + 97041.31823044339, + null, + 97414.64038417542, + 97515.78251525074, + null, + 97414.64038417542, + 97567.76393513489, + null, + 96885.06814180473, + 96562.25821519687, + null, + 96885.06814180473, + 96460.68693276949, + null, + 96885.06814180473, + 96650.20758230845, + null, + 96885.06814180473, + 96694.63413088757, + null, + 97914.23819876518, + 98534.36395672044, + null, + 97914.23819876518, + 97825.46025079563, + null, + 97914.23819876518, + 97882.40005223262, + null, + 96805.4528033362, + 96674.56656020731, + null, + 96805.4528033362, + 96567.52080584335, + null, + 96805.4528033362, + 96476.47729265835, + null, + 96805.4528033362, + 96473.61402662427, + null, + 96805.4528033362, + 96563.17797498858, + null, + 96805.4528033362, + 96487.03219794935, + null, + 96805.4528033362, + 96606.19908924971, + null, + 96805.4528033362, + 96745.48639039516, + null, + 96805.4528033362, + 96690.58990713069, + null, + 96805.4528033362, + 97229.1829487141, + null, + 96805.4528033362, + 96395.4047179211, + null, + 96805.4528033362, + 97038.13042712578, + null, + 96805.4528033362, + 97082.40295944159, + null, + 97277.04466695724, + 97145.64717006857, + null, + 97953.10373989804, + 97826.8631013778, + null, + 97953.10373989804, + 98455.53829158633, + null, + 97109.44347958003, + 96850.70696827324, + null, + 97109.44347958003, + 96914.37666890645, + null, + 96731.40431617344, + 96353.01468538467, + null, + 96731.40431617344, + 96501.80370280289, + null, + 96731.40431617344, + 96513.42435181382, + null, + 96731.40431617344, + 96529.07020886255, + null, + 98037.69686647393, + 97870.69758646561, + null, + 98037.69686647393, + 97980.44692218993, + null, + 98037.69686647393, + 98608.15016492098, + null, + 96844.05757802, + 96494.53387742698, + null, + 96844.05757802, + 96671.430711433, + null, + 96844.05757802, + 96761.68518269938, + null, + 96844.05757802, + 96719.41280916671, + null, + 96844.05757802, + 96550.26834448069, + null, + 98053.21280174737, + 97891.037149568, + null, + 97617.39505268811, + 98053.21280174737, + null, + 98053.21280174737, + 97918.02611502612, + null, + 98053.21280174737, + 98643.83720148244, + null, + 98053.21280174737, + 97960.90157310556, + null, + 98053.21280174737, + 98153.28211258577, + null, + 98053.21280174737, + 98122.79057084915, + null, + 98053.21280174737, + 98078.02055378513, + null, + 98053.21280174737, + 97988.49066071308, + null, + 98053.21280174737, + 98115.16651510971, + null, + 98053.21280174737, + 98104.82634322677, + null, + 98053.21280174737, + 98205.6244883252, + null, + 98053.21280174737, + 98133.92087625408, + null, + 98053.21280174737, + 98052.39180433995, + null, + 98053.21280174737, + 98186.92871996413, + null, + 98053.21280174737, + 98222.49612544493, + null, + 98053.21280174737, + 98264.92512138016, + null, + 98053.21280174737, + 98221.83205647097, + null, + 97623.61756268641, + 98053.21280174737, + null, + 98053.21280174737, + 98066.64128360373, + null, + 98053.21280174737, + 98155.19067500987, + null, + 98053.21280174737, + 98034.10447834089, + null, + 98053.21280174737, + 98200.28996843542, + null, + 98053.21280174737, + 98087.54079911893, + null, + 98053.21280174737, + 97990.12664870804, + null, + 98053.21280174737, + 98120.04312787396, + null, + 98053.21280174737, + 98163.7446629629, + null, + 98891.2416273708, + 98053.21280174737, + null, + 98053.21280174737, + 97974.17413359083, + null, + 98053.21280174737, + 98088.95408705338, + null, + 98053.21280174737, + 98156.57677246204, + null, + 97499.04801278567, + 98053.21280174737, + null, + 97642.36452938811, + 98053.21280174737, + null, + 98053.21280174737, + 98080.18500654254, + null, + 97565.17353076243, + 97487.01075638118, + null, + 96943.34146960913, + 96789.66261350742, + null, + 96943.34146960913, + 96730.73981449436, + null, + 96943.34146960913, + 96669.89538879196, + null, + 97320.6256117, + 97293.59562630084, + null, + 97320.6256117, + 97256.71452773576, + null, + 97320.6256117, + 97252.23165797428, + null, + 97320.6256117, + 97174.16332095799, + null, + 96737.12013794533, + 98015.71454165311, + null, + 96737.12013794533, + 98011.00513967639, + null, + 96149.9240314162, + 96017.05902387391, + null, + 96149.9240314162, + 95880.10041446517, + null, + 96149.9240314162, + 96042.6924533272, + null, + 96149.9240314162, + 95941.86961688883, + null, + 96149.9240314162, + 95961.65877852618, + null, + 97723.43671189145, + 97833.49395811494, + null, + 97723.43671189145, + 97769.6545141948, + null, + 97723.43671189145, + 97689.04199438865, + null, + 97723.43671189145, + 97742.3298744743, + null, + 97723.43671189145, + 97690.73748476274, + null, + 97723.43671189145, + 97719.11017016157, + null, + 97723.43671189145, + 97819.75167904481, + null, + 97723.43671189145, + 97794.19742949636, + null, + 97723.43671189145, + 97784.48324520058, + null, + 97723.43671189145, + 97674.59282702129, + null, + 97723.43671189145, + 97879.59554121646, + null, + 97537.88311195365, + 97385.40579970718, + null, + 97408.99246023723, + 97307.86343808395, + null, + 97408.99246023723, + 97387.94072486232, + null, + 99265.87966805445, + 99393.56887338916, + null, + 99265.87966805445, + 99259.21726110313, + null, + 99265.87966805445, + 99247.96158297804, + null, + 99944.07306174988, + 100188.32724919924, + null, + 99944.07306174988, + 100135.68904443846, + null, + 99944.07306174988, + 100098.24757711026, + null, + 99944.07306174988, + 99937.87696465585, + null, + 99944.07306174988, + 99587.48173322152, + null, + 99944.07306174988, + 100206.52451144153, + null, + 99900.64834271275, + 100008.5242363836, + null, + 99900.64834271275, + 100023.04349004387, + null, + 99900.64834271275, + 99915.71669982743, + null, + 99812.21227412489, + 99915.71669982743, + null, + 99420.92430477343, + 99544.7067431413, + null, + 99420.92430477343, + 99634.45747805986, + null, + 99420.92430477343, + 99597.22180864953, + null, + 98838.01226486915, + 99420.92430477343, + null, + 99420.92430477343, + 98975.4583568785, + null, + 99420.92430477343, + 99185.65099595927, + null, + 99420.92430477343, + 99287.0655957827, + null, + 99177.62291174373, + 98643.83720148244, + null, + 99177.62291174373, + 99276.13363968547, + null, + 99488.52585196453, + 99088.98463223837, + null, + 99587.48173322152, + 99418.78774585869, + null, + 99587.48173322152, + 99721.65602004208, + null, + 99587.48173322152, + 99821.52193102303, + null, + 99587.48173322152, + 99782.84167263377, + null, + 99937.87696465585, + 100072.59807186079, + null, + 99937.87696465585, + 100035.70914567317, + null, + 99937.87696465585, + 100138.27133994643, + null, + 99937.87696465585, + 99468.37618059154, + null, + 99937.87696465585, + 100117.7864666539, + null, + 99937.87696465585, + 99740.00115531619, + null, + 99937.87696465585, + 100090.44891664409, + null, + 99937.87696465585, + 100148.86556864316, + null, + 99591.60747183427, + 99465.10355574, + null, + 99591.60747183427, + 99467.37211095681, + null, + 99048.9116417464, + 99244.03843365682, + null, + 99048.9116417464, + 99283.19337789025, + null, + 99048.9116417464, + 99220.99777236252, + null, + 99048.9116417464, + 99230.95664968503, + null, + 99048.9116417464, + 99169.12469268014, + null, + 99048.9116417464, + 98725.93395914823, + null, + 99048.9116417464, + 99164.44549248519, + null, + 99048.9116417464, + 99418.78774585869, + null, + 99048.9116417464, + 97943.74694094929, + null, + 99412.54200822763, + 99607.88973258882, + null, + 96915.07628650902, + 96315.39006631782, + null, + 96915.07628650902, + 96299.4257154321, + null, + 96299.26984037684, + 96915.07628650902, + null, + 99990.2370091159, + 100358.34371105966, + null, + 99990.2370091159, + 100290.3042284984, + null, + 99990.2370091159, + 100340.75858714842, + null, + 101343.89990262453, + 101792.84162073708, + null, + 101343.89990262453, + 101761.83228399587, + null, + 101343.89990262453, + 101728.54900723274, + null, + 101343.89990262453, + 101863.51123341605, + null, + 101343.89990262453, + 101791.94014384845, + null, + 101343.89990262453, + 101799.15202304373, + null, + 101343.89990262453, + 101713.12879362177, + null, + 101343.89990262453, + 101785.2180011013, + null, + 101343.89990262453, + 101729.0076770661, + null, + 101343.89990262453, + 101836.91173085483, + null, + 101343.89990262453, + 101818.8515335007, + null, + 99744.15222602605, + 100033.99626853142, + null, + 99788.15934489542, + 100056.8272847258, + null, + 99889.87039027306, + 100210.20674841575, + null, + 98529.60002690525, + 97076.61983324688, + null, + 98918.42807769222, + 99041.75843858132, + null, + 98918.42807769222, + 98943.79559667868, + null, + 97651.32746016643, + 97845.28481450288, + null, + 97136.55546326986, + 97845.28481450288, + null, + 97605.64203060168, + 97845.28481450288, + null, + 97499.57548817585, + 97845.28481450288, + null, + 97615.00090956, + 97845.28481450288, + null, + 97672.92128722146, + 97845.28481450288, + null, + 99041.95245865517, + 99197.38567357122, + null, + 99041.95245865517, + 99167.98965627975, + null, + 99058.18978821568, + 99277.40202349014, + null, + 99058.18978821568, + 99119.8302296543, + null, + 99058.18978821568, + 99163.87627855373, + null, + 99058.18978821568, + 99243.18112052011, + null, + 99443.36056428892, + 99088.98463223837, + null, + 99938.9075507464, + 100381.5590275909, + null, + 99938.9075507464, + 100259.89095200166, + null, + 99938.9075507464, + 100662.41576920166, + null, + 99938.9075507464, + 100337.12642639093, + null, + 99938.9075507464, + 100250.649651169, + null, + 99938.9075507464, + 100190.16929326992, + null, + 99938.9075507464, + 100223.74470405089, + null, + 99938.9075507464, + 100340.9819908014, + null, + 99938.9075507464, + 100273.38677134522, + null, + 99938.9075507464, + 100527.79988951613, + null, + 99938.9075507464, + 100245.97642650244, + null, + 99938.9075507464, + 100375.27221342435, + null, + 99938.9075507464, + 100149.25456405795, + null, + 99938.9075507464, + 100360.87356998086, + null, + 99938.9075507464, + 100194.58359036756, + null, + 99938.9075507464, + 100264.94556360798, + null, + 99938.9075507464, + 100306.31112448443, + null, + 99938.9075507464, + 100355.36974381156, + null, + 99938.9075507464, + 100212.88630816322, + null, + 99938.9075507464, + 100290.39422073738, + null, + 99938.9075507464, + 100350.59535010663, + null, + 99938.9075507464, + 100165.59976549802, + null, + 99938.9075507464, + 100315.7960592362, + null, + 99938.9075507464, + 100567.69227692556, + null, + 99938.9075507464, + 100536.39347136863, + null, + 99938.9075507464, + 100383.79630149792, + null, + 99938.9075507464, + 100199.17691599797, + null, + 99938.9075507464, + 100338.69278423514, + null, + 99938.9075507464, + 100271.61413440437, + null, + 99938.9075507464, + 100247.40805045809, + null, + 99938.9075507464, + 100338.62291364912, + null, + 99938.9075507464, + 100211.53726164077, + null, + 99938.9075507464, + 100322.38298891425, + null, + 99938.9075507464, + 100100.20675579492, + null, + 99938.9075507464, + 100315.47955652213, + null, + 99938.9075507464, + 100216.33192664117, + null, + 99938.9075507464, + 100305.27486562256, + null, + 98615.37677009653, + 99123.1886578178, + null, + 99123.1886578178, + 98541.0584592708, + null, + 99123.1886578178, + 98682.66165069364, + null, + 98975.4583568785, + 98015.71454165311, + null, + 98975.4583568785, + 98011.00513967639, + null, + 96764.93858259599, + 96639.67658830492, + null, + 96764.93858259599, + 96484.06922913101, + null, + 96764.93858259599, + 96407.77425144732, + null, + 96764.93858259599, + 96477.97537890695, + null, + 96764.93858259599, + 96615.45058048039, + null, + 96764.93858259599, + 96567.52080584335, + null, + 96764.93858259599, + 96476.47729265835, + null, + 96764.93858259599, + 96637.18040938227, + null, + 96764.93858259599, + 96487.03219794935, + null, + 96764.93858259599, + 96445.97001463277, + null, + 96764.93858259599, + 96690.58990713069, + null, + 96764.93858259599, + 96442.19223447616, + null, + 96764.93858259599, + 96513.66255512048, + null, + 96764.93858259599, + 96476.07063939855, + null, + 96764.93858259599, + 96494.88439651101, + null, + 96764.93858259599, + 96530.70788196326, + null, + 96764.93858259599, + 97038.13042712578, + null, + 96764.93858259599, + 97082.40295944159, + null, + 96764.93858259599, + 96552.93796653328, + null, + 96764.93858259599, + 96499.0101680733, + null, + 97558.91318648357, + 97430.88450662757, + null, + 97558.91318648357, + 97388.70330978224, + null, + 97558.91318648357, + 97514.10936096587, + null, + 96152.1057643561, + 96153.0643515696, + null, + 96152.1057643561, + 95992.76643803087, + null, + 98062.51604299857, + 98037.94363845246, + null, + 97964.38553712035, + 97758.7792343351, + null, + 97964.38553712035, + 97924.22096734567, + null, + 98023.44519196717, + 97869.90224058629, + null, + 97561.8035357872, + 97598.62515358592, + null, + 97561.8035357872, + 97562.28816473442, + null, + 97561.8035357872, + 97513.94954233654, + null, + 97561.8035357872, + 97646.31748849346, + null, + 97561.8035357872, + 97641.97081789764, + null, + 97561.8035357872, + 97666.59449828726, + null, + 97561.8035357872, + 97602.85068296298, + null, + 97561.8035357872, + 97598.68612452112, + null, + 97561.8035357872, + 97375.40849798809, + null, + 97561.8035357872, + 97507.23992229323, + null, + 97561.8035357872, + 97525.14675514927, + null, + 97561.8035357872, + 97666.02806304352, + null, + 97482.53862767345, + 97561.8035357872, + null, + 97561.8035357872, + 97423.83529752935, + null, + 97561.8035357872, + 97650.998850365, + null, + 97561.8035357872, + 97694.2160645586, + null, + 97561.8035357872, + 97526.99989056711, + null, + 97561.8035357872, + 97615.33596390781, + null, + 97561.8035357872, + 97568.00795796615, + null, + 97561.8035357872, + 97135.42971177665, + null, + 97561.8035357872, + 97122.97557930264, + null, + 97561.8035357872, + 97280.91341371622, + null, + 97561.8035357872, + 97218.93574565095, + null, + 97561.8035357872, + 97100.77454563488, + null, + 97561.8035357872, + 97387.39945246921, + null, + 97561.8035357872, + 97357.55932487166, + null, + 97561.8035357872, + 97487.47775279515, + null, + 97561.8035357872, + 97360.80913412399, + null, + 97561.8035357872, + 97609.02859822716, + null, + 97561.8035357872, + 97572.83663061078, + null, + 97762.95601633764, + 97327.92623575436, + null, + 97762.95601633764, + 97390.38924442463, + null, + 97762.95601633764, + 97480.31551961288, + null, + 97762.95601633764, + 97371.5537889121, + null, + 97762.95601633764, + 97455.46534428223, + null, + 97698.73432565104, + 97762.95601633764, + null, + 98427.35866005206, + 97762.95601633764, + null, + 98326.83556515438, + 98518.94253675062, + null, + 99016.5581620588, + 98858.43542229797, + null, + 99240.9405426935, + 99592.54688001878, + null, + 99240.9405426935, + 99517.07966370584, + null, + 99240.9405426935, + 99448.41927271156, + null, + 99240.9405426935, + 99589.72130527606, + null, + 99240.9405426935, + 99486.45689499842, + null, + 99240.9405426935, + 99633.35691037332, + null, + 98641.53479851007, + 98310.25317294084, + null, + 98641.53479851007, + 98792.27822179062, + null, + 98641.53479851007, + 98146.26357853966, + null, + 99095.8319111279, + 99298.84335251687, + null, + 99095.8319111279, + 99373.75997603334, + null, + 99642.41138351153, + 99966.96381501803, + null, + 99642.41138351153, + 99846.93713129792, + null, + 88590.85511713462, + 88005.39501412887, + null, + 88590.85511713462, + 91029.6718792886, + null, + 88590.85511713462, + 88221.67985851956, + null, + 88590.85511713462, + 88072.43363114585, + null, + 88590.85511713462, + 88237.96933675258, + null, + 88590.85511713462, + 88133.87820323496, + null, + 88590.85511713462, + 87861.16765307833, + null, + 88590.85511713462, + 88044.20014226538, + null, + 88590.85511713462, + 88015.28821551744, + null, + 88590.85511713462, + 87995.2188458752, + null, + 88590.85511713462, + 87896.16014075337, + null, + 88590.85511713462, + 88048.98798497369, + null, + 88590.85511713462, + 87911.3761076322, + null, + 88590.85511713462, + 88036.32356842181, + null, + 88590.85511713462, + 88065.09753717842, + null, + 88590.85511713462, + 88214.29095123295, + null, + 88590.85511713462, + 87975.3434675614, + null, + 88590.85511713462, + 87949.43781862337, + null, + 88590.85511713462, + 88083.67915939626, + null, + 88590.85511713462, + 88158.44431618885, + null, + 88590.85511713462, + 87948.66838341518, + null, + 88590.85511713462, + 87939.92779797339, + null, + 88590.85511713462, + 88143.70730471626, + null, + 88590.85511713462, + 87928.63944883185, + null, + 88590.85511713462, + 87987.0677224219, + null, + 88590.85511713462, + 88052.04997633191, + null, + 88590.85511713462, + 88073.48466074695, + null, + 88590.85511713462, + 88174.19889504618, + null, + 88590.85511713462, + 88032.3701422123, + null, + 88590.85511713462, + 88091.77158766096, + null, + 88590.85511713462, + 88010.18942416027, + null, + 88590.85511713462, + 88115.8447964154, + null, + 88590.85511713462, + 87883.47843097824, + null, + 88590.85511713462, + 88004.3574220565, + null, + 88590.85511713462, + 87867.93517461464, + null, + 88590.85511713462, + 87061.20940616545, + null, + 88590.85511713462, + 88117.88520562027, + null, + 88590.85511713462, + 87891.6635003915, + null, + 88590.85511713462, + 91037.1098997176, + null, + 88590.85511713462, + 88163.4850022418, + null, + 88590.85511713462, + 88041.55582208642, + null, + 88590.85511713462, + 87995.77155911438, + null, + 88590.85511713462, + 88256.28979169391, + null, + 88590.85511713462, + 87931.70512781639, + null, + 88590.85511713462, + 88089.06754806396, + null, + 88590.85511713462, + 87920.82827675848, + null, + 88590.85511713462, + 88062.01682071644, + null, + 88590.85511713462, + 87950.93430502362, + null, + 88590.85511713462, + 88039.48618979446, + null, + 88590.85511713462, + 87917.14077060764, + null, + 88590.85511713462, + 87875.51543171445, + null, + 88590.85511713462, + 87920.69502777123, + null, + 88590.85511713462, + 88037.67214329758, + null, + 88590.85511713462, + 88053.62636213166, + null, + 88590.85511713462, + 87994.84521056418, + null, + 88590.85511713462, + 88204.37990451731, + null, + 88590.85511713462, + 88198.16168147081, + null, + 88590.85511713462, + 87899.36719419197, + null, + 88590.85511713462, + 87868.04422265603, + null, + 88590.85511713462, + 87756.60468171052, + null, + 88590.85511713462, + 87977.89446006849, + null, + 88590.85511713462, + 88018.06263107814, + null, + 88590.85511713462, + 88175.87859466553, + null, + 88590.85511713462, + 87908.9091473079, + null, + 88590.85511713462, + 88066.92995974339, + null, + 88590.85511713462, + 87947.19715900774, + null, + 88590.85511713462, + 88139.6579294049, + null, + 88590.85511713462, + 87959.87525816729, + null, + 88590.85511713462, + 87893.19707276371, + null, + 88590.85511713462, + 88152.20646040382, + null, + 88590.85511713462, + 88083.14494732753, + null, + 88590.85511713462, + 88230.25871974292, + null, + 88590.85511713462, + 87950.88841137299, + null, + 88590.85511713462, + 88089.31618178032, + null, + 88590.85511713462, + 88005.21804614809, + null, + 88590.85511713462, + 87945.58722002029, + null, + 88590.85511713462, + 88191.87494491128, + null, + 88590.85511713462, + 87898.24283727448, + null, + 88590.85511713462, + 88093.20221250107, + null, + 88590.85511713462, + 88014.37416969781, + null, + 88590.85511713462, + 88132.49377530353, + null, + 88590.85511713462, + 88274.88910994626, + null, + 88590.85511713462, + 88020.02004119602, + null, + 88590.85511713462, + 87977.21260381762, + null, + 88590.85511713462, + 88071.22783884605, + null, + 88590.85511713462, + 87979.30536450844, + null, + 88590.85511713462, + 88132.99064196317, + null, + 88590.85511713462, + 88075.30778368968, + null, + 88590.85511713462, + 87515.23612648762, + null, + 88590.85511713462, + 88112.44158066339, + null, + 88590.85511713462, + 87997.31100720952, + null, + 88590.85511713462, + 88205.36796568194, + null, + 88590.85511713462, + 88244.89577094054, + null, + 88590.85511713462, + 88118.88901387733, + null, + 88590.85511713462, + 88170.02127686414, + null, + 88590.85511713462, + 88122.48677544181, + null, + 88590.85511713462, + 87836.350717135, + null, + 88590.85511713462, + 88188.31541444028, + null, + 88590.85511713462, + 88181.35353825515, + null, + 88590.85511713462, + 88029.75270585327, + null, + 88590.85511713462, + 88055.3210429841, + null, + 88590.85511713462, + 87486.18502347278, + null, + 88590.85511713462, + 88169.49888342613, + null, + 88590.85511713462, + 87912.05340361188, + null, + 88590.85511713462, + 88114.60799674282, + null, + 88590.85511713462, + 88030.32446441583, + null, + 88590.85511713462, + 87988.09892554887, + null, + 88590.85511713462, + 87936.39332619171, + null, + 88590.85511713462, + 88114.46908342814, + null, + 88590.85511713462, + 88116.38592969814, + null, + 88590.85511713462, + 87831.96710060169, + null, + 88590.85511713462, + 87973.10937146156, + null, + 88590.85511713462, + 87997.70702987113, + null, + 88590.85511713462, + 88086.23100935988, + null, + 88590.85511713462, + 87992.90727468063, + null, + 88590.85511713462, + 87971.16697325518, + null, + 88590.85511713462, + 87985.41310963874, + null, + 88590.85511713462, + 88090.43562993355, + null, + 88590.85511713462, + 88143.62371120854, + null, + 88590.85511713462, + 88035.58336234222, + null, + 88590.85511713462, + 88075.61019283785, + null, + 95956.16594891516, + 96778.97067219901, + null, + 95956.16594891516, + 96774.27151536841, + null, + 95103.80826824161, + 95523.28532488653, + null, + 95103.80826824161, + 94943.83700356272, + null, + 95849.92383113039, + 95818.53001808233, + null, + 96262.42166171632, + 95705.12403974576, + null, + 95705.12403974576, + 96001.11875324031, + null, + 95826.03997621946, + 95705.12403974576, + null, + 96150.57574768981, + 96089.44566542986, + null, + 96150.57574768981, + 96232.75989347267, + null, + 96150.57574768981, + 96158.38431777383, + null, + 96150.57574768981, + 96045.66684685949, + null, + 96150.57574768981, + 95969.1256184073, + null, + 96150.57574768981, + 96013.81260119048, + null, + 96150.57574768981, + 96042.74026637044, + null, + 96150.57574768981, + 96194.04975573476, + null, + 96150.57574768981, + 96123.0994416502, + null, + 96150.57574768981, + 96319.13173343345, + null, + 96150.57574768981, + 95968.80222215265, + null, + 96150.57574768981, + 95912.47979836861, + null, + 96150.57574768981, + 95925.66592354236, + null, + 96150.57574768981, + 95936.78246887373, + null, + 96150.57574768981, + 95889.97314488533, + null, + 96150.57574768981, + 96236.40087597791, + null, + 96150.57574768981, + 95978.73409728472, + null, + 96150.57574768981, + 96316.94696925921, + null, + 96150.57574768981, + 96134.85280188615, + null, + 96150.57574768981, + 96182.97559382278, + null, + 96150.57574768981, + 95867.87958002836, + null, + 96150.57574768981, + 96017.35327396306, + null, + 96295.31083736721, + 97256.71452773576, + null, + 96295.31083736721, + 97252.23165797428, + null, + 96295.31083736721, + 96899.77531401117, + null, + 96295.31083736721, + 96248.76337904352, + null, + 96244.53594836782, + 97152.47967070663, + null, + 96244.53594836782, + 96135.22740085266, + null, + 96244.53594836782, + 96974.21051137756, + null, + 96244.53594836782, + 97133.66523509301, + null, + 95503.21802046116, + 95288.7583767709, + null, + 96107.21446370435, + 96298.39834593558, + null, + 96107.21446370435, + 96476.47729265835, + null, + 96107.21446370435, + 96427.63029291548, + null, + 96107.21446370435, + 96395.4047179211, + null, + 96107.21446370435, + 95940.42592069102, + null, + 96107.21446370435, + 97038.13042712578, + null, + 96107.21446370435, + 97082.40295944159, + null, + 96107.21446370435, + 96031.3795211209, + null, + 94297.22907899908, + 94069.03735918325, + null, + 94297.22907899908, + 94009.56158523318, + null, + 94297.22907899908, + 94130.04763539109, + null, + 95769.18345824692, + 95731.12015912194, + null, + 95769.18345824692, + 95616.0407219737, + null, + 95769.18345824692, + 95659.6018735391, + null, + 95769.18345824692, + 95678.62819334009, + null, + 95769.18345824692, + 95781.78664237607, + null, + 95769.18345824692, + 95577.34405122125, + null, + 95769.18345824692, + 95655.75208549788, + null, + 95769.18345824692, + 95710.76531338083, + null, + 95854.58816461003, + 95799.27305372994, + null, + 95472.03336553831, + 95306.53646843051, + null, + 95497.96761435788, + 95339.84556579817, + null, + 100266.60888331049, + 100452.52175447682, + null, + 100275.49487326102, + 100508.74664244991, + null, + 99308.59414610175, + 99417.06942940914, + null, + 99308.59414610175, + 99490.48077246742, + null, + 100993.81994431307, + 101263.5858464501, + null, + 100993.81994431307, + 101294.76632948937, + null, + 100993.81994431307, + 101162.83347248544, + null, + 100993.81994431307, + 101321.38820055868, + null, + 100993.81994431307, + 101189.73696638984, + null, + 100993.81994431307, + 101276.19421116, + null, + 100993.81994431307, + 101215.22740740502, + null, + 100993.81994431307, + 101132.68859257287, + null, + 100993.81994431307, + 101231.96182220083, + null, + 100993.81994431307, + 101113.69616196322, + null, + 100993.81994431307, + 101202.08234411357, + null, + 100993.81994431307, + 101323.03686175268, + null, + 100993.81994431307, + 101302.71586201976, + null, + 100993.81994431307, + 101208.71003175106, + null, + 100993.81994431307, + 101165.55850365866, + null, + 100993.81994431307, + 101249.63872563199, + null, + 100993.81994431307, + 101225.01239942892, + null, + 100993.81994431307, + 101148.34414742448, + null, + 98998.48843958214, + 98107.98397593139, + null, + 99497.63865967996, + 99050.31283061483, + null, + 99497.63865967996, + 99696.20174737588, + null, + 99497.63865967996, + 99613.57523791396, + null, + 99497.63865967996, + 99631.65790217281, + null, + 98414.55375540078, + 98858.43542229797, + null, + 98275.0868761614, + 97820.00767848469, + null, + 98275.0868761614, + 98113.9638494234, + null, + 99287.0655957827, + 99680.51394878581, + null, + 99287.0655957827, + 99522.55089557452, + null, + 99287.0655957827, + 99666.63776945528, + null, + 99287.0655957827, + 99713.66464718881, + null, + 99168.38311213651, + 99274.85653841426, + null, + 99168.38311213651, + 99231.54971618211, + null, + 99168.38311213651, + 99549.22834567956, + null, + 99294.3343501885, + 99527.88570730339, + null, + 99294.3343501885, + 98952.25912959375, + null, + 98917.96441057288, + 99294.3343501885, + null, + 97827.76197200979, + 97989.10101650721, + null, + 97827.76197200979, + 97708.58185165055, + null, + 97827.76197200979, + 97158.96712629191, + null, + 98414.55316263932, + 98480.26982394698, + null, + 98257.85820299109, + 98129.7525732422, + null, + 98257.85820299109, + 98044.04752415298, + null, + 98257.85820299109, + 98151.80634944019, + null, + 98257.85820299109, + 98095.02656369311, + null, + 98418.17015609592, + 98370.33853712298, + null, + 98418.17015609592, + 98255.74444021816, + null, + 98418.17015609592, + 98408.56530732088, + null, + 98418.17015609592, + 98320.44328914571, + null, + 100175.0607969374, + 100450.95558034207, + null, + 100175.0607969374, + 100480.82034926659, + null, + 100175.0607969374, + 100480.49092912518, + null, + 100175.0607969374, + 100580.56121342597, + null, + 100123.4034196032, + 100380.95102466598, + null, + 100123.4034196032, + 100498.70305671386, + null, + 100123.4034196032, + 100425.06940729756, + null, + 98776.08147395353, + 99203.1995445626, + null, + 98881.20399257346, + 99203.1995445626, + null, + 99203.1995445626, + 99212.51030616327, + null, + 98975.4583568785, + 99203.1995445626, + null, + 99294.3343501885, + 99203.1995445626, + null, + 99203.1995445626, + 99185.65099595927, + null, + 100259.94700165218, + 100647.00721589438, + null, + 100259.94700165218, + 100589.5479287922, + null, + 100259.94700165218, + 100585.4129716198, + null, + 100259.94700165218, + 100545.35934978107, + null, + 98776.08147395353, + 99150.71873965448, + null, + 98881.20399257346, + 99150.71873965448, + null, + 99150.71873965448, + 99212.51030616327, + null, + 98975.4583568785, + 99150.71873965448, + null, + 99294.3343501885, + 99150.71873965448, + null, + 99150.71873965448, + 99185.65099595927, + null, + 98838.01226486915, + 99176.45733464141, + null, + 98881.20399257346, + 99176.45733464141, + null, + 98932.31091884513, + 99176.45733464141, + null, + 98916.08043593282, + 99176.45733464141, + null, + 98776.08147395353, + 99176.45733464141, + null, + 99287.0655957827, + 99176.45733464141, + null, + 99176.45733464141, + 99185.65099595927, + null, + 99176.45733464141, + 99316.61246387733, + null, + 99176.45733464141, + 99267.27734915515, + null, + 99176.45733464141, + 99215.94068343456, + null, + 99176.45733464141, + 99232.44990568829, + null, + 98875.12446310604, + 99176.45733464141, + null, + 99176.45733464141, + 99356.71931442092, + null, + 97598.41715003968, + 98536.71552534091, + null, + 98426.11814680099, + 98536.71552534091, + null, + 97964.99194759796, + 98536.71552534091, + null, + 100486.68654940001, + 100901.46988766377, + null, + 100486.68654940001, + 99804.62331523834, + null, + 100486.68654940001, + 100967.34161974456, + null, + 99798.83508838428, + 99507.3720181478, + null, + 99798.83508838428, + 99720.51276602945, + null, + 99798.83508838428, + 99470.76221817326, + null, + 101233.72050294731, + 101607.11660507972, + null, + 101233.72050294731, + 101488.02083832397, + null, + 101233.72050294731, + 101538.43241360724, + null, + 101233.72050294731, + 101571.4209728939, + null, + 101233.72050294731, + 101614.60294862564, + null, + 101233.72050294731, + 101543.98807230422, + null, + 100304.51471837264, + 100140.2110009592, + null, + 98873.6590998779, + 99369.55175238507, + null, + 98838.01226486915, + 99369.55175238507, + null, + 98881.20399257346, + 99369.55175238507, + null, + 98975.4583568785, + 99369.55175238507, + null, + 98932.31091884513, + 99369.55175238507, + null, + 99287.0655957827, + 99369.55175238507, + null, + 98833.5386160878, + 99369.55175238507, + null, + 99369.55175238507, + 99232.44990568829, + null, + 99294.3343501885, + 99369.55175238507, + null, + 98875.12446310604, + 99369.55175238507, + null, + 99369.55175238507, + 99781.65659298775, + null, + 99369.55175238507, + 99578.9140767699, + null, + 99369.55175238507, + 99630.32221252672, + null, + 99369.55175238507, + 99736.34284897555, + null, + 99459.89574901403, + 99939.68816469236, + null, + 98776.08147395353, + 99459.89574901403, + null, + 98881.20399257346, + 99459.89574901403, + null, + 99459.89574901403, + 99212.51030616327, + null, + 98975.4583568785, + 99459.89574901403, + null, + 99459.89574901403, + 99185.65099595927, + null, + 98776.08147395353, + 99497.65911985919, + null, + 98838.01226486915, + 99497.65911985919, + null, + 99222.80666593021, + 99497.65911985919, + null, + 99990.2370091159, + 99497.65911985919, + null, + 99709.43474110542, + 99497.65911985919, + null, + 99679.73750040874, + 99497.65911985919, + null, + 99889.87039027306, + 99497.65911985919, + null, + 99744.15222602605, + 99497.65911985919, + null, + 99497.65911985919, + 99185.65099595927, + null, + 98932.31091884513, + 99497.65911985919, + null, + 99287.0655957827, + 99497.65911985919, + null, + 99497.65911985919, + 99738.68447975624, + null, + 99497.65911985919, + 99267.27734915515, + null, + 99497.65911985919, + 99232.44990568829, + null, + 98875.12446310604, + 99497.65911985919, + null, + 99788.15934489542, + 99497.65911985919, + null, + 99497.65911985919, + 99356.71931442092, + null, + 99168.38311213651, + 99334.08753749864, + null, + 99222.80666593021, + 99334.08753749864, + null, + 98975.4583568785, + 99334.08753749864, + null, + 98932.31091884513, + 99334.08753749864, + null, + 99334.08753749864, + 98976.19477847009, + null, + 99334.08753749864, + 99267.27734915515, + null, + 99334.08753749864, + 99232.44990568829, + null, + 98875.12446310604, + 99334.08753749864, + null, + 99334.08753749864, + 99356.71931442092, + null, + 100439.05341443338, + 100756.1343307411, + null, + 100439.05341443338, + 100435.24947529356, + null, + 100439.05341443338, + 100910.8664332588, + null, + 100439.05341443338, + 100677.72714984877, + null, + 100439.05341443338, + 100735.90159757144, + null, + 100439.05341443338, + 100826.9420164402, + null, + 100439.05341443338, + 100347.59604666795, + null, + 100439.05341443338, + 100724.62664190622, + null, + 100439.05341443338, + 100800.28375220715, + null, + 99891.87571608167, + 99958.28802683057, + null, + 99891.87571608167, + 100223.51578710719, + null, + 99891.87571608167, + 99555.46875574846, + null, + 99787.73624613034, + 100030.03728774759, + null, + 99787.73624613034, + 100255.25301069795, + null, + 99787.73624613034, + 100097.64817745179, + null, + 99787.73624613034, + 100070.27980833458, + null, + 99837.0082125705, + 99496.54217956355, + null, + 99837.0082125705, + 99834.26311033826, + null, + 98838.01226486915, + 99338.62761306738, + null, + 98881.20399257346, + 99338.62761306738, + null, + 98873.6590998779, + 99338.62761306738, + null, + 98975.4583568785, + 99338.62761306738, + null, + 98932.31091884513, + 99338.62761306738, + null, + 99287.0655957827, + 99338.62761306738, + null, + 98833.5386160878, + 99338.62761306738, + null, + 99294.3343501885, + 99338.62761306738, + null, + 99338.62761306738, + 99232.44990568829, + null, + 98875.12446310604, + 99338.62761306738, + null, + 99338.62761306738, + 99649.46419121683, + null, + 99398.32512040935, + 99704.24505410295, + null, + 97937.7823995534, + 98099.14976704735, + null, + 97409.25368271414, + 97937.7823995534, + null, + 97234.04346137235, + 97937.7823995534, + null, + 97434.01515339047, + 97937.7823995534, + null, + 97937.7823995534, + 97992.47106040179, + null, + 98960.49823630943, + 99172.12620844663, + null, + 98960.49823630943, + 99263.51330746185, + null, + 98077.79681744472, + 98960.49823630943, + null, + 98960.49823630943, + 99164.85920947728, + null, + 98960.49823630943, + 99302.85767182164, + null, + 98960.49823630943, + 99237.92705301281, + null, + 97409.25368271414, + 97772.18600703926, + null, + 97234.04346137235, + 97772.18600703926, + null, + 97434.01515339047, + 97772.18600703926, + null, + 97772.18600703926, + 97992.47106040179, + null, + 97063.32877705898, + 96324.02566311863, + null, + 97063.32877705898, + 96769.40892205865, + null, + 97063.32877705898, + 96722.44044323963, + null, + 97063.32877705898, + 96341.18862444937, + null, + 98776.08147395353, + 99009.06890021921, + null, + 98881.20399257346, + 99009.06890021921, + null, + 99009.06890021921, + 99353.20063443409, + null, + 99009.06890021921, + 99185.65099595927, + null, + 99009.06890021921, + 99422.72710447569, + null, + 99294.3343501885, + 99009.06890021921, + null, + 99244.62898283631, + 99530.40062035782, + null, + 99244.62898283631, + 99623.09686400622, + null, + 98975.4583568785, + 99244.62898283631, + null, + 99244.62898283631, + 99185.65099595927, + null, + 98881.20399257346, + 99244.62898283631, + null, + 99294.3343501885, + 99244.62898283631, + null, + 98873.6590998779, + 99244.62898283631, + null, + 98845.6917714939, + 99244.62898283631, + null, + 98838.01226486915, + 99244.62898283631, + null, + 99287.0655957827, + 99244.62898283631, + null, + 98916.08043593282, + 99244.62898283631, + null, + 98932.31091884513, + 99244.62898283631, + null, + 99244.62898283631, + 99422.72710447569, + null, + 98932.31091884513, + 98895.86594871506, + null, + 98838.01226486915, + 98895.86594871506, + null, + 98776.08147395353, + 98895.86594871506, + null, + 98895.86594871506, + 99316.61246387733, + null, + 98881.20399257346, + 98895.86594871506, + null, + 98916.08043593282, + 98895.86594871506, + null, + 99287.0655957827, + 98895.86594871506, + null, + 98895.86594871506, + 99185.65099595927, + null, + 98895.86594871506, + 99267.27734915515, + null, + 98895.86594871506, + 99215.94068343456, + null, + 98895.86594871506, + 99232.44990568829, + null, + 98875.12446310604, + 98895.86594871506, + null, + 98895.86594871506, + 99356.71931442092, + null, + 101287.53163759898, + 102262.73637918029, + null, + 100667.31521747577, + 101096.52251097043, + null, + 100667.31521747577, + 100900.72710750607, + null, + 100667.31521747577, + 100854.58788568957, + null, + 100667.31521747577, + 100930.54410580952, + null, + 100667.31521747577, + 100881.30772525753, + null, + 100667.31521747577, + 101046.55638829275, + null, + 100667.31521747577, + 100950.10071476863, + null, + 100667.31521747577, + 100905.34579135245, + null, + 100667.31521747577, + 101004.70055184087, + null, + 100667.31521747577, + 100970.51780212278, + null, + 98829.92293140064, + 99071.91798559703, + null, + 98829.92293140064, + 98368.3157961383, + null, + 98829.92293140064, + 98341.32886938391, + null, + 100008.8185640341, + 100230.94866376575, + null, + 100008.8185640341, + 100247.6955386029, + null, + 100008.8185640341, + 100336.54641164783, + null, + 100008.8185640341, + 100286.23206476576, + null, + 100008.8185640341, + 100288.19672372109, + null, + 99630.27697060951, + 99946.65854951633, + null, + 98199.99210205229, + 97251.29570214036, + null, + 98199.99210205229, + 97701.28948749202, + null, + 98199.99210205229, + 98382.05092138954, + null, + 98199.99210205229, + 97724.67813450533, + null, + 98199.99210205229, + 98149.46450257779, + null, + 98199.99210205229, + 97940.34990023683, + null, + 98199.99210205229, + 97609.3784728033, + null, + 98199.99210205229, + 98195.77272004819, + null, + 98199.99210205229, + 98469.92455216771, + null, + 98199.99210205229, + 97857.0437324069, + null, + 98199.99210205229, + 97646.15538785749, + null, + 98199.99210205229, + 97931.6145145542, + null, + 98916.08043593282, + 99587.45269788787, + null, + 99587.45269788787, + 99851.71491845028, + null, + 99587.45269788787, + 100095.6614984881, + null, + 99587.45269788787, + 99630.32221252672, + null, + 99222.80666593021, + 99587.45269788787, + null, + 99587.45269788787, + 99692.3706968398, + null, + 99587.45269788787, + 100082.91108254869, + null, + 99287.0655957827, + 99587.45269788787, + null, + 99587.45269788787, + 99804.15557625018, + null, + 99123.1886578178, + 99587.45269788787, + null, + 98873.6590998779, + 99204.80764182155, + null, + 98881.20399257346, + 99204.80764182155, + null, + 98916.08043593282, + 99204.80764182155, + null, + 98932.31091884513, + 99204.80764182155, + null, + 98838.01226486915, + 99204.80764182155, + null, + 98845.6917714939, + 99204.80764182155, + null, + 98975.4583568785, + 99204.80764182155, + null, + 99204.80764182155, + 99448.71921839722, + null, + 99204.80764182155, + 99185.65099595927, + null, + 99287.0655957827, + 99204.80764182155, + null, + 99294.3343501885, + 99204.80764182155, + null, + 98780.33197584302, + 98296.91832297333, + null, + 98780.33197584302, + 98283.52624727061, + null, + 100408.86536513967, + 100800.39718183145, + null, + 100408.86536513967, + 100680.80099572752, + null, + 98968.71992266763, + 99060.25043722533, + null, + 98968.71992266763, + 99023.27650875496, + null, + 99004.39514221971, + 99297.5702546631, + null, + 99004.39514221971, + 99294.36932291552, + null, + 99004.39514221971, + 99179.30995275112, + null, + 99004.39514221971, + 98395.83998663595, + null, + 98833.5386160878, + 99328.58010501186, + null, + 99328.58010501186, + 99127.37165225792, + null, + 98873.6590998779, + 99328.58010501186, + null, + 98845.6917714939, + 99328.58010501186, + null, + 99328.58010501186, + 99630.32221252672, + null, + 99328.58010501186, + 99530.40062035782, + null, + 99123.1886578178, + 99328.58010501186, + null, + 99222.80666593021, + 99328.58010501186, + null, + 99328.58010501186, + 99692.3706968398, + null, + 99294.3343501885, + 99328.58010501186, + null, + 99704.67044515068, + 100045.4718399428, + null, + 99704.67044515068, + 99185.65099595927, + null, + 99704.67044515068, + 98983.70522113536, + null, + 99704.67044515068, + 99991.84217198574, + null, + 99704.67044515068, + 100144.94289097113, + null, + 99704.67044515068, + 100186.88672513781, + null, + 99704.67044515068, + 99851.71491845028, + null, + 99704.67044515068, + 99999.259001288, + null, + 99222.80666593021, + 99704.67044515068, + null, + 98838.01226486915, + 99704.67044515068, + null, + 99704.67044515068, + 100029.53100660541, + null, + 99704.67044515068, + 99212.51030616327, + null, + 99704.67044515068, + 99544.7067431413, + null, + 99704.67044515068, + 99448.71921839722, + null, + 99704.67044515068, + 99983.89846345481, + null, + 99704.67044515068, + 100070.04335012313, + null, + 99704.67044515068, + 99963.84228945826, + null, + 99704.67044515068, + 100154.95560200007, + null, + 99704.67044515068, + 100126.49383112307, + null, + 99704.67044515068, + 100184.79366257432, + null, + 99704.67044515068, + 99422.72710447569, + null, + 99704.67044515068, + 100095.9453059413, + null, + 99704.67044515068, + 99972.532450601, + null, + 99704.67044515068, + 99935.32617481564, + null, + 99704.67044515068, + 100054.72761578535, + null, + 99704.67044515068, + 100167.54861806809, + null, + 98932.31091884513, + 99704.67044515068, + null, + 99287.0655957827, + 99704.67044515068, + null, + 99704.67044515068, + 100268.01014641963, + null, + 99704.67044515068, + 100065.78360368013, + null, + 99704.67044515068, + 99954.27857977797, + null, + 99294.3343501885, + 99704.67044515068, + null, + 99704.67044515068, + 99267.27734915515, + null, + 99704.67044515068, + 100300.23650300906, + null, + 99704.67044515068, + 99232.44990568829, + null, + 99704.67044515068, + 100047.57660412931, + null, + 98875.12446310604, + 99704.67044515068, + null, + 99704.67044515068, + 99356.71931442092, + null, + 99704.67044515068, + 99960.71023235824, + null, + 99123.1886578178, + 99356.71931442092, + null, + 99356.71931442092, + 99469.40839036046, + null, + 99356.71931442092, + 99742.61436390011, + null, + 99222.80666593021, + 99356.71931442092, + null, + 99356.71931442092, + 99787.61466225835, + null, + 98881.20399257346, + 99356.71931442092, + null, + 98916.08043593282, + 99356.71931442092, + null, + 99356.71931442092, + 99752.65287057367, + null, + 99356.71931442092, + 99667.34686788224, + null, + 98838.01226486915, + 99356.71931442092, + null, + 99356.71931442092, + 99662.1015345583, + null, + 98845.6917714939, + 99356.71931442092, + null, + 99356.71931442092, + 99630.32221252672, + null, + 99356.71931442092, + 99127.37165225792, + null, + 99356.71931442092, + 99902.68854543792, + null, + 99356.71931442092, + 99185.65099595927, + null, + 99356.71931442092, + 99569.89208691959, + null, + 99356.71931442092, + 99820.02624163267, + null, + 99356.71931442092, + 99638.83452551358, + null, + 99356.71931442092, + 99711.04801908563, + null, + 99356.71931442092, + 99637.2394192473, + null, + 99938.9075507464, + 99356.71931442092, + null, + 98873.6590998779, + 99356.71931442092, + null, + 99356.71931442092, + 99670.90654530568, + null, + 98932.31091884513, + 99356.71931442092, + null, + 99287.0655957827, + 99356.71931442092, + null, + 99356.71931442092, + 99267.27734915515, + null, + 99356.71931442092, + 99097.36317848787, + null, + 99356.71931442092, + 99871.95762795635, + null, + 99356.71931442092, + 99867.06009800416, + null, + 99356.71931442092, + 99232.44990568829, + null, + 98875.12446310604, + 99356.71931442092, + null, + 98975.4583568785, + 99356.71931442092, + null, + 99356.71931442092, + 99210.74174635496, + null, + 99356.71931442092, + 99356.71931442092, + null, + 99356.71931442092, + 99773.13365021958, + null, + 99356.71931442092, + 99788.04993321348, + null, + 100275.50143084832, + 100886.59644421024, + null, + 100275.50143084832, + 100617.57692160354, + null, + 96938.66295867188, + 96508.73199069055, + null, + 96938.66295867188, + 96791.11917374496, + null, + 97964.63401886185, + 98296.91832297333, + null, + 97964.63401886185, + 98283.52624727061, + null, + 97390.08288766422, + 97354.40959148448, + null, + 97390.08288766422, + 97308.04795724564, + null, + 99574.3677856123, + 99946.82760551533, + null, + 99273.85480193101, + 99544.7067431413, + null, + 98932.31091884513, + 99273.85480193101, + null, + 98916.08043593282, + 99273.85480193101, + null, + 98838.01226486915, + 99273.85480193101, + null, + 98881.20399257346, + 99273.85480193101, + null, + 98845.6917714939, + 99273.85480193101, + null, + 98975.4583568785, + 99273.85480193101, + null, + 99273.85480193101, + 99185.65099595927, + null, + 99287.0655957827, + 99273.85480193101, + null, + 98873.6590998779, + 99273.85480193101, + null, + 99938.9075507464, + 99273.85480193101, + null, + 99615.64332690387, + 99555.46875574846, + null, + 99615.64332690387, + 99861.30129865861, + null, + 99615.64332690387, + 99854.73519886057, + null, + 99615.64332690387, + 99876.79834798473, + null, + 99615.64332690387, + 99825.5809352925, + null, + 99572.0458167728, + 99496.54217956355, + null, + 99572.0458167728, + 99834.26311033826, + null, + 99982.59484908597, + 99696.4776935133, + null, + 99982.59484908597, + 99449.32982858743, + null, + 99982.59484908597, + 100146.45911618347, + null, + 99982.59484908597, + 100194.34609094857, + null, + 99982.59484908597, + 100236.08045057741, + null, + 99982.59484908597, + 100318.10888305007, + null, + 99982.59484908597, + 100414.29908033357, + null, + 100442.43446705127, + 100954.21212780282, + null, + 100442.43446705127, + 100854.71599889648, + null, + 100442.43446705127, + 100715.77423406432, + null, + 100442.43446705127, + 100938.47273980454, + null, + 98917.55283849573, + 98094.94144871847, + null, + 98917.55283849573, + 98102.66578906662, + null, + 100405.62380636072, + 100740.51816279993, + null, + 100405.62380636072, + 100647.85842417844, + null, + 100405.62380636072, + 100675.59804321895, + null, + 100405.62380636072, + 100680.18671105271, + null, + 100405.62380636072, + 100609.66249449608, + null, + 98776.08147395353, + 99264.01286919507, + null, + 98838.01226486915, + 99264.01286919507, + null, + 98881.20399257346, + 99264.01286919507, + null, + 98932.31091884513, + 99264.01286919507, + null, + 98916.08043593282, + 99264.01286919507, + null, + 99287.0655957827, + 99264.01286919507, + null, + 99264.01286919507, + 99185.65099595927, + null, + 99264.01286919507, + 99316.61246387733, + null, + 99264.01286919507, + 99267.27734915515, + null, + 99264.01286919507, + 99215.94068343456, + null, + 99264.01286919507, + 99232.44990568829, + null, + 98875.12446310604, + 99264.01286919507, + null, + 99356.71931442092, + 99264.01286919507, + null, + 101880.18878218585, + 102544.79556060483, + null, + 101880.18878218585, + 102217.36666847287, + null, + 101880.18878218585, + 102521.74551958093, + null, + 101201.13786259948, + 101588.4570754577, + null, + 101261.17342969753, + 101596.86944416925, + null, + 101261.17342969753, + 101518.34662372227, + null, + 101531.87027489231, + 101870.12225865177, + null, + 101531.87027489231, + 101800.1352857561, + null, + 101531.87027489231, + 101817.25828775382, + null, + 101531.87027489231, + 101888.27034944776, + null, + 100295.24230126226, + 100627.40352162097, + null, + 100295.24230126226, + 99305.95497196195, + null, + 100295.24230126226, + 100568.88671127104, + null, + 100295.24230126226, + 100529.03073101211, + null, + 99222.80666593021, + 99417.48192028531, + null, + 98916.08043593282, + 99417.48192028531, + null, + 98838.01226486915, + 99417.48192028531, + null, + 98881.20399257346, + 99417.48192028531, + null, + 98845.6917714939, + 99417.48192028531, + null, + 99417.48192028531, + 99185.65099595927, + null, + 98932.31091884513, + 99417.48192028531, + null, + 99287.0655957827, + 99417.48192028531, + null, + 99417.48192028531, + 99267.27734915515, + null, + 99294.3343501885, + 99417.48192028531, + null, + 98873.6590998779, + 99417.48192028531, + null, + 99417.48192028531, + 99053.41371146425, + null, + 99417.48192028531, + 99232.44990568829, + null, + 98875.12446310604, + 99417.48192028531, + null, + 99356.71931442092, + 99417.48192028531, + null, + 101239.75080883966, + 101462.26776524783, + null, + 101239.75080883966, + 101562.10256227688, + null, + 98930.33399893016, + 98392.21001148615, + null, + 99586.53541170484, + 99808.65192178015, + null, + 99162.91558583234, + 99185.65099595927, + null, + 98975.4583568785, + 99162.91558583234, + null, + 99162.91558583234, + 99212.51030616327, + null, + 98873.6590998779, + 99162.91558583234, + null, + 98916.08043593282, + 99162.91558583234, + null, + 99287.0655957827, + 99162.91558583234, + null, + 98932.31091884513, + 99162.91558583234, + null, + 99294.3343501885, + 99162.91558583234, + null, + 98838.01226486915, + 99162.91558583234, + null, + 98881.20399257346, + 99162.91558583234, + null, + 98845.6917714939, + 99162.91558583234, + null, + 99222.80666593021, + 99328.89319402496, + null, + 99328.89319402496, + 99469.40839036046, + null, + 99328.89319402496, + 99630.32221252672, + null, + 98932.31091884513, + 99328.89319402496, + null, + 99328.89319402496, + 99185.65099595927, + null, + 99287.0655957827, + 99328.89319402496, + null, + 99328.89319402496, + 99267.27734915515, + null, + 99328.89319402496, + 99232.44990568829, + null, + 98875.12446310604, + 99328.89319402496, + null, + 99356.71931442092, + 99328.89319402496, + null, + 99358.76293373808, + 99634.45747805986, + null, + 99358.76293373808, + 99595.46430131905, + null, + 99358.76293373808, + 99627.98538427509, + null, + 99222.80666593021, + 99358.76293373808, + null, + 99358.76293373808, + 99554.67141647628, + null, + 98975.4583568785, + 99358.76293373808, + null, + 98932.31091884513, + 99358.76293373808, + null, + 99287.0655957827, + 99358.76293373808, + null, + 99358.76293373808, + 99630.32221252672, + null, + 99358.76293373808, + 99692.3706968398, + null, + 99358.76293373808, + 99753.56979486135, + null, + 99358.76293373808, + 99267.27734915515, + null, + 99358.76293373808, + 99620.77161459692, + null, + 99358.76293373808, + 99232.44990568829, + null, + 98875.12446310604, + 99358.76293373808, + null, + 99356.71931442092, + 99358.76293373808, + null, + 100016.85978108921, + 100288.64924019997, + null, + 100664.31901839633, + 101588.4570754577, + null, + 100029.98747600272, + 100073.37253120718, + null, + 100029.98747600272, + 100257.14036743405, + null, + 98932.31091884513, + 99065.72480630428, + null, + 98926.20655583622, + 99065.72480630428, + null, + 98881.20399257346, + 99065.72480630428, + null, + 98775.64297666437, + 99065.72480630428, + null, + 98715.38337956829, + 99065.72480630428, + null, + 98794.9356782363, + 99065.72480630428, + null, + 98873.6590998779, + 99065.72480630428, + null, + 98776.08147395353, + 99065.72480630428, + null, + 98916.08043593282, + 99065.72480630428, + null, + 98833.5386160878, + 99065.72480630428, + null, + 98779.4951496633, + 99065.72480630428, + null, + 98769.87019965112, + 99065.72480630428, + null, + 98763.69912444155, + 99065.72480630428, + null, + 98838.01226486915, + 99065.72480630428, + null, + 98731.25835265023, + 99065.72480630428, + null, + 98875.12446310604, + 99065.72480630428, + null, + 98845.6917714939, + 99065.72480630428, + null, + 98156.27282406032, + 98702.11362056104, + null, + 97409.25368271414, + 98156.27282406032, + null, + 97234.04346137235, + 98156.27282406032, + null, + 97434.01515339047, + 98156.27282406032, + null, + 98227.70254427848, + 98443.42888803613, + null, + 98227.70254427848, + 96939.7130296957, + null, + 98227.70254427848, + 98504.51157473968, + null, + 98227.70254427848, + 98381.06197054817, + null, + 100038.33560601297, + 100435.24947529356, + null, + 100038.33560601297, + 100347.59604666795, + null, + 100038.33560601297, + 100277.45944226006, + null, + 101143.74462846812, + 102041.9705971981, + null, + 101143.74462846812, + 101588.4570754577, + null, + 101143.74462846812, + 102065.42302869826, + null, + 98467.10096591972, + 97971.15353949438, + null, + 98467.10096591972, + 97948.15175790482, + null, + 98467.10096591972, + 97981.75949850792, + null, + 96279.30869943406, + 96140.80721502517, + null, + 96692.27028903799, + 96939.7130296957, + null, + 96692.27028903799, + 96732.12162014724, + null, + 96692.27028903799, + 96807.24936764163, + null, + 99054.46710922422, + 99449.32982858743, + null, + 99054.46710922422, + 99496.54217956355, + null, + 99054.46710922422, + 98966.24498506205, + null, + 99054.46710922422, + 99696.4776935133, + null, + 99054.46710922422, + 99285.4906673645, + null, + 95886.98258580548, + 96793.04034680343, + null, + 97078.78573950223, + 96793.04034680343, + null, + 96793.04034680343, + 96696.72791352752, + null, + 96509.39820433313, + 96793.04034680343, + null, + 96463.65900406071, + 96793.04034680343, + null, + 96509.4296845907, + 96793.04034680343, + null, + 96099.61138898744, + 96793.04034680343, + null, + 102477.24885418148, + 102774.85126684737, + null, + 102477.24885418148, + 102763.62240036845, + null, + 102477.24885418148, + 102753.86799097287, + null, + 102477.24885418148, + 102900.43476422675, + null, + 102477.24885418148, + 102939.9486939862, + null, + 102477.24885418148, + 102869.11973290454, + null, + 102477.24885418148, + 102835.06492486139, + null, + 102477.24885418148, + 102797.26240935021, + null, + 102477.24885418148, + 102262.73637918029, + null, + 102477.24885418148, + 102983.62389345889, + null, + 102477.24885418148, + 102888.1607695238, + null, + 102477.24885418148, + 102041.9705971981, + null, + 102477.24885418148, + 102858.79048659823, + null, + 102477.24885418148, + 102803.82818927991, + null, + 102477.24885418148, + 102610.83531896502, + null, + 102477.24885418148, + 102890.71599205933, + null, + 102477.24885418148, + 102924.12080650972, + null, + 102477.24885418148, + 102738.0755445841, + null, + 102477.24885418148, + 102859.05034614111, + null, + 102477.24885418148, + 102829.27652840661, + null, + 102477.24885418148, + 102718.75129913565, + null, + 102477.24885418148, + 102904.49581769775, + null, + 102477.24885418148, + 102836.15547996153, + null, + 102477.24885418148, + 102865.36924499608, + null, + 102477.24885418148, + 102930.443259606, + null, + 102477.24885418148, + 102806.54367917038, + null, + 102477.24885418148, + 102659.10548567928, + null, + 102477.24885418148, + 102970.78003743586, + null, + 102477.24885418148, + 102763.33394570912, + null, + 102477.24885418148, + 101588.4570754577, + null, + 102477.24885418148, + 102977.66845606956, + null, + 102477.24885418148, + 102860.55045390091, + null, + 102477.24885418148, + 102980.65396752457, + null, + 102477.24885418148, + 102843.42070993401, + null, + 102477.24885418148, + 102828.80242806238, + null, + 102477.24885418148, + 102785.4793679961, + null, + 102477.24885418148, + 102950.45484180044, + null, + 102477.24885418148, + 102881.80029360467, + null, + 102477.24885418148, + 102698.37186316603, + null, + 102477.24885418148, + 103114.51441301465, + null, + 102477.24885418148, + 102907.02355996634, + null, + 102477.24885418148, + 102065.42302869826, + null, + 102477.24885418148, + 102915.12131220687, + null, + 102477.24885418148, + 102757.81028208174, + null, + 102477.24885418148, + 102903.34874311111, + null, + 102477.24885418148, + 102698.37513516098, + null, + 102477.24885418148, + 102803.12747255337, + null, + 102477.24885418148, + 102521.74551958093, + null, + 102477.24885418148, + 102698.7329379008, + null, + 102477.24885418148, + 102785.12283960356, + null, + 102477.24885418148, + 103114.84536767862, + null, + 102477.24885418148, + 103015.27081336587, + null, + 102477.24885418148, + 102767.34552296864, + null, + 102477.24885418148, + 102544.79556060483, + null, + 102477.24885418148, + 102676.11743571368, + null, + 102477.24885418148, + 102768.67006444198, + null, + 102477.24885418148, + 102732.01298329032, + null, + 102477.24885418148, + 102964.4387673357, + null, + 102477.24885418148, + 102978.49762423344, + null, + 102477.24885418148, + 102709.19849968472, + null, + 102477.24885418148, + 102871.27974551258, + null, + 102477.24885418148, + 102802.73046718207, + null, + 102477.24885418148, + 102833.28125282656, + null, + 102477.24885418148, + 102912.49881841196, + null, + 102477.24885418148, + 102824.49834513121, + null, + 102477.24885418148, + 102850.44795050252, + null, + 102477.24885418148, + 102910.71632423713, + null, + 99962.03299582665, + 100168.92190700649, + null, + 99962.03299582665, + 100060.87608646908, + null, + 99962.03299582665, + 100195.98005392331, + null, + 99962.03299582665, + 100232.07739882938, + null, + 99962.03299582665, + 100140.5345373613, + null, + 99962.03299582665, + 100231.8212248547, + null, + 99962.03299582665, + 100120.00974518096, + null, + 99568.49510955371, + 99706.26075690931, + null, + 99568.49510955371, + 99648.48429705722, + null, + 97191.15673842629, + 97652.86342630182, + null, + 97598.41715003968, + 97652.86342630182, + null, + 96912.8602518081, + 97652.86342630182, + null, + 97329.44637332104, + 97652.86342630182, + null, + 96548.78849614567, + 97652.86342630182, + null, + 97092.6033555316, + 97652.86342630182, + null, + 97627.2235694482, + 96851.49702075154, + null, + 97627.2235694482, + 97028.21718236667, + null, + 97627.2235694482, + 96923.14998898802, + null, + 97627.2235694482, + 96950.00862634687, + null, + 97627.2235694482, + 96876.0341655546, + null, + 98987.744183523, + 99106.21684464924, + null, + 99106.21684464924, + 98999.90695568817, + null, + 99106.21684464924, + 99298.58296128808, + null, + 99106.21684464924, + 99345.00160357062, + null, + 98595.84891148518, + 98999.90695568817, + null, + 98595.84891148518, + 98979.39440657692, + null, + 98595.84891148518, + 99449.32982858743, + null, + 98595.84891148518, + 98865.98020761501, + null, + 98595.84891148518, + 98836.74859736628, + null, + 98595.84891148518, + 96939.7130296957, + null, + 98595.84891148518, + 98966.24498506205, + null, + 98595.84891148518, + 99060.25043722533, + null, + 98595.84891148518, + 98848.63298920334, + null, + 98595.84891148518, + 98970.52960408649, + null, + 98987.744183523, + 98595.84891148518, + null, + 98595.84891148518, + 99023.27650875496, + null, + 99156.63257376007, + 98979.39440657692, + null, + 99156.63257376007, + 99411.64293529403, + null, + 99156.63257376007, + 99438.0742810684, + null, + 99241.701769924, + 99544.7067431413, + null, + 98932.31091884513, + 99241.701769924, + null, + 98916.08043593282, + 99241.701769924, + null, + 98838.01226486915, + 99241.701769924, + null, + 98881.20399257346, + 99241.701769924, + null, + 98845.6917714939, + 99241.701769924, + null, + 98975.4583568785, + 99241.701769924, + null, + 99241.701769924, + 99185.65099595927, + null, + 99287.0655957827, + 99241.701769924, + null, + 98873.6590998779, + 99241.701769924, + null, + 99938.9075507464, + 99241.701769924, + null, + 98776.08147395353, + 98691.20212375972, + null, + 98881.20399257346, + 98691.20212375972, + null, + 98691.20212375972, + 99212.51030616327, + null, + 98975.4583568785, + 98691.20212375972, + null, + 99294.3343501885, + 98691.20212375972, + null, + 98691.20212375972, + 99185.65099595927, + null, + 97995.16766578473, + 98215.40985722737, + null, + 97681.82650463261, + 97878.09063826728, + null, + 98426.11814680099, + 97878.09063826728, + null, + 97621.5308801509, + 97878.09063826728, + null, + 97598.41715003968, + 97878.09063826728, + null, + 97965.90473223805, + 97878.09063826728, + null, + 98401.52424464934, + 98296.91832297333, + null, + 98401.52424464934, + 98283.52624727061, + null, + 99578.9140767699, + 99972.74540205879, + null, + 99578.9140767699, + 99931.27630633158, + null, + 99232.9372120856, + 99060.25043722533, + null, + 99232.9372120856, + 99023.27650875496, + null, + 98247.25370404207, + 97800.71562505228, + null, + 98247.25370404207, + 97965.28083636134, + null, + 98247.25370404207, + 97889.61604333931, + null, + 98247.25370404207, + 97866.41918264618, + null, + 98776.08147395353, + 99183.89896358912, + null, + 98881.20399257346, + 99183.89896358912, + null, + 98975.4583568785, + 99183.89896358912, + null, + 99183.89896358912, + 99185.65099595927, + null, + 99183.89896358912, + 99422.72710447569, + null, + 99294.3343501885, + 99183.89896358912, + null, + 98776.08147395353, + 99108.02772477719, + null, + 99123.1886578178, + 99108.02772477719, + null, + 98975.4583568785, + 99108.02772477719, + null, + 99287.0655957827, + 99108.02772477719, + null, + 98916.08043593282, + 99108.02772477719, + null, + 99168.38311213651, + 99108.02772477719, + null, + 98845.6917714939, + 99108.02772477719, + null, + 98881.20399257346, + 99108.02772477719, + null, + 98838.01226486915, + 99108.02772477719, + null, + 99294.3343501885, + 99108.02772477719, + null, + 98873.6590998779, + 99108.02772477719, + null, + 99457.6410217742, + 99804.55441106777, + null, + 99457.6410217742, + 99656.82244812195, + null, + 97539.68362575934, + 97650.23041136506, + null, + 97539.68362575934, + 97618.76347699384, + null, + 97539.68362575934, + 97524.30567878918, + null, + 97539.68362575934, + 97579.76275824622, + null, + 97454.32557679321, + 97515.47048470171, + null, + 95643.87509548519, + 95421.28692426691, + null, + 95643.87509548519, + 95460.4484609827, + null, + 95643.87509548519, + 95525.97848344142, + null, + 98164.19533467619, + 98015.71454165311, + null, + 98164.19533467619, + 98011.00513967639, + null, + 99123.1886578178, + 98940.87869445772, + null, + 98881.20399257346, + 98940.87869445772, + null, + 98932.31091884513, + 98940.87869445772, + null, + 98916.08043593282, + 98940.87869445772, + null, + 98838.01226486915, + 98940.87869445772, + null, + 98845.6917714939, + 98940.87869445772, + null, + 98975.4583568785, + 98940.87869445772, + null, + 99287.0655957827, + 98940.87869445772, + null, + 98873.6590998779, + 98940.87869445772, + null, + 99294.3343501885, + 98940.87869445772, + null, + 98873.6590998779, + 99064.5138791314, + null, + 98881.20399257346, + 99064.5138791314, + null, + 99294.3343501885, + 99064.5138791314, + null, + 98845.6917714939, + 99064.5138791314, + null, + 98916.08043593282, + 99064.5138791314, + null, + 98932.31091884513, + 99064.5138791314, + null, + 98838.01226486915, + 99064.5138791314, + null, + 98975.4583568785, + 99064.5138791314, + null, + 99064.5138791314, + 99448.71921839722, + null, + 99064.5138791314, + 99185.65099595927, + null, + 99287.0655957827, + 99064.5138791314, + null, + 99697.0870632984, + 99961.60534852691, + null, + 99697.0870632984, + 99989.35584080167, + null, + 99697.0870632984, + 99903.53901231757, + null, + 99658.1811796683, + 99958.28802683057, + null, + 99658.1811796683, + 99555.46875574846, + null, + 99658.1811796683, + 99861.30129865861, + null, + 99658.1811796683, + 99804.62331523834, + null, + 99519.81617905492, + 99773.8565122577, + null, + 99461.9154620648, + 99636.19206865072, + null, + 99503.27823687728, + 99784.77259622097, + null, + 99428.27940191151, + 99656.82244812195, + null, + 97479.47272277385, + 96597.50409519735, + null, + 97479.47272277385, + 96851.49702075154, + null, + 97479.47272277385, + 96605.92981897558, + null, + 97479.47272277385, + 96610.6899973968, + null, + 97409.25368271414, + 97966.35131578807, + null, + 97234.04346137235, + 97966.35131578807, + null, + 97434.01515339047, + 97966.35131578807, + null, + 97545.38850460328, + 97966.35131578807, + null, + 99676.52384181802, + 100140.2110009592, + null, + 99561.79056971268, + 99779.47732732524, + null, + 99561.79056971268, + 99727.4746257999, + null + ], + "y": [ + -561971.2488781825, + 357752.60761996574, + null, + -248481.98492127337, + -90110.53247666068, + null, + 485941.3956374863, + -798353.948987244, + null, + 499722.50452963763, + 435382.93784721714, + null, + 928534.9602815487, + 41947.26905584045, + null, + 732209.4835010477, + 916492.8733069033, + null, + -427115.71569997055, + -632418.384718779, + null, + 320117.776495078, + 26905.66458774213, + null, + -830265.2484131423, + -798353.948987244, + null, + 320792.0802057198, + 648026.9528531422, + null, + 736518.2931963585, + -789429.4666513097, + null, + -19486.05532677794, + -542593.2626462264, + null, + -19486.05532677794, + -488546.23140684003, + null, + -582178.1698576073, + -972626.8602657677, + null, + 555197.2759476387, + -798353.948987244, + null, + -140734.16671022752, + 72455.83117650512, + null, + -19486.05532677794, + -8911.961060123818, + null, + -8911.961060123818, + 622638.0385672044, + null, + -789429.4666513097, + 564903.2666182425, + null, + 167007.07363240785, + -403349.64446440444, + null, + -303089.9316090217, + 687313.4145299001, + null, + -52730.798036135115, + 896088.1357434693, + null, + -52730.798036135115, + 626708.9342158604, + null, + 961579.467886285, + 215807.38837979842, + null, + -202663.00039897067, + 80900.4134705249, + null, + 40745.30815238342, + 80900.4134705249, + null, + 80900.4134705249, + -584452.5975392128, + null, + 573054.9331839461, + 740677.9698150854, + null, + 829740.9884726934, + 646550.0102152668, + null, + -118967.65056689085, + 154619.27963724674, + null, + -430408.69367142377, + 492489.28452569584, + null, + 492489.28452569584, + -50237.45464432694, + null, + -393729.73948702647, + -516532.4346334024, + null, + 388189.0314436558, + 21266.019672495862, + null, + 723937.979277689, + -564572.1511337791, + null, + 234279.8583667003, + 723937.979277689, + null, + -919715.6513476778, + 136389.57166886012, + null, + 60087.40868944673, + -798353.948987244, + null, + -603153.4418319811, + -798353.948987244, + null, + 80900.4134705249, + -912578.2146259764, + null, + 293712.9911647245, + -823375.6845463197, + null, + -823375.6845463197, + 571406.0633091565, + null, + 80900.4134705249, + -220228.04861147137, + null, + -696677.5803865421, + 549108.2103193712, + null, + 223346.97203642075, + -80035.79353996515, + null, + 80900.4134705249, + -193151.43113910628, + null, + 119281.5836990242, + 869357.6704794308, + null, + -538892.5293056685, + 869357.6704794308, + null, + 549108.2103193712, + 136389.57166886012, + null, + 380558.86255500093, + -66295.78751266396, + null, + 86268.5009564601, + -66295.78751266396, + null, + -524230.97112853, + 863696.1061838248, + null, + -331959.35190203565, + -759838.0592273521, + null, + 943963.3176441911, + -132416.60859760086, + null, + 234279.8583667003, + -132416.60859760086, + null, + 84316.47222800476, + 79464.11354751293, + null, + 97597.4683300218, + 378102.4269270648, + null, + 676240.9125848004, + -466342.9318166086, + null, + -777596.2486685179, + -798353.948987244, + null, + -331959.35190203565, + -720095.8036049366, + null, + -355544.32129848766, + -470994.50507539365, + null, + -476273.1276913652, + -355544.32129848766, + null, + -53451.68392937527, + 137583.62112648715, + null, + 24394.25363660064, + 8818.411749580424, + null, + 8818.411749580424, + 137583.62112648715, + null, + -794708.5843885579, + 190817.3862176308, + null, + 190817.3862176308, + 416475.59817846667, + null, + 3836.93751836911, + -871313.1841874028, + null, + 3836.93751836911, + -744999.9975197095, + null, + -84479.25940606504, + 93923.50386986781, + null, + -960876.8746968672, + -939521.6065702572, + null, + -960876.8746968672, + -403559.0498918922, + null, + 1424.04536477736, + -511835.10056549683, + null, + 1424.04536477736, + 136222.14212906436, + null, + -215212.36870023963, + -511835.10056549683, + null, + -215212.36870023963, + 136222.14212906436, + null, + -871313.1841874028, + 678004.0310460662, + null, + 678004.0310460662, + -744999.9975197095, + null, + 268853.4083945595, + 678004.0310460662, + null, + -271848.2326017628, + -511835.10056549683, + null, + -271848.2326017628, + 136222.14212906436, + null, + 967221.0614340424, + -511835.10056549683, + null, + 967221.0614340424, + 136222.14212906436, + null, + 797067.1024426548, + -980550.0423792796, + null, + -652590.1100167118, + -511835.10056549683, + null, + 136222.14212906436, + -652590.1100167118, + null, + 187754.78403474975, + 822736.0575970106, + null, + 266050.5058661415, + 865706.3551566248, + null, + 266050.5058661415, + -744999.9975197095, + null, + -24313.27562736585, + 266050.5058661415, + null, + -452303.6428948102, + 908956.388232641, + null, + -90110.53247666068, + 908956.388232641, + null, + 366041.96609572903, + -648244.991695707, + null, + 172776.39778918587, + 23807.509457727916, + null, + 23807.509457727916, + 656668.1397421645, + null, + 865706.3551566248, + -728553.4342004756, + null, + 260741.21551704343, + 853979.6219467405, + null, + 136222.14212906436, + 260741.21551704343, + null, + 339621.7175567653, + 781903.2576086764, + null, + -101145.03213600123, + 781903.2576086764, + null, + -492289.95560486434, + -511835.10056549683, + null, + -492289.95560486434, + 136222.14212906436, + null, + 857546.9650280003, + 94873.53493206397, + null, + 622077.8967108367, + 94873.53493206397, + null, + -511835.10056549683, + -327830.46824779507, + null, + 136222.14212906436, + -327830.46824779507, + null, + -511835.10056549683, + 352822.69366063137, + null, + 136222.14212906436, + 352822.69366063137, + null, + 564623.901389222, + -639305.3749117295, + null, + 724722.810501609, + -639305.3749117295, + null, + -511835.10056549683, + -455152.81498195435, + null, + 136222.14212906436, + -455152.81498195435, + null, + 442757.68484231894, + 314223.9036003482, + null, + 442757.68484231894, + -421230.6879023977, + null, + 857925.4332927195, + -796663.8820716641, + null, + 857925.4332927195, + 555486.2492075114, + null, + -871313.1841874028, + 59490.81845283599, + null, + 865706.3551566248, + 59490.81845283599, + null, + -570501.502856549, + 433099.3009053603, + null, + -570501.502856549, + -760413.5928514852, + null, + 512418.37301278405, + 433099.3009053603, + null, + 512418.37301278405, + -760413.5928514852, + null, + -65291.32830599527, + -760413.5928514852, + null, + -65291.32830599527, + 433099.3009053603, + null, + -711912.2875698687, + 433099.3009053603, + null, + -711912.2875698687, + -760413.5928514852, + null, + 838336.938930091, + 433099.3009053603, + null, + 838336.938930091, + -760413.5928514852, + null, + 214188.2986562089, + 433099.3009053603, + null, + 214188.2986562089, + -760413.5928514852, + null, + -154009.85026286574, + 433099.3009053603, + null, + -154009.85026286574, + -760413.5928514852, + null, + -376327.766113145, + 433099.3009053603, + null, + -376327.766113145, + -760413.5928514852, + null, + -799736.3030984818, + -798353.948987244, + null, + 857925.4332927195, + 231374.89672372237, + null, + -829625.6193241415, + -760413.5928514852, + null, + -829625.6193241415, + 433099.3009053603, + null, + -366075.9996291276, + -760413.5928514852, + null, + -310614.24844851147, + -760413.5928514852, + null, + -130555.42373303797, + 433099.3009053603, + null, + -130555.42373303797, + -760413.5928514852, + null, + 220644.76755980577, + 433099.3009053603, + null, + 220644.76755980577, + -760413.5928514852, + null, + -467747.56417511945, + 433099.3009053603, + null, + -392765.2344766095, + 433099.3009053603, + null, + -392765.2344766095, + -760413.5928514852, + null, + -924492.6775443134, + 433099.3009053603, + null, + -924492.6775443134, + -760413.5928514852, + null, + 95349.34911518356, + 433099.3009053603, + null, + 95349.34911518356, + -760413.5928514852, + null, + 857925.4332927195, + -785865.0095857626, + null, + -871313.1841874028, + 650248.1538546915, + null, + -666473.7360947039, + 433099.3009053603, + null, + -760413.5928514852, + -666473.7360947039, + null, + -760413.5928514852, + -90280.97580804983, + null, + -760413.5928514852, + 413803.4222025198, + null, + 413803.4222025198, + 433099.3009053603, + null, + -31146.021709068882, + 433099.3009053603, + null, + -760413.5928514852, + -31146.021709068882, + null, + 882947.452932908, + 433099.3009053603, + null, + -760413.5928514852, + 882947.452932908, + null, + -760413.5928514852, + 774958.776786431, + null, + 774958.776786431, + 433099.3009053603, + null, + -760413.5928514852, + -589152.4602179294, + null, + 857925.4332927195, + -8648.759734667166, + null, + 234279.8583667003, + 909171.3263044639, + null, + 613176.8523483612, + 433099.3009053603, + null, + -760413.5928514852, + 613176.8523483612, + null, + -363283.9762819693, + 433099.3009053603, + null, + -760413.5928514852, + -363283.9762819693, + null, + 684712.2143138787, + 433099.3009053603, + null, + -760413.5928514852, + 684712.2143138787, + null, + 857925.4332927195, + 702824.6129750293, + null, + -760413.5928514852, + -296827.8058275355, + null, + -296827.8058275355, + 433099.3009053603, + null, + 748596.7069872333, + 433099.3009053603, + null, + -760413.5928514852, + 748596.7069872333, + null, + -426006.3258049323, + 805375.0664091872, + null, + 857925.4332927195, + -588391.8530006724, + null, + 17153.320272977668, + -514055.07099646307, + null, + 17153.320272977668, + 825926.8853153714, + null, + -729278.0097360006, + 433099.3009053603, + null, + -729278.0097360006, + -760413.5928514852, + null, + -63516.7902884326, + 433099.3009053603, + null, + -63516.7902884326, + -760413.5928514852, + null, + 767753.8548466698, + 433099.3009053603, + null, + 767753.8548466698, + -760413.5928514852, + null, + -751367.5420591463, + -516567.4010384933, + null, + 857925.4332927195, + 162042.82434157014, + null, + -513137.2306663264, + 433099.3009053603, + null, + -760413.5928514852, + -513137.2306663264, + null, + -760413.5928514852, + 70997.7278172833, + null, + 70997.7278172833, + 433099.3009053603, + null, + 109497.47980675429, + 433099.3009053603, + null, + -760413.5928514852, + 109497.47980675429, + null, + -760413.5928514852, + -224363.60706957182, + null, + 857925.4332927195, + -874956.6896985277, + null, + 134934.53742226126, + 137675.70726929267, + null, + -875201.8303563707, + 433099.3009053603, + null, + -875201.8303563707, + -760413.5928514852, + null, + -220221.85793093784, + 433099.3009053603, + null, + -220221.85793093784, + -760413.5928514852, + null, + 292554.6723110448, + -760413.5928514852, + null, + -355481.36179190635, + 433099.3009053603, + null, + -760413.5928514852, + -355481.36179190635, + null, + -714442.3601567178, + 433099.3009053603, + null, + -760413.5928514852, + -714442.3601567178, + null, + -928988.2919660928, + 433099.3009053603, + null, + -882679.9161115387, + 65147.734505308195, + null, + 463497.44530656055, + 433099.3009053603, + null, + -760413.5928514852, + 463497.44530656055, + null, + 489699.4114248838, + 433099.3009053603, + null, + -760413.5928514852, + 489699.4114248838, + null, + -760413.5928514852, + 193658.34138873962, + null, + 731333.7640762463, + 433099.3009053603, + null, + -760413.5928514852, + 731333.7640762463, + null, + 796680.2599351093, + 433099.3009053603, + null, + -760413.5928514852, + 796680.2599351093, + null, + 603112.8272869086, + -679272.8628710771, + null, + -30638.4478799393, + -444069.51839433506, + null, + -945452.0958848412, + -209509.89970261103, + null, + 857925.4332927195, + 683488.1063427635, + null, + 857925.4332927195, + -250634.23417695984, + null, + -27105.320221544327, + 433099.3009053603, + null, + -760413.5928514852, + -27105.320221544327, + null, + -603944.8929317786, + 433099.3009053603, + null, + -760413.5928514852, + -603944.8929317786, + null, + -760413.5928514852, + -797742.5961456918, + null, + -760413.5928514852, + 729024.8063747798, + null, + 729024.8063747798, + 433099.3009053603, + null, + 758420.5201432063, + 41641.151139011345, + null, + 408134.9017570932, + 329360.6656545258, + null, + -413556.5515011554, + 329360.6656545258, + null, + -679587.6662188853, + 433099.3009053603, + null, + -760413.5928514852, + -679587.6662188853, + null, + -621983.6116557595, + 433099.3009053603, + null, + -760413.5928514852, + -621983.6116557595, + null, + 857925.4332927195, + -242258.15629503745, + null, + 857925.4332927195, + -145531.0621780288, + null, + -760413.5928514852, + -259426.3160916983, + null, + 433099.3009053603, + 728291.2871302987, + null, + -760413.5928514852, + 728291.2871302987, + null, + -760413.5928514852, + -304466.032980671, + null, + 995551.9902090093, + 433099.3009053603, + null, + -760413.5928514852, + 995551.9902090093, + null, + -760413.5928514852, + -306661.8202763516, + null, + 433099.3009053603, + -306661.8202763516, + null, + -760413.5928514852, + 639610.3292748012, + null, + 433099.3009053603, + -334406.0414485144, + null, + -760413.5928514852, + -334406.0414485144, + null, + 433099.3009053603, + -515462.8047398662, + null, + -760413.5928514852, + -515462.8047398662, + null, + 433099.3009053603, + -233063.26254950615, + null, + -760413.5928514852, + -233063.26254950615, + null, + 433099.3009053603, + -43590.24737013506, + null, + -760413.5928514852, + -43590.24737013506, + null, + 433099.3009053603, + 740071.0560837049, + null, + -760413.5928514852, + 740071.0560837049, + null, + 433099.3009053603, + 472065.97600446566, + null, + -855146.2721229801, + -286954.5439037293, + null, + -855146.2721229801, + -491465.765949666, + null, + -84524.83828230939, + 436945.6847641666, + null, + 168555.33314674086, + -539735.3471405284, + null, + -737198.0039603662, + 168555.33314674086, + null, + 610252.5358888202, + -853583.6814727968, + null, + 165133.00164725963, + -753356.7470928162, + null, + -737198.0039603662, + -753356.7470928162, + null, + 165133.00164725963, + 703707.629045234, + null, + -737198.0039603662, + 703707.629045234, + null, + 333126.0673578338, + -737700.4080162377, + null, + -841411.7446565034, + 372473.6258653911, + null, + 865059.0151271991, + 795479.1857620578, + null, + 80900.4134705249, + 178546.58044182113, + null, + -732269.5048050025, + 581333.6039827648, + null, + 148481.05912251852, + 795479.1857620578, + null, + 465682.3850358889, + -539735.3471405284, + null, + -737198.0039603662, + 465682.3850358889, + null, + 483952.37676486524, + 446542.65288409765, + null, + -689821.0650496801, + -798353.948987244, + null, + 143445.50592646166, + 717122.7283950439, + null, + 549407.6083453385, + -328187.87404652004, + null, + -603906.0618509586, + 876326.4205485648, + null, + 165133.00164725963, + -379811.79012542387, + null, + -737198.0039603662, + -379811.79012542387, + null, + -95033.6351602028, + -356600.38477580127, + null, + 3911.094098997037, + -998021.5723692257, + null, + 699606.6979539392, + -286323.65232082235, + null, + 740677.9698150854, + -798353.948987244, + null, + -168035.18639889493, + -798353.948987244, + null, + 415316.73564771056, + -671618.5881212282, + null, + 415316.73564771056, + -492521.2859908892, + null, + -53696.519706066145, + -798353.948987244, + null, + 374168.31954809715, + -264903.34007845505, + null, + 374168.31954809715, + -699412.6159477539, + null, + -494621.1823249269, + -798353.948987244, + null, + 373946.061906882, + -798353.948987244, + null, + -198878.95025185842, + -798353.948987244, + null, + -264925.39578065986, + -264903.34007845505, + null, + -264925.39578065986, + -699412.6159477539, + null, + 780473.511102833, + -264903.34007845505, + null, + -98598.89577669834, + -437336.5666268163, + null, + -751952.5217245396, + -98598.89577669834, + null, + -492521.2859908892, + 363692.67162079224, + null, + -492521.2859908892, + 251113.04515835896, + null, + 573823.2357526305, + -739339.2768077732, + null, + 573823.2357526305, + -491465.765949666, + null, + 157126.94414015303, + -264903.34007845505, + null, + -751849.211181693, + -669750.0200522619, + null, + 232440.3037218077, + 269488.26230879617, + null, + 269488.26230879617, + 622783.2295132176, + null, + 269488.26230879617, + 622783.2295132176, + null, + 544971.4421925842, + -264903.34007845505, + null, + -699412.6159477539, + 544971.4421925842, + null, + -928069.3183483853, + -577768.8469843285, + null, + -751849.211181693, + -577768.8469843285, + null, + -628291.5742878261, + -234994.1008880867, + null, + -628291.5742878261, + -262800.2394146558, + null, + 127416.82008068355, + -628291.5742878261, + null, + -136641.84111491195, + -628291.5742878261, + null, + 581333.6039827648, + 820706.8041417582, + null, + -713140.5043605723, + -270807.8192827681, + null, + -492521.2859908892, + -713140.5043605723, + null, + 989908.6480350614, + -325047.43107249844, + null, + 933808.4401420316, + -798353.948987244, + null, + 232440.3037218077, + -859935.5712430583, + null, + -895212.9018650372, + -859935.5712430583, + null, + -190553.45310046757, + -264903.34007845505, + null, + -284044.9823208684, + 478395.24314106494, + null, + 763063.5826122563, + 478395.24314106494, + null, + 686503.780660142, + 263262.65327425057, + null, + 306476.69254405075, + -264903.34007845505, + null, + 689581.9221533792, + -700041.574958739, + null, + -216056.05943976957, + 643840.22925911, + null, + -684483.5026680101, + 3248.862588606238, + null, + 188128.43718252136, + -264903.34007845505, + null, + -699412.6159477539, + 188128.43718252136, + null, + -866514.3614885394, + -264903.34007845505, + null, + -516567.4010384933, + 391952.0217685493, + null, + 587585.9178245267, + 338340.5416757388, + null, + 581333.6039827648, + 587585.9178245267, + null, + 519512.47056427976, + 898976.4466029222, + null, + -492521.2859908892, + 898976.4466029222, + null, + -709594.0750426356, + -105816.72333048165, + null, + 894519.3453401669, + -481307.03273023135, + null, + 977246.3289523004, + -481307.03273023135, + null, + -722596.0243192979, + -264903.34007845505, + null, + -546822.917316347, + -264903.34007845505, + null, + 658170.6193614552, + -344873.2929242737, + null, + -492521.2859908892, + -344873.2929242737, + null, + -84479.25940606504, + -398770.7661075126, + null, + 165133.00164725963, + -528541.0184098254, + null, + -528541.0184098254, + 157813.52760825484, + null, + -39699.752065404995, + 396547.85146663676, + null, + 396547.85146663676, + 156230.57247712513, + null, + 156230.57247712513, + -267618.4977445102, + null, + 156230.57247712513, + -976423.1859303191, + null, + -39699.752065404995, + -185189.46272013735, + null, + 156230.57247712513, + -185189.46272013735, + null, + 165133.00164725963, + 247676.40367115295, + null, + 247676.40367115295, + 157813.52760825484, + null, + 360501.5741433544, + -609034.0689518001, + null, + -431269.4059996236, + -523785.3568719608, + null, + -398770.7661075126, + 762857.2261425807, + null, + 776859.7362429261, + -581160.2834020411, + null, + 93923.50386986781, + -46719.77261728788, + null, + 762857.2261425807, + -46719.77261728788, + null, + 165133.00164725963, + -838650.7902619013, + null, + 157813.52760825484, + -838650.7902619013, + null, + -516532.4346334024, + 479484.3428275586, + null, + 156230.57247712513, + 479484.3428275586, + null, + 216532.24708716245, + 251932.14804251696, + null, + 156230.57247712513, + 216532.24708716245, + null, + -877535.7425372708, + -780875.0823880362, + null, + 540210.7149106248, + -780875.0823880362, + null, + 165133.00164725963, + -723940.1258097029, + null, + 157813.52760825484, + -723940.1258097029, + null, + -932896.1480319446, + 502546.1747023512, + null, + -169468.39691167593, + 844788.3121640276, + null, + 901418.6408841481, + 251932.14804251696, + null, + 156230.57247712513, + 901418.6408841481, + null, + 824527.8530807551, + -752028.669463045, + null, + -398770.7661075126, + -36874.44108803395, + null, + -313272.6240859962, + 55632.74931077089, + null, + -39699.752065404995, + -633038.7243176452, + null, + 165133.00164725963, + -522086.82581271295, + null, + 157813.52760825484, + -522086.82581271295, + null, + -398770.7661075126, + 609483.8675344911, + null, + -39699.752065404995, + 628578.5710833605, + null, + 156230.57247712513, + 628578.5710833605, + null, + -801414.7210330585, + 52799.93731020172, + null, + -39699.752065404995, + -715732.0726698671, + null, + 156230.57247712513, + -715732.0726698671, + null, + 279966.3557332164, + 355350.20461515774, + null, + 789427.2454475953, + 11832.718016612009, + null, + -992505.0080537414, + -859410.1442000796, + null, + -39699.752065404995, + -760084.8701635192, + null, + 156230.57247712513, + -760084.8701635192, + null, + -865442.9888989801, + 19535.79334010014, + null, + -798353.948987244, + -948217.241158128, + null, + -798353.948987244, + -183734.46821322138, + null, + 733890.3528976466, + -489219.00989599497, + null, + 733890.3528976466, + 708074.4627284872, + null, + 213963.33845066495, + 261730.41322840817, + null, + -798353.948987244, + 642975.4186289314, + null, + 71612.73869665319, + 644562.9847490258, + null, + 733890.3528976466, + 71612.73869665319, + null, + -599737.6381537707, + 940375.9347545557, + null, + -599737.6381537707, + 973923.865699531, + null, + -912028.3900739019, + -362731.3319319623, + null, + -362731.3319319623, + 376498.38097867725, + null, + 314832.61957444774, + -666028.1096000503, + null, + -798353.948987244, + -391624.7702485367, + null, + 80900.4134705249, + -713261.4345312329, + null, + 520819.1797847843, + 716978.4937935866, + null, + 166563.21910749128, + 520819.1797847843, + null, + -415442.9643692379, + 520819.1797847843, + null, + -230178.665734591, + 710588.3397859995, + null, + 710588.3397859995, + 973923.865699531, + null, + 874899.8829013575, + -742214.1563278204, + null, + 147525.3688103151, + 843537.6298581809, + null, + 843537.6298581809, + 114617.33030475196, + null, + -394587.71773398516, + -593892.9974055766, + null, + 848803.1738579615, + -121097.83481917735, + null, + -798353.948987244, + 427642.3792832327, + null, + 895106.4409199255, + 609165.9469071773, + null, + -755164.0160033961, + -247226.5888012395, + null, + 154823.87797654007, + -247226.5888012395, + null, + 47356.756173632995, + 345322.7548513471, + null, + 859483.3846366437, + 660873.4936120859, + null, + 80900.4134705249, + -192795.72125363487, + null, + -538167.5108347839, + 114617.33030475196, + null, + 657365.6271911011, + -538167.5108347839, + null, + -737198.0039603662, + 588640.7653873737, + null, + 588640.7653873737, + -539735.3471405284, + null, + 435675.9543220927, + -744999.9975197095, + null, + -871313.1841874028, + 435675.9543220927, + null, + 267533.919953002, + -856130.2587879092, + null, + 670562.580638201, + 114617.33030475196, + null, + 657365.6271911011, + 670562.580638201, + null, + 889111.7196432959, + 124689.37349683506, + null, + -770159.5710452267, + 251276.7288205573, + null, + 166563.21910749128, + 251276.7288205573, + null, + -596190.3623041562, + 215807.38837979842, + null, + -596190.3623041562, + -685375.4367931215, + null, + -856967.643465035, + 716165.8203689172, + null, + -856967.643465035, + -810146.7985419923, + null, + -984443.754792288, + -464040.1906666423, + null, + -62403.741817278926, + -136967.12925162812, + null, + 769677.0959349022, + 61420.38844754105, + null, + 472490.8127912777, + -300232.6904947266, + null, + 472490.8127912777, + -921449.5136107212, + null, + -415631.97884143685, + 496815.64558863454, + null, + -164605.596558983, + -738250.8289512641, + null, + 484043.0763757415, + -164605.596558983, + null, + -798353.948987244, + 654105.9168274747, + null, + -337660.3714587161, + -75534.16139719138, + null, + -142850.86605370956, + 972996.8672718583, + null, + 653341.1729396186, + -300232.6904947266, + null, + 653341.1729396186, + 761319.1116145841, + null, + -798353.948987244, + 826838.430149214, + null, + -410120.8163161709, + -726548.2972093573, + null, + 80900.4134705249, + -826577.6302597478, + null, + 9184.204864025825, + -581160.2834020411, + null, + -354129.5147390149, + 9184.204864025825, + null, + 763063.5826122563, + 538141.078381243, + null, + 484043.0763757415, + -300232.6904947266, + null, + -738250.8289512641, + -300232.6904947266, + null, + -738250.8289512641, + -308332.6421673376, + null, + 290387.64113112923, + 399299.81825602544, + null, + 348890.6842165733, + 576023.9557127396, + null, + -581160.2834020411, + 931461.8027367103, + null, + -201077.28893387367, + 931461.8027367103, + null, + 777227.6485370373, + -680520.4512217782, + null, + 581152.7634022386, + 398541.8875847939, + null, + -781400.8241404402, + -838993.4959292777, + null, + -926492.4763239211, + -832881.8174814439, + null, + -738250.8289512641, + 436948.97429062915, + null, + 484043.0763757415, + 436948.97429062915, + null, + -670891.9752106941, + 461153.4304324787, + null, + -715769.8613540266, + 724373.0706768062, + null, + 813753.4664497739, + 955421.6910545222, + null, + -679954.6677934721, + 466494.25602173846, + null, + 506867.44054355135, + 466494.25602173846, + null, + 506867.44054355135, + -49348.148369764865, + null, + 724722.810501609, + -49348.148369764865, + null, + 249114.6831977078, + 144588.25855479616, + null, + -591110.0236427236, + 407747.7319779439, + null, + -591110.0236427236, + 676120.1647257245, + null, + -755164.0160033961, + 89392.0010538074, + null, + 154823.87797654007, + 89392.0010538074, + null, + 506867.44054355135, + 132798.95607938318, + null, + 496815.64558863454, + 91931.06655805062, + null, + -801414.7210330585, + -700482.1367019257, + null, + -384675.07445503556, + -61382.04524773561, + null, + 777474.9590574694, + 438607.9337618587, + null, + 86268.5009564601, + 438607.9337618587, + null, + 248561.20845968378, + 98126.38844718169, + null, + -790220.7334142552, + 98126.38844718169, + null, + 950198.0908976065, + -287081.77178865136, + null, + 382275.0290451855, + -287081.77178865136, + null, + 933808.4401420316, + 327420.21049277525, + null, + 552869.4717635097, + 451346.79566602444, + null, + 8892.875564424196, + -92182.90756983793, + null, + 300489.61733938253, + -539735.3471405284, + null, + -737198.0039603662, + 300489.61733938253, + null, + 380558.86255500093, + -733520.2290329352, + null, + 86268.5009564601, + -733520.2290329352, + null, + -798353.948987244, + 314475.51255708595, + null, + 103265.52651505772, + -925408.5950043334, + null, + -925408.5950043334, + 302223.85721211275, + null, + -198878.95025185842, + 869230.0455926161, + null, + 80900.4134705249, + -606904.34134762, + null, + -458472.05661537574, + -408199.66874220624, + null, + -798353.948987244, + 892664.0282068334, + null, + -198878.95025185842, + 884800.9847202292, + null, + 80637.57086429212, + -141079.84721057786, + null, + 506867.44054355135, + -882673.1103672587, + null, + 86268.5009564601, + -882673.1103672587, + null, + 80637.57086429212, + 771190.5433660143, + null, + 40992.187396631685, + 215807.38837979842, + null, + 40992.187396631685, + -685375.4367931215, + null, + 999523.6971017229, + 215807.38837979842, + null, + 999523.6971017229, + -685375.4367931215, + null, + 86268.5009564601, + 423913.7363855321, + null, + 724722.810501609, + 423913.7363855321, + null, + 642847.0387226039, + 215807.38837979842, + null, + 642847.0387226039, + 221274.26456686706, + null, + -854210.4399346987, + 47727.774492929195, + null, + -854210.4399346987, + -685375.4367931215, + null, + -331959.35190203565, + 271366.43278342934, + null, + -264903.34007845505, + 946204.5724373694, + null, + -699412.6159477539, + 946204.5724373694, + null, + 80900.4134705249, + 986489.6906019467, + null, + -685954.4456943838, + -294044.6431997588, + null, + -48784.054381242335, + -685954.4456943838, + null, + 896088.1357434693, + 28113.428232126036, + null, + 626708.9342158604, + 28113.428232126036, + null, + 896088.1357434693, + 300937.7278295571, + null, + -320680.4303555664, + 978712.3751622173, + null, + 724722.810501609, + 978712.3751622173, + null, + -641075.3967708645, + -133869.6936606516, + null, + 678016.0743584111, + 215807.38837979842, + null, + 678016.0743584111, + -685375.4367931215, + null, + -600373.0473810056, + 657339.9182578097, + null, + -638205.7306452933, + 215807.38837979842, + null, + -638205.7306452933, + -685375.4367931215, + null, + -928689.3966780811, + 215807.38837979842, + null, + -928689.3966780811, + -685375.4367931215, + null, + -736062.2053512099, + -836698.577788465, + null, + 978712.3751622173, + -736062.2053512099, + null, + 724722.810501609, + -736062.2053512099, + null, + -320680.4303555664, + -836698.577788465, + null, + 724722.810501609, + -836698.577788465, + null, + -329243.70121681655, + 215807.38837979842, + null, + -329243.70121681655, + -685375.4367931215, + null, + -365312.7924887023, + 215807.38837979842, + null, + -365312.7924887023, + -685375.4367931215, + null, + -798353.948987244, + -742281.4632809429, + null, + 380558.86255500093, + -234950.24425660828, + null, + 626708.9342158604, + -598964.6551841439, + null, + 724722.810501609, + -598964.6551841439, + null, + -300232.6904947266, + -212071.8731585296, + null, + -150204.22749384755, + 215807.38837979842, + null, + -150204.22749384755, + -685375.4367931215, + null, + 707538.2163043232, + 32838.698558043776, + null, + -48784.054381242335, + 32838.698558043776, + null, + -320680.4303555664, + -508841.12739114685, + null, + 724722.810501609, + -508841.12739114685, + null, + 896088.1357434693, + 305693.03914191906, + null, + -320680.4303555664, + 305693.03914191906, + null, + 215807.38837979842, + -429534.3235379718, + null, + -685375.4367931215, + -429534.3235379718, + null, + 215807.38837979842, + 68673.63805819892, + null, + -685375.4367931215, + 68673.63805819892, + null, + 657339.9182578097, + 651663.9434072415, + null, + 215807.38837979842, + -39987.05909251843, + null, + -685375.4367931215, + -39987.05909251843, + null, + -188630.5751925975, + -188630.5751925975, + null, + -188630.5751925975, + -188333.01761814565, + null, + -188333.01761814565, + -188120.26418891654, + null, + -188333.01761814565, + -188484.3860102188, + null, + -188333.01761814565, + -188495.23201231525, + null, + -188333.01761814565, + -188320.30928268767, + null, + -188333.01761814565, + -188483.56766699257, + null, + -188333.01761814565, + -187939.12845477546, + null, + -188120.26418891654, + -187818.23537279075, + null, + -188120.26418891654, + -187946.7603080632, + null, + -188630.5751925975, + -188484.3860102188, + null, + -188333.01761814565, + -188484.3860102188, + null, + -188320.30928268767, + -188197.8301536245, + null, + -188320.30928268767, + -188683.2303206299, + null, + -188320.30928268767, + -188503.10517806208, + null, + -188320.30928268767, + -188860.7645077761, + null, + -188320.30928268767, + -188943.16984077886, + null, + -188320.30928268767, + -189195.75127467563, + null, + -188320.30928268767, + -188593.0213982362, + null, + -188320.30928268767, + -188664.20873805106, + null, + -188320.30928268767, + -188389.7264047301, + null, + -188320.30928268767, + -188531.62632111614, + null, + -188320.30928268767, + -188870.3516127079, + null, + -188320.30928268767, + -188193.26327558464, + null, + -188320.30928268767, + -187318.35447427825, + null, + -188320.30928268767, + -189806.69206404962, + null, + -188320.30928268767, + -188090.2894991313, + null, + -188320.30928268767, + -188100.01616886404, + null, + -188320.30928268767, + -188174.55996141888, + null, + -188320.30928268767, + -188463.2031115645, + null, + -188320.30928268767, + -188363.74532847013, + null, + -188320.30928268767, + -187605.6195439504, + null, + -188320.30928268767, + -188732.3518539843, + null, + -188320.30928268767, + -184365.92318507173, + null, + -188320.30928268767, + -188187.27869729063, + null, + -188320.30928268767, + -188342.5253574899, + null, + -188320.30928268767, + -187588.75004952576, + null, + -188320.30928268767, + -189081.41342393393, + null, + -188320.30928268767, + -188060.79254294612, + null, + -188320.30928268767, + -188845.78996045736, + null, + -188320.30928268767, + -188800.35117287276, + null, + -188320.30928268767, + -188205.98013851763, + null, + -188320.30928268767, + -188992.01175242575, + null, + -188320.30928268767, + -188221.79324811854, + null, + -188320.30928268767, + -188559.27230275373, + null, + -188320.30928268767, + -188136.72692104083, + null, + -188320.30928268767, + -187550.377833089, + null, + -188320.30928268767, + -188302.59803287973, + null, + -188320.30928268767, + -187581.63192013613, + null, + -188320.30928268767, + -187717.56726598475, + null, + -188320.30928268767, + -188480.64988687172, + null, + -188320.30928268767, + -188160.1723451082, + null, + -188320.30928268767, + -188798.2366179604, + null, + -188320.30928268767, + -188090.79273053954, + null, + -188320.30928268767, + -187779.636684694, + null, + -188320.30928268767, + -188782.71424431694, + null, + -188320.30928268767, + -187419.76550716007, + null, + -188320.30928268767, + -188621.19074517605, + null, + -188320.30928268767, + -187478.37592567242, + null, + -188320.30928268767, + -187971.61344319995, + null, + -188320.30928268767, + -187778.30145997382, + null, + -188320.30928268767, + -187625.15506672708, + null, + -188320.30928268767, + -186611.5059282818, + null, + -188320.30928268767, + -188003.31924616438, + null, + -188320.30928268767, + -188139.1086900214, + null, + -188320.30928268767, + -188172.13924848195, + null, + -188320.30928268767, + -187348.161691788, + null, + -188320.30928268767, + -188223.82733587097, + null, + -188320.30928268767, + -188730.91358476676, + null, + -188320.30928268767, + -187886.4063756375, + null, + -188320.30928268767, + -188597.83399210958, + null, + -188320.30928268767, + -188057.1917578529, + null, + -188320.30928268767, + -188218.10363143042, + null, + -188320.30928268767, + -188210.32065825685, + null, + -188320.30928268767, + -188129.95134955403, + null, + -188320.30928268767, + -188196.78625864437, + null, + -188320.30928268767, + -188493.78120901805, + null, + -188320.30928268767, + -188034.45615562776, + null, + -188320.30928268767, + -188161.6224994722, + null, + -188320.30928268767, + -188173.13991697345, + null, + -188320.30928268767, + -188249.23314484346, + null, + -188320.30928268767, + -188327.77303545873, + null, + -188320.30928268767, + -188516.92372013946, + null, + -188320.30928268767, + -189362.5154690305, + null, + -188320.30928268767, + -188432.70004235505, + null, + -188320.30928268767, + -188115.43097167817, + null, + -188320.30928268767, + -188400.87592482337, + null, + -188320.30928268767, + -188482.24258789566, + null, + -188320.30928268767, + -188788.26218175198, + null, + -188320.30928268767, + -189293.36061735288, + null, + -188320.30928268767, + -189227.5443430391, + null, + -188320.30928268767, + -188131.32433438205, + null, + -188320.30928268767, + -188109.2701383384, + null, + -188320.30928268767, + -188095.6269492578, + null, + -188320.30928268767, + -188368.0469139002, + null, + -188320.30928268767, + -188160.44816852582, + null, + -188320.30928268767, + -188198.66663852846, + null, + -188320.30928268767, + -188806.49024330094, + null, + -188320.30928268767, + -189163.69044909158, + null, + -188320.30928268767, + -185208.78508001886, + null, + -188320.30928268767, + -188125.1114877186, + null, + -188320.30928268767, + -188534.0512551924, + null, + -188320.30928268767, + -188177.51543305253, + null, + -188320.30928268767, + -188133.61205856866, + null, + -188320.30928268767, + -188047.21116345978, + null, + -188320.30928268767, + -188112.59605802642, + null, + -188320.30928268767, + -188194.2363318084, + null, + -188320.30928268767, + -188117.56111774204, + null, + -188320.30928268767, + -188690.07025037165, + null, + -188320.30928268767, + -188656.54845148328, + null, + -188320.30928268767, + -188969.58942661897, + null, + -188320.30928268767, + -188902.73804542943, + null, + -188320.30928268767, + -189437.10887228855, + null, + -188320.30928268767, + -188334.74393636227, + null, + -188320.30928268767, + -189186.06009143573, + null, + -188320.30928268767, + -188965.52824986106, + null, + -188320.30928268767, + -188960.47562263405, + null, + -188320.30928268767, + -188470.92069224652, + null, + -188320.30928268767, + -188476.5108117482, + null, + -188320.30928268767, + -188140.7416293255, + null, + -188320.30928268767, + -188146.4029455515, + null, + -188320.30928268767, + -188071.56456675925, + null, + -188320.30928268767, + -188736.90081401754, + null, + -188320.30928268767, + -188963.01391432688, + null, + -188320.30928268767, + -188834.10272951444, + null, + -188320.30928268767, + -189003.73857407318, + null, + -188320.30928268767, + -187984.04010321392, + null, + -188320.30928268767, + -188504.82116380852, + null, + -188320.30928268767, + -188905.6100788483, + null, + -188320.30928268767, + -188469.95350641874, + null, + -188320.30928268767, + -188517.84736046946, + null, + -188320.30928268767, + -188304.5177743197, + null, + -188320.30928268767, + -188106.72693407602, + null, + -188320.30928268767, + -188224.97547898805, + null, + -188320.30928268767, + -188062.4324835948, + null, + -188320.30928268767, + -188068.27323340887, + null, + -188320.30928268767, + -188836.55324492624, + null, + -188320.30928268767, + -189360.7972441431, + null, + -188320.30928268767, + -188481.55600240765, + null, + -188320.30928268767, + -188657.5093365336, + null, + -188320.30928268767, + -188989.48748180468, + null, + -188320.30928268767, + -186433.20819659182, + null, + -188320.30928268767, + -187618.5955755901, + null, + -188320.30928268767, + -188608.14004422975, + null, + -188320.30928268767, + -188103.543164194, + null, + -188320.30928268767, + -188244.1581110861, + null, + -188320.30928268767, + -189169.82807631438, + null, + -188320.30928268767, + -187562.6954412684, + null, + -188320.30928268767, + -188597.59464444526, + null, + -188320.30928268767, + -188094.93147997395, + null, + -188320.30928268767, + -188497.24015716757, + null, + -188320.30928268767, + -186541.63161815086, + null, + -188320.30928268767, + -189066.48960328338, + null, + -188320.30928268767, + -188746.57951263554, + null, + -188320.30928268767, + -188974.92632111761, + null, + -188320.30928268767, + -188911.8607199644, + null, + -188320.30928268767, + -188919.7029759385, + null, + -188320.30928268767, + -188102.7775258803, + null, + -188320.30928268767, + -188377.38150042814, + null, + -188320.30928268767, + -188087.26616295817, + null, + -188320.30928268767, + -188979.0014231341, + null, + -188320.30928268767, + -188075.4320336564, + null, + -188320.30928268767, + -188078.45265644975, + null, + -188320.30928268767, + -188154.95367904997, + null, + -188320.30928268767, + -189231.2675484738, + null, + -188320.30928268767, + -188515.5389473062, + null, + -188320.30928268767, + -188291.51205377275, + null, + -188320.30928268767, + -188851.13864683165, + null, + -188320.30928268767, + -187819.11455949367, + null, + -188320.30928268767, + -189285.9657250609, + null, + -188320.30928268767, + -188590.74143741513, + null, + -188320.30928268767, + -188592.58854995444, + null, + -188320.30928268767, + -188149.64184463344, + null, + -188320.30928268767, + -188010.31234546934, + null, + -188320.30928268767, + -188060.2135347956, + null, + -188320.30928268767, + -188203.78076926843, + null, + -188320.30928268767, + -188646.02879834978, + null, + -188320.30928268767, + -188429.88264305083, + null, + -188320.30928268767, + -188690.19852216193, + null, + -188320.30928268767, + -189267.9620036595, + null, + -188320.30928268767, + -188566.821774848, + null, + -188320.30928268767, + -188252.50921945827, + null, + -188320.30928268767, + -188121.3122975104, + null, + -188320.30928268767, + -188198.51232125357, + null, + -188320.30928268767, + -188108.59779207408, + null, + -188320.30928268767, + -188127.2678753391, + null, + -188320.30928268767, + -188081.2142320706, + null, + -188320.30928268767, + -188533.7358044206, + null, + -188320.30928268767, + -187599.9393852977, + null, + -188320.30928268767, + -188530.48273097305, + null, + -188320.30928268767, + -188098.39897942072, + null, + -188320.30928268767, + -188674.40626418887, + null, + -188320.30928268767, + -188083.60697520856, + null, + -188320.30928268767, + -188148.15947986252, + null, + -188320.30928268767, + -188022.57383190584, + null, + -188320.30928268767, + -188130.72283528827, + null, + -188320.30928268767, + -188048.00492761855, + null, + -188320.30928268767, + -188170.03703741357, + null, + -188320.30928268767, + -188251.20192635697, + null, + -188320.30928268767, + -188251.14135969765, + null, + -188320.30928268767, + -189072.52109977874, + null, + -188320.30928268767, + -189421.3965259288, + null, + -188320.30928268767, + -188487.8442985911, + null, + -188320.30928268767, + -188909.27353199496, + null, + -188320.30928268767, + -188597.87223608652, + null, + -188320.30928268767, + -187913.85881532487, + null, + -188320.30928268767, + -188652.52674561567, + null, + -188320.30928268767, + -188835.22735785999, + null, + -188320.30928268767, + -188894.10833929706, + null, + -188320.30928268767, + -189390.9934105709, + null, + -188320.30928268767, + -189304.65399711, + null, + -188320.30928268767, + -188772.49683122957, + null, + -188320.30928268767, + -187066.75929757126, + null, + -188320.30928268767, + -188572.61534136938, + null, + -188320.30928268767, + -188424.95815413288, + null, + -188320.30928268767, + -188285.79535372727, + null, + -188320.30928268767, + -186683.14575150548, + null, + -188320.30928268767, + -188557.7500853805, + null, + -188320.30928268767, + -189297.14028084598, + null, + -188320.30928268767, + -189158.03047828437, + null, + -188320.30928268767, + -188273.612045506, + null, + -188320.30928268767, + -187641.16543157026, + null, + -188320.30928268767, + -188244.37359244894, + null, + -188320.30928268767, + -188328.36296298457, + null, + -188320.30928268767, + -186973.0577066971, + null, + -188320.30928268767, + -188676.80334905128, + null, + -188320.30928268767, + -188706.18078984448, + null, + -188320.30928268767, + -188123.2736693611, + null, + -188320.30928268767, + -188699.20817216582, + null, + -188320.30928268767, + -188902.71776057317, + null, + -188320.30928268767, + -188705.66239081704, + null, + -188320.30928268767, + -188651.89978288996, + null, + -188320.30928268767, + -188031.4228654602, + null, + -188320.30928268767, + -188507.5871274623, + null, + -188320.30928268767, + -188473.15080842157, + null, + -188320.30928268767, + -187558.11023642388, + null, + -188320.30928268767, + -189344.7791897772, + null, + -188320.30928268767, + -188568.03135249048, + null, + -188320.30928268767, + -189006.15667271154, + null, + -188320.30928268767, + -188907.33441810505, + null, + -188320.30928268767, + -188872.08380899028, + null, + -188320.30928268767, + -189090.95733044946, + null, + -188320.30928268767, + -188466.8921120741, + null, + -188320.30928268767, + -188916.39990961482, + null, + -188320.30928268767, + -188890.76276156757, + null, + -188320.30928268767, + -189031.25167023003, + null, + -188320.30928268767, + -190718.20336678185, + null, + -188320.30928268767, + -188924.92880801545, + null, + -188320.30928268767, + -189611.13910755786, + null, + -188320.30928268767, + -189371.07705115504, + null, + -188320.30928268767, + -187862.73468047418, + null, + -188320.30928268767, + -188350.84668912945, + null, + -188320.30928268767, + -188435.49777233123, + null, + -188320.30928268767, + -189286.4104808909, + null, + -188320.30928268767, + -189329.86947105004, + null, + -188320.30928268767, + -188827.20853608186, + null, + -188320.30928268767, + -188656.4246604865, + null, + -188320.30928268767, + -188224.81397464138, + null, + -188320.30928268767, + -188371.826375027, + null, + -188320.30928268767, + -188530.07168880716, + null, + -188320.30928268767, + -188684.380536833, + null, + -188320.30928268767, + -188809.10200272722, + null, + -188320.30928268767, + -189064.02055466248, + null, + -188320.30928268767, + -188910.5188593822, + null, + -188320.30928268767, + -187504.5939470865, + null, + -188320.30928268767, + -188238.2747120987, + null, + -188320.30928268767, + -189055.06434900622, + null, + -188320.30928268767, + -188985.5661371472, + null, + -188320.30928268767, + -188817.42461554098, + null, + -188320.30928268767, + -188328.4992507085, + null, + -188320.30928268767, + -188032.35686812358, + null, + -188320.30928268767, + -188989.35923942667, + null, + -188320.30928268767, + -188537.1492944953, + null, + -188320.30928268767, + -188332.10285588854, + null, + -188320.30928268767, + -188224.61386277262, + null, + -188320.30928268767, + -188398.43069892912, + null, + -188320.30928268767, + -188690.45660123866, + null, + -188320.30928268767, + -188764.5244681029, + null, + -188320.30928268767, + -188476.21098523034, + null, + -188320.30928268767, + -188906.10027535562, + null, + -188320.30928268767, + -188598.92292480564, + null, + -188483.56766699257, + -188338.53308343157, + null, + -187939.12845477546, + -188035.09619434597, + null, + -187939.12845477546, + -187471.21704082517, + null, + -187818.23537279075, + -187485.8021358164, + null, + -187818.23537279075, + -187835.19770223383, + null, + -187946.7603080632, + -187808.73897039745, + null, + -188197.8301536245, + -187808.73897039745, + null, + -188683.2303206299, + -188471.24794147993, + null, + -188683.2303206299, + -188922.89599843553, + null, + -188503.10517806208, + -188471.24794147993, + null, + -188860.7645077761, + -189190.69568859632, + null, + -188860.7645077761, + -188648.39727075843, + null, + -188860.7645077761, + -188995.8386599755, + null, + -188860.7645077761, + -188818.68200287974, + null, + -188943.16984077886, + -189419.4844744169, + null, + -188943.16984077886, + -189190.69568859632, + null, + -188943.16984077886, + -188648.39727075843, + null, + -188943.16984077886, + -188995.8386599755, + null, + -188943.16984077886, + -188818.68200287974, + null, + -189195.75127467563, + -188681.37081393888, + null, + -189195.75127467563, + -190034.5154898649, + null, + -189195.75127467563, + -189093.07196799477, + null, + -189195.75127467563, + -188332.3887565364, + null, + -189195.75127467563, + -189148.08464521947, + null, + -189195.75127467563, + -189778.0564884073, + null, + -189195.75127467563, + -188895.1305372902, + null, + -189195.75127467563, + -189361.39928674913, + null, + -189195.75127467563, + -189514.26395840745, + null, + -188593.0213982362, + -188424.82223649055, + null, + -188593.0213982362, + -189093.07196799477, + null, + -188593.0213982362, + -188154.87099078548, + null, + -188664.20873805106, + -188823.15900221813, + null, + -188389.7264047301, + -188236.33672313037, + null, + -188389.7264047301, + -188290.4882788216, + null, + -188531.62632111614, + -188591.75199645569, + null, + -188870.3516127079, + -188345.75062919507, + null, + -188870.3516127079, + -189486.94419473826, + null, + -188870.3516127079, + -189045.68105489522, + null, + -188193.26327558464, + -188680.97177115767, + null, + -188193.26327558464, + -187854.13914095613, + null, + -188193.26327558464, + -187620.89247314315, + null, + -187318.35447427825, + -187749.7848825597, + null, + -187318.35447427825, + -187628.5971893858, + null, + -187318.35447427825, + -186283.60700347682, + null, + -187318.35447427825, + -186870.78214397354, + null, + -189806.69206404962, + -189075.78000835242, + null, + -189806.69206404962, + -189556.635346552, + null, + -189806.69206404962, + -190524.42466711518, + null, + -189806.69206404962, + -189972.3782485477, + null, + -189806.69206404962, + -190110.09263707226, + null, + -189806.69206404962, + -189723.06164490216, + null, + -189806.69206404962, + -190104.18934124312, + null, + -189806.69206404962, + -191447.36757318178, + null, + -189806.69206404962, + -189487.1728230268, + null, + -188090.2894991313, + -187808.73897039745, + null, + -188100.01616886404, + -187808.73897039745, + null, + -188174.55996141888, + -187808.73897039745, + null, + -188463.2031115645, + -188337.61728350184, + null, + -188363.74532847013, + -188634.22396120222, + null, + -188363.74532847013, + -188577.10958302955, + null, + -188363.74532847013, + -188609.33112603877, + null, + -188363.74532847013, + -187678.114505735, + null, + -187605.6195439504, + -187393.45287008572, + null, + -187605.6195439504, + -187444.98398375107, + null, + -187605.6195439504, + -187212.75750088846, + null, + -187605.6195439504, + -187430.50547179487, + null, + -187605.6195439504, + -187206.375494998, + null, + -187605.6195439504, + -187142.3027271855, + null, + -188732.3518539843, + -189125.41464985392, + null, + -184365.92318507173, + -185759.04101010459, + null, + -184365.92318507173, + -184987.91450924633, + null, + -184365.92318507173, + -186636.99979215744, + null, + -184365.92318507173, + -187026.07843949736, + null, + -184365.92318507173, + -186362.3442443084, + null, + -184365.92318507173, + -184641.7612714999, + null, + -184365.92318507173, + -186631.89998789044, + null, + -184365.92318507173, + -185684.77267411654, + null, + -184365.92318507173, + -185952.0045384303, + null, + -184365.92318507173, + -184904.78554636845, + null, + -184365.92318507173, + -184466.17568020654, + null, + -184365.92318507173, + -187733.16720291993, + null, + -184365.92318507173, + -186005.44685669165, + null, + -184365.92318507173, + -185619.78884854354, + null, + -184365.92318507173, + -185702.8268145955, + null, + -184365.92318507173, + -186641.42486820777, + null, + -184365.92318507173, + -186086.34378531418, + null, + -184365.92318507173, + -186293.45287911844, + null, + -184365.92318507173, + -186774.72272855093, + null, + -184365.92318507173, + -186590.54840473336, + null, + -184365.92318507173, + -185178.65674855074, + null, + -184365.92318507173, + -185915.41451703524, + null, + -184365.92318507173, + -185024.2525256191, + null, + -184365.92318507173, + -187101.25689315388, + null, + -184365.92318507173, + -186246.8336915767, + null, + -184365.92318507173, + -185785.58597568647, + null, + -184365.92318507173, + -186910.03493563386, + null, + -184365.92318507173, + -184853.0590167661, + null, + -184365.92318507173, + -186226.79838547923, + null, + -184365.92318507173, + -186901.84865346336, + null, + -184365.92318507173, + -186721.96101630855, + null, + -184365.92318507173, + -184537.33337450697, + null, + -184365.92318507173, + -185045.17257071825, + null, + -184365.92318507173, + -185015.8206856978, + null, + -184365.92318507173, + -186804.32931589548, + null, + -184365.92318507173, + -184581.5176270497, + null, + -184365.92318507173, + -185481.01398954104, + null, + -184365.92318507173, + -186732.67988941015, + null, + -184365.92318507173, + -184625.82608792314, + null, + -184365.92318507173, + -186816.72669112886, + null, + -184365.92318507173, + -184583.06480907716, + null, + -184365.92318507173, + -185882.0659107163, + null, + -184365.92318507173, + -185038.89476309827, + null, + -184365.92318507173, + -185605.49639890593, + null, + -184365.92318507173, + -186050.83831655356, + null, + -184365.92318507173, + -185545.91429343188, + null, + -184365.92318507173, + -185541.4531936617, + null, + -184365.92318507173, + -186168.82581792577, + null, + -184365.92318507173, + -186748.98809619094, + null, + -184365.92318507173, + -186212.79235782122, + null, + -184365.92318507173, + -185138.3043013017, + null, + -184365.92318507173, + -185886.66303952422, + null, + -184365.92318507173, + -185943.81351701595, + null, + -184365.92318507173, + -187223.2607479505, + null, + -184365.92318507173, + -186155.98693221714, + null, + -184365.92318507173, + -186745.5325164879, + null, + -184365.92318507173, + -185873.2153007946, + null, + -184365.92318507173, + -184956.02375735843, + null, + -184365.92318507173, + -184916.01122916443, + null, + -184365.92318507173, + -187298.0167096983, + null, + -184365.92318507173, + -186400.0437673064, + null, + -184365.92318507173, + -186436.31884006507, + null, + -184365.92318507173, + -186909.73673779095, + null, + -184365.92318507173, + -185995.1502748551, + null, + -184365.92318507173, + -184615.0971850325, + null, + -184365.92318507173, + -187360.11530786066, + null, + -184365.92318507173, + -185731.06588292573, + null, + -184365.92318507173, + -185203.40536363234, + null, + -184365.92318507173, + -186738.0081330498, + null, + -184365.92318507173, + -184452.34215766398, + null, + -184365.92318507173, + -186427.8924649136, + null, + -184365.92318507173, + -185642.1433378504, + null, + -184365.92318507173, + -186666.6053800214, + null, + -184365.92318507173, + -185815.18416524283, + null, + -184365.92318507173, + -186758.5541269017, + null, + -184365.92318507173, + -187178.7309685011, + null, + -184365.92318507173, + -185344.84167674318, + null, + -184365.92318507173, + -186299.91453282413, + null, + -184365.92318507173, + -184913.47542316676, + null, + -184365.92318507173, + -186120.90133707918, + null, + -184365.92318507173, + -186355.57333992186, + null, + -184365.92318507173, + -186189.16120161928, + null, + -184365.92318507173, + -184489.52291589003, + null, + -184365.92318507173, + -186020.49632337195, + null, + -184365.92318507173, + -185978.46454360176, + null, + -184365.92318507173, + -186423.1890183184, + null, + -184365.92318507173, + -186357.39136631842, + null, + -184365.92318507173, + -186197.9689961989, + null, + -184365.92318507173, + -185022.86408063665, + null, + -184365.92318507173, + -187501.80648056217, + null, + -184365.92318507173, + -184448.27042316197, + null, + -184365.92318507173, + -185456.1454266718, + null, + -184365.92318507173, + -186332.64294302047, + null, + -184365.92318507173, + -184782.3347015735, + null, + -184365.92318507173, + -186335.73632380622, + null, + -184365.92318507173, + -186471.46349538234, + null, + -184365.92318507173, + -186139.010172475, + null, + -184365.92318507173, + -186316.0422884422, + null, + -184365.92318507173, + -185427.96582922543, + null, + -184365.92318507173, + -185447.0419864294, + null, + -184365.92318507173, + -184490.70631354378, + null, + -184365.92318507173, + -184939.12159409848, + null, + -184365.92318507173, + -185499.81083646082, + null, + -184365.92318507173, + -185420.27932112452, + null, + -184365.92318507173, + -186178.47202606747, + null, + -184365.92318507173, + -185579.11398649425, + null, + -184365.92318507173, + -162543.04429998007, + null, + -184365.92318507173, + -185402.97734600544, + null, + -184365.92318507173, + -184648.39875714693, + null, + -184365.92318507173, + -185873.0454380232, + null, + -184365.92318507173, + -185520.70192438262, + null, + -184365.92318507173, + -185045.13302486815, + null, + -184365.92318507173, + -184686.93743150224, + null, + -184365.92318507173, + -184749.34739859024, + null, + -184365.92318507173, + -184975.0257556787, + null, + -184365.92318507173, + -186494.74258418888, + null, + -184365.92318507173, + -186002.60660400984, + null, + -184365.92318507173, + -185421.69274864852, + null, + -184365.92318507173, + -184586.8813999643, + null, + -184365.92318507173, + -185681.38668976224, + null, + -184365.92318507173, + -186353.07679074036, + null, + -184365.92318507173, + -185564.40303426507, + null, + -184365.92318507173, + -186002.1139085686, + null, + -184365.92318507173, + -185305.14466217102, + null, + -184365.92318507173, + -185778.17229121647, + null, + -184365.92318507173, + -186985.55167581502, + null, + -184365.92318507173, + -186263.96942212473, + null, + -184365.92318507173, + -185857.1772490468, + null, + -184365.92318507173, + -185285.2393191878, + null, + -184365.92318507173, + -187056.932365551, + null, + -184365.92318507173, + -184676.4950788661, + null, + -184365.92318507173, + -184930.69103318956, + null, + -184365.92318507173, + -185654.1953572347, + null, + -184365.92318507173, + -184539.2197937198, + null, + -184365.92318507173, + -185426.67525594652, + null, + -184365.92318507173, + -185125.95912239008, + null, + -184365.92318507173, + -186228.52516030474, + null, + -184365.92318507173, + -185197.58467855424, + null, + -184365.92318507173, + -184440.56367975674, + null, + -184365.92318507173, + -185759.1915587864, + null, + -184365.92318507173, + -185972.1252497052, + null, + -184365.92318507173, + -186192.2420612465, + null, + -184365.92318507173, + -185572.22568055146, + null, + -184365.92318507173, + -184521.98992331282, + null, + -184365.92318507173, + -184716.55236438496, + null, + -184365.92318507173, + -187315.42788165333, + null, + -184365.92318507173, + -186517.17238975927, + null, + -184365.92318507173, + -185020.17742510125, + null, + -184365.92318507173, + -186047.50278945875, + null, + -184365.92318507173, + -186067.006560711, + null, + -184365.92318507173, + -185935.95217366592, + null, + -184365.92318507173, + -187267.3268205127, + null, + -184365.92318507173, + -186480.07163780744, + null, + -184365.92318507173, + -185251.66599737256, + null, + -184365.92318507173, + -186588.42377164616, + null, + -184365.92318507173, + -185212.56249281162, + null, + -184365.92318507173, + -185768.74376793872, + null, + -184365.92318507173, + -184566.5211927391, + null, + -184365.92318507173, + -184641.3699119499, + null, + -184365.92318507173, + -184521.26817218866, + null, + -184365.92318507173, + -187072.0455521363, + null, + -188187.27869729063, + -187795.37604648358, + null, + -187588.75004952576, + -187393.45287008572, + null, + -187588.75004952576, + -187444.98398375107, + null, + -187588.75004952576, + -187212.75750088846, + null, + -187588.75004952576, + -187430.50547179487, + null, + -187588.75004952576, + -187206.375494998, + null, + -187588.75004952576, + -187142.3027271855, + null, + -189081.41342393393, + -189725.6419856943, + null, + -188060.79254294612, + -187757.4125399983, + null, + -188060.79254294612, + -187976.81833544138, + null, + -188060.79254294612, + -187648.12160933763, + null, + -188845.78996045736, + -189190.69568859632, + null, + -188845.78996045736, + -188648.39727075843, + null, + -188845.78996045736, + -188995.8386599755, + null, + -188845.78996045736, + -188818.68200287974, + null, + -188800.35117287276, + -188696.13322752403, + null, + -188800.35117287276, + -189093.07196799477, + null, + -188800.35117287276, + -188681.37081393888, + null, + -188205.98013851763, + -188070.50402783387, + null, + -188992.01175242575, + -189274.10474049454, + null, + -188992.01175242575, + -189265.0331807753, + null, + -188992.01175242575, + -189023.51159242663, + null, + -188992.01175242575, + -189150.0722038921, + null, + -188992.01175242575, + -188785.27223021127, + null, + -188992.01175242575, + -189202.4647666379, + null, + -188221.79324811854, + -188283.2622476873, + null, + -188221.79324811854, + -188647.58850257998, + null, + -188221.79324811854, + -187775.4606762898, + null, + -188559.27230275373, + -189047.84983436737, + null, + -188559.27230275373, + -188214.95290711892, + null, + -188559.27230275373, + -187829.60079496383, + null, + -188559.27230275373, + -188860.81131323622, + null, + -188136.72692104083, + -187594.8777657927, + null, + -188136.72692104083, + -188109.5947916895, + null, + -188136.72692104083, + -188135.7951117508, + null, + -188136.72692104083, + -188126.67429510137, + null, + -188136.72692104083, + -188068.89540782082, + null, + -188136.72692104083, + -188138.17806449422, + null, + -188136.72692104083, + -188113.8147030654, + null, + -188136.72692104083, + -188119.49823623613, + null, + -188136.72692104083, + -188123.9780570342, + null, + -188136.72692104083, + -188121.51859750494, + null, + -188136.72692104083, + -188082.81454332572, + null, + -188136.72692104083, + -188023.85098966694, + null, + -188136.72692104083, + -188038.4334288893, + null, + -188136.72692104083, + -188097.6602407291, + null, + -188136.72692104083, + -188124.65543545736, + null, + -188136.72692104083, + -188079.8329504583, + null, + -188136.72692104083, + -188129.3743830729, + null, + -187550.377833089, + -187109.55145493208, + null, + -187550.377833089, + -186870.85476427, + null, + -188302.59803287973, + -188380.61838572615, + null, + -187581.63192013613, + -187444.98398375107, + null, + -187581.63192013613, + -187212.75750088846, + null, + -187581.63192013613, + -187393.45287008572, + null, + -187581.63192013613, + -187430.50547179487, + null, + -187581.63192013613, + -187206.375494998, + null, + -187581.63192013613, + -187142.3027271855, + null, + -187717.56726598475, + -187896.4403547719, + null, + -187717.56726598475, + -186832.87175251383, + null, + -187717.56726598475, + -188228.79178433472, + null, + -188480.64988687172, + -188560.0382335581, + null, + -188160.1723451082, + -187808.73897039745, + null, + -188798.2366179604, + -189116.42239682464, + null, + -188090.79273053954, + -187808.73897039745, + null, + -187779.636684694, + -187271.2309208508, + null, + -187779.636684694, + -188311.63055655325, + null, + -187779.636684694, + -187739.67693354897, + null, + -187779.636684694, + -187063.92444055318, + null, + -187779.636684694, + -187917.59257197715, + null, + -187779.636684694, + -187718.91875175654, + null, + -187779.636684694, + -187835.8854861633, + null, + -187779.636684694, + -186803.90033266746, + null, + -187779.636684694, + -186803.59234443662, + null, + -187779.636684694, + -187788.5747429511, + null, + -187779.636684694, + -187893.88302668915, + null, + -187779.636684694, + -187975.0076209473, + null, + -187779.636684694, + -188925.1717325238, + null, + -187779.636684694, + -188021.2228785292, + null, + -187779.636684694, + -187932.34492398132, + null, + -187779.636684694, + -188182.1801783731, + null, + -187779.636684694, + -187688.50752132258, + null, + -187779.636684694, + -188117.50710319917, + null, + -187779.636684694, + -187793.53772320974, + null, + -187779.636684694, + -188261.16935105162, + null, + -187779.636684694, + -187834.80609488173, + null, + -187779.636684694, + -188539.05431916684, + null, + -187779.636684694, + -187997.42121583116, + null, + -187779.636684694, + -187612.6161505803, + null, + -187779.636684694, + -187887.72467534128, + null, + -187779.636684694, + -187994.01573117293, + null, + -187779.636684694, + -186612.36184898173, + null, + -187779.636684694, + -187574.2721654691, + null, + -187779.636684694, + -188185.43487919736, + null, + -187779.636684694, + -187645.64505814915, + null, + -187779.636684694, + -187791.77040384425, + null, + -187779.636684694, + -187981.65234561847, + null, + -187779.636684694, + -188328.62880040111, + null, + -187779.636684694, + -186953.31740903624, + null, + -187779.636684694, + -188465.46750448947, + null, + -187779.636684694, + -187228.86858406416, + null, + -187779.636684694, + -187937.28779075225, + null, + -187779.636684694, + -187728.251997722, + null, + -187779.636684694, + -187741.77573005384, + null, + -187779.636684694, + -187158.59874792627, + null, + -187779.636684694, + -187975.58965748092, + null, + -187779.636684694, + -187927.83620065072, + null, + -187779.636684694, + -186563.98191544128, + null, + -187779.636684694, + -187904.33904992894, + null, + -188782.71424431694, + -189190.69568859632, + null, + -188782.71424431694, + -188648.39727075843, + null, + -188782.71424431694, + -188818.68200287974, + null, + -187419.76550716007, + -186517.6751626997, + null, + -188621.19074517605, + -188647.58850257998, + null, + -188621.19074517605, + -188788.84774377767, + null, + -188621.19074517605, + -188214.95290711892, + null, + -187478.37592567242, + -187457.0743764612, + null, + -187478.37592567242, + -187427.58017047317, + null, + -187478.37592567242, + -186780.2984968334, + null, + -187478.37592567242, + -187516.61720349116, + null, + -187971.61344319995, + -188036.28044668204, + null, + -187971.61344319995, + -187566.1094978599, + null, + -187971.61344319995, + -187881.7928789883, + null, + -187778.30145997382, + -187307.95076337553, + null, + -187778.30145997382, + -187950.03622824297, + null, + -187778.30145997382, + -187244.0460795401, + null, + -187625.15506672708, + -187306.8260455551, + null, + -187625.15506672708, + -186941.09836380862, + null, + -186611.5059282818, + -187281.55271362027, + null, + -186611.5059282818, + -184627.2559353374, + null, + -186611.5059282818, + -187265.23927959087, + null, + -188003.31924616438, + -187808.73897039745, + null, + -188139.1086900214, + -187879.37136154508, + null, + -188172.13924848195, + -187821.3765527352, + null, + -188172.13924848195, + -188384.35926426292, + null, + -187348.161691788, + -187883.60479267285, + null, + -187348.161691788, + -187489.15417484118, + null, + -187348.161691788, + -186717.18778761072, + null, + -187348.161691788, + -186287.99929102132, + null, + -187348.161691788, + -187805.10710923118, + null, + -187348.161691788, + -187648.9973224916, + null, + -187348.161691788, + -186146.62535800086, + null, + -187348.161691788, + -187493.66055654176, + null, + -187348.161691788, + -187627.45216360627, + null, + -187348.161691788, + -187246.44784323307, + null, + -187348.161691788, + -186544.6994452667, + null, + -187348.161691788, + -188210.8583614681, + null, + -187348.161691788, + -187744.5423702615, + null, + -187348.161691788, + -188036.86055892534, + null, + -187348.161691788, + -179133.13735543872, + null, + -187348.161691788, + -187953.2923392146, + null, + -187348.161691788, + -187258.52951028265, + null, + -187348.161691788, + -186551.5718918603, + null, + -187348.161691788, + -186296.09077217794, + null, + -187348.161691788, + -185926.73089974615, + null, + -187348.161691788, + -185395.93395849012, + null, + -187348.161691788, + -185879.15090298475, + null, + -187348.161691788, + -186605.81963314634, + null, + -187348.161691788, + -186705.75237789055, + null, + -187348.161691788, + -186345.44096085647, + null, + -187348.161691788, + -186875.28527664224, + null, + -187348.161691788, + -187527.73357511935, + null, + -187348.161691788, + -187567.52052119686, + null, + -187348.161691788, + -187774.1615382006, + null, + -187348.161691788, + -187413.64255787656, + null, + -187348.161691788, + -186699.2701887279, + null, + -187348.161691788, + -185739.58717722545, + null, + -187348.161691788, + -187270.5390270905, + null, + -187348.161691788, + -185576.15263923115, + null, + -187348.161691788, + -186350.72668639437, + null, + -187348.161691788, + -185754.93903104283, + null, + -187348.161691788, + -187305.67084880813, + null, + -187348.161691788, + -187046.43325413764, + null, + -187348.161691788, + -184234.61115541728, + null, + -187348.161691788, + -186972.57418070477, + null, + -187348.161691788, + -183824.5305223081, + null, + -187348.161691788, + -188073.66592800152, + null, + -187348.161691788, + -187728.06688195525, + null, + -187348.161691788, + -188874.14340416354, + null, + -187348.161691788, + -188459.36009707808, + null, + -187348.161691788, + -190374.15560172813, + null, + -187348.161691788, + -189063.428793386, + null, + -187348.161691788, + -188003.3208638465, + null, + -187348.161691788, + -187986.19049612174, + null, + -187348.161691788, + -189149.42833616625, + null, + -187348.161691788, + -188614.21318785282, + null, + -187348.161691788, + -188591.14091919875, + null, + -187348.161691788, + -187899.4374158756, + null, + -187348.161691788, + -187973.27776270141, + null, + -187348.161691788, + -188306.96972666128, + null, + -187348.161691788, + -188623.6166852075, + null, + -187348.161691788, + -188689.9069400571, + null, + -187348.161691788, + -188243.41945504982, + null, + -187348.161691788, + -187366.96961790608, + null, + -187348.161691788, + -188433.4935194492, + null, + -187348.161691788, + -188344.57017201104, + null, + -187348.161691788, + -188096.6720864056, + null, + -187348.161691788, + -190042.38359170523, + null, + -187348.161691788, + -187776.081074906, + null, + -187348.161691788, + -188131.29016873462, + null, + -187348.161691788, + -188443.1461449862, + null, + -187348.161691788, + -186553.62133220496, + null, + -187348.161691788, + -188002.51793235893, + null, + -187348.161691788, + -187969.50621106548, + null, + -187348.161691788, + -187790.99540247666, + null, + -187348.161691788, + -187346.30214189566, + null, + -187348.161691788, + -188420.23770977926, + null, + -187348.161691788, + -189713.61547225437, + null, + -187348.161691788, + -189579.9504364677, + null, + -187348.161691788, + -189111.4078263055, + null, + -187348.161691788, + -187949.63698018505, + null, + -187348.161691788, + -188522.7223023232, + null, + -187348.161691788, + -187937.26783141587, + null, + -187348.161691788, + -188130.4537181713, + null, + -187348.161691788, + -187934.23814137233, + null, + -187348.161691788, + -188172.74538859082, + null, + -187348.161691788, + -188739.05313596342, + null, + -187348.161691788, + -188776.96293003074, + null, + -187348.161691788, + -187409.36259250416, + null, + -187348.161691788, + -188147.54710943915, + null, + -187348.161691788, + -188912.98663177204, + null, + -187348.161691788, + -187872.6633840466, + null, + -187348.161691788, + -187983.6774823736, + null, + -187348.161691788, + -191242.41426244462, + null, + -187348.161691788, + -186152.69967393065, + null, + -187348.161691788, + -189386.63393714104, + null, + -187348.161691788, + -187511.94987432053, + null, + -187348.161691788, + -188311.50521847996, + null, + -187348.161691788, + -187429.57924484243, + null, + -187348.161691788, + -188069.86804999335, + null, + -187348.161691788, + -187683.73338858323, + null, + -187348.161691788, + -188441.93108825223, + null, + -187348.161691788, + -188229.31889099232, + null, + -187348.161691788, + -187736.63135462272, + null, + -187348.161691788, + -187992.83317437719, + null, + -187348.161691788, + -188118.8223297085, + null, + -187348.161691788, + -187582.59747798453, + null, + -187348.161691788, + -187476.39314391202, + null, + -187348.161691788, + -187234.4612318493, + null, + -187348.161691788, + -188221.49233807725, + null, + -187348.161691788, + -188309.63351146277, + null, + -187348.161691788, + -187764.81958165232, + null, + -187348.161691788, + -188226.41949047343, + null, + -187348.161691788, + -188297.22695862473, + null, + -187348.161691788, + -186800.93628583517, + null, + -187348.161691788, + -188080.7633837035, + null, + -187348.161691788, + -187297.44363830626, + null, + -187348.161691788, + -187963.97664086308, + null, + -187348.161691788, + -187969.50842343477, + null, + -187348.161691788, + -188021.3687563727, + null, + -187348.161691788, + -187972.53307352384, + null, + -187348.161691788, + -188078.52295971283, + null, + -187348.161691788, + -188978.81025809547, + null, + -187348.161691788, + -188226.32844361593, + null, + -187348.161691788, + -187679.47433074287, + null, + -187348.161691788, + -188763.44516650846, + null, + -187348.161691788, + -187724.4325574573, + null, + -187348.161691788, + -187610.1377688772, + null, + -187348.161691788, + -187354.91901122752, + null, + -187348.161691788, + -187993.51411086737, + null, + -187348.161691788, + -187185.02879405092, + null, + -187348.161691788, + -188028.29034553113, + null, + -187348.161691788, + -188188.52643226265, + null, + -187348.161691788, + -187803.06549553943, + null, + -187348.161691788, + -188463.31349680066, + null, + -187348.161691788, + -187834.08698576453, + null, + -187348.161691788, + -187975.40467572561, + null, + -187348.161691788, + -187987.12541376214, + null, + -187348.161691788, + -187517.9128709205, + null, + -188223.82733587097, + -188097.1885506176, + null, + -188223.82733587097, + -188083.10255481664, + null, + -188730.91358476676, + -188183.12236589222, + null, + -188730.91358476676, + -188158.79572465117, + null, + -188730.91358476676, + -189953.43285506195, + null, + -188730.91358476676, + -187785.39966082262, + null, + -188730.91358476676, + -188776.05672438274, + null, + -187886.4063756375, + -187556.7890851402, + null, + -187886.4063756375, + -187788.15822833957, + null, + -187886.4063756375, + -187203.12559746174, + null, + -187886.4063756375, + -188208.85344747134, + null, + -188057.1917578529, + -187808.73897039745, + null, + -188218.10363143042, + -187808.73897039745, + null, + -188210.32065825685, + -187808.73897039745, + null, + -188129.95134955403, + -187808.73897039745, + null, + -188196.78625864437, + -187879.37136154508, + null, + -188493.78120901805, + -188471.24794147993, + null, + -188034.45615562776, + -187808.73897039745, + null, + -188161.6224994722, + -188387.13883004195, + null, + -188161.6224994722, + -187775.03036984504, + null, + -188161.6224994722, + -188034.61082553468, + null, + -188161.6224994722, + -188046.35626590863, + null, + -188161.6224994722, + -188101.37584040826, + null, + -188173.13991697345, + -187808.73897039745, + null, + -188249.23314484346, + -188094.00217598723, + null, + -188327.77303545873, + -188101.37584040826, + null, + -188327.77303545873, + -188407.58725157817, + null, + -188516.92372013946, + -188482.5310615353, + null, + -189362.5154690305, + -190270.05275175368, + null, + -188432.70004235505, + -188517.9738436573, + null, + -188115.43097167817, + -187594.8777657927, + null, + -188115.43097167817, + -188109.5947916895, + null, + -188115.43097167817, + -188135.7951117508, + null, + -188115.43097167817, + -188126.67429510137, + null, + -188115.43097167817, + -188068.89540782082, + null, + -188115.43097167817, + -188138.17806449422, + null, + -188115.43097167817, + -188113.8147030654, + null, + -188115.43097167817, + -188119.49823623613, + null, + -188115.43097167817, + -188123.9780570342, + null, + -188115.43097167817, + -188121.51859750494, + null, + -188115.43097167817, + -188082.81454332572, + null, + -188115.43097167817, + -188023.85098966694, + null, + -188115.43097167817, + -188038.4334288893, + null, + -188115.43097167817, + -188097.6602407291, + null, + -188115.43097167817, + -188124.65543545736, + null, + -188115.43097167817, + -188079.8329504583, + null, + -188115.43097167817, + -188129.3743830729, + null, + -188400.87592482337, + -188362.35931727977, + null, + -188482.24258789566, + -188526.0290014248, + null, + -188482.24258789566, + -188562.5678949605, + null, + -188788.26218175198, + -188777.68796030607, + null, + -188788.26218175198, + -188198.9950582187, + null, + -188788.26218175198, + -188647.58850257998, + null, + -188788.26218175198, + -188204.97639419296, + null, + -188788.26218175198, + -188894.20780772806, + null, + -188788.26218175198, + -188877.75447919974, + null, + -188788.26218175198, + -189462.90626881117, + null, + -188788.26218175198, + -188932.21737437064, + null, + -188788.26218175198, + -188214.95290711892, + null, + -188788.26218175198, + -188795.16991496552, + null, + -188788.26218175198, + -188977.4576085, + null, + -188788.26218175198, + -189047.84983436737, + null, + -188788.26218175198, + -190074.33054887285, + null, + -188788.26218175198, + -187775.4606762898, + null, + -188788.26218175198, + -188697.3813039972, + null, + -188788.26218175198, + -188898.08155878072, + null, + -188788.26218175198, + -189113.8715419739, + null, + -188788.26218175198, + -188845.84495555653, + null, + -188788.26218175198, + -189204.34458726516, + null, + -188788.26218175198, + -189029.22851713432, + null, + -188788.26218175198, + -188216.02236323402, + null, + -188788.26218175198, + -190233.5032244461, + null, + -188788.26218175198, + -188846.81963719826, + null, + -188788.26218175198, + -186096.45797461583, + null, + -188788.26218175198, + -189624.14425346788, + null, + -188788.26218175198, + -188972.66635322545, + null, + -188788.26218175198, + -188756.88925757885, + null, + -188788.26218175198, + -188954.19885795217, + null, + -188788.26218175198, + -188231.47750730137, + null, + -188788.26218175198, + -188228.14569705023, + null, + -188788.26218175198, + -190039.66227026214, + null, + -188788.26218175198, + -188955.70075548417, + null, + -188788.26218175198, + -188817.15343371764, + null, + -188788.26218175198, + -188911.31765919903, + null, + -188788.26218175198, + -188817.64018552104, + null, + -188788.26218175198, + -188387.0195355698, + null, + -188788.26218175198, + -188217.19279192775, + null, + -188788.26218175198, + -188215.48726479657, + null, + -188788.26218175198, + -188940.66433230025, + null, + -188788.26218175198, + -189435.39611651178, + null, + -188788.26218175198, + -190181.63074577937, + null, + -188788.26218175198, + -188605.13434911743, + null, + -189293.36061735288, + -190160.9077330154, + null, + -189227.5443430391, + -189966.56620810815, + null, + -189227.5443430391, + -189999.31667014628, + null, + -189227.5443430391, + -188266.23380139962, + null, + -189227.5443430391, + -189466.79866331397, + null, + -189227.5443430391, + -188990.40385466997, + null, + -188131.32433438205, + -187594.8777657927, + null, + -188131.32433438205, + -188109.5947916895, + null, + -188131.32433438205, + -188135.7951117508, + null, + -188131.32433438205, + -188126.67429510137, + null, + -188131.32433438205, + -188068.89540782082, + null, + -188131.32433438205, + -188138.17806449422, + null, + -188131.32433438205, + -188113.8147030654, + null, + -188131.32433438205, + -188119.49823623613, + null, + -188131.32433438205, + -188123.9780570342, + null, + -188131.32433438205, + -188121.51859750494, + null, + -188131.32433438205, + -188082.81454332572, + null, + -188131.32433438205, + -188023.85098966694, + null, + -188131.32433438205, + -188038.4334288893, + null, + -188131.32433438205, + -188097.6602407291, + null, + -188131.32433438205, + -188124.65543545736, + null, + -188131.32433438205, + -188079.8329504583, + null, + -188131.32433438205, + -188129.3743830729, + null, + -188109.2701383384, + -187594.8777657927, + null, + -188109.2701383384, + -188109.5947916895, + null, + -188109.2701383384, + -188135.7951117508, + null, + -188109.2701383384, + -188126.67429510137, + null, + -188109.2701383384, + -188068.89540782082, + null, + -188109.2701383384, + -188138.17806449422, + null, + -188109.2701383384, + -188104.07716877718, + null, + -188109.2701383384, + -188119.49823623613, + null, + -188109.2701383384, + -188123.9780570342, + null, + -188109.2701383384, + -188121.51859750494, + null, + -188109.2701383384, + -188082.81454332572, + null, + -188109.2701383384, + -188023.85098966694, + null, + -188109.2701383384, + -188038.4334288893, + null, + -188109.2701383384, + -188097.6602407291, + null, + -188109.2701383384, + -188124.65543545736, + null, + -188109.2701383384, + -188079.8329504583, + null, + -188109.2701383384, + -188129.3743830729, + null, + -188095.6269492578, + -187749.7848825597, + null, + -188095.6269492578, + -187628.5971893858, + null, + -188095.6269492578, + -188549.88759442163, + null, + -188095.6269492578, + -188275.44850877777, + null, + -188095.6269492578, + -188155.0331583998, + null, + -188095.6269492578, + -188220.5960329952, + null, + -188368.0469139002, + -188295.15735575298, + null, + -188368.0469139002, + -188327.76182227116, + null, + -188160.44816852582, + -187808.73897039745, + null, + -188198.66663852846, + -187808.73897039745, + null, + -188806.49024330094, + -189229.17376885633, + null, + -188806.49024330094, + -188397.25088022946, + null, + -188806.49024330094, + -188984.20542329797, + null, + -188806.49024330094, + -189302.6007381189, + null, + -189163.69044909158, + -189570.55632521573, + null, + -189163.69044909158, + -189768.79952321426, + null, + -185208.78508001886, + -187278.70253330644, + null, + -185208.78508001886, + -186223.42382426502, + null, + -185208.78508001886, + -185538.47106454833, + null, + -185208.78508001886, + -181316.88675453834, + null, + -188125.1114877186, + -187594.8777657927, + null, + -188125.1114877186, + -188109.5947916895, + null, + -188125.1114877186, + -188135.7951117508, + null, + -188125.1114877186, + -188126.67429510137, + null, + -188125.1114877186, + -188068.89540782082, + null, + -188125.1114877186, + -188138.17806449422, + null, + -188125.1114877186, + -188113.8147030654, + null, + -188125.1114877186, + -188119.49823623613, + null, + -188125.1114877186, + -188123.9780570342, + null, + -188125.1114877186, + -188121.51859750494, + null, + -188125.1114877186, + -188082.81454332572, + null, + -188125.1114877186, + -188023.85098966694, + null, + -188125.1114877186, + -188038.4334288893, + null, + -188125.1114877186, + -188097.6602407291, + null, + -188125.1114877186, + -188124.65543545736, + null, + -188125.1114877186, + -188079.8329504583, + null, + -188125.1114877186, + -188129.3743830729, + null, + -188534.0512551924, + -188577.68911072935, + null, + -188177.51543305253, + -187808.73897039745, + null, + -188133.61205856866, + -187808.73897039745, + null, + -188047.21116345978, + -187808.73897039745, + null, + -188112.59605802642, + -187808.73897039745, + null, + -188194.2363318084, + -187808.73897039745, + null, + -188117.56111774204, + -187808.73897039745, + null, + -188690.07025037165, + -188471.24794147993, + null, + -188690.07025037165, + -188922.89599843553, + null, + -188656.54845148328, + -188471.24794147993, + null, + -188656.54845148328, + -188922.89599843553, + null, + -188969.58942661897, + -189429.78822251226, + null, + -188969.58942661897, + -189243.0403538959, + null, + -188902.73804542943, + -189251.3089257868, + null, + -188902.73804542943, + -188563.19407494835, + null, + -188902.73804542943, + -188854.39170410443, + null, + -188902.73804542943, + -189260.15851219348, + null, + -188902.73804542943, + -189231.4279713372, + null, + -188902.73804542943, + -188786.31293626514, + null, + -188902.73804542943, + -189104.52316957942, + null, + -188902.73804542943, + -189182.68148483842, + null, + -188902.73804542943, + -189072.0465506361, + null, + -188902.73804542943, + -188705.65600489438, + null, + -189437.10887228855, + -189967.28432425318, + null, + -189437.10887228855, + -189454.98816233617, + null, + -189437.10887228855, + -189757.15706957557, + null, + -189437.10887228855, + -189951.737106575, + null, + -189437.10887228855, + -188991.42081728007, + null, + -189437.10887228855, + -189636.0078208734, + null, + -189437.10887228855, + -190209.4983373492, + null, + -189437.10887228855, + -190012.9068404736, + null, + -189437.10887228855, + -189864.05117757033, + null, + -189437.10887228855, + -190050.28712576124, + null, + -189437.10887228855, + -188866.95996207467, + null, + -189437.10887228855, + -189208.00816211943, + null, + -189437.10887228855, + -189099.37048930768, + null, + -189437.10887228855, + -188483.7955207067, + null, + -189437.10887228855, + -188865.2383597738, + null, + -189437.10887228855, + -188899.90215259913, + null, + -189437.10887228855, + -188841.91500915465, + null, + -188334.74393636227, + -188310.94209393, + null, + -189186.06009143573, + -189567.91347630875, + null, + -189186.06009143573, + -189475.84370340698, + null, + -188965.52824986106, + -189256.76102591655, + null, + -188965.52824986106, + -189118.55548115997, + null, + -188965.52824986106, + -189287.09541988553, + null, + -188960.47562263405, + -189836.02265256474, + null, + -188960.47562263405, + -188267.79946330914, + null, + -188470.92069224652, + -188734.64348648756, + null, + -188470.92069224652, + -188499.89103916325, + null, + -188470.92069224652, + -188424.26831552497, + null, + -188470.92069224652, + -188471.16226267573, + null, + -188476.5108117482, + -188517.9738436573, + null, + -188140.7416293255, + -187808.73897039745, + null, + -188146.4029455515, + -187808.73897039745, + null, + -188071.56456675925, + -187808.73897039745, + null, + -188736.90081401754, + -188555.01680973297, + null, + -188736.90081401754, + -189062.6660397884, + null, + -188963.01391432688, + -189368.04321790536, + null, + -188963.01391432688, + -189207.12335782725, + null, + -188834.10272951444, + -189190.69568859632, + null, + -188834.10272951444, + -188648.39727075843, + null, + -188834.10272951444, + -188995.8386599755, + null, + -188834.10272951444, + -188818.68200287974, + null, + -189003.73857407318, + -189901.5373675402, + null, + -189003.73857407318, + -189093.07196799477, + null, + -189003.73857407318, + -188154.87099078548, + null, + -187984.04010321392, + -187627.1081749794, + null, + -187984.04010321392, + -187857.75124697632, + null, + -187984.04010321392, + -187760.40303329699, + null, + -187984.04010321392, + -187858.44732430877, + null, + -187984.04010321392, + -187957.10022871735, + null, + -188630.5751925975, + -188504.82116380852, + null, + -188333.01761814565, + -188504.82116380852, + null, + -188905.6100788483, + -188696.13322752403, + null, + -188905.6100788483, + -189093.07196799477, + null, + -188905.6100788483, + -188332.3887565364, + null, + -188905.6100788483, + -188486.6627500266, + null, + -188905.6100788483, + -188895.1305372902, + null, + -188905.6100788483, + -189361.39928674913, + null, + -188905.6100788483, + -189514.26395840745, + null, + -188469.95350641874, + -188672.58677714274, + null, + -188469.95350641874, + -188275.58704858087, + null, + -188304.5177743197, + -187965.95478834442, + null, + -188304.5177743197, + -187471.21704082517, + null, + -188304.5177743197, + -189024.27048204138, + null, + -188304.5177743197, + -188563.84477598095, + null, + -188106.72693407602, + -187808.73897039745, + null, + -188224.97547898805, + -187808.73897039745, + null, + -188062.4324835948, + -187808.73897039745, + null, + -188068.27323340887, + -187808.73897039745, + null, + -188836.55324492624, + -189010.6567271695, + null, + -188836.55324492624, + -189191.62724059867, + null, + -189360.7972441431, + -189723.8971601925, + null, + -189360.7972441431, + -190283.4150628221, + null, + -188481.55600240765, + -188471.24794147993, + null, + -188657.5093365336, + -188154.87099078548, + null, + -188657.5093365336, + -189093.07196799477, + null, + -188989.48748180468, + -188285.74392279977, + null, + -188989.48748180468, + -190048.63972499638, + null, + -188989.48748180468, + -189251.3089257868, + null, + -188989.48748180468, + -188563.19407494835, + null, + -188989.48748180468, + -188854.39170410443, + null, + -188989.48748180468, + -189260.15851219348, + null, + -188989.48748180468, + -189231.4279713372, + null, + -188989.48748180468, + -188786.31293626514, + null, + -188989.48748180468, + -189104.52316957942, + null, + -188989.48748180468, + -189182.68148483842, + null, + -188989.48748180468, + -189072.0465506361, + null, + -186433.20819659182, + -186790.41009242184, + null, + -186433.20819659182, + -187248.01430917686, + null, + -186433.20819659182, + -186364.1134175767, + null, + -186433.20819659182, + -184046.07233791953, + null, + -186433.20819659182, + -187468.17123172226, + null, + -186433.20819659182, + -187004.07979892765, + null, + -187618.5955755901, + -187444.98398375107, + null, + -187618.5955755901, + -187212.75750088846, + null, + -187618.5955755901, + -187393.45287008572, + null, + -187618.5955755901, + -187430.50547179487, + null, + -187618.5955755901, + -187206.375494998, + null, + -187618.5955755901, + -187142.3027271855, + null, + -188608.14004422975, + -188726.61235021544, + null, + -188103.543164194, + -187594.8777657927, + null, + -188103.543164194, + -188109.5947916895, + null, + -188103.543164194, + -188135.7951117508, + null, + -188103.543164194, + -188126.67429510137, + null, + -188103.543164194, + -188068.89540782082, + null, + -188103.543164194, + -188138.17806449422, + null, + -188103.543164194, + -188113.8147030654, + null, + -188103.543164194, + -188119.49823623613, + null, + -188103.543164194, + -188123.9780570342, + null, + -188103.543164194, + -188121.51859750494, + null, + -188103.543164194, + -188082.81454332572, + null, + -188103.543164194, + -188023.85098966694, + null, + -188103.543164194, + -188038.4334288893, + null, + -188103.543164194, + -188097.6602407291, + null, + -188103.543164194, + -188124.65543545736, + null, + -188103.543164194, + -188079.8329504583, + null, + -188103.543164194, + -188129.3743830729, + null, + -188244.1581110861, + -188040.02763009068, + null, + -189169.82807631438, + -188376.78890401422, + null, + -189169.82807631438, + -189797.29543539853, + null, + -189169.82807631438, + -188727.56930522466, + null, + -189169.82807631438, + -189767.66077987218, + null, + -189169.82807631438, + -189402.54379102314, + null, + -189169.82807631438, + -189855.4536758818, + null, + -189169.82807631438, + -188921.83564302602, + null, + -187562.6954412684, + -187109.55145493208, + null, + -187562.6954412684, + -186870.85476427, + null, + -188597.59464444526, + -188744.70646205018, + null, + -188094.93147997395, + -187808.73897039745, + null, + -188497.24015716757, + -188570.19383203107, + null, + -186541.63161815086, + -187452.2953444194, + null, + -186541.63161815086, + -186432.95981047777, + null, + -186541.63161815086, + -184493.4638333277, + null, + -189066.48960328338, + -189681.03829755695, + null, + -188746.57951263554, + -189180.69142051495, + null, + -188746.57951263554, + -189093.07196799477, + null, + -188746.57951263554, + -188154.87099078548, + null, + -188974.92632111761, + -189494.99190465917, + null, + -188911.8607199644, + -189418.3150618224, + null, + -188919.7029759385, + -189406.1804548177, + null, + -188919.7029759385, + -188956.60901643464, + null, + -188102.7775258803, + -187808.73897039745, + null, + -188377.38150042814, + -188286.47377093224, + null, + -188087.26616295817, + -187847.91597445504, + null, + -188087.26616295817, + -187772.9366644242, + null, + -188979.0014231341, + -189454.44287559506, + null, + -188979.0014231341, + -189336.90265698743, + null, + -188075.4320336564, + -187808.73897039745, + null, + -188078.45265644975, + -187808.73897039745, + null, + -188154.95367904997, + -187808.73897039745, + null, + -189231.2675484738, + -189688.38226235847, + null, + -189231.2675484738, + -189642.32271672558, + null, + -189231.2675484738, + -189773.80511431769, + null, + -188515.5389473062, + -188623.37539469652, + null, + -188291.51205377275, + -188471.24794147993, + null, + -188291.51205377275, + -188059.06910793387, + null, + -188851.13864683165, + -189486.94419473826, + null, + -188851.13864683165, + -188345.75062919507, + null, + -188851.13864683165, + -189045.68105489522, + null, + -187819.11455949367, + -186490.92481183048, + null, + -187819.11455949367, + -188035.43847485105, + null, + -187819.11455949367, + -187899.97545537198, + null, + -187819.11455949367, + -188759.4892448286, + null, + -189285.9657250609, + -189867.76456386773, + null, + -189285.9657250609, + -189265.0331807753, + null, + -189285.9657250609, + -188785.27223021127, + null, + -189285.9657250609, + -189150.0722038921, + null, + -189285.9657250609, + -189966.51788839934, + null, + -188149.64184463344, + -187864.57873495863, + null, + -188010.31234546934, + -188459.5042273985, + null, + -188010.31234546934, + -187485.8021358164, + null, + -188010.31234546934, + -187835.19770223383, + null, + -188060.2135347956, + -187808.73897039745, + null, + -188203.78076926843, + -187808.73897039745, + null, + -188646.02879834978, + -188471.24794147993, + null, + -188646.02879834978, + -188922.89599843553, + null, + -188429.88264305083, + -188339.61248515616, + null, + -188690.19852216193, + -188482.4680775093, + null, + -188690.19852216193, + -188956.60901643464, + null, + -189267.9620036595, + -190059.0897295911, + null, + -188252.50921945827, + -187808.73897039745, + null, + -188121.3122975104, + -187808.73897039745, + null, + -188198.51232125357, + -187808.73897039745, + null, + -188198.51232125357, + -188449.63396273268, + null, + -188108.59779207408, + -187808.73897039745, + null, + -188127.2678753391, + -187808.73897039745, + null, + -188081.2142320706, + -187808.73897039745, + null, + -188533.7358044206, + -188564.80121031718, + null, + -187599.9393852977, + -187393.45287008572, + null, + -187599.9393852977, + -187444.98398375107, + null, + -187599.9393852977, + -187212.75750088846, + null, + -187599.9393852977, + -187430.50547179487, + null, + -187599.9393852977, + -187206.375494998, + null, + -187599.9393852977, + -187142.3027271855, + null, + -188530.48273097305, + -188499.89103916325, + null, + -188530.48273097305, + -188934.75013167982, + null, + -188530.48273097305, + -188471.16226267573, + null, + -188098.39897942072, + -187594.8777657927, + null, + -188098.39897942072, + -188109.5947916895, + null, + -188098.39897942072, + -188135.7951117508, + null, + -188098.39897942072, + -188126.67429510137, + null, + -188098.39897942072, + -188068.89540782082, + null, + -188098.39897942072, + -188138.17806449422, + null, + -188098.39897942072, + -188113.8147030654, + null, + -188098.39897942072, + -188119.49823623613, + null, + -188098.39897942072, + -188123.9780570342, + null, + -188098.39897942072, + -188121.51859750494, + null, + -188098.39897942072, + -188082.81454332572, + null, + -188098.39897942072, + -188023.85098966694, + null, + -188098.39897942072, + -188038.4334288893, + null, + -188098.39897942072, + -188097.6602407291, + null, + -188098.39897942072, + -188124.65543545736, + null, + -188098.39897942072, + -188079.8329504583, + null, + -188098.39897942072, + -188129.3743830729, + null, + -188674.40626418887, + -188744.70646205018, + null, + -188083.60697520856, + -187808.73897039745, + null, + -188148.15947986252, + -187808.73897039745, + null, + -188022.57383190584, + -187808.73897039745, + null, + -188130.72283528827, + -187808.73897039745, + null, + -188048.00492761855, + -187808.73897039745, + null, + -188170.03703741357, + -187808.73897039745, + null, + -188251.20192635697, + -187821.3765527352, + null, + -188251.20192635697, + -188482.5310615353, + null, + -188251.14135969765, + -187821.3765527352, + null, + -188251.14135969765, + -188482.5310615353, + null, + -189072.52109977874, + -189407.17407776418, + null, + -189072.52109977874, + -189594.04877099616, + null, + -189421.3965259288, + -189928.77888545024, + null, + -189421.3965259288, + -190063.494640501, + null, + -189421.3965259288, + -190324.0838511919, + null, + -189421.3965259288, + -190002.50380021115, + null, + -189421.3965259288, + -189351.62227285848, + null, + -188487.8442985911, + -188667.17352392792, + null, + -188909.27353199496, + -189386.891690723, + null, + -188597.87223608652, + -188871.73421564943, + null, + -187913.85881532487, + -187862.98846391006, + null, + -187913.85881532487, + -187369.8494239768, + null, + -188652.52674561567, + -188047.51511369456, + null, + -188652.52674561567, + -188898.55180012845, + null, + -188652.52674561567, + -189023.57039513884, + null, + -188835.22735785999, + -189300.64988114213, + null, + -188894.10833929706, + -189304.23943329643, + null, + -189390.9934105709, + -189802.91324633866, + null, + -189390.9934105709, + -189198.96904724132, + null, + -189390.9934105709, + -190149.611876793, + null, + -189304.65399711, + -189688.97127087243, + null, + -189304.65399711, + -190162.42457619242, + null, + -188772.49683122957, + -189121.32206798793, + null, + -187066.75929757126, + -185673.72485317432, + null, + -187066.75929757126, + -187602.98284577316, + null, + -187066.75929757126, + -187118.0943589478, + null, + -187066.75929757126, + -187049.29511418982, + null, + -188572.61534136938, + -188760.63914555783, + null, + -188572.61534136938, + -188352.16461745944, + null, + -188572.61534136938, + -188788.10931841948, + null, + -188424.95815413288, + -188307.55943122407, + null, + -188285.79535372727, + -188482.5310615353, + null, + -188285.79535372727, + -187821.3765527352, + null, + -186683.14575150548, + -185447.3982690385, + null, + -186683.14575150548, + -185647.43874032347, + null, + -186683.14575150548, + -186600.68816277097, + null, + -186683.14575150548, + -186490.92481183048, + null, + -189297.14028084598, + -190030.77698961753, + null, + -189297.14028084598, + -189844.44305599996, + null, + -189297.14028084598, + -189312.96716657415, + null, + -189158.03047828437, + -188863.83470003767, + null, + -189158.03047828437, + -190030.6059389626, + null, + -189158.03047828437, + -188831.9884617397, + null, + -189158.03047828437, + -188800.5645587159, + null, + -188273.612045506, + -188270.16098356986, + null, + -188273.612045506, + -187862.98846391006, + null, + -188273.612045506, + -188288.73056814942, + null, + -188273.612045506, + -188325.90735821644, + null, + -187641.16543157026, + -187036.11661907207, + null, + -187641.16543157026, + -187430.4310402768, + null, + -187641.16543157026, + -187168.63791618857, + null, + -188244.37359244894, + -188085.78649439852, + null, + -188244.37359244894, + -188069.8757916443, + null, + -188244.37359244894, + -188377.16521032414, + null, + -188328.36296298457, + -188482.5310615353, + null, + -188328.36296298457, + -187821.3765527352, + null, + -186973.0577066971, + -181388.6636291559, + null, + -186973.0577066971, + -186958.0626639662, + null, + -186973.0577066971, + -187792.11829844635, + null, + -186973.0577066971, + -186964.88142731908, + null, + -186973.0577066971, + -186890.040734751, + null, + -186973.0577066971, + -187516.96845806637, + null, + -186973.0577066971, + -187371.3989655883, + null, + -186973.0577066971, + -187673.56257634406, + null, + -186973.0577066971, + -188468.66418560426, + null, + -186973.0577066971, + -187827.28797163125, + null, + -186973.0577066971, + -188015.37292595976, + null, + -186973.0577066971, + -186963.61210988168, + null, + -186973.0577066971, + -186909.75756834846, + null, + -186973.0577066971, + -188500.0586157652, + null, + -186973.0577066971, + -187625.4001681701, + null, + -186973.0577066971, + -186957.07730695538, + null, + -186973.0577066971, + -187126.5717021234, + null, + -186973.0577066971, + -187092.89589648045, + null, + -186973.0577066971, + -187547.0278070721, + null, + -186973.0577066971, + -186215.06335089865, + null, + -186973.0577066971, + -186961.92845610308, + null, + -186973.0577066971, + -187072.4040574778, + null, + -186973.0577066971, + -186908.50557712573, + null, + -186973.0577066971, + -187018.58994966594, + null, + -186973.0577066971, + -186937.57642460006, + null, + -186973.0577066971, + -187082.89602712472, + null, + -186973.0577066971, + -186995.12405826268, + null, + -186973.0577066971, + -187033.26399727527, + null, + -186973.0577066971, + -187917.0637720583, + null, + -186973.0577066971, + -187031.77413979647, + null, + -186973.0577066971, + -188265.26483815484, + null, + -186973.0577066971, + -186858.39035521806, + null, + -186973.0577066971, + -188079.2339962156, + null, + -186973.0577066971, + -187486.7108342232, + null, + -186973.0577066971, + -187583.99768382817, + null, + -186973.0577066971, + -187642.49697600745, + null, + -186973.0577066971, + -186233.90314590227, + null, + -186973.0577066971, + -187072.79060259266, + null, + -186973.0577066971, + -187621.1473503119, + null, + -186973.0577066971, + -187006.72435799113, + null, + -186973.0577066971, + -187790.78028682835, + null, + -186973.0577066971, + -187892.14861530808, + null, + -188676.80334905128, + -188892.18297269146, + null, + -188676.80334905128, + -188905.7409194041, + null, + -188676.80334905128, + -189138.7526208499, + null, + -188676.80334905128, + -189186.7934963984, + null, + -188676.80334905128, + -188827.6268164547, + null, + -188676.80334905128, + -188634.27361204935, + null, + -188676.80334905128, + -188976.67306946605, + null, + -188676.80334905128, + -188450.6558889738, + null, + -188676.80334905128, + -188410.6730522339, + null, + -188676.80334905128, + -188982.28023135234, + null, + -188706.18078984448, + -188863.83470003767, + null, + -188706.18078984448, + -188901.95839418104, + null, + -188123.2736693611, + -188293.05528383492, + null, + -188123.2736693611, + -188304.60597921925, + null, + -188123.2736693611, + -187602.98284577316, + null, + -188699.20817216582, + -189027.32662829437, + null, + -188699.20817216582, + -188703.02110051003, + null, + -188902.71776057317, + -188270.16098356986, + null, + -188902.71776057317, + -189670.30367153513, + null, + -188902.71776057317, + -187994.90708299744, + null, + -188902.71776057317, + -188227.91479363065, + null, + -188902.71776057317, + -188959.37304124728, + null, + -188902.71776057317, + -188384.46387554856, + null, + -188902.71776057317, + -188423.99184216498, + null, + -188902.71776057317, + -188238.2147196666, + null, + -188902.71776057317, + -189253.3339606655, + null, + -188902.71776057317, + -189185.39353573837, + null, + -188902.71776057317, + -189354.40611590687, + null, + -188902.71776057317, + -189275.31015895875, + null, + -188902.71776057317, + -189331.45564091532, + null, + -188902.71776057317, + -188567.58941515462, + null, + -188902.71776057317, + -189030.19349696804, + null, + -188902.71776057317, + -189196.05341570152, + null, + -188902.71776057317, + -189004.60313990066, + null, + -188902.71776057317, + -189177.62541549082, + null, + -188902.71776057317, + -189238.99357410418, + null, + -188902.71776057317, + -188534.02363205954, + null, + -188902.71776057317, + -189103.72355039057, + null, + -188902.71776057317, + -188253.45353298465, + null, + -188902.71776057317, + -188413.92210597807, + null, + -188902.71776057317, + -188679.23184501874, + null, + -188902.71776057317, + -188187.00891794523, + null, + -188902.71776057317, + -189002.36578898947, + null, + -188902.71776057317, + -189314.34425935848, + null, + -188902.71776057317, + -189077.88806110198, + null, + -188902.71776057317, + -189112.1678726178, + null, + -188902.71776057317, + -188644.9068178371, + null, + -188902.71776057317, + -188854.15596558747, + null, + -188902.71776057317, + -189111.59184893724, + null, + -188902.71776057317, + -188992.06395225637, + null, + -188902.71776057317, + -189040.44316666905, + null, + -188902.71776057317, + -189146.26340260505, + null, + -188902.71776057317, + -188960.36420407722, + null, + -188902.71776057317, + -188977.27182089942, + null, + -188902.71776057317, + -190700.1111637919, + null, + -188902.71776057317, + -189013.04796735963, + null, + -188902.71776057317, + -189379.49234130658, + null, + -188902.71776057317, + -188621.49299553412, + null, + -188902.71776057317, + -189304.65394903507, + null, + -188902.71776057317, + -189125.53360787733, + null, + -188902.71776057317, + -189135.01597268603, + null, + -188902.71776057317, + -189115.81575099364, + null, + -188902.71776057317, + -189157.19198902682, + null, + -188902.71776057317, + -188738.48340001726, + null, + -188902.71776057317, + -188921.90699962387, + null, + -188902.71776057317, + -189360.31796682146, + null, + -188902.71776057317, + -189070.91343901315, + null, + -188902.71776057317, + -190093.18905705298, + null, + -188902.71776057317, + -189047.08598048709, + null, + -188902.71776057317, + -189299.65616548483, + null, + -188902.71776057317, + -189095.541722688, + null, + -188902.71776057317, + -188344.0930836277, + null, + -188902.71776057317, + -189171.19029766714, + null, + -188902.71776057317, + -189042.28405360697, + null, + -188902.71776057317, + -189119.99497062556, + null, + -188902.71776057317, + -188237.25251034857, + null, + -188902.71776057317, + -189195.42176761568, + null, + -188902.71776057317, + -189062.39520516488, + null, + -188902.71776057317, + -189376.82012229282, + null, + -188902.71776057317, + -188752.9247450727, + null, + -188902.71776057317, + -189405.91331066622, + null, + -188902.71776057317, + -189552.3086334869, + null, + -188902.71776057317, + -189502.59770853355, + null, + -188902.71776057317, + -189170.9678004025, + null, + -188902.71776057317, + -189264.0420911513, + null, + -188902.71776057317, + -189503.85032749924, + null, + -188902.71776057317, + -189204.769419827, + null, + -188902.71776057317, + -188590.4523846817, + null, + -188902.71776057317, + -188232.11752967277, + null, + -188902.71776057317, + -189226.9114919114, + null, + -188902.71776057317, + -189164.54245151358, + null, + -188902.71776057317, + -189027.77132385422, + null, + -188902.71776057317, + -189230.86162244383, + null, + -188902.71776057317, + -189066.13649801663, + null, + -188902.71776057317, + -188975.60125457792, + null, + -188902.71776057317, + -189062.5039727102, + null, + -188902.71776057317, + -189350.8806358681, + null, + -188902.71776057317, + -188269.15616936548, + null, + -188902.71776057317, + -188968.20482936336, + null, + -188902.71776057317, + -188815.02865766146, + null, + -188902.71776057317, + -189043.76513096062, + null, + -188902.71776057317, + -189256.66974275385, + null, + -188902.71776057317, + -189395.66537570828, + null, + -188902.71776057317, + -189168.39200200443, + null, + -188902.71776057317, + -189180.9410564133, + null, + -188902.71776057317, + -189294.69067324145, + null, + -188902.71776057317, + -189527.4692278551, + null, + -188902.71776057317, + -188818.7674323714, + null, + -188902.71776057317, + -189257.13683550936, + null, + -188902.71776057317, + -189100.23306250124, + null, + -188902.71776057317, + -189550.2287127826, + null, + -188902.71776057317, + -189290.7525839601, + null, + -188902.71776057317, + -189267.28726523466, + null, + -188902.71776057317, + -188239.65910895087, + null, + -188902.71776057317, + -187509.8701143695, + null, + -188902.71776057317, + -187500.4930551508, + null, + -188902.71776057317, + -189204.5507592727, + null, + -188902.71776057317, + -189093.8532022557, + null, + -188902.71776057317, + -189171.2221999843, + null, + -188902.71776057317, + -189071.60158787234, + null, + -188902.71776057317, + -189093.08976506037, + null, + -188902.71776057317, + -189407.5843037053, + null, + -188902.71776057317, + -189481.84477904785, + null, + -188902.71776057317, + -188480.6248001793, + null, + -188902.71776057317, + -187643.83786716606, + null, + -188902.71776057317, + -188410.19015950867, + null, + -188902.71776057317, + -189244.75125275418, + null, + -188902.71776057317, + -189322.13919379382, + null, + -188902.71776057317, + -189036.37157464225, + null, + -188902.71776057317, + -188851.6819268115, + null, + -188902.71776057317, + -188288.73056814942, + null, + -188902.71776057317, + -189227.67375761928, + null, + -188902.71776057317, + -189075.98850339456, + null, + -188902.71776057317, + -188744.13909734573, + null, + -188902.71776057317, + -189286.49138647597, + null, + -188902.71776057317, + -189153.23345672205, + null, + -188902.71776057317, + -187858.47857020143, + null, + -188902.71776057317, + -189295.42475244775, + null, + -188902.71776057317, + -187862.98846391006, + null, + -188902.71776057317, + -189309.40406356056, + null, + -188902.71776057317, + -189446.06561523385, + null, + -188902.71776057317, + -189270.95690073894, + null, + -188902.71776057317, + -189371.36833568558, + null, + -188902.71776057317, + -189045.81476778517, + null, + -188902.71776057317, + -189090.02633489924, + null, + -188902.71776057317, + -189167.51060793153, + null, + -188902.71776057317, + -188997.7891351952, + null, + -188902.71776057317, + -189166.2520355059, + null, + -188902.71776057317, + -189128.02287472552, + null, + -188902.71776057317, + -189377.71392390993, + null, + -188902.71776057317, + -189261.63282785052, + null, + -188902.71776057317, + -189189.44204252012, + null, + -188902.71776057317, + -188832.0659363745, + null, + -188902.71776057317, + -189372.78444553076, + null, + -188902.71776057317, + -189522.90111062877, + null, + -188902.71776057317, + -189215.01194453132, + null, + -188902.71776057317, + -189188.26284097042, + null, + -188902.71776057317, + -190170.23694941032, + null, + -188902.71776057317, + -189137.65822856384, + null, + -188902.71776057317, + -189532.13206147918, + null, + -188902.71776057317, + -189244.33702691298, + null, + -188902.71776057317, + -189342.90886317022, + null, + -188902.71776057317, + -189601.42301397282, + null, + -188902.71776057317, + -189001.4148694418, + null, + -188902.71776057317, + -189031.42372914587, + null, + -188902.71776057317, + -188346.60400362083, + null, + -188902.71776057317, + -189432.19725203505, + null, + -188902.71776057317, + -189383.60172976655, + null, + -188902.71776057317, + -188396.23465801778, + null, + -188902.71776057317, + -188159.4341766519, + null, + -188902.71776057317, + -188977.16363192897, + null, + -188902.71776057317, + -188924.8418972556, + null, + -188902.71776057317, + -189025.99171597915, + null, + -188902.71776057317, + -189271.29959663784, + null, + -188902.71776057317, + -188897.62049298765, + null, + -188902.71776057317, + -188978.69804431516, + null, + -188902.71776057317, + -188947.4139822555, + null, + -188902.71776057317, + -189026.34351702797, + null, + -188902.71776057317, + -188711.72538129365, + null, + -188902.71776057317, + -189104.3400123642, + null, + -188902.71776057317, + -189226.8573059561, + null, + -188902.71776057317, + -188884.40182536017, + null, + -188902.71776057317, + -189212.70822393885, + null, + -188902.71776057317, + -189665.23911238607, + null, + -188902.71776057317, + -188941.9994408223, + null, + -188902.71776057317, + -189434.8299251847, + null, + -188902.71776057317, + -188586.70146604645, + null, + -188902.71776057317, + -189292.63817566453, + null, + -188902.71776057317, + -188468.64488827685, + null, + -188902.71776057317, + -188955.28240884622, + null, + -188902.71776057317, + -188530.70142542297, + null, + -188902.71776057317, + -188888.66487646574, + null, + -188902.71776057317, + -189282.2219107152, + null, + -188902.71776057317, + -189684.28770806687, + null, + -188705.66239081704, + -188955.7460585158, + null, + -188031.4228654602, + -188128.57240646365, + null, + -188031.4228654602, + -187792.9688123335, + null, + -188031.4228654602, + -187942.22047264426, + null, + -188031.4228654602, + -188476.1018531056, + null, + -188031.4228654602, + -187953.14158568936, + null, + -188031.4228654602, + -188243.55188231324, + null, + -188031.4228654602, + -188224.56475781766, + null, + -188031.4228654602, + -187566.37581145845, + null, + -188031.4228654602, + -188187.95018705592, + null, + -188031.4228654602, + -188277.6495023525, + null, + -188031.4228654602, + -188172.14856838898, + null, + -188031.4228654602, + -187507.9968975285, + null, + -188031.4228654602, + -188728.81774535606, + null, + -188507.5871274623, + -188290.08218015765, + null, + -188473.15080842157, + -188107.46199151454, + null, + -188473.15080842157, + -188848.55062442037, + null, + -188473.15080842157, + -188717.3203540903, + null, + -188473.15080842157, + -187899.4158525461, + null, + -187558.11023642388, + -187856.58036489805, + null, + -187558.11023642388, + -188107.46199151454, + null, + -187558.11023642388, + -187899.4158525461, + null, + -187558.11023642388, + -188204.3724056574, + null, + -187558.11023642388, + -188169.14538504407, + null, + -187558.11023642388, + -187899.237151973, + null, + -187558.11023642388, + -188069.92329870115, + null, + -187558.11023642388, + -188430.55900018988, + null, + -187558.11023642388, + -187701.5703586604, + null, + -187558.11023642388, + -187761.59383487626, + null, + -187558.11023642388, + -187872.25388739264, + null, + -187558.11023642388, + -187753.2084302758, + null, + -187558.11023642388, + -187765.59237745742, + null, + -187558.11023642388, + -187809.27238686706, + null, + -187558.11023642388, + -188024.30685571092, + null, + -187558.11023642388, + -188424.35361027447, + null, + -187558.11023642388, + -187977.63799550864, + null, + -187558.11023642388, + -188680.41340104947, + null, + -187558.11023642388, + -188480.5260935519, + null, + -187558.11023642388, + -184929.26330034356, + null, + -189344.7791897772, + -191630.47589507297, + null, + -189344.7791897772, + -189739.38463051288, + null, + -189344.7791897772, + -189873.68737482626, + null, + -189344.7791897772, + -189708.2272477365, + null, + -189344.7791897772, + -187892.65214688177, + null, + -189344.7791897772, + -187863.91165705194, + null, + -189344.7791897772, + -189505.58704021748, + null, + -189344.7791897772, + -189880.0757312348, + null, + -189344.7791897772, + -189842.1324431489, + null, + -189344.7791897772, + -188854.43713783327, + null, + -189344.7791897772, + -189536.13208955494, + null, + -189344.7791897772, + -188299.83165938678, + null, + -188568.03135249048, + -187862.98846391006, + null, + -188568.03135249048, + -188851.6819268115, + null, + -188568.03135249048, + -189105.21478588888, + null, + -189006.15667271154, + -189296.96733505363, + null, + -189006.15667271154, + -189498.98953316532, + null, + -188907.33441810505, + -188270.16098356986, + null, + -188907.33441810505, + -188836.9731938192, + null, + -188907.33441810505, + -189477.9687240938, + null, + -188907.33441810505, + -189686.82438527062, + null, + -188907.33441810505, + -189040.44316666905, + null, + -188907.33441810505, + -188325.90735821644, + null, + -188872.08380899028, + -189266.72814157297, + null, + -189090.95733044946, + -189703.45302802385, + null, + -188916.39990961482, + -189135.00336817247, + null, + -188916.39990961482, + -189278.65997138573, + null, + -188890.76276156757, + -189241.36313499292, + null, + -189031.25167023003, + -189561.96308897558, + null, + -189031.25167023003, + -189390.3446237331, + null, + -190718.20336678185, + -191279.9278832995, + null, + -190718.20336678185, + -193001.23653771952, + null, + -188924.92880801545, + -187859.86995225446, + null, + -188924.92880801545, + -189738.0525135467, + null, + -188924.92880801545, + -189517.96720841108, + null, + -189611.13910755786, + -190973.23484101656, + null, + -189611.13910755786, + -189777.8358685715, + null, + -189611.13910755786, + -188921.5431373296, + null, + -189611.13910755786, + -190144.75403043907, + null, + -189611.13910755786, + -188947.86956916028, + null, + -189371.07705115504, + -189742.155668336, + null, + -189371.07705115504, + -189692.5200326185, + null, + -189371.07705115504, + -190156.38084035812, + null, + -189371.07705115504, + -189713.56303116062, + null, + -187862.73468047418, + -187405.71770728158, + null, + -187862.73468047418, + -187389.66797592156, + null, + -188350.84668912945, + -188270.16098356986, + null, + -188350.84668912945, + -188640.45100665794, + null, + -188350.84668912945, + -187622.41354491585, + null, + -188350.84668912945, + -188826.8178670996, + null, + -189286.4104808909, + -188567.58941515462, + null, + -189286.4104808909, + -189837.0067281555, + null, + -189286.4104808909, + -189774.66595851514, + null, + -189286.4104808909, + -189615.88052612924, + null, + -189286.4104808909, + -189272.23379027276, + null, + -189286.4104808909, + -190029.28538193705, + null, + -189286.4104808909, + -189844.7798702007, + null, + -189286.4104808909, + -189790.5959091938, + null, + -189286.4104808909, + -188325.90735821644, + null, + -189286.4104808909, + -189991.2311607774, + null, + -189329.86947105004, + -189296.96733505363, + null, + -189329.86947105004, + -189296.96733505363, + null, + -189329.86947105004, + -189498.98953316532, + null, + -189329.86947105004, + -189682.05578414822, + null, + -189329.86947105004, + -189987.64885100897, + null, + -188827.20853608186, + -189360.52446627786, + null, + -188656.4246604865, + -188528.04369924997, + null, + -188656.4246604865, + -188875.90551008, + null, + -188224.81397464138, + -188016.10442522762, + null, + -188684.380536833, + -188167.02460559944, + null, + -188684.380536833, + -188123.19483452023, + null, + -188684.380536833, + -189105.2816803546, + null, + -188684.380536833, + -188987.74156072343, + null, + -188809.10200272722, + -189303.08944739285, + null, + -188809.10200272722, + -189317.7229192206, + null, + -188809.10200272722, + -189250.6861714318, + null, + -188809.10200272722, + -188349.47236547497, + null, + -188809.10200272722, + -187899.4158525461, + null, + -189064.02055466248, + -188423.99184216498, + null, + -189064.02055466248, + -189264.0420911513, + null, + -189064.02055466248, + -189552.3086334869, + null, + -189064.02055466248, + -188534.02363205954, + null, + -189064.02055466248, + -188644.9068178371, + null, + -189064.02055466248, + -189577.61389462257, + null, + -189064.02055466248, + -189103.72355039057, + null, + -189064.02055466248, + -188854.15596558747, + null, + -189064.02055466248, + -188590.4523846817, + null, + -189064.02055466248, + -188567.58941515462, + null, + -189064.02055466248, + -188384.46387554856, + null, + -189064.02055466248, + -188477.95331527485, + null, + -189064.02055466248, + -190700.1111637919, + null, + -189064.02055466248, + -189378.03325846698, + null, + -189064.02055466248, + -189383.60172976655, + null, + -189064.02055466248, + -188530.70142542297, + null, + -189064.02055466248, + -188325.90735821644, + null, + -188910.5188593822, + -189231.051408616, + null, + -188910.5188593822, + -189290.40865383588, + null, + -187504.5939470865, + -186632.56137489137, + null, + -188238.2747120987, + -188482.5310615353, + null, + -188238.2747120987, + -187821.3765527352, + null, + -189055.06434900622, + -189396.51935593525, + null, + -189055.06434900622, + -189490.2551625836, + null, + -188985.5661371472, + -189589.28553677927, + null, + -188817.42461554098, + -189048.4956879801, + null, + -188817.42461554098, + -189131.92422966988, + null, + -188328.4992507085, + -188104.6983502157, + null, + -188328.4992507085, + -187704.763876957, + null, + -188328.4992507085, + -189015.4951605007, + null, + -188328.4992507085, + -187899.237151973, + null, + -188328.4992507085, + -188563.3727238801, + null, + -188328.4992507085, + -188169.14538504407, + null, + -188328.4992507085, + -188868.86823729656, + null, + -188328.4992507085, + -188185.3569399699, + null, + -188032.35686812358, + -187448.3572804437, + null, + -188032.35686812358, + -188480.5260935519, + null, + -188989.35923942667, + -188272.94824742872, + null, + -188989.35923942667, + -189247.54195982916, + null, + -188989.35923942667, + -189033.53333615928, + null, + -188989.35923942667, + -189071.23203874825, + null, + -188989.35923942667, + -188876.74592565937, + null, + -188989.35923942667, + -189238.02623730994, + null, + -188989.35923942667, + -189115.05770210535, + null, + -188989.35923942667, + -189231.03855465443, + null, + -188989.35923942667, + -189259.5246750294, + null, + -188989.35923942667, + -189305.01453652733, + null, + -188989.35923942667, + -189185.22678595383, + null, + -188989.35923942667, + -189778.15834495376, + null, + -188989.35923942667, + -189298.76112672515, + null, + -188537.1492944953, + -188290.08218015765, + null, + -188537.1492944953, + -188757.12524904165, + null, + -188537.1492944953, + -188107.46199151454, + null, + -188537.1492944953, + -188126.8200295349, + null, + -188537.1492944953, + -188760.00770833693, + null, + -188537.1492944953, + -188933.22539579918, + null, + -188332.10285588854, + -188674.7471497121, + null, + -188332.10285588854, + -188167.02460559944, + null, + -188332.10285588854, + -188123.19483452023, + null, + -188332.10285588854, + -188336.20643323814, + null, + -188332.10285588854, + -188180.73220770183, + null, + -188332.10285588854, + -188519.90581438286, + null, + -188224.61386277262, + -187932.28950243027, + null, + -188690.45660123866, + -188952.85593883562, + null, + -188764.5244681029, + -189097.48187960163, + null, + -188476.21098523034, + -188308.2995444295, + null, + -188476.21098523034, + -188124.98331170535, + null, + -188476.21098523034, + -188393.99052171747, + null, + -188476.21098523034, + -188347.58050575748, + null, + -188476.21098523034, + -188876.59928470026, + null, + -188906.10027535562, + -189345.9124851909, + null, + -188598.92292480564, + -188180.15644195993, + null, + -188598.92292480564, + -189045.54815632163, + null, + -188598.92292480564, + -188937.80405805522, + null, + -188598.92292480564, + -188767.47226676266, + null, + -188338.53308343157, + -188482.5310615353, + null, + -188338.53308343157, + -187821.3765527352, + null, + -187471.21704082517, + -187601.13526565803, + null, + -187471.21704082517, + -187830.46815133246, + null, + -187485.8021358164, + -186931.52009524958, + null, + -187808.73897039745, + -187722.01964145992, + null, + -187808.73897039745, + -188625.28745242656, + null, + -188471.24794147993, + -188602.07939852623, + null, + -188471.24794147993, + -188156.60345261396, + null, + -188922.89599843553, + -189331.9915999827, + null, + -188922.89599843553, + -188984.34951568441, + null, + -188922.89599843553, + -189094.7454633695, + null, + -189190.69568859632, + -189479.30333773256, + null, + -188648.39727075843, + -188834.4604537936, + null, + -188648.39727075843, + -187923.30486023927, + null, + -188648.39727075843, + -188635.053643839, + null, + -188995.8386599755, + -189486.94419473826, + null, + -188995.8386599755, + -189045.68105489522, + null, + -188995.8386599755, + -188345.75062919507, + null, + -188818.68200287974, + -188696.782377594, + null, + -188818.68200287974, + -189006.25883621728, + null, + -188818.68200287974, + -188126.8200295349, + null, + -188818.68200287974, + -188123.19483452023, + null, + -188818.68200287974, + -189105.2816803546, + null, + -188818.68200287974, + -188107.46199151454, + null, + -188818.68200287974, + -188349.47236547497, + null, + -188818.68200287974, + -189387.78435538372, + null, + -189419.4844744169, + -189801.49095297614, + null, + -189419.4844744169, + -189489.71907673345, + null, + -188681.37081393888, + -187899.4158525461, + null, + -188681.37081393888, + -188167.02460559944, + null, + -188681.37081393888, + -188126.8200295349, + null, + -188681.37081393888, + -188123.19483452023, + null, + -188681.37081393888, + -189105.2816803546, + null, + -188681.37081393888, + -188107.46199151454, + null, + -188681.37081393888, + -188349.47236547497, + null, + -188681.37081393888, + -188987.74156072343, + null, + -188681.37081393888, + -189387.78435538372, + null, + -190034.5154898649, + -190382.19427593888, + null, + -190034.5154898649, + -190294.21864983928, + null, + -190034.5154898649, + -190368.25817851265, + null, + -189093.07196799477, + -189554.68072761627, + null, + -189093.07196799477, + -189522.66677498195, + null, + -189093.07196799477, + -189623.56254580448, + null, + -189093.07196799477, + -188251.55613681383, + null, + -189093.07196799477, + -189916.311805951, + null, + -189093.07196799477, + -188292.3869375497, + null, + -189093.07196799477, + -188696.782377594, + null, + -189093.07196799477, + -188107.46199151454, + null, + -189093.07196799477, + -188271.77595069932, + null, + -189093.07196799477, + -189041.9225197264, + null, + -189093.07196799477, + -189199.17908190106, + null, + -189093.07196799477, + -188285.76996994668, + null, + -189093.07196799477, + -189537.7817031003, + null, + -189093.07196799477, + -189352.73404518928, + null, + -189093.07196799477, + -189471.04120599278, + null, + -189093.07196799477, + -189679.53787245677, + null, + -189093.07196799477, + -189408.21023611428, + null, + -189093.07196799477, + -188999.3408802612, + null, + -189093.07196799477, + -188167.02460559944, + null, + -189093.07196799477, + -188204.3724056574, + null, + -189093.07196799477, + -189645.5000292996, + null, + -189093.07196799477, + -189431.51059923717, + null, + -189093.07196799477, + -189615.4869081341, + null, + -189093.07196799477, + -189750.14044068835, + null, + -189093.07196799477, + -189801.76573120884, + null, + -189093.07196799477, + -189558.55733558614, + null, + -189093.07196799477, + -187899.4158525461, + null, + -189093.07196799477, + -189504.89278882294, + null, + -189093.07196799477, + -189522.26639614848, + null, + -189093.07196799477, + -189536.3625339415, + null, + -189093.07196799477, + -189750.30848512865, + null, + -189093.07196799477, + -189442.69507087598, + null, + -189093.07196799477, + -190034.61897906184, + null, + -189093.07196799477, + -187899.237151973, + null, + -189093.07196799477, + -188801.60294815066, + null, + -189093.07196799477, + -189834.3163791867, + null, + -189093.07196799477, + -189250.6861714318, + null, + -189093.07196799477, + -189257.69084732296, + null, + -189093.07196799477, + -188954.66274327494, + null, + -189093.07196799477, + -189640.1945004268, + null, + -189093.07196799477, + -190115.39552164622, + null, + -189093.07196799477, + -188306.66890581805, + null, + -189093.07196799477, + -188312.41502651962, + null, + -189093.07196799477, + -189659.46917226465, + null, + -189093.07196799477, + -189317.8406785239, + null, + -189093.07196799477, + -189302.72898643688, + null, + -189093.07196799477, + -189169.03781422778, + null, + -189093.07196799477, + -189731.85447908618, + null, + -189093.07196799477, + -189446.80721719595, + null, + -189093.07196799477, + -189275.603776678, + null, + -189093.07196799477, + -189693.2055888678, + null, + -189093.07196799477, + -189753.59627716336, + null, + -189093.07196799477, + -189523.92981689292, + null, + -189093.07196799477, + -189582.96181379963, + null, + -189093.07196799477, + -190328.62833538937, + null, + -189093.07196799477, + -189786.84207760714, + null, + -189093.07196799477, + -189751.89635663538, + null, + -189093.07196799477, + -188815.1944085261, + null, + -189093.07196799477, + -189224.11613190582, + null, + -189093.07196799477, + -189796.11674781732, + null, + -189093.07196799477, + -189932.6237612485, + null, + -189093.07196799477, + -189552.86218391886, + null, + -189093.07196799477, + -188126.8200295349, + null, + -189093.07196799477, + -189830.91246389045, + null, + -189093.07196799477, + -189498.42730696275, + null, + -189093.07196799477, + -189646.04277723422, + null, + -189093.07196799477, + -189493.25493438917, + null, + -189093.07196799477, + -188868.21171990343, + null, + -189093.07196799477, + -189430.8749071048, + null, + -189093.07196799477, + -189418.3979333305, + null, + -189093.07196799477, + -188294.41257727327, + null, + -189093.07196799477, + -188804.39291762855, + null, + -189093.07196799477, + -189383.2134141077, + null, + -189093.07196799477, + -189408.30108345978, + null, + -189093.07196799477, + -189622.2992613024, + null, + -189093.07196799477, + -189336.00050606855, + null, + -189093.07196799477, + -189494.18089072162, + null, + -189093.07196799477, + -189346.3496150686, + null, + -189093.07196799477, + -189517.63745548116, + null, + -189093.07196799477, + -189562.47650992335, + null, + -189093.07196799477, + -189732.76841517194, + null, + -189093.07196799477, + -189536.8343224868, + null, + -189093.07196799477, + -189457.759153216, + null, + -189093.07196799477, + -189532.57203367492, + null, + -189093.07196799477, + -189507.00155087592, + null, + -189093.07196799477, + -189055.85878078622, + null, + -189093.07196799477, + -190253.9554374968, + null, + -189093.07196799477, + -189453.52787322368, + null, + -189093.07196799477, + -189199.04942802034, + null, + -189093.07196799477, + -189518.1963457777, + null, + -189093.07196799477, + -188415.7452673843, + null, + -189093.07196799477, + -188922.00741313785, + null, + -189093.07196799477, + -189565.95036095765, + null, + -189093.07196799477, + -189599.43976925078, + null, + -189093.07196799477, + -189447.3213721349, + null, + -189093.07196799477, + -189592.0253847243, + null, + -189093.07196799477, + -189704.67210231442, + null, + -189093.07196799477, + -189429.51527102874, + null, + -189093.07196799477, + -189549.2248295347, + null, + -189093.07196799477, + -189732.63425983736, + null, + -189093.07196799477, + -189156.18143433816, + null, + -189093.07196799477, + -189593.73394135686, + null, + -189093.07196799477, + -189255.76286114688, + null, + -189093.07196799477, + -188480.57065962657, + null, + -189093.07196799477, + -189396.15620173485, + null, + -189093.07196799477, + -189119.4502426223, + null, + -189093.07196799477, + -189099.2895300957, + null, + -189093.07196799477, + -189372.92718386388, + null, + -189093.07196799477, + -189530.79236599515, + null, + -189093.07196799477, + -189323.80480814414, + null, + -189093.07196799477, + -189638.78145869536, + null, + -189093.07196799477, + -189285.81117966407, + null, + -189093.07196799477, + -189920.08786925004, + null, + -189093.07196799477, + -189568.58179882303, + null, + -189093.07196799477, + -189490.09496069627, + null, + -189093.07196799477, + -189529.25512316148, + null, + -189093.07196799477, + -189325.65832119124, + null, + -189093.07196799477, + -188851.56730320977, + null, + -189093.07196799477, + -189408.06502858872, + null, + -189093.07196799477, + -189515.4108281232, + null, + -189093.07196799477, + -188680.41340104947, + null, + -189093.07196799477, + -189356.0500464047, + null, + -189093.07196799477, + -188887.3973668111, + null, + -189093.07196799477, + -189225.07031019146, + null, + -189093.07196799477, + -188770.14684657753, + null, + -189093.07196799477, + -189474.47554588024, + null, + -189093.07196799477, + -189774.7476661943, + null, + -189093.07196799477, + -189006.25883621728, + null, + -189093.07196799477, + -189656.34211244347, + null, + -189093.07196799477, + -189485.92172726392, + null, + -189093.07196799477, + -189381.9654969643, + null, + -189093.07196799477, + -189641.00924985827, + null, + -189093.07196799477, + -189677.82690449522, + null, + -189093.07196799477, + -189393.09189406977, + null, + -189093.07196799477, + -189725.99119278492, + null, + -189093.07196799477, + -187911.2710909405, + null, + -189093.07196799477, + -189560.62472315767, + null, + -189093.07196799477, + -188296.21414801962, + null, + -189093.07196799477, + -189686.30027570974, + null, + -189093.07196799477, + -189068.82122443494, + null, + -189093.07196799477, + -188278.08712796614, + null, + -189093.07196799477, + -188336.20643323814, + null, + -189093.07196799477, + -189634.1669562323, + null, + -189093.07196799477, + -189303.08944739285, + null, + -189093.07196799477, + -189557.7983769141, + null, + -189093.07196799477, + -189363.34000394432, + null, + -189093.07196799477, + -187689.0483805537, + null, + -189093.07196799477, + -189640.61261352964, + null, + -189093.07196799477, + -189583.51700064118, + null, + -189093.07196799477, + -189321.36395637903, + null, + -189093.07196799477, + -189328.29367726677, + null, + -189093.07196799477, + -188925.91974127013, + null, + -189093.07196799477, + -189730.37815090845, + null, + -189093.07196799477, + -188921.42443902968, + null, + -189093.07196799477, + -189511.2209653839, + null, + -189093.07196799477, + -189692.25637540634, + null, + -189093.07196799477, + -189322.72491470815, + null, + -189093.07196799477, + -189703.6139847984, + null, + -189093.07196799477, + -189590.25078595642, + null, + -189093.07196799477, + -188547.46824695042, + null, + -189093.07196799477, + -188848.55062442037, + null, + -189093.07196799477, + -188169.14538504407, + null, + -189093.07196799477, + -189621.15970611246, + null, + -189093.07196799477, + -189554.07262256934, + null, + -189093.07196799477, + -188935.33612228493, + null, + -189093.07196799477, + -189015.4951605007, + null, + -189093.07196799477, + -189468.52121776558, + null, + -189093.07196799477, + -189726.9839142311, + null, + -189093.07196799477, + -189604.051822791, + null, + -189093.07196799477, + -189172.60980398947, + null, + -189093.07196799477, + -189516.1723814726, + null, + -189093.07196799477, + -189606.13981497308, + null, + -189093.07196799477, + -189818.32592583625, + null, + -189093.07196799477, + -189832.11385822124, + null, + -189093.07196799477, + -188799.02956322636, + null, + -189093.07196799477, + -189141.57950872142, + null, + -189093.07196799477, + -189643.42341201042, + null, + -189093.07196799477, + -189659.6677604097, + null, + -189093.07196799477, + -189525.22410298133, + null, + -189093.07196799477, + -189027.32662829437, + null, + -189093.07196799477, + -188480.5260935519, + null, + -189093.07196799477, + -189794.1589935236, + null, + -189093.07196799477, + -189493.67651902192, + null, + -189093.07196799477, + -189257.11848075397, + null, + -189093.07196799477, + -189190.8420644383, + null, + -189093.07196799477, + -189427.21294576538, + null, + -189093.07196799477, + -189688.7712261936, + null, + -189093.07196799477, + -189402.41667130496, + null, + -189093.07196799477, + -189738.0525135467, + null, + -189093.07196799477, + -188695.04808894158, + null, + -189093.07196799477, + -189566.4665127886, + null, + -189093.07196799477, + -189105.2816803546, + null, + -189093.07196799477, + -187695.57614406702, + null, + -189093.07196799477, + -188758.55641030593, + null, + -189093.07196799477, + -189744.39363754724, + null, + -189093.07196799477, + -188123.19483452023, + null, + -189093.07196799477, + -188470.03479631987, + null, + -189093.07196799477, + -189424.87314537496, + null, + -189093.07196799477, + -189689.52817768222, + null, + -189093.07196799477, + -189447.98748217383, + null, + -189093.07196799477, + -189736.91566883595, + null, + -189093.07196799477, + -187803.1415402722, + null, + -189093.07196799477, + -188615.64024283146, + null, + -189093.07196799477, + -188516.52943830803, + null, + -189093.07196799477, + -189681.64351749184, + null, + -189093.07196799477, + -189583.2115684275, + null, + -189093.07196799477, + -188560.8123839254, + null, + -189093.07196799477, + -188808.58568177576, + null, + -189093.07196799477, + -189710.93255919393, + null, + -189093.07196799477, + -189406.02024615998, + null, + -189093.07196799477, + -189499.59645998385, + null, + -189093.07196799477, + -189483.72175297773, + null, + -189093.07196799477, + -189357.24837546385, + null, + -189093.07196799477, + -189474.95530109046, + null, + -189093.07196799477, + -189782.36536876537, + null, + -189093.07196799477, + -189258.09496306165, + null, + -189093.07196799477, + -189596.714753665, + null, + -189093.07196799477, + -188890.3664574394, + null, + -189093.07196799477, + -188764.91305512202, + null, + -189093.07196799477, + -189282.2159957167, + null, + -189093.07196799477, + -188923.44433292217, + null, + -189093.07196799477, + -188971.43179267063, + null, + -189093.07196799477, + -188253.40886764217, + null, + -189093.07196799477, + -189394.1110529634, + null, + -189093.07196799477, + -188553.8667206884, + null, + -189093.07196799477, + -188247.0553738609, + null, + -189093.07196799477, + -188500.12824679536, + null, + -189093.07196799477, + -189317.7229192206, + null, + -189093.07196799477, + -188900.62386161956, + null, + -189093.07196799477, + -188881.29006931305, + null, + -189093.07196799477, + -189122.419390301, + null, + -189093.07196799477, + -189049.75416535302, + null, + -189093.07196799477, + -190290.13307072833, + null, + -189093.07196799477, + -188263.30442852018, + null, + -189093.07196799477, + -189655.53739052103, + null, + -189093.07196799477, + -189593.4766049247, + null, + -189093.07196799477, + -189658.27998301366, + null, + -189093.07196799477, + -189608.43740396632, + null, + -189093.07196799477, + -189240.7395503507, + null, + -189093.07196799477, + -189401.6122354161, + null, + -189093.07196799477, + -187798.89120280318, + null, + -189093.07196799477, + -189230.37339317877, + null, + -189093.07196799477, + -189545.16625437708, + null, + -189093.07196799477, + -189612.82599109344, + null, + -189093.07196799477, + -189466.51428955715, + null, + -189093.07196799477, + -188987.74156072343, + null, + -189093.07196799477, + -189424.6200709084, + null, + -189093.07196799477, + -189622.41040500058, + null, + -189093.07196799477, + -189883.7142335665, + null, + -189093.07196799477, + -189350.129160721, + null, + -189093.07196799477, + -189397.67019498325, + null, + -189093.07196799477, + -189374.36013442566, + null, + -189093.07196799477, + -189312.9879746982, + null, + -189093.07196799477, + -189387.4220162738, + null, + -189093.07196799477, + -189456.31330892164, + null, + -189093.07196799477, + -188757.97295287042, + null, + -189093.07196799477, + -189874.7197630853, + null, + -189093.07196799477, + -188938.53921387976, + null, + -189093.07196799477, + -189174.94373042753, + null, + -189093.07196799477, + -188249.57030670525, + null, + -189093.07196799477, + -188260.60515116138, + null, + -189093.07196799477, + -188336.6986691293, + null, + -189093.07196799477, + -187680.87764689644, + null, + -189093.07196799477, + -187251.2510294042, + null, + -189093.07196799477, + -187262.66438443118, + null, + -189093.07196799477, + -189570.2833336003, + null, + -189093.07196799477, + -189763.14706397685, + null, + -189093.07196799477, + -189566.8655000776, + null, + -189093.07196799477, + -189779.29013892455, + null, + -189093.07196799477, + -189298.26902639432, + null, + -189093.07196799477, + -189143.0578281467, + null, + -189093.07196799477, + -189430.35956357492, + null, + -189093.07196799477, + -189539.6584614828, + null, + -189093.07196799477, + -189404.9591139528, + null, + -189093.07196799477, + -189661.95294361803, + null, + -189093.07196799477, + -188758.00763305573, + null, + -189093.07196799477, + -189602.10511057184, + null, + -189093.07196799477, + -189832.73284060266, + null, + -189093.07196799477, + -187986.2925046758, + null, + -189093.07196799477, + -189638.5204736213, + null, + -189093.07196799477, + -189307.41763655184, + null, + -189093.07196799477, + -187325.8474831565, + null, + -189093.07196799477, + -188953.73820219914, + null, + -189093.07196799477, + -189477.09111556568, + null, + -189093.07196799477, + -188608.7669540309, + null, + -189093.07196799477, + -189663.5967077643, + null, + -189093.07196799477, + -187902.1950427761, + null, + -189093.07196799477, + -189204.27918840424, + null, + -189093.07196799477, + -188868.86823729656, + null, + -189093.07196799477, + -187963.18284034188, + null, + -189093.07196799477, + -189589.51983073587, + null, + -189093.07196799477, + -190125.8549583156, + null, + -189093.07196799477, + -189597.31022038838, + null, + -189093.07196799477, + -189659.42206924004, + null, + -189093.07196799477, + -187522.90987740675, + null, + -189093.07196799477, + -189314.3318274669, + null, + -189093.07196799477, + -189123.09886013696, + null, + -189093.07196799477, + -189438.33583540513, + null, + -189093.07196799477, + -189190.64141113937, + null, + -189093.07196799477, + -189312.96716657415, + null, + -189093.07196799477, + -189506.4879067685, + null, + -189093.07196799477, + -189996.88173583825, + null, + -189093.07196799477, + -189506.9208114558, + null, + -189093.07196799477, + -188577.0164252054, + null, + -189093.07196799477, + -189355.94588633478, + null, + -189093.07196799477, + -189514.97306091062, + null, + -189093.07196799477, + -189411.36286505614, + null, + -189093.07196799477, + -188802.23079391493, + null, + -189093.07196799477, + -189518.63063531838, + null, + -189093.07196799477, + -189595.0859664761, + null, + -189093.07196799477, + -188849.11552920155, + null, + -189093.07196799477, + -188741.18667656466, + null, + -189093.07196799477, + -189712.08090202446, + null, + -189093.07196799477, + -190133.98681796715, + null, + -189093.07196799477, + -189423.36465952417, + null, + -189093.07196799477, + -190181.23310247317, + null, + -189093.07196799477, + -188309.38290130332, + null, + -189093.07196799477, + -189387.78435538372, + null, + -189093.07196799477, + -189261.45093796574, + null, + -189093.07196799477, + -188229.01322122104, + null, + -189093.07196799477, + -188225.00588929723, + null, + -189093.07196799477, + -187746.04762354173, + null, + -189093.07196799477, + -189649.05343454154, + null, + -189093.07196799477, + -189292.69033396387, + null, + -189093.07196799477, + -190439.80952772064, + null, + -188332.3887565364, + -187405.71770728158, + null, + -188332.3887565364, + -187389.66797592156, + null, + -189148.08464521947, + -188854.15596558747, + null, + -189778.0564884073, + -190167.4618217757, + null, + -189778.0564884073, + -189777.63112573957, + null, + -188895.1305372902, + -188400.0367418278, + null, + -189361.39928674913, + -189502.7870754483, + null, + -189361.39928674913, + -189631.87542889913, + null, + -189361.39928674913, + -189379.6564968773, + null, + -189514.26395840745, + -189825.04437502267, + null, + -189514.26395840745, + -189697.85110122422, + null, + -189514.26395840745, + -189730.2105260354, + null, + -188424.82223649055, + -188482.5310615353, + null, + -188424.82223649055, + -187821.3765527352, + null, + -188154.87099078548, + -188642.19864755738, + null, + -188154.87099078548, + -186804.33417873908, + null, + -188823.15900221813, + -189138.6052683931, + null, + -188823.15900221813, + -188954.66274327494, + null, + -188823.15900221813, + -188851.56730320977, + null, + -188823.15900221813, + -188563.3727238801, + null, + -188823.15900221813, + -189068.82122443494, + null, + -188823.15900221813, + -189186.61889509932, + null, + -188823.15900221813, + -189015.4951605007, + null, + -188823.15900221813, + -189212.86844851545, + null, + -188823.15900221813, + -188462.65509945378, + null, + -188823.15900221813, + -188204.3724056574, + null, + -188823.15900221813, + -189199.17908190106, + null, + -188823.15900221813, + -188255.37224721114, + null, + -188236.33672313037, + -188482.5310615353, + null, + -188236.33672313037, + -187821.3765527352, + null, + -188290.4882788216, + -188482.5310615353, + null, + -188290.4882788216, + -187821.3765527352, + null, + -188591.75199645569, + -188039.00270855022, + null, + -188591.75199645569, + -188214.46720173355, + null, + -188591.75199645569, + -188543.17964185297, + null, + -188591.75199645569, + -188551.65872850412, + null, + -188591.75199645569, + -187924.76781139948, + null, + -188591.75199645569, + -188265.91476313816, + null, + -188591.75199645569, + -188620.13710179558, + null, + -188591.75199645569, + -188797.5960817814, + null, + -188591.75199645569, + -188675.01145983627, + null, + -188591.75199645569, + -189585.23416607562, + null, + -188591.75199645569, + -189073.2131275974, + null, + -188591.75199645569, + -187778.6034982877, + null, + -188591.75199645569, + -188715.31186791277, + null, + -188591.75199645569, + -188783.67793234484, + null, + -188591.75199645569, + -188686.17124409127, + null, + -188591.75199645569, + -188307.55943122407, + null, + -188591.75199645569, + -188717.35827303602, + null, + -188591.75199645569, + -189175.1779532503, + null, + -188591.75199645569, + -188752.45189673398, + null, + -188591.75199645569, + -188617.7522841282, + null, + -188345.75062919507, + -187330.48424043634, + null, + -189486.94419473826, + -190049.08294096706, + null, + -189486.94419473826, + -190134.12788602014, + null, + -188680.97177115767, + -189436.51072175297, + null, + -188680.97177115767, + -188825.24595688403, + null, + -188680.97177115767, + -188748.41080724396, + null, + -188680.97177115767, + -188632.32322923772, + null, + -188680.97177115767, + -188755.87124533966, + null, + -188680.97177115767, + -188739.89476481508, + null, + -188680.97177115767, + -188763.09490078397, + null, + -187854.13914095613, + -187899.4158525461, + null, + -187854.13914095613, + -188290.08218015765, + null, + -187854.13914095613, + -188349.47236547497, + null, + -187620.89247314315, + -187046.38487493325, + null, + -187620.89247314315, + -187622.41354491585, + null, + -187749.7848825597, + -187967.45205088542, + null, + -187749.7848825597, + -188236.06352852797, + null, + -187749.7848825597, + -187916.56938459937, + null, + -187628.5971893858, + -188277.7110845498, + null, + -187628.5971893858, + -187856.57507774787, + null, + -186283.60700347682, + -186309.0004789828, + null, + -186283.60700347682, + -186448.0761262461, + null, + -186283.60700347682, + -187689.0483805537, + null, + -186870.78214397354, + -188204.3724056574, + null, + -186870.78214397354, + -187372.14693328072, + null, + -186870.78214397354, + -186713.31626898306, + null, + -186870.78214397354, + -188161.6300058421, + null, + -186870.78214397354, + -187294.3067848806, + null, + -186870.78214397354, + -187587.45047793945, + null, + -189075.78000835242, + -189738.0525135467, + null, + -189075.78000835242, + -189873.55077472897, + null, + -189075.78000835242, + -187521.8824872184, + null, + -189556.635346552, + -188348.79948910305, + null, + -189556.635346552, + -189862.6413098155, + null, + -189556.635346552, + -189857.14185344288, + null, + -189556.635346552, + -189824.66753653612, + null, + -189556.635346552, + -189879.5254089133, + null, + -190524.42466711518, + -190932.80865181403, + null, + -189723.06164490216, + -189214.1812788162, + null, + -191447.36757318178, + -192162.3269836861, + null, + -191447.36757318178, + -192524.44290793836, + null, + -191447.36757318178, + -192115.1138136991, + null, + -189487.1728230268, + -188972.92135698648, + null, + -188337.61728350184, + -188482.5310615353, + null, + -188337.61728350184, + -187821.3765527352, + null, + -188634.22396120222, + -188186.38974025362, + null, + -188634.22396120222, + -187899.237151973, + null, + -188634.22396120222, + -189043.94703463372, + null, + -188634.22396120222, + -188886.17592031375, + null, + -188634.22396120222, + -188954.66274327494, + null, + -188634.22396120222, + -188922.00741313785, + null, + -188634.22396120222, + -189232.21457982747, + null, + -188634.22396120222, + -188868.86823729656, + null, + -188577.10958302955, + -189105.2816803546, + null, + -188577.10958302955, + -189006.25883621728, + null, + -188577.10958302955, + -188180.73220770183, + null, + -188577.10958302955, + -188107.46199151454, + null, + -188609.33112603877, + -188107.46199151454, + null, + -188609.33112603877, + -189105.2816803546, + null, + -188609.33112603877, + -188349.47236547497, + null, + -187678.114505735, + -188204.3724056574, + null, + -187678.114505735, + -187820.75210574528, + null, + -187678.114505735, + -187372.14693328072, + null, + -187678.114505735, + -186713.31626898306, + null, + -187678.114505735, + -188161.6300058421, + null, + -187678.114505735, + -187294.3067848806, + null, + -187678.114505735, + -187587.45047793945, + null, + -187393.45287008572, + -187459.03461725367, + null, + -187393.45287008572, + -188430.993490856, + null, + -187444.98398375107, + -188227.91479363065, + null, + -187444.98398375107, + -188270.16098356986, + null, + -187444.98398375107, + -187553.03431553903, + null, + -187444.98398375107, + -187862.98846391006, + null, + -187444.98398375107, + -187369.8494239768, + null, + -187444.98398375107, + -188325.90735821644, + null, + -187212.75750088846, + -187734.42575994402, + null, + -187430.50547179487, + -188270.16098356986, + null, + -187430.50547179487, + -187621.21937398304, + null, + -187430.50547179487, + -187659.66124892057, + null, + -187430.50547179487, + -187626.4788257705, + null, + -187430.50547179487, + -188263.86255790308, + null, + -187430.50547179487, + -187368.52340470123, + null, + -187206.375494998, + -187348.7681817943, + null, + -187206.375494998, + -187682.18281394336, + null, + -187142.3027271855, + -186584.2836090355, + null, + -189125.41464985392, + -188630.62199919912, + null, + -189125.41464985392, + -189687.1717524016, + null, + -189125.41464985392, + -189392.44618215397, + null, + -185759.04101010459, + -187036.08464524065, + null, + -184987.91450924633, + -185139.07792481993, + null, + -184987.91450924633, + -185139.72357748792, + null, + -184987.91450924633, + -185172.0562297005, + null, + -184987.91450924633, + -185223.1558109515, + null, + -184987.91450924633, + -185302.5690199798, + null, + -186636.99979215744, + -187859.86995225446, + null, + -186636.99979215744, + -187695.57614406702, + null, + -186636.99979215744, + -187760.736691232, + null, + -187026.07843949736, + -187476.2628433151, + null, + -187026.07843949736, + -187427.76982279553, + null, + -187026.07843949736, + -187674.51102416526, + null, + -187026.07843949736, + -188223.1502255291, + null, + -187026.07843949736, + -188223.8025959115, + null, + -187026.07843949736, + -188238.87170758605, + null, + -187026.07843949736, + -187003.89280649187, + null, + -186362.3442443084, + -186542.96075744857, + null, + -186362.3442443084, + -186761.60951942398, + null, + -186362.3442443084, + -187272.80604379578, + null, + -186362.3442443084, + -187924.91100981052, + null, + -184641.7612714999, + -184843.25042613945, + null, + -186631.89998789044, + -187859.86995225446, + null, + -186631.89998789044, + -187695.57614406702, + null, + -186631.89998789044, + -187760.736691232, + null, + -185684.77267411654, + -186903.6585095412, + null, + -185952.0045384303, + -187363.62555888496, + null, + -184904.78554636845, + -185290.586235629, + null, + -184904.78554636845, + -185165.9576632683, + null, + -187733.16720291993, + -187636.6401471091, + null, + -187733.16720291993, + -187838.56400906073, + null, + -187733.16720291993, + -187819.29574656484, + null, + -187733.16720291993, + -188059.9314632963, + null, + -187733.16720291993, + -188290.363652496, + null, + -187733.16720291993, + -188413.92210597807, + null, + -187733.16720291993, + -187943.2258883462, + null, + -187733.16720291993, + -188679.23184501874, + null, + -187733.16720291993, + -188423.99184216498, + null, + -187733.16720291993, + -188187.00891794523, + null, + -187733.16720291993, + -188099.9720945511, + null, + -187733.16720291993, + -188644.9068178371, + null, + -187733.16720291993, + -188384.46387554856, + null, + -187733.16720291993, + -188534.02363205954, + null, + -187733.16720291993, + -188477.95331527485, + null, + -187733.16720291993, + -188590.4523846817, + null, + -187733.16720291993, + -187941.9237365848, + null, + -187733.16720291993, + -188412.73187816486, + null, + -187733.16720291993, + -188208.82409906888, + null, + -187733.16720291993, + -188567.58941515462, + null, + -187733.16720291993, + -188396.23465801778, + null, + -187733.16720291993, + -188159.4341766519, + null, + -187733.16720291993, + -188530.70142542297, + null, + -187733.16720291993, + -187463.4585977219, + null, + -187733.16720291993, + -188325.90735821644, + null, + -186005.44685669165, + -186479.6446350026, + null, + -186005.44685669165, + -187298.47957976593, + null, + -186005.44685669165, + -186539.61527157956, + null, + -185619.78884854354, + -186632.56137489137, + null, + -185702.8268145955, + -186056.69045446397, + null, + -185702.8268145955, + -185951.46023938467, + null, + -185702.8268145955, + -186802.7182162248, + null, + -185702.8268145955, + -185550.27627308652, + null, + -186641.42486820777, + -187045.1102206911, + null, + -186641.42486820777, + -187073.15041134102, + null, + -186641.42486820777, + -187254.26535223567, + null, + -186641.42486820777, + -187989.30944414838, + null, + -186641.42486820777, + -188000.4487104779, + null, + -186086.34378531418, + -187680.87764689644, + null, + -186293.45287911844, + -187906.78280195483, + null, + -186293.45287911844, + -186681.1635380391, + null, + -186293.45287911844, + -186905.37079495806, + null, + -186774.72272855093, + -187857.75124697632, + null, + -186774.72272855093, + -187760.40303329699, + null, + -186774.72272855093, + -187920.62374587829, + null, + -186774.72272855093, + -187858.44732430877, + null, + -186590.54840473336, + -187659.66132080328, + null, + -186590.54840473336, + -187484.91206357404, + null, + -186590.54840473336, + -187046.38487493325, + null, + -186590.54840473336, + -187622.41354491585, + null, + -186590.54840473336, + -186546.9811101811, + null, + -186590.54840473336, + -187389.5387646811, + null, + -186590.54840473336, + -186874.71930400067, + null, + -185178.65674855074, + -185839.00663893652, + null, + -185178.65674855074, + -185362.02426270678, + null, + -185915.41451703524, + -186743.67631044146, + null, + -185915.41451703524, + -186943.91875814958, + null, + -185024.2525256191, + -185611.65728113687, + null, + -187101.25689315388, + -189084.9074632962, + null, + -187101.25689315388, + -187484.60913141377, + null, + -187101.25689315388, + -187254.26535223567, + null, + -187101.25689315388, + -187989.30944414838, + null, + -187101.25689315388, + -188000.4487104779, + null, + -186246.8336915767, + -187899.4158525461, + null, + -186246.8336915767, + -186793.02846859442, + null, + -186246.8336915767, + -186643.42136934042, + null, + -185785.58597568647, + -187063.1911515589, + null, + -186910.03493563386, + -188748.28453514946, + null, + -186910.03493563386, + -188439.97049711825, + null, + -186910.03493563386, + -187368.1489177038, + null, + -184853.0590167661, + -185263.2297970409, + null, + -186226.79838547923, + -187430.4310402768, + null, + -186226.79838547923, + -187168.63791618857, + null, + -186226.79838547923, + -187036.11661907207, + null, + -186901.84865346336, + -187792.9688123335, + null, + -186901.84865346336, + -187566.37581145845, + null, + -186901.84865346336, + -187942.22047264426, + null, + -186901.84865346336, + -188476.1018531056, + null, + -186721.96101630855, + -188482.5310615353, + null, + -186721.96101630855, + -187821.3765527352, + null, + -185045.17257071825, + -185550.27627308652, + null, + -185015.8206856978, + -185482.56088321618, + null, + -185015.8206856978, + -185326.3459551552, + null, + -186804.32931589548, + -188107.46199151454, + null, + -186804.32931589548, + -188167.02460559944, + null, + -186804.32931589548, + -188123.19483452023, + null, + -185481.01398954104, + -185673.3450969795, + null, + -185481.01398954104, + -186215.06335089865, + null, + -185481.01398954104, + -186233.90314590227, + null, + -185481.01398954104, + -185642.18789406322, + null, + -186732.67988941015, + -187899.237151973, + null, + -186732.67988941015, + -188126.8200295349, + null, + -186732.67988941015, + -186143.89671308498, + null, + -186732.67988941015, + -186797.5306394901, + null, + -186732.67988941015, + -186312.18585102723, + null, + -186732.67988941015, + -185867.34727359438, + null, + -186732.67988941015, + -186375.3612237879, + null, + -186732.67988941015, + -187561.3991996525, + null, + -186732.67988941015, + -188349.47236547497, + null, + -186816.72669112886, + -188336.20643323814, + null, + -186816.72669112886, + -187859.86995225446, + null, + -186816.72669112886, + -187695.57614406702, + null, + -186816.72669112886, + -187760.736691232, + null, + -185882.0659107163, + -187194.3312948634, + null, + -185038.89476309827, + -185589.1946310685, + null, + -185605.49639890593, + -186662.39995437322, + null, + -186050.83831655356, + -186235.288447879, + null, + -186050.83831655356, + -186405.03105329376, + null, + -186050.83831655356, + -186892.55000415185, + null, + -186050.83831655356, + -187294.12286925653, + null, + -185545.91429343188, + -186270.0295100747, + null, + -185545.91429343188, + -186078.48063323216, + null, + -185545.91429343188, + -186075.9211697261, + null, + -185541.4531936617, + -185912.47186195152, + null, + -185541.4531936617, + -185961.2957648515, + null, + -185541.4531936617, + -186232.2255226064, + null, + -185541.4531936617, + -185912.22434019603, + null, + -185541.4531936617, + -185580.70430677492, + null, + -185541.4531936617, + -185946.11501890482, + null, + -186168.82581792577, + -187393.59499414876, + null, + -186168.82581792577, + -187309.87049034002, + null, + -186748.98809619094, + -187472.30498547002, + null, + -186748.98809619094, + -188817.03562402542, + null, + -186748.98809619094, + -187333.3919005783, + null, + -186212.79235782122, + -187868.89767386837, + null, + -186212.79235782122, + -186633.25689314547, + null, + -185138.3043013017, + -185460.96898446843, + null, + -185138.3043013017, + -185628.17632635156, + null, + -185886.66303952422, + -186311.45221873518, + null, + -185886.66303952422, + -187196.24604930566, + null, + -185943.81351701595, + -187276.60266658547, + null, + -185943.81351701595, + -186565.47062728266, + null, + -187223.2607479505, + -187852.313928534, + null, + -187223.2607479505, + -187557.78543535888, + null, + -187223.2607479505, + -187719.1913994157, + null, + -187223.2607479505, + -187972.83650257328, + null, + -187223.2607479505, + -187960.29676871523, + null, + -187223.2607479505, + -187557.78543535888, + null, + -187223.2607479505, + -187719.1913994157, + null, + -187223.2607479505, + -187911.10264278692, + null, + -187223.2607479505, + -188630.8453506235, + null, + -187223.2607479505, + -187496.3832271789, + null, + -187223.2607479505, + -187960.29676871523, + null, + -187223.2607479505, + -187496.3832271789, + null, + -187223.2607479505, + -188349.65680053786, + null, + -187223.2607479505, + -187972.83650257328, + null, + -186155.98693221714, + -185809.88961724282, + null, + -186155.98693221714, + -186934.3360415499, + null, + -186155.98693221714, + -187643.83786716606, + null, + -186745.5325164879, + -187994.90708299744, + null, + -186745.5325164879, + -188238.2147196666, + null, + -186745.5325164879, + -187629.56098631225, + null, + -186745.5325164879, + -187007.5772303797, + null, + -186745.5325164879, + -187291.49824795782, + null, + -185873.2153007946, + -186121.19306263936, + null, + -185873.2153007946, + -187012.46365318543, + null, + -185873.2153007946, + -186679.30936474973, + null, + -184956.02375735843, + -185419.46969980895, + null, + -184916.01122916443, + -185379.2656174194, + null, + -187298.0167096983, + -186901.45563588393, + null, + -187298.0167096983, + -187807.15683063408, + null, + -186400.0437673064, + -187994.28122602464, + null, + -186400.0437673064, + -187308.64998441696, + null, + -186436.31884006507, + -188350.75252464804, + null, + -186436.31884006507, + -186863.31396841115, + null, + -186909.73673779095, + -187720.11017674877, + null, + -186909.73673779095, + -187287.84841348106, + null, + -187854.13914095613, + -186909.73673779095, + null, + -186909.73673779095, + -187014.84911061524, + null, + -186909.73673779095, + -187234.71318697152, + null, + -186909.73673779095, + -187204.27240844848, + null, + -186909.73673779095, + -187291.09671769937, + null, + -186909.73673779095, + -187094.25690049428, + null, + -186909.73673779095, + -187609.4187582251, + null, + -186909.73673779095, + -187718.59193484212, + null, + -186909.73673779095, + -186509.34289278075, + null, + -186909.73673779095, + -188147.50652534553, + null, + -185995.1502748551, + -187109.55145493208, + null, + -185995.1502748551, + -186870.85476427, + null, + -185995.1502748551, + -186342.25549461835, + null, + -185995.1502748551, + -186442.0690847481, + null, + -187360.11530786066, + -187594.8777657927, + null, + -187360.11530786066, + -188109.5947916895, + null, + -187360.11530786066, + -188135.7951117508, + null, + -187360.11530786066, + -188126.67429510137, + null, + -187360.11530786066, + -188068.89540782082, + null, + -187360.11530786066, + -188138.17806449422, + null, + -187360.11530786066, + -188113.8147030654, + null, + -187360.11530786066, + -188119.49823623613, + null, + -187360.11530786066, + -188123.9780570342, + null, + -187360.11530786066, + -188121.51859750494, + null, + -187360.11530786066, + -188082.81454332572, + null, + -187360.11530786066, + -188023.85098966694, + null, + -187360.11530786066, + -188038.4334288893, + null, + -187360.11530786066, + -188097.6602407291, + null, + -187360.11530786066, + -188124.65543545736, + null, + -187360.11530786066, + -188079.8329504583, + null, + -187360.11530786066, + -188129.3743830729, + null, + -185731.06588292573, + -186558.77337581848, + null, + -185731.06588292573, + -186655.24842534095, + null, + -185203.40536363234, + -185972.4842459763, + null, + -185203.40536363234, + -185153.37826635112, + null, + -185203.40536363234, + -185765.32519087984, + null, + -185203.40536363234, + -185186.70637920234, + null, + -185203.40536363234, + -185070.59019309614, + null, + -186738.0081330498, + -187673.30496193952, + null, + -186738.0081330498, + -187761.64483234545, + null, + -186738.0081330498, + -187256.5867709403, + null, + -186738.0081330498, + -187366.18291352072, + null, + -186738.0081330498, + -187524.54517428228, + null, + -186738.0081330498, + -187510.56934074408, + null, + -186738.0081330498, + -187529.40680193529, + null, + -186738.0081330498, + -187454.64105987392, + null, + -186427.8924649136, + -187519.31181360115, + null, + -186427.8924649136, + -187123.06288107514, + null, + -186427.8924649136, + -187477.63157623674, + null, + -186427.8924649136, + -187257.24688779732, + null, + -186427.8924649136, + -186882.32732606877, + null, + -185642.1433378504, + -185744.03743667188, + null, + -185642.1433378504, + -185647.84002902228, + null, + -185642.1433378504, + -186969.98767638186, + null, + -185642.1433378504, + -185902.72286645, + null, + -186666.6053800214, + -187303.182190925, + null, + -186666.6053800214, + -188126.80564361744, + null, + -186666.6053800214, + -187360.58931040493, + null, + -186666.6053800214, + -186921.38953855107, + null, + -186666.6053800214, + -186929.557108324, + null, + -186666.6053800214, + -187311.67435395776, + null, + -186666.6053800214, + -187395.2983959365, + null, + -185815.18416524283, + -187080.93819916193, + null, + -185815.18416524283, + -186222.8395883536, + null, + -186758.5541269017, + -187442.89148744586, + null, + -186758.5541269017, + -188140.00051928166, + null, + -186758.5541269017, + -188151.46145141035, + null, + -186758.5541269017, + -187564.53232755137, + null, + -187178.7309685011, + -188215.09477527425, + null, + -187178.7309685011, + -187376.35249447948, + null, + -187178.7309685011, + -188189.81482384, + null, + -187178.7309685011, + -188034.83047066652, + null, + -187178.7309685011, + -187747.06924668472, + null, + -187178.7309685011, + -188800.80256482895, + null, + -187178.7309685011, + -187102.12973368363, + null, + -187178.7309685011, + -187917.99657074743, + null, + -185344.84167674318, + -185057.76047148168, + null, + -185344.84167674318, + -186486.71688355424, + null, + -185344.84167674318, + -185130.529001914, + null, + -185344.84167674318, + -185147.71919034136, + null, + -186299.91453282413, + -187135.60577403157, + null, + -186299.91453282413, + -187646.46474410285, + null, + -186299.91453282413, + -187248.01430917686, + null, + -184913.47542316676, + -185284.9406615433, + null, + -186120.90133707918, + -186286.42140426437, + null, + -186120.90133707918, + -186595.59491334032, + null, + -186120.90133707918, + -187638.170551301, + null, + -186120.90133707918, + -186478.24245183423, + null, + -186355.57333992186, + -187993.35866484616, + null, + -186355.57333992186, + -187229.13331112568, + null, + -186189.16120161928, + -187938.08243107222, + null, + -186189.16120161928, + -185765.32519087984, + null, + -186020.49632337195, + -186825.88912431858, + null, + -186020.49632337195, + -186708.8994492446, + null, + -186020.49632337195, + -187164.0688469574, + null, + -185978.46454360176, + -186825.88912431858, + null, + -185978.46454360176, + -187164.0688469574, + null, + -186423.1890183184, + -187461.08290298193, + null, + -186423.1890183184, + -187221.3523749667, + null, + -186423.1890183184, + -186992.1811585919, + null, + -186423.1890183184, + -187142.28778417234, + null, + -186423.1890183184, + -187056.31471454934, + null, + -186357.39136631842, + -186746.17776224224, + null, + -186357.39136631842, + -187434.38846414318, + null, + -186357.39136631842, + -187826.61084050385, + null, + -186197.9689961989, + -187003.93902302586, + null, + -186197.9689961989, + -187742.596093895, + null, + -185022.86408063665, + -185540.26300420432, + null, + -185022.86408063665, + -185199.27035351453, + null, + -187501.80648056217, + -188288.73056814942, + null, + -187501.80648056217, + -186980.8144633269, + null, + -187501.80648056217, + -188423.99184216498, + null, + -187501.80648056217, + -188384.46387554856, + null, + -187501.80648056217, + -188099.9720945511, + null, + -187501.80648056217, + -187819.29574656484, + null, + -187501.80648056217, + -188413.92210597807, + null, + -187501.80648056217, + -187838.56400906073, + null, + -187501.80648056217, + -188187.00891794523, + null, + -187501.80648056217, + -188567.58941515462, + null, + -187501.80648056217, + -187941.9237365848, + null, + -187501.80648056217, + -188480.6248001793, + null, + -187501.80648056217, + -188752.9247450727, + null, + -187501.80648056217, + -188237.25251034857, + null, + -187501.80648056217, + -188232.11752967277, + null, + -187501.80648056217, + -186369.47424236263, + null, + -187501.80648056217, + -187463.4585977219, + null, + -187501.80648056217, + -186934.3360415499, + null, + -187501.80648056217, + -188159.4341766519, + null, + -187501.80648056217, + -188325.90735821644, + null, + -184448.27042316197, + -184908.1166309739, + null, + -184448.27042316197, + -184198.70078145587, + null, + -185456.1454266718, + -186439.9649841702, + null, + -186332.64294302047, + -187862.98846391006, + null, + -186332.64294302047, + -187369.8494239768, + null, + -184782.3347015735, + -185019.88314560454, + null, + -186335.73632380622, + -187109.55145493208, + null, + -186335.73632380622, + -187639.15760068822, + null, + -186335.73632380622, + -186765.58714734673, + null, + -186335.73632380622, + -187204.27240844848, + null, + -186335.73632380622, + -186509.34289278075, + null, + -186471.46349538234, + -187686.9419411423, + null, + -186471.46349538234, + -187048.28032769196, + null, + -186471.46349538234, + -186794.89125618731, + null, + -186471.46349538234, + -186822.41511138683, + null, + -186471.46349538234, + -187563.39014736656, + null, + -186139.010172475, + -186870.85476427, + null, + -186139.010172475, + -187109.55145493208, + null, + -186139.010172475, + -187385.0923661435, + null, + -186139.010172475, + -186888.21059285887, + null, + -186139.010172475, + -185829.80948671233, + null, + -186139.010172475, + -187041.9723647092, + null, + -186139.010172475, + -185125.23152722794, + null, + -186139.010172475, + -187095.6197581376, + null, + -186139.010172475, + -185897.53117830772, + null, + -186139.010172475, + -185769.0972955552, + null, + -186139.010172475, + -186826.48542049516, + null, + -186139.010172475, + -185756.5836062822, + null, + -186139.010172475, + -186973.73232271746, + null, + -186139.010172475, + -185101.1509899331, + null, + -186139.010172475, + -186015.29034764567, + null, + -186139.010172475, + -186628.54466062496, + null, + -186139.010172475, + -185868.99053592625, + null, + -186139.010172475, + -185892.3867642372, + null, + -186139.010172475, + -185982.92772953527, + null, + -186139.010172475, + -186563.35158898422, + null, + -186139.010172475, + -186333.64344871804, + null, + -186316.0422884422, + -188137.57555694113, + null, + -186316.0422884422, + -186649.44372244837, + null, + -185427.96582922543, + -185398.36138060363, + null, + -185427.96582922543, + -186628.42409363462, + null, + -185427.96582922543, + -185328.69791728977, + null, + -185427.96582922543, + -185645.35316113118, + null, + -185447.0419864294, + -186628.42409363462, + null, + -185447.0419864294, + -185645.35316113118, + null, + -185447.0419864294, + -185328.69791728977, + null, + -184939.12159409848, + -185190.4973312962, + null, + -184939.12159409848, + -184810.0609463012, + null, + -184939.12159409848, + -185673.16887228226, + null, + -184939.12159409848, + -184555.20493347468, + null, + -185499.81083646082, + -186603.54049738206, + null, + -185499.81083646082, + -185000.47819436324, + null, + -185499.81083646082, + -185769.4575393162, + null, + -185499.81083646082, + -185778.33475206984, + null, + -185499.81083646082, + -185864.6939073649, + null, + -185499.81083646082, + -185242.38515533158, + null, + -185420.27932112452, + -185902.13729941534, + null, + -185420.27932112452, + -184710.20690531647, + null, + -185420.27932112452, + -186336.77161351635, + null, + -185420.27932112452, + -186119.94401614703, + null, + -186178.47202606747, + -185893.69281000222, + null, + -186178.47202606747, + -187563.04088038372, + null, + -186178.47202606747, + -186983.54442722624, + null, + -186178.47202606747, + -187703.92647279546, + null, + -186178.47202606747, + -185743.6029551579, + null, + -186178.47202606747, + -185968.90039689335, + null, + -186178.47202606747, + -186108.22088459652, + null, + -186178.47202606747, + -186089.89882082163, + null, + -186178.47202606747, + -185308.25354167318, + null, + -186178.47202606747, + -186216.4074492947, + null, + -185579.11398649425, + -186691.95573974657, + null, + -185579.11398649425, + -186418.54900034756, + null, + -185579.11398649425, + -184684.6304903929, + null, + -185579.11398649425, + -186003.21438929535, + null, + -185579.11398649425, + -186109.56426562366, + null, + -185579.11398649425, + -186120.97182205616, + null, + -185579.11398649425, + -186324.3395864327, + null, + -185579.11398649425, + -186722.7974234636, + null, + -162543.04429998007, + -140718.26168474945, + null, + -162543.04429998007, + -162271.2627223581, + null, + -185402.97734600544, + -186085.13248614842, + null, + -185402.97734600544, + -186068.28536481576, + null, + -185402.97734600544, + -185427.49168366197, + null, + -184648.39875714693, + -184985.73631769797, + null, + -184648.39875714693, + -184766.12089212818, + null, + -185873.0454380232, + -186121.19306263936, + null, + -185873.0454380232, + -187012.46365318543, + null, + -185873.0454380232, + -186679.30936474973, + null, + -185520.70192438262, + -185693.59243815514, + null, + -185520.70192438262, + -186460.20786475393, + null, + -185520.70192438262, + -186037.59716773787, + null, + -185045.13302486815, + -185450.5833065486, + null, + -185045.13302486815, + -185396.0966615638, + null, + -185045.13302486815, + -185276.4054007422, + null, + -184686.93743150224, + -184847.09039631113, + null, + -184749.34739859024, + -184823.61753243406, + null, + -184749.34739859024, + -184778.45025064657, + null, + -184749.34739859024, + -185109.39166642443, + null, + -184975.0257556787, + -185556.4843562863, + null, + -186494.74258418888, + -186719.88216859457, + null, + -186494.74258418888, + -186773.59087394056, + null, + -186494.74258418888, + -186505.48261010222, + null, + -186494.74258418888, + -187516.20202739417, + null, + -186494.74258418888, + -188001.86892294977, + null, + -186494.74258418888, + -186342.25549461835, + null, + -186494.74258418888, + -187095.6197581376, + null, + -186002.60660400984, + -186870.85476427, + null, + -186002.60660400984, + -187109.55145493208, + null, + -186002.60660400984, + -186442.0690847481, + null, + -186002.60660400984, + -186563.35158898422, + null, + -185421.69274864852, + -186684.80121130878, + null, + -185421.69274864852, + -184705.8070100957, + null, + -184586.8813999643, + -184864.84138353547, + null, + -184586.8813999643, + -184566.07730183762, + null, + -185681.38668976224, + -186337.80196089507, + null, + -185681.38668976224, + -185906.65861356055, + null, + -185681.38668976224, + -186150.906960568, + null, + -185681.38668976224, + -186089.31929989046, + null, + -185681.38668976224, + -186474.6235265719, + null, + -186353.07679074036, + -187993.35866484616, + null, + -186353.07679074036, + -187229.13331112568, + null, + -185564.40303426507, + -186468.51753357225, + null, + -185564.40303426507, + -186122.9165758566, + null, + -186002.1139085686, + -187164.0688469574, + null, + -186002.1139085686, + -186825.88912431858, + null, + -185305.14466217102, + -186174.69969704037, + null, + -185778.17229121647, + -186691.95573974657, + null, + -185778.17229121647, + -186109.56426562366, + null, + -185778.17229121647, + -186418.54900034756, + null, + -185778.17229121647, + -186324.3395864327, + null, + -186985.55167581502, + -188107.46199151454, + null, + -186985.55167581502, + -187899.4158525461, + null, + -186985.55167581502, + -187859.86995225446, + null, + -186985.55167581502, + -188126.8200295349, + null, + -186985.55167581502, + -188123.19483452023, + null, + -186985.55167581502, + -187448.3572804437, + null, + -186263.96942212473, + -187820.43378501857, + null, + -186263.96942212473, + -186775.64544110073, + null, + -185857.1772490468, + -185619.5302422243, + null, + -185857.1772490468, + -185704.2175677414, + null, + -185857.1772490468, + -185937.20459336432, + null, + -185857.1772490468, + -185523.5880471388, + null, + -185857.1772490468, + -185073.60125989263, + null, + -185857.1772490468, + -185681.62401491503, + null, + -185857.1772490468, + -185755.25804511458, + null, + -185857.1772490468, + -187564.53232755137, + null, + -185857.1772490468, + -185742.32278142963, + null, + -185857.1772490468, + -185812.36978806616, + null, + -185857.1772490468, + -186839.17366214117, + null, + -185857.1772490468, + -185460.24572993352, + null, + -185857.1772490468, + -185767.89203574616, + null, + -185857.1772490468, + -185411.53656573629, + null, + -185857.1772490468, + -186079.66390792772, + null, + -185857.1772490468, + -185233.48683497915, + null, + -185857.1772490468, + -184948.90466462815, + null, + -185857.1772490468, + -185247.7806087925, + null, + -185857.1772490468, + -186549.85209355422, + null, + -185857.1772490468, + -184766.12089212818, + null, + -185857.1772490468, + -186917.39214776302, + null, + -185857.1772490468, + -186657.063249416, + null, + -185285.2393191878, + -186137.98831876533, + null, + -187056.932365551, + -187630.12975349987, + null, + -187056.932365551, + -187109.55145493208, + null, + -187056.932365551, + -187687.3081902085, + null, + -187056.932365551, + -187525.68775441864, + null, + -187056.932365551, + -187326.55715253745, + null, + -187056.932365551, + -189245.3547860996, + null, + -187056.932365551, + -187095.6197581376, + null, + -184676.4950788661, + -184795.0131029055, + null, + -184676.4950788661, + -184934.10299478343, + null, + -184676.4950788661, + -184595.03593603414, + null, + -184930.69103318956, + -185557.18603881687, + null, + -184930.69103318956, + -184826.82895671725, + null, + -185654.1953572347, + -185703.95718490216, + null, + -185654.1953572347, + -185294.42224015918, + null, + -185654.1953572347, + -185575.41563245628, + null, + -185654.1953572347, + -185794.81985080332, + null, + -185654.1953572347, + -186172.60986329245, + null, + -185654.1953572347, + -185661.8516968439, + null, + -185654.1953572347, + -185638.24577050543, + null, + -185654.1953572347, + -185965.40347835567, + null, + -185654.1953572347, + -186004.1374210784, + null, + -185654.1953572347, + -185781.3584731582, + null, + -185654.1953572347, + -185664.76866772544, + null, + -185654.1953572347, + -185815.6127283012, + null, + -185654.1953572347, + -184723.17471127305, + null, + -185654.1953572347, + -186009.95200031195, + null, + -185654.1953572347, + -186195.38531040744, + null, + -185654.1953572347, + -185753.05619845918, + null, + -185654.1953572347, + -185703.19314166557, + null, + -185654.1953572347, + -186594.9114183287, + null, + -185654.1953572347, + -185580.15593113314, + null, + -185654.1953572347, + -185541.68129385356, + null, + -185654.1953572347, + -186549.16628896404, + null, + -185654.1953572347, + -185479.2357860194, + null, + -184539.2197937198, + -184578.21753488245, + null, + -184539.2197937198, + -184618.35740420443, + null, + -184539.2197937198, + -184441.46870504398, + null, + -184539.2197937198, + -184568.61994464282, + null, + -184539.2197937198, + -184661.85928366336, + null, + -184539.2197937198, + -184523.38966404533, + null, + -185426.67525594652, + -185717.16624584142, + null, + -185426.67525594652, + -185483.3295420938, + null, + -185426.67525594652, + -186417.94305405728, + null, + -185125.95912239008, + -186246.51492087843, + null, + -185125.95912239008, + -184845.9682979859, + null, + -185125.95912239008, + -184540.75647463603, + null, + -186228.52516030474, + -186901.45563588393, + null, + -186228.52516030474, + -187807.15683063408, + null, + -185197.58467855424, + -184666.37763325783, + null, + -185197.58467855424, + -185185.18619115572, + null, + -185197.58467855424, + -186199.38823877013, + null, + -184440.56367975674, + -184507.9099237428, + null, + -185759.1915587864, + -186691.95573974657, + null, + -185759.1915587864, + -186109.56426562366, + null, + -185759.1915587864, + -186418.54900034756, + null, + -185759.1915587864, + -186324.3395864327, + null, + -185972.1252497052, + -187003.43820973596, + null, + -185972.1252497052, + -186545.16136884323, + null, + -185972.1252497052, + -186951.0722009215, + null, + -186192.2420612465, + -186588.34259437467, + null, + -186192.2420612465, + -185936.8747686248, + null, + -186192.2420612465, + -186443.85498753583, + null, + -186192.2420612465, + -186141.55895141896, + null, + -186192.2420612465, + -187405.71770728158, + null, + -186192.2420612465, + -187389.66797592156, + null, + -185572.22568055146, + -186647.18276851127, + null, + -185572.22568055146, + -185889.87833542484, + null, + -184716.55236438496, + -184523.06400318502, + null, + -184716.55236438496, + -185073.57268297486, + null, + -184716.55236438496, + -185077.8905521608, + null, + -184716.55236438496, + -184685.0000328583, + null, + -187315.42788165333, + -187192.2975120381, + null, + -187315.42788165333, + -187002.80523749278, + null, + -187315.42788165333, + -187003.69318072736, + null, + -187315.42788165333, + -186907.3329708996, + null, + -187315.42788165333, + -187388.2617066739, + null, + -187315.42788165333, + -186950.9060841143, + null, + -187315.42788165333, + -187426.40772893745, + null, + -187315.42788165333, + -188015.87833895627, + null, + -187315.42788165333, + -187456.03533027926, + null, + -187315.42788165333, + -186718.14847004472, + null, + -187315.42788165333, + -187192.52823779927, + null, + -187315.42788165333, + -187430.84477593255, + null, + -187315.42788165333, + -188090.9736323963, + null, + -187315.42788165333, + -187057.4226896695, + null, + -187315.42788165333, + -187299.00679136443, + null, + -187315.42788165333, + -187898.09108993356, + null, + -187315.42788165333, + -187800.71024494842, + null, + -187315.42788165333, + -187578.7945424208, + null, + -187315.42788165333, + -187852.2157456399, + null, + -187315.42788165333, + -188445.4527261622, + null, + -187315.42788165333, + -187821.0464781729, + null, + -187315.42788165333, + -187538.8698057885, + null, + -187315.42788165333, + -187904.2446480533, + null, + -187315.42788165333, + -187707.84632557898, + null, + -187315.42788165333, + -187515.5351218408, + null, + -187315.42788165333, + -187294.31909113945, + null, + -187315.42788165333, + -188304.55925484645, + null, + -187315.42788165333, + -186927.86579355603, + null, + -187315.42788165333, + -187675.71540639747, + null, + -187315.42788165333, + -187132.18270199542, + null, + -187315.42788165333, + -186661.11383538053, + null, + -187315.42788165333, + -187238.4395913106, + null, + -187315.42788165333, + -186711.99171266862, + null, + -187315.42788165333, + -187274.8884360902, + null, + -187315.42788165333, + -187605.70324073057, + null, + -187315.42788165333, + -187459.62733920277, + null, + -187315.42788165333, + -187350.64454981094, + null, + -187315.42788165333, + -187987.25877007708, + null, + -187315.42788165333, + -187340.14536462337, + null, + -187315.42788165333, + -188133.99953381368, + null, + -187315.42788165333, + -187908.8502698971, + null, + -187315.42788165333, + -187974.06713440962, + null, + -187315.42788165333, + -188174.96094340537, + null, + -187315.42788165333, + -187654.68501915902, + null, + -187315.42788165333, + -187919.67545603745, + null, + -187315.42788165333, + -188033.5893052449, + null, + -187315.42788165333, + -187179.74870279036, + null, + -187315.42788165333, + -187958.6837154068, + null, + -187315.42788165333, + -187098.08472081405, + null, + -187315.42788165333, + -186969.98767638186, + null, + -187315.42788165333, + -187817.05963383534, + null, + -187315.42788165333, + -187227.08326375764, + null, + -187315.42788165333, + -187840.08914857774, + null, + -187315.42788165333, + -187243.47707715337, + null, + -187315.42788165333, + -187358.05164964797, + null, + -187315.42788165333, + -187870.53601201336, + null, + -187315.42788165333, + -187247.9917175175, + null, + -187315.42788165333, + -187825.62181611278, + null, + -187315.42788165333, + -187383.08957187168, + null, + -187315.42788165333, + -186137.40837100832, + null, + -187315.42788165333, + -187368.8604475479, + null, + -187315.42788165333, + -186975.18042715648, + null, + -187315.42788165333, + -187218.33649070092, + null, + -187315.42788165333, + -187115.92005878876, + null, + -186517.17238975927, + -188577.08388106618, + null, + -185020.17742510125, + -185632.1535476023, + null, + -185020.17742510125, + -185003.46048722725, + null, + -186047.50278945875, + -186711.99171266862, + null, + -186047.50278945875, + -187098.08472081405, + null, + -186047.50278945875, + -186969.98767638186, + null, + -186067.006560711, + -186782.64173592345, + null, + -186067.006560711, + -187098.08472081405, + null, + -186067.006560711, + -186969.98767638186, + null, + -185935.95217366592, + -187389.2021586, + null, + -187267.3268205127, + -188364.15112362726, + null, + -187267.3268205127, + -188088.5917691664, + null, + -187267.3268205127, + -187984.06459012086, + null, + -187267.3268205127, + -188713.3588507996, + null, + -187267.3268205127, + -188624.00866552212, + null, + -187267.3268205127, + -188363.5387691212, + null, + -186480.07163780744, + -187634.18143546607, + null, + -186480.07163780744, + -186777.46669602653, + null, + -186480.07163780744, + -186820.56521939114, + null, + -186480.07163780744, + -186867.77653250156, + null, + -186480.07163780744, + -186618.4433734245, + null, + -186480.07163780744, + -187699.43272561228, + null, + -185251.66599737256, + -185956.04238149663, + null, + -185251.66599737256, + -185637.3755433982, + null, + -186588.42377164616, + -187524.54517428228, + null, + -186588.42377164616, + -187761.64483234545, + null, + -186588.42377164616, + -187366.18291352072, + null, + -186588.42377164616, + -187529.40680193529, + null, + -186588.42377164616, + -187454.64105987392, + null, + -185212.56249281162, + -184666.37763325783, + null, + -185212.56249281162, + -185185.18619115572, + null, + -185212.56249281162, + -185160.1993215984, + null, + -185212.56249281162, + -186199.38823877013, + null, + -185768.74376793872, + -186691.95573974657, + null, + -185768.74376793872, + -186109.56426562366, + null, + -185768.74376793872, + -186418.54900034756, + null, + -185768.74376793872, + -186324.3395864327, + null, + -187072.0455521363, + -187248.01430917686, + null, + -187072.0455521363, + -187466.71062113094, + null, + -187072.0455521363, + -188115.28176793884, + null, + -187072.0455521363, + -187716.48506167036, + null, + -187072.0455521363, + -186790.41009242184, + null, + -187072.0455521363, + -188144.50874112692, + null, + -187072.0455521363, + -187644.81497540837, + null, + -187072.0455521363, + -187452.13970792587, + null, + -187072.0455521363, + -187779.38447152777, + null, + -187072.0455521363, + -187503.58157137837, + null, + -187072.0455521363, + -187819.7552003765, + null, + -187072.0455521363, + -187646.46474410285, + null, + -187072.0455521363, + -187727.83570354496, + null, + -187072.0455521363, + -187950.17000928946, + null, + -187795.37604648358, + -187761.64483234545, + null, + -187795.37604648358, + -187918.25825739285, + null, + -187795.37604648358, + -187673.30496193952, + null, + -187795.37604648358, + -188059.71110303834, + null, + -187795.37604648358, + -188071.01532488095, + null, + -187795.37604648358, + -188007.70634351147, + null, + -187795.37604648358, + -187524.54517428228, + null, + -187795.37604648358, + -188127.41684105122, + null, + -187795.37604648358, + -186199.38823877013, + null, + -187795.37604648358, + -187248.01430917686, + null, + -187795.37604648358, + -188138.2687240919, + null, + -187795.37604648358, + -187963.5766486151, + null, + -187795.37604648358, + -188544.97753253547, + null, + -187795.37604648358, + -187850.79133717477, + null, + -187795.37604648358, + -187256.5867709403, + null, + -187795.37604648358, + -188029.4838038799, + null, + -187795.37604648358, + -187366.18291352072, + null, + -187795.37604648358, + -187510.56934074408, + null, + -187795.37604648358, + -187927.5772533455, + null, + -187795.37604648358, + -188053.78221453892, + null, + -187795.37604648358, + -187985.91644521983, + null, + -187795.37604648358, + -188319.77932730978, + null, + -187795.37604648358, + -188058.86903379706, + null, + -187795.37604648358, + -187950.90711760413, + null, + -187795.37604648358, + -188156.86956179672, + null, + -187795.37604648358, + -188229.6880717756, + null, + -187795.37604648358, + -187953.60593885268, + null, + -187795.37604648358, + -187135.60577403157, + null, + -187795.37604648358, + -188484.82353855815, + null, + -187795.37604648358, + -188095.58751833517, + null, + -187795.37604648358, + -187872.1074932044, + null, + -187795.37604648358, + -187955.31108521658, + null, + -187795.37604648358, + -187454.64105987392, + null, + -187795.37604648358, + -188110.34340208996, + null, + -187795.37604648358, + -188020.26106810436, + null, + -187795.37604648358, + -188084.40086565504, + null, + -187795.37604648358, + -188071.6303022562, + null, + -187795.37604648358, + -188480.56911294378, + null, + -189725.6419856943, + -189671.69440695026, + null, + -189725.6419856943, + -189769.90898797516, + null, + -189725.6419856943, + -190284.9707253069, + null, + -187757.4125399983, + -188031.62889293503, + null, + -187757.4125399983, + -186743.00019037828, + null, + -187757.4125399983, + -188003.55552109788, + null, + -187757.4125399983, + -188363.56661918454, + null, + -187648.12160933763, + -187538.8698057885, + null, + -187648.12160933763, + -187578.7945424208, + null, + -187648.12160933763, + -187904.2446480533, + null, + -187648.12160933763, + -187852.2157456399, + null, + -187648.12160933763, + -188090.9736323963, + null, + -187648.12160933763, + -187746.85639765018, + null, + -187648.12160933763, + -187707.84632557898, + null, + -187648.12160933763, + -187515.5351218408, + null, + -187648.12160933763, + -187274.8884360902, + null, + -187648.12160933763, + -187605.70324073057, + null, + -187648.12160933763, + -187987.25877007708, + null, + -187648.12160933763, + -188174.96094340537, + null, + -187648.12160933763, + -186969.98767638186, + null, + -187648.12160933763, + -187098.08472081405, + null, + -187648.12160933763, + -187115.92005878876, + null, + -188696.13322752403, + -188346.87533387216, + null, + -188070.50402783387, + -187903.51839239706, + null, + -188070.50402783387, + -188043.9321563204, + null, + -188070.50402783387, + -188112.71027176845, + null, + -189274.10474049454, + -188349.65680053786, + null, + -189265.0331807753, + -188550.03414205718, + null, + -189023.51159242663, + -188189.81482384, + null, + -189023.51159242663, + -188215.09477527425, + null, + -189023.51159242663, + -188800.80256482895, + null, + -189150.0722038921, + -189449.1232264199, + null, + -189150.0722038921, + -189768.43355961813, + null, + -189150.0722038921, + -188740.94405652286, + null, + -189150.0722038921, + -189567.65591494428, + null, + -189150.0722038921, + -188309.81027713025, + null, + -189150.0722038921, + -188392.79233416848, + null, + -189150.0722038921, + -189319.79863515618, + null, + -188785.27223021127, + -189378.6089809849, + null, + -188785.27223021127, + -189178.14899455837, + null, + -188785.27223021127, + -188386.42729721224, + null, + -188785.27223021127, + -188088.5917691664, + null, + -188785.27223021127, + -189445.19176040665, + null, + -188785.27223021127, + -187087.48998708234, + null, + -188647.58850257998, + -188826.42779028194, + null, + -187775.4606762898, + -188553.87487120138, + null, + -187775.4606762898, + -187941.06540326262, + null, + -187775.4606762898, + -186336.77161351635, + null, + -189047.84983436737, + -189771.93099297164, + null, + -189047.84983436737, + -188529.93400312582, + null, + -189047.84983436737, + -189358.06753687156, + null, + -188214.95290711892, + -187993.35866484616, + null, + -188214.95290711892, + -187229.13331112568, + null, + -187829.60079496383, + -187164.0688469574, + null, + -187829.60079496383, + -186825.88912431858, + null, + -188860.81131323622, + -188609.42242236514, + null, + -188860.81131323622, + -188787.1864357604, + null, + -188860.81131323622, + -188843.1765843312, + null, + -188860.81131323622, + -188754.528514879, + null, + -187594.8777657927, + -186691.95573974657, + null, + -187594.8777657927, + -186418.54900034756, + null, + -187594.8777657927, + -184684.6304903929, + null, + -187594.8777657927, + -186003.21438929535, + null, + -187594.8777657927, + -186109.56426562366, + null, + -187594.8777657927, + -186120.97182205616, + null, + -187594.8777657927, + -186324.3395864327, + null, + -187594.8777657927, + -186722.7974234636, + null, + -188109.5947916895, + -188094.74107414478, + null, + -188109.5947916895, + -188088.6155039975, + null, + -188109.5947916895, + -188060.38234672905, + null, + -188109.5947916895, + -188067.26794690712, + null, + -188109.5947916895, + -187621.21847052537, + null, + -188135.7951117508, + -188157.58246492682, + null, + -188126.67429510137, + -188516.84498886167, + null, + -188126.67429510137, + -188043.9321563204, + null, + -188126.67429510137, + -187903.51839239706, + null, + -188126.67429510137, + -187915.12744256484, + null, + -188126.67429510137, + -188443.7578148925, + null, + -188068.89540782082, + -188116.10771085072, + null, + -188068.89540782082, + -187264.47609357847, + null, + -188138.17806449422, + -188176.21031836848, + null, + -188138.17806449422, + -188170.57903762278, + null, + -188113.8147030654, + -188294.6644996429, + null, + -188119.49823623613, + -188036.63953174325, + null, + -188119.49823623613, + -188101.5543653428, + null, + -188123.9780570342, + -188248.6764013949, + null, + -188121.51859750494, + -188319.83415129757, + null, + -188082.81454332572, + -187308.64998441696, + null, + -188082.81454332572, + -188097.50692052435, + null, + -188023.85098966694, + -186839.17366214117, + null, + -188038.4334288893, + -187109.55145493208, + null, + -188038.4334288893, + -187204.27240844848, + null, + -188038.4334288893, + -187291.09671769937, + null, + -187808.73897039745, + -188097.6602407291, + null, + -188124.65543545736, + -188134.4762723594, + null, + -188124.65543545736, + -188272.49029985358, + null, + -188124.65543545736, + -188206.77019901376, + null, + -188079.8329504583, + -188508.96860365788, + null, + -188079.8329504583, + -188262.8988252888, + null, + -187109.55145493208, + -186825.88912431858, + null, + -187109.55145493208, + -187164.0688469574, + null, + -186870.85476427, + -187569.11179548127, + null, + -186870.85476427, + -186292.02017205243, + null, + -186870.85476427, + -187472.02889830602, + null, + -186870.85476427, + -187099.9147383517, + null, + -186870.85476427, + -186900.76235636437, + null, + -187896.4403547719, + -188027.44881588852, + null, + -186832.87175251383, + -185937.20459336432, + null, + -188680.97177115767, + -188228.79178433472, + null, + -188228.79178433472, + -188432.67762655424, + null, + -188228.79178433472, + -188121.5471579039, + null, + -187854.13914095613, + -188228.79178433472, + null, + -188560.0382335581, + -187785.39966082262, + null, + -188560.0382335581, + -188432.80628645205, + null, + -188560.0382335581, + -187926.7782463939, + null, + -188560.0382335581, + -188158.79572465117, + null, + -188560.0382335581, + -189762.7876085155, + null, + -189116.42239682464, + -189266.35842376057, + null, + -187271.2309208508, + -186732.12278519588, + null, + -188311.63055655325, + -188614.55061231283, + null, + -188311.63055655325, + -188647.95316923055, + null, + -188311.63055655325, + -187592.5524397363, + null, + -188311.63055655325, + -188932.9501046265, + null, + -188311.63055655325, + -188606.43169921683, + null, + -188311.63055655325, + -188170.21924476055, + null, + -188311.63055655325, + -188549.55255864532, + null, + -187739.67693354897, + -187962.6323277363, + null, + -187739.67693354897, + -187191.96052360526, + null, + -187063.92444055318, + -186920.5220397891, + null, + -187063.92444055318, + -186786.62616005604, + null, + -187063.92444055318, + -186385.05781979268, + null, + -187917.59257197715, + -187673.30496193952, + null, + -187917.59257197715, + -187524.54517428228, + null, + -187917.59257197715, + -187963.5766486151, + null, + -187917.59257197715, + -188156.86956179672, + null, + -187917.59257197715, + -188061.28832562154, + null, + -187917.59257197715, + -187390.1456922822, + null, + -187917.59257197715, + -188062.07603085358, + null, + -187917.59257197715, + -188544.97753253547, + null, + -187917.59257197715, + -188058.86903379706, + null, + -187917.59257197715, + -188007.70634351147, + null, + -187917.59257197715, + -188037.6869183598, + null, + -187917.59257197715, + -188212.0229575658, + null, + -187917.59257197715, + -187761.64483234545, + null, + -187917.59257197715, + -187256.5867709403, + null, + -187917.59257197715, + -188029.4838038799, + null, + -187917.59257197715, + -187918.25825739285, + null, + -187917.59257197715, + -187953.60593885268, + null, + -187917.59257197715, + -187930.06229443732, + null, + -187917.59257197715, + -188090.36866231312, + null, + -187917.59257197715, + -187366.18291352072, + null, + -187917.59257197715, + -188036.00538210757, + null, + -187917.59257197715, + -188319.77932730978, + null, + -187917.59257197715, + -188133.31477841723, + null, + -187917.59257197715, + -187529.40680193529, + null, + -187917.59257197715, + -187454.64105987392, + null, + -187917.59257197715, + -188173.70843883988, + null, + -187917.59257197715, + -188480.56911294378, + null, + -187718.91875175654, + -187844.47640926004, + null, + -187718.91875175654, + -187524.54517428228, + null, + -187718.91875175654, + -187872.30401330232, + null, + -187718.91875175654, + -187529.40680193529, + null, + -186803.90033266746, + -186691.95573974657, + null, + -186803.90033266746, + -186109.56426562366, + null, + -186803.90033266746, + -186418.54900034756, + null, + -186803.90033266746, + -186324.3395864327, + null, + -186803.59234443662, + -186691.95573974657, + null, + -186803.59234443662, + -186109.56426562366, + null, + -186803.59234443662, + -186418.54900034756, + null, + -186803.59234443662, + -186324.3395864327, + null, + -187788.5747429511, + -187796.24083019167, + null, + -187788.5747429511, + -187732.98575521674, + null, + -187788.5747429511, + -187983.71489758827, + null, + -187893.88302668915, + -188083.6875223691, + null, + -187975.0076209473, + -187897.73274734168, + null, + -187975.0076209473, + -188059.30925306716, + null, + -188925.1717325238, + -189142.09064355088, + null, + -188925.1717325238, + -188270.16098356986, + null, + -188925.1717325238, + -188583.01081795827, + null, + -188925.1717325238, + -189066.13649801663, + null, + -188925.1717325238, + -188752.9247450727, + null, + -188925.1717325238, + -187487.7635363833, + null, + -188925.1717325238, + -189713.64541984547, + null, + -188925.1717325238, + -189555.82412272718, + null, + -188925.1717325238, + -189852.59554859076, + null, + -188925.1717325238, + -189218.8087403817, + null, + -188925.1717325238, + -190167.76777641778, + null, + -188925.1717325238, + -189645.6152674434, + null, + -188925.1717325238, + -188532.9554546275, + null, + -188925.1717325238, + -189523.58352465904, + null, + -188925.1717325238, + -189343.14144035138, + null, + -188021.2228785292, + -188235.48072958956, + null, + -188021.2228785292, + -188180.02447286362, + null, + -187932.34492398132, + -188078.15933603563, + null, + -187932.34492398132, + -187990.69685232927, + null, + -188182.1801783731, + -188502.1043309098, + null, + -188182.1801783731, + -188206.01901300566, + null, + -188182.1801783731, + -188368.05619089317, + null, + -187688.50752132258, + -187629.39631769145, + null, + -187688.50752132258, + -187643.6924245978, + null, + -187688.50752132258, + -187638.51851489613, + null, + -188302.59803287973, + -188117.50710319917, + null, + -187793.53772320974, + -187804.318709099, + null, + -188261.16935105162, + -188499.9137700682, + null, + -188261.16935105162, + -188088.5917691664, + null, + -188261.16935105162, + -187984.06459012086, + null, + -188261.16935105162, + -188713.3588507996, + null, + -188261.16935105162, + -188417.0795439115, + null, + -188539.05431916684, + -188684.44500197342, + null, + -188539.05431916684, + -188616.47166411072, + null, + -188539.05431916684, + -189238.12878373484, + null, + -187612.6161505803, + -187761.64483234545, + null, + -187612.6161505803, + -187256.5867709403, + null, + -187612.6161505803, + -187366.18291352072, + null, + -187612.6161505803, + -187510.56934074408, + null, + -187612.6161505803, + -187524.54517428228, + null, + -187612.6161505803, + -187529.40680193529, + null, + -187612.6161505803, + -187454.64105987392, + null, + -187887.72467534128, + -187745.42964825404, + null, + -187594.8777657927, + -187994.01573117293, + null, + -188109.5947916895, + -187994.01573117293, + null, + -188135.7951117508, + -187994.01573117293, + null, + -188126.67429510137, + -187994.01573117293, + null, + -188068.89540782082, + -187994.01573117293, + null, + -188138.17806449422, + -187994.01573117293, + null, + -188113.8147030654, + -187994.01573117293, + null, + -188119.49823623613, + -187994.01573117293, + null, + -188123.9780570342, + -187994.01573117293, + null, + -188121.51859750494, + -187994.01573117293, + null, + -188082.81454332572, + -187994.01573117293, + null, + -188023.85098966694, + -187994.01573117293, + null, + -188038.4334288893, + -187994.01573117293, + null, + -188097.6602407291, + -187994.01573117293, + null, + -188124.65543545736, + -187994.01573117293, + null, + -188079.8329504583, + -187994.01573117293, + null, + -188129.3743830729, + -187994.01573117293, + null, + -186612.36184898173, + -186085.13248614842, + null, + -186612.36184898173, + -186068.28536481576, + null, + -186612.36184898173, + -187098.08472081405, + null, + -186612.36184898173, + -186969.98767638186, + null, + -186612.36184898173, + -185427.49168366197, + null, + -187574.2721654691, + -187642.84655158204, + null, + -187574.2721654691, + -188287.79217814526, + null, + -187574.2721654691, + -187098.08472081405, + null, + -187574.2721654691, + -186969.98767638186, + null, + -188185.43487919736, + -188549.32629648288, + null, + -188185.43487919736, + -188250.077786393, + null, + -187645.64505814915, + -188161.7726015361, + null, + -187645.64505814915, + -187116.7595416007, + null, + -187791.77040384425, + -187821.31284373655, + null, + -187791.77040384425, + -187704.11156844525, + null, + -187981.65234561847, + -188196.3093746599, + null, + -188328.62880040111, + -188512.43706494468, + null, + -188328.62880040111, + -188433.12753228875, + null, + -188328.62880040111, + -188585.6524637753, + null, + -188328.62880040111, + -188822.05132961101, + null, + -186953.31740903624, + -186793.18125099468, + null, + -186953.31740903624, + -186923.0724992906, + null, + -186953.31740903624, + -186493.55860467892, + null, + -186953.31740903624, + -186336.77161351635, + null, + -188465.46750448947, + -188693.43620027843, + null, + -188465.46750448947, + -188728.28837500748, + null, + -188465.46750448947, + -188981.19486242285, + null, + -188465.46750448947, + -188119.03297787975, + null, + -188465.46750448947, + -188810.88834411, + null, + -188465.46750448947, + -188363.9646618443, + null, + -187228.86858406416, + -187164.0688469574, + null, + -187228.86858406416, + -186825.88912431858, + null, + -187228.86858406416, + -186708.8994492446, + null, + -187937.28779075225, + -188079.80446299998, + null, + -187741.77573005384, + -187735.6429592813, + null, + -187158.59874792627, + -186579.71684840842, + null, + -187158.59874792627, + -186734.72800259737, + null, + -187975.58965748092, + -187820.43378501857, + null, + -187927.83620065072, + -187909.24698119418, + null, + -187109.55145493208, + -186563.98191544128, + null, + -186870.85476427, + -186563.98191544128, + null, + -186563.98191544128, + -187095.6197581376, + null, + -186563.98191544128, + -185101.1509899331, + null, + -186870.85476427, + -186517.6751626997, + null, + -186517.6751626997, + -186563.35158898422, + null, + -186517.6751626997, + -187385.0923661435, + null, + -186517.6751626997, + -186973.73232271746, + null, + -186517.6751626997, + -186333.64344871804, + null, + -186517.6751626997, + -185829.80948671233, + null, + -186517.6751626997, + -187095.6197581376, + null, + -186517.6751626997, + -186382.6521426854, + null, + -186517.6751626997, + -186628.54466062496, + null, + -186517.6751626997, + -185897.53117830772, + null, + -186517.6751626997, + -185961.70758748136, + null, + -186517.6751626997, + -185946.98023837636, + null, + -188788.84774377767, + -188918.83080252886, + null, + -188788.84774377767, + -188826.34262922048, + null, + -187427.58017047317, + -187359.95937813746, + null, + -186780.2984968334, + -186689.23541046176, + null, + -186780.2984968334, + -187016.51462670026, + null, + -186780.2984968334, + -187205.7558130452, + null, + -186780.2984968334, + -186884.1274436682, + null, + -186780.2984968334, + -187704.763876957, + null, + -186780.2984968334, + -187899.237151973, + null, + -186780.2984968334, + -184253.32763020493, + null, + -186780.2984968334, + -186104.54831179176, + null, + -186780.2984968334, + -186046.42225495278, + null, + -186780.2984968334, + -187448.3572804437, + null, + -186780.2984968334, + -187856.58036489805, + null, + -186780.2984968334, + -188169.14538504407, + null, + -186780.2984968334, + -186037.93743685633, + null, + -186780.2984968334, + -187986.2925046758, + null, + -187516.61720349116, + -187612.97215401544, + null, + -188036.28044668204, + -187904.2446480533, + null, + -187566.1094978599, + -187098.08472081405, + null, + -187566.1094978599, + -186969.98767638186, + null, + -187566.1094978599, + -188052.32690400552, + null, + -187881.7928789883, + -187910.51665730815, + null, + -187881.7928789883, + -187778.44937962503, + null, + -187881.7928789883, + -187882.8114859411, + null, + -187307.95076337553, + -186814.5954261676, + null, + -187307.95076337553, + -187233.7119709426, + null, + -187950.03622824297, + -188083.10323281528, + null, + -187244.0460795401, + -187171.2549893913, + null, + -187244.0460795401, + -187396.43681444638, + null, + -186870.85476427, + -187244.0460795401, + null, + -187109.55145493208, + -187244.0460795401, + null, + -187306.8260455551, + -187095.6197581376, + null, + -187306.8260455551, + -187291.09671769937, + null, + -187306.8260455551, + -186826.48542049516, + null, + -187109.55145493208, + -187306.8260455551, + null, + -187306.8260455551, + -187204.27240844848, + null, + -186941.09836380862, + -186753.4893091006, + null, + -186941.09836380862, + -186948.59777146435, + null, + -186941.09836380862, + -187291.09671769937, + null, + -186941.09836380862, + -185706.60147189337, + null, + -186941.09836380862, + -187916.63879302575, + null, + -187281.55271362027, + -187328.97058315662, + null, + -187281.55271362027, + -187271.98186820754, + null, + -187281.55271362027, + -187263.8658911728, + null, + -187281.55271362027, + -186657.7218807427, + null, + -187281.55271362027, + -188362.04736375934, + null, + -184627.2559353374, + -183620.7015398458, + null, + -184627.2559353374, + -182951.77725421966, + null, + -184627.2559353374, + -184276.46905717737, + null, + -187265.23927959087, + -187376.8038531828, + null, + -187265.23927959087, + -186841.4017466797, + null, + -187265.23927959087, + -188158.73371046473, + null, + -187265.23927959087, + -186840.44087714233, + null, + -187265.23927959087, + -187625.99468709566, + null, + -187879.37136154508, + -187524.54517428228, + null, + -187879.37136154508, + -188071.01532488095, + null, + -187879.37136154508, + -187529.40680193529, + null, + -187879.37136154508, + -187454.64105987392, + null, + -187821.3765527352, + -186431.27519216418, + null, + -187883.60479267285, + -188107.46199151454, + null, + -187883.60479267285, + -187899.4158525461, + null, + -187883.60479267285, + -188167.02460559944, + null, + -187883.60479267285, + -187859.86995225446, + null, + -187883.60479267285, + -188126.8200295349, + null, + -187883.60479267285, + -188123.19483452023, + null, + -186717.18778761072, + -186083.5663938709, + null, + -186287.99929102132, + -185912.47186195152, + null, + -186287.99929102132, + -185961.2957648515, + null, + -186287.99929102132, + -186232.2255226064, + null, + -186287.99929102132, + -185912.22434019603, + null, + -186287.99929102132, + -185946.11501890482, + null, + -186287.99929102132, + -185755.0131330002, + null, + -187805.10710923118, + -188153.623631181, + null, + -187648.9973224916, + -187909.24698119418, + null, + -186146.62535800086, + -184948.90466462815, + null, + -187627.45216360627, + -187630.0455403068, + null, + -187627.45216360627, + -188058.85243110455, + null, + -187246.44784323307, + -187248.01430917686, + null, + -187246.44784323307, + -187399.22964852274, + null, + -187246.44784323307, + -187360.02800482418, + null, + -187246.44784323307, + -187004.07979892765, + null, + -187246.44784323307, + -187257.6129123713, + null, + -186544.6994452667, + -186458.84249070814, + null, + -186544.6994452667, + -187153.83483170177, + null, + -186544.6994452667, + -186828.08396658566, + null, + -186544.6994452667, + -185480.2185366004, + null, + -188210.8583614681, + -188910.8076400013, + null, + -188210.8583614681, + -188185.3569399699, + null, + -187744.5423702615, + -188288.38165867908, + null, + -187744.5423702615, + -188232.25279280051, + null, + -187744.5423702615, + -187620.16897113936, + null, + -187744.5423702615, + -188200.78220052563, + null, + -187744.5423702615, + -187962.65268429814, + null, + -187744.5423702615, + -187980.56614154446, + null, + -187744.5423702615, + -187505.77792284868, + null, + -187744.5423702615, + -187993.10500323906, + null, + -187744.5423702615, + -188057.23331354433, + null, + -187744.5423702615, + -186724.68573885344, + null, + -188036.86055892534, + -188580.3548192478, + null, + -188036.86055892534, + -188339.98244601142, + null, + -179133.13735543872, + -179018.64596522425, + null, + -179133.13735543872, + -170265.1251636849, + null, + -179133.13735543872, + -180731.45597962325, + null, + -179133.13735543872, + -178274.85226883533, + null, + -179133.13735543872, + -182297.66613175042, + null, + -179133.13735543872, + -178392.8789808, + null, + -187953.2923392146, + -188349.65680053786, + null, + -187953.2923392146, + -188316.36771212667, + null, + -187258.52951028265, + -186656.42396019315, + null, + -187258.52951028265, + -187822.9358747536, + null, + -186551.5718918603, + -185715.21113775368, + null, + -186296.09077217794, + -185841.86069840766, + null, + -186296.09077217794, + -185556.4843562863, + null, + -185926.73089974615, + -185606.18370621337, + null, + -185926.73089974615, + -185745.05148061714, + null, + -185926.73089974615, + -184765.73067528612, + null, + -185926.73089974615, + -185826.80959253322, + null, + -185926.73089974615, + -185805.15630328484, + null, + -185926.73089974615, + -185880.6665128765, + null, + -185395.93395849012, + -183430.55483779273, + null, + -185395.93395849012, + -185704.2175677414, + null, + -185395.93395849012, + -185519.05918496437, + null, + -185879.15090298475, + -184948.90466462815, + null, + -185879.15090298475, + -185720.05400911724, + null, + -185879.15090298475, + -185249.63622188903, + null, + -186605.81963314634, + -185233.48683497915, + null, + -186605.81963314634, + -187564.53232755137, + null, + -186705.75237789055, + -186055.02259865488, + null, + -186345.44096085647, + -185937.20459336432, + null, + -186345.44096085647, + -186839.17366214117, + null, + -186345.44096085647, + -185753.54811495807, + null, + -186875.28527664224, + -186091.85862784483, + null, + -186875.28527664224, + -187171.2549893913, + null, + -186875.28527664224, + -186095.0815121383, + null, + -186875.28527664224, + -187609.4187582251, + null, + -186875.28527664224, + -187291.09671769937, + null, + -187527.73357511935, + -187629.39631769145, + null, + -187527.73357511935, + -187643.6924245978, + null, + -187527.73357511935, + -187638.51851489613, + null, + -187567.52052119686, + -187630.12975349987, + null, + -187567.52052119686, + -187638.04666398917, + null, + -187567.52052119686, + -187894.2559948564, + null, + -187567.52052119686, + -187687.3081902085, + null, + -187567.52052119686, + -187525.68775441864, + null, + -187567.52052119686, + -187763.07589632823, + null, + -187567.52052119686, + -187095.6197581376, + null, + -187774.1615382006, + -188155.95470557085, + null, + -186699.2701887279, + -186739.78539095962, + null, + -186699.2701887279, + -186004.1374210784, + null, + -186699.2701887279, + -186549.16628896404, + null, + -185739.58717722545, + -186493.55860467892, + null, + -185739.58717722545, + -183895.39726926797, + null, + -185739.58717722545, + -186336.77161351635, + null, + -185739.58717722545, + -186077.7694141048, + null, + -187270.5390270905, + -187374.96766820594, + null, + -187270.5390270905, + -186600.31501724018, + null, + -187270.5390270905, + -187746.2614260409, + null, + -187270.5390270905, + -187575.0666518512, + null, + -185576.15263923115, + -185615.21357472814, + null, + -185576.15263923115, + -186386.17022089174, + null, + -185576.15263923115, + -184792.31269895128, + null, + -185576.15263923115, + -185297.15959925592, + null, + -185576.15263923115, + -185376.32218916347, + null, + -185576.15263923115, + -185934.3441057752, + null, + -185576.15263923115, + -184719.8977207577, + null, + -185576.15263923115, + -184203.63035864593, + null, + -186350.72668639437, + -186271.3613223738, + null, + -186350.72668639437, + -186024.0766929756, + null, + -186350.72668639437, + -185603.29490146937, + null, + -186350.72668639437, + -185753.06204734184, + null, + -186350.72668639437, + -186330.77970776754, + null, + -185754.93903104283, + -185276.91448933058, + null, + -185754.93903104283, + -185442.92204935086, + null, + -185754.93903104283, + -185153.81686134142, + null, + -185754.93903104283, + -184350.70827119582, + null, + -185754.93903104283, + -186324.1665531549, + null, + -185754.93903104283, + -185279.59438908967, + null, + -187046.43325413764, + -187693.57844067938, + null, + -187046.43325413764, + -185737.7766019711, + null, + -187046.43325413764, + -188111.50245778877, + null, + -184234.61115541728, + -181117.95796056575, + null, + -184234.61115541728, + -183944.29790406587, + null, + -184234.61115541728, + -184501.03914673053, + null, + -184234.61115541728, + -183887.24713882807, + null, + -184234.61115541728, + -184797.30489013533, + null, + -186972.57418070477, + -187303.182190925, + null, + -186972.57418070477, + -186552.6186504858, + null, + -186972.57418070477, + -187360.58931040493, + null, + -186972.57418070477, + -187311.67435395776, + null, + -186972.57418070477, + -186929.557108324, + null, + -186972.57418070477, + -186921.38953855107, + null, + -186972.57418070477, + -186153.74538117443, + null, + -186972.57418070477, + -187278.66842823187, + null, + -183824.5305223081, + -185447.3850337414, + null, + -183824.5305223081, + -184333.46569932284, + null, + -183824.5305223081, + -183618.1198729144, + null, + -183824.5305223081, + -183609.28082124022, + null, + -183824.5305223081, + -183737.2037660667, + null, + -183824.5305223081, + -183570.56269982722, + null, + -183824.5305223081, + -183835.50636600342, + null, + -183824.5305223081, + -182851.40614782678, + null, + -183824.5305223081, + -181143.13730185444, + null, + -183824.5305223081, + -179062.95290375294, + null, + -183824.5305223081, + -183428.15224553086, + null, + -183824.5305223081, + -186400.055894199, + null, + -183824.5305223081, + -183195.36094988632, + null, + -183824.5305223081, + -183346.4258055763, + null, + -183824.5305223081, + -184867.16628209932, + null, + -183824.5305223081, + -185096.76662262852, + null, + -183824.5305223081, + -183295.14885534026, + null, + -183824.5305223081, + -184940.4396921724, + null, + -183824.5305223081, + -183472.72321986, + null, + -183824.5305223081, + -183555.20809289117, + null, + -183824.5305223081, + -183534.65675936858, + null, + -183824.5305223081, + -183713.93448839104, + null, + -183824.5305223081, + -185048.94065281202, + null, + -183824.5305223081, + -185379.95492149531, + null, + -183824.5305223081, + -183230.4928305493, + null, + -183824.5305223081, + -183537.31132500691, + null, + -183824.5305223081, + -185199.55957149496, + null, + -183824.5305223081, + -184996.35720146328, + null, + -183824.5305223081, + -183484.0643545454, + null, + -183824.5305223081, + -183661.7612554338, + null, + -183824.5305223081, + -183634.66754273794, + null, + -183824.5305223081, + -183672.80728055543, + null, + -183824.5305223081, + -183149.3117717627, + null, + -183824.5305223081, + -183600.97574435148, + null, + -183824.5305223081, + -185172.1130263042, + null, + -183824.5305223081, + -184941.27866808354, + null, + -183824.5305223081, + -184423.14627603424, + null, + -183824.5305223081, + -185137.9260259597, + null, + -183824.5305223081, + -183681.7632839864, + null, + -183824.5305223081, + -183495.9303439195, + null, + -183824.5305223081, + -183638.59508131372, + null, + -183824.5305223081, + -183662.0610230205, + null, + -183824.5305223081, + -183150.43565294353, + null, + -183824.5305223081, + -184959.75297709103, + null, + -183824.5305223081, + -184282.8223254371, + null, + -183824.5305223081, + -185050.17746824646, + null, + -183824.5305223081, + -183755.61016671095, + null, + -183824.5305223081, + -184855.78706899192, + null, + -183824.5305223081, + -184961.07542385507, + null, + -183824.5305223081, + -184981.84743495082, + null, + -183824.5305223081, + -183572.02000817447, + null, + -183824.5305223081, + -185847.7897940973, + null, + -183824.5305223081, + -185845.0713146115, + null, + -183824.5305223081, + -183567.13168373698, + null, + -183824.5305223081, + -184953.50462711358, + null, + -183824.5305223081, + -183585.55352579142, + null, + -183824.5305223081, + -183654.70526979078, + null, + -183824.5305223081, + -183740.6927330769, + null, + -183824.5305223081, + -183447.3736804631, + null, + -183824.5305223081, + -183638.5415461372, + null, + -183824.5305223081, + -183693.8098700191, + null, + -183824.5305223081, + -183506.43875629295, + null, + -183824.5305223081, + -183780.55988949482, + null, + -183824.5305223081, + -183465.92369980083, + null, + -183824.5305223081, + -183773.85682847694, + null, + -183824.5305223081, + -184713.8079921453, + null, + -183824.5305223081, + -184948.11561273, + null, + -183824.5305223081, + -183774.6590119035, + null, + -183824.5305223081, + -186310.16860214635, + null, + -183824.5305223081, + -186301.94278822944, + null, + -183824.5305223081, + -186163.99974887632, + null, + -183824.5305223081, + -184581.99228433802, + null, + -183824.5305223081, + -183482.81197479606, + null, + -183824.5305223081, + -183599.0223072427, + null, + -183824.5305223081, + -185523.21586449863, + null, + -183824.5305223081, + -184220.87408888803, + null, + -183824.5305223081, + -183336.9655582326, + null, + -183824.5305223081, + -183417.25501227446, + null, + -183824.5305223081, + -183574.8313324696, + null, + -183824.5305223081, + -183568.94114048648, + null, + -183824.5305223081, + -183561.13969966708, + null, + -183824.5305223081, + -177310.94056187524, + null, + -183824.5305223081, + -183771.57094333868, + null, + -183824.5305223081, + -183717.71809073846, + null, + -183824.5305223081, + -183314.90524811472, + null, + -183824.5305223081, + -183562.4655226862, + null, + -183824.5305223081, + -183700.7208882565, + null, + -188073.66592800152, + -187944.64808898602, + null, + -188073.66592800152, + -188144.68088985563, + null, + -188073.66592800152, + -188001.67609114133, + null, + -188073.66592800152, + -188590.2656368338, + null, + -188073.66592800152, + -188650.31700513716, + null, + -188073.66592800152, + -188108.82660797954, + null, + -188073.66592800152, + -187817.81523305984, + null, + -188073.66592800152, + -188174.91579203284, + null, + -187728.06688195525, + -188075.2636711698, + null, + -188874.14340416354, + -188835.70345149824, + null, + -188874.14340416354, + -190313.9575153106, + null, + -188459.36009707808, + -189099.75049063095, + null, + -188459.36009707808, + -189095.71887327847, + null, + -188459.36009707808, + -188914.75145452813, + null, + -190374.15560172813, + -190032.7652732372, + null, + -190374.15560172813, + -189938.6241563695, + null, + -190374.15560172813, + -189234.69869927395, + null, + -190374.15560172813, + -193457.45865985725, + null, + -190374.15560172813, + -190806.68303526114, + null, + -190374.15560172813, + -190793.21217436218, + null, + -189063.428793386, + -189559.22608543184, + null, + -189063.428793386, + -189665.89556126, + null, + -189063.428793386, + -190343.14623174802, + null, + -189063.428793386, + -189609.91441884363, + null, + -189063.428793386, + -189229.82297158477, + null, + -189063.428793386, + -189294.14527588105, + null, + -187594.8777657927, + -188003.3208638465, + null, + -188109.5947916895, + -188003.3208638465, + null, + -188135.7951117508, + -188003.3208638465, + null, + -188126.67429510137, + -188003.3208638465, + null, + -188068.89540782082, + -188003.3208638465, + null, + -188138.17806449422, + -188003.3208638465, + null, + -188113.8147030654, + -188003.3208638465, + null, + -188119.49823623613, + -188003.3208638465, + null, + -188123.9780570342, + -188003.3208638465, + null, + -188121.51859750494, + -188003.3208638465, + null, + -188082.81454332572, + -188003.3208638465, + null, + -188023.85098966694, + -188003.3208638465, + null, + -188038.4334288893, + -188003.3208638465, + null, + -188097.6602407291, + -188003.3208638465, + null, + -188124.65543545736, + -188003.3208638465, + null, + -188079.8329504583, + -188003.3208638465, + null, + -188129.3743830729, + -188003.3208638465, + null, + -187594.8777657927, + -187986.19049612174, + null, + -188109.5947916895, + -187986.19049612174, + null, + -188135.7951117508, + -187986.19049612174, + null, + -188126.67429510137, + -187986.19049612174, + null, + -188068.89540782082, + -187986.19049612174, + null, + -188138.17806449422, + -187986.19049612174, + null, + -188113.8147030654, + -187986.19049612174, + null, + -188119.49823623613, + -187986.19049612174, + null, + -188123.9780570342, + -187986.19049612174, + null, + -188121.51859750494, + -187986.19049612174, + null, + -188082.81454332572, + -187986.19049612174, + null, + -188023.85098966694, + -187986.19049612174, + null, + -188038.4334288893, + -187986.19049612174, + null, + -188097.6602407291, + -187986.19049612174, + null, + -188124.65543545736, + -187986.19049612174, + null, + -188079.8329504583, + -187986.19049612174, + null, + -188129.3743830729, + -187986.19049612174, + null, + -189149.42833616625, + -189496.41348015732, + null, + -189149.42833616625, + -189577.41239445566, + null, + -189149.42833616625, + -189744.80163897088, + null, + -189149.42833616625, + -189717.16898665222, + null, + -189149.42833616625, + -189771.05744312212, + null, + -189149.42833616625, + -189288.86354766923, + null, + -189149.42833616625, + -189791.60417761785, + null, + -189149.42833616625, + -189410.9334851875, + null, + -189149.42833616625, + -189116.88474309855, + null, + -189149.42833616625, + -189175.60345293803, + null, + -189149.42833616625, + -189586.963087114, + null, + -188614.21318785282, + -189188.60469326557, + null, + -188614.21318785282, + -188162.64085287615, + null, + -188614.21318785282, + -189548.11338182713, + null, + -188614.21318785282, + -189105.4292626352, + null, + -188614.21318785282, + -188962.863330971, + null, + -188614.21318785282, + -188499.89103916325, + null, + -188591.14091919875, + -188860.5081701973, + null, + -188591.14091919875, + -189022.6764695094, + null, + -188591.14091919875, + -188934.8216489112, + null, + -188591.14091919875, + -189023.35265461885, + null, + -188591.14091919875, + -189224.35755215236, + null, + -188591.14091919875, + -188984.99469066437, + null, + -188591.14091919875, + -188693.81198834366, + null, + -187899.4374158756, + -188415.0669334945, + null, + -187973.27776270141, + -187303.182190925, + null, + -187973.27776270141, + -187360.58931040493, + null, + -187973.27776270141, + -187311.67435395776, + null, + -187973.27776270141, + -187395.2983959365, + null, + -187973.27776270141, + -189349.87620961215, + null, + -188306.96972666128, + -188810.17734219952, + null, + -188306.96972666128, + -188944.92574917976, + null, + -188623.6166852075, + -188941.78166669174, + null, + -188623.6166852075, + -189742.2319582998, + null, + -188689.9069400571, + -189965.4221631259, + null, + -188689.9069400571, + -188669.11521163365, + null, + -188243.41945504982, + -188707.0214085327, + null, + -188243.41945504982, + -188855.1713664295, + null, + -188433.4935194492, + -188374.52176348033, + null, + -188433.4935194492, + -188046.43068903935, + null, + -188433.4935194492, + -188584.11655148058, + null, + -188433.4935194492, + -188921.07600126017, + null, + -188433.4935194492, + -188465.50594804902, + null, + -188433.4935194492, + -188569.56315973715, + null, + -188433.4935194492, + -188491.91213643632, + null, + -188433.4935194492, + -188423.88162786607, + null, + -188433.4935194492, + -189249.9264656677, + null, + -188433.4935194492, + -188453.23945302286, + null, + -188433.4935194492, + -188248.20895894684, + null, + -188344.57017201104, + -189083.05589016425, + null, + -188344.57017201104, + -188881.18116724692, + null, + -188096.6720864056, + -188752.26508317536, + null, + -190042.38359170523, + -190353.63610682223, + null, + -190042.38359170523, + -190199.30352442525, + null, + -190042.38359170523, + -190284.40860835864, + null, + -190042.38359170523, + -190512.74405530427, + null, + -190042.38359170523, + -190567.27156873213, + null, + -190042.38359170523, + -190521.19493654618, + null, + -190042.38359170523, + -189462.78633118852, + null, + -190042.38359170523, + -189495.0923323141, + null, + -190042.38359170523, + -189822.36786467835, + null, + -190042.38359170523, + -189577.41239445566, + null, + -190042.38359170523, + -189744.80163897088, + null, + -190042.38359170523, + -190528.4811711618, + null, + -190042.38359170523, + -190459.28418449903, + null, + -190042.38359170523, + -190549.83564310966, + null, + -190042.38359170523, + -190108.53169201384, + null, + -190042.38359170523, + -189701.9396398646, + null, + -190042.38359170523, + -189717.16898665222, + null, + -190042.38359170523, + -190261.65948142193, + null, + -190042.38359170523, + -189812.65902349033, + null, + -190042.38359170523, + -192729.44916755898, + null, + -190042.38359170523, + -189998.17792497025, + null, + -190042.38359170523, + -189771.05744312212, + null, + -190042.38359170523, + -189288.86354766923, + null, + -190042.38359170523, + -189950.47607682366, + null, + -190042.38359170523, + -190422.55995988214, + null, + -190042.38359170523, + -189791.60417761785, + null, + -190042.38359170523, + -189475.00799780615, + null, + -190042.38359170523, + -189539.44815716433, + null, + -190042.38359170523, + -189410.9334851875, + null, + -190042.38359170523, + -190286.8293532656, + null, + -190042.38359170523, + -190510.04082654967, + null, + -190042.38359170523, + -188268.17237905652, + null, + -190042.38359170523, + -189701.77739699613, + null, + -190042.38359170523, + -190449.5219220677, + null, + -190042.38359170523, + -190479.13829348728, + null, + -190042.38359170523, + -190341.1859679305, + null, + -190042.38359170523, + -190214.86655576224, + null, + -190042.38359170523, + -190470.3866958542, + null, + -190042.38359170523, + -190475.05501335283, + null, + -187776.081074906, + -188662.78581283378, + null, + -187776.081074906, + -187110.75257883506, + null, + -188131.29016873462, + -188712.68604789645, + null, + -188131.29016873462, + -188167.60811296935, + null, + -188131.29016873462, + -188373.3539402033, + null, + -188443.1461449862, + -189054.24101899815, + null, + -188443.1461449862, + -188703.7958482956, + null, + -188443.1461449862, + -188700.76734194253, + null, + -188443.1461449862, + -189058.78733204654, + null, + -186553.62133220496, + -185748.77931932142, + null, + -187594.8777657927, + -188002.51793235893, + null, + -188109.5947916895, + -188002.51793235893, + null, + -188135.7951117508, + -188002.51793235893, + null, + -188126.67429510137, + -188002.51793235893, + null, + -188068.89540782082, + -188002.51793235893, + null, + -188138.17806449422, + -188002.51793235893, + null, + -188113.8147030654, + -188002.51793235893, + null, + -188119.49823623613, + -188002.51793235893, + null, + -188123.9780570342, + -188002.51793235893, + null, + -188121.51859750494, + -188002.51793235893, + null, + -188082.81454332572, + -188002.51793235893, + null, + -188023.85098966694, + -188002.51793235893, + null, + -188038.4334288893, + -188002.51793235893, + null, + -188097.6602407291, + -188002.51793235893, + null, + -188124.65543545736, + -188002.51793235893, + null, + -188079.8329504583, + -188002.51793235893, + null, + -188129.3743830729, + -188002.51793235893, + null, + -188109.5947916895, + -187969.50621106548, + null, + -187594.8777657927, + -187969.50621106548, + null, + -188135.7951117508, + -187969.50621106548, + null, + -187969.50621106548, + -189240.3648502884, + null, + -187969.50621106548, + -186570.1920070612, + null, + -188121.51859750494, + -187969.50621106548, + null, + -188126.67429510137, + -187969.50621106548, + null, + -188068.89540782082, + -187969.50621106548, + null, + -188138.17806449422, + -187969.50621106548, + null, + -188113.8147030654, + -187969.50621106548, + null, + -188119.49823623613, + -187969.50621106548, + null, + -188123.9780570342, + -187969.50621106548, + null, + -188082.81454332572, + -187969.50621106548, + null, + -188023.85098966694, + -187969.50621106548, + null, + -188038.4334288893, + -187969.50621106548, + null, + -188097.6602407291, + -187969.50621106548, + null, + -188124.65543545736, + -187969.50621106548, + null, + -188079.8329504583, + -187969.50621106548, + null, + -188129.3743830729, + -187969.50621106548, + null, + -187790.99540247666, + -188094.559535361, + null, + -187790.99540247666, + -188053.27718974993, + null, + -187790.99540247666, + -187904.5551047629, + null, + -187444.98398375107, + -187346.30214189566, + null, + -187212.75750088846, + -187346.30214189566, + null, + -187393.45287008572, + -187346.30214189566, + null, + -187430.50547179487, + -187346.30214189566, + null, + -187206.375494998, + -187346.30214189566, + null, + -187142.3027271855, + -187346.30214189566, + null, + -188420.23770977926, + -188714.47848400145, + null, + -188420.23770977926, + -188749.09654230482, + null, + -188420.23770977926, + -189030.03347002508, + null, + -188420.23770977926, + -188623.43984532243, + null, + -188420.23770977926, + -188960.00928668556, + null, + -189713.61547225437, + -189443.79748188236, + null, + -189713.61547225437, + -189307.17775457742, + null, + -189713.61547225437, + -188499.89103916325, + null, + -189713.61547225437, + -189548.11338182713, + null, + -189713.61547225437, + -189613.4274864384, + null, + -189713.61547225437, + -189068.79735651254, + null, + -189713.61547225437, + -190220.04026000245, + null, + -189713.61547225437, + -189448.3993228098, + null, + -189713.61547225437, + -190206.09219721612, + null, + -189713.61547225437, + -190341.17256340745, + null, + -189713.61547225437, + -189867.23809450684, + null, + -189713.61547225437, + -189861.2742767397, + null, + -189713.61547225437, + -190227.47044230253, + null, + -189713.61547225437, + -190186.66872072185, + null, + -189713.61547225437, + -190191.87720016416, + null, + -189713.61547225437, + -190085.2874754612, + null, + -189713.61547225437, + -190232.32595297435, + null, + -189713.61547225437, + -190184.90518216093, + null, + -189713.61547225437, + -190623.42617965583, + null, + -189713.61547225437, + -190772.98680974997, + null, + -189713.61547225437, + -189014.93254325056, + null, + -189713.61547225437, + -190242.87904319484, + null, + -189713.61547225437, + -190489.49488075302, + null, + -189713.61547225437, + -189279.31349246096, + null, + -189713.61547225437, + -189028.54304697987, + null, + -189713.61547225437, + -189972.24185554104, + null, + -189713.61547225437, + -190133.02174061345, + null, + -189713.61547225437, + -190152.09510136288, + null, + -189713.61547225437, + -189802.5411068607, + null, + -189713.61547225437, + -189342.87589914515, + null, + -189713.61547225437, + -190335.55788041826, + null, + -189713.61547225437, + -190558.09229834663, + null, + -189713.61547225437, + -190348.92129023964, + null, + -189713.61547225437, + -189476.29985464577, + null, + -189713.61547225437, + -190078.20561894446, + null, + -189713.61547225437, + -189953.83628432205, + null, + -189713.61547225437, + -190120.31875176344, + null, + -189713.61547225437, + -190159.9606195649, + null, + -189713.61547225437, + -190036.82480240372, + null, + -189713.61547225437, + -190207.22081163406, + null, + -189713.61547225437, + -189987.67952550904, + null, + -189713.61547225437, + -190139.95443899676, + null, + -189713.61547225437, + -188283.400572689, + null, + -189713.61547225437, + -190271.7928245326, + null, + -189713.61547225437, + -189841.04040744825, + null, + -189713.61547225437, + -190391.556711525, + null, + -189713.61547225437, + -190159.25461435507, + null, + -189713.61547225437, + -190150.01777997345, + null, + -189713.61547225437, + -190050.76105059695, + null, + -189713.61547225437, + -190016.05202348984, + null, + -189713.61547225437, + -189455.41921722554, + null, + -189713.61547225437, + -189892.92226832564, + null, + -189713.61547225437, + -189938.28533320257, + null, + -189713.61547225437, + -189852.04204695, + null, + -189713.61547225437, + -189837.30541417195, + null, + -189579.9504364677, + -190073.05198879744, + null, + -189579.9504364677, + -189679.96140830184, + null, + -189579.9504364677, + -188518.20269654013, + null, + -189579.9504364677, + -189732.0774427512, + null, + -189579.9504364677, + -190060.64739146762, + null, + -189579.9504364677, + -189906.78269750674, + null, + -189579.9504364677, + -189977.09666591295, + null, + -189579.9504364677, + -189869.86826830884, + null, + -189579.9504364677, + -189967.10530352197, + null, + -189579.9504364677, + -189429.90513536637, + null, + -189579.9504364677, + -189921.33171368486, + null, + -189579.9504364677, + -188696.9637922992, + null, + -189579.9504364677, + -190157.63685626572, + null, + -189579.9504364677, + -189800.8794266506, + null, + -189579.9504364677, + -188719.43960811262, + null, + -189579.9504364677, + -189850.42517754433, + null, + -189579.9504364677, + -189820.92311716045, + null, + -189579.9504364677, + -190176.96097381625, + null, + -189579.9504364677, + -191159.10117676161, + null, + -189579.9504364677, + -189695.89297456868, + null, + -189579.9504364677, + -190189.18840931443, + null, + -189579.9504364677, + -189757.3945082938, + null, + -189579.9504364677, + -189995.43347064062, + null, + -189579.9504364677, + -189420.0485446386, + null, + -189579.9504364677, + -190029.46210824672, + null, + -189579.9504364677, + -190125.23168976346, + null, + -189579.9504364677, + -189369.10856700627, + null, + -189579.9504364677, + -190229.02945436694, + null, + -189579.9504364677, + -189495.16633347023, + null, + -189579.9504364677, + -189698.1761276448, + null, + -189579.9504364677, + -189295.9917839161, + null, + -189579.9504364677, + -190114.3473213471, + null, + -189579.9504364677, + -189727.13611083344, + null, + -189579.9504364677, + -189783.65631678217, + null, + -189579.9504364677, + -190368.81587279582, + null, + -189111.4078263055, + -189901.64680176062, + null, + -189111.4078263055, + -190316.76887405966, + null, + -189111.4078263055, + -189011.07707289694, + null, + -189111.4078263055, + -189795.9680877463, + null, + -189111.4078263055, + -189399.04279996626, + null, + -189111.4078263055, + -189460.44281266938, + null, + -187949.63698018505, + -188004.39552825585, + null, + -187949.63698018505, + -188391.67478690643, + null, + -188522.7223023232, + -188975.4648828089, + null, + -188522.7223023232, + -189027.84875586937, + null, + -188522.7223023232, + -188894.1604885968, + null, + -188522.7223023232, + -188258.98268007717, + null, + -188522.7223023232, + -189054.1850300602, + null, + -188522.7223023232, + -189173.28782093368, + null, + -188522.7223023232, + -188857.1383443916, + null, + -188522.7223023232, + -189144.62965207951, + null, + -188522.7223023232, + -188904.83506058183, + null, + -188522.7223023232, + -189366.89830297738, + null, + -188522.7223023232, + -187142.83156573743, + null, + -187937.26783141587, + -188470.49516960207, + null, + -188130.4537181713, + -188152.2857732802, + null, + -187594.8777657927, + -188130.4537181713, + null, + -188109.5947916895, + -188130.4537181713, + null, + -188135.7951117508, + -188130.4537181713, + null, + -188130.4537181713, + -188538.57571479923, + null, + -188126.67429510137, + -188130.4537181713, + null, + -188068.89540782082, + -188130.4537181713, + null, + -188138.17806449422, + -188130.4537181713, + null, + -188113.8147030654, + -188130.4537181713, + null, + -188119.49823623613, + -188130.4537181713, + null, + -188123.9780570342, + -188130.4537181713, + null, + -188130.4537181713, + -188128.65301616665, + null, + -188121.51859750494, + -188130.4537181713, + null, + -188130.4537181713, + -187927.6227750181, + null, + -188082.81454332572, + -188130.4537181713, + null, + -188130.4537181713, + -188172.07424796064, + null, + -188130.4537181713, + -188187.0305086857, + null, + -188130.4537181713, + -188198.6549685184, + null, + -188023.85098966694, + -188130.4537181713, + null, + -188038.4334288893, + -188130.4537181713, + null, + -188097.6602407291, + -188130.4537181713, + null, + -188124.65543545736, + -188130.4537181713, + null, + -188130.4537181713, + -188215.8464237905, + null, + -188079.8329504583, + -188130.4537181713, + null, + -188130.4537181713, + -188334.1310395238, + null, + -188129.3743830729, + -188130.4537181713, + null, + -187934.23814137233, + -188242.85548355136, + null, + -187934.23814137233, + -188084.27012681955, + null, + -187934.23814137233, + -187513.15206802913, + null, + -187934.23814137233, + -188318.52134241172, + null, + -187934.23814137233, + -188494.86160857437, + null, + -188172.74538859082, + -188963.12094415203, + null, + -188172.74538859082, + -187905.26212099823, + null, + -188038.4334288893, + -188172.74538859082, + null, + -188172.74538859082, + -188527.56986848032, + null, + -188172.74538859082, + -188265.23932553243, + null, + -188739.05313596342, + -189971.44220929153, + null, + -188739.05313596342, + -189133.4623975504, + null, + -188739.05313596342, + -188909.62841382276, + null, + -188739.05313596342, + -188807.4004644322, + null, + -188739.05313596342, + -189011.07707289694, + null, + -188776.96293003074, + -189821.2312186076, + null, + -188776.96293003074, + -189307.17775457742, + null, + -188776.96293003074, + -189295.9917839161, + null, + -188147.54710943915, + -188835.70345149824, + null, + -188912.98663177204, + -189278.69115591797, + null, + -188912.98663177204, + -189451.86192620388, + null, + -188912.98663177204, + -189265.49060988644, + null, + -188912.98663177204, + -190349.61880493132, + null, + -188912.98663177204, + -188273.88722517353, + null, + -188912.98663177204, + -189167.452960464, + null, + -188912.98663177204, + -189294.14527588105, + null, + -187872.6633840466, + -188204.88501110626, + null, + -187872.6633840466, + -188051.1449940405, + null, + -187872.6633840466, + -187943.6909840044, + null, + -187872.6633840466, + -188101.04549079717, + null, + -188119.49823623613, + -187983.6774823736, + null, + -187594.8777657927, + -187983.6774823736, + null, + -188135.7951117508, + -187983.6774823736, + null, + -188126.67429510137, + -187983.6774823736, + null, + -188068.89540782082, + -187983.6774823736, + null, + -188138.17806449422, + -187983.6774823736, + null, + -188113.8147030654, + -187983.6774823736, + null, + -188123.9780570342, + -187983.6774823736, + null, + -188121.51859750494, + -187983.6774823736, + null, + -188082.81454332572, + -187983.6774823736, + null, + -187983.6774823736, + -187914.7483476306, + null, + -188023.85098966694, + -187983.6774823736, + null, + -188038.4334288893, + -187983.6774823736, + null, + -188097.6602407291, + -187983.6774823736, + null, + -188124.65543545736, + -187983.6774823736, + null, + -188079.8329504583, + -187983.6774823736, + null, + -188129.3743830729, + -187983.6774823736, + null, + -191242.41426244462, + -189901.64680176062, + null, + -191242.41426244462, + -196054.36698636063, + null, + -191242.41426244462, + -189821.2312186076, + null, + -191242.41426244462, + -190713.34611914298, + null, + -191242.41426244462, + -190997.92481924436, + null, + -191242.41426244462, + -190575.84463553302, + null, + -191242.41426244462, + -190467.1990688694, + null, + -191242.41426244462, + -190337.43065788288, + null, + -191242.41426244462, + -190699.1670419356, + null, + -191242.41426244462, + -190568.56008858563, + null, + -191242.41426244462, + -190316.76887405966, + null, + -191242.41426244462, + -190832.90541128814, + null, + -191242.41426244462, + -190622.68743332793, + null, + -191242.41426244462, + -191792.811774679, + null, + -191242.41426244462, + -190689.0572112892, + null, + -191242.41426244462, + -190554.549981457, + null, + -191242.41426244462, + -190851.29303480033, + null, + -191242.41426244462, + -190792.2009981391, + null, + -186152.69967393065, + -185674.83275462306, + null, + -186152.69967393065, + -185395.53641607144, + null, + -186152.69967393065, + -185357.74506053058, + null, + -186152.69967393065, + -186040.44887473437, + null, + -186152.69967393065, + -186246.95216782618, + null, + -189386.63393714104, + -191372.67854098132, + null, + -189386.63393714104, + -188837.46529610577, + null, + -187511.94987432053, + -187692.98713641445, + null, + -188311.50521847996, + -188216.9357266321, + null, + -188311.50521847996, + -189035.7518822911, + null, + -188069.86804999335, + -188527.56986848032, + null, + -188069.86804999335, + -188265.23932553243, + null, + -188069.86804999335, + -188123.85049620818, + null, + -188138.17806449422, + -188069.86804999335, + null, + -188069.86804999335, + -188174.51164152424, + null, + -188129.3743830729, + -188069.86804999335, + null, + -188135.7951117508, + -188069.86804999335, + null, + -188038.4334288893, + -188069.86804999335, + null, + -188069.86804999335, + -188360.45872868263, + null, + -188068.89540782082, + -188069.86804999335, + null, + -188126.67429510137, + -188069.86804999335, + null, + -187683.73338858323, + -187920.04303128363, + null, + -187683.73338858323, + -187843.0478644709, + null, + -188441.93108825223, + -189252.1261607356, + null, + -188441.93108825223, + -188964.9295065745, + null, + -188229.31889099232, + -188423.88162786607, + null, + -188229.31889099232, + -188317.85419149252, + null, + -188229.31889099232, + -188453.23945302286, + null, + -188229.31889099232, + -188465.50594804902, + null, + -188229.31889099232, + -188248.20895894684, + null, + -188229.31889099232, + -188144.68088985563, + null, + -188229.31889099232, + -188491.91213643632, + null, + -188229.31889099232, + -188590.2656368338, + null, + -188229.31889099232, + -188108.82660797954, + null, + -188229.31889099232, + -188304.15480666218, + null, + -188229.31889099232, + -188212.56287800474, + null, + -188229.31889099232, + -188267.7210327238, + null, + -188229.31889099232, + -188650.31700513716, + null, + -188229.31889099232, + -188211.52410601077, + null, + -188229.31889099232, + -188021.5412306319, + null, + -188229.31889099232, + -187777.82929663642, + null, + -187736.63135462272, + -188092.54169536094, + null, + -187736.63135462272, + -187796.6542157994, + null, + -187736.63135462272, + -187635.59468253268, + null, + -187736.63135462272, + -188033.40789813793, + null, + -187736.63135462272, + -188033.5726857013, + null, + -187992.83317437719, + -188191.56577066958, + null, + -187992.83317437719, + -188064.2405154846, + null, + -187992.83317437719, + -187977.02349488987, + null, + -187992.83317437719, + -188150.9408505529, + null, + -187992.83317437719, + -188399.31508879495, + null, + -187992.83317437719, + -188388.79423971399, + null, + -187992.83317437719, + -188200.68466137044, + null, + -187992.83317437719, + -188105.61118723254, + null, + -188118.8223297085, + -188374.52176348033, + null, + -188118.8223297085, + -188197.26080880096, + null, + -188118.8223297085, + -187963.81710303735, + null, + -188118.8223297085, + -188700.76734194253, + null, + -188118.8223297085, + -188081.06831320774, + null, + -188118.8223297085, + -188298.1446142359, + null, + -187582.59747798453, + -187780.86450984897, + null, + -187476.39314391202, + -187560.81205794794, + null, + -187476.39314391202, + -187479.24127132312, + null, + -188221.49233807725, + -188832.74568101848, + null, + -188221.49233807725, + -188271.2574905656, + null, + -188309.63351146277, + -188810.17734219952, + null, + -188309.63351146277, + -188944.92574917976, + null, + -187764.81958165232, + -188098.9031617914, + null, + -187764.81958165232, + -187978.67714400974, + null, + -188226.41949047343, + -189036.270514249, + null, + -188226.41949047343, + -188191.56577066958, + null, + -188226.41949047343, + -188064.2405154846, + null, + -188226.41949047343, + -188150.9408505529, + null, + -188226.41949047343, + -188399.31508879495, + null, + -188226.41949047343, + -188358.16456153046, + null, + -188226.41949047343, + -188388.79423971399, + null, + -188226.41949047343, + -188200.68466137044, + null, + -188226.41949047343, + -188105.61118723254, + null, + -188297.22695862473, + -188388.79423971399, + null, + -188297.22695862473, + -188322.21295005153, + null, + -188297.22695862473, + -188793.71858353209, + null, + -188297.22695862473, + -188463.8027867851, + null, + -188297.22695862473, + -188420.56292882576, + null, + -188297.22695862473, + -188527.54012336218, + null, + -188297.22695862473, + -188470.12706697625, + null, + -188297.22695862473, + -188237.94842374895, + null, + -188297.22695862473, + -188152.7059567754, + null, + -188297.22695862473, + -188376.19538272417, + null, + -188297.22695862473, + -188383.6321563408, + null, + -188297.22695862473, + -188362.64506112947, + null, + -188297.22695862473, + -188229.32312055898, + null, + -186800.93628583517, + -186682.89867719274, + null, + -186800.93628583517, + -185974.23479730866, + null, + -186800.93628583517, + -187407.3972483268, + null, + -188080.7633837035, + -188204.88501110626, + null, + -188080.7633837035, + -188197.26080880096, + null, + -188080.7633837035, + -188267.12675957533, + null, + -188080.7633837035, + -188060.29551175452, + null, + -188080.7633837035, + -187943.6909840044, + null, + -188080.7633837035, + -188081.06831320774, + null, + -188080.7633837035, + -188704.9483600274, + null, + -188080.7633837035, + -188229.5695177689, + null, + -188080.7633837035, + -188101.04549079717, + null, + -187594.8777657927, + -187963.97664086308, + null, + -188109.5947916895, + -187963.97664086308, + null, + -188135.7951117508, + -187963.97664086308, + null, + -188126.67429510137, + -187963.97664086308, + null, + -188068.89540782082, + -187963.97664086308, + null, + -188138.17806449422, + -187963.97664086308, + null, + -188113.8147030654, + -187963.97664086308, + null, + -188119.49823623613, + -187963.97664086308, + null, + -188123.9780570342, + -187963.97664086308, + null, + -188121.51859750494, + -187963.97664086308, + null, + -188082.81454332572, + -187963.97664086308, + null, + -188023.85098966694, + -187963.97664086308, + null, + -188038.4334288893, + -187963.97664086308, + null, + -188097.6602407291, + -187963.97664086308, + null, + -188124.65543545736, + -187963.97664086308, + null, + -188079.8329504583, + -187963.97664086308, + null, + -188129.3743830729, + -187963.97664086308, + null, + -187594.8777657927, + -187969.50842343477, + null, + -188109.5947916895, + -187969.50842343477, + null, + -188135.7951117508, + -187969.50842343477, + null, + -188126.67429510137, + -187969.50842343477, + null, + -188068.89540782082, + -187969.50842343477, + null, + -188138.17806449422, + -187969.50842343477, + null, + -188113.8147030654, + -187969.50842343477, + null, + -188119.49823623613, + -187969.50842343477, + null, + -188123.9780570342, + -187969.50842343477, + null, + -188121.51859750494, + -187969.50842343477, + null, + -188082.81454332572, + -187969.50842343477, + null, + -188023.85098966694, + -187969.50842343477, + null, + -188038.4334288893, + -187969.50842343477, + null, + -188097.6602407291, + -187969.50842343477, + null, + -188124.65543545736, + -187969.50842343477, + null, + -188079.8329504583, + -187969.50842343477, + null, + -188129.3743830729, + -187969.50842343477, + null, + -188109.5947916895, + -188021.3687563727, + null, + -187594.8777657927, + -188021.3687563727, + null, + -188135.7951117508, + -188021.3687563727, + null, + -188021.3687563727, + -188060.74338207667, + null, + -188126.67429510137, + -188021.3687563727, + null, + -188068.89540782082, + -188021.3687563727, + null, + -188138.17806449422, + -188021.3687563727, + null, + -188113.8147030654, + -188021.3687563727, + null, + -188119.49823623613, + -188021.3687563727, + null, + -188123.9780570342, + -188021.3687563727, + null, + -188021.3687563727, + -188009.8309550313, + null, + -188121.51859750494, + -188021.3687563727, + null, + -188021.3687563727, + -187927.6227750181, + null, + -188082.81454332572, + -188021.3687563727, + null, + -188023.85098966694, + -188021.3687563727, + null, + -188038.4334288893, + -188021.3687563727, + null, + -188097.6602407291, + -188021.3687563727, + null, + -188124.65543545736, + -188021.3687563727, + null, + -188079.8329504583, + -188021.3687563727, + null, + -188021.3687563727, + -188334.1310395238, + null, + -188129.3743830729, + -188021.3687563727, + null, + -188109.5947916895, + -187972.53307352384, + null, + -188135.7951117508, + -187972.53307352384, + null, + -187594.8777657927, + -187972.53307352384, + null, + -188126.67429510137, + -187972.53307352384, + null, + -188068.89540782082, + -187972.53307352384, + null, + -188138.17806449422, + -187972.53307352384, + null, + -188113.8147030654, + -187972.53307352384, + null, + -188119.49823623613, + -187972.53307352384, + null, + -188123.9780570342, + -187972.53307352384, + null, + -188121.51859750494, + -187972.53307352384, + null, + -188082.81454332572, + -187972.53307352384, + null, + -188023.85098966694, + -187972.53307352384, + null, + -188038.4334288893, + -187972.53307352384, + null, + -188097.6602407291, + -187972.53307352384, + null, + -188124.65543545736, + -187972.53307352384, + null, + -188079.8329504583, + -187972.53307352384, + null, + -188129.3743830729, + -187972.53307352384, + null, + -188078.52295971283, + -188172.07424796064, + null, + -188078.52295971283, + -188016.12153162181, + null, + -188078.52295971283, + -188527.56986848032, + null, + -188078.52295971283, + -188265.23932553243, + null, + -188078.52295971283, + -188123.85049620818, + null, + -188138.17806449422, + -188078.52295971283, + null, + -188078.52295971283, + -188174.51164152424, + null, + -188038.4334288893, + -188078.52295971283, + null, + -188078.52295971283, + -188360.45872868263, + null, + -188068.89540782082, + -188078.52295971283, + null, + -188126.67429510137, + -188078.52295971283, + null, + -188135.7951117508, + -188078.52295971283, + null, + -188129.3743830729, + -188078.52295971283, + null, + -188978.81025809547, + -188409.31602683378, + null, + -188978.81025809547, + -190337.43065788288, + null, + -188978.81025809547, + -189901.64680176062, + null, + -188978.81025809547, + -188494.15449793098, + null, + -188978.81025809547, + -189216.5389337516, + null, + -188978.81025809547, + -189096.8745649052, + null, + -188978.81025809547, + -189395.759421411, + null, + -188226.32844361593, + -188314.0618063977, + null, + -188226.32844361593, + -188061.6228223648, + null, + -188226.32844361593, + -188377.0181492975, + null, + -188226.32844361593, + -188192.37099960947, + null, + -188226.32844361593, + -188499.89103916325, + null, + -188226.32844361593, + -188424.26831552497, + null, + -188226.32844361593, + -188471.16226267573, + null, + -187679.47433074287, + -187758.18487713882, + null, + -187679.47433074287, + -187787.2879845593, + null, + -187679.47433074287, + -187572.14078191516, + null, + -187679.47433074287, + -187741.49763673818, + null, + -187679.47433074287, + -187964.39443212652, + null, + -188763.44516650846, + -189643.33025442102, + null, + -188763.44516650846, + -189290.1565425291, + null, + -188763.44516650846, + -188953.4021090192, + null, + -188763.44516650846, + -188803.40271635444, + null, + -188763.44516650846, + -188917.24105575786, + null, + -188763.44516650846, + -188940.71322085857, + null, + -188763.44516650846, + -188810.26221157002, + null, + -188763.44516650846, + -188831.5695149495, + null, + -188763.44516650846, + -188904.68010216823, + null, + -188763.44516650846, + -189135.25543499572, + null, + -188763.44516650846, + -189523.5420746396, + null, + -188763.44516650846, + -188139.9439583329, + null, + -188763.44516650846, + -189020.66022475137, + null, + -187724.4325574573, + -187947.31400414582, + null, + -187724.4325574573, + -187672.10042218023, + null, + -187724.4325574573, + -188053.95244611433, + null, + -187724.4325574573, + -187619.73016237066, + null, + -187610.1377688772, + -187911.62808368597, + null, + -187594.8777657927, + -187993.51411086737, + null, + -188109.5947916895, + -187993.51411086737, + null, + -188135.7951117508, + -187993.51411086737, + null, + -188129.3743830729, + -187993.51411086737, + null, + -188038.4334288893, + -187993.51411086737, + null, + -188138.17806449422, + -187993.51411086737, + null, + -188068.89540782082, + -187993.51411086737, + null, + -188079.8329504583, + -187993.51411086737, + null, + -188119.49823623613, + -187993.51411086737, + null, + -188097.6602407291, + -187993.51411086737, + null, + -188023.85098966694, + -187993.51411086737, + null, + -188123.9780570342, + -187993.51411086737, + null, + -188082.81454332572, + -187993.51411086737, + null, + -188113.8147030654, + -187993.51411086737, + null, + -188124.65543545736, + -187993.51411086737, + null, + -188121.51859750494, + -187993.51411086737, + null, + -188126.67429510137, + -187993.51411086737, + null, + -187185.02879405092, + -187842.24023419546, + null, + -187185.02879405092, + -186570.1920070612, + null, + -188109.5947916895, + -188028.29034553113, + null, + -187594.8777657927, + -188028.29034553113, + null, + -188135.7951117508, + -188028.29034553113, + null, + -188028.29034553113, + -188060.74338207667, + null, + -188126.67429510137, + -188028.29034553113, + null, + -188068.89540782082, + -188028.29034553113, + null, + -188138.17806449422, + -188028.29034553113, + null, + -188113.8147030654, + -188028.29034553113, + null, + -188119.49823623613, + -188028.29034553113, + null, + -188123.9780570342, + -188028.29034553113, + null, + -188028.29034553113, + -188009.8309550313, + null, + -188121.51859750494, + -188028.29034553113, + null, + -188028.29034553113, + -187927.6227750181, + null, + -188082.81454332572, + -188028.29034553113, + null, + -188023.85098966694, + -188028.29034553113, + null, + -188038.4334288893, + -188028.29034553113, + null, + -188097.6602407291, + -188028.29034553113, + null, + -188124.65543545736, + -188028.29034553113, + null, + -188079.8329504583, + -188028.29034553113, + null, + -188028.29034553113, + -188334.1310395238, + null, + -188129.3743830729, + -188028.29034553113, + null, + -188188.52643226265, + -188387.07160945956, + null, + -188188.52643226265, + -188499.89103916325, + null, + -188188.52643226265, + -189016.05459049373, + null, + -188188.52643226265, + -188302.98266526288, + null, + -188188.52643226265, + -188485.53190433834, + null, + -188188.52643226265, + -187252.96696407747, + null, + -187803.06549553943, + -188197.26080880096, + null, + -187803.06549553943, + -187964.39443212652, + null, + -187803.06549553943, + -188056.2157138019, + null, + -187803.06549553943, + -187787.2879845593, + null, + -187803.06549553943, + -187758.18487713882, + null, + -187803.06549553943, + -188081.06831320774, + null, + -187803.06549553943, + -187572.14078191516, + null, + -187803.06549553943, + -187741.49763673818, + null, + -188463.31349680066, + -188150.01873431922, + null, + -188463.31349680066, + -188407.83621514795, + null, + -188463.31349680066, + -188351.8861077988, + null, + -188463.31349680066, + -189581.91550554175, + null, + -188463.31349680066, + -187744.01854014478, + null, + -187834.08698576453, + -188204.88501110626, + null, + -187834.08698576453, + -188051.1449940405, + null, + -187834.08698576453, + -187770.73014403923, + null, + -187834.08698576453, + -188101.04549079717, + null, + -187594.8777657927, + -187975.40467572561, + null, + -188109.5947916895, + -187975.40467572561, + null, + -188135.7951117508, + -187975.40467572561, + null, + -188126.67429510137, + -187975.40467572561, + null, + -188068.89540782082, + -187975.40467572561, + null, + -188138.17806449422, + -187975.40467572561, + null, + -188113.8147030654, + -187975.40467572561, + null, + -188119.49823623613, + -187975.40467572561, + null, + -188123.9780570342, + -187975.40467572561, + null, + -188121.51859750494, + -187975.40467572561, + null, + -188082.81454332572, + -187975.40467572561, + null, + -188023.85098966694, + -187975.40467572561, + null, + -188038.4334288893, + -187975.40467572561, + null, + -188097.6602407291, + -187975.40467572561, + null, + -188124.65543545736, + -187975.40467572561, + null, + -188079.8329504583, + -187975.40467572561, + null, + -188129.3743830729, + -187975.40467572561, + null, + -187594.8777657927, + -187987.12541376214, + null, + -188109.5947916895, + -187987.12541376214, + null, + -188135.7951117508, + -187987.12541376214, + null, + -188126.67429510137, + -187987.12541376214, + null, + -188068.89540782082, + -187987.12541376214, + null, + -188138.17806449422, + -187987.12541376214, + null, + -188113.8147030654, + -187987.12541376214, + null, + -188119.49823623613, + -187987.12541376214, + null, + -188123.9780570342, + -187987.12541376214, + null, + -188121.51859750494, + -187987.12541376214, + null, + -188082.81454332572, + -187987.12541376214, + null, + -188023.85098966694, + -187987.12541376214, + null, + -188038.4334288893, + -187987.12541376214, + null, + -188097.6602407291, + -187987.12541376214, + null, + -188124.65543545736, + -187987.12541376214, + null, + -188079.8329504583, + -187987.12541376214, + null, + -188129.3743830729, + -187987.12541376214, + null, + -188109.5947916895, + -188097.1885506176, + null, + -187594.8777657927, + -188097.1885506176, + null, + -188135.7951117508, + -188097.1885506176, + null, + -188097.1885506176, + -188103.182578579, + null, + -188126.67429510137, + -188097.1885506176, + null, + -188068.89540782082, + -188097.1885506176, + null, + -188138.17806449422, + -188097.1885506176, + null, + -188113.8147030654, + -188097.1885506176, + null, + -188119.49823623613, + -188097.1885506176, + null, + -188123.9780570342, + -188097.1885506176, + null, + -188097.1885506176, + -188009.8309550313, + null, + -188097.1885506176, + -187927.6227750181, + null, + -188082.81454332572, + -188097.1885506176, + null, + -188023.85098966694, + -188097.1885506176, + null, + -188038.4334288893, + -188097.1885506176, + null, + -188097.6602407291, + -188097.1885506176, + null, + -188124.65543545736, + -188097.1885506176, + null, + -188079.8329504583, + -188097.1885506176, + null, + -188097.1885506176, + -188334.1310395238, + null, + -188129.3743830729, + -188097.1885506176, + null, + -188121.51859750494, + -188097.1885506176, + null, + -187594.8777657927, + -188083.10255481664, + null, + -188109.5947916895, + -188083.10255481664, + null, + -188135.7951117508, + -188083.10255481664, + null, + -188129.3743830729, + -188083.10255481664, + null, + -188038.4334288893, + -188083.10255481664, + null, + -188138.17806449422, + -188083.10255481664, + null, + -188068.89540782082, + -188083.10255481664, + null, + -188079.8329504583, + -188083.10255481664, + null, + -188126.67429510137, + -188083.10255481664, + null, + -188119.49823623613, + -188083.10255481664, + null, + -188097.6602407291, + -188083.10255481664, + null, + -188023.85098966694, + -188083.10255481664, + null, + -188123.9780570342, + -188083.10255481664, + null, + -188082.81454332572, + -188083.10255481664, + null, + -188113.8147030654, + -188083.10255481664, + null, + -188124.65543545736, + -188083.10255481664, + null, + -188121.51859750494, + -188083.10255481664, + null, + -187594.8777657927, + -188183.12236589222, + null, + -188109.5947916895, + -188183.12236589222, + null, + -188135.7951117508, + -188183.12236589222, + null, + -188126.67429510137, + -188183.12236589222, + null, + -188068.89540782082, + -188183.12236589222, + null, + -188138.17806449422, + -188183.12236589222, + null, + -188113.8147030654, + -188183.12236589222, + null, + -188119.49823623613, + -188183.12236589222, + null, + -188123.9780570342, + -188183.12236589222, + null, + -188121.51859750494, + -188183.12236589222, + null, + -188082.81454332572, + -188183.12236589222, + null, + -188023.85098966694, + -188183.12236589222, + null, + -188038.4334288893, + -188183.12236589222, + null, + -188097.6602407291, + -188183.12236589222, + null, + -188124.65543545736, + -188183.12236589222, + null, + -188079.8329504583, + -188183.12236589222, + null, + -188129.3743830729, + -188183.12236589222, + null, + -187594.8777657927, + -188158.79572465117, + null, + -188109.5947916895, + -188158.79572465117, + null, + -188135.7951117508, + -188158.79572465117, + null, + -188126.67429510137, + -188158.79572465117, + null, + -188068.89540782082, + -188158.79572465117, + null, + -188138.17806449422, + -188158.79572465117, + null, + -188113.8147030654, + -188158.79572465117, + null, + -188119.49823623613, + -188158.79572465117, + null, + -188123.9780570342, + -188158.79572465117, + null, + -188121.51859750494, + -188158.79572465117, + null, + -188082.81454332572, + -188158.79572465117, + null, + -188023.85098966694, + -188158.79572465117, + null, + -188038.4334288893, + -188158.79572465117, + null, + -188097.6602407291, + -188158.79572465117, + null, + -188124.65543545736, + -188158.79572465117, + null, + -188079.8329504583, + -188158.79572465117, + null, + -188129.3743830729, + -188158.79572465117, + null, + -189953.43285506195, + -189821.2312186076, + null, + -189953.43285506195, + -190304.48024467833, + null, + -189953.43285506195, + -189901.64680176062, + null, + -189953.43285506195, + -190260.53457260315, + null, + -189953.43285506195, + -190575.84463553302, + null, + -189953.43285506195, + -190337.43065788288, + null, + -189953.43285506195, + -190699.1670419356, + null, + -189953.43285506195, + -190568.56008858563, + null, + -189953.43285506195, + -190316.76887405966, + null, + -189953.43285506195, + -189251.39154025816, + null, + -189953.43285506195, + -190554.549981457, + null, + -187785.39966082262, + -187845.25254911988, + null, + -187785.39966082262, + -187407.3972483268, + null, + -187785.39966082262, + -186176.69143772183, + null, + -187785.39966082262, + -187744.01854014478, + null, + -188776.05672438274, + -190605.68260414473, + null, + -188776.05672438274, + -189416.02083849843, + null, + -188776.05672438274, + -188966.40362309, + null, + -188776.05672438274, + -189104.16659807847, + null, + -188776.05672438274, + -187252.2711895733, + null, + -188776.05672438274, + -188769.20753909196, + null, + -187556.7890851402, + -187699.42874421572, + null, + -187556.7890851402, + -187938.3617763031, + null, + -187556.7890851402, + -187668.34843839586, + null, + -187556.7890851402, + -187987.33055419096, + null, + -187788.15822833957, + -188319.47292758749, + null, + -187788.15822833957, + -187952.69828486128, + null, + -187788.15822833957, + -187276.75570563087, + null, + -188208.85344747134, + -188204.88501110626, + null, + -188208.85344747134, + -188051.1449940405, + null, + -188208.85344747134, + -187943.6909840044, + null, + -188208.85344747134, + -188081.06831320774, + null, + -188208.85344747134, + -188101.04549079717, + null, + -187306.8260455551, + -187775.03036984504, + null, + -187775.03036984504, + -187999.3435431426, + null, + -187594.8777657927, + -188034.61082553468, + null, + -188109.5947916895, + -188034.61082553468, + null, + -188135.7951117508, + -188034.61082553468, + null, + -188126.67429510137, + -188034.61082553468, + null, + -188068.89540782082, + -188034.61082553468, + null, + -188138.17806449422, + -188034.61082553468, + null, + -188113.8147030654, + -188034.61082553468, + null, + -188119.49823623613, + -188034.61082553468, + null, + -188123.9780570342, + -188034.61082553468, + null, + -188121.51859750494, + -188034.61082553468, + null, + -188082.81454332572, + -188034.61082553468, + null, + -188023.85098966694, + -188034.61082553468, + null, + -188038.4334288893, + -188034.61082553468, + null, + -188097.6602407291, + -188034.61082553468, + null, + -188124.65543545736, + -188034.61082553468, + null, + -188079.8329504583, + -188034.61082553468, + null, + -188129.3743830729, + -188034.61082553468, + null, + -187594.8777657927, + -188046.35626590863, + null, + -188109.5947916895, + -188046.35626590863, + null, + -188135.7951117508, + -188046.35626590863, + null, + -188126.67429510137, + -188046.35626590863, + null, + -188068.89540782082, + -188046.35626590863, + null, + -188138.17806449422, + -188046.35626590863, + null, + -188113.8147030654, + -188046.35626590863, + null, + -188119.49823623613, + -188046.35626590863, + null, + -188123.9780570342, + -188046.35626590863, + null, + -188121.51859750494, + -188046.35626590863, + null, + -188082.81454332572, + -188046.35626590863, + null, + -188023.85098966694, + -188046.35626590863, + null, + -188038.4334288893, + -188046.35626590863, + null, + -188097.6602407291, + -188046.35626590863, + null, + -188124.65543545736, + -188046.35626590863, + null, + -188079.8329504583, + -188046.35626590863, + null, + -188129.3743830729, + -188046.35626590863, + null, + -187594.8777657927, + -188101.37584040826, + null, + -188109.5947916895, + -188101.37584040826, + null, + -188135.7951117508, + -188101.37584040826, + null, + -188129.3743830729, + -188101.37584040826, + null, + -188038.4334288893, + -188101.37584040826, + null, + -188138.17806449422, + -188101.37584040826, + null, + -188068.89540782082, + -188101.37584040826, + null, + -188079.8329504583, + -188101.37584040826, + null, + -188126.67429510137, + -188101.37584040826, + null, + -188119.49823623613, + -188101.37584040826, + null, + -188097.6602407291, + -188101.37584040826, + null, + -188023.85098966694, + -188101.37584040826, + null, + -188123.9780570342, + -188101.37584040826, + null, + -188082.81454332572, + -188101.37584040826, + null, + -188124.65543545736, + -188101.37584040826, + null, + -188121.51859750494, + -188101.37584040826, + null, + -188113.8147030654, + -188101.37584040826, + null, + -187594.8777657927, + -188094.00217598723, + null, + -188119.49823623613, + -188094.00217598723, + null, + -188109.5947916895, + -188094.00217598723, + null, + -188135.7951117508, + -188094.00217598723, + null, + -188094.00217598723, + -188054.9089034451, + null, + -188126.67429510137, + -188094.00217598723, + null, + -188068.89540782082, + -188094.00217598723, + null, + -188138.17806449422, + -188094.00217598723, + null, + -188113.8147030654, + -188094.00217598723, + null, + -188123.9780570342, + -188094.00217598723, + null, + -188121.51859750494, + -188094.00217598723, + null, + -188094.00217598723, + -187927.6227750181, + null, + -188082.81454332572, + -188094.00217598723, + null, + -188023.85098966694, + -188094.00217598723, + null, + -188038.4334288893, + -188094.00217598723, + null, + -188097.6602407291, + -188094.00217598723, + null, + -188124.65543545736, + -188094.00217598723, + null, + -188079.8329504583, + -188094.00217598723, + null, + -188094.00217598723, + -188334.1310395238, + null, + -188129.3743830729, + -188094.00217598723, + null, + -188407.58725157817, + -188032.08428389157, + null, + -188407.58725157817, + -188416.8042440556, + null, + -188407.58725157817, + -188828.710009183, + null, + -188407.58725157817, + -188269.90433919505, + null, + -188407.58725157817, + -188242.81984720996, + null, + -188407.58725157817, + -188483.53884869776, + null, + -188482.5310615353, + -188749.09654230482, + null, + -188482.5310615353, + -188770.96011071018, + null, + -188482.5310615353, + -189749.7370829404, + null, + -188482.5310615353, + -189155.7502287397, + null, + -190270.05275175368, + -190823.13696070746, + null, + -190270.05275175368, + -189901.64680176062, + null, + -190270.05275175368, + -190337.43065788288, + null, + -190270.05275175368, + -189821.2312186076, + null, + -190270.05275175368, + -190568.56008858563, + null, + -190270.05275175368, + -190316.76887405966, + null, + -190270.05275175368, + -190554.549981457, + null, + -190270.05275175368, + -190575.84463553302, + null, + -190270.05275175368, + -190689.0572112892, + null, + -190270.05275175368, + -190467.1990688694, + null, + -188517.9738436573, + -188948.92747001626, + null, + -188517.9738436573, + -188207.51154255582, + null, + -188362.35931727977, + -188151.91592219454, + null, + -188526.0290014248, + -188673.74140925996, + null, + -188526.0290014248, + -188660.2868009395, + null, + -188526.0290014248, + -188704.9483600274, + null, + -188526.0290014248, + -188399.31508879495, + null, + -188526.0290014248, + -188503.80500650342, + null, + -188526.0290014248, + -188559.77245373707, + null, + -188526.0290014248, + -188374.52176348033, + null, + -188526.0290014248, + -188683.6155536947, + null, + -188526.0290014248, + -188559.65786072984, + null, + -188526.0290014248, + -188373.3539402033, + null, + -188526.0290014248, + -188703.13655352002, + null, + -188526.0290014248, + -188197.26080880096, + null, + -188526.0290014248, + -188678.94430401377, + null, + -188526.0290014248, + -188594.7332906974, + null, + -188526.0290014248, + -188152.7059567754, + null, + -188526.0290014248, + -188597.86898873816, + null, + -188526.0290014248, + -188784.85977225626, + null, + -188526.0290014248, + -188110.75597498723, + null, + -188526.0290014248, + -188436.68427228258, + null, + -188526.0290014248, + -188666.33131441893, + null, + -188526.0290014248, + -188470.12706697625, + null, + -188526.0290014248, + -188697.64814490697, + null, + -188526.0290014248, + -188522.7178033711, + null, + -188526.0290014248, + -188633.79406085494, + null, + -188526.0290014248, + -188704.29316380754, + null, + -188526.0290014248, + -188768.03900527532, + null, + -188526.0290014248, + -188625.4650503576, + null, + -188526.0290014248, + -188663.50134786894, + null, + -188526.0290014248, + -188576.25334950717, + null, + -188526.0290014248, + -188546.52938657982, + null, + -188526.0290014248, + -188680.8371036378, + null, + -188526.0290014248, + -188857.1383443916, + null, + -188526.0290014248, + -188805.0846516448, + null, + -188526.0290014248, + -188527.54012336218, + null, + -188526.0290014248, + -188204.88501110626, + null, + -188526.0290014248, + -188653.17628520753, + null, + -188526.0290014248, + -188081.06831320774, + null, + -188526.0290014248, + -188700.76734194253, + null, + -188526.0290014248, + -187777.82929663642, + null, + -188526.0290014248, + -188615.03355433713, + null, + -188526.0290014248, + -188576.64321319025, + null, + -188526.0290014248, + -188543.81262086015, + null, + -188526.0290014248, + -188746.69889344645, + null, + -188526.0290014248, + -188557.72678403923, + null, + -188526.0290014248, + -188229.5695177689, + null, + -188526.0290014248, + -188622.1971911336, + null, + -188526.0290014248, + -188724.273258034, + null, + -188526.0290014248, + -188591.78355342403, + null, + -188562.5678949605, + -188388.79423971399, + null, + -188562.5678949605, + -188719.5694194747, + null, + -188562.5678949605, + -188667.04054954412, + null, + -188777.68796030607, + -188808.08020128132, + null, + -188777.68796030607, + -188712.82334732497, + null, + -187594.8777657927, + -188198.9950582187, + null, + -188109.5947916895, + -188198.9950582187, + null, + -188135.7951117508, + -188198.9950582187, + null, + -188126.67429510137, + -188198.9950582187, + null, + -188068.89540782082, + -188198.9950582187, + null, + -188138.17806449422, + -188198.9950582187, + null, + -188113.8147030654, + -188198.9950582187, + null, + -188119.49823623613, + -188198.9950582187, + null, + -188123.9780570342, + -188198.9950582187, + null, + -188121.51859750494, + -188198.9950582187, + null, + -188082.81454332572, + -188198.9950582187, + null, + -188023.85098966694, + -188198.9950582187, + null, + -188038.4334288893, + -188198.9950582187, + null, + -188097.6602407291, + -188198.9950582187, + null, + -188124.65543545736, + -188198.9950582187, + null, + -188079.8329504583, + -188198.9950582187, + null, + -188129.3743830729, + -188198.9950582187, + null, + -187594.8777657927, + -188204.97639419296, + null, + -188109.5947916895, + -188204.97639419296, + null, + -188135.7951117508, + -188204.97639419296, + null, + -188126.67429510137, + -188204.97639419296, + null, + -188068.89540782082, + -188204.97639419296, + null, + -188138.17806449422, + -188204.97639419296, + null, + -188113.8147030654, + -188204.97639419296, + null, + -188119.49823623613, + -188204.97639419296, + null, + -188123.9780570342, + -188204.97639419296, + null, + -188121.51859750494, + -188204.97639419296, + null, + -188082.81454332572, + -188204.97639419296, + null, + -188023.85098966694, + -188204.97639419296, + null, + -188038.4334288893, + -188204.97639419296, + null, + -188097.6602407291, + -188204.97639419296, + null, + -188124.65543545736, + -188204.97639419296, + null, + -188079.8329504583, + -188204.97639419296, + null, + -188129.3743830729, + -188204.97639419296, + null, + -188894.20780772806, + -188975.56691510486, + null, + -188894.20780772806, + -188897.3534894631, + null, + -188877.75447919974, + -189012.75722465824, + null, + -188877.75447919974, + -188763.96608211353, + null, + -188877.75447919974, + -188826.95475208154, + null, + -189462.90626881117, + -188835.70345149824, + null, + -189462.90626881117, + -190313.9575153106, + null, + -188932.21737437064, + -189056.37183016262, + null, + -188795.16991496552, + -188733.08499490118, + null, + -188795.16991496552, + -188884.35784682204, + null, + -188795.16991496552, + -188923.87712194747, + null, + -188795.16991496552, + -188827.94721139214, + null, + -188977.4576085, + -188942.5889835721, + null, + -188977.4576085, + -189037.6870663065, + null, + -190074.33054887285, + -189821.2312186076, + null, + -190074.33054887285, + -189901.64680176062, + null, + -190074.33054887285, + -190575.84463553302, + null, + -190074.33054887285, + -190337.43065788288, + null, + -190074.33054887285, + -190699.1670419356, + null, + -190074.33054887285, + -190568.56008858563, + null, + -190074.33054887285, + -190316.76887405966, + null, + -190074.33054887285, + -190689.0572112892, + null, + -190074.33054887285, + -190554.549981457, + null, + -188697.3813039972, + -188623.1088186007, + null, + -188697.3813039972, + -188630.3623548485, + null, + -188697.3813039972, + -188568.1259673801, + null, + -188697.3813039972, + -188676.2507110918, + null, + -188697.3813039972, + -188589.14408862978, + null, + -188697.3813039972, + -188687.45937910295, + null, + -188697.3813039972, + -188769.61503198964, + null, + -188697.3813039972, + -188743.1925249904, + null, + -188697.3813039972, + -188702.17631953134, + null, + -188898.08155878072, + -188892.4296175113, + null, + -188898.08155878072, + -188871.28023278288, + null, + -188898.08155878072, + -188960.78352074078, + null, + -188898.08155878072, + -188925.94534825796, + null, + -189113.8715419739, + -189348.888529151, + null, + -189113.8715419739, + -189134.70326334922, + null, + -189113.8715419739, + -189099.75049063095, + null, + -189113.8715419739, + -189742.2319582998, + null, + -189113.8715419739, + -188319.47292758749, + null, + -188845.84495555653, + -188803.00117738845, + null, + -189204.34458726516, + -188400.57408980286, + null, + -189204.34458726516, + -189494.27256320094, + null, + -189204.34458726516, + -189494.669002662, + null, + -189204.34458726516, + -188464.4232397707, + null, + -189204.34458726516, + -189444.3391194114, + null, + -189204.34458726516, + -188380.47926556104, + null, + -189204.34458726516, + -189438.34123469607, + null, + -189204.34458726516, + -189310.50792805894, + null, + -189204.34458726516, + -189488.46596010172, + null, + -189204.34458726516, + -189426.87979329927, + null, + -189204.34458726516, + -189586.8077498066, + null, + -189204.34458726516, + -189284.25409000844, + null, + -189204.34458726516, + -189405.0179354977, + null, + -189204.34458726516, + -189595.86153925897, + null, + -189204.34458726516, + -189491.39036375418, + null, + -189204.34458726516, + -189450.22093055537, + null, + -189204.34458726516, + -189366.62556285493, + null, + -189204.34458726516, + -189420.95028154456, + null, + -189204.34458726516, + -189509.033593287, + null, + -189204.34458726516, + -189381.96275634642, + null, + -189204.34458726516, + -189358.25597996314, + null, + -189204.34458726516, + -189494.6588455454, + null, + -189029.22851713432, + -189194.10726443038, + null, + -187594.8777657927, + -188216.02236323402, + null, + -188109.5947916895, + -188216.02236323402, + null, + -188135.7951117508, + -188216.02236323402, + null, + -188216.02236323402, + -188271.78250397014, + null, + -188216.02236323402, + -188273.26012712086, + null, + -188126.67429510137, + -188216.02236323402, + null, + -188068.89540782082, + -188216.02236323402, + null, + -188138.17806449422, + -188216.02236323402, + null, + -188113.8147030654, + -188216.02236323402, + null, + -188119.49823623613, + -188216.02236323402, + null, + -188123.9780570342, + -188216.02236323402, + null, + -188216.02236323402, + -188009.8309550313, + null, + -188121.51859750494, + -188216.02236323402, + null, + -188216.02236323402, + -187927.6227750181, + null, + -188082.81454332572, + -188216.02236323402, + null, + -188023.85098966694, + -188216.02236323402, + null, + -188038.4334288893, + -188216.02236323402, + null, + -188097.6602407291, + -188216.02236323402, + null, + -188124.65543545736, + -188216.02236323402, + null, + -188079.8329504583, + -188216.02236323402, + null, + -188216.02236323402, + -188334.1310395238, + null, + -188129.3743830729, + -188216.02236323402, + null, + -190233.5032244461, + -189821.2312186076, + null, + -190233.5032244461, + -190521.2400356172, + null, + -190233.5032244461, + -189901.64680176062, + null, + -190233.5032244461, + -190467.1990688694, + null, + -190233.5032244461, + -190337.43065788288, + null, + -190233.5032244461, + -190699.1670419356, + null, + -190233.5032244461, + -190575.84463553302, + null, + -190233.5032244461, + -190568.56008858563, + null, + -190233.5032244461, + -190316.76887405966, + null, + -190233.5032244461, + -190689.0572112892, + null, + -190233.5032244461, + -190554.549981457, + null, + -190233.5032244461, + -190832.90541128814, + null, + -190233.5032244461, + -190851.29303480033, + null, + -190233.5032244461, + -190792.2009981391, + null, + -190233.5032244461, + -190413.05752745614, + null, + -188846.81963719826, + -188862.76391626216, + null, + -186096.45797461583, + -184948.11561273, + null, + -186096.45797461583, + -184959.75297709103, + null, + -186096.45797461583, + -185957.65696246203, + null, + -186096.45797461583, + -184961.07542385507, + null, + -186096.45797461583, + -185990.46390386543, + null, + -186096.45797461583, + -186100.70125635862, + null, + -186096.45797461583, + -185050.17746824646, + null, + -186096.45797461583, + -186136.39515892777, + null, + -186096.45797461583, + -186063.24649127686, + null, + -186096.45797461583, + -185137.9260259597, + null, + -186096.45797461583, + -185847.7897940973, + null, + -186096.45797461583, + -185845.0713146115, + null, + -186096.45797461583, + -186158.66764463554, + null, + -186096.45797461583, + -186027.24243721232, + null, + -186096.45797461583, + -184953.50462711358, + null, + -186096.45797461583, + -185969.5551713951, + null, + -189624.14425346788, + -190174.9869209733, + null, + -189624.14425346788, + -190118.41545021316, + null, + -188972.66635322545, + -189010.31738089523, + null, + -188972.66635322545, + -189096.92767447614, + null, + -188972.66635322545, + -189088.20919571148, + null, + -188756.88925757885, + -188643.99249474678, + null, + -188756.88925757885, + -188789.6318585568, + null, + -188756.88925757885, + -188728.21494301723, + null, + -188756.88925757885, + -188798.92556122373, + null, + -188756.88925757885, + -188681.77895953055, + null, + -188954.19885795217, + -189106.93268454904, + null, + -187594.8777657927, + -188231.47750730137, + null, + -188109.5947916895, + -188231.47750730137, + null, + -188135.7951117508, + -188231.47750730137, + null, + -188126.67429510137, + -188231.47750730137, + null, + -188068.89540782082, + -188231.47750730137, + null, + -188138.17806449422, + -188231.47750730137, + null, + -188113.8147030654, + -188231.47750730137, + null, + -188119.49823623613, + -188231.47750730137, + null, + -188123.9780570342, + -188231.47750730137, + null, + -188121.51859750494, + -188231.47750730137, + null, + -188082.81454332572, + -188231.47750730137, + null, + -188023.85098966694, + -188231.47750730137, + null, + -188038.4334288893, + -188231.47750730137, + null, + -188097.6602407291, + -188231.47750730137, + null, + -188124.65543545736, + -188231.47750730137, + null, + -188079.8329504583, + -188231.47750730137, + null, + -188129.3743830729, + -188231.47750730137, + null, + -187594.8777657927, + -188228.14569705023, + null, + -188109.5947916895, + -188228.14569705023, + null, + -188135.7951117508, + -188228.14569705023, + null, + -188126.67429510137, + -188228.14569705023, + null, + -188068.89540782082, + -188228.14569705023, + null, + -188138.17806449422, + -188228.14569705023, + null, + -188113.8147030654, + -188228.14569705023, + null, + -188119.49823623613, + -188228.14569705023, + null, + -188123.9780570342, + -188228.14569705023, + null, + -188121.51859750494, + -188228.14569705023, + null, + -188082.81454332572, + -188228.14569705023, + null, + -188023.85098966694, + -188228.14569705023, + null, + -188038.4334288893, + -188228.14569705023, + null, + -188097.6602407291, + -188228.14569705023, + null, + -188124.65543545736, + -188228.14569705023, + null, + -188079.8329504583, + -188228.14569705023, + null, + -188129.3743830729, + -188228.14569705023, + null, + -190039.66227026214, + -189251.39154025816, + null, + -190039.66227026214, + -189821.2312186076, + null, + -190039.66227026214, + -189901.64680176062, + null, + -190039.66227026214, + -190575.84463553302, + null, + -190039.66227026214, + -190337.43065788288, + null, + -190039.66227026214, + -190699.1670419356, + null, + -190039.66227026214, + -190568.56008858563, + null, + -190039.66227026214, + -190316.76887405966, + null, + -190039.66227026214, + -190689.0572112892, + null, + -190039.66227026214, + -190554.549981457, + null, + -188955.70075548417, + -188985.67716669387, + null, + -188955.70075548417, + -189083.74907014464, + null, + -188955.70075548417, + -189034.3523839353, + null, + -188955.70075548417, + -188940.71322085857, + null, + -188955.70075548417, + -189070.57417476588, + null, + -188817.15343371764, + -188944.9246191758, + null, + -188817.15343371764, + -188715.9153769697, + null, + -188817.15343371764, + -188792.5694624717, + null, + -188817.15343371764, + -188829.59277746026, + null, + -188817.15343371764, + -188787.0559469269, + null, + -188817.15343371764, + -188832.644629355, + null, + -188911.31765919903, + -188893.3636019686, + null, + -188911.31765919903, + -189024.7196291646, + null, + -188911.31765919903, + -188931.01739686544, + null, + -188911.31765919903, + -188992.60798038464, + null, + -188817.64018552104, + -188786.67166992926, + null, + -188817.64018552104, + -188923.87712194747, + null, + -188817.64018552104, + -188768.90565244108, + null, + -188387.0195355698, + -188191.56577066958, + null, + -188387.0195355698, + -188064.2405154846, + null, + -188387.0195355698, + -187977.02349488987, + null, + -188387.0195355698, + -188150.9408505529, + null, + -188387.0195355698, + -188399.31508879495, + null, + -188387.0195355698, + -188358.16456153046, + null, + -188387.0195355698, + -188388.79423971399, + null, + -188387.0195355698, + -188200.68466137044, + null, + -188387.0195355698, + -188105.61118723254, + null, + -187594.8777657927, + -188217.19279192775, + null, + -188109.5947916895, + -188217.19279192775, + null, + -188135.7951117508, + -188217.19279192775, + null, + -188126.67429510137, + -188217.19279192775, + null, + -188068.89540782082, + -188217.19279192775, + null, + -188138.17806449422, + -188217.19279192775, + null, + -188113.8147030654, + -188217.19279192775, + null, + -188119.49823623613, + -188217.19279192775, + null, + -188123.9780570342, + -188217.19279192775, + null, + -188121.51859750494, + -188217.19279192775, + null, + -188082.81454332572, + -188217.19279192775, + null, + -188023.85098966694, + -188217.19279192775, + null, + -188038.4334288893, + -188217.19279192775, + null, + -188097.6602407291, + -188217.19279192775, + null, + -188124.65543545736, + -188217.19279192775, + null, + -188079.8329504583, + -188217.19279192775, + null, + -188129.3743830729, + -188217.19279192775, + null, + -187594.8777657927, + -188215.48726479657, + null, + -188109.5947916895, + -188215.48726479657, + null, + -188135.7951117508, + -188215.48726479657, + null, + -188129.3743830729, + -188215.48726479657, + null, + -188038.4334288893, + -188215.48726479657, + null, + -188138.17806449422, + -188215.48726479657, + null, + -188068.89540782082, + -188215.48726479657, + null, + -188079.8329504583, + -188215.48726479657, + null, + -188126.67429510137, + -188215.48726479657, + null, + -188119.49823623613, + -188215.48726479657, + null, + -188097.6602407291, + -188215.48726479657, + null, + -188023.85098966694, + -188215.48726479657, + null, + -188082.81454332572, + -188215.48726479657, + null, + -188113.8147030654, + -188215.48726479657, + null, + -188124.65543545736, + -188215.48726479657, + null, + -188121.51859750494, + -188215.48726479657, + null, + -188123.9780570342, + -188215.48726479657, + null, + -188940.66433230025, + -188987.2406986813, + null, + -189435.39611651178, + -189387.98129267173, + null, + -189435.39611651178, + -190019.26883211517, + null, + -189435.39611651178, + -189683.14190918353, + null, + -190181.63074577937, + -190250.02249989784, + null, + -190181.63074577937, + -190184.28794756005, + null, + -190181.63074577937, + -190334.92104710214, + null, + -190181.63074577937, + -190227.51000102313, + null, + -190181.63074577937, + -190214.5507397167, + null, + -190181.63074577937, + -190336.85293178275, + null, + -190181.63074577937, + -190315.78757937052, + null, + -190181.63074577937, + -190229.20612766882, + null, + -190181.63074577937, + -190376.56365282947, + null, + -190181.63074577937, + -190252.19031956058, + null, + -190181.63074577937, + -190372.41721262314, + null, + -190181.63074577937, + -190175.9980453131, + null, + -190181.63074577937, + -190196.75542956498, + null, + -190181.63074577937, + -190330.29195060174, + null, + -190181.63074577937, + -190280.94568584106, + null, + -190181.63074577937, + -190372.3529320626, + null, + -190181.63074577937, + -190144.17286399158, + null, + -190181.63074577937, + -190358.37515399588, + null, + -190181.63074577937, + -190261.2951521144, + null, + -190181.63074577937, + -190258.94393558401, + null, + -190181.63074577937, + -190343.78487558663, + null, + -190181.63074577937, + -190093.6069125597, + null, + -190181.63074577937, + -190019.26883211517, + null, + -190181.63074577937, + -190354.39138039862, + null, + -190181.63074577937, + -190419.4463532059, + null, + -190181.63074577937, + -190288.23089259406, + null, + -190181.63074577937, + -190287.70189460894, + null, + -190181.63074577937, + -190158.71584807578, + null, + -190181.63074577937, + -190258.29925374908, + null, + -190181.63074577937, + -190406.92526713447, + null, + -190181.63074577937, + -190261.7743970526, + null, + -190181.63074577937, + -190326.05142614365, + null, + -190181.63074577937, + -190246.38834175895, + null, + -190181.63074577937, + -190234.3407794005, + null, + -190181.63074577937, + -190432.26490839137, + null, + -190181.63074577937, + -190449.01554506307, + null, + -190181.63074577937, + -190445.47329877305, + null, + -190181.63074577937, + -190397.00213190346, + null, + -190181.63074577937, + -190436.49551094466, + null, + -190181.63074577937, + -190329.9090910193, + null, + -190181.63074577937, + -190176.58844461074, + null, + -190181.63074577937, + -190185.0129986195, + null, + -190181.63074577937, + -190319.62726571024, + null, + -190181.63074577937, + -190380.03821897434, + null, + -190181.63074577937, + -190380.20377129066, + null, + -190181.63074577937, + -190527.71254484492, + null, + -190181.63074577937, + -190402.6065213973, + null, + -190181.63074577937, + -190396.1507821608, + null, + -188605.13434911743, + -188508.64502421487, + null, + -188605.13434911743, + -188373.82014025023, + null, + -188605.13434911743, + -188525.07051299908, + null, + -190160.9077330154, + -190602.43193520122, + null, + -190160.9077330154, + -190477.02262630573, + null, + -190160.9077330154, + -190497.50243899124, + null, + -190160.9077330154, + -190507.3624830313, + null, + -190160.9077330154, + -190319.38168120995, + null, + -189966.56620810815, + -190086.87822393788, + null, + -189966.56620810815, + -190176.58844461074, + null, + -189966.56620810815, + -190195.18659925292, + null, + -189966.56620810815, + -190093.6069125597, + null, + -189966.56620810815, + -190019.26883211517, + null, + -189966.56620810815, + -190158.71584807578, + null, + -189966.56620810815, + -190070.15156129468, + null, + -189966.56620810815, + -190036.51444069666, + null, + -189966.56620810815, + -190185.0129986195, + null, + -189966.56620810815, + -190088.81970409834, + null, + -189999.31667014628, + -190349.0282488827, + null, + -189999.31667014628, + -190200.62285130544, + null, + -189999.31667014628, + -190379.40568476502, + null, + -188266.23380139962, + -188377.52767298502, + null, + -188266.23380139962, + -187244.75892812965, + null, + -189466.79866331397, + -189007.3182361304, + null, + -189466.79866331397, + -189723.1780505297, + null, + -188990.40385466997, + -188481.01875659585, + null, + -187298.0167096983, + -188104.07716877718, + null, + -188104.07716877718, + -188481.01875659585, + null, + -188549.88759442163, + -188764.76002792385, + null, + -188549.88759442163, + -188863.03271685718, + null, + -188275.44850877777, + -188110.80230950654, + null, + -188155.0331583998, + -188110.80230950654, + null, + -188220.5960329952, + -188110.80230950654, + null, + -188295.15735575298, + -188181.00690298795, + null, + -188327.76182227116, + -188110.80230950654, + null, + -189229.17376885633, + -189435.46040436602, + null, + -188397.25088022946, + -188159.78667876072, + null, + -188397.25088022946, + -187941.68434362026, + null, + -188984.20542329797, + -189015.5867901485, + null, + -188984.20542329797, + -189052.9801668156, + null, + -189302.6007381189, + -189396.0871583986, + null, + -189302.6007381189, + -189683.05697258093, + null, + -189570.55632521573, + -189409.2260516907, + null, + -189570.55632521573, + -189439.9733840662, + null, + -189570.55632521573, + -189401.0210279784, + null, + -189570.55632521573, + -189282.9730672559, + null, + -189768.79952321426, + -190115.60913893284, + null, + -189768.79952321426, + -190091.65704194506, + null, + -187278.70253330644, + -188174.51164152424, + null, + -187278.70253330644, + -187280.45758218758, + null, + -187278.70253330644, + -187927.6227750181, + null, + -187278.70253330644, + -187657.0868990739, + null, + -187278.70253330644, + -187294.66785273908, + null, + -187278.70253330644, + -188265.23932553243, + null, + -187594.8777657927, + -187278.70253330644, + null, + -187278.70253330644, + -187593.51605149044, + null, + -187278.70253330644, + -187826.2030626212, + null, + -187278.70253330644, + -187905.26212099823, + null, + -187278.70253330644, + -187253.22086252828, + null, + -187278.70253330644, + -187838.97430345853, + null, + -188079.8329504583, + -187278.70253330644, + null, + -187278.70253330644, + -188009.8309550313, + null, + -186223.42382426502, + -186059.42223972696, + null, + -186223.42382426502, + -187069.10866048117, + null, + -186223.42382426502, + -186020.01516353776, + null, + -186223.42382426502, + -187244.75892812965, + null, + -186223.42382426502, + -186167.96323356603, + null, + -186223.42382426502, + -185830.27369723277, + null, + -186223.42382426502, + -186139.2890092994, + null, + -186223.42382426502, + -186028.00291916684, + null, + -186223.42382426502, + -186072.80462440735, + null, + -186223.42382426502, + -186073.64805899287, + null, + -186223.42382426502, + -186256.82357831844, + null, + -186223.42382426502, + -186116.13245522184, + null, + -186223.42382426502, + -186208.95519545348, + null, + -186223.42382426502, + -185984.68461957408, + null, + -186223.42382426502, + -185859.09413820013, + null, + -186223.42382426502, + -186159.51025188196, + null, + -186223.42382426502, + -186212.2138273194, + null, + -186223.42382426502, + -186182.3557491331, + null, + -186223.42382426502, + -186125.66409048735, + null, + -186223.42382426502, + -186038.40488502107, + null, + -186223.42382426502, + -186259.63674592567, + null, + -186223.42382426502, + -185992.00901628408, + null, + -186223.42382426502, + -186136.2932766661, + null, + -186223.42382426502, + -186132.35139380593, + null, + -185538.47106454833, + -185546.13442974273, + null, + -185538.47106454833, + -185859.09413820013, + null, + -185538.47106454833, + -185830.27369723277, + null, + -181316.88675453834, + -182375.64393582716, + null, + -181316.88675453834, + -180981.68034472206, + null, + -181316.88675453834, + -181095.7750693586, + null, + -181316.88675453834, + -180956.24287219153, + null, + -181316.88675453834, + -181055.72889509232, + null, + -181316.88675453834, + -180971.66262991235, + null, + -181316.88675453834, + -181103.82390677792, + null, + -181316.88675453834, + -180856.3444427169, + null, + -181316.88675453834, + -181027.36139741706, + null, + -181316.88675453834, + -181014.3774171897, + null, + -181316.88675453834, + -181055.71069809987, + null, + -181316.88675453834, + -180483.06895315493, + null, + -181316.88675453834, + -181003.4669040212, + null, + -181316.88675453834, + -180860.4464633114, + null, + -181316.88675453834, + -180883.5634329601, + null, + -181316.88675453834, + -180645.55305481135, + null, + -181316.88675453834, + -181000.74178986548, + null, + -181316.88675453834, + -180859.9033050692, + null, + -181316.88675453834, + -181109.60549286046, + null, + -181316.88675453834, + -180857.2624911139, + null, + -181316.88675453834, + -180693.93543625306, + null, + -181316.88675453834, + -180950.90008469622, + null, + -181316.88675453834, + -180644.74425556677, + null, + -181316.88675453834, + -180816.44841554252, + null, + -181316.88675453834, + -180899.0659939188, + null, + -181316.88675453834, + -180934.99464384676, + null, + -181316.88675453834, + -180922.29353936965, + null, + -181316.88675453834, + -180836.35446086427, + null, + -181316.88675453834, + -180930.33913835726, + null, + -181316.88675453834, + -180961.20970378348, + null, + -181316.88675453834, + -180980.2431356487, + null, + -181316.88675453834, + -180856.61342199767, + null, + -181316.88675453834, + -180940.29061880347, + null, + -181316.88675453834, + -180760.91174181836, + null, + -181316.88675453834, + -180749.25128466066, + null, + -181316.88675453834, + -181057.43394242367, + null, + -181316.88675453834, + -180915.60853348157, + null, + -181316.88675453834, + -181022.60295219658, + null, + -181316.88675453834, + -180760.43292094907, + null, + -181316.88675453834, + -180930.63629617327, + null, + -181316.88675453834, + -180790.79912130247, + null, + -181316.88675453834, + -180790.12967571538, + null, + -181316.88675453834, + -180770.08680043777, + null, + -181316.88675453834, + -180895.6079582836, + null, + -181316.88675453834, + -182500.3541675079, + null, + -181316.88675453834, + -180919.3086735656, + null, + -181316.88675453834, + -181036.922135391, + null, + -181316.88675453834, + -180965.05714948726, + null, + -181316.88675453834, + -181005.31086173875, + null, + -181316.88675453834, + -180833.16313540837, + null, + -181316.88675453834, + -180865.4739387523, + null, + -181316.88675453834, + -180941.22674653959, + null, + -181316.88675453834, + -180796.98622865067, + null, + -181316.88675453834, + -180982.980792712, + null, + -181316.88675453834, + -180847.98245056724, + null, + -181316.88675453834, + -180731.69982497985, + null, + -181316.88675453834, + -180767.91322810465, + null, + -181316.88675453834, + -180877.2467033272, + null, + -181316.88675453834, + -180942.63023700894, + null, + -181316.88675453834, + -181074.2378637336, + null, + -181316.88675453834, + -180878.08804388047, + null, + -181316.88675453834, + -180982.42159108724, + null, + -181316.88675453834, + -180784.02805332895, + null, + -181316.88675453834, + -180793.9452787914, + null, + -181316.88675453834, + -180850.14722552363, + null, + -181316.88675453834, + -180806.83721622013, + null, + -181316.88675453834, + -180872.98920041963, + null, + -181316.88675453834, + -181147.33042965268, + null, + -181316.88675453834, + -180799.9448917058, + null, + -181316.88675453834, + -181118.08832692527, + null, + -181316.88675453834, + -181081.7854884219, + null, + -181316.88675453834, + -180933.6802728505, + null, + -181316.88675453834, + -180816.67641035892, + null, + -181316.88675453834, + -181086.78490923072, + null, + -181316.88675453834, + -181037.9608102749, + null, + -181316.88675453834, + -180961.97956935398, + null, + -181316.88675453834, + -181055.70113727966, + null, + -181316.88675453834, + -181000.43335822207, + null, + -181316.88675453834, + -180955.18824098646, + null, + -181316.88675453834, + -180864.974251134, + null, + -181316.88675453834, + -180816.74539395078, + null, + -181316.88675453834, + -181017.48978564248, + null, + -181316.88675453834, + -180815.58662766116, + null, + -181316.88675453834, + -180979.2774002467, + null, + -181316.88675453834, + -180817.95846380026, + null, + -181316.88675453834, + -180951.85047681318, + null, + -181316.88675453834, + -180998.6529277414, + null, + -181316.88675453834, + -180818.362485989, + null, + -181316.88675453834, + -180952.8305869637, + null, + -181316.88675453834, + -181063.81311585428, + null, + -181316.88675453834, + -180978.12741341253, + null, + -181316.88675453834, + -181174.16068990272, + null, + -181316.88675453834, + -180807.44752380773, + null, + -181316.88675453834, + -181040.72061494735, + null, + -181316.88675453834, + -181124.00797680276, + null, + -181316.88675453834, + -180693.07367266295, + null, + -181316.88675453834, + -180849.66492172444, + null, + -181316.88675453834, + -181038.77982030425, + null, + -181316.88675453834, + -180866.03192510043, + null, + -181316.88675453834, + -180802.60512019158, + null, + -181316.88675453834, + -180884.46822946193, + null, + -181316.88675453834, + -181085.0475399574, + null, + -181316.88675453834, + -180885.35410085504, + null, + -181316.88675453834, + -180682.23348761175, + null, + -181316.88675453834, + -182349.5203372696, + null, + -181316.88675453834, + -180829.35338506385, + null, + -181316.88675453834, + -180772.89414994261, + null, + -181316.88675453834, + -180902.09446094595, + null, + -181316.88675453834, + -181088.72622956135, + null, + -181316.88675453834, + -180979.71642093264, + null, + -181316.88675453834, + -180906.37555946645, + null, + -181316.88675453834, + -180800.75053366087, + null, + -181316.88675453834, + -181032.55784956415, + null, + -181316.88675453834, + -180814.39982887727, + null, + -181316.88675453834, + -181151.42664541173, + null, + -181316.88675453834, + -180909.5080121125, + null, + -181316.88675453834, + -180874.23530896136, + null, + -181316.88675453834, + -181046.12498304193, + null, + -181316.88675453834, + -180902.05740752866, + null, + -181316.88675453834, + -180979.8305139395, + null, + -181316.88675453834, + -180942.5656738371, + null, + -181316.88675453834, + -181009.25962476918, + null, + -181316.88675453834, + -180840.1924708878, + null, + -181316.88675453834, + -180954.36046807666, + null, + -181316.88675453834, + -180971.1592968529, + null, + -181316.88675453834, + -180955.97843386928, + null, + -181316.88675453834, + -180845.49734652886, + null, + -181316.88675453834, + -180782.61663522222, + null, + -181316.88675453834, + -180977.97821798053, + null, + -181316.88675453834, + -180805.36420278228, + null, + -181316.88675453834, + -181008.98951493762, + null, + -181316.88675453834, + -180921.56836434823, + null, + -181316.88675453834, + -180733.23203660635, + null, + -181316.88675453834, + -180840.91362221594, + null, + -181316.88675453834, + -180846.30159686066, + null, + -181316.88675453834, + -180921.34721748272, + null, + -181316.88675453834, + -180890.0599080562, + null, + -181316.88675453834, + -182676.7358918651, + null, + -181316.88675453834, + -180827.27270966407, + null, + -181316.88675453834, + -181056.0199827383, + null, + -181316.88675453834, + -180953.8962335581, + null, + -181316.88675453834, + -180903.6230717887, + null, + -181316.88675453834, + -180838.40407558414, + null, + -181316.88675453834, + -181085.7272340573, + null, + -181316.88675453834, + -180920.01237244508, + null, + -181316.88675453834, + -180905.59164138784, + null, + -181316.88675453834, + -180923.9778191495, + null, + -181316.88675453834, + -180865.5820644942, + null, + -181316.88675453834, + -182681.0939370604, + null, + -181316.88675453834, + -182702.51404425295, + null, + -181316.88675453834, + -180920.8157314833, + null, + -181316.88675453834, + -181039.35587087716, + null, + -181316.88675453834, + -183731.0180707013, + null, + -181316.88675453834, + -184350.70827119582, + null, + -181316.88675453834, + -182912.50270388843, + null, + -181316.88675453834, + -180889.63746378856, + null, + -181316.88675453834, + -180854.80162700024, + null, + -181316.88675453834, + -181150.7372652002, + null, + -181316.88675453834, + -180794.46154850945, + null, + -181316.88675453834, + -180874.26283479307, + null, + -181316.88675453834, + -182692.2164033097, + null, + -181316.88675453834, + -180908.3417528071, + null, + -181316.88675453834, + -181156.28215987323, + null, + -181316.88675453834, + -181019.92164544453, + null, + -181316.88675453834, + -180891.2196782332, + null, + -181316.88675453834, + -180864.55024704066, + null, + -181316.88675453834, + -181087.9224563914, + null, + -181316.88675453834, + -180598.0324521481, + null, + -181316.88675453834, + -180766.12844487367, + null, + -181316.88675453834, + -180843.31390089897, + null, + -181316.88675453834, + -181009.6469005663, + null, + -181316.88675453834, + -180891.02760663966, + null, + -181316.88675453834, + -180890.58763282228, + null, + -181316.88675453834, + -181059.05318853393, + null, + -181316.88675453834, + -180883.05522412164, + null, + -181316.88675453834, + -180866.175526346, + null, + -181316.88675453834, + -181013.26936406048, + null, + -181316.88675453834, + -180831.20998369262, + null, + -181316.88675453834, + -181000.12969199513, + null, + -181316.88675453834, + -180663.24676979112, + null, + -181316.88675453834, + -181001.3948196855, + null, + -181316.88675453834, + -181066.46517229715, + null, + -181316.88675453834, + -180986.56354695623, + null, + -181316.88675453834, + -180982.7492550661, + null, + -181316.88675453834, + -180904.92820655624, + null, + -181316.88675453834, + -181047.36004751746, + null, + -181316.88675453834, + -180826.66975384587, + null, + -181316.88675453834, + -180933.08910412987, + null, + -181316.88675453834, + -180947.11811288763, + null, + -181316.88675453834, + -180927.51682069103, + null, + -181316.88675453834, + -180788.40046317098, + null, + -181316.88675453834, + -181125.4367547304, + null, + -181316.88675453834, + -181111.51853973937, + null, + -181316.88675453834, + -180866.26242476306, + null, + -181316.88675453834, + -180845.77976677753, + null, + -181316.88675453834, + -181012.6198653182, + null, + -181316.88675453834, + -180816.30466392604, + null, + -181316.88675453834, + -180776.81840438678, + null, + -181316.88675453834, + -180983.91154391912, + null, + -181316.88675453834, + -181029.40177410873, + null, + -181316.88675453834, + -180924.33642821995, + null, + -181316.88675453834, + -180888.00053592803, + null, + -181316.88675453834, + -180784.3810535411, + null, + -181316.88675453834, + -180940.07985755763, + null, + -181316.88675453834, + -180912.97448882813, + null, + -181316.88675453834, + -180774.27488770042, + null, + -181316.88675453834, + -181155.23560476548, + null, + -181316.88675453834, + -180850.22795461796, + null, + -181316.88675453834, + -180665.2733775059, + null, + -181316.88675453834, + -181084.78717029234, + null, + -181316.88675453834, + -182664.5201322499, + null, + -188577.68911072935, + -188488.99282933175, + null, + -189429.78822251226, + -189758.00649856846, + null, + -189243.0403538959, + -189435.46040436602, + null, + -189251.3089257868, + -189586.79135574435, + null, + -189251.3089257868, + -189302.4383048074, + null, + -189251.3089257868, + -189374.42417451766, + null, + -188563.19407494835, + -188159.78667876072, + null, + -188563.19407494835, + -187982.45070004364, + null, + -188854.39170410443, + -189089.35369326422, + null, + -188854.39170410443, + -188481.01875659585, + null, + -189260.15851219348, + -189409.2260516907, + null, + -189260.15851219348, + -189401.0210279784, + null, + -189231.4279713372, + -189409.2260516907, + null, + -189231.4279713372, + -189439.9733840662, + null, + -188786.31293626514, + -188925.52496602834, + null, + -188786.31293626514, + -188370.88229638213, + null, + -189104.52316957942, + -188729.27038410617, + null, + -189104.52316957942, + -189282.9730672559, + null, + -189182.68148483842, + -189191.95425247535, + null, + -189182.68148483842, + -189211.766205052, + null, + -189182.68148483842, + -189391.13611958042, + null, + -189182.68148483842, + -189357.1682863563, + null, + -188705.65600489438, + -188481.01875659585, + null, + -188705.65600489438, + -188488.99282933175, + null, + -189967.28432425318, + -190215.7200927027, + null, + -189967.28432425318, + -190252.8451955415, + null, + -189454.98816233617, + -189110.24543217203, + null, + -189951.737106575, + -190187.4679374674, + null, + -189951.737106575, + -190147.44410814112, + null, + -188991.42081728007, + -188488.99282933175, + null, + -188991.42081728007, + -188481.01875659585, + null, + -188991.42081728007, + -189007.3182361304, + null, + -189636.0078208734, + -189598.64690698453, + null, + -190209.4983373492, + -190445.654871415, + null, + -190209.4983373492, + -190457.27919916046, + null, + -190209.4983373492, + -190458.9006702578, + null, + -190209.4983373492, + -190418.83925539092, + null, + -190209.4983373492, + -190623.3756107303, + null, + -190012.9068404736, + -190222.22442778165, + null, + -190012.9068404736, + -190308.76152925828, + null, + -189864.05117757033, + -190090.6958227699, + null, + -189864.05117757033, + -189967.96741669893, + null, + -190050.28712576124, + -190301.12261888848, + null, + -188866.95996207467, + -188110.80230950654, + null, + -189208.00816211943, + -188863.03271685718, + null, + -189208.00816211943, + -189341.87599347558, + null, + -189099.37048930768, + -188863.03271685718, + null, + -189099.37048930768, + -188764.76002792385, + null, + -187298.0167096983, + -188483.7955207067, + null, + -188483.7955207067, + -188837.66894077745, + null, + -188483.7955207067, + -188806.57842336912, + null, + -188483.7955207067, + -188808.00095179488, + null, + -188865.2383597738, + -188110.80230950654, + null, + -188899.90215259913, + -188110.80230950654, + null, + -188841.91500915465, + -188110.80230950654, + null, + -188310.94209393, + -188181.00690298795, + null, + -189475.84370340698, + -189519.04224358563, + null, + -189475.84370340698, + -189409.2260516907, + null, + -189475.84370340698, + -189512.23034253178, + null, + -189256.76102591655, + -189409.2260516907, + null, + -189256.76102591655, + -189194.5932670327, + null, + -189118.55548115997, + -188987.2121565673, + null, + -189118.55548115997, + -189519.04224358563, + null, + -189118.55548115997, + -188729.27038410617, + null, + -189118.55548115997, + -189194.5932670327, + null, + -189836.02265256474, + -190175.9980453131, + null, + -189836.02265256474, + -190144.17286399158, + null, + -189836.02265256474, + -190019.26883211517, + null, + -189836.02265256474, + -190034.38718702516, + null, + -187594.8777657927, + -188267.79946330914, + null, + -188109.5947916895, + -188267.79946330914, + null, + -188135.7951117508, + -188267.79946330914, + null, + -188126.67429510137, + -188267.79946330914, + null, + -188068.89540782082, + -188267.79946330914, + null, + -188138.17806449422, + -188267.79946330914, + null, + -188113.8147030654, + -188267.79946330914, + null, + -188119.49823623613, + -188267.79946330914, + null, + -188123.9780570342, + -188267.79946330914, + null, + -188121.51859750494, + -188267.79946330914, + null, + -188082.81454332572, + -188267.79946330914, + null, + -188023.85098966694, + -188267.79946330914, + null, + -188038.4334288893, + -188267.79946330914, + null, + -188097.6602407291, + -188267.79946330914, + null, + -188124.65543545736, + -188267.79946330914, + null, + -188079.8329504583, + -188267.79946330914, + null, + -188129.3743830729, + -188267.79946330914, + null, + -188734.64348648756, + -188886.19912193718, + null, + -188499.89103916325, + -188422.8724618635, + null, + -187298.0167096983, + -188499.89103916325, + null, + -188471.16226267573, + -188573.66240306012, + null, + -188555.01680973297, + -188110.80230950654, + null, + -189062.6660397884, + -189304.51776225265, + null, + -189368.04321790536, + -189519.04224358563, + null, + -189368.04321790536, + -189409.2260516907, + null, + -189368.04321790536, + -189401.0210279784, + null, + -189207.12335782725, + -189225.2817407487, + null, + -189207.12335782725, + -189263.00325982983, + null, + -189207.12335782725, + -189205.2614891779, + null, + -189901.5373675402, + -190017.75293635303, + null, + -189901.5373675402, + -190176.58844461074, + null, + -189901.5373675402, + -190195.18659925292, + null, + -189901.5373675402, + -190093.6069125597, + null, + -189901.5373675402, + -190076.61323075774, + null, + -189901.5373675402, + -190019.26883211517, + null, + -189901.5373675402, + -190158.71584807578, + null, + -189901.5373675402, + -190086.87822393788, + null, + -189901.5373675402, + -190185.0129986195, + null, + -189901.5373675402, + -190047.0988279703, + null, + -187627.1081749794, + -187765.20644688024, + null, + -187857.75124697632, + -188110.80230950654, + null, + -187760.40303329699, + -187941.68434362026, + null, + -187760.40303329699, + -186613.3572771319, + null, + -187858.44732430877, + -187732.08072021118, + null, + -187858.44732430877, + -188072.6714608332, + null, + -188486.6627500266, + -188159.78667876072, + null, + -188486.6627500266, + -187982.45070004364, + null, + -188275.58704858087, + -187993.50997306354, + null, + -188275.58704858087, + -188006.68124746092, + null, + -188275.58704858087, + -188446.68929684337, + null, + -187965.95478834442, + -188193.71095951897, + null, + -187965.95478834442, + -188987.2121565673, + null, + -187965.95478834442, + -187981.29126473085, + null, + -187965.95478834442, + -189080.87286406787, + null, + -189024.27048204138, + -189159.68923024554, + null, + -189024.27048204138, + -189299.45891005188, + null, + -189024.27048204138, + -189152.4024345847, + null, + -189024.27048204138, + -189091.09615257187, + null, + -189024.27048204138, + -189307.52838490528, + null, + -189024.27048204138, + -189202.98031500765, + null, + -189024.27048204138, + -189253.1843586616, + null, + -189024.27048204138, + -189271.38460107477, + null, + -188563.84477598095, + -188700.71324391282, + null, + -188563.84477598095, + -189006.7819687374, + null, + -188563.84477598095, + -187905.2037860304, + null, + -188563.84477598095, + -189018.02910981255, + null, + -189191.62724059867, + -189330.11540368202, + null, + -189723.8971601925, + -189848.0079827148, + null, + -190283.4150628221, + -190250.02249989784, + null, + -190283.4150628221, + -190184.28794756005, + null, + -190283.4150628221, + -190334.92104710214, + null, + -190283.4150628221, + -190227.51000102313, + null, + -190283.4150628221, + -190214.5507397167, + null, + -190283.4150628221, + -190196.75542956498, + null, + -190283.4150628221, + -190443.65918131915, + null, + -190283.4150628221, + -190175.9980453131, + null, + -190283.4150628221, + -190229.20612766882, + null, + -190283.4150628221, + -190376.56365282947, + null, + -190283.4150628221, + -190252.19031956058, + null, + -190283.4150628221, + -190372.41721262314, + null, + -190283.4150628221, + -190427.55400195223, + null, + -190283.4150628221, + -190372.3529320626, + null, + -190283.4150628221, + -190144.17286399158, + null, + -190283.4150628221, + -190483.02517647974, + null, + -190283.4150628221, + -190261.2951521144, + null, + -190283.4150628221, + -190362.86377164358, + null, + -190283.4150628221, + -190258.94393558401, + null, + -190283.4150628221, + -190395.61332685914, + null, + -190283.4150628221, + -190280.94568584106, + null, + -190283.4150628221, + -190195.18659925292, + null, + -190283.4150628221, + -190288.23089259406, + null, + -190283.4150628221, + -190394.52870872742, + null, + -190283.4150628221, + -190343.78487558663, + null, + -190283.4150628221, + -190234.3407794005, + null, + -190283.4150628221, + -190019.26883211517, + null, + -190283.4150628221, + -190354.39138039862, + null, + -190283.4150628221, + -190479.97949248308, + null, + -190283.4150628221, + -190419.4463532059, + null, + -190283.4150628221, + -190287.70189460894, + null, + -190283.4150628221, + -190467.0995479573, + null, + -190283.4150628221, + -190406.09811304082, + null, + -190283.4150628221, + -190158.71584807578, + null, + -190283.4150628221, + -190406.92526713447, + null, + -190283.4150628221, + -190261.7743970526, + null, + -190283.4150628221, + -190326.05142614365, + null, + -190283.4150628221, + -190246.38834175895, + null, + -190283.4150628221, + -190511.58839861894, + null, + -190283.4150628221, + -190520.1801424011, + null, + -190283.4150628221, + -190515.9667556305, + null, + -190283.4150628221, + -190176.58844461074, + null, + -190283.4150628221, + -190330.29195060174, + null, + -190283.4150628221, + -190185.0129986195, + null, + -190283.4150628221, + -190427.82270662414, + null, + -190283.4150628221, + -190319.62726571024, + null, + -190283.4150628221, + -190380.20377129066, + null, + -190283.4150628221, + -190402.6065213973, + null, + -190283.4150628221, + -190294.00976637588, + null, + -187594.8777657927, + -188285.74392279977, + null, + -188109.5947916895, + -188285.74392279977, + null, + -188135.7951117508, + -188285.74392279977, + null, + -188126.67429510137, + -188285.74392279977, + null, + -188068.89540782082, + -188285.74392279977, + null, + -188138.17806449422, + -188285.74392279977, + null, + -188113.8147030654, + -188285.74392279977, + null, + -188119.49823623613, + -188285.74392279977, + null, + -188123.9780570342, + -188285.74392279977, + null, + -188121.51859750494, + -188285.74392279977, + null, + -188082.81454332572, + -188285.74392279977, + null, + -188023.85098966694, + -188285.74392279977, + null, + -188038.4334288893, + -188285.74392279977, + null, + -188097.6602407291, + -188285.74392279977, + null, + -188124.65543545736, + -188285.74392279977, + null, + -188079.8329504583, + -188285.74392279977, + null, + -188129.3743830729, + -188285.74392279977, + null, + -190048.63972499638, + -190250.02249989784, + null, + -190048.63972499638, + -190184.28794756005, + null, + -190048.63972499638, + -190334.92104710214, + null, + -190048.63972499638, + -190227.51000102313, + null, + -190048.63972499638, + -190214.5507397167, + null, + -190048.63972499638, + -190195.18659925292, + null, + -190048.63972499638, + -190196.75542956498, + null, + -190048.63972499638, + -190261.2951521144, + null, + -190048.63972499638, + -190019.26883211517, + null, + -190048.63972499638, + -190288.23089259406, + null, + -190048.63972499638, + -190287.70189460894, + null, + -190048.63972499638, + -190278.39013209782, + null, + -190048.63972499638, + -190246.38834175895, + null, + -190048.63972499638, + -190234.3407794005, + null, + -190048.63972499638, + -190380.20377129066, + null, + -190048.63972499638, + -190294.00976637588, + null, + -186790.41009242184, + -186826.21727392398, + null, + -187627.1081749794, + -187248.01430917686, + null, + -187248.01430917686, + -187247.81804804146, + null, + -187760.40303329699, + -187248.01430917686, + null, + -187857.75124697632, + -187248.01430917686, + null, + -187248.01430917686, + -187880.4124846486, + null, + -186364.1134175767, + -186245.36039779414, + null, + -184046.07233791953, + -182375.64393582716, + null, + -184046.07233791953, + -182349.5203372696, + null, + -184046.07233791953, + -184350.70827119582, + null, + -187468.17123172226, + -188422.8724618635, + null, + -187468.17123172226, + -187524.29243165697, + null, + -187468.17123172226, + -187442.40232060183, + null, + -187004.07979892765, + -187439.63154257342, + null, + -187004.07979892765, + -187466.21407558903, + null, + -188726.61235021544, + -188481.01875659585, + null, + -188040.02763009068, + -188488.99282933175, + null, + -187298.0167096983, + -188040.02763009068, + null, + -187298.0167096983, + -188376.78890401422, + null, + -188376.78890401422, + -188488.99282933175, + null, + -188376.78890401422, + -189007.3182361304, + null, + -189797.29543539853, + -190111.04590202757, + null, + -189797.29543539853, + -190144.84616993446, + null, + -188727.56930522466, + -188159.78667876072, + null, + -188727.56930522466, + -188777.33517669232, + null, + -189767.66077987218, + -190099.61072582297, + null, + -189767.66077987218, + -190079.43883652097, + null, + -189402.54379102314, + -189519.04224358563, + null, + -189402.54379102314, + -189409.2260516907, + null, + -189402.54379102314, + -189090.7163018162, + null, + -189855.4536758818, + -190153.29822813766, + null, + -189855.4536758818, + -190123.88975192353, + null, + -188921.83564302602, + -188806.57842336912, + null, + -188921.83564302602, + -188422.8724618635, + null, + -188921.83564302602, + -189037.89262428752, + null, + -188744.70646205018, + -188422.8724618635, + null, + -188744.70646205018, + -189007.3182361304, + null, + -188744.70646205018, + -188864.07840297843, + null, + -187452.2953444194, + -188159.78667876072, + null, + -187452.2953444194, + -187982.45070004364, + null, + -186432.95981047777, + -186331.33255991637, + null, + -186432.95981047777, + -186353.41628003947, + null, + -186432.95981047777, + -186460.97165208007, + null, + -184493.4638333277, + -184320.71218592688, + null, + -184493.4638333277, + -184395.50232088257, + null, + -184493.4638333277, + -182500.3541675079, + null, + -189681.03829755695, + -190089.0039060432, + null, + -189681.03829755695, + -189971.33427513135, + null, + -189180.69142051495, + -189409.2260516907, + null, + -189180.69142051495, + -189401.0210279784, + null, + -189494.99190465917, + -189768.2322727592, + null, + -189494.99190465917, + -189820.9233690557, + null, + -189494.99190465917, + -189897.344636401, + null, + -189494.99190465917, + -189080.87286406787, + null, + -189494.99190465917, + -189740.80754012152, + null, + -189418.3150618224, + -189698.05320883947, + null, + -189418.3150618224, + -189835.6886744365, + null, + -189418.3150618224, + -189409.2260516907, + null, + -189418.3150618224, + -189061.7492410639, + null, + -189418.3150618224, + -188987.2121565673, + null, + -189418.3150618224, + -189401.0210279784, + null, + -189418.3150618224, + -189535.55716931316, + null, + -189418.3150618224, + -189685.85676509794, + null, + -189406.1804548177, + -189548.9614403094, + null, + -189406.1804548177, + -189622.96977637283, + null, + -189406.1804548177, + -189478.2853721356, + null, + -189406.1804548177, + -189518.60810814277, + null, + -189406.1804548177, + -189564.61474111862, + null, + -189406.1804548177, + -189577.55489955656, + null, + -189406.1804548177, + -189446.99616676653, + null, + -189406.1804548177, + -188807.69589811168, + null, + -189406.1804548177, + -189599.7221237243, + null, + -189406.1804548177, + -189486.82239140675, + null, + -189406.1804548177, + -189502.4117847279, + null, + -189406.1804548177, + -189467.3133551171, + null, + -189406.1804548177, + -189621.35658416804, + null, + -189406.1804548177, + -189581.4535606255, + null, + -189406.1804548177, + -189569.369029503, + null, + -189406.1804548177, + -189528.73034473255, + null, + -189406.1804548177, + -189413.92865996592, + null, + -189406.1804548177, + -189475.14660232756, + null, + -189406.1804548177, + -189489.37992040775, + null, + -189406.1804548177, + -189408.59813112364, + null, + -188956.60901643464, + -189279.9613839457, + null, + -188956.60901643464, + -188417.6430208653, + null, + -188956.60901643464, + -189225.2817407487, + null, + -188956.60901643464, + -189205.2614891779, + null, + -188956.60901643464, + -189263.00325982983, + null, + -188286.47377093224, + -188110.80230950654, + null, + -187298.0167096983, + -187847.91597445504, + null, + -187847.91597445504, + -188058.3020889103, + null, + -187772.9366644242, + -187978.0776449405, + null, + -187772.9366644242, + -187069.10866048117, + null, + -187772.9366644242, + -187874.45046373125, + null, + -187772.9366644242, + -187882.51589978818, + null, + -187772.9366644242, + -187829.42643730988, + null, + -187772.9366644242, + -187992.9515668895, + null, + -187772.9366644242, + -187863.06101100918, + null, + -187772.9366644242, + -187894.49980053122, + null, + -187772.9366644242, + -187929.7926774231, + null, + -189454.44287559506, + -189759.31136422034, + null, + -189336.90265698743, + -189435.46040436602, + null, + -189688.38226235847, + -189921.34899766842, + null, + -189642.32271672558, + -189822.27177816702, + null, + -189642.32271672558, + -189779.94244991872, + null, + -189773.80511431769, + -190028.2789147829, + null, + -189773.80511431769, + -190071.21874390738, + null, + -188059.06910793387, + -187737.30602605725, + null, + -186490.92481183048, + -188110.80230950654, + null, + -188035.43847485105, + -188110.80230950654, + null, + -188759.4892448286, + -189194.5932670327, + null, + -188759.4892448286, + -189409.2260516907, + null, + -189867.76456386773, + -190145.79386936987, + null, + -189867.76456386773, + -189683.05697258093, + null, + -189867.76456386773, + -189946.1496095157, + null, + -189867.76456386773, + -190113.21126750222, + null, + -189867.76456386773, + -190096.24824068297, + null, + -189966.51788839934, + -190178.52275598646, + null, + -189966.51788839934, + -190105.41451731362, + null, + -189966.51788839934, + -190284.38186976072, + null, + -189966.51788839934, + -190225.26961028803, + null, + -189966.51788839934, + -190097.9171060172, + null, + -189966.51788839934, + -190057.625298676, + null, + -189966.51788839934, + -190002.11943799697, + null, + -189966.51788839934, + -190055.95770209175, + null, + -187298.0167096983, + -187864.57873495863, + null, + -188459.5042273985, + -188863.03271685718, + null, + -188459.5042273985, + -188764.76002792385, + null, + -188339.61248515616, + -188110.80230950654, + null, + -188482.4680775093, + -188110.80230950654, + null, + -190059.0897295911, + -190045.87754162127, + null, + -190059.0897295911, + -190490.7591485024, + null, + -188564.80121031718, + -188159.78667876072, + null, + -188564.80121031718, + -188777.33517669232, + null, + -188934.75013167982, + -189162.66377148678, + null, + -188934.75013167982, + -189194.14908284522, + null, + -188934.75013167982, + -188932.09554875613, + null, + -189407.17407776418, + -189409.2260516907, + null, + -189407.17407776418, + -189512.23034253178, + null, + -189594.04877099616, + -189807.1070773043, + null, + -189594.04877099616, + -189672.01066457023, + null, + -189928.77888545024, + -189245.34760738516, + null, + -189928.77888545024, + -190024.68852855908, + null, + -189928.77888545024, + -189777.5439815788, + null, + -189928.77888545024, + -190182.40049809497, + null, + -189928.77888545024, + -189225.46009016156, + null, + -189928.77888545024, + -190189.3974081339, + null, + -189928.77888545024, + -190220.05389692725, + null, + -189928.77888545024, + -190254.3411041133, + null, + -189928.77888545024, + -190132.36336376893, + null, + -189928.77888545024, + -189956.65780086425, + null, + -189928.77888545024, + -190154.67648313136, + null, + -189928.77888545024, + -190122.16497615812, + null, + -189928.77888545024, + -190059.88487874487, + null, + -189928.77888545024, + -190207.55774033137, + null, + -189928.77888545024, + -190150.01581871975, + null, + -189928.77888545024, + -189091.9085751124, + null, + -189928.77888545024, + -189779.08713834564, + null, + -189928.77888545024, + -190017.57547804448, + null, + -189928.77888545024, + -189250.70667474633, + null, + -189928.77888545024, + -190027.03974568783, + null, + -189928.77888545024, + -190095.17697165735, + null, + -189928.77888545024, + -190020.03316270863, + null, + -189928.77888545024, + -190135.05256309436, + null, + -189928.77888545024, + -190041.0525969543, + null, + -189928.77888545024, + -190058.27232183088, + null, + -189928.77888545024, + -190197.08787623307, + null, + -189928.77888545024, + -190076.63864476516, + null, + -189928.77888545024, + -190095.97638349127, + null, + -189928.77888545024, + -189966.02900883183, + null, + -189928.77888545024, + -190078.0323830136, + null, + -189928.77888545024, + -190004.26574663463, + null, + -189928.77888545024, + -189223.47061963478, + null, + -189928.77888545024, + -190167.79185327527, + null, + -189928.77888545024, + -190121.46768670232, + null, + -189928.77888545024, + -190182.6044789875, + null, + -189928.77888545024, + -190099.40338792902, + null, + -189928.77888545024, + -189983.6388300622, + null, + -189928.77888545024, + -190042.57666945577, + null, + -189928.77888545024, + -189956.46858778447, + null, + -189928.77888545024, + -190153.66675188259, + null, + -189928.77888545024, + -190023.61680486205, + null, + -189928.77888545024, + -189302.31324662734, + null, + -189928.77888545024, + -190094.67168179897, + null, + -189928.77888545024, + -190266.14844330985, + null, + -189928.77888545024, + -190151.23057533684, + null, + -189928.77888545024, + -190224.25521290538, + null, + -189928.77888545024, + -190096.5349873898, + null, + -190063.494640501, + -190176.58844461074, + null, + -190063.494640501, + -190076.61323075774, + null, + -190063.494640501, + -190195.18659925292, + null, + -190063.494640501, + -190093.6069125597, + null, + -190063.494640501, + -190234.3407794005, + null, + -190063.494640501, + -190019.26883211517, + null, + -190063.494640501, + -190158.71584807578, + null, + -190063.494640501, + -190086.87822393788, + null, + -190063.494640501, + -190148.46719026144, + null, + -190063.494640501, + -190185.0129986195, + null, + -190324.0838511919, + -190443.65918131915, + null, + -190324.0838511919, + -190175.9980453131, + null, + -190324.0838511919, + -190229.20612766882, + null, + -190324.0838511919, + -190376.56365282947, + null, + -190324.0838511919, + -190252.19031956058, + null, + -190324.0838511919, + -190372.41721262314, + null, + -190324.0838511919, + -190427.55400195223, + null, + -190324.0838511919, + -190372.3529320626, + null, + -190324.0838511919, + -190144.17286399158, + null, + -190324.0838511919, + -190483.02517647974, + null, + -190324.0838511919, + -190261.2951521144, + null, + -190324.0838511919, + -190362.86377164358, + null, + -190324.0838511919, + -190258.94393558401, + null, + -190324.0838511919, + -190395.61332685914, + null, + -190324.0838511919, + -190280.94568584106, + null, + -190324.0838511919, + -190195.18659925292, + null, + -190324.0838511919, + -190288.23089259406, + null, + -190324.0838511919, + -190394.52870872742, + null, + -190324.0838511919, + -190343.78487558663, + null, + -190324.0838511919, + -190234.3407794005, + null, + -190324.0838511919, + -190019.26883211517, + null, + -190324.0838511919, + -190354.39138039862, + null, + -190324.0838511919, + -190479.97949248308, + null, + -190324.0838511919, + -190419.4463532059, + null, + -190324.0838511919, + -190287.70189460894, + null, + -190324.0838511919, + -190467.0995479573, + null, + -190324.0838511919, + -190406.09811304082, + null, + -190324.0838511919, + -190158.71584807578, + null, + -190324.0838511919, + -190406.92526713447, + null, + -190324.0838511919, + -190261.7743970526, + null, + -190324.0838511919, + -190326.05142614365, + null, + -190324.0838511919, + -190246.38834175895, + null, + -190324.0838511919, + -190511.58839861894, + null, + -190324.0838511919, + -190520.1801424011, + null, + -190324.0838511919, + -190515.9667556305, + null, + -190324.0838511919, + -190176.58844461074, + null, + -190324.0838511919, + -190330.29195060174, + null, + -190324.0838511919, + -190185.0129986195, + null, + -190324.0838511919, + -190425.8188559662, + null, + -190324.0838511919, + -190319.62726571024, + null, + -190324.0838511919, + -190380.20377129066, + null, + -190324.0838511919, + -190402.6065213973, + null, + -190002.50380021115, + -190153.29822813766, + null, + -190002.50380021115, + -190123.88975192353, + null, + -189351.62227285848, + -189593.6092418684, + null, + -189351.62227285848, + -188728.6455416676, + null, + -189351.62227285848, + -189598.64690698453, + null, + -189351.62227285848, + -189322.61920879708, + null, + -189351.62227285848, + -189619.64292618987, + null, + -189386.891690723, + -189646.38589484352, + null, + -188871.73421564943, + -188819.81976631144, + null, + -188871.73421564943, + -189081.12058497823, + null, + -187862.98846391006, + -188085.8534257374, + null, + -187369.8494239768, + -188110.80230950654, + null, + -188047.51511369456, + -188058.3020889103, + null, + -187298.0167096983, + -188047.51511369456, + null, + -189023.57039513884, + -189089.35369326422, + null, + -189023.57039513884, + -189272.216549515, + null, + -189300.64988114213, + -189544.71559777067, + null, + -189304.23943329643, + -189409.2260516907, + null, + -189304.23943329643, + -189512.23034253178, + null, + -189802.91324633866, + -189907.45004942373, + null, + -189198.96904724132, + -189432.3827588458, + null, + -189198.96904724132, + -188557.4596234686, + null, + -189198.96904724132, + -188701.5447475946, + null, + -189198.96904724132, + -188971.72404492387, + null, + -190149.611876793, + -190528.79469771456, + null, + -190149.611876793, + -189877.9961805478, + null, + -190149.611876793, + -190367.54585730348, + null, + -190149.611876793, + -189835.6886744365, + null, + -190149.611876793, + -190595.64484921584, + null, + -190149.611876793, + -190479.65559568114, + null, + -190149.611876793, + -189963.1974196967, + null, + -190149.611876793, + -190535.52943206858, + null, + -190149.611876793, + -190445.05208792342, + null, + -189688.97127087243, + -189858.34219583872, + null, + -189688.97127087243, + -189897.34374014518, + null, + -189688.97127087243, + -189854.93361949048, + null, + -190162.42457619242, + -190250.02249989784, + null, + -190162.42457619242, + -190184.28794756005, + null, + -190162.42457619242, + -190334.92104710214, + null, + -190162.42457619242, + -190227.51000102313, + null, + -190162.42457619242, + -190214.5507397167, + null, + -190162.42457619242, + -190195.18659925292, + null, + -190162.42457619242, + -190196.75542956498, + null, + -190162.42457619242, + -190261.2951521144, + null, + -190162.42457619242, + -190019.26883211517, + null, + -190162.42457619242, + -190288.23089259406, + null, + -190162.42457619242, + -190287.70189460894, + null, + -190162.42457619242, + -190278.39013209782, + null, + -190162.42457619242, + -190246.38834175895, + null, + -190162.42457619242, + -190234.3407794005, + null, + -190162.42457619242, + -190380.20377129066, + null, + -190162.42457619242, + -190294.00976637588, + null, + -189121.32206798793, + -189248.82160598392, + null, + -189121.32206798793, + -189147.5538365724, + null, + -189121.32206798793, + -189201.19611016064, + null, + -189121.32206798793, + -189038.7762684195, + null, + -189121.32206798793, + -189178.77238216047, + null, + -185673.72485317432, + -185229.03460210934, + null, + -185673.72485317432, + -184350.70827119582, + null, + -187602.98284577316, + -187748.69710114886, + null, + -187602.98284577316, + -187717.19164324945, + null, + -187049.29511418982, + -187132.2353526007, + null, + -187049.29511418982, + -187136.09615416784, + null, + -188760.63914555783, + -188422.8724618635, + null, + -188760.63914555783, + -188806.57842336912, + null, + -188760.63914555783, + -189037.89262428752, + null, + -188352.16461745944, + -188110.80230950654, + null, + -188307.55943122407, + -188159.78667876072, + null, + -188307.55943122407, + -187941.68434362026, + null, + -185447.3982690385, + -185288.1211137709, + null, + -185447.3982690385, + -186613.3572771319, + null, + -185647.43874032347, + -186751.49815383757, + null, + -185647.43874032347, + -185601.47750316016, + null, + -186600.68816277097, + -186530.5887430274, + null, + -190030.77698961753, + -190319.38168120995, + null, + -190030.77698961753, + -190429.1783080962, + null, + -190030.77698961753, + -190446.3836146024, + null, + -189844.44305599996, + -190097.01924026507, + null, + -188863.83470003767, + -188488.99282933175, + null, + -190030.6059389626, + -190360.80231637773, + null, + -190030.6059389626, + -190490.7591485024, + null, + -190030.6059389626, + -190372.90967518813, + null, + -190030.6059389626, + -190045.87754162127, + null, + -188831.9884617397, + -188488.99282933175, + null, + -188831.9884617397, + -188481.01875659585, + null, + -188800.5645587159, + -188110.80230950654, + null, + -188325.90735821644, + -188159.78667876072, + null, + -188325.90735821644, + -187941.68434362026, + null, + -187036.11661907207, + -187296.17724049307, + null, + -187430.4310402768, + -188159.78667876072, + null, + -187430.4310402768, + -187982.45070004364, + null, + -187168.63791618857, + -187407.35799002185, + null, + -187168.63791618857, + -187502.90208840277, + null, + -187168.63791618857, + -187473.06927463846, + null, + -187168.63791618857, + -187499.10205366532, + null, + -187594.8777657927, + -188085.78649439852, + null, + -188109.5947916895, + -188085.78649439852, + null, + -188135.7951117508, + -188085.78649439852, + null, + -188126.67429510137, + -188085.78649439852, + null, + -188068.89540782082, + -188085.78649439852, + null, + -188138.17806449422, + -188085.78649439852, + null, + -188113.8147030654, + -188085.78649439852, + null, + -188119.49823623613, + -188085.78649439852, + null, + -188123.9780570342, + -188085.78649439852, + null, + -188121.51859750494, + -188085.78649439852, + null, + -188082.81454332572, + -188085.78649439852, + null, + -188023.85098966694, + -188085.78649439852, + null, + -188038.4334288893, + -188085.78649439852, + null, + -188097.6602407291, + -188085.78649439852, + null, + -188124.65543545736, + -188085.78649439852, + null, + -188079.8329504583, + -188085.78649439852, + null, + -188129.3743830729, + -188085.78649439852, + null, + -187594.8777657927, + -188069.8757916443, + null, + -188109.5947916895, + -188069.8757916443, + null, + -188135.7951117508, + -188069.8757916443, + null, + -188126.67429510137, + -188069.8757916443, + null, + -188068.89540782082, + -188069.8757916443, + null, + -188138.17806449422, + -188069.8757916443, + null, + -188113.8147030654, + -188069.8757916443, + null, + -188119.49823623613, + -188069.8757916443, + null, + -188123.9780570342, + -188069.8757916443, + null, + -188121.51859750494, + -188069.8757916443, + null, + -188082.81454332572, + -188069.8757916443, + null, + -188023.85098966694, + -188069.8757916443, + null, + -188038.4334288893, + -188069.8757916443, + null, + -188097.6602407291, + -188069.8757916443, + null, + -188124.65543545736, + -188069.8757916443, + null, + -188079.8329504583, + -188069.8757916443, + null, + -188129.3743830729, + -188069.8757916443, + null, + -181388.6636291559, + -180981.68034472206, + null, + -181388.6636291559, + -181095.7750693586, + null, + -181388.6636291559, + -180956.24287219153, + null, + -181388.6636291559, + -181055.72889509232, + null, + -181388.6636291559, + -180851.9598007591, + null, + -181388.6636291559, + -180971.66262991235, + null, + -181388.6636291559, + -181103.82390677792, + null, + -181388.6636291559, + -180856.3444427169, + null, + -181388.6636291559, + -181027.36139741706, + null, + -181388.6636291559, + -181014.3774171897, + null, + -181388.6636291559, + -181055.71069809987, + null, + -181388.6636291559, + -180483.06895315493, + null, + -181388.6636291559, + -181003.4669040212, + null, + -181388.6636291559, + -180860.4464633114, + null, + -181388.6636291559, + -180883.5634329601, + null, + -181388.6636291559, + -180645.55305481135, + null, + -181388.6636291559, + -181000.74178986548, + null, + -181388.6636291559, + -180859.9033050692, + null, + -181388.6636291559, + -181109.60549286046, + null, + -181388.6636291559, + -180929.25461929486, + null, + -181388.6636291559, + -181104.5752803427, + null, + -181388.6636291559, + -180950.90008469622, + null, + -181388.6636291559, + -180644.74425556677, + null, + -181388.6636291559, + -180816.44841554252, + null, + -181388.6636291559, + -180899.0659939188, + null, + -181388.6636291559, + -180922.29353936965, + null, + -181388.6636291559, + -181069.63573433508, + null, + -181388.6636291559, + -180930.33913835726, + null, + -181388.6636291559, + -180961.20970378348, + null, + -181388.6636291559, + -181129.5229125903, + null, + -181388.6636291559, + -180944.42088931572, + null, + -181388.6636291559, + -180940.29061880347, + null, + -181388.6636291559, + -181039.35587087716, + null, + -181388.6636291559, + -180760.91174181836, + null, + -181388.6636291559, + -180749.25128466066, + null, + -181388.6636291559, + -181057.43394242367, + null, + -181388.6636291559, + -180915.60853348157, + null, + -181388.6636291559, + -181022.60295219658, + null, + -181388.6636291559, + -180760.43292094907, + null, + -181388.6636291559, + -180930.63629617327, + null, + -181388.6636291559, + -180790.79912130247, + null, + -181388.6636291559, + -180972.37659385215, + null, + -181388.6636291559, + -180770.08680043777, + null, + -181388.6636291559, + -180919.3086735656, + null, + -181388.6636291559, + -181036.922135391, + null, + -181388.6636291559, + -180965.05714948726, + null, + -181388.6636291559, + -181005.31086173875, + null, + -181388.6636291559, + -180941.22674653959, + null, + -181388.6636291559, + -180796.98622865067, + null, + -181388.6636291559, + -180982.980792712, + null, + -181388.6636291559, + -180847.98245056724, + null, + -181388.6636291559, + -180731.69982497985, + null, + -181388.6636291559, + -180767.91322810465, + null, + -181388.6636291559, + -180877.2467033272, + null, + -181388.6636291559, + -180942.63023700894, + null, + -181388.6636291559, + -181074.2378637336, + null, + -181388.6636291559, + -180878.08804388047, + null, + -181388.6636291559, + -180982.42159108724, + null, + -181388.6636291559, + -180784.02805332895, + null, + -181388.6636291559, + -181158.81415754627, + null, + -181388.6636291559, + -180872.98920041963, + null, + -181388.6636291559, + -181147.33042965268, + null, + -181388.6636291559, + -180799.9448917058, + null, + -181388.6636291559, + -181118.08832692527, + null, + -181388.6636291559, + -181081.7854884219, + null, + -181388.6636291559, + -180933.6802728505, + null, + -181388.6636291559, + -180816.67641035892, + null, + -181388.6636291559, + -181086.78490923072, + null, + -181388.6636291559, + -181037.9608102749, + null, + -181388.6636291559, + -180961.97956935398, + null, + -181388.6636291559, + -181055.70113727966, + null, + -181388.6636291559, + -181000.43335822207, + null, + -181388.6636291559, + -180955.18824098646, + null, + -181388.6636291559, + -180864.974251134, + null, + -181388.6636291559, + -180816.74539395078, + null, + -181388.6636291559, + -181017.48978564248, + null, + -181388.6636291559, + -180815.58662766116, + null, + -181388.6636291559, + -180979.2774002467, + null, + -181388.6636291559, + -180817.95846380026, + null, + -181388.6636291559, + -180951.85047681318, + null, + -181388.6636291559, + -180998.6529277414, + null, + -181388.6636291559, + -180818.362485989, + null, + -181388.6636291559, + -180934.99464384676, + null, + -181388.6636291559, + -180895.6079582836, + null, + -181388.6636291559, + -182500.3541675079, + null, + -181388.6636291559, + -180833.16313540837, + null, + -181388.6636291559, + -180865.4739387523, + null, + -181388.6636291559, + -180793.9452787914, + null, + -181388.6636291559, + -180952.8305869637, + null, + -181388.6636291559, + -182375.64393582716, + null, + -181388.6636291559, + -181063.81311585428, + null, + -181388.6636291559, + -180978.12741341253, + null, + -181388.6636291559, + -181174.16068990272, + null, + -181388.6636291559, + -180872.920764452, + null, + -181388.6636291559, + -181124.00797680276, + null, + -181388.6636291559, + -180961.05798785033, + null, + -181388.6636291559, + -180849.66492172444, + null, + -181388.6636291559, + -181038.77982030425, + null, + -181388.6636291559, + -180866.03192510043, + null, + -181388.6636291559, + -180884.46822946193, + null, + -181388.6636291559, + -181085.0475399574, + null, + -181388.6636291559, + -180885.35410085504, + null, + -181388.6636291559, + -180682.23348761175, + null, + -181388.6636291559, + -182349.5203372696, + null, + -181388.6636291559, + -181040.72061494735, + null, + -181388.6636291559, + -180829.35338506385, + null, + -181388.6636291559, + -180772.89414994261, + null, + -181388.6636291559, + -181088.72622956135, + null, + -181388.6636291559, + -180979.71642093264, + null, + -181388.6636291559, + -180906.37555946645, + null, + -181388.6636291559, + -180800.75053366087, + null, + -181388.6636291559, + -181032.55784956415, + null, + -181388.6636291559, + -180814.39982887727, + null, + -181388.6636291559, + -181151.42664541173, + null, + -181388.6636291559, + -180909.5080121125, + null, + -181388.6636291559, + -180874.23530896136, + null, + -181388.6636291559, + -181046.12498304193, + null, + -181388.6636291559, + -180902.05740752866, + null, + -181388.6636291559, + -180979.8305139395, + null, + -181388.6636291559, + -180942.5656738371, + null, + -181388.6636291559, + -181009.25962476918, + null, + -181388.6636291559, + -180840.1924708878, + null, + -181388.6636291559, + -180954.36046807666, + null, + -181388.6636291559, + -180846.30159686066, + null, + -181388.6636291559, + -180805.36420278228, + null, + -181388.6636291559, + -181008.98951493762, + null, + -181388.6636291559, + -180921.56836434823, + null, + -181388.6636291559, + -180733.23203660635, + null, + -181388.6636291559, + -180840.91362221594, + null, + -181388.6636291559, + -180971.1592968529, + null, + -181388.6636291559, + -180955.97843386928, + null, + -181388.6636291559, + -180845.49734652886, + null, + -181388.6636291559, + -180782.61663522222, + null, + -181388.6636291559, + -181056.0199827383, + null, + -181388.6636291559, + -180953.8962335581, + null, + -181388.6636291559, + -180977.97821798053, + null, + -181388.6636291559, + -180806.83721622013, + null, + -181388.6636291559, + -180921.34721748272, + null, + -181388.6636291559, + -180890.0599080562, + null, + -181388.6636291559, + -180827.27270966407, + null, + -181388.6636291559, + -180903.6230717887, + null, + -181388.6636291559, + -181085.7272340573, + null, + -181388.6636291559, + -180838.40407558414, + null, + -181388.6636291559, + -180905.59164138784, + null, + -181388.6636291559, + -180920.01237244508, + null, + -181388.6636291559, + -180923.9778191495, + null, + -181388.6636291559, + -180865.5820644942, + null, + -181388.6636291559, + -183731.0180707013, + null, + -181388.6636291559, + -180920.8157314833, + null, + -181388.6636291559, + -184350.70827119582, + null, + -181388.6636291559, + -182912.50270388843, + null, + -181388.6636291559, + -180889.63746378856, + null, + -181388.6636291559, + -180854.80162700024, + null, + -181388.6636291559, + -181150.7372652002, + null, + -181388.6636291559, + -180794.46154850945, + null, + -181388.6636291559, + -180874.26283479307, + null, + -181388.6636291559, + -180908.3417528071, + null, + -181388.6636291559, + -181156.28215987323, + null, + -181388.6636291559, + -181019.92164544453, + null, + -181388.6636291559, + -180891.2196782332, + null, + -181388.6636291559, + -180864.55024704066, + null, + -181388.6636291559, + -181087.9224563914, + null, + -181388.6636291559, + -180598.0324521481, + null, + -181388.6636291559, + -180766.12844487367, + null, + -181388.6636291559, + -180843.31390089897, + null, + -181388.6636291559, + -181009.6469005663, + null, + -181388.6636291559, + -181023.41494453436, + null, + -181388.6636291559, + -180891.02760663966, + null, + -181388.6636291559, + -180904.92820655624, + null, + -181388.6636291559, + -181047.36004751746, + null, + -181388.6636291559, + -180826.66975384587, + null, + -181388.6636291559, + -180982.7492550661, + null, + -181388.6636291559, + -180986.56354695623, + null, + -181388.6636291559, + -180933.08910412987, + null, + -181388.6636291559, + -180947.11811288763, + null, + -181388.6636291559, + -181059.05318853393, + null, + -181388.6636291559, + -180883.05522412164, + null, + -181388.6636291559, + -180866.175526346, + null, + -181388.6636291559, + -181013.26936406048, + null, + -181388.6636291559, + -180831.20998369262, + null, + -181388.6636291559, + -181000.12969199513, + null, + -181388.6636291559, + -181024.33482280368, + null, + -181388.6636291559, + -181000.15483210448, + null, + -181388.6636291559, + -180990.45101826618, + null, + -181388.6636291559, + -180927.51682069103, + null, + -181388.6636291559, + -180788.40046317098, + null, + -181388.6636291559, + -181125.4367547304, + null, + -181388.6636291559, + -181111.51853973937, + null, + -181388.6636291559, + -180866.26242476306, + null, + -181388.6636291559, + -180845.77976677753, + null, + -181388.6636291559, + -181012.6198653182, + null, + -181388.6636291559, + -180983.91154391912, + null, + -181388.6636291559, + -181029.40177410873, + null, + -181388.6636291559, + -180924.33642821995, + null, + -181388.6636291559, + -180816.30466392604, + null, + -181388.6636291559, + -180776.81840438678, + null, + -181388.6636291559, + -181128.29075970198, + null, + -181388.6636291559, + -180784.3810535411, + null, + -181388.6636291559, + -180907.3847388372, + null, + -181388.6636291559, + -181058.55471777607, + null, + -181388.6636291559, + -180952.9436090207, + null, + -181388.6636291559, + -180857.59442781372, + null, + -181388.6636291559, + -180984.57332295837, + null, + -181388.6636291559, + -180886.12180459496, + null, + -181388.6636291559, + -180933.26117043925, + null, + -181388.6636291559, + -180902.09446094595, + null, + -186958.0626639662, + -186941.75754158312, + null, + -187792.11829844635, + -188488.99282933175, + null, + -186964.88142731908, + -186982.9722405875, + null, + -186964.88142731908, + -186912.18608575975, + null, + -187516.96845806637, + -187941.68434362026, + null, + -187516.96845806637, + -187732.08072021118, + null, + -187371.3989655883, + -187737.30602605725, + null, + -187673.56257634406, + -187982.45070004364, + null, + -187673.56257634406, + -188159.78667876072, + null, + -188468.66418560426, + -189225.46009016156, + null, + -188468.66418560426, + -189223.47061963478, + null, + -188468.66418560426, + -189250.70667474633, + null, + -188468.66418560426, + -189245.34760738516, + null, + -187827.28797163125, + -188370.88229638213, + null, + -187827.28797163125, + -187878.183966702, + null, + -187827.28797163125, + -187769.73020592058, + null, + -187827.28797163125, + -187918.5460535091, + null, + -187827.28797163125, + -187770.35438355888, + null, + -187827.28797163125, + -187823.1635403436, + null, + -187827.28797163125, + -187949.6542449263, + null, + -188015.37292595976, + -188004.68341807707, + null, + -188015.37292595976, + -188039.39851966396, + null, + -188015.37292595976, + -188807.69589811168, + null, + -188015.37292595976, + -188108.55865321896, + null, + -188015.37292595976, + -187970.6100541415, + null, + -188015.37292595976, + -188061.4060260442, + null, + -188015.37292595976, + -188117.78571594055, + null, + -188015.37292595976, + -188004.34272146938, + null, + -188015.37292595976, + -188496.86543053738, + null, + -186963.61210988168, + -187011.0905548473, + null, + -186963.61210988168, + -186895.31290305508, + null, + -186963.61210988168, + -187001.81900673642, + null, + -186963.61210988168, + -186938.28659058936, + null, + -186963.61210988168, + -186935.24081614582, + null, + -188500.0586157652, + -189018.82319591832, + null, + -188500.0586157652, + -189061.7492410639, + null, + -188500.0586157652, + -188987.2121565673, + null, + -188500.0586157652, + -189254.42379562804, + null, + -188500.0586157652, + -189090.7163018162, + null, + -188500.0586157652, + -188587.22325699587, + null, + -188500.0586157652, + -188768.57457960988, + null, + -187625.4001681701, + -187700.16095939116, + null, + -187625.4001681701, + -187710.29797933245, + null, + -187625.4001681701, + -187777.95914919465, + null, + -187625.4001681701, + -187680.76965174306, + null, + -187625.4001681701, + -188055.04528261707, + null, + -187625.4001681701, + -187389.64718967053, + null, + -187547.0278070721, + -187484.65611512537, + null, + -187547.0278070721, + -187604.7502873811, + null, + -187547.0278070721, + -187527.49029823882, + null, + -187547.0278070721, + -187339.39148460445, + null, + -187547.0278070721, + -188039.52789187146, + null, + -187547.0278070721, + -188177.8190559988, + null, + -187547.0278070721, + -187411.0029043213, + null, + -187547.0278070721, + -187394.22171404446, + null, + -187547.0278070721, + -187938.76300956274, + null, + -187547.0278070721, + -187522.70114031213, + null, + -187547.0278070721, + -187489.84151505012, + null, + -187547.0278070721, + -187504.45327247443, + null, + -187547.0278070721, + -187576.1632075717, + null, + -187547.0278070721, + -187542.71190908132, + null, + -187547.0278070721, + -187426.28293339012, + null, + -187547.0278070721, + -187968.02915792566, + null, + -187547.0278070721, + -187395.85950368101, + null, + -187547.0278070721, + -187426.43350693406, + null, + -187547.0278070721, + -187555.9889074425, + null, + -187547.0278070721, + -187644.45811102478, + null, + -187547.0278070721, + -187609.15410432086, + null, + -187547.0278070721, + -187306.4100947206, + null, + -187547.0278070721, + -187738.23146269514, + null, + -187547.0278070721, + -187346.23240056643, + null, + -187547.0278070721, + -187363.15401524134, + null, + -187547.0278070721, + -187370.93206676224, + null, + -187547.0278070721, + -187356.5248650377, + null, + -187547.0278070721, + -187527.29927831359, + null, + -187547.0278070721, + -187506.17924088452, + null, + -187547.0278070721, + -187395.57445450997, + null, + -187547.0278070721, + -188041.02872487713, + null, + -187547.0278070721, + -187547.86986085924, + null, + -187547.0278070721, + -187502.88540065478, + null, + -187547.0278070721, + -187444.350347627, + null, + -187547.0278070721, + -187465.44357130295, + null, + -187547.0278070721, + -187560.40108799638, + null, + -187547.0278070721, + -187477.66643523375, + null, + -187547.0278070721, + -187500.2979064186, + null, + -187547.0278070721, + -187511.36321595448, + null, + -187547.0278070721, + -187963.41642815567, + null, + -187547.0278070721, + -187936.86069417314, + null, + -187547.0278070721, + -187953.61378144295, + null, + -187547.0278070721, + -187491.63111638057, + null, + -187547.0278070721, + -187488.22817826015, + null, + -187547.0278070721, + -187467.83739372162, + null, + -187547.0278070721, + -187367.52856048927, + null, + -187547.0278070721, + -187418.31867931513, + null, + -187547.0278070721, + -187399.00999555364, + null, + -187547.0278070721, + -187321.95776501435, + null, + -187547.0278070721, + -187396.06612665168, + null, + -187547.0278070721, + -187428.96199466274, + null, + -187547.0278070721, + -187636.72358713855, + null, + -187547.0278070721, + -187397.07408615857, + null, + -187547.0278070721, + -187469.0864859035, + null, + -187547.0278070721, + -187607.19069206796, + null, + -187547.0278070721, + -187531.49942974385, + null, + -187547.0278070721, + -187484.71694180465, + null, + -187547.0278070721, + -187489.66230460946, + null, + -187547.0278070721, + -187532.95309792383, + null, + -187547.0278070721, + -187549.5655671346, + null, + -187547.0278070721, + -187582.60902455857, + null, + -187547.0278070721, + -187373.90495072122, + null, + -187547.0278070721, + -187372.5855968998, + null, + -187547.0278070721, + -187368.5041770015, + null, + -187547.0278070721, + -187345.6302066342, + null, + -187547.0278070721, + -187308.48511683661, + null, + -187547.0278070721, + -187571.46069103773, + null, + -187547.0278070721, + -187415.1090085491, + null, + -187547.0278070721, + -188004.98964630163, + null, + -187547.0278070721, + -187572.51645357502, + null, + -187547.0278070721, + -187452.88025063608, + null, + -187547.0278070721, + -187445.8659648042, + null, + -187547.0278070721, + -187458.97796815026, + null, + -187547.0278070721, + -187402.52801924205, + null, + -187547.0278070721, + -187436.79165740727, + null, + -187547.0278070721, + -187505.53159853804, + null, + -187547.0278070721, + -187583.37443551747, + null, + -187547.0278070721, + -187541.70319826694, + null, + -187547.0278070721, + -187558.36181932772, + null, + -187547.0278070721, + -187542.7333878534, + null, + -187547.0278070721, + -187884.7889990308, + null, + -187547.0278070721, + -187378.94226321694, + null, + -187547.0278070721, + -187478.76495092368, + null, + -187547.0278070721, + -187458.14513542585, + null, + -187547.0278070721, + -187384.6156040888, + null, + -187547.0278070721, + -187378.0518907277, + null, + -187547.0278070721, + -187469.15587677137, + null, + -187547.0278070721, + -188014.0323584892, + null, + -187547.0278070721, + -187406.66886159603, + null, + -187547.0278070721, + -187439.14612128361, + null, + -187547.0278070721, + -187619.57224767804, + null, + -187547.0278070721, + -187464.60152296402, + null, + -187547.0278070721, + -187506.9208302256, + null, + -187547.0278070721, + -187544.82729458922, + null, + -187547.0278070721, + -187416.49256260804, + null, + -187547.0278070721, + -187323.59112459634, + null, + -187547.0278070721, + -187385.96741871574, + null, + -187547.0278070721, + -187619.51489097482, + null, + -187547.0278070721, + -187420.92650652543, + null, + -187547.0278070721, + -187910.11580313428, + null, + -187547.0278070721, + -187363.98471613, + null, + -187547.0278070721, + -187419.29606089115, + null, + -187547.0278070721, + -187398.2416118346, + null, + -187547.0278070721, + -187453.5624250277, + null, + -187547.0278070721, + -187577.77076012106, + null, + -187547.0278070721, + -187593.5992766927, + null, + -187547.0278070721, + -187359.14464430205, + null, + -187547.0278070721, + -187374.3188761119, + null, + -187547.0278070721, + -187463.65165413215, + null, + -187547.0278070721, + -187421.33462251473, + null, + -187547.0278070721, + -187499.42247689608, + null, + -187547.0278070721, + -187435.47217575277, + null, + -187547.0278070721, + -187547.81405866303, + null, + -187547.0278070721, + -187443.10255224945, + null, + -187547.0278070721, + -187330.4227778721, + null, + -187547.0278070721, + -187513.21388004647, + null, + -187547.0278070721, + -187443.89718925807, + null, + -187547.0278070721, + -187635.7326994755, + null, + -187547.0278070721, + -187512.523774074, + null, + -187547.0278070721, + -187595.67973291225, + null, + -187547.0278070721, + -187527.6958953857, + null, + -187547.0278070721, + -187458.3337311642, + null, + -187547.0278070721, + -187446.77474513915, + null, + -187547.0278070721, + -187468.86769671776, + null, + -187033.26399727527, + -187053.41384400596, + null, + -187917.0637720583, + -188609.42242236514, + null, + -188333.01761814565, + -187917.0637720583, + null, + -187917.0637720583, + -187985.570484645, + null, + -188265.26483815484, + -189302.31324662734, + null, + -188265.26483815484, + -188376.47907997144, + null, + -188265.26483815484, + -188271.49035221976, + null, + -188265.26483815484, + -189091.9085751124, + null, + -188079.2339962156, + -188543.55841322654, + null, + -188079.2339962156, + -188513.22429321206, + null, + -188079.2339962156, + -188054.3647786362, + null, + -188079.2339962156, + -188147.7198031375, + null, + -188079.2339962156, + -188545.07859362278, + null, + -188079.2339962156, + -188570.02927650115, + null, + -187486.7108342232, + -187478.03149545015, + null, + -187486.7108342232, + -187439.05517074038, + null, + -187486.7108342232, + -187509.49657466036, + null, + -187486.7108342232, + -187396.06612665168, + null, + -187486.7108342232, + -187411.0029043213, + null, + -187486.7108342232, + -187356.5248650377, + null, + -187486.7108342232, + -187527.49029823882, + null, + -187486.7108342232, + -187554.3270244612, + null, + -187486.7108342232, + -187418.31867931513, + null, + -187486.7108342232, + -187394.22171404446, + null, + -187486.7108342232, + -187395.85950368101, + null, + -187486.7108342232, + -187426.43350693406, + null, + -187486.7108342232, + -187308.12488365403, + null, + -187486.7108342232, + -187367.52856048927, + null, + -187486.7108342232, + -187380.04949640462, + null, + -187486.7108342232, + -188041.02872487713, + null, + -187486.7108342232, + -187884.7889990308, + null, + -187486.7108342232, + -187483.37973117948, + null, + -187486.7108342232, + -187338.094796927, + null, + -187486.7108342232, + -187363.15401524134, + null, + -187486.7108342232, + -187318.90099483271, + null, + -187486.7108342232, + -187530.1038934612, + null, + -187486.7108342232, + -187444.350347627, + null, + -187486.7108342232, + -187546.90658335353, + null, + -187486.7108342232, + -187953.61378144295, + null, + -187486.7108342232, + -187311.6337785027, + null, + -187486.7108342232, + -187307.5064738424, + null, + -187486.7108342232, + -187502.88540065478, + null, + -187486.7108342232, + -187422.37468206487, + null, + -187486.7108342232, + -187738.23146269514, + null, + -187486.7108342232, + -187363.9005927213, + null, + -187486.7108342232, + -187968.02915792566, + null, + -187486.7108342232, + -188039.52789187146, + null, + -187486.7108342232, + -187370.93206676224, + null, + -187486.7108342232, + -187506.17924088452, + null, + -187486.7108342232, + -187527.29927831359, + null, + -187486.7108342232, + -187465.44357130295, + null, + -187486.7108342232, + -187547.86986085924, + null, + -187486.7108342232, + -187936.86069417314, + null, + -187486.7108342232, + -187352.73763520038, + null, + -187486.7108342232, + -187436.79165740727, + null, + -187486.7108342232, + -187398.2416118346, + null, + -187486.7108342232, + -187397.5651778647, + null, + -187486.7108342232, + -187467.83739372162, + null, + -187486.7108342232, + -187491.63111638057, + null, + -187486.7108342232, + -187500.2979064186, + null, + -187486.7108342232, + -187477.66643523375, + null, + -187486.7108342232, + -187468.5900747166, + null, + -187486.7108342232, + -187367.89500903618, + null, + -187486.7108342232, + -187910.11580313428, + null, + -187486.7108342232, + -187479.3279444399, + null, + -187486.7108342232, + -187547.81405866303, + null, + -187486.7108342232, + -187468.86769671776, + null, + -187486.7108342232, + -187508.3265529081, + null, + -187486.7108342232, + -187436.43826273832, + null, + -187486.7108342232, + -187549.26862505978, + null, + -187486.7108342232, + -187443.89718925807, + null, + -187486.7108342232, + -187447.38477098837, + null, + -187486.7108342232, + -187370.06008495143, + null, + -187486.7108342232, + -187446.77474513915, + null, + -187486.7108342232, + -187396.52727223214, + null, + -187486.7108342232, + -187301.7505286326, + null, + -187486.7108342232, + -187431.94850241748, + null, + -187583.99768382817, + -187683.89461558757, + null, + -187583.99768382817, + -187496.55637834425, + null, + -187583.99768382817, + -187581.0873743829, + null, + -187583.99768382817, + -188158.7950138316, + null, + -187583.99768382817, + -187670.4526055669, + null, + -187790.78028682835, + -188473.89517146355, + null, + -187892.14861530808, + -187871.4556507872, + null, + -187892.14861530808, + -187953.09635756293, + null, + -187892.14861530808, + -188467.57731800413, + null, + -187892.14861530808, + -188448.06867016124, + null, + -188892.18297269146, + -189142.74138068696, + null, + -188892.18297269146, + -188684.650541092, + null, + -188892.18297269146, + -189116.46803518283, + null, + -188905.7409194041, + -188958.36824273193, + null, + -188905.7409194041, + -189029.22367856133, + null, + -189138.7526208499, + -189191.95425247535, + null, + -189138.7526208499, + -189230.61012847288, + null, + -189138.7526208499, + -189224.07109513474, + null, + -189138.7526208499, + -189171.628031147, + null, + -189138.7526208499, + -189264.20801816296, + null, + -189138.7526208499, + -189126.2504850369, + null, + -189138.7526208499, + -189158.07282634798, + null, + -189186.7934963984, + -189341.6173735007, + null, + -189186.7934963984, + -189413.78079802296, + null, + -189186.7934963984, + -189254.42379562804, + null, + -189186.7934963984, + -189332.16941428275, + null, + -188827.6268164547, + -188957.1549401508, + null, + -188827.6268164547, + -188557.4596234686, + null, + -188827.6268164547, + -188971.72404492387, + null, + -188827.6268164547, + -188701.5447475946, + null, + -188634.27361204935, + -188485.64839138108, + null, + -188976.67306946605, + -189106.2220076251, + null, + -188976.67306946605, + -189121.81270785842, + null, + -188976.67306946605, + -189038.31273541637, + null, + -188976.67306946605, + -189045.9625003559, + null, + -188450.6558889738, + -188434.73763703258, + null, + -188450.6558889738, + -187953.61378144295, + null, + -188450.6558889738, + -188465.94841419312, + null, + -188450.6558889738, + -188041.02872487713, + null, + -188450.6558889738, + -188497.92002252254, + null, + -188450.6558889738, + -188524.1099220463, + null, + -188410.6730522339, + -188538.63489318447, + null, + -188410.6730522339, + -187938.76300956274, + null, + -188410.6730522339, + -188443.97131970103, + null, + -188410.6730522339, + -188501.8606871864, + null, + -188982.28023135234, + -189085.91052883075, + null, + -188982.28023135234, + -189019.17316267703, + null, + -188982.28023135234, + -189023.7170985733, + null, + -188982.28023135234, + -189082.24653481366, + null, + -188982.28023135234, + -189131.95237431457, + null, + -188703.02110051003, + -188849.46401270016, + null, + -188703.02110051003, + -188473.89517146355, + null, + -189670.30367153513, + -190252.19031956058, + null, + -187994.90708299744, + -188209.0810095614, + null, + -187994.90708299744, + -188284.85460681713, + null, + -187994.90708299744, + -188292.80489082073, + null, + -187994.90708299744, + -188333.96865998456, + null, + -187994.90708299744, + -188265.78863545498, + null, + -187994.90708299744, + -188265.55048043604, + null, + -188227.91479363065, + -188348.7664283297, + null, + -188227.91479363065, + -188413.00617142994, + null, + -188959.37304124728, + -188780.29440188574, + null, + -188959.37304124728, + -188926.6658806248, + null, + -188959.37304124728, + -188797.9391324806, + null, + -188384.46387554856, + -188652.884000906, + null, + -188384.46387554856, + -188634.8662816393, + null, + -188333.01761814565, + -188423.99184216498, + null, + -188423.99184216498, + -188767.71516075628, + null, + -188238.2147196666, + -188655.21405929135, + null, + -188238.2147196666, + -188665.65407218394, + null, + -188238.2147196666, + -188609.42242236514, + null, + -189253.3339606655, + -189096.27550826877, + null, + -189253.3339606655, + -189137.79815942995, + null, + -189253.3339606655, + -189431.09677577397, + null, + -189253.3339606655, + -189460.51403827858, + null, + -189354.40611590687, + -189535.55716931316, + null, + -189354.40611590687, + -189519.04224358563, + null, + -189275.31015895875, + -189821.2312186076, + null, + -189275.31015895875, + -188924.01692765954, + null, + -189275.31015895875, + -188955.90998005978, + null, + -189331.45564091532, + -189557.00396968826, + null, + -189331.45564091532, + -189473.60727785307, + null, + -187594.8777657927, + -188253.45353298465, + null, + -188109.5947916895, + -188253.45353298465, + null, + -188135.7951117508, + -188253.45353298465, + null, + -188126.67429510137, + -188253.45353298465, + null, + -188068.89540782082, + -188253.45353298465, + null, + -188138.17806449422, + -188253.45353298465, + null, + -188113.8147030654, + -188253.45353298465, + null, + -188119.49823623613, + -188253.45353298465, + null, + -188123.9780570342, + -188253.45353298465, + null, + -188121.51859750494, + -188253.45353298465, + null, + -188082.81454332572, + -188253.45353298465, + null, + -188023.85098966694, + -188253.45353298465, + null, + -188038.4334288893, + -188253.45353298465, + null, + -188097.6602407291, + -188253.45353298465, + null, + -188124.65543545736, + -188253.45353298465, + null, + -188079.8329504583, + -188253.45353298465, + null, + -188129.3743830729, + -188253.45353298465, + null, + -188413.92210597807, + -188826.8802112957, + null, + -188413.92210597807, + -188780.29440188574, + null, + -188413.92210597807, + -188695.52341180335, + null, + -188413.92210597807, + -188926.6658806248, + null, + -188413.92210597807, + -188797.9391324806, + null, + -188413.92210597807, + -188650.73401087354, + null, + -188679.23184501874, + -188727.8586654595, + null, + -188679.23184501874, + -188787.1864357604, + null, + -188679.23184501874, + -188814.71782739085, + null, + -188679.23184501874, + -188655.21405929135, + null, + -188679.23184501874, + -188609.42242236514, + null, + -188679.23184501874, + -188805.0619419698, + null, + -188187.00891794523, + -188364.40710545835, + null, + -189314.34425935848, + -189458.84598976557, + null, + -189314.34425935848, + -189509.89156290417, + null, + -189314.34425935848, + -188987.2121565673, + null, + -189314.34425935848, + -189505.54081387492, + null, + -188644.9068178371, + -188870.79520430783, + null, + -188644.9068178371, + -188973.39128024134, + null, + -188644.9068178371, + -188931.2336154527, + null, + -188854.15596558747, + -188543.55841322654, + null, + -188854.15596558747, + -188513.22429321206, + null, + -188854.15596558747, + -189075.3623107205, + null, + -188854.15596558747, + -188545.07859362278, + null, + -188854.15596558747, + -188570.02927650115, + null, + -189146.26340260505, + -189165.40325349907, + null, + -188960.36420407722, + -188655.21405929135, + null, + -188960.36420407722, + -189055.29940898585, + null, + -188960.36420407722, + -188665.65407218394, + null, + -188960.36420407722, + -188609.42242236514, + null, + -188333.01761814565, + -188960.36420407722, + null, + -188960.36420407722, + -189187.86279493442, + null, + -188960.36420407722, + -189204.81061669497, + null, + -188960.36420407722, + -189118.706210659, + null, + -188960.36420407722, + -189125.03476275213, + null, + -188960.36420407722, + -188727.8586654595, + null, + -188960.36420407722, + -189190.2132919713, + null, + -188960.36420407722, + -189151.8546232845, + null, + -188960.36420407722, + -189214.31218341843, + null, + -188960.36420407722, + -189184.85831256816, + null, + -188960.36420407722, + -188754.528514879, + null, + -188977.27182089942, + -188589.02383966983, + null, + -188977.27182089942, + -188755.29130206196, + null, + -188977.27182089942, + -188684.650541092, + null, + -188977.27182089942, + -189142.74138068696, + null, + -188977.27182089942, + -189212.55154545035, + null, + -188977.27182089942, + -189102.63305725515, + null, + -188977.27182089942, + -189259.831518839, + null, + -188977.27182089942, + -189187.73499960016, + null, + -188977.27182089942, + -189250.62001598394, + null, + -188977.27182089942, + -189116.46803518283, + null, + -188977.27182089942, + -189206.6375973227, + null, + -188977.27182089942, + -188630.3797399783, + null, + -190700.1111637919, + -191950.76776520707, + null, + -190700.1111637919, + -191966.13514771112, + null, + -190700.1111637919, + -190967.5155771714, + null, + -190700.1111637919, + -190981.85314904246, + null, + -190700.1111637919, + -190904.54988965954, + null, + -190700.1111637919, + -191961.7781913269, + null, + -190700.1111637919, + -190933.31726890677, + null, + -190700.1111637919, + -190884.9419731444, + null, + -189379.49234130658, + -189676.3293626802, + null, + -189379.49234130658, + -189499.13127883367, + null, + -189379.49234130658, + -189520.43258956814, + null, + -189379.49234130658, + -189367.95954881862, + null, + -189379.49234130658, + -189602.67537553923, + null, + -189379.49234130658, + -189572.96585282165, + null, + -189379.49234130658, + -189452.19639778542, + null, + -189379.49234130658, + -189450.76429825148, + null, + -188621.49299553412, + -188760.92666197545, + null, + -188621.49299553412, + -188739.25318416615, + null, + -188621.49299553412, + -188177.8190559988, + null, + -188621.49299553412, + -188695.8454305255, + null, + -188621.49299553412, + -188642.94415728576, + null, + -189304.65394903507, + -189497.53273612313, + null, + -189304.65394903507, + -189436.17497376876, + null, + -189304.65394903507, + -189465.12020137944, + null, + -189304.65394903507, + -189459.6678228203, + null, + -189125.53360787733, + -189182.45003880878, + null, + -188738.48340001726, + -188614.0216532207, + null, + -188738.48340001726, + -188862.78092360223, + null, + -188738.48340001726, + -188688.21495284644, + null, + -188738.48340001726, + -188802.33759008144, + null, + -188738.48340001726, + -188875.01992304178, + null, + -188738.48340001726, + -188878.47216792012, + null, + -188738.48340001726, + -188833.15395284203, + null, + -188738.48340001726, + -188663.7720230959, + null, + -188738.48340001726, + -188895.23369487113, + null, + -188738.48340001726, + -188697.66550976233, + null, + -188738.48340001726, + -188677.42267415742, + null, + -188738.48340001726, + -188835.53389301457, + null, + -188738.48340001726, + -188755.91150152648, + null, + -188738.48340001726, + -188779.18943551017, + null, + -188738.48340001726, + -188765.55377816074, + null, + -188738.48340001726, + -188789.33520208794, + null, + -188738.48340001726, + -188656.38772186043, + null, + -188738.48340001726, + -188876.0303235435, + null, + -188738.48340001726, + -188750.15392367452, + null, + -188738.48340001726, + -188936.51239900038, + null, + -188738.48340001726, + -188834.86126886433, + null, + -188738.48340001726, + -188636.7491669763, + null, + -188738.48340001726, + -188745.53267934482, + null, + -188738.48340001726, + -188392.790839642, + null, + -188738.48340001726, + -188623.08273018873, + null, + -188921.90699962387, + -188655.21405929135, + null, + -188921.90699962387, + -188609.42242236514, + null, + -188921.90699962387, + -189117.79942347232, + null, + -188921.90699962387, + -189080.89445369857, + null, + -189360.31796682146, + -189610.58855240213, + null, + -190093.18905705298, + -189430.02118486408, + null, + -190093.18905705298, + -189533.9883014909, + null, + -190093.18905705298, + -190176.91030132608, + null, + -190093.18905705298, + -190327.00650601689, + null, + -190093.18905705298, + -190056.90557900956, + null, + -190093.18905705298, + -190212.84524776228, + null, + -190093.18905705298, + -190379.24513826738, + null, + -190093.18905705298, + -190364.94417823173, + null, + -190093.18905705298, + -190285.1007604136, + null, + -190093.18905705298, + -190355.21433586793, + null, + -190093.18905705298, + -190042.60625451073, + null, + -190093.18905705298, + -190392.20043390873, + null, + -190093.18905705298, + -190169.57831584476, + null, + -190093.18905705298, + -190301.90487174553, + null, + -190093.18905705298, + -190124.9999688799, + null, + -190093.18905705298, + -190263.17840064035, + null, + -190093.18905705298, + -190294.74524637056, + null, + -190093.18905705298, + -190095.38374811987, + null, + -190093.18905705298, + -190007.8802822811, + null, + -190093.18905705298, + -190144.80345069803, + null, + -190093.18905705298, + -190372.09773776418, + null, + -190093.18905705298, + -190179.79769459536, + null, + -190093.18905705298, + -190131.3738289751, + null, + -190093.18905705298, + -190066.73961822983, + null, + -190093.18905705298, + -190138.42407423924, + null, + -190093.18905705298, + -190062.07748710833, + null, + -190093.18905705298, + -190296.67992469142, + null, + -190093.18905705298, + -190159.64175459897, + null, + -190093.18905705298, + -190208.61438980376, + null, + -190093.18905705298, + -190176.9209211548, + null, + -190093.18905705298, + -190410.9097223642, + null, + -190093.18905705298, + -190296.7065188192, + null, + -190093.18905705298, + -190259.90894886025, + null, + -190093.18905705298, + -190305.68653512688, + null, + -190093.18905705298, + -190364.34558167926, + null, + -190093.18905705298, + -189550.71352449455, + null, + -190093.18905705298, + -190132.87489931766, + null, + -190093.18905705298, + -189895.3596929185, + null, + -190093.18905705298, + -190402.62004046032, + null, + -190093.18905705298, + -190229.12172851086, + null, + -190093.18905705298, + -190234.9684367843, + null, + -189299.65616548483, + -189519.04224358563, + null, + -189299.65616548483, + -189515.1110287197, + null, + -189299.65616548483, + -188987.2121565673, + null, + -189299.65616548483, + -189194.5932670327, + null, + -189095.541722688, + -189075.3623107205, + null, + -189095.541722688, + -189238.40345202928, + null, + -188344.0930836277, + -187884.7889990308, + null, + -188344.0930836277, + -187968.02915792566, + null, + -188344.0930836277, + -188431.71697463252, + null, + -188344.0930836277, + -188333.25419319226, + null, + -188344.0930836277, + -187963.41642815567, + null, + -188344.0930836277, + -188404.2364094815, + null, + -189195.42176761568, + -189258.14718442407, + null, + -189376.82012229282, + -189643.64597282023, + null, + -189376.82012229282, + -189545.96793264223, + null, + -188752.9247450727, + -189001.13958434798, + null, + -188752.9247450727, + -189021.22993820359, + null, + -188752.9247450727, + -189128.93571170678, + null, + -188752.9247450727, + -189086.08559419253, + null, + -188752.9247450727, + -189323.57130717806, + null, + -188752.9247450727, + -188986.28736767554, + null, + -189405.91331066622, + -189610.79451705402, + null, + -189405.91331066622, + -189403.96852214064, + null, + -189405.91331066622, + -189455.51690744262, + null, + -189405.91331066622, + -189578.18167762924, + null, + -189552.3086334869, + -189835.6886744365, + null, + -189552.3086334869, + -189963.1974196967, + null, + -189552.3086334869, + -189676.55452521317, + null, + -189552.3086334869, + -189877.9961805478, + null, + -189502.59770853355, + -189804.6846845527, + null, + -189502.59770853355, + -189685.5062735283, + null, + -189502.59770853355, + -189672.01066457023, + null, + -189170.9678004025, + -189535.55716931316, + null, + -189170.9678004025, + -188729.27038410617, + null, + -189264.0420911513, + -188987.2121565673, + null, + -189264.0420911513, + -189191.81129054422, + null, + -189264.0420911513, + -189401.0210279784, + null, + -189264.0420911513, + -189439.9733840662, + null, + -189503.85032749924, + -189784.85244116923, + null, + -189503.85032749924, + -189877.9961805478, + null, + -189503.85032749924, + -189790.59660567288, + null, + -189503.85032749924, + -189774.15782508685, + null, + -189503.85032749924, + -189185.0056894647, + null, + -188590.4523846817, + -188838.03543089947, + null, + -188590.4523846817, + -188914.3271305451, + null, + -189226.9114919114, + -189463.97410727615, + null, + -189164.54245151358, + -189099.5308042423, + null, + -189350.8806358681, + -189581.78969652124, + null, + -189350.8806358681, + -189559.59363443762, + null, + -187594.8777657927, + -188269.15616936548, + null, + -188269.15616936548, + -188413.34106319828, + null, + -188138.17806449422, + -188269.15616936548, + null, + -188038.4334288893, + -188269.15616936548, + null, + -188135.7951117508, + -188269.15616936548, + null, + -188129.3743830729, + -188269.15616936548, + null, + -188269.15616936548, + -188197.29564009517, + null, + -188269.15616936548, + -188265.23932553243, + null, + -188269.15616936548, + -188171.8323130677, + null, + -188269.15616936548, + -188123.85049620818, + null, + -188269.15616936548, + -187905.26212099823, + null, + -188968.20482936336, + -189020.36303100712, + null, + -188968.20482936336, + -188926.6658806248, + null, + -188815.02865766146, + -188902.6341614655, + null, + -188815.02865766146, + -188767.71516075628, + null, + -188630.5751925975, + -188815.02865766146, + null, + -188815.02865766146, + -188655.21405929135, + null, + -188815.02865766146, + -188609.42242236514, + null, + -188333.01761814565, + -188815.02865766146, + null, + -189043.76513096062, + -188655.21405929135, + null, + -189043.76513096062, + -189220.45711515305, + null, + -189043.76513096062, + -189295.1989165057, + null, + -189043.76513096062, + -189125.03476275213, + null, + -189256.66974275385, + -189357.94160129366, + null, + -189256.66974275385, + -189475.38802432298, + null, + -189395.66537570828, + -189538.76966009964, + null, + -189395.66537570828, + -189600.13047092306, + null, + -189395.66537570828, + -189492.71937791887, + null, + -189395.66537570828, + -189433.45797319178, + null, + -189395.66537570828, + -189390.5473860872, + null, + -189395.66537570828, + -189534.12800703215, + null, + -189395.66537570828, + -189466.43930603622, + null, + -189395.66537570828, + -189610.21419904652, + null, + -189395.66537570828, + -189569.1170149383, + null, + -189395.66537570828, + -189408.09333260934, + null, + -189395.66537570828, + -189635.40978858646, + null, + -189168.39200200443, + -188987.2121565673, + null, + -189168.39200200443, + -189090.7163018162, + null, + -189168.39200200443, + -189080.87286406787, + null, + -189180.9410564133, + -189244.28470441038, + null, + -189180.9410564133, + -189104.56426932674, + null, + -189180.9410564133, + -189359.61236164405, + null, + -189180.9410564133, + -189213.21322404998, + null, + -189180.9410564133, + -189225.18187778912, + null, + -189180.9410564133, + -189209.684180045, + null, + -189180.9410564133, + -189187.41321420565, + null, + -189180.9410564133, + -189058.75332777802, + null, + -189180.9410564133, + -189283.28316506173, + null, + -189180.9410564133, + -189237.05861530898, + null, + -189180.9410564133, + -189271.45601136168, + null, + -189180.9410564133, + -189171.22226688673, + null, + -189180.9410564133, + -189320.9536658957, + null, + -189180.9410564133, + -189116.84179436308, + null, + -189180.9410564133, + -189269.2321511475, + null, + -189180.9410564133, + -189132.12564859676, + null, + -189180.9410564133, + -189134.94804509557, + null, + -189180.9410564133, + -189131.89578832858, + null, + -189294.69067324145, + -188987.2121565673, + null, + -189294.69067324145, + -189503.0773230366, + null, + -189294.69067324145, + -189519.04224358563, + null, + -189527.4692278551, + -189763.56150893454, + null, + -189527.4692278551, + -189760.2159286004, + null, + -189527.4692278551, + -189719.0918707299, + null, + -189527.4692278551, + -189779.78137748837, + null, + -189527.4692278551, + -189672.01066457023, + null, + -188818.7674323714, + -188496.86543053738, + null, + -188818.7674323714, + -188939.57979180606, + null, + -189257.13683550936, + -189191.81129054422, + null, + -189257.13683550936, + -189254.42379562804, + null, + -189550.2287127826, + -188987.2121565673, + null, + -189550.2287127826, + -189519.04224358563, + null, + -189550.2287127826, + -189401.0210279784, + null, + -189550.2287127826, + -189786.4030590934, + null, + -189550.2287127826, + -189835.6886744365, + null, + -189550.2287127826, + -189726.6419321666, + null, + -189550.2287127826, + -189877.9961805478, + null, + -189550.2287127826, + -189906.72903141, + null, + -189550.2287127826, + -189699.8057206231, + null, + -189550.2287127826, + -189409.2260516907, + null, + -189550.2287127826, + -189503.0773230366, + null, + -189550.2287127826, + -189685.85676509794, + null, + -189290.7525839601, + -189440.8450981969, + null, + -189267.28726523466, + -189471.24343986003, + null, + -189267.28726523466, + -189315.72626956273, + null, + -189267.28726523466, + -189316.89167777615, + null, + -189267.28726523466, + -189281.89181624498, + null, + -189267.28726523466, + -189348.41372022274, + null, + -189267.28726523466, + -189400.15278844733, + null, + -187594.8777657927, + -188239.65910895087, + null, + -188109.5947916895, + -188239.65910895087, + null, + -188135.7951117508, + -188239.65910895087, + null, + -188126.67429510137, + -188239.65910895087, + null, + -188068.89540782082, + -188239.65910895087, + null, + -188138.17806449422, + -188239.65910895087, + null, + -188113.8147030654, + -188239.65910895087, + null, + -188119.49823623613, + -188239.65910895087, + null, + -188123.9780570342, + -188239.65910895087, + null, + -188121.51859750494, + -188239.65910895087, + null, + -188082.81454332572, + -188239.65910895087, + null, + -188023.85098966694, + -188239.65910895087, + null, + -188038.4334288893, + -188239.65910895087, + null, + -188097.6602407291, + -188239.65910895087, + null, + -188124.65543545736, + -188239.65910895087, + null, + -188079.8329504583, + -188239.65910895087, + null, + -188129.3743830729, + -188239.65910895087, + null, + -187509.8701143695, + -187654.02171573124, + null, + -187509.8701143695, + -186079.66390792772, + null, + -187500.4930551508, + -186079.66390792772, + null, + -189071.60158787234, + -188926.6658806248, + null, + -189071.60158787234, + -189181.722180315, + null, + -189093.08976506037, + -189241.2593596859, + null, + -189407.5843037053, + -189537.49897748485, + null, + -189407.5843037053, + -189577.87143369688, + null, + -189407.5843037053, + -189553.76416751105, + null, + -189407.5843037053, + -189511.77300350298, + null, + -189407.5843037053, + -189590.21640715873, + null, + -189481.84477904785, + -189590.12591003874, + null, + -189481.84477904785, + -189538.08933140666, + null, + -189481.84477904785, + -189576.29104717827, + null, + -189481.84477904785, + -189658.8326002738, + null, + -189481.84477904785, + -189777.5439815788, + null, + -189481.84477904785, + -189652.78629907887, + null, + -189481.84477904785, + -189625.6848290425, + null, + -189481.84477904785, + -189556.70430922814, + null, + -189481.84477904785, + -189492.97213968565, + null, + -189481.84477904785, + -189604.8022327273, + null, + -189481.84477904785, + -189590.56152422907, + null, + -189481.84477904785, + -189697.46412324015, + null, + -188480.6248001793, + -188785.51687088946, + null, + -188480.6248001793, + -189191.81129054422, + null, + -187643.83786716606, + -187995.86556328714, + null, + -187643.83786716606, + -187829.67176628584, + null, + -187643.83786716606, + -187719.83667300304, + null, + -187643.83786716606, + -187755.15904329115, + null, + -187643.83786716606, + -187969.5000521307, + null, + -187643.83786716606, + -187810.21895933492, + null, + -188410.19015950867, + -188502.68663988617, + null, + -188410.19015950867, + -188041.02872487713, + null, + -188410.19015950867, + -187936.86069417314, + null, + -188410.19015950867, + -188527.26711107683, + null, + -188410.19015950867, + -188439.5683820229, + null, + -188410.19015950867, + -188400.24033030673, + null, + -189322.13919379382, + -189535.55716931316, + null, + -189322.13919379382, + -189401.0210279784, + null, + -189075.98850339456, + -188926.6658806248, + null, + -189075.98850339456, + -189181.722180315, + null, + -188744.13909734573, + -188941.54365172883, + null, + -188744.13909734573, + -188448.06867016124, + null, + -188744.13909734573, + -188872.16294958733, + null, + -188744.13909734573, + -188467.57731800413, + null, + -189286.49138647597, + -189349.372745954, + null, + -189153.23345672205, + -189349.372745954, + null, + -187858.47857020143, + -186751.49815383757, + null, + -187858.47857020143, + -188042.59562284162, + null, + -189295.42475244775, + -189466.9672629071, + null, + -189295.42475244775, + -189018.82319591832, + null, + -189295.42475244775, + -189519.04224358563, + null, + -189309.40406356056, + -189499.77105993647, + null, + -189309.40406356056, + -189551.62846109323, + null, + -189446.06561523385, + -189711.09679261735, + null, + -189446.06561523385, + -189642.98880778134, + null, + -189446.06561523385, + -189682.60080346372, + null, + -189446.06561523385, + -189655.02049784194, + null, + -189270.95690073894, + -189484.32524229362, + null, + -189371.36833568558, + -189601.31793291916, + null, + -189371.36833568558, + -189606.60594438546, + null, + -189371.36833568558, + -189560.87324982125, + null, + -189371.36833568558, + -189572.4833480093, + null, + -189371.36833568558, + -189451.95526184243, + null, + -189128.02287472552, + -189155.25778973437, + null, + -189377.71392390993, + -189719.11336881894, + null, + -189377.71392390993, + -189535.40777391606, + null, + -188832.0659363745, + -187859.86995225446, + null, + -188832.0659363745, + -189738.0525135467, + null, + -188832.0659363745, + -188808.58568177576, + null, + -189372.78444553076, + -189653.17828992414, + null, + -189372.78444553076, + -189528.0714884979, + null, + -189372.78444553076, + -189600.03913814086, + null, + -189372.78444553076, + -189456.21906470374, + null, + -189372.78444553076, + -189529.67807614632, + null, + -189522.90111062877, + -189683.419552452, + null, + -189522.90111062877, + -189706.35646586987, + null, + -189522.90111062877, + -189566.73535772157, + null, + -189522.90111062877, + -189663.45926956282, + null, + -189522.90111062877, + -189644.09086083496, + null, + -189522.90111062877, + -189511.77300350298, + null, + -189522.90111062877, + -189753.4799871046, + null, + -189522.90111062877, + -189515.74762313042, + null, + -189522.90111062877, + -189575.1751271242, + null, + -189522.90111062877, + -189715.39152002477, + null, + -189522.90111062877, + -189553.76416751105, + null, + -189522.90111062877, + -189677.10772575348, + null, + -189522.90111062877, + -189763.0314858547, + null, + -189522.90111062877, + -189750.63256559754, + null, + -189522.90111062877, + -189623.64470779992, + null, + -189522.90111062877, + -189555.93848452147, + null, + -189522.90111062877, + -189590.21640715873, + null, + -189522.90111062877, + -189516.65865324857, + null, + -189215.01194453132, + -189332.90830424154, + null, + -189188.26284097042, + -189335.40028172662, + null, + -189188.26284097042, + -189390.99357965772, + null, + -190170.23694941032, + -190788.04912055115, + null, + -190170.23694941032, + -190432.64277937377, + null, + -190170.23694941032, + -190429.14197236107, + null, + -190170.23694941032, + -190324.69859443782, + null, + -190170.23694941032, + -190357.26809546677, + null, + -190170.23694941032, + -190463.3906674185, + null, + -190170.23694941032, + -190804.5319977288, + null, + -189532.13206147918, + -189835.6886744365, + null, + -189532.13206147918, + -189752.39082629923, + null, + -189532.13206147918, + -189877.9961805478, + null, + -189244.33702691298, + -189233.70459704348, + null, + -189244.33702691298, + -189381.97372271767, + null, + -189244.33702691298, + -189274.94123611646, + null, + -189244.33702691298, + -189344.52233503317, + null, + -189244.33702691298, + -189330.49109124398, + null, + -189244.33702691298, + -189292.62281836645, + null, + -189244.33702691298, + -189382.74018184142, + null, + -189244.33702691298, + -189283.81177846075, + null, + -189244.33702691298, + -189189.62408053043, + null, + -189342.90886317022, + -189302.31324662734, + null, + -189342.90886317022, + -189779.08713834564, + null, + -189601.42301397282, + -189784.85244116923, + null, + -189601.42301397282, + -189676.55452521317, + null, + -189601.42301397282, + -189881.05147717806, + null, + -189601.42301397282, + -189877.9961805478, + null, + -189601.42301397282, + -189835.6886744365, + null, + -188346.60400362083, + -188014.0323584892, + null, + -188346.60400362083, + -187910.11580313428, + null, + -188346.60400362083, + -188039.52789187146, + null, + -188346.60400362083, + -187968.02915792566, + null, + -188346.60400362083, + -188004.98964630163, + null, + -188346.60400362083, + -188418.2457536636, + null, + -188346.60400362083, + -188041.02872487713, + null, + -188346.60400362083, + -188334.16715397255, + null, + -188346.60400362083, + -188316.96436541888, + null, + -188346.60400362083, + -188393.31250959192, + null, + -189432.19725203505, + -189449.70576624642, + null, + -189432.19725203505, + -189643.99202381787, + null, + -189432.19725203505, + -189621.55397281286, + null, + -189432.19725203505, + -189584.60665973625, + null, + -189432.19725203505, + -189708.35344832033, + null, + -189383.60172976655, + -189545.99010444924, + null, + -189383.60172976655, + -189640.61439605875, + null, + -189383.60172976655, + -189647.60507520966, + null, + -189025.99171597915, + -189090.94929104674, + null, + -188897.62049298765, + -188835.53389301457, + null, + -188897.62049298765, + -188949.56218808194, + null, + -188897.62049298765, + -188833.15395284203, + null, + -188978.69804431516, + -188895.23369487113, + null, + -188978.69804431516, + -189020.36303100712, + null, + -188947.4139822555, + -188970.90563415922, + null, + -188947.4139822555, + -188936.51239900038, + null, + -188711.72538129365, + -188778.30225349736, + null, + -188711.72538129365, + -188877.02349292667, + null, + -188711.72538129365, + -188467.57731800413, + null, + -188711.72538129365, + -188448.06867016124, + null, + -189104.3400123642, + -189187.23989760628, + null, + -189104.3400123642, + -189228.16159599964, + null, + -189226.8573059561, + -189371.9970513625, + null, + -189226.8573059561, + -189354.5654109178, + null, + -188884.40182536017, + -189119.10153963434, + null, + -188884.40182536017, + -188553.4626397446, + null, + -188884.40182536017, + -189034.6677846897, + null, + -188884.40182536017, + -188582.1700977013, + null, + -189212.70822393885, + -189344.76616863086, + null, + -189212.70822393885, + -189387.8552421466, + null, + -189212.70822393885, + -189190.0319375097, + null, + -189212.70822393885, + -189272.67281759946, + null, + -189212.70822393885, + -189335.77220952246, + null, + -189212.70822393885, + -189246.25773864324, + null, + -189212.70822393885, + -189282.36250191767, + null, + -189665.23911238607, + -189851.525977397, + null, + -189665.23911238607, + -189898.50682877458, + null, + -189665.23911238607, + -189191.81129054422, + null, + -189665.23911238607, + -189902.20292579886, + null, + -189665.23911238607, + -190014.4432471374, + null, + -189665.23911238607, + -189698.05320883947, + null, + -189665.23911238607, + -189254.42379562804, + null, + -189665.23911238607, + -189947.02621110433, + null, + -189665.23911238607, + -189080.87286406787, + null, + -189665.23911238607, + -189984.75176702105, + null, + -189665.23911238607, + -189786.4030590934, + null, + -189665.23911238607, + -189998.6850751129, + null, + -189665.23911238607, + -189960.15611711724, + null, + -189665.23911238607, + -189925.12486746212, + null, + -189665.23911238607, + -189946.0012008412, + null, + -189665.23911238607, + -189942.73770603698, + null, + -189665.23911238607, + -189928.97374273633, + null, + -189665.23911238607, + -189535.55716931316, + null, + -189665.23911238607, + -189685.85676509794, + null, + -188941.9994408223, + -189282.7001458068, + null, + -188941.9994408223, + -188055.04528261707, + null, + -188941.9994408223, + -189401.0210279784, + null, + -188941.9994408223, + -189282.9730672559, + null, + -189434.8299251847, + -189590.10878598897, + null, + -189434.8299251847, + -189688.56378906994, + null, + -188586.70146604645, + -188039.52789187146, + null, + -188586.70146604645, + -188710.3709706175, + null, + -188586.70146604645, + -188629.75667986035, + null, + -188586.70146604645, + -188670.25366519665, + null, + -189292.63817566453, + -189536.5844743295, + null, + -187788.15822833957, + -188468.64488827685, + null, + -188208.85344747134, + -188468.64488827685, + null, + -188468.64488827685, + -188727.2902867739, + null, + -188468.64488827685, + -188687.9977280287, + null, + -188888.66487646574, + -188473.89517146355, + null, + -188888.66487646574, + -188955.84294808432, + null, + -188888.66487646574, + -188979.20255327725, + null, + -188888.66487646574, + -188974.94610195557, + null, + -189282.2219107152, + -189617.42703743948, + null, + -189282.2219107152, + -189562.51140533126, + null, + -189282.2219107152, + -189380.90819896417, + null, + -189684.28770806687, + -189619.37247978424, + null, + -189684.28770806687, + -189782.16983261594, + null, + -189684.28770806687, + -189821.50652600272, + null, + -189684.28770806687, + -189887.81381680508, + null, + -189684.28770806687, + -189897.2491422674, + null, + -189684.28770806687, + -190056.90557900956, + null, + -189684.28770806687, + -189836.83355904545, + null, + -189684.28770806687, + -189705.70407238055, + null, + -189684.28770806687, + -189822.16051409193, + null, + -189684.28770806687, + -189732.60148731066, + null, + -189684.28770806687, + -189827.95292964636, + null, + -189684.28770806687, + -189654.67760689667, + null, + -189684.28770806687, + -189747.67582984507, + null, + -189684.28770806687, + -189892.11024789204, + null, + -189684.28770806687, + -189779.45626955442, + null, + -189684.28770806687, + -189857.48519184976, + null, + -189684.28770806687, + -189864.0957269925, + null, + -189684.28770806687, + -189800.49653082312, + null, + -189684.28770806687, + -189683.09851788307, + null, + -189684.28770806687, + -189772.1017231966, + null, + -187792.9688123335, + -188417.6430208653, + null, + -187792.9688123335, + -188074.20351587667, + null, + -187792.9688123335, + -188048.01374776612, + null, + -187792.9688123335, + -188076.0410432971, + null, + -187594.8777657927, + -187942.22047264426, + null, + -188109.5947916895, + -187942.22047264426, + null, + -188135.7951117508, + -187942.22047264426, + null, + -188126.67429510137, + -187942.22047264426, + null, + -188068.89540782082, + -187942.22047264426, + null, + -188138.17806449422, + -187942.22047264426, + null, + -188113.8147030654, + -187942.22047264426, + null, + -188119.49823623613, + -187942.22047264426, + null, + -188123.9780570342, + -187942.22047264426, + null, + -188121.51859750494, + -187942.22047264426, + null, + -188082.81454332572, + -187942.22047264426, + null, + -188023.85098966694, + -187942.22047264426, + null, + -188038.4334288893, + -187942.22047264426, + null, + -188097.6602407291, + -187942.22047264426, + null, + -188124.65543545736, + -187942.22047264426, + null, + -188079.8329504583, + -187942.22047264426, + null, + -188129.3743830729, + -187942.22047264426, + null, + -188476.1018531056, + -189821.2312186076, + null, + -188476.1018531056, + -188924.01692765954, + null, + -188476.1018531056, + -188955.90998005978, + null, + -187953.14158568936, + -187938.76300956274, + null, + -187953.14158568936, + -187921.70754893584, + null, + -187953.14158568936, + -187944.64016261857, + null, + -187953.14158568936, + -187738.23146269514, + null, + -187953.14158568936, + -188069.6471734618, + null, + -187953.14158568936, + -188033.65890864775, + null, + -187953.14158568936, + -187984.49376657544, + null, + -187953.14158568936, + -188066.0584282789, + null, + -188243.55188231324, + -187873.16679846472, + null, + -188243.55188231324, + -187761.06000681227, + null, + -188243.55188231324, + -187966.5095326889, + null, + -188243.55188231324, + -188771.22071372272, + null, + -187393.45287008572, + -187507.9968975285, + null, + -187444.98398375107, + -187507.9968975285, + null, + -187212.75750088846, + -187507.9968975285, + null, + -187430.50547179487, + -187507.9968975285, + null, + -187206.375494998, + -187507.9968975285, + null, + -187142.3027271855, + -187507.9968975285, + null, + -188728.81774535606, + -189185.0056894647, + null, + -188728.81774535606, + -188942.09885480377, + null, + -188728.81774535606, + -188924.61120937933, + null, + -188728.81774535606, + -188865.0310038266, + null, + -188290.08218015765, + -188325.55852082116, + null, + -187899.4158525461, + -188221.7491593263, + null, + -187856.58036489805, + -188015.43710141958, + null, + -187856.58036489805, + -187905.9131194616, + null, + -187856.58036489805, + -188655.21405929135, + null, + -187856.58036489805, + -188609.42242236514, + null, + -188204.3724056574, + -188589.02383966983, + null, + -188204.3724056574, + -188755.29130206196, + null, + -188204.3724056574, + -188684.650541092, + null, + -188169.14538504407, + -188589.02383966983, + null, + -188169.14538504407, + -188684.650541092, + null, + -188169.14538504407, + -188562.52238197235, + null, + -188169.14538504407, + -188583.9863067021, + null, + -188169.14538504407, + -188292.803831213, + null, + -188169.14538504407, + -188630.3797399783, + null, + -187899.237151973, + -187973.74266490637, + null, + -187899.237151973, + -187980.7875448006, + null, + -187899.237151973, + -188006.8523079164, + null, + -187899.237151973, + -188729.27038410617, + null, + -188069.92329870115, + -188196.46996764973, + null, + -188069.92329870115, + -188266.2197375126, + null, + -188430.55900018988, + -188656.73899805153, + null, + -188430.55900018988, + -188701.21377091933, + null, + -188430.55900018988, + -188539.53210781686, + null, + -188430.55900018988, + -188624.18261098056, + null, + -188430.55900018988, + -188587.54773051367, + null, + -188430.55900018988, + -188671.20919887463, + null, + -188430.55900018988, + -188643.8479868126, + null, + -188430.55900018988, + -188585.12861631755, + null, + -188024.30685571092, + -188119.47972230078, + null, + -188024.30685571092, + -188392.790839642, + null, + -188024.30685571092, + -188206.78624151362, + null, + -188424.35361027447, + -188825.28809191516, + null, + -188424.35361027447, + -188789.93647026946, + null, + -188424.35361027447, + -188595.929621033, + null, + -188424.35361027447, + -188904.70828505783, + null, + -188424.35361027447, + -188656.04075638522, + null, + -187977.63799550864, + -188288.63591142182, + null, + -187977.63799550864, + -188201.85617050852, + null, + -188680.41340104947, + -188902.6341614655, + null, + -188680.41340104947, + -189057.81546602, + null, + -188680.41340104947, + -188665.65407218394, + null, + -188680.41340104947, + -189055.29940898585, + null, + -188680.41340104947, + -188655.21405929135, + null, + -188680.41340104947, + -188814.71782739085, + null, + -188680.41340104947, + -188609.42242236514, + null, + -188680.41340104947, + -189118.706210659, + null, + -188680.41340104947, + -188814.71782739085, + null, + -188480.5260935519, + -188669.6333716104, + null, + -188480.5260935519, + -188732.5163680446, + null, + -188480.5260935519, + -188637.09764701437, + null, + -188480.5260935519, + -188758.95185635728, + null, + -188480.5260935519, + -188640.11104820046, + null, + -184929.26330034356, + -184975.02995836173, + null, + -184929.26330034356, + -182297.66613175042, + null, + -191630.47589507297, + -191950.76776520707, + null, + -191630.47589507297, + -192653.7287946721, + null, + -191630.47589507297, + -191966.13514771112, + null, + -191630.47589507297, + -192658.9858084674, + null, + -191630.47589507297, + -192643.9378977829, + null, + -191630.47589507297, + -192624.1983817503, + null, + -191630.47589507297, + -191961.7781913269, + null, + -189739.38463051288, + -189827.35018753487, + null, + -189739.38463051288, + -189853.90365825905, + null, + -189739.38463051288, + -189755.076146139, + null, + -189873.68737482626, + -190101.45817912888, + null, + -189873.68737482626, + -189897.10993130127, + null, + -189708.2272477365, + -189979.1871069332, + null, + -189708.2272477365, + -189945.22708950468, + null, + -187393.45287008572, + -187892.65214688177, + null, + -187444.98398375107, + -187892.65214688177, + null, + -187212.75750088846, + -187892.65214688177, + null, + -187430.50547179487, + -187892.65214688177, + null, + -187206.375494998, + -187892.65214688177, + null, + -187142.3027271855, + -187892.65214688177, + null, + -187863.91165705194, + -187360.3181764521, + null, + -187863.91165705194, + -187377.81473387225, + null, + -187863.91165705194, + -187085.60542441468, + null, + -187863.91165705194, + -187126.73472208405, + null, + -187863.91165705194, + -187076.44109914085, + null, + -189505.58704021748, + -189543.034315843, + null, + -189505.58704021748, + -189163.53067750562, + null, + -189505.58704021748, + -189694.32037712878, + null, + -189880.0757312348, + -190001.34422844957, + null, + -189880.0757312348, + -190121.17477858203, + null, + -189842.1324431489, + -190109.7346041272, + null, + -189842.1324431489, + -190215.29371707712, + null, + -189842.1324431489, + -189586.8077498066, + null, + -188854.43713783327, + -188557.4596234686, + null, + -188854.43713783327, + -188502.3898432576, + null, + -188854.43713783327, + -188505.68688054534, + null, + -188854.43713783327, + -188469.82315365504, + null, + -188854.43713783327, + -188505.51258337646, + null, + -188299.83165938678, + -187548.06751765357, + null, + -188299.83165938678, + -187526.72134379356, + null, + -189105.21478588888, + -189502.79748963288, + null, + -189296.96733505363, + -189162.7775371684, + null, + -189498.98953316532, + -189864.69924589156, + null, + -188836.9731938192, + -189091.23073030688, + null, + -188836.9731938192, + -189098.729985849, + null, + -188836.9731938192, + -188951.4483378136, + null, + -188836.9731938192, + -189105.83893511366, + null, + -188836.9731938192, + -188778.71886401522, + null, + -188836.9731938192, + -188921.8575232467, + null, + -188836.9731938192, + -189156.49544347025, + null, + -188836.9731938192, + -189085.15446033492, + null, + -188836.9731938192, + -187863.92820822977, + null, + -188836.9731938192, + -188710.84136932285, + null, + -188836.9731938192, + -188817.58476702461, + null, + -188836.9731938192, + -188975.3355759559, + null, + -188836.9731938192, + -188927.43096510798, + null, + -188836.9731938192, + -189173.6846848957, + null, + -188836.9731938192, + -189000.61821900296, + null, + -188836.9731938192, + -189002.45745511763, + null, + -188836.9731938192, + -188898.19947380063, + null, + -188836.9731938192, + -189075.47551847165, + null, + -188836.9731938192, + -188971.97905411114, + null, + -188836.9731938192, + -187894.56703794212, + null, + -188836.9731938192, + -188919.8056771276, + null, + -188836.9731938192, + -189080.7550455894, + null, + -188836.9731938192, + -188787.2704993271, + null, + -188836.9731938192, + -187852.36526218464, + null, + -188836.9731938192, + -188843.77638094558, + null, + -188836.9731938192, + -189035.6991536637, + null, + -188836.9731938192, + -188801.21894511217, + null, + -188836.9731938192, + -189280.28143715774, + null, + -188836.9731938192, + -188855.60943415618, + null, + -188836.9731938192, + -189146.70967002175, + null, + -188836.9731938192, + -189026.6393112517, + null, + -188836.9731938192, + -189031.2455634038, + null, + -188836.9731938192, + -188875.43440098123, + null, + -188836.9731938192, + -188897.01172743316, + null, + -188836.9731938192, + -188866.27150595438, + null, + -188836.9731938192, + -189159.98308012512, + null, + -188836.9731938192, + -188983.8191116055, + null, + -188836.9731938192, + -188814.16702615508, + null, + -188836.9731938192, + -189048.87915536104, + null, + -188836.9731938192, + -189162.7775371684, + null, + -188836.9731938192, + -188871.3639754638, + null, + -188836.9731938192, + -188848.03815522493, + null, + -188836.9731938192, + -189094.54492211857, + null, + -188836.9731938192, + -189061.87467044228, + null, + -188836.9731938192, + -188505.22634815276, + null, + -188836.9731938192, + -189076.32527469256, + null, + -188836.9731938192, + -189151.15283918366, + null, + -188836.9731938192, + -189058.45726150705, + null, + -188836.9731938192, + -188817.90158256877, + null, + -188836.9731938192, + -188953.58974896904, + null, + -188836.9731938192, + -188943.9313415137, + null, + -188836.9731938192, + -188879.4638523478, + null, + -188836.9731938192, + -189024.50651389456, + null, + -188836.9731938192, + -189123.97882152276, + null, + -188836.9731938192, + -188883.4842960677, + null, + -188836.9731938192, + -189120.6792836771, + null, + -188836.9731938192, + -189113.53599738402, + null, + -188836.9731938192, + -188964.62717743742, + null, + -188836.9731938192, + -188560.05311062792, + null, + -189477.9687240938, + -189624.33377322988, + null, + -189477.9687240938, + -189598.00166810045, + null, + -189477.9687240938, + -189567.498505866, + null, + -189686.82438527062, + -189951.57727285993, + null, + -189686.82438527062, + -190038.81848945052, + null, + -189686.82438527062, + -190032.9438813023, + null, + -189266.72814157297, + -189607.8188208205, + null, + -189703.45302802385, + -189902.3304396636, + null, + -189703.45302802385, + -190013.260857581, + null, + -189703.45302802385, + -189953.2875295655, + null, + -189135.00336817247, + -189254.12345730932, + null, + -189135.00336817247, + -189010.69702649902, + null, + -189278.65997138573, + -189550.82926949437, + null, + -189241.36313499292, + -189418.8305916361, + null, + -189241.36313499292, + -189418.45132045657, + null, + -189561.96308897558, + -189938.98847371674, + null, + -189390.3446237331, + -189481.26125690035, + null, + -191279.9278832995, + -191623.8931317123, + null, + -193001.23653771952, + -193456.92593939666, + null, + -193001.23653771952, + -192653.7287946721, + null, + -193001.23653771952, + -193559.34465828937, + null, + -193001.23653771952, + -193537.81960822793, + null, + -193001.23653771952, + -193263.28722742767, + null, + -193001.23653771952, + -193404.9270928785, + null, + -193001.23653771952, + -193547.75923148528, + null, + -193001.23653771952, + -193461.77865299906, + null, + -193001.23653771952, + -193341.6948875634, + null, + -193001.23653771952, + -193310.37387013956, + null, + -193001.23653771952, + -191966.13514771112, + null, + -193001.23653771952, + -191950.76776520707, + null, + -193001.23653771952, + -193575.17645088313, + null, + -193001.23653771952, + -193478.02172936473, + null, + -193001.23653771952, + -193568.00528276377, + null, + -193001.23653771952, + -193543.01968804744, + null, + -193001.23653771952, + -193516.14453401812, + null, + -193001.23653771952, + -192658.9858084674, + null, + -193001.23653771952, + -193387.98513967678, + null, + -193001.23653771952, + -193607.67536828865, + null, + -193001.23653771952, + -191961.7781913269, + null, + -193001.23653771952, + -192643.9378977829, + null, + -193001.23653771952, + -192624.1983817503, + null, + -193001.23653771952, + -193479.753757584, + null, + -193001.23653771952, + -193355.90193244684, + null, + -193001.23653771952, + -193406.9449645201, + null, + -193001.23653771952, + -193564.96957959293, + null, + -193001.23653771952, + -193332.8917695752, + null, + -193001.23653771952, + -193469.2054070533, + null, + -193001.23653771952, + -193221.83049125588, + null, + -193001.23653771952, + -193512.81482243334, + null, + -193001.23653771952, + -193452.62691900134, + null, + -187859.86995225446, + -188742.25835635187, + null, + -189738.0525135467, + -190169.57831584476, + null, + -189738.0525135467, + -190095.38374811987, + null, + -189738.0525135467, + -190124.9999688799, + null, + -189738.0525135467, + -190066.73961822983, + null, + -189738.0525135467, + -190132.87489931766, + null, + -189738.0525135467, + -190159.64175459897, + null, + -189738.0525135467, + -190176.9209211548, + null, + -189738.0525135467, + -189868.5219289275, + null, + -189738.0525135467, + -190062.07748710833, + null, + -189738.0525135467, + -190131.3738289751, + null, + -189738.0525135467, + -189533.9883014909, + null, + -189738.0525135467, + -189969.1792616839, + null, + -189738.0525135467, + -190045.9373963785, + null, + -189517.96720841108, + -189670.68791407108, + null, + -189517.96720841108, + -189323.57130717806, + null, + -189517.96720841108, + -189734.63562969028, + null, + -190973.23484101656, + -191377.50485578203, + null, + -190973.23484101656, + -191222.35911275444, + null, + -190973.23484101656, + -191243.0515390836, + null, + -190973.23484101656, + -191271.9049596895, + null, + -190973.23484101656, + -191379.93800357336, + null, + -190973.23484101656, + -191175.45420477103, + null, + -190973.23484101656, + -191656.98941584208, + null, + -190973.23484101656, + -190788.04912055115, + null, + -190973.23484101656, + -191319.54700031714, + null, + -190973.23484101656, + -190804.5319977288, + null, + -190973.23484101656, + -191297.4291378877, + null, + -189777.8358685715, + -190086.10968265266, + null, + -189777.8358685715, + -190096.79898858466, + null, + -189777.8358685715, + -189133.8957997381, + null, + -188921.5431373296, + -188557.4596234686, + null, + -188921.5431373296, + -188769.7524320571, + null, + -188921.5431373296, + -188505.68688054534, + null, + -188921.5431373296, + -188482.3157020377, + null, + -188921.5431373296, + -188505.51258337646, + null, + -188947.86956916028, + -189373.57180557027, + null, + -188947.86956916028, + -188557.4596234686, + null, + -188947.86956916028, + -188502.3898432576, + null, + -188947.86956916028, + -188505.68688054534, + null, + -188947.86956916028, + -188469.82315365504, + null, + -188947.86956916028, + -188505.51258337646, + null, + -189742.155668336, + -189782.7809279428, + null, + -189692.5200326185, + -189502.79748963288, + null, + -190156.38084035812, + -190474.0354770335, + null, + -190156.38084035812, + -190371.1359257553, + null, + -190156.38084035812, + -190321.52227194887, + null, + -190156.38084035812, + -190344.32547762684, + null, + -190156.38084035812, + -190497.0175391162, + null, + -190156.38084035812, + -190465.26309402508, + null, + -187405.71770728158, + -187529.8569288587, + null, + -187405.71770728158, + -187417.65084470675, + null, + -187389.66797592156, + -187595.0345184197, + null, + -188640.45100665794, + -188793.50051869432, + null, + -187622.41354491585, + -187896.9081911965, + null, + -187622.41354491585, + -187950.47693488878, + null, + -187622.41354491585, + -187852.12457066582, + null, + -188826.8178670996, + -189030.72274047518, + null, + -189837.0067281555, + -190122.4501330495, + null, + -189774.66595851514, + -189948.1486313253, + null, + -189272.23379027276, + -189254.12345730932, + null, + -189272.23379027276, + -189010.69702649902, + null, + -190029.28538193705, + -190453.08226687548, + null, + -190029.28538193705, + -190335.2883217472, + null, + -189844.7798702007, + -190188.87329426254, + null, + -189844.7798702007, + -190066.86374923558, + null, + -189790.5959091938, + -189690.21858696538, + null, + -189790.5959091938, + -189771.49663237328, + null, + -189790.5959091938, + -190086.7786046643, + null, + -189790.5959091938, + -190011.98226594419, + null, + -189790.5959091938, + -189857.30593465958, + null, + -189991.2311607774, + -190479.28831624571, + null, + -189682.05578414822, + -189915.0190236122, + null, + -189682.05578414822, + -189092.11310182954, + null, + -189682.05578414822, + -190009.95041416763, + null, + -189987.64885100897, + -190288.40175925204, + null, + -189987.64885100897, + -190208.68058270408, + null, + -189987.64885100897, + -190223.2598854498, + null, + -189360.52446627786, + -189596.71553589354, + null, + -189360.52446627786, + -189532.60174471134, + null, + -188528.04369924997, + -188278.1072223423, + null, + -188875.90551008, + -188990.4010166953, + null, + -188875.90551008, + -188932.35300179519, + null, + -188875.90551008, + -188987.5553701727, + null, + -188875.90551008, + -188980.99251783875, + null, + -187857.75124697632, + -188016.10442522762, + null, + -187760.40303329699, + -188016.10442522762, + null, + -187858.44732430877, + -188016.10442522762, + null, + -187957.10022871735, + -188016.10442522762, + null, + -188167.02460559944, + -188399.1066065768, + null, + -188123.19483452023, + -187894.56703794212, + null, + -188123.19483452023, + -188547.48254971273, + null, + -188123.19483452023, + -188505.22634815276, + null, + -188123.19483452023, + -188445.99561197893, + null, + -188123.19483452023, + -188560.05311062792, + null, + -189105.2816803546, + -189598.00166810045, + null, + -189105.2816803546, + -189624.33377322988, + null, + -189105.2816803546, + -189567.498505866, + null, + -189105.2816803546, + -189408.1187962789, + null, + -188987.74156072343, + -189194.96207121338, + null, + -189303.08944739285, + -189618.59279905658, + null, + -189303.08944739285, + -189596.4692696455, + null, + -189317.7229192206, + -189591.8731843488, + null, + -189250.6861714318, + -189563.21199104455, + null, + -188349.47236547497, + -189247.56010120243, + null, + -188349.47236547497, + -189228.67042631286, + null, + -188349.47236547497, + -188686.11696233056, + null, + -188349.47236547497, + -188643.2572033615, + null, + -189577.61389462257, + -189785.7936062494, + null, + -189577.61389462257, + -189832.1833617229, + null, + -188477.95331527485, + -188724.28354291673, + null, + -189378.03325846698, + -189000.49204416302, + null, + -189378.03325846698, + -189681.60915599283, + null, + -189231.051408616, + -189405.59755569755, + null, + -189290.40865383588, + -189460.84585110802, + null, + -189396.51935593525, + -189640.6416367897, + null, + -189490.2551625836, + -189759.73338347275, + null, + -189490.2551625836, + -189666.2462641403, + null, + -189589.28553677927, + -189877.80432977845, + null, + -189589.28553677927, + -189254.12345730932, + null, + -189589.28553677927, + -189698.4654076233, + null, + -189589.28553677927, + -189872.54233829424, + null, + -189589.28553677927, + -189934.48555254235, + null, + -189589.28553677927, + -189825.34967911273, + null, + -189048.4956879801, + -188742.25835635187, + null, + -189131.92422966988, + -189133.8957997381, + null, + -189131.92422966988, + -189092.11310182954, + null, + -187594.8777657927, + -188104.6983502157, + null, + -188109.5947916895, + -188104.6983502157, + null, + -188135.7951117508, + -188104.6983502157, + null, + -188126.67429510137, + -188104.6983502157, + null, + -188068.89540782082, + -188104.6983502157, + null, + -188138.17806449422, + -188104.6983502157, + null, + -188113.8147030654, + -188104.6983502157, + null, + -188119.49823623613, + -188104.6983502157, + null, + -188123.9780570342, + -188104.6983502157, + null, + -188121.51859750494, + -188104.6983502157, + null, + -188082.81454332572, + -188104.6983502157, + null, + -188023.85098966694, + -188104.6983502157, + null, + -188038.4334288893, + -188104.6983502157, + null, + -188097.6602407291, + -188104.6983502157, + null, + -188124.65543545736, + -188104.6983502157, + null, + -188079.8329504583, + -188104.6983502157, + null, + -188129.3743830729, + -188104.6983502157, + null, + -187704.763876957, + -188339.00311775182, + null, + -189015.4951605007, + -189089.71924361648, + null, + -189015.4951605007, + -189140.07123628308, + null, + -189015.4951605007, + -189246.3295914749, + null, + -189015.4951605007, + -189261.93875597016, + null, + -189015.4951605007, + -189164.02682145475, + null, + -189015.4951605007, + -189243.80772386643, + null, + -189015.4951605007, + -189146.8788231098, + null, + -189015.4951605007, + -189161.1410087493, + null, + -189015.4951605007, + -189249.8908024901, + null, + -189015.4951605007, + -189187.70565578455, + null, + -188563.3727238801, + -188240.28382077243, + null, + -188868.86823729656, + -189121.58192836438, + null, + -188868.86823729656, + -189178.79518399367, + null, + -188868.86823729656, + -189163.53067750562, + null, + -188185.3569399699, + -188415.4342752534, + null, + -188185.3569399699, + -187704.1856572577, + null, + -187448.3572804437, + -188278.1072223423, + null, + -187448.3572804437, + -187679.05010809522, + null, + -187594.8777657927, + -188272.94824742872, + null, + -188109.5947916895, + -188272.94824742872, + null, + -188135.7951117508, + -188272.94824742872, + null, + -188113.8147030654, + -188272.94824742872, + null, + -188023.85098966694, + -188272.94824742872, + null, + -188124.65543545736, + -188272.94824742872, + null, + -188126.67429510137, + -188272.94824742872, + null, + -188068.89540782082, + -188272.94824742872, + null, + -188138.17806449422, + -188272.94824742872, + null, + -188119.49823623613, + -188272.94824742872, + null, + -188123.9780570342, + -188272.94824742872, + null, + -188121.51859750494, + -188272.94824742872, + null, + -188082.81454332572, + -188272.94824742872, + null, + -188038.4334288893, + -188272.94824742872, + null, + -188097.6602407291, + -188272.94824742872, + null, + -188079.8329504583, + -188272.94824742872, + null, + -188129.3743830729, + -188272.94824742872, + null, + -189247.54195982916, + -189393.24956273774, + null, + -189033.53333615928, + -188990.4010166953, + null, + -189033.53333615928, + -188987.5553701727, + null, + -189033.53333615928, + -188932.35300179519, + null, + -189033.53333615928, + -188883.37598759666, + null, + -189033.53333615928, + -188958.043341557, + null, + -189033.53333615928, + -189109.00672269435, + null, + -189033.53333615928, + -188980.99251783875, + null, + -189033.53333615928, + -189073.311932781, + null, + -189033.53333615928, + -188907.77366622048, + null, + -189033.53333615928, + -189162.88629233922, + null, + -189033.53333615928, + -189191.27948312214, + null, + -189033.53333615928, + -189044.13234691945, + null, + -189033.53333615928, + -188955.4569509421, + null, + -189033.53333615928, + -188930.1166276852, + null, + -189033.53333615928, + -188981.61018574386, + null, + -189033.53333615928, + -189060.53964369342, + null, + -189033.53333615928, + -189006.8313798339, + null, + -189033.53333615928, + -189073.19084259024, + null, + -189033.53333615928, + -189161.52886389126, + null, + -189071.23203874825, + -188990.4010166953, + null, + -189071.23203874825, + -188987.5553701727, + null, + -189071.23203874825, + -188958.043341557, + null, + -189071.23203874825, + -189191.27948312214, + null, + -188876.74592565937, + -188583.9863067021, + null, + -188876.74592565937, + -188562.52238197235, + null, + -188876.74592565937, + -189110.20569245965, + null, + -188876.74592565937, + -188755.29130206196, + null, + -188876.74592565937, + -188684.650541092, + null, + -189238.02623730994, + -189375.341623621, + null, + -189115.05770210535, + -189208.89107501428, + null, + -189115.05770210535, + -189008.29312550844, + null, + -189231.03855465443, + -189406.6961868914, + null, + -189231.03855465443, + -189247.05285320058, + null, + -189259.5246750294, + -189358.78761245878, + null, + -189305.01453652733, + -189380.80686938798, + null, + -189185.22678595383, + -189254.12345730932, + null, + -189185.22678595383, + -188977.17868152083, + null, + -189778.15834495376, + -189010.69702649902, + null, + -189778.15834495376, + -189877.80432977845, + null, + -189778.15834495376, + -189254.12345730932, + null, + -189778.15834495376, + -190171.06683845687, + null, + -189778.15834495376, + -190002.99170424696, + null, + -189778.15834495376, + -189982.1293526866, + null, + -189778.15834495376, + -189911.10633381322, + null, + -189778.15834495376, + -189995.0356338526, + null, + -189778.15834495376, + -189997.50324860663, + null, + -189778.15834495376, + -190023.1519635282, + null, + -189778.15834495376, + -190061.7421727275, + null, + -189778.15834495376, + -190142.2612089221, + null, + -189778.15834495376, + -189872.54233829424, + null, + -189778.15834495376, + -189953.18482676084, + null, + -189778.15834495376, + -189959.6292369299, + null, + -189778.15834495376, + -190076.74672227495, + null, + -189778.15834495376, + -190047.69919487005, + null, + -189778.15834495376, + -189592.09389439234, + null, + -189778.15834495376, + -190042.4332771142, + null, + -189778.15834495376, + -190072.09887471944, + null, + -189778.15834495376, + -190023.65707861382, + null, + -189778.15834495376, + -190069.90387555773, + null, + -189778.15834495376, + -189999.30668370787, + null, + -189778.15834495376, + -189943.26942762276, + null, + -189778.15834495376, + -190047.4304017866, + null, + -189778.15834495376, + -190013.54687287952, + null, + -189778.15834495376, + -189954.94326666972, + null, + -189778.15834495376, + -189989.53954194966, + null, + -189778.15834495376, + -189247.56010120243, + null, + -189778.15834495376, + -189994.1273630411, + null, + -189778.15834495376, + -189228.67042631286, + null, + -189778.15834495376, + -189998.3802860646, + null, + -189298.76112672515, + -189536.80725185145, + null, + -188126.8200295349, + -188416.74513307065, + null, + -188126.8200295349, + -188553.4626397446, + null, + -188126.8200295349, + -188582.1700977013, + null, + -188126.8200295349, + -188421.93878236535, + null, + -188126.8200295349, + -188226.34945822318, + null, + -188760.00770833693, + -188742.25835635187, + null, + -188933.22539579918, + -189141.3441900047, + null, + -188674.7471497121, + -188801.4006698127, + null, + -188336.20643323814, + -189133.8957997381, + null, + -188336.20643323814, + -189092.11310182954, + null, + -187594.8777657927, + -188180.73220770183, + null, + -188109.5947916895, + -188180.73220770183, + null, + -188135.7951117508, + -188180.73220770183, + null, + -188126.67429510137, + -188180.73220770183, + null, + -188068.89540782082, + -188180.73220770183, + null, + -188138.17806449422, + -188180.73220770183, + null, + -188113.8147030654, + -188180.73220770183, + null, + -188119.49823623613, + -188180.73220770183, + null, + -188123.9780570342, + -188180.73220770183, + null, + -188121.51859750494, + -188180.73220770183, + null, + -188082.81454332572, + -188180.73220770183, + null, + -188023.85098966694, + -188180.73220770183, + null, + -188038.4334288893, + -188180.73220770183, + null, + -188097.6602407291, + -188180.73220770183, + null, + -188124.65543545736, + -188180.73220770183, + null, + -188180.73220770183, + -188258.42142430766, + null, + -188129.3743830729, + -188180.73220770183, + null, + -188519.90581438286, + -188278.1072223423, + null, + -187932.28950243027, + -187828.0449700697, + null, + -187932.28950243027, + -187557.52973979575, + null, + -188952.85593883562, + -189203.59341116896, + null, + -189097.48187960163, + -189222.42477997518, + null, + -188308.2995444295, + -188371.93455635058, + null, + -188124.98331170535, + -187896.9081911965, + null, + -188124.98331170535, + -187950.47693488878, + null, + -188124.98331170535, + -187852.12457066582, + null, + -188347.58050575748, + -188236.67057536307, + null, + -188876.59928470026, + -189053.21654074607, + null, + -188876.59928470026, + -189163.53067750562, + null, + -188876.59928470026, + -188910.12449409856, + null, + -189345.9124851909, + -189543.034315843, + null, + -189345.9124851909, + -189616.0770537085, + null, + -189345.9124851909, + -189121.58192836438, + null, + -187594.8777657927, + -188180.15644195993, + null, + -188109.5947916895, + -188180.15644195993, + null, + -188135.7951117508, + -188180.15644195993, + null, + -188113.8147030654, + -188180.15644195993, + null, + -188023.85098966694, + -188180.15644195993, + null, + -188124.65543545736, + -188180.15644195993, + null, + -188126.67429510137, + -188180.15644195993, + null, + -188068.89540782082, + -188180.15644195993, + null, + -188138.17806449422, + -188180.15644195993, + null, + -188119.49823623613, + -188180.15644195993, + null, + -188123.9780570342, + -188180.15644195993, + null, + -188121.51859750494, + -188180.15644195993, + null, + -188082.81454332572, + -188180.15644195993, + null, + -188038.4334288893, + -188180.15644195993, + null, + -188097.6602407291, + -188180.15644195993, + null, + -188079.8329504583, + -188180.15644195993, + null, + -188129.3743830729, + -188180.15644195993, + null, + -189045.54815632163, + -189187.79390543632, + null, + -189045.54815632163, + -189076.53981134578, + null, + -189045.54815632163, + -189355.03813613064, + null, + -189045.54815632163, + -189235.60204803146, + null, + -188937.80405805522, + -189060.11793078348, + null, + -188937.80405805522, + -189047.46005050762, + null, + -188937.80405805522, + -189110.33805387263, + null, + -188937.80405805522, + -189086.58762901634, + null, + -188767.47226676266, + -188814.90499657913, + null, + -188767.47226676266, + -188831.73310049425, + null, + -187601.13526565803, + -187732.9738354657, + null, + -187830.46815133246, + -187992.73283452474, + null, + -187830.46815133246, + -187944.50330577596, + null, + -187830.46815133246, + -188018.83061694138, + null, + -187830.46815133246, + -187930.0200671109, + null, + -186931.52009524958, + -186619.29365579388, + null, + -186931.52009524958, + -186683.35602978745, + null, + -186931.52009524958, + -186684.73039451445, + null, + -187722.01964145992, + -187711.07272794982, + null, + -187722.01964145992, + -187669.59759489246, + null, + -188625.28745242656, + -188977.17868152083, + null, + -188625.28745242656, + -189254.12345730932, + null, + -187594.8777657927, + -188156.60345261396, + null, + -188109.5947916895, + -188156.60345261396, + null, + -188135.7951117508, + -188156.60345261396, + null, + -188126.67429510137, + -188156.60345261396, + null, + -188068.89540782082, + -188156.60345261396, + null, + -188138.17806449422, + -188156.60345261396, + null, + -188113.8147030654, + -188156.60345261396, + null, + -188119.49823623613, + -188156.60345261396, + null, + -188123.9780570342, + -188156.60345261396, + null, + -188121.51859750494, + -188156.60345261396, + null, + -188082.81454332572, + -188156.60345261396, + null, + -188023.85098966694, + -188156.60345261396, + null, + -188038.4334288893, + -188156.60345261396, + null, + -188097.6602407291, + -188156.60345261396, + null, + -188124.65543545736, + -188156.60345261396, + null, + -188079.8329504583, + -188156.60345261396, + null, + -188129.3743830729, + -188156.60345261396, + null, + -189331.9915999827, + -189403.96852214064, + null, + -189331.9915999827, + -189468.85739625, + null, + -189331.9915999827, + -189487.9206905245, + null, + -189331.9915999827, + -189474.07753045388, + null, + -189331.9915999827, + -189538.19493991407, + null, + -189331.9915999827, + -189455.51690744262, + null, + -189094.7454633695, + -189174.537700806, + null, + -189479.30333773256, + -189596.71553589354, + null, + -187923.30486023927, + -187176.16775513362, + null, + -187923.30486023927, + -187889.88915153715, + null, + -188635.053643839, + -187863.92820822977, + null, + -188635.053643839, + -188951.4483378136, + null, + -188635.053643839, + -188778.71886401522, + null, + -188635.053643839, + -188710.84136932285, + null, + -188635.053643839, + -188817.58476702461, + null, + -188635.053643839, + -188975.3355759559, + null, + -188635.053643839, + -188927.43096510798, + null, + -188635.053643839, + -189000.61821900296, + null, + -188635.053643839, + -189002.45745511763, + null, + -188635.053643839, + -188898.19947380063, + null, + -188635.053643839, + -187894.56703794212, + null, + -188635.053643839, + -188787.2704993271, + null, + -188635.053643839, + -187852.36526218464, + null, + -188635.053643839, + -188877.767245647, + null, + -188635.053643839, + -188801.21894511217, + null, + -188635.053643839, + -188855.60943415618, + null, + -188635.053643839, + -188843.77638094558, + null, + -188635.053643839, + -188897.01172743316, + null, + -188635.053643839, + -188866.27150595438, + null, + -188635.053643839, + -188814.16702615508, + null, + -188635.053643839, + -188871.3639754638, + null, + -188635.053643839, + -188848.03815522493, + null, + -188635.053643839, + -188971.97905411114, + null, + -188635.053643839, + -188505.22634815276, + null, + -188635.053643839, + -188817.90158256877, + null, + -188635.053643839, + -188953.58974896904, + null, + -188635.053643839, + -188943.9313415137, + null, + -188635.053643839, + -188879.4638523478, + null, + -188696.782377594, + -188875.60269456287, + null, + -189006.25883621728, + -189320.8832616244, + null, + -189387.78435538372, + -189690.21858696538, + null, + -189387.78435538372, + -189857.30593465958, + null, + -189387.78435538372, + -189771.49663237328, + null, + -189387.78435538372, + -189701.74112496764, + null, + -189801.49095297614, + -189902.3304396636, + null, + -190382.19427593888, + -190570.05343242383, + null, + -190294.21864983928, + -190456.94334113694, + null, + -190368.25817851265, + -190425.7399763771, + null, + -190368.25817851265, + -190488.92328356873, + null, + -189554.68072761627, + -189848.3496053623, + null, + -189522.66677498195, + -189767.82097975494, + null, + -189623.56254580448, + -190007.8802822811, + null, + -189623.56254580448, + -189836.98244016172, + null, + -189623.56254580448, + -189895.3596929185, + null, + -189623.56254580448, + -189360.94131929203, + null, + -187827.28797163125, + -188251.55613681383, + null, + -187621.1473503119, + -188251.55613681383, + null, + -187642.49697600745, + -188251.55613681383, + null, + -189916.311805951, + -190187.96899881063, + null, + -189916.311805951, + -190075.78591642829, + null, + -189916.311805951, + -190102.6448901039, + null, + -189916.311805951, + -190082.51368391872, + null, + -189867.76456386773, + -189916.311805951, + null, + -189916.311805951, + -190277.35605871337, + null, + -189916.311805951, + -190108.85859934683, + null, + -189274.10474049454, + -189916.311805951, + null, + -189916.311805951, + -189982.98427097642, + null, + -189916.311805951, + -190247.19351608588, + null, + -189916.311805951, + -190000.47476074027, + null, + -189916.311805951, + -190015.63669208196, + null, + -189916.311805951, + -190176.02416169882, + null, + -189916.311805951, + -190196.77460129675, + null, + -189916.311805951, + -189948.9893928284, + null, + -189916.311805951, + -190051.48274480636, + null, + -189916.311805951, + -190309.79507444083, + null, + -189916.311805951, + -190266.7019462526, + null, + -189916.311805951, + -190160.6995683081, + null, + -189916.311805951, + -190048.14997909922, + null, + -189916.311805951, + -190138.61148006478, + null, + -189916.311805951, + -190201.3591599058, + null, + -189916.311805951, + -190220.61911344156, + null, + -189916.311805951, + -190108.87515133707, + null, + -189916.311805951, + -190235.60594223105, + null, + -189916.311805951, + -190243.27357438963, + null, + -189916.311805951, + -190140.1759802504, + null, + -189916.311805951, + -190142.06772604265, + null, + -189916.311805951, + -190106.0660399482, + null, + -189916.311805951, + -190032.54339045423, + null, + -189916.311805951, + -190078.30164515603, + null, + -189916.311805951, + -190140.8097984063, + null, + -189265.0331807753, + -189916.311805951, + null, + -189916.311805951, + -190239.66301388768, + null, + -189966.51788839934, + -189916.311805951, + null, + -188785.27223021127, + -189916.311805951, + null, + -189916.311805951, + -190204.91858076805, + null, + -189916.311805951, + -190104.49800215533, + null, + -189916.311805951, + -190222.0138580218, + null, + -189916.311805951, + -190176.5237960741, + null, + -189916.311805951, + -190284.59045692414, + null, + -189150.0722038921, + -189916.311805951, + null, + -189023.51159242663, + -189916.311805951, + null, + -189916.311805951, + -189989.61280394648, + null, + -189916.311805951, + -190188.0724671243, + null, + -189916.311805951, + -190304.79464037312, + null, + -189916.311805951, + -190151.1461472848, + null, + -189916.311805951, + -190245.7156611473, + null, + -189916.311805951, + -190354.1941259311, + null, + -189916.311805951, + -190063.91222684208, + null, + -189916.311805951, + -190215.5486804766, + null, + -189916.311805951, + -190266.6265029611, + null, + -189916.311805951, + -190135.90178565972, + null, + -189916.311805951, + -190390.4172704486, + null, + -189916.311805951, + -190225.16976200862, + null, + -189916.311805951, + -190233.24979261204, + null, + -189916.311805951, + -190271.6524928905, + null, + -187594.8777657927, + -188292.3869375497, + null, + -188109.5947916895, + -188292.3869375497, + null, + -188135.7951117508, + -188292.3869375497, + null, + -188126.67429510137, + -188292.3869375497, + null, + -188068.89540782082, + -188292.3869375497, + null, + -188138.17806449422, + -188292.3869375497, + null, + -188113.8147030654, + -188292.3869375497, + null, + -188119.49823623613, + -188292.3869375497, + null, + -188123.9780570342, + -188292.3869375497, + null, + -188121.51859750494, + -188292.3869375497, + null, + -188082.81454332572, + -188292.3869375497, + null, + -188023.85098966694, + -188292.3869375497, + null, + -188038.4334288893, + -188292.3869375497, + null, + -188097.6602407291, + -188292.3869375497, + null, + -188124.65543545736, + -188292.3869375497, + null, + -188079.8329504583, + -188292.3869375497, + null, + -188292.3869375497, + -188255.49531115688, + null, + -187594.8777657927, + -188271.77595069932, + null, + -188109.5947916895, + -188271.77595069932, + null, + -188135.7951117508, + -188271.77595069932, + null, + -188126.67429510137, + -188271.77595069932, + null, + -188068.89540782082, + -188271.77595069932, + null, + -188138.17806449422, + -188271.77595069932, + null, + -188113.8147030654, + -188271.77595069932, + null, + -188119.49823623613, + -188271.77595069932, + null, + -188123.9780570342, + -188271.77595069932, + null, + -188121.51859750494, + -188271.77595069932, + null, + -188082.81454332572, + -188271.77595069932, + null, + -188023.85098966694, + -188271.77595069932, + null, + -188038.4334288893, + -188271.77595069932, + null, + -188097.6602407291, + -188271.77595069932, + null, + -188124.65543545736, + -188271.77595069932, + null, + -188079.8329504583, + -188271.77595069932, + null, + -188129.3743830729, + -188271.77595069932, + null, + -189041.9225197264, + -188742.25835635187, + null, + -189199.17908190106, + -189431.19612052888, + null, + -189199.17908190106, + -189406.98871430848, + null, + -187594.8777657927, + -188285.76996994668, + null, + -188109.5947916895, + -188285.76996994668, + null, + -188135.7951117508, + -188285.76996994668, + null, + -188126.67429510137, + -188285.76996994668, + null, + -188068.89540782082, + -188285.76996994668, + null, + -188138.17806449422, + -188285.76996994668, + null, + -188113.8147030654, + -188285.76996994668, + null, + -188119.49823623613, + -188285.76996994668, + null, + -188123.9780570342, + -188285.76996994668, + null, + -188121.51859750494, + -188285.76996994668, + null, + -188082.81454332572, + -188285.76996994668, + null, + -188023.85098966694, + -188285.76996994668, + null, + -188038.4334288893, + -188285.76996994668, + null, + -188097.6602407291, + -188285.76996994668, + null, + -188124.65543545736, + -188285.76996994668, + null, + -188079.8329504583, + -188285.76996994668, + null, + -188129.3743830729, + -188285.76996994668, + null, + -189537.7817031003, + -189782.7809279428, + null, + -189352.73404518928, + -189405.89976436328, + null, + -189471.04120599278, + -189596.71553589354, + null, + -189679.53787245677, + -189556.0586895262, + null, + -189679.53787245677, + -189975.8857865456, + null, + -189408.21023611428, + -189556.0586895262, + null, + -188999.3408802612, + -188727.8586654595, + null, + -188999.3408802612, + -189057.81546602, + null, + -188999.3408802612, + -188609.42242236514, + null, + -188999.3408802612, + -189190.2132919713, + null, + -189645.5000292996, + -189962.64684681784, + null, + -189431.51059923717, + -189606.58142448816, + null, + -189431.51059923717, + -189620.0076205086, + null, + -189615.4869081341, + -189829.45164674928, + null, + -189615.4869081341, + -189806.80628290947, + null, + -189750.14044068835, + -190055.23194051083, + null, + -189750.14044068835, + -190099.1641087381, + null, + -189750.14044068835, + -190009.77524916915, + null, + -189801.76573120884, + -190123.61494626934, + null, + -189801.76573120884, + -189254.12345730932, + null, + -189801.76573120884, + -190002.99170424696, + null, + -189801.76573120884, + -189982.1293526866, + null, + -189801.76573120884, + -189911.10633381322, + null, + -189801.76573120884, + -189010.69702649902, + null, + -189801.76573120884, + -189995.0356338526, + null, + -189801.76573120884, + -189997.50324860663, + null, + -189801.76573120884, + -190023.1519635282, + null, + -189801.76573120884, + -190061.7421727275, + null, + -189801.76573120884, + -190142.2612089221, + null, + -189801.76573120884, + -189872.54233829424, + null, + -189801.76573120884, + -189953.18482676084, + null, + -189801.76573120884, + -190076.74672227495, + null, + -189801.76573120884, + -189959.6292369299, + null, + -189801.76573120884, + -190047.69919487005, + null, + -189801.76573120884, + -189592.09389439234, + null, + -189801.76573120884, + -190042.4332771142, + null, + -189801.76573120884, + -190072.09887471944, + null, + -189801.76573120884, + -190023.65707861382, + null, + -189801.76573120884, + -190069.90387555773, + null, + -189801.76573120884, + -189999.30668370787, + null, + -189801.76573120884, + -189943.26942762276, + null, + -189801.76573120884, + -190047.4304017866, + null, + -189801.76573120884, + -190327.86074333172, + null, + -189801.76573120884, + -189954.94326666972, + null, + -189801.76573120884, + -189989.53954194966, + null, + -189801.76573120884, + -189247.56010120243, + null, + -189801.76573120884, + -189994.1273630411, + null, + -189801.76573120884, + -189228.67042631286, + null, + -189801.76573120884, + -189998.3802860646, + null, + -189558.55733558614, + -189881.85499270284, + null, + -189504.89278882294, + -189877.7461051455, + null, + -189522.26639614848, + -189785.98016496692, + null, + -189522.26639614848, + -189596.4692696455, + null, + -189536.3625339415, + -189801.74533007256, + null, + -189750.30848512865, + -190150.7534213793, + null, + -189750.30848512865, + -190083.45351184526, + null, + -189750.30848512865, + -189958.9935821789, + null, + -189442.69507087598, + -189640.46304525726, + null, + -190034.61897906184, + -190369.8816348054, + null, + -190034.61897906184, + -190355.11724425686, + null, + -190034.61897906184, + -190322.80421544664, + null, + -190034.61897906184, + -190263.3619893532, + null, + -190034.61897906184, + -190417.86846340998, + null, + -190034.61897906184, + -190129.3764744744, + null, + -188801.60294815066, + -189044.47193388795, + null, + -188801.60294815066, + -188557.4596234686, + null, + -188801.60294815066, + -188502.3898432576, + null, + -188801.60294815066, + -188505.68688054534, + null, + -188801.60294815066, + -188505.51258337646, + null, + -189834.3163791867, + -190141.27549069133, + null, + -189834.3163791867, + -190192.09800997702, + null, + -189834.3163791867, + -190228.05993463765, + null, + -188954.66274327494, + -189166.174499402, + null, + -188954.66274327494, + -189121.58192836438, + null, + -189640.1945004268, + -189825.80985082992, + null, + -189640.1945004268, + -189928.15648078072, + null, + -190115.39552164622, + -190413.83573917582, + null, + -190115.39552164622, + -190409.3455823219, + null, + -190115.39552164622, + -190456.8050621169, + null, + -190115.39552164622, + -190416.263701065, + null, + -190115.39552164622, + -190423.7286388017, + null, + -190115.39552164622, + -190504.68932044078, + null, + -190115.39552164622, + -190351.8577571806, + null, + -190115.39552164622, + -190430.28066369068, + null, + -187859.86995225446, + -188306.66890581805, + null, + -188306.66890581805, + -187695.57614406702, + null, + -188306.66890581805, + -187760.736691232, + null, + -187594.8777657927, + -188312.41502651962, + null, + -188109.5947916895, + -188312.41502651962, + null, + -188135.7951117508, + -188312.41502651962, + null, + -188113.8147030654, + -188312.41502651962, + null, + -188023.85098966694, + -188312.41502651962, + null, + -188124.65543545736, + -188312.41502651962, + null, + -188126.67429510137, + -188312.41502651962, + null, + -188068.89540782082, + -188312.41502651962, + null, + -188138.17806449422, + -188312.41502651962, + null, + -188119.49823623613, + -188312.41502651962, + null, + -188123.9780570342, + -188312.41502651962, + null, + -188121.51859750494, + -188312.41502651962, + null, + -188082.81454332572, + -188312.41502651962, + null, + -188038.4334288893, + -188312.41502651962, + null, + -188097.6602407291, + -188312.41502651962, + null, + -188312.41502651962, + -188357.7548173183, + null, + -188129.3743830729, + -188312.41502651962, + null, + -189659.46917226465, + -189963.01135006186, + null, + -189659.46917226465, + -189867.35754044872, + null, + -189659.46917226465, + -189885.2399857091, + null, + -189317.8406785239, + -189540.83255167972, + null, + -189169.03781422778, + -189080.7550455894, + null, + -189731.85447908618, + -189971.6969367716, + null, + -189731.85447908618, + -190014.13869723506, + null, + -189446.80721719595, + -189625.3584162535, + null, + -189275.603776678, + -189592.09389439234, + null, + -189275.603776678, + -188977.17868152083, + null, + -189693.2055888678, + -190033.94066848868, + null, + -189693.2055888678, + -190014.96846085825, + null, + -189753.59627716336, + -190047.33554382756, + null, + -189753.59627716336, + -190021.89704585815, + null, + -189753.59627716336, + -190095.05957379984, + null, + -189523.92981689292, + -189823.33718928453, + null, + -189582.96181379963, + -189807.44797915185, + null, + -189582.96181379963, + -189856.9200899178, + null, + -190328.62833538937, + -190683.3037257944, + null, + -190328.62833538937, + -190622.24743598714, + null, + -190328.62833538937, + -190636.57137215306, + null, + -190328.62833538937, + -190577.10752327426, + null, + -190328.62833538937, + -190615.79719227442, + null, + -190328.62833538937, + -190597.41828734183, + null, + -190328.62833538937, + -190563.36643259757, + null, + -190328.62833538937, + -190570.68582678516, + null, + -190328.62833538937, + -190689.22248026772, + null, + -190328.62833538937, + -190604.4639800109, + null, + -190328.62833538937, + -190649.86056976585, + null, + -190328.62833538937, + -190660.25961607235, + null, + -189786.84207760714, + -190080.6795551314, + null, + -189786.84207760714, + -190063.6300792004, + null, + -189786.84207760714, + -190056.3523664133, + null, + -189751.89635663538, + -190081.37512168137, + null, + -189751.89635663538, + -190053.65824576886, + null, + -188815.1944085261, + -188278.1072223423, + null, + -188815.1944085261, + -188982.54369054709, + null, + -189796.11674781732, + -190254.69169143718, + null, + -189932.6237612485, + -190270.88097794403, + null, + -189932.6237612485, + -190324.85616092518, + null, + -189932.6237612485, + -189598.00166810045, + null, + -189932.6237612485, + -190316.4062083869, + null, + -189932.6237612485, + -189624.33377322988, + null, + -189932.6237612485, + -190233.7497864454, + null, + -189932.6237612485, + -190309.93574469167, + null, + -189932.6237612485, + -189567.498505866, + null, + -189552.86218391886, + -189865.68748950932, + null, + -189830.91246389045, + -190158.38189934954, + null, + -189830.91246389045, + -190002.0571816662, + null, + -189830.91246389045, + -190032.13717515685, + null, + -189830.91246389045, + -190219.2848547583, + null, + -189830.91246389045, + -190106.5932816327, + null, + -189498.42730696275, + -189776.73861947109, + null, + -189646.04277723422, + -189892.40357004944, + null, + -189646.04277723422, + -189933.6677233693, + null, + -189493.25493438917, + -189787.4065735723, + null, + -189493.25493438917, + -189622.95178168817, + null, + -188868.21171990343, + -188401.64732672213, + null, + -188868.21171990343, + -189010.69702649902, + null, + -189430.8749071048, + -189481.26125690035, + null, + -189418.3979333305, + -189481.26125690035, + null, + -187594.8777657927, + -188294.41257727327, + null, + -188109.5947916895, + -188294.41257727327, + null, + -188135.7951117508, + -188294.41257727327, + null, + -188126.67429510137, + -188294.41257727327, + null, + -188068.89540782082, + -188294.41257727327, + null, + -188138.17806449422, + -188294.41257727327, + null, + -188113.8147030654, + -188294.41257727327, + null, + -188119.49823623613, + -188294.41257727327, + null, + -188123.9780570342, + -188294.41257727327, + null, + -188121.51859750494, + -188294.41257727327, + null, + -188082.81454332572, + -188294.41257727327, + null, + -188023.85098966694, + -188294.41257727327, + null, + -188038.4334288893, + -188294.41257727327, + null, + -188097.6602407291, + -188294.41257727327, + null, + -188124.65543545736, + -188294.41257727327, + null, + -188079.8329504583, + -188294.41257727327, + null, + -188129.3743830729, + -188294.41257727327, + null, + -188804.39291762855, + -188363.39439349156, + null, + -188804.39291762855, + -188369.21574915142, + null, + -189383.2134141077, + -189654.05215583372, + null, + -189408.30108345978, + -189657.41072030462, + null, + -189622.2992613024, + -189885.08282564703, + null, + -189622.2992613024, + -189897.7438511581, + null, + -189336.00050606855, + -189344.53698081977, + null, + -189346.3496150686, + -189371.6910585, + null, + -189346.3496150686, + -189531.47570204202, + null, + -189517.63745548116, + -189745.4244652022, + null, + -189562.47650992335, + -189878.20826982777, + null, + -189732.76841517194, + -190129.93090804346, + null, + -189732.76841517194, + -189865.11180310862, + null, + -189732.76841517194, + -190056.72426811626, + null, + -189536.8343224868, + -189902.3304396636, + null, + -189457.759153216, + -189675.57223028474, + null, + -189532.57203367492, + -189821.58209532077, + null, + -189507.00155087592, + -189722.72727586702, + null, + -189055.85878078622, + -188742.25835635187, + null, + -190253.9554374968, + -190627.5336950345, + null, + -190253.9554374968, + -190590.11724799534, + null, + -190253.9554374968, + -190553.81046517758, + null, + -190253.9554374968, + -190626.39202647426, + null, + -190253.9554374968, + -190548.7352188638, + null, + -190253.9554374968, + -190527.02557045876, + null, + -190253.9554374968, + -190537.97620366924, + null, + -190253.9554374968, + -190528.99247083525, + null, + -190253.9554374968, + -190535.95331849967, + null, + -190253.9554374968, + -190477.584911762, + null, + -190253.9554374968, + -190590.01387789508, + null, + -189453.52787322368, + -189689.98568985163, + null, + -189199.04942802034, + -189405.89976436328, + null, + -189199.04942802034, + -188767.31638590462, + null, + -189199.04942802034, + -189380.99555358346, + null, + -189518.1963457777, + -189820.34819052625, + null, + -188415.7452673843, + -187863.92820822977, + null, + -188415.7452673843, + -188597.77966632837, + null, + -188415.7452673843, + -187894.56703794212, + null, + -188415.7452673843, + -188710.84136932285, + null, + -188415.7452673843, + -187852.36526218464, + null, + -188415.7452673843, + -188505.22634815276, + null, + -188922.00741313785, + -189046.7218577527, + null, + -189565.95036095765, + -189929.7873353237, + null, + -189599.43976925078, + -189827.14417308327, + null, + -189447.3213721349, + -189610.45247642134, + null, + -189592.0253847243, + -189721.2681245282, + null, + -189592.0253847243, + -189841.32060363394, + null, + -189704.67210231442, + -190133.0764252821, + null, + -189704.67210231442, + -189994.26180196146, + null, + -189429.51527102874, + -189552.0059179834, + null, + -189549.2248295347, + -189865.34878964076, + null, + -189732.63425983736, + -190128.70990411646, + null, + -189732.63425983736, + -189980.2073353877, + null, + -189274.10474049454, + -189156.18143433816, + null, + -189265.0331807753, + -189156.18143433816, + null, + -189023.51159242663, + -189156.18143433816, + null, + -189150.0722038921, + -189156.18143433816, + null, + -188785.27223021127, + -189156.18143433816, + null, + -189593.73394135686, + -189911.87643199667, + null, + -189593.73394135686, + -189862.09897817927, + null, + -189255.76286114688, + -189582.52171704065, + null, + -189255.76286114688, + -189613.4274864384, + null, + -189255.76286114688, + -189512.73040835065, + null, + -188499.89103916325, + -189255.76286114688, + null, + -189255.76286114688, + -189560.4350602952, + null, + -189255.76286114688, + -189685.13710829453, + null, + -187808.73897039745, + -188480.57065962657, + null, + -189119.4502426223, + -188990.4010166953, + null, + -189372.92718386388, + -189440.16676991337, + null, + -189530.79236599515, + -189792.41637375913, + null, + -189323.80480814414, + -189592.09389439234, + null, + -189323.80480814414, + -188977.17868152083, + null, + -189638.78145869536, + -190046.7128963769, + null, + -189920.08786925004, + -190176.91030132608, + null, + -189920.08786925004, + -190169.57831584476, + null, + -189920.08786925004, + -190144.80345069803, + null, + -189568.58179882303, + -189884.18087312218, + null, + -189490.09496069627, + -189803.42093549029, + null, + -189529.25512316148, + -189609.67635842468, + null, + -188851.56730320977, + -188339.00311775182, + null, + -189408.06502858872, + -189566.49283217607, + null, + -189515.4108281232, + -189766.99186632992, + null, + -188887.3973668111, + -189187.37825301112, + null, + -188887.3973668111, + -188557.4596234686, + null, + -188887.3973668111, + -188502.3898432576, + null, + -188887.3973668111, + -188505.68688054534, + null, + -188887.3973668111, + -189153.77644796227, + null, + -188887.3973668111, + -188505.51258337646, + null, + -188770.14684657753, + -188325.55852082116, + null, + -189474.47554588024, + -189720.57020872037, + null, + -189774.7476661943, + -189942.3597703817, + null, + -189774.7476661943, + -189936.04804907544, + null, + -189774.7476661943, + -190138.50278243815, + null, + -189774.7476661943, + -190147.93036115187, + null, + -189656.34211244347, + -189857.30593465958, + null, + -189656.34211244347, + -189690.21858696538, + null, + -189656.34211244347, + -189771.49663237328, + null, + -189485.92172726392, + -189690.21858696538, + null, + -189381.9654969643, + -189473.60669290827, + null, + -189641.00924985827, + -189721.2681245282, + null, + -189641.00924985827, + -189841.32060363394, + null, + -189677.82690449522, + -189934.81712935786, + null, + -189677.82690449522, + -189920.5210867985, + null, + -189677.82690449522, + -189880.48140888676, + null, + -189393.09189406977, + -189481.26125690035, + null, + -189725.99119278492, + -189777.5089787198, + null, + -189725.99119278492, + -189991.22532635246, + null, + -189725.99119278492, + -189902.6784533937, + null, + -189725.99119278492, + -190014.2065216857, + null, + -187911.2710909405, + -187003.43820973596, + null, + -187911.2710909405, + -188181.21478088622, + null, + -187911.2710909405, + -186951.0722009215, + null, + -189560.62472315767, + -189993.3661745427, + null, + -189560.62472315767, + -189725.42636923178, + null, + -187594.8777657927, + -188296.21414801962, + null, + -188109.5947916895, + -188296.21414801962, + null, + -188135.7951117508, + -188296.21414801962, + null, + -188126.67429510137, + -188296.21414801962, + null, + -188068.89540782082, + -188296.21414801962, + null, + -188138.17806449422, + -188296.21414801962, + null, + -188113.8147030654, + -188296.21414801962, + null, + -188119.49823623613, + -188296.21414801962, + null, + -188123.9780570342, + -188296.21414801962, + null, + -188121.51859750494, + -188296.21414801962, + null, + -188082.81454332572, + -188296.21414801962, + null, + -188023.85098966694, + -188296.21414801962, + null, + -188038.4334288893, + -188296.21414801962, + null, + -188097.6602407291, + -188296.21414801962, + null, + -188124.65543545736, + -188296.21414801962, + null, + -188079.8329504583, + -188296.21414801962, + null, + -188129.3743830729, + -188296.21414801962, + null, + -189686.30027570974, + -189782.7809279428, + null, + -189068.82122443494, + -188987.5553701727, + null, + -189068.82122443494, + -188990.4010166953, + null, + -189068.82122443494, + -188980.99251783875, + null, + -189068.82122443494, + -189162.88629233922, + null, + -187594.8777657927, + -188278.08712796614, + null, + -188109.5947916895, + -188278.08712796614, + null, + -188135.7951117508, + -188278.08712796614, + null, + -188126.67429510137, + -188278.08712796614, + null, + -188068.89540782082, + -188278.08712796614, + null, + -188138.17806449422, + -188278.08712796614, + null, + -188113.8147030654, + -188278.08712796614, + null, + -188119.49823623613, + -188278.08712796614, + null, + -188123.9780570342, + -188278.08712796614, + null, + -188121.51859750494, + -188278.08712796614, + null, + -188082.81454332572, + -188278.08712796614, + null, + -188023.85098966694, + -188278.08712796614, + null, + -188038.4334288893, + -188278.08712796614, + null, + -188097.6602407291, + -188278.08712796614, + null, + -188124.65543545736, + -188278.08712796614, + null, + -188079.8329504583, + -188278.08712796614, + null, + -188129.3743830729, + -188278.08712796614, + null, + -189634.1669562323, + -189845.95459293955, + null, + -189634.1669562323, + -189913.25422408764, + null, + -189557.7983769141, + -189815.88498965633, + null, + -189640.61261352964, + -189816.0991606201, + null, + -189640.61261352964, + -189914.6755130604, + null, + -189583.51700064118, + -189851.85041363334, + null, + -189328.29367726677, + -189412.0149135278, + null, + -188925.91974127013, + -188595.05397402454, + null, + -189730.37815090845, + -189964.75033073436, + null, + -189730.37815090845, + -190076.95138041594, + null, + -189730.37815090845, + -189948.34201305412, + null, + -188921.42443902968, + -188287.7882146985, + null, + -188921.42443902968, + -189201.20828713535, + null, + -189511.2209653839, + -189794.53058512337, + null, + -189692.25637540634, + -190036.43274504624, + null, + -189692.25637540634, + -189993.46217733237, + null, + -189322.72491470815, + -189516.2009930048, + null, + -189703.6139847984, + -190083.22603296343, + null, + -189703.6139847984, + -190015.1682753715, + null, + -189590.25078595642, + -189863.4178539749, + null, + -189590.25078595642, + -189865.29591063826, + null, + -188547.46824695042, + -188013.20672022508, + null, + -188547.46824695042, + -188285.55395057393, + null, + -189621.15970611246, + -189942.62572521015, + null, + -189621.15970611246, + -189716.3603225668, + null, + -189621.15970611246, + -189754.81370781327, + null, + -189621.15970611246, + -189479.04798828842, + null, + -189621.15970611246, + -189831.82834825877, + null, + -189621.15970611246, + -189846.60399545185, + null, + -189621.15970611246, + -189891.63373559376, + null, + -189621.15970611246, + -189756.3266971822, + null, + -189621.15970611246, + -189470.92179911264, + null, + -189621.15970611246, + -189881.5254498419, + null, + -189621.15970611246, + -189474.05881109604, + null, + -189621.15970611246, + -189860.46362732205, + null, + -189621.15970611246, + -189895.8170527797, + null, + -189621.15970611246, + -189901.08917131185, + null, + -189621.15970611246, + -189172.6969553096, + null, + -189621.15970611246, + -189942.76417361607, + null, + -189621.15970611246, + -189249.40564514752, + null, + -189621.15970611246, + -189864.87255623512, + null, + -189621.15970611246, + -189829.0082900861, + null, + -189554.07262256934, + -189527.37335576225, + null, + -189554.07262256934, + -189706.09320869745, + null, + -188935.33612228493, + -188333.69361629503, + null, + -189468.52121776558, + -189812.79016112452, + null, + -189726.9839142311, + -190011.10938298382, + null, + -189726.9839142311, + -190012.59772626602, + null, + -189604.051822791, + -189821.5502203555, + null, + -189604.051822791, + -189827.98067667958, + null, + -189516.1723814726, + -189752.06021142998, + null, + -189606.13981497308, + -189849.57134155335, + null, + -189818.32592583625, + -190103.95680880343, + null, + -189818.32592583625, + -189645.7975453776, + null, + -189818.32592583625, + -190161.70492528772, + null, + -189818.32592583625, + -189002.53982306406, + null, + -189818.32592583625, + -190098.90464646148, + null, + -189818.32592583625, + -189880.14284702012, + null, + -189818.32592583625, + -190275.281542361, + null, + -189818.32592583625, + -189671.86798061224, + null, + -189818.32592583625, + -189968.41624521738, + null, + -189818.32592583625, + -190082.85660467256, + null, + -189818.32592583625, + -190010.45363055408, + null, + -189818.32592583625, + -190134.69000424945, + null, + -189818.32592583625, + -190194.0337786028, + null, + -189818.32592583625, + -190121.94782244563, + null, + -189818.32592583625, + -189910.92703627306, + null, + -189818.32592583625, + -190120.33137371222, + null, + -189818.32592583625, + -190052.2392364327, + null, + -189818.32592583625, + -190168.3448743449, + null, + -189818.32592583625, + -189863.42332173933, + null, + -189818.32592583625, + -190050.3134536251, + null, + -189832.11385822124, + -190052.02798014958, + null, + -189832.11385822124, + -190138.15984440758, + null, + -189832.11385822124, + -190124.12260626277, + null, + -189832.11385822124, + -190076.46943185962, + null, + -188799.02956322636, + -188557.4596234686, + null, + -188799.02956322636, + -188505.68688054534, + null, + -188799.02956322636, + -188502.3898432576, + null, + -188799.02956322636, + -188482.3157020377, + null, + -188799.02956322636, + -188505.51258337646, + null, + -189141.57950872142, + -189279.50841773278, + null, + -189141.57950872142, + -189127.7614248225, + null, + -189141.57950872142, + -189340.40098509513, + null, + -189141.57950872142, + -188810.17734219952, + null, + -189141.57950872142, + -189373.96438282065, + null, + -189643.42341201042, + -189945.63900962495, + null, + -189643.42341201042, + -189928.4903803872, + null, + -189659.6677604097, + -190042.60625451073, + null, + -189659.6677604097, + -189791.76613560726, + null, + -189659.6677604097, + -189869.66751411214, + null, + -189659.6677604097, + -189895.3596929185, + null, + -189659.6677604097, + -189360.94131929203, + null, + -189525.22410298133, + -189883.52375199503, + null, + -189525.22410298133, + -189710.02260108996, + null, + -189525.22410298133, + -189550.95837134798, + null, + -189794.1589935236, + -190125.85650578202, + null, + -189794.1589935236, + -190227.80055654832, + null, + -189794.1589935236, + -189980.97976013072, + null, + -189493.67651902192, + -189805.0174005274, + null, + -189257.11848075397, + -188735.71532723514, + null, + -189257.11848075397, + -189640.06108544476, + null, + -189427.21294576538, + -189707.5300203365, + null, + -189688.7712261936, + -189960.30966069215, + null, + -189688.7712261936, + -190032.43816963732, + null, + -188695.04808894158, + -188336.02952000388, + null, + -188695.04808894158, + -188932.69835564663, + null, + -188695.04808894158, + -188287.7882146985, + null, + -189566.4665127886, + -189829.566589109, + null, + -189566.4665127886, + -189766.6746070231, + null, + -188758.55641030593, + -188287.7882146985, + null, + -189744.39363754724, + -190087.43066860677, + null, + -189744.39363754724, + -190041.987692598, + null, + -188470.03479631987, + -188595.05397402454, + null, + -188470.03479631987, + -188621.10935024044, + null, + -188470.03479631987, + -187857.41211453432, + null, + -188470.03479631987, + -188522.2186210146, + null, + -188470.03479631987, + -188456.7527854188, + null, + -188470.03479631987, + -188417.53740720224, + null, + -188470.03479631987, + -187912.95191827603, + null, + -188470.03479631987, + -188406.84414023338, + null, + -189689.52817768222, + -189897.22955659946, + null, + -189689.52817768222, + -189886.44474479667, + null, + -189689.52817768222, + -189936.64132531104, + null, + -189736.91566883595, + -190045.87754162127, + null, + -187803.1415402722, + -187862.33462754218, + null, + -187803.1415402722, + -186840.44087714233, + null, + -187803.1415402722, + -188017.75898284867, + null, + -187803.1415402722, + -186841.4017466797, + null, + -187803.1415402722, + -187625.99468709566, + null, + -187785.39966082262, + -188615.64024283146, + null, + -188615.64024283146, + -188115.07214676208, + null, + -188776.05672438274, + -188615.64024283146, + null, + -188516.52943830803, + -188285.55395057393, + null, + -188516.52943830803, + -188013.20672022508, + null, + -188516.52943830803, + -188238.33374197048, + null, + -188516.52943830803, + -188215.72460135946, + null, + -188516.52943830803, + -188581.38902644193, + null, + -188516.52943830803, + -188288.50808971204, + null, + -188516.52943830803, + -188355.1199264169, + null, + -188516.52943830803, + -188259.72638644718, + null, + -188516.52943830803, + -188245.38363355384, + null, + -188516.52943830803, + -188771.67321964315, + null, + -188516.52943830803, + -188609.1528103252, + null, + -188516.52943830803, + -188477.04377820794, + null, + -188516.52943830803, + -188706.44086790056, + null, + -188516.52943830803, + -188522.74551045886, + null, + -188516.52943830803, + -188441.11342678487, + null, + -189681.64351749184, + -190032.00715641747, + null, + -189681.64351749184, + -190026.62201802526, + null, + -189583.2115684275, + -189736.26297613457, + null, + -189583.2115684275, + -189909.27787767662, + null, + -188560.8123839254, + -188013.20672022508, + null, + -188560.8123839254, + -188285.55395057393, + null, + -188808.58568177576, + -189079.18498195667, + null, + -189710.93255919393, + -189929.0210734705, + null, + -189406.02024615998, + -189486.59669526652, + null, + -189499.59645998385, + -189547.3793226872, + null, + -189499.59645998385, + -189755.0992386357, + null, + -189483.72175297773, + -189721.59190477236, + null, + -189357.24837546385, + -189038.42168107076, + null, + -189357.24837546385, + -189396.02766328072, + null, + -189357.24837546385, + -189452.2648830305, + null, + -189357.24837546385, + -189604.21381453943, + null, + -189474.95530109046, + -189626.24769900975, + null, + -189474.95530109046, + -189736.47627504388, + null, + -189782.36536876537, + -189980.6924954303, + null, + -189782.36536876537, + -190051.39788644988, + null, + -189782.36536876537, + -189002.53982306406, + null, + -189782.36536876537, + -189987.9388031262, + null, + -189782.36536876537, + -189671.86798061224, + null, + -189782.36536876537, + -190118.1878124256, + null, + -189782.36536876537, + -189860.31740185065, + null, + -189782.36536876537, + -189968.41624521738, + null, + -189782.36536876537, + -190150.64554488976, + null, + -189782.36536876537, + -189910.92703627306, + null, + -189782.36536876537, + -190010.45363055408, + null, + -189782.36536876537, + -190202.89670150276, + null, + -189782.36536876537, + -190007.161320482, + null, + -189782.36536876537, + -189941.38360680544, + null, + -189782.36536876537, + -190040.3036151541, + null, + -189782.36536876537, + -189981.57081345769, + null, + -189258.09496306165, + -189645.7975453776, + null, + -189258.09496306165, + -189002.53982306406, + null, + -189596.714753665, + -189783.57416826164, + null, + -189596.714753665, + -189796.5865472431, + null, + -188890.3664574394, + -188676.66102464776, + null, + -188890.3664574394, + -188680.00271065094, + null, + -188890.3664574394, + -188735.25527640682, + null, + -188890.3664574394, + -188691.9863820846, + null, + -188890.3664574394, + -188883.2252506061, + null, + -188890.3664574394, + -188594.7169153639, + null, + -188890.3664574394, + -188657.22598614308, + null, + -188764.91305512202, + -188557.4596234686, + null, + -188764.91305512202, + -188502.3898432576, + null, + -188764.91305512202, + -188505.68688054534, + null, + -188764.91305512202, + -188469.82315365504, + null, + -188764.91305512202, + -188505.51258337646, + null, + -188923.44433292217, + -189329.07774713478, + null, + -188923.44433292217, + -188140.00051928166, + null, + -188971.43179267063, + -188268.3002336887, + null, + -188971.43179267063, + -189249.25171750845, + null, + -188971.43179267063, + -189266.88275029848, + null, + -188253.40886764217, + -188041.43930099072, + null, + -188253.40886764217, + -187993.10500323906, + null, + -188253.40886764217, + -187980.56614154446, + null, + -188253.40886764217, + -187505.77792284868, + null, + -188253.40886764217, + -187803.3143579642, + null, + -188253.40886764217, + -188052.40549977424, + null, + -188253.40886764217, + -188057.23331354433, + null, + -188553.8667206884, + -187980.56614154446, + null, + -188553.8667206884, + -188904.57948655414, + null, + -188553.8667206884, + -187905.2037860304, + null, + -188553.8667206884, + -188769.16734820895, + null, + -188247.0553738609, + -187505.77792284868, + null, + -188247.0553738609, + -188052.40549977424, + null, + -188247.0553738609, + -187980.56614154446, + null, + -188247.0553738609, + -187993.10500323906, + null, + -188247.0553738609, + -188057.23331354433, + null, + -188247.0553738609, + -187803.3143579642, + null, + -187808.73897039745, + -188500.12824679536, + null, + -188900.62386161956, + -188621.68315608325, + null, + -188900.62386161956, + -188680.00271065094, + null, + -188900.62386161956, + -188716.07523902692, + null, + -188900.62386161956, + -188691.9863820846, + null, + -188900.62386161956, + -188676.66102464776, + null, + -188900.62386161956, + -188977.8336529005, + null, + -188900.62386161956, + -188876.96741627337, + null, + -188900.62386161956, + -189023.2637372005, + null, + -188881.29006931305, + -188287.7882146985, + null, + -188881.29006931305, + -189201.20828713535, + null, + -189122.419390301, + -189446.34263308713, + null, + -189122.419390301, + -188663.34908135253, + null, + -189049.75416535302, + -189338.63800307794, + null, + -189049.75416535302, + -189272.46716609594, + null, + -189049.75416535302, + -188621.10935024044, + null, + -190290.13307072833, + -190475.87056057338, + null, + -190290.13307072833, + -190363.26549123542, + null, + -190290.13307072833, + -190644.9723379776, + null, + -190290.13307072833, + -190462.08398884002, + null, + -190290.13307072833, + -190574.05181437873, + null, + -190290.13307072833, + -190391.15414305858, + null, + -190290.13307072833, + -190504.12149903976, + null, + -190290.13307072833, + -190541.7584943848, + null, + -190290.13307072833, + -190394.25763746977, + null, + -190290.13307072833, + -190593.80002470885, + null, + -190290.13307072833, + -190549.81716892275, + null, + -190290.13307072833, + -190394.54304903626, + null, + -190290.13307072833, + -190586.99388908755, + null, + -190290.13307072833, + -190511.55907674643, + null, + -190290.13307072833, + -190443.4219741818, + null, + -190290.13307072833, + -190434.752852087, + null, + -187594.8777657927, + -188263.30442852018, + null, + -188109.5947916895, + -188263.30442852018, + null, + -188135.7951117508, + -188263.30442852018, + null, + -188126.67429510137, + -188263.30442852018, + null, + -188068.89540782082, + -188263.30442852018, + null, + -188138.17806449422, + -188263.30442852018, + null, + -188113.8147030654, + -188263.30442852018, + null, + -188119.49823623613, + -188263.30442852018, + null, + -188123.9780570342, + -188263.30442852018, + null, + -188121.51859750494, + -188263.30442852018, + null, + -188082.81454332572, + -188263.30442852018, + null, + -188023.85098966694, + -188263.30442852018, + null, + -188038.4334288893, + -188263.30442852018, + null, + -188097.6602407291, + -188263.30442852018, + null, + -188124.65543545736, + -188263.30442852018, + null, + -188079.8329504583, + -188263.30442852018, + null, + -188129.3743830729, + -188263.30442852018, + null, + -189655.53739052103, + -189906.86664615953, + null, + -189655.53739052103, + -189980.63646016494, + null, + -189593.4766049247, + -189769.42690983845, + null, + -189658.27998301366, + -189985.83720384885, + null, + -189608.43740396632, + -189876.53310935257, + null, + -189608.43740396632, + -189902.22536835464, + null, + -189401.6122354161, + -189645.40122184544, + null, + -189401.6122354161, + -189424.709689385, + null, + -189401.6122354161, + -189369.65899546578, + null, + -187798.89120280318, + -186840.44087714233, + null, + -187798.89120280318, + -187862.33462754218, + null, + -187798.89120280318, + -186841.4017466797, + null, + -187798.89120280318, + -187625.99468709566, + null, + -189230.37339317877, + -189022.30145293748, + null, + -189230.37339317877, + -189476.28709892902, + null, + -189230.37339317877, + -189342.46057276748, + null, + -189545.16625437708, + -189669.7071682979, + null, + -189612.82599109344, + -189861.2124974001, + null, + -189612.82599109344, + -189924.49114468484, + null, + -189466.51428955715, + -189695.61062811463, + null, + -189622.41040500058, + -189732.4484183905, + null, + -189883.7142335665, + -190206.17448188507, + null, + -189883.7142335665, + -190206.0980025185, + null, + -189883.7142335665, + -190218.3943863217, + null, + -189883.7142335665, + -190076.2470556719, + null, + -189883.7142335665, + -190052.52406760817, + null, + -189350.129160721, + -189560.67356089593, + null, + -189397.67019498325, + -189632.94022368034, + null, + -189374.36013442566, + -189586.8863832665, + null, + -189456.31330892164, + -189750.83259052076, + null, + -188757.97295287042, + -188482.3157020377, + null, + -188757.97295287042, + -188557.4596234686, + null, + -188757.97295287042, + -188505.68688054534, + null, + -188757.97295287042, + -188502.3898432576, + null, + -188757.97295287042, + -188505.51258337646, + null, + -189874.7197630853, + -190228.63718259358, + null, + -189874.7197630853, + -190200.62285130544, + null, + -189874.7197630853, + -190321.80363929408, + null, + -188938.53921387976, + -188592.69741300648, + null, + -188938.53921387976, + -188530.56183519625, + null, + -189174.94373042753, + -189018.02910981255, + null, + -189174.94373042753, + -188771.22071372272, + null, + -189174.94373042753, + -189564.82638307373, + null, + -188249.57030670525, + -187505.77792284868, + null, + -188249.57030670525, + -187803.3143579642, + null, + -188249.57030670525, + -187993.10500323906, + null, + -188249.57030670525, + -187980.56614154446, + null, + -188249.57030670525, + -187892.99584382013, + null, + -188260.60515116138, + -187505.77792284868, + null, + -188260.60515116138, + -188052.40549977424, + null, + -188260.60515116138, + -187980.56614154446, + null, + -188260.60515116138, + -187993.10500323906, + null, + -188260.60515116138, + -188057.23331354433, + null, + -188260.60515116138, + -187803.3143579642, + null, + -188336.6986691293, + -187828.0449700697, + null, + -188336.6986691293, + -187557.52973979575, + null, + -187680.87764689644, + -187812.29264323704, + null, + -187680.87764689644, + -187981.42244477407, + null, + -187680.87764689644, + -187975.52341851426, + null, + -186283.60700347682, + -187251.2510294042, + null, + -187628.5971893858, + -187251.2510294042, + null, + -187251.2510294042, + -186877.613094899, + null, + -186870.78214397354, + -187251.2510294042, + null, + -187251.2510294042, + -185830.3568996049, + null, + -186283.60700347682, + -187262.66438443118, + null, + -187262.66438443118, + -186917.61345703408, + null, + -187749.7848825597, + -187262.66438443118, + null, + -187262.66438443118, + -186885.37838974773, + null, + -186870.78214397354, + -187262.66438443118, + null, + -187262.66438443118, + -185830.3568996049, + null, + -189570.2833336003, + -189803.36151218376, + null, + -189570.2833336003, + -189201.20828713535, + null, + -189570.2833336003, + -189913.1497669444, + null, + -189763.14706397685, + -190032.10280239128, + null, + -189763.14706397685, + -190072.29161640667, + null, + -189763.14706397685, + -190140.9626562465, + null, + -189566.8655000776, + -189768.22843580108, + null, + -189566.8655000776, + -189931.81691862512, + null, + -189779.29013892455, + -189826.67274452065, + null, + -189779.29013892455, + -189999.97773158897, + null, + -189779.29013892455, + -189369.65899546578, + null, + -189779.29013892455, + -190115.75191553755, + null, + -189779.29013892455, + -189977.23103216087, + null, + -189779.29013892455, + -189590.7531448757, + null, + -189779.29013892455, + -189372.64547062907, + null, + -189779.29013892455, + -189597.24984633556, + null, + -189779.29013892455, + -190005.1924606107, + null, + -189779.29013892455, + -189503.00303097212, + null, + -189779.29013892455, + -190071.01808593702, + null, + -189779.29013892455, + -190031.99421903666, + null, + -189779.29013892455, + -189875.86523314627, + null, + -189779.29013892455, + -190009.90432453758, + null, + -189779.29013892455, + -190097.99478259103, + null, + -189779.29013892455, + -189929.37601507976, + null, + -189779.29013892455, + -190010.17147214644, + null, + -189143.0578281467, + -188912.98164239828, + null, + -189143.0578281467, + -189284.43743427604, + null, + -189143.0578281467, + -188887.7173625151, + null, + -189143.0578281467, + -188911.4706511093, + null, + -189143.0578281467, + -189388.98309752173, + null, + -189143.0578281467, + -188870.41996378027, + null, + -189143.0578281467, + -188914.53959732346, + null, + -189143.0578281467, + -188878.15425177375, + null, + -189143.0578281467, + -188840.2951461584, + null, + -189143.0578281467, + -189038.42168107076, + null, + -189430.35956357492, + -189620.0244130199, + null, + -189430.35956357492, + -189625.2583846318, + null, + -189539.6584614828, + -189840.72948148553, + null, + -189539.6584614828, + -189625.845364226, + null, + -189404.9591139528, + -189465.20794132227, + null, + -189661.95294361803, + -189921.45423136652, + null, + -189661.95294361803, + -189889.22091888165, + null, + -189661.95294361803, + -189946.08141655484, + null, + -188758.00763305573, + -188285.55395057393, + null, + -188758.00763305573, + -188504.64148423215, + null, + -188758.00763305573, + -188522.74551045886, + null, + -188758.00763305573, + -188412.44037557312, + null, + -188758.00763305573, + -188781.8283257325, + null, + -188758.00763305573, + -188740.4076299442, + null, + -188758.00763305573, + -188935.6716361777, + null, + -189602.10511057184, + -189902.9951481261, + null, + -189832.73284060266, + -190199.11620196913, + null, + -189832.73284060266, + -190331.88777793274, + null, + -189832.73284060266, + -190083.6881451843, + null, + -189638.5204736213, + -189880.14284702012, + null, + -189638.5204736213, + -190036.6178459026, + null, + -189307.41763655184, + -189493.53122157877, + null, + -187325.8474831565, + -187414.1525286281, + null, + -187325.8474831565, + -187153.83483170177, + null, + -187325.8474831565, + -187417.08281845733, + null, + -187325.8474831565, + -187304.57560440578, + null, + -187325.8474831565, + -187206.64307347327, + null, + -187325.8474831565, + -187494.37966247095, + null, + -187325.8474831565, + -187468.07142045483, + null, + -187325.8474831565, + -187405.1955167813, + null, + -187325.8474831565, + -185480.2185366004, + null, + -187325.8474831565, + -186828.08396658566, + null, + -187325.8474831565, + -187467.3009883131, + null, + -187325.8474831565, + -188046.39450204067, + null, + -187325.8474831565, + -187380.41176077427, + null, + -188953.73820219914, + -189268.7378156468, + null, + -188953.73820219914, + -189214.5524927672, + null, + -188953.73820219914, + -188447.52573377267, + null, + -188953.73820219914, + -188701.5447475946, + null, + -188953.73820219914, + -188502.3898432576, + null, + -188953.73820219914, + -188557.4596234686, + null, + -188953.73820219914, + -189332.07031262116, + null, + -188953.73820219914, + -188505.68688054534, + null, + -188953.73820219914, + -189228.9081982296, + null, + -188953.73820219914, + -188627.0205662996, + null, + -188953.73820219914, + -188656.50036120758, + null, + -188953.73820219914, + -189175.41497594208, + null, + -188953.73820219914, + -189375.19911536569, + null, + -189477.09111556568, + -189761.69226405656, + null, + -188608.7669540309, + -188055.34361729486, + null, + -188608.7669540309, + -188355.8864917371, + null, + -189663.5967077643, + -189842.32031122976, + null, + -189663.5967077643, + -189868.9528304452, + null, + -187902.1950427761, + -187980.56614154446, + null, + -187902.1950427761, + -188057.23331354433, + null, + -187902.1950427761, + -187803.3143579642, + null, + -187902.1950427761, + -187892.99584382013, + null, + -187902.1950427761, + -187505.77792284868, + null, + -187902.1950427761, + -187993.10500323906, + null, + -187902.1950427761, + -186724.68573885344, + null, + -189204.27918840424, + -189018.02910981255, + null, + -187963.18284034188, + -187411.8004731311, + null, + -187963.18284034188, + -187384.85440843413, + null, + -187963.18284034188, + -187397.49483843523, + null, + -187963.18284034188, + -187389.06402282708, + null, + -187963.18284034188, + -187408.57036686965, + null, + -189589.51983073587, + -189809.44073601285, + null, + -190125.8549583156, + -190293.08407689194, + null, + -190125.8549583156, + -190311.90430715468, + null, + -190125.8549583156, + -190388.85119682553, + null, + -190125.8549583156, + -190445.93403431756, + null, + -190125.8549583156, + -190435.89895740917, + null, + -190125.8549583156, + -190449.3475640624, + null, + -190125.8549583156, + -190483.5788748304, + null, + -190125.8549583156, + -190439.36363401508, + null, + -190125.8549583156, + -190402.03821597865, + null, + -190125.8549583156, + -190354.2130714179, + null, + -189597.31022038838, + -189878.35854182256, + null, + -189597.31022038838, + -189831.7295560883, + null, + -189659.42206924004, + -189980.4227549014, + null, + -189659.42206924004, + -189894.38857136425, + null, + -187522.90987740675, + -185937.20459336432, + null, + -189123.09886013696, + -189234.79811111273, + null, + -189123.09886013696, + -189044.42758006393, + null, + -189123.09886013696, + -188982.13117658292, + null, + -189438.33583540513, + -189655.64745270918, + null, + -189190.64141113937, + -189272.83789102736, + null, + -189190.64141113937, + -189047.49853952235, + null, + -189190.64141113937, + -189062.21473259735, + null, + -189190.64141113937, + -189137.79815942995, + null, + -189506.4879067685, + -189834.68444061565, + null, + -189996.88173583825, + -190332.5891857683, + null, + -189996.88173583825, + -190311.74928116973, + null, + -189996.88173583825, + -190268.37506034676, + null, + -189996.88173583825, + -190352.22457202693, + null, + -189996.88173583825, + -190264.02480158204, + null, + -189506.9208114558, + -189703.3002225872, + null, + -189506.9208114558, + -189741.9662685643, + null, + -188577.0164252054, + -188013.20672022508, + null, + -188577.0164252054, + -188285.55395057393, + null, + -189355.94588633478, + -189653.50488966407, + null, + -189355.94588633478, + -189172.6969553096, + null, + -189514.97306091062, + -189716.3603225668, + null, + -189514.97306091062, + -189759.5122753518, + null, + -189411.36286505614, + -189628.80983628487, + null, + -188802.23079391493, + -188401.70303736636, + null, + -188802.23079391493, + -188550.56920449316, + null, + -188802.23079391493, + -188650.65877533983, + null, + -189518.63063531838, + -189816.1789486413, + null, + -189518.63063531838, + -189665.07028830674, + null, + -189595.0859664761, + -189725.06518663402, + null, + -189595.0859664761, + -189952.97110248948, + null, + -188849.11552920155, + -188657.22598614308, + null, + -188849.11552920155, + -188594.7169153639, + null, + -188849.11552920155, + -188621.68315608325, + null, + -188849.11552920155, + -188707.19411003264, + null, + -188849.11552920155, + -188680.00271065094, + null, + -188849.11552920155, + -188725.43356871564, + null, + -188849.11552920155, + -188691.9863820846, + null, + -188849.11552920155, + -188676.66102464776, + null, + -188741.18667656466, + -188557.4596234686, + null, + -188741.18667656466, + -188502.3898432576, + null, + -188741.18667656466, + -188505.68688054534, + null, + -188741.18667656466, + -188469.82315365504, + null, + -188741.18667656466, + -188505.51258337646, + null, + -189712.08090202446, + -189536.60395080398, + null, + -189712.08090202446, + -190118.58938534866, + null, + -190133.98681796715, + -190422.2204975639, + null, + -190133.98681796715, + -190454.36096552407, + null, + -190133.98681796715, + -190477.12985416566, + null, + -190133.98681796715, + -190273.79635232274, + null, + -190133.98681796715, + -190386.17342693405, + null, + -190133.98681796715, + -190290.92027654726, + null, + -190133.98681796715, + -190285.11144322803, + null, + -190133.98681796715, + -190422.2204975639, + null, + -190181.23310247317, + -190321.80363929408, + null, + -190181.23310247317, + -190200.62285130544, + null, + -190181.23310247317, + -190500.8876053926, + null, + -190181.23310247317, + -190228.63718259358, + null, + -190181.23310247317, + -190379.40568476502, + null, + -190181.23310247317, + -190349.0282488827, + null, + -190181.23310247317, + -190492.82676087008, + null, + -190181.23310247317, + -190384.46970978877, + null, + -190181.23310247317, + -190577.94552562502, + null, + -190181.23310247317, + -190476.58697762445, + null, + -190181.23310247317, + -190424.5579371018, + null, + -190181.23310247317, + -190515.7769230437, + null, + -188309.38290130332, + -187440.6696185839, + null, + -188229.01322122104, + -188041.43930099072, + null, + -188229.01322122104, + -187993.10500323906, + null, + -188229.01322122104, + -187980.56614154446, + null, + -188229.01322122104, + -187505.77792284868, + null, + -188229.01322122104, + -188057.23331354433, + null, + -188229.01322122104, + -187803.3143579642, + null, + -188229.01322122104, + -188052.40549977424, + null, + -188225.00588929723, + -187803.3143579642, + null, + -188225.00588929723, + -187980.56614154446, + null, + -188225.00588929723, + -187905.2037860304, + null, + -188225.00588929723, + -187993.10500323906, + null, + -188225.00588929723, + -187505.77792284868, + null, + -187746.04762354173, + -186735.62978625085, + null, + -187746.04762354173, + -187834.27434140982, + null, + -187746.04762354173, + -187215.37650594692, + null, + -187746.04762354173, + -186950.25182405324, + null, + -189649.05343454154, + -189983.49851289552, + null, + -189649.05343454154, + -189914.44209007142, + null, + -190439.80952772064, + -190739.9069385846, + null, + -190439.80952772064, + -190703.46636216049, + null, + -190439.80952772064, + -190823.64244110044, + null, + -190439.80952772064, + -190142.2688152774, + null, + -190439.80952772064, + -190703.40250229, + null, + -190439.80952772064, + -190679.2845484287, + null, + -190439.80952772064, + -190804.43682863933, + null, + -190439.80952772064, + -190772.79528161397, + null, + -190439.80952772064, + -190174.9869209733, + null, + -190439.80952772064, + -190691.4249614036, + null, + -190439.80952772064, + -190672.18419417052, + null, + -190439.80952772064, + -190799.7370938617, + null, + -190439.80952772064, + -190692.94467440082, + null, + -190439.80952772064, + -190707.9815689889, + null, + -190439.80952772064, + -190103.40849787297, + null, + -190439.80952772064, + -190739.0849917317, + null, + -190439.80952772064, + -190118.41545021316, + null, + -190439.80952772064, + -190379.40568476502, + null, + -190439.80952772064, + -190796.57720112224, + null, + -190439.80952772064, + -190769.51019569216, + null, + -190439.80952772064, + -190791.79343367968, + null, + -190439.80952772064, + -190349.0282488827, + null, + -190439.80952772064, + -190515.7769230437, + null, + -190439.80952772064, + -190796.49073473035, + null, + -190439.80952772064, + -190769.40469563488, + null, + -190439.80952772064, + -190764.2657987776, + null, + -190167.4618217757, + -190474.1084149691, + null, + -190167.4618217757, + -189826.67274452065, + null, + -189777.63112573957, + -189854.45943786003, + null, + -189777.63112573957, + -189618.54146927196, + null, + -189777.63112573957, + -189948.28950302518, + null, + -188400.0367418278, + -187679.11051665375, + null, + -189502.7870754483, + -189633.55364759974, + null, + -189631.87542889913, + -189759.5887370702, + null, + -189825.04437502267, + -189881.8820382768, + null, + -189825.04437502267, + -189736.47627504388, + null, + -189697.85110122422, + -189832.31199713287, + null, + -188642.19864755738, + -188734.38474404474, + null, + -188642.19864755738, + -188594.7169153639, + null, + -188642.19864755738, + -188676.7512696058, + null, + -188642.19864755738, + -188657.22598614308, + null, + -188642.19864755738, + -188735.25527640682, + null, + -188642.19864755738, + -188707.19411003264, + null, + -188642.19864755738, + -188621.68315608325, + null, + -188642.19864755738, + -188864.32027075288, + null, + -188642.19864755738, + -188639.96835899813, + null, + -188642.19864755738, + -188762.2940970673, + null, + -188642.19864755738, + -188700.56167535784, + null, + -188642.19864755738, + -188755.6479228247, + null, + -188642.19864755738, + -188708.43066755641, + null, + -188642.19864755738, + -188725.43356871564, + null, + -188642.19864755738, + -188787.61591049863, + null, + -188642.19864755738, + -188680.00271065094, + null, + -188642.19864755738, + -188757.73158761932, + null, + -188642.19864755738, + -188644.0921725751, + null, + -188642.19864755738, + -188716.07523902692, + null, + -188642.19864755738, + -188600.8117161074, + null, + -188642.19864755738, + -188788.02038963212, + null, + -188642.19864755738, + -188656.48788790172, + null, + -188642.19864755738, + -188691.9863820846, + null, + -188642.19864755738, + -188667.12691655773, + null, + -188642.19864755738, + -188676.66102464776, + null, + -188642.19864755738, + -188673.3512738554, + null, + -188642.19864755738, + -188714.69366230932, + null, + -188642.19864755738, + -188770.75855426944, + null, + -188642.19864755738, + -188544.12377281216, + null, + -188642.19864755738, + -188591.63738564984, + null, + -186804.33417873908, + -185674.83275462306, + null, + -186804.33417873908, + -186246.95216782618, + null, + -186804.33417873908, + -186236.7034840598, + null, + -189138.6052683931, + -189295.687458489, + null, + -189186.61889509932, + -189387.7787664935, + null, + -189212.86844851545, + -189483.5622333063, + null, + -189212.86844851545, + -189397.8449691686, + null, + -189212.86844851545, + -189313.9212201251, + null, + -188462.65509945378, + -188203.37135887527, + null, + -188462.65509945378, + -187995.83115505055, + null, + -188462.65509945378, + -187882.34140060403, + null, + -188462.65509945378, + -188654.9371244769, + null, + -188462.65509945378, + -188652.52164832054, + null, + -188462.65509945378, + -188316.35211209787, + null, + -188462.65509945378, + -188437.44986870151, + null, + -188462.65509945378, + -188505.6979547773, + null, + -188462.65509945378, + -188730.1146005567, + null, + -188462.65509945378, + -188626.47518371168, + null, + -188462.65509945378, + -188714.48761648746, + null, + -188462.65509945378, + -188407.52237097285, + null, + -188255.37224721114, + -187878.91877906496, + null, + -188255.37224721114, + -187863.0763505315, + null, + -188255.37224721114, + -187889.46739959446, + null, + -188255.37224721114, + -187978.67714400974, + null, + -188255.37224721114, + -187982.20453415965, + null, + -188039.00270855022, + -187980.56614154446, + null, + -188039.00270855022, + -187803.3143579642, + null, + -188039.00270855022, + -187505.77792284868, + null, + -188039.00270855022, + -187796.48978933724, + null, + -188039.00270855022, + -187993.10500323906, + null, + -188039.00270855022, + -187892.99584382013, + null, + -188214.46720173355, + -187863.0763505315, + null, + -188214.46720173355, + -187878.91877906496, + null, + -188214.46720173355, + -187889.46739959446, + null, + -188214.46720173355, + -187982.20453415965, + null, + -188214.46720173355, + -187978.67714400974, + null, + -188543.17964185297, + -188287.7882146985, + null, + -188551.65872850412, + -188287.7882146985, + null, + -187924.76781139948, + -187439.63154257342, + null, + -187924.76781139948, + -187466.21407558903, + null, + -187594.8777657927, + -188265.91476313816, + null, + -188265.91476313816, + -188215.89141412245, + null, + -188265.91476313816, + -188203.05941331436, + null, + -188265.91476313816, + -188146.49730992244, + null, + -188265.91476313816, + -188353.95691062772, + null, + -188265.91476313816, + -188399.5266737372, + null, + -188265.91476313816, + -188228.87698216413, + null, + -188265.91476313816, + -188298.52438193525, + null, + -188097.6602407291, + -188265.91476313816, + null, + -188620.13710179558, + -188578.58813759126, + null, + -188620.13710179558, + -188544.9844182498, + null, + -188620.13710179558, + -188601.63158519944, + null, + -188797.5960817814, + -188847.38478974465, + null, + -188797.5960817814, + -188862.40951645246, + null, + -188675.01145983627, + -188755.79764277636, + null, + -189585.23416607562, + -190142.2688152774, + null, + -189585.23416607562, + -189802.89679241736, + null, + -189585.23416607562, + -189993.52434262517, + null, + -189585.23416607562, + -190103.40849787297, + null, + -189585.23416607562, + -189715.1922047365, + null, + -189585.23416607562, + -189733.53895609008, + null, + -189585.23416607562, + -189775.83618502063, + null, + -189073.2131275974, + -189503.00303097212, + null, + -187778.6034982877, + -187142.91197584823, + null, + -187778.6034982877, + -187290.77255972844, + null, + -188715.31186791277, + -188686.42209622622, + null, + -188783.67793234484, + -188898.14405130423, + null, + -188686.17124409127, + -188708.29689676486, + null, + -189175.1779532503, + -189038.42168107076, + null, + -189175.1779532503, + -189396.02766328072, + null, + -189175.1779532503, + -189354.12525608385, + null, + -189175.1779532503, + -189618.54146927196, + null, + -189175.1779532503, + -189388.98309752173, + null, + -188752.45189673398, + -188852.3212319449, + null, + -188617.7522841282, + -188580.35998296886, + null, + -187330.48424043634, + -186997.42230628218, + null, + -187330.48424043634, + -187201.35993908736, + null, + -187330.48424043634, + -187014.687885825, + null, + -187330.48424043634, + -187284.51386784925, + null, + -187330.48424043634, + -187064.97682941234, + null, + -187330.48424043634, + -187207.75294265902, + null, + -187330.48424043634, + -187360.87681263685, + null, + -187330.48424043634, + -187356.2702630445, + null, + -187330.48424043634, + -187293.05247629643, + null, + -187330.48424043634, + -187428.0603982613, + null, + -187330.48424043634, + -187177.84871112878, + null, + -187330.48424043634, + -187307.39001224304, + null, + -187330.48424043634, + -187136.34909378062, + null, + -187330.48424043634, + -186899.42802989998, + null, + -187330.48424043634, + -186811.0259265327, + null, + -187330.48424043634, + -187248.96487327036, + null, + -187330.48424043634, + -187252.0636923649, + null, + -187330.48424043634, + -187100.6777743965, + null, + -187330.48424043634, + -187236.13957324318, + null, + -187330.48424043634, + -187245.60588781812, + null, + -187330.48424043634, + -187356.27166993468, + null, + -187330.48424043634, + -187208.07756964676, + null, + -187330.48424043634, + -187185.59605571016, + null, + -187330.48424043634, + -187270.27839081976, + null, + -190049.08294096706, + -190313.3433016634, + null, + -190134.12788602014, + -190457.10477513168, + null, + -189953.43285506195, + -189436.51072175297, + null, + -189436.51072175297, + -189545.14535960605, + null, + -189436.51072175297, + -189494.47629843102, + null, + -189436.51072175297, + -189570.22630755027, + null, + -188825.24595688403, + -188823.48915271257, + null, + -188748.41080724396, + -188865.64963285843, + null, + -188632.32322923772, + -188552.1363584385, + null, + -188632.32322923772, + -188619.1510519812, + null, + -188632.32322923772, + -188607.08239080833, + null, + -188739.89476481508, + -188734.38474404474, + null, + -188739.89476481508, + -188752.95402744415, + null, + -188739.89476481508, + -188809.1513214061, + null, + -188739.89476481508, + -188896.28428937343, + null, + -188739.89476481508, + -188888.90122016604, + null, + -188739.89476481508, + -188735.25527640682, + null, + -188739.89476481508, + -188594.7169153639, + null, + -188739.89476481508, + -188651.0311671839, + null, + -188739.89476481508, + -188776.98081559045, + null, + -188739.89476481508, + -188657.22598614308, + null, + -188739.89476481508, + -188667.12691655773, + null, + -188739.89476481508, + -188838.6412495665, + null, + -188739.89476481508, + -188699.98510029077, + null, + -188739.89476481508, + -188883.2252506061, + null, + -188739.89476481508, + -188861.55098448345, + null, + -188739.89476481508, + -188876.96741627337, + null, + -188739.89476481508, + -188676.7512696058, + null, + -188739.89476481508, + -188762.69707663247, + null, + -188739.89476481508, + -188923.10925551094, + null, + -188739.89476481508, + -188046.39450204067, + null, + -188739.89476481508, + -188763.50010894032, + null, + -188739.89476481508, + -188741.78613036394, + null, + -188739.89476481508, + -188883.2552726653, + null, + -188739.89476481508, + -188621.68315608325, + null, + -188739.89476481508, + -188712.7041078951, + null, + -188739.89476481508, + -188864.32027075288, + null, + -188739.89476481508, + -188881.00360508487, + null, + -188739.89476481508, + -188639.96835899813, + null, + -188739.89476481508, + -188390.8105047042, + null, + -188739.89476481508, + -188762.2940970673, + null, + -188739.89476481508, + -188699.0734942116, + null, + -188739.89476481508, + -188827.92401582585, + null, + -188739.89476481508, + -188894.79960782512, + null, + -188739.89476481508, + -188931.13202414938, + null, + -188739.89476481508, + -188700.56167535784, + null, + -188739.89476481508, + -188794.56392041262, + null, + -188739.89476481508, + -188755.6479228247, + null, + -188739.89476481508, + -188707.19411003264, + null, + -188739.89476481508, + -188708.43066755641, + null, + -188739.89476481508, + -188725.43356871564, + null, + -188739.89476481508, + -188852.1069479377, + null, + -188739.89476481508, + -188953.8661182334, + null, + -188739.89476481508, + -188771.58744733158, + null, + -188739.89476481508, + -188730.8485746518, + null, + -188739.89476481508, + -188701.8704289315, + null, + -188739.89476481508, + -188787.61591049863, + null, + -188739.89476481508, + -188737.72953596013, + null, + -188739.89476481508, + -188660.35107391197, + null, + -188739.89476481508, + -188680.00271065094, + null, + -188739.89476481508, + -188757.73158761932, + null, + -188739.89476481508, + -188853.6550247938, + null, + -188739.89476481508, + -188922.932948625, + null, + -188739.89476481508, + -188644.0921725751, + null, + -188739.89476481508, + -188716.07523902692, + null, + -188739.89476481508, + -188600.8117161074, + null, + -188739.89476481508, + -188957.68048442173, + null, + -188739.89476481508, + -188788.02038963212, + null, + -188739.89476481508, + -188656.48788790172, + null, + -188739.89476481508, + -188799.11774294777, + null, + -188739.89476481508, + -188847.64672820744, + null, + -188739.89476481508, + -188887.03812416104, + null, + -188739.89476481508, + -188451.27752479166, + null, + -188739.89476481508, + -188795.36556420612, + null, + -188739.89476481508, + -188691.9863820846, + null, + -188739.89476481508, + -188747.6297643966, + null, + -188739.89476481508, + -188640.27812372334, + null, + -188739.89476481508, + -188696.12511807954, + null, + -188739.89476481508, + -188675.42898269245, + null, + -188739.89476481508, + -188834.95098552675, + null, + -188739.89476481508, + -188676.66102464776, + null, + -188739.89476481508, + -188763.50635195625, + null, + -188739.89476481508, + -188673.3512738554, + null, + -188739.89476481508, + -188714.69366230932, + null, + -188739.89476481508, + -188857.6640882033, + null, + -188739.89476481508, + -188869.67914135032, + null, + -188739.89476481508, + -188948.13019580705, + null, + -188739.89476481508, + -188881.2122130014, + null, + -188739.89476481508, + -188804.45974852913, + null, + -188739.89476481508, + -188770.75855426944, + null, + -188739.89476481508, + -188807.0153833909, + null, + -188739.89476481508, + -188992.52597648092, + null, + -188739.89476481508, + -188691.38600189023, + null, + -188739.89476481508, + -188544.12377281216, + null, + -188739.89476481508, + -188948.31282661355, + null, + -188739.89476481508, + -188943.01247223295, + null, + -188739.89476481508, + -188666.8490319798, + null, + -188739.89476481508, + -188591.63738564984, + null, + -188763.09490078397, + -188852.1069479377, + null, + -188763.09490078397, + -188676.66102464776, + null, + -188763.09490078397, + -188680.00271065094, + null, + -188763.09490078397, + -188735.25527640682, + null, + -188763.09490078397, + -188691.9863820846, + null, + -188763.09490078397, + -188657.22598614308, + null, + -188763.09490078397, + -188883.2252506061, + null, + -188763.09490078397, + -188594.7169153639, + null, + -187046.38487493325, + -186755.8790869865, + null, + -187046.38487493325, + -187055.96567581533, + null, + -187046.38487493325, + -186938.30669909163, + null, + -187046.38487493325, + -186939.5914131338, + null, + -187046.38487493325, + -186968.9595965698, + null, + -187046.38487493325, + -186973.58842409158, + null, + -187046.38487493325, + -186996.0641120089, + null, + -187046.38487493325, + -186927.14507917225, + null, + -187967.45205088542, + -188126.36856649444, + null, + -188236.06352852797, + -188203.37135887527, + null, + -188236.06352852797, + -187989.0606507604, + null, + -188236.06352852797, + -188485.64839138108, + null, + -188236.06352852797, + -188345.30883986986, + null, + -188236.06352852797, + -188024.0209446362, + null, + -188236.06352852797, + -188437.44986870151, + null, + -188236.06352852797, + -187981.19938609967, + null, + -188236.06352852797, + -188370.6918408433, + null, + -188236.06352852797, + -188372.59542666713, + null, + -188236.06352852797, + -188407.52237097285, + null, + -188236.06352852797, + -188290.10180168305, + null, + -188236.06352852797, + -188180.75968110925, + null, + -187916.56938459937, + -188024.0209446362, + null, + -187916.56938459937, + -188032.18651155845, + null, + -188277.7110845498, + -188456.66581593105, + null, + -188277.7110845498, + -188411.54018031366, + null, + -188277.7110845498, + -188530.56183519625, + null, + -188277.7110845498, + -188603.7382084354, + null, + -188277.7110845498, + -188526.96284229629, + null, + -187856.57507774787, + -188044.24931373517, + null, + -186448.0761262461, + -186594.78042197166, + null, + -186448.0761262461, + -186557.0441814957, + null, + -187372.14693328072, + -187450.78776177226, + null, + -187372.14693328072, + -187654.4132413958, + null, + -186283.60700347682, + -186713.31626898306, + null, + -186713.31626898306, + -186885.37838974773, + null, + -186870.78214397354, + -186713.31626898306, + null, + -186713.31626898306, + -185830.3568996049, + null, + -188161.6300058421, + -188680.00271065094, + null, + -188161.6300058421, + -188657.22598614308, + null, + -188161.6300058421, + -188594.7169153639, + null, + -188161.6300058421, + -188699.98510029077, + null, + -188161.6300058421, + -188675.42898269245, + null, + -188161.6300058421, + -188451.27752479166, + null, + -188161.6300058421, + -188691.9863820846, + null, + -188161.6300058421, + -188676.66102464776, + null, + -187294.3067848806, + -187298.15982685503, + null, + -187587.45047793945, + -187654.50341685605, + null, + -187587.45047793945, + -188287.7882146985, + null, + -189873.55077472897, + -190240.44111720624, + null, + -189873.55077472897, + -190204.69430696947, + null, + -189873.55077472897, + -190247.32743206137, + null, + -189873.55077472897, + -190116.23170855152, + null, + -187521.8824872184, + -187630.0455403068, + null, + -187521.8824872184, + -185937.20459336432, + null, + -187594.8777657927, + -188348.79948910305, + null, + -188109.5947916895, + -188348.79948910305, + null, + -188135.7951117508, + -188348.79948910305, + null, + -188126.67429510137, + -188348.79948910305, + null, + -188068.89540782082, + -188348.79948910305, + null, + -188138.17806449422, + -188348.79948910305, + null, + -188113.8147030654, + -188348.79948910305, + null, + -188119.49823623613, + -188348.79948910305, + null, + -188123.9780570342, + -188348.79948910305, + null, + -188121.51859750494, + -188348.79948910305, + null, + -188082.81454332572, + -188348.79948910305, + null, + -188023.85098966694, + -188348.79948910305, + null, + -188038.4334288893, + -188348.79948910305, + null, + -188097.6602407291, + -188348.79948910305, + null, + -188124.65543545736, + -188348.79948910305, + null, + -188079.8329504583, + -188348.79948910305, + null, + -188129.3743830729, + -188348.79948910305, + null, + -189862.6413098155, + -189822.41604996356, + null, + -189862.6413098155, + -190052.50408411375, + null, + -189857.14185344288, + -189978.73620741625, + null, + -189824.66753653612, + -189991.84017777976, + null, + -189824.66753653612, + -189927.37323736722, + null, + -189879.5254089133, + -189963.82074388396, + null, + -189879.5254089133, + -189953.3400875045, + null, + -189879.5254089133, + -190023.03157957617, + null, + -190932.80865181403, + -191196.78522172087, + null, + -189214.1812788162, + -188333.69361629503, + null, + -192162.3269836861, + -192597.09524694833, + null, + -192524.44290793836, + -192895.82000379864, + null, + -192524.44290793836, + -192937.6195482761, + null, + -192524.44290793836, + -192963.4726938061, + null, + -192115.1138136991, + -192528.2497704212, + null, + -188972.92135698648, + -188657.22598614308, + null, + -188972.92135698648, + -188707.19411003264, + null, + -188972.92135698648, + -188864.32027075288, + null, + -188972.92135698648, + -188594.7169153639, + null, + -188972.92135698648, + -188700.56167535784, + null, + -188972.92135698648, + -188680.00271065094, + null, + -188972.92135698648, + -188716.07523902692, + null, + -188972.92135698648, + -188691.9863820846, + null, + -188972.92135698648, + -188676.66102464776, + null, + -188972.92135698648, + -188998.86112254602, + null, + -188972.92135698648, + -189079.51045495822, + null, + -188972.92135698648, + -188948.31282661355, + null, + -188972.92135698648, + -189030.98601303186, + null, + -188972.92135698648, + -188544.12377281216, + null, + -187594.8777657927, + -188186.38974025362, + null, + -188109.5947916895, + -188186.38974025362, + null, + -188135.7951117508, + -188186.38974025362, + null, + -188126.67429510137, + -188186.38974025362, + null, + -188068.89540782082, + -188186.38974025362, + null, + -188138.17806449422, + -188186.38974025362, + null, + -188113.8147030654, + -188186.38974025362, + null, + -188119.49823623613, + -188186.38974025362, + null, + -188123.9780570342, + -188186.38974025362, + null, + -188121.51859750494, + -188186.38974025362, + null, + -188082.81454332572, + -188186.38974025362, + null, + -188023.85098966694, + -188186.38974025362, + null, + -188038.4334288893, + -188186.38974025362, + null, + -188097.6602407291, + -188186.38974025362, + null, + -188124.65543545736, + -188186.38974025362, + null, + -188079.8329504583, + -188186.38974025362, + null, + -188129.3743830729, + -188186.38974025362, + null, + -189043.94703463372, + -189281.1745312478, + null, + -188886.17592031375, + -188992.39721257958, + null, + -189232.21457982747, + -189440.84837420477, + null, + -189232.21457982747, + -189362.363551564, + null, + -189232.21457982747, + -189418.5635541344, + null, + -189232.21457982747, + -189367.09601308653, + null, + -189232.21457982747, + -189536.60395080398, + null, + -187459.03461725367, + -187581.6603888008, + null, + -188430.993490856, + -189254.12345730932, + null, + -188430.993490856, + -188977.17868152083, + null, + -187734.42575994402, + -187803.3143579642, + null, + -187734.42575994402, + -187980.56614154446, + null, + -187734.42575994402, + -187905.2037860304, + null, + -187734.42575994402, + -187993.10500323906, + null, + -187734.42575994402, + -187505.77792284868, + null, + -187621.21937398304, + -187785.48520829526, + null, + -187659.66124892057, + -187828.0449700697, + null, + -187659.66124892057, + -187557.52973979575, + null, + -187626.4788257705, + -187632.458215042, + null, + -188263.86255790308, + -188595.05397402454, + null, + -188263.86255790308, + -188155.6028932805, + null, + -188263.86255790308, + -188621.10935024044, + null, + -188263.86255790308, + -188522.2186210146, + null, + -188263.86255790308, + -188456.7527854188, + null, + -188263.86255790308, + -188417.53740720224, + null, + -188263.86255790308, + -187912.95191827603, + null, + -188263.86255790308, + -188406.84414023338, + null, + -187444.98398375107, + -187368.52340470123, + null, + -187212.75750088846, + -187368.52340470123, + null, + -187393.45287008572, + -187368.52340470123, + null, + -187430.50547179487, + -187368.52340470123, + null, + -187206.375494998, + -187368.52340470123, + null, + -187142.3027271855, + -187368.52340470123, + null, + -187348.7681817943, + -187435.4461049656, + null, + -187348.7681817943, + -187231.93304935156, + null, + -187348.7681817943, + -187435.52201434693, + null, + -187348.7681817943, + -187501.4728511325, + null, + -187682.18281394336, + -187668.08951668267, + null, + -187682.18281394336, + -187993.50997306354, + null, + -187682.18281394336, + -187501.4728511325, + null, + -187682.18281394336, + -188006.68124746092, + null, + -187682.18281394336, + -187708.40512644028, + null, + -186584.2836090355, + -186055.02259865488, + null, + -188630.62199919912, + -188147.31119030315, + null, + -188630.62199919912, + -188675.0008515813, + null, + -189687.1717524016, + -189810.78317731756, + null, + -189687.1717524016, + -189703.3002225872, + null, + -189687.1717524016, + -189794.89106257277, + null, + -189687.1717524016, + -189741.9662685643, + null, + -189687.1717524016, + -189717.23712618652, + null, + -189687.1717524016, + -189900.2372679593, + null, + -189687.1717524016, + -189825.69648692242, + null, + -189392.44618215397, + -189503.00303097212, + null, + -187036.08464524065, + -188055.04528261707, + null, + -187036.08464524065, + -187226.894383661, + null, + -187036.08464524065, + -187178.20205640906, + null, + -187036.08464524065, + -187389.64718967053, + null, + -187036.08464524065, + -187136.8960553202, + null, + -185139.07792481993, + -185238.39783400472, + null, + -185139.72357748792, + -185242.5030415149, + null, + -185223.1558109515, + -185345.7950604921, + null, + -185302.5690199798, + -185410.27123301756, + null, + -185302.5690199798, + -185416.34499830386, + null, + -185302.5690199798, + -185342.93001344596, + null, + -185302.5690199798, + -185340.5244730282, + null, + -185302.5690199798, + -185450.9592763067, + null, + -187760.736691232, + -188074.3879708484, + null, + -187760.736691232, + -188044.7241588103, + null, + -187760.736691232, + -189002.53982306406, + null, + -187760.736691232, + -188191.30626510383, + null, + -187760.736691232, + -188068.61579568117, + null, + -187760.736691232, + -187947.28406376718, + null, + -187476.2628433151, + -187639.40616431175, + null, + -187427.76982279553, + -187644.44181296264, + null, + -187674.51102416526, + -187708.90496310382, + null, + -187674.51102416526, + -187881.68699067866, + null, + -187674.51102416526, + -187821.27637982904, + null, + -187674.51102416526, + -187816.77484224085, + null, + -187674.51102416526, + -187778.33799052887, + null, + -187674.51102416526, + -187888.0480726681, + null, + -187674.51102416526, + -187900.6198216651, + null, + -187674.51102416526, + -187767.44388922982, + null, + -187674.51102416526, + -187824.64761095232, + null, + -188223.1502255291, + -188557.4596234686, + null, + -188223.1502255291, + -188502.3898432576, + null, + -188223.1502255291, + -188505.68688054534, + null, + -188223.1502255291, + -188469.82315365504, + null, + -188223.1502255291, + -188505.51258337646, + null, + -188223.8025959115, + -188557.4596234686, + null, + -188223.8025959115, + -188502.3898432576, + null, + -188223.8025959115, + -188505.68688054534, + null, + -188223.8025959115, + -188482.3157020377, + null, + -188223.8025959115, + -188505.51258337646, + null, + -188238.87170758605, + -188482.3157020377, + null, + -188238.87170758605, + -188557.4596234686, + null, + -188238.87170758605, + -188505.68688054534, + null, + -188238.87170758605, + -188502.3898432576, + null, + -188238.87170758605, + -188505.51258337646, + null, + -187003.89280649187, + -186946.49920168173, + null, + -186761.60951942398, + -186875.07184791236, + null, + -186761.60951942398, + -186883.20867396414, + null, + -187272.80604379578, + -187589.55648392823, + null, + -187272.80604379578, + -187225.69080118512, + null, + -187272.80604379578, + -187803.3143579642, + null, + -187272.80604379578, + -187537.9427673691, + null, + -187924.91100981052, + -188592.69741300648, + null, + -187924.91100981052, + -188286.14667897578, + null, + -187924.91100981052, + -188735.71532723514, + null, + -187924.91100981052, + -188530.56183519625, + null, + -187924.91100981052, + -188316.35211209787, + null, + -187924.91100981052, + -188172.5591447211, + null, + -187924.91100981052, + -188398.48892919585, + null, + -187924.91100981052, + -188163.391662388, + null, + -186903.6585095412, + -187905.2037860304, + null, + -186903.6585095412, + -187225.69080118512, + null, + -187363.62555888496, + -187803.3143579642, + null, + -187363.62555888496, + -187882.34140060403, + null, + -187363.62555888496, + -187804.12340613295, + null, + -187363.62555888496, + -187905.2037860304, + null, + -187363.62555888496, + -187995.83115505055, + null, + -187363.62555888496, + -187537.9427673691, + null, + -185290.586235629, + -185577.83795216106, + null, + -187636.6401471091, + -187501.71933425503, + null, + -187636.6401471091, + -187587.08880175353, + null, + -187636.6401471091, + -187521.54406894254, + null, + -187838.56400906073, + -188028.0949108722, + null, + -187819.29574656484, + -188061.22295862038, + null, + -187819.29574656484, + -187654.4132413958, + null, + -188059.9314632963, + -188256.72208444707, + null, + -188290.363652496, + -188476.10056489505, + null, + -188290.363652496, + -188485.98826566394, + null, + -188290.363652496, + -188518.84975849348, + null, + -188290.363652496, + -188518.25470222684, + null, + -188290.363652496, + -188453.06253164104, + null, + -188290.363652496, + -188396.41158598493, + null, + -188290.363652496, + -188345.5402286827, + null, + -188290.363652496, + -188383.97417014395, + null, + -188099.9720945511, + -188397.65911864082, + null, + -188099.9720945511, + -188327.75352780774, + null, + -188099.9720945511, + -188011.48721764886, + null, + -188099.9720945511, + -188302.3685863598, + null, + -188099.9720945511, + -188359.7452217864, + null, + -187941.9237365848, + -188067.38926369348, + null, + -188412.73187816486, + -188501.6178230978, + null, + -188208.82409906888, + -188399.1066065768, + null, + -187463.4585977219, + -187069.10866048117, + null, + -187463.4585977219, + -187567.7001615884, + null, + -186479.6446350026, + -186675.79639052547, + null, + -186479.6446350026, + -186707.68769738608, + null, + -187298.47957976593, + -188333.69361629503, + null, + -186539.61527157956, + -186889.37334551246, + null, + -186056.69045446397, + -186291.1911451345, + null, + -186802.7182162248, + -187679.11051665375, + null, + -186802.7182162248, + -186989.15942660804, + null, + -185550.27627308652, + -185853.3718166437, + null, + -187045.1102206911, + -187271.08204112732, + null, + -187073.15041134102, + -187348.63421752062, + null, + -187254.26535223567, + -187554.30501214246, + null, + -187254.26535223567, + -187649.85293612428, + null, + -187989.30944414838, + -188557.4596234686, + null, + -187989.30944414838, + -188502.3898432576, + null, + -187989.30944414838, + -188505.68688054534, + null, + -187989.30944414838, + -188469.82315365504, + null, + -187989.30944414838, + -188505.51258337646, + null, + -188000.4487104779, + -188557.4596234686, + null, + -188000.4487104779, + -188502.3898432576, + null, + -188000.4487104779, + -188505.68688054534, + null, + -188000.4487104779, + -188469.82315365504, + null, + -188000.4487104779, + -188505.51258337646, + null, + -187906.78280195483, + -188557.4596234686, + null, + -187906.78280195483, + -188502.3898432576, + null, + -187906.78280195483, + -188505.68688054534, + null, + -187906.78280195483, + -188469.82315365504, + null, + -187906.78280195483, + -188505.51258337646, + null, + -186681.1635380391, + -186879.65209386378, + null, + -186905.37079495806, + -187244.61048096724, + null, + -186905.37079495806, + -187154.04340592172, + null, + -187920.62374587829, + -188055.34361729486, + null, + -187920.62374587829, + -188355.8864917371, + null, + -187659.66132080328, + -188203.37135887527, + null, + -187659.66132080328, + -188024.0209446362, + null, + -187659.66132080328, + -187989.0606507604, + null, + -187659.66132080328, + -187981.19938609967, + null, + -187484.91206357404, + -187692.31182614467, + null, + -187484.91206357404, + -187889.46739959446, + null, + -187484.91206357404, + -187863.0763505315, + null, + -187484.91206357404, + -187878.91877906496, + null, + -186546.9811101811, + -186640.3528644003, + null, + -186546.9811101811, + -186681.88272520696, + null, + -186546.9811101811, + -186350.56007629345, + null, + -186546.9811101811, + -186557.0595740633, + null, + -187389.5387646811, + -187487.54660540985, + null, + -187389.5387646811, + -187371.21086043568, + null, + -187389.5387646811, + -187303.41224789037, + null, + -187389.5387646811, + -187587.08880175353, + null, + -187389.5387646811, + -187828.0449700697, + null, + -187389.5387646811, + -187411.98825159538, + null, + -187389.5387646811, + -187557.52973979575, + null, + -187389.5387646811, + -187463.35967468497, + null, + -187389.5387646811, + -187501.71933425503, + null, + -187389.5387646811, + -187318.19430842687, + null, + -187389.5387646811, + -187521.54406894254, + null, + -187389.5387646811, + -187437.8841669884, + null, + -185839.00663893652, + -186033.67372700493, + null, + -185839.00663893652, + -186008.7916507735, + null, + -185839.00663893652, + -186078.14045517158, + null, + -185839.00663893652, + -186108.63102585988, + null, + -185839.00663893652, + -186078.14045517158, + null, + -186743.67631044146, + -186939.9285527728, + null, + -186743.67631044146, + -186936.38431708724, + null, + -186743.67631044146, + -186972.09442050973, + null, + -186743.67631044146, + -186879.7359633921, + null, + -186743.67631044146, + -186984.41818152944, + null, + -186943.91875814958, + -187704.1856572577, + null, + -185611.65728113687, + -185969.2729297153, + null, + -185611.65728113687, + -185798.58472768634, + null, + -185611.65728113687, + -185870.23223539593, + null, + -189084.9074632962, + -189292.95169776288, + null, + -189084.9074632962, + -189494.6934112341, + null, + -189084.9074632962, + -189326.24295138277, + null, + -189084.9074632962, + -189480.1865117243, + null, + -189084.9074632962, + -189446.34306059004, + null, + -189084.9074632962, + -189358.18497589478, + null, + -189084.9074632962, + -189404.17320247806, + null, + -189084.9074632962, + -189424.709689385, + null, + -189084.9074632962, + -189265.0231138431, + null, + -189084.9074632962, + -189372.33628926397, + null, + -189084.9074632962, + -189458.1241264266, + null, + -189084.9074632962, + -189369.65899546578, + null, + -189084.9074632962, + -189129.6599752958, + null, + -189084.9074632962, + -189372.64547062907, + null, + -189084.9074632962, + -189590.7531448757, + null, + -189084.9074632962, + -189597.24984633556, + null, + -189084.9074632962, + -189426.05987348396, + null, + -189084.9074632962, + -189826.67274452065, + null, + -189084.9074632962, + -189409.23422673906, + null, + -189084.9074632962, + -189286.6328264702, + null, + -189084.9074632962, + -189389.49688049342, + null, + -189084.9074632962, + -189313.74074668097, + null, + -187484.60913141377, + -187751.72083891128, + null, + -186793.02846859442, + -187076.09070858092, + null, + -186643.42136934042, + -186912.38462175036, + null, + -187063.1911515589, + -188013.20672022508, + null, + -188748.28453514946, + -189470.92179911264, + null, + -188748.28453514946, + -188965.47987347044, + null, + -188748.28453514946, + -189069.16209137047, + null, + -188748.28453514946, + -189102.77715540328, + null, + -188748.28453514946, + -189135.83882498092, + null, + -188748.28453514946, + -189479.04798828842, + null, + -188748.28453514946, + -188978.2368169874, + null, + -188748.28453514946, + -188961.64872165, + null, + -188748.28453514946, + -189474.05881109604, + null, + -188748.28453514946, + -189021.61764845366, + null, + -188439.97049711825, + -189172.6969553096, + null, + -188439.97049711825, + -189249.40564514752, + null, + -188439.97049711825, + -188762.91719638073, + null, + -187368.1489177038, + -187661.2072276682, + null, + -185263.2297970409, + -185455.67429735223, + null, + -185263.2297970409, + -185449.35314495498, + null, + -185482.56088321618, + -185711.47020234595, + null, + -185482.56088321618, + -185720.25737344744, + null, + -185673.3450969795, + -185791.17667712452, + null, + -185642.18789406322, + -185644.0000068018, + null, + -185642.18789406322, + -185702.2403112886, + null, + -185642.18789406322, + -185714.91162220383, + null, + -186143.89671308498, + -185966.1274989558, + null, + -186143.89671308498, + -186029.8168894544, + null, + -186143.89671308498, + -185980.73022512393, + null, + -186143.89671308498, + -185918.62006951767, + null, + -186143.89671308498, + -186074.34110850515, + null, + -186143.89671308498, + -185967.65473758016, + null, + -186143.89671308498, + -185912.79278654896, + null, + -186143.89671308498, + -185910.2529198803, + null, + -186143.89671308498, + -186074.93122414872, + null, + -186143.89671308498, + -186001.86051648084, + null, + -186797.5306394901, + -186832.7195104887, + null, + -186312.18585102723, + -186108.97183798853, + null, + -186312.18585102723, + -186102.11742970758, + null, + -186312.18585102723, + -186268.66597161358, + null, + -186312.18585102723, + -186147.42151117936, + null, + -186312.18585102723, + -186134.44552984045, + null, + -186312.18585102723, + -186116.22553471103, + null, + -186312.18585102723, + -186240.78791235245, + null, + -186312.18585102723, + -186220.0874551632, + null, + -186312.18585102723, + -186211.2465119336, + null, + -185867.34727359438, + -185721.6361586473, + null, + -185867.34727359438, + -185731.8584489242, + null, + -185867.34727359438, + -185807.2781334582, + null, + -185867.34727359438, + -185677.78297079756, + null, + -185867.34727359438, + -185777.8946131462, + null, + -185867.34727359438, + -185711.15775236682, + null, + -185867.34727359438, + -185463.91840826042, + null, + -185867.34727359438, + -185433.64652967916, + null, + -185867.34727359438, + -185662.1639660892, + null, + -185867.34727359438, + -185822.67958441644, + null, + -185867.34727359438, + -186298.50636453225, + null, + -185867.34727359438, + -185689.56644176925, + null, + -185867.34727359438, + -185438.26027515047, + null, + -185867.34727359438, + -185409.17303563593, + null, + -186375.3612237879, + -186224.27135727915, + null, + -186375.3612237879, + -186298.08317751426, + null, + -186375.3612237879, + -186345.2599174619, + null, + -186375.3612237879, + -186205.19783801437, + null, + -186375.3612237879, + -186247.72530939055, + null, + -186375.3612237879, + -186256.56822646176, + null, + -186375.3612237879, + -186150.59933272027, + null, + -186375.3612237879, + -186288.81160163097, + null, + -187561.3991996525, + -187803.3143579642, + null, + -187561.3991996525, + -187980.56614154446, + null, + -187561.3991996525, + -187905.2037860304, + null, + -187561.3991996525, + -187993.10500323906, + null, + -187561.3991996525, + -187505.77792284868, + null, + -187194.3312948634, + -187803.3143579642, + null, + -187194.3312948634, + -187443.3928854305, + null, + -187194.3312948634, + -187761.06000681227, + null, + -187194.3312948634, + -187452.1772530611, + null, + -187194.3312948634, + -187642.96896241207, + null, + -185589.1946310685, + -185878.00221058106, + null, + -185589.1946310685, + -185807.32743469166, + null, + -185589.1946310685, + -185902.22732454303, + null, + -186662.39995437322, + -187557.52973979575, + null, + -186405.03105329376, + -186606.81926120326, + null, + -187628.5971893858, + -186892.55000415185, + null, + -186892.55000415185, + -186877.613094899, + null, + -187294.12286925653, + -188287.7882146985, + null, + -187294.12286925653, + -187647.5690992496, + null, + -186270.0295100747, + -186476.53578284683, + null, + -186270.0295100747, + -186438.41734368665, + null, + -186270.0295100747, + -186573.2937496868, + null, + -186270.0295100747, + -186502.02138871377, + null, + -186078.48063323216, + -186349.21861987398, + null, + -186078.48063323216, + -186310.0223569153, + null, + -186075.9211697261, + -186274.76857716416, + null, + -186075.9211697261, + -186331.85276631886, + null, + -185912.47186195152, + -185983.7434419839, + null, + -185912.47186195152, + -185818.1346321836, + null, + -185961.2957648515, + -186002.50966320807, + null, + -185961.2957648515, + -186042.88912072591, + null, + -185961.2957648515, + -186121.47925284848, + null, + -186232.2255226064, + -186717.06241415057, + null, + -185912.22434019603, + -185916.95262886243, + null, + -185912.22434019603, + -185806.39721748504, + null, + -185580.70430677492, + -185580.1522161938, + null, + -185946.11501890482, + -185880.08983432362, + null, + -185946.11501890482, + -185934.5985057661, + null, + -185946.11501890482, + -186056.47685413636, + null, + -187393.59499414876, + -188333.69361629503, + null, + -187309.87049034002, + -188285.55395057393, + null, + -187472.30498547002, + -187823.113834285, + null, + -187472.30498547002, + -187877.20307305898, + null, + -188817.03562402542, + -189002.53982306406, + null, + -188817.03562402542, + -189116.18185272234, + null, + -188817.03562402542, + -189150.4406044805, + null, + -188817.03562402542, + -189671.86798061224, + null, + -188817.03562402542, + -189062.64094765644, + null, + -188817.03562402542, + -189084.98088599712, + null, + -188817.03562402542, + -189112.29607800412, + null, + -188817.03562402542, + -189029.52319166693, + null, + -188817.03562402542, + -189143.4111983908, + null, + -188817.03562402542, + -189055.97021726094, + null, + -188817.03562402542, + -189166.74178145034, + null, + -188817.03562402542, + -189245.6231883351, + null, + -187333.3919005783, + -187672.05038897906, + null, + -187868.89767386837, + -188557.4596234686, + null, + -187868.89767386837, + -188502.3898432576, + null, + -187868.89767386837, + -188505.68688054534, + null, + -187868.89767386837, + -188469.82315365504, + null, + -187868.89767386837, + -188505.51258337646, + null, + -186633.25689314547, + -186892.24831707022, + null, + -185460.96898446843, + -185501.22940075284, + null, + -185628.17632635156, + -185887.9116084029, + null, + -185628.17632635156, + -185852.81758394415, + null, + -186311.45221873518, + -186551.7145795559, + null, + -187196.24604930566, + -187426.84525135905, + null, + -187196.24604930566, + -188268.3002336887, + null, + -187196.24604930566, + -187378.69444328308, + null, + -187276.60266658547, + -187966.5095326889, + null, + -187276.60266658547, + -187873.16679846472, + null, + -187276.60266658547, + -187761.06000681227, + null, + -187276.60266658547, + -187803.3143579642, + null, + -186565.47062728266, + -186788.20187772284, + null, + -186565.47062728266, + -186763.38064184826, + null, + -186565.47062728266, + -186701.82275168115, + null, + -187852.313928534, + -187873.16679846472, + null, + -187852.313928534, + -187761.06000681227, + null, + -187852.313928534, + -187966.5095326889, + null, + -187852.313928534, + -188314.138705119, + null, + -187557.78543535888, + -187817.7468885494, + null, + -187557.78543535888, + -187557.52973979575, + null, + -187719.1913994157, + -187817.7468885494, + null, + -187719.1913994157, + -188092.37659809837, + null, + -187972.83650257328, + -188180.72176382353, + null, + -187972.83650257328, + -188414.69558309155, + null, + -187972.83650257328, + -188059.4601945175, + null, + -187972.83650257328, + -188373.40505639598, + null, + -187972.83650257328, + -188264.2195934443, + null, + -187960.29676871523, + -188320.12878054316, + null, + -187960.29676871523, + -188279.3082778884, + null, + -187960.29676871523, + -188259.35815363447, + null, + -187960.29676871523, + -188381.41438960162, + null, + -187960.29676871523, + -188456.62670565912, + null, + -187960.29676871523, + -188203.95744939387, + null, + -187911.10264278692, + -188336.02952000388, + null, + -187911.10264278692, + -188267.72042267103, + null, + -188630.8453506235, + -189029.3114905367, + null, + -188630.8453506235, + -189629.98277226143, + null, + -188630.8453506235, + -189142.84215571234, + null, + -187808.73897039745, + -187496.3832271789, + null, + -188349.65680053786, + -188622.02436373147, + null, + -188349.65680053786, + -188630.3315350438, + null, + -185809.88961724282, + -185323.49054395297, + null, + -185809.88961724282, + -185924.99338734476, + null, + -185809.88961724282, + -185895.40664220214, + null, + -186934.3360415499, + -187147.5761046197, + null, + -186934.3360415499, + -187108.92789936063, + null, + -187629.56098631225, + -187993.21676425092, + null, + -187629.56098631225, + -187922.35810760508, + null, + -187629.56098631225, + -187892.88679803116, + null, + -187629.56098631225, + -188011.48721764886, + null, + -187291.49824795782, + -187666.8726984889, + null, + -187291.49824795782, + -187557.1706597231, + null, + -186121.19306263936, + -186313.83578554614, + null, + -187012.46365318543, + -188083.38799385336, + null, + -187012.46365318543, + -187259.12778693333, + null, + -187012.46365318543, + -187273.5342161505, + null, + -187012.46365318543, + -187331.86667688502, + null, + -187012.46365318543, + -187331.38102223023, + null, + -187012.46365318543, + -187227.1136100382, + null, + -187012.46365318543, + -187171.76294520684, + null, + -187012.46365318543, + -187181.90006387417, + null, + -187012.46365318543, + -187306.32934127536, + null, + -186679.30936474973, + -187243.66628145642, + null, + -186679.30936474973, + -187271.48480846945, + null, + -186679.30936474973, + -187256.19230974244, + null, + -185419.46969980895, + -185657.2917482269, + null, + -185379.2656174194, + -185666.85028914805, + null, + -185379.2656174194, + -185591.8222642259, + null, + -186901.45563588393, + -187103.63428327104, + null, + -187807.15683063408, + -188013.20672022508, + null, + -187807.15683063408, + -188285.55395057393, + null, + -187807.15683063408, + -188412.44037557312, + null, + -187807.15683063408, + -188215.72460135946, + null, + -187807.15683063408, + -188245.38363355384, + null, + -187807.15683063408, + -188355.1199264169, + null, + -187807.15683063408, + -188259.72638644718, + null, + -187807.15683063408, + -188288.50808971204, + null, + -187807.15683063408, + -188238.33374197048, + null, + -187807.15683063408, + -188209.54055470478, + null, + -187994.28122602464, + -188477.04377820794, + null, + -187994.28122602464, + -188285.55395057393, + null, + -187994.28122602464, + -188215.72460135946, + null, + -187994.28122602464, + -188522.74551045886, + null, + -187994.28122602464, + -188441.11342678487, + null, + -187994.28122602464, + -188222.8670521776, + null, + -187994.28122602464, + -188504.64148423215, + null, + -187994.28122602464, + -188362.19832204955, + null, + -187308.64998441696, + -187529.6417177125, + null, + -187308.64998441696, + -187434.5731242961, + null, + -188350.75252464804, + -189038.42168107076, + null, + -188350.75252464804, + -188911.4706511093, + null, + -188350.75252464804, + -188870.41996378027, + null, + -188350.75252464804, + -188912.98164239828, + null, + -188350.75252464804, + -188632.7958142112, + null, + -188350.75252464804, + -188887.7173625151, + null, + -188350.75252464804, + -188914.53959732346, + null, + -188350.75252464804, + -188840.2951461584, + null, + -188350.75252464804, + -188878.15425177375, + null, + -186863.31396841115, + -187021.88931313905, + null, + -187720.11017674877, + -188325.55852082116, + null, + -187287.84841348106, + -187431.9043514244, + null, + -187287.84841348106, + -187477.0269830232, + null, + -187234.71318697152, + -187338.2293802138, + null, + -187234.71318697152, + -187320.91315713827, + null, + -187291.09671769937, + -187227.73220051124, + null, + -187291.09671769937, + -187345.71837811806, + null, + -187609.4187582251, + -187980.56614154446, + null, + -187609.4187582251, + -187803.3143579642, + null, + -187609.4187582251, + -187505.77792284868, + null, + -187609.4187582251, + -187993.10500323906, + null, + -187609.4187582251, + -188052.40549977424, + null, + -187609.4187582251, + -187882.34140060403, + null, + -187609.4187582251, + -187796.48978933724, + null, + -187609.4187582251, + -188041.43930099072, + null, + -187609.4187582251, + -187892.99584382013, + null, + -187718.59193484212, + -187812.29264323704, + null, + -186283.60700347682, + -186509.34289278075, + null, + -186509.34289278075, + -186877.613094899, + null, + -186509.34289278075, + -186885.37838974773, + null, + -186509.34289278075, + -186917.61345703408, + null, + -186870.78214397354, + -186509.34289278075, + null, + -186509.34289278075, + -185830.3568996049, + null, + -188147.50652534553, + -188439.03343750766, + null, + -188147.50652534553, + -188408.0615378219, + null, + -188147.50652534553, + -188313.1182042166, + null, + -188147.50652534553, + -188352.28480591113, + null, + -188147.50652534553, + -188446.83179684373, + null, + -188147.50652534553, + -188296.7781034227, + null, + -188147.50652534553, + -188380.76386155013, + null, + -188147.50652534553, + -188414.5214674675, + null, + -188147.50652534553, + -188231.59919262267, + null, + -188147.50652534553, + -188324.05487145262, + null, + -188147.50652534553, + -188410.1995272695, + null, + -188147.50652534553, + -188137.98152500016, + null, + -188147.50652534553, + -188169.61385914954, + null, + -188147.50652534553, + -188305.0884720353, + null, + -188147.50652534553, + -188124.0392341609, + null, + -188147.50652534553, + -188417.5878908665, + null, + -188147.50652534553, + -188663.34908135253, + null, + -188147.50652534553, + -188385.25230416303, + null, + -188147.50652534553, + -188342.91289083599, + null, + -188147.50652534553, + -188370.81252883916, + null, + -188147.50652534553, + -188341.34483720383, + null, + -188147.50652534553, + -188301.141957558, + null, + -188147.50652534553, + -188351.53178116586, + null, + -188147.50652534553, + -188385.78051688513, + null, + -186442.0690847481, + -186621.86407557828, + null, + -186442.0690847481, + -186437.83235122028, + null, + -186442.0690847481, + -186648.74080964338, + null, + -186558.77337581848, + -186693.89186781415, + null, + -186655.24842534095, + -187014.687885825, + null, + -186655.24842534095, + -186609.15991015043, + null, + -186655.24842534095, + -186997.42230628218, + null, + -186655.24842534095, + -186811.0259265327, + null, + -186655.24842534095, + -186541.94642658572, + null, + -186655.24842534095, + -186694.5596479308, + null, + -185972.4842459763, + -186029.39161897544, + null, + -185972.4842459763, + -185985.24596467766, + null, + -185972.4842459763, + -186029.39161897544, + null, + -185153.37826635112, + -185111.35544820773, + null, + -185070.59019309614, + -184878.2925505224, + null, + -185070.59019309614, + -185463.91840826042, + null, + -185070.59019309614, + -184900.92048438126, + null, + -185070.59019309614, + -184980.95907930352, + null, + -185070.59019309614, + -184830.82603230205, + null, + -185070.59019309614, + -185438.26027515047, + null, + -185070.59019309614, + -184985.15467209017, + null, + -185070.59019309614, + -184866.84489150278, + null, + -185070.59019309614, + -185433.64652967916, + null, + -185070.59019309614, + -185409.17303563593, + null, + -185070.59019309614, + -184971.35089743548, + null, + -185070.59019309614, + -184817.5826812654, + null, + -185070.59019309614, + -184926.39571750653, + null, + -187673.30496193952, + -187944.50525826582, + null, + -187673.30496193952, + -187830.56628117207, + null, + -187673.30496193952, + -187777.7246566672, + null, + -187673.30496193952, + -187860.09405448032, + null, + -187673.30496193952, + -188340.82871420533, + null, + -187761.64483234545, + -188401.64732672213, + null, + -187761.64483234545, + -189010.69702649902, + null, + -186558.77337581848, + -187256.5867709403, + null, + -186655.24842534095, + -187256.5867709403, + null, + -187366.18291352072, + -187565.0428723036, + null, + -187524.54517428228, + -187980.56614154446, + null, + -187524.54517428228, + -187698.48595699875, + null, + -187524.54517428228, + -187787.3662495655, + null, + -187524.54517428228, + -187505.77792284868, + null, + -187524.54517428228, + -187993.10500323906, + null, + -187524.54517428228, + -187796.48978933724, + null, + -187524.54517428228, + -187844.7862156998, + null, + -187510.56934074408, + -187892.99584382013, + null, + -187510.56934074408, + -187505.77792284868, + null, + -187510.56934074408, + -187993.10500323906, + null, + -187510.56934074408, + -187803.3143579642, + null, + -187510.56934074408, + -187980.56614154446, + null, + -187510.56934074408, + -188057.23331354433, + null, + -187510.56934074408, + -186724.68573885344, + null, + -187529.40680193529, + -188052.40549977424, + null, + -187529.40680193529, + -187980.56614154446, + null, + -187529.40680193529, + -187803.3143579642, + null, + -187529.40680193529, + -187505.77792284868, + null, + -187529.40680193529, + -187993.10500323906, + null, + -187454.64105987392, + -187744.18704166426, + null, + -187454.64105987392, + -187702.7046883214, + null, + -187454.64105987392, + -187652.86349496595, + null, + -187454.64105987392, + -187889.46739959446, + null, + -187454.64105987392, + -187692.31182614467, + null, + -187454.64105987392, + -187596.90565444194, + null, + -187519.31181360115, + -187803.3143579642, + null, + -187519.31181360115, + -187980.56614154446, + null, + -187519.31181360115, + -187905.2037860304, + null, + -187519.31181360115, + -187993.10500323906, + null, + -187519.31181360115, + -187505.77792284868, + null, + -187123.06288107514, + -187363.10526503893, + null, + -187123.06288107514, + -187316.0784152729, + null, + -187123.06288107514, + -187391.86258957486, + null, + -187477.63157623674, + -187863.0763505315, + null, + -187477.63157623674, + -187878.91877906496, + null, + -187477.63157623674, + -187889.46739959446, + null, + -187477.63157623674, + -187982.20453415965, + null, + -187477.63157623674, + -187978.67714400974, + null, + -187257.24688779732, + -187448.2440636445, + null, + -187257.24688779732, + -187532.07471562567, + null, + -187257.24688779732, + -187466.55375368948, + null, + -187257.24688779732, + -187455.6494347709, + null, + -186882.32732606877, + -187150.13887341777, + null, + -185744.03743667188, + -185776.61739803432, + null, + -185744.03743667188, + -185680.40854732087, + null, + -185744.03743667188, + -185830.5389118821, + null, + -186283.60700347682, + -185647.84002902228, + null, + -185647.84002902228, + -185650.36841039386, + null, + -185647.84002902228, + -185830.3568996049, + null, + -185647.84002902228, + -185677.2673627574, + null, + -185647.84002902228, + -185485.39401094842, + null, + -185647.84002902228, + -185469.22223657562, + null, + -185647.84002902228, + -185206.36499600124, + null, + -186969.98767638186, + -187857.41211453432, + null, + -186969.98767638186, + -187912.95191827603, + null, + -185902.72286645, + -186018.1826105063, + null, + -187303.182190925, + -187401.52853024635, + null, + -187303.182190925, + -187570.49869336904, + null, + -188126.80564361744, + -188609.42242236514, + null, + -188126.80564361744, + -188787.1864357604, + null, + -188126.80564361744, + -188843.1765843312, + null, + -188126.80564361744, + -188754.528514879, + null, + -187360.58931040493, + -187541.9398725673, + null, + -186921.38953855107, + -187030.8972838196, + null, + -186929.557108324, + -187083.4526611306, + null, + -187311.67435395776, + -187603.82918211873, + null, + -187395.2983959365, + -187647.28536999365, + null, + -187080.93819916193, + -187308.42593291332, + null, + -187080.93819916193, + -188013.20672022508, + null, + -186222.8395883536, + -186478.90406636745, + null, + -187442.89148744586, + -187768.17273301232, + null, + -187442.89148744586, + -187767.25461447696, + null, + -188140.00051928166, + -188482.3157020377, + null, + -188140.00051928166, + -188557.4596234686, + null, + -188140.00051928166, + -188502.3898432576, + null, + -188140.00051928166, + -188505.68688054534, + null, + -188140.00051928166, + -188505.51258337646, + null, + -188151.46145141035, + -188557.4596234686, + null, + -188151.46145141035, + -188502.3898432576, + null, + -188151.46145141035, + -188505.68688054534, + null, + -188151.46145141035, + -188469.82315365504, + null, + -188151.46145141035, + -188627.0205662996, + null, + -188151.46145141035, + -188326.21750175883, + null, + -188151.46145141035, + -188656.50036120758, + null, + -188151.46145141035, + -188505.51258337646, + null, + -187564.53232755137, + -188482.3157020377, + null, + -187564.53232755137, + -188557.4596234686, + null, + -187564.53232755137, + -188505.68688054534, + null, + -187564.53232755137, + -188502.3898432576, + null, + -187564.53232755137, + -188505.51258337646, + null, + -188215.09477527425, + -188576.2471463381, + null, + -188034.83047066652, + -188259.41185450985, + null, + -188034.83047066652, + -188247.40100032825, + null, + -188034.83047066652, + -188286.73832435787, + null, + -188034.83047066652, + -188135.24485311715, + null, + -188034.83047066652, + -188421.00379537063, + null, + -188034.83047066652, + -188338.0087478835, + null, + -188034.83047066652, + -188259.29964565398, + null, + -187747.06924668472, + -188174.46166792992, + null, + -187747.06924668472, + -187733.72742661694, + null, + -188800.80256482895, + -189369.65899546578, + null, + -188800.80256482895, + -189372.64547062907, + null, + -188800.80256482895, + -189209.24392154833, + null, + -188800.80256482895, + -189128.66516890543, + null, + -188800.80256482895, + -189089.44703730565, + null, + -188800.80256482895, + -189062.26751784116, + null, + -188800.80256482895, + -189006.18627960136, + null, + -188800.80256482895, + -189129.6599752958, + null, + -188800.80256482895, + -189111.3455266276, + null, + -188800.80256482895, + -189183.16372887848, + null, + -187102.12973368363, + -187208.4193053007, + null, + -187102.12973368363, + -186717.06241415057, + null, + -187917.99657074743, + -188285.55395057393, + null, + -187917.99657074743, + -188013.20672022508, + null, + -185057.76047148168, + -184875.45037648498, + null, + -185057.76047148168, + -184932.71484965115, + null, + -186486.71688355424, + -186360.36121976856, + null, + -186486.71688355424, + -186390.50909656734, + null, + -186486.71688355424, + -187290.77255972844, + null, + -186486.71688355424, + -186811.0259265327, + null, + -186486.71688355424, + -186899.42802989998, + null, + -186486.71688355424, + -187142.91197584823, + null, + -186486.71688355424, + -186320.02787605638, + null, + -185130.529001914, + -184958.27162066122, + null, + -185147.71919034136, + -185033.19564760168, + null, + -185147.71919034136, + -185026.3672666458, + null, + -187135.60577403157, + -187316.7533220786, + null, + -187135.60577403157, + -187314.78830484283, + null, + -187646.46474410285, + -187883.4205209049, + null, + -187646.46474410285, + -187808.0234352976, + null, + -187646.46474410285, + -187776.47222745066, + null, + -187646.46474410285, + -187832.17732583472, + null, + -187646.46474410285, + -188115.07214676208, + null, + -187646.46474410285, + -187638.8520412594, + null, + -187646.46474410285, + -187656.30212836852, + null, + -187785.39966082262, + -187646.46474410285, + null, + -188158.79572465117, + -187646.46474410285, + null, + -188776.05672438274, + -187646.46474410285, + null, + -187646.46474410285, + -187855.14822512827, + null, + -187646.46474410285, + -187775.23649809035, + null, + -185284.9406615433, + -185541.74694908792, + null, + -186595.59491334032, + -186776.31835431908, + null, + -186595.59491334032, + -186729.0680799888, + null, + -187638.170551301, + -187779.0215989265, + null, + -187638.170551301, + -188115.07214676208, + null, + -188158.79572465117, + -187638.170551301, + null, + -187638.170551301, + -187810.13455863777, + null, + -188776.05672438274, + -187638.170551301, + null, + -187638.170551301, + -187717.19164324945, + null, + -186478.24245183423, + -186667.31905664725, + null, + -186478.24245183423, + -186561.9599579625, + null, + -187993.35866484616, + -188657.22598614308, + null, + -187993.35866484616, + -188594.7169153639, + null, + -187993.35866484616, + -188621.68315608325, + null, + -187993.35866484616, + -188707.19411003264, + null, + -187993.35866484616, + -188680.00271065094, + null, + -187993.35866484616, + -188716.07523902692, + null, + -187993.35866484616, + -188691.9863820846, + null, + -187993.35866484616, + -188676.66102464776, + null, + -187993.35866484616, + -188390.8105047042, + null, + -187993.35866484616, + -188544.12377281216, + null, + -187229.13331112568, + -187383.1444426275, + null, + -187229.13331112568, + -187447.61429908752, + null, + -187938.08243107222, + -188454.13766259872, + null, + -187938.08243107222, + -188326.21750175883, + null, + -187938.08243107222, + -188557.4596234686, + null, + -187938.08243107222, + -188502.3898432576, + null, + -187938.08243107222, + -188505.68688054534, + null, + -187938.08243107222, + -188469.82315365504, + null, + -187938.08243107222, + -188505.51258337646, + null, + -186825.88912431858, + -186964.5945298959, + null, + -186708.8994492446, + -186946.49920168173, + null, + -186708.8994492446, + -186298.50636453225, + null, + -187164.0688469574, + -188063.1798418329, + null, + -187164.0688469574, + -188001.539550981, + null, + -187164.0688469574, + -187993.0192754519, + null, + -187164.0688469574, + -188024.4130746416, + null, + -187461.08290298193, + -187747.9444130807, + null, + -187461.08290298193, + -187744.0116635731, + null, + -187461.08290298193, + -188055.34361729486, + null, + -187461.08290298193, + -187731.8432907234, + null, + -187221.3523749667, + -187573.80466904546, + null, + -187221.3523749667, + -187598.80645447352, + null, + -187221.3523749667, + -187596.5046491663, + null, + -186992.1811585919, + -187288.80200411892, + null, + -186992.1811585919, + -187262.42396248772, + null, + -187142.28778417234, + -187561.7118743889, + null, + -187142.28778417234, + -187419.58663264677, + null, + -187142.28778417234, + -187402.7377700646, + null, + -187056.31471454934, + -187339.4240354632, + null, + -187056.31471454934, + -187316.92185478634, + null, + -186746.17776224224, + -186977.2543088253, + null, + -187434.38846414318, + -187878.10399634237, + null, + -187434.38846414318, + -187863.8697123179, + null, + -187434.38846414318, + -187890.12675137995, + null, + -187434.38846414318, + -187814.57497653816, + null, + -187826.61084050385, + -188215.60907166445, + null, + -187826.61084050385, + -188280.47213881285, + null, + -187826.61084050385, + -188236.56312966373, + null, + -187826.61084050385, + -188210.48406885206, + null, + -187826.61084050385, + -188193.0718934871, + null, + -187826.61084050385, + -188271.17600125467, + null, + -187826.61084050385, + -188293.4502131511, + null, + -187826.61084050385, + -188171.78614487077, + null, + -187003.93902302586, + -187548.06751765357, + null, + -187003.93902302586, + -187526.72134379356, + null, + -187742.596093895, + -188012.6788621272, + null, + -187742.596093895, + -188701.5447475946, + null, + -187742.596093895, + -188447.52573377267, + null, + -185540.26300420432, + -185655.59341981533, + null, + -185540.26300420432, + -185736.52136136606, + null, + -185540.26300420432, + -185770.88788624728, + null, + -185540.26300420432, + -185697.46901445196, + null, + -185199.27035351453, + -185153.81686134142, + null, + -185199.27035351453, + -185414.48586402094, + null, + -185199.27035351453, + -185132.4642161289, + null, + -185199.27035351453, + -185279.59438908967, + null, + -186980.8144633269, + -186356.13856033777, + null, + -186369.47424236263, + -186313.2958451689, + null, + -186369.47424236263, + -186338.92011198975, + null, + -186369.47424236263, + -185229.03460210934, + null, + -184908.1166309739, + -184516.72003001926, + null, + -184908.1166309739, + -185153.81686134142, + null, + -184908.1166309739, + -184350.70827119582, + null, + -184908.1166309739, + -182912.50270388843, + null, + -184908.1166309739, + -185414.48586402094, + null, + -184908.1166309739, + -185279.59438908967, + null, + -186490.92481183048, + -184908.1166309739, + null, + -184908.1166309739, + -184843.76024899518, + null, + -184908.1166309739, + -184933.89129201812, + null, + -184908.1166309739, + -185132.4642161289, + null, + -184908.1166309739, + -186324.1665531549, + null, + -184198.70078145587, + -184021.75602492446, + null, + -184198.70078145587, + -184691.19229069614, + null, + -184198.70078145587, + -184152.9240079309, + null, + -184198.70078145587, + -184482.14613425103, + null, + -184198.70078145587, + -184516.72003001926, + null, + -184198.70078145587, + -183953.893675741, + null, + -184198.70078145587, + -185229.03460210934, + null, + -184198.70078145587, + -184469.7626795134, + null, + -185447.3982690385, + -184198.70078145587, + null, + -184198.70078145587, + -184344.23325082078, + null, + -184198.70078145587, + -183731.0180707013, + null, + -184198.70078145587, + -184103.1688565142, + null, + -184198.70078145587, + -184685.21209432156, + null, + -184198.70078145587, + -184415.6816187155, + null, + -184198.70078145587, + -184632.38804639404, + null, + -184198.70078145587, + -184375.86977942512, + null, + -184198.70078145587, + -184332.48851433082, + null, + -184198.70078145587, + -184723.2742356617, + null, + -184198.70078145587, + -184005.75934572695, + null, + -184198.70078145587, + -185281.13137164246, + null, + -184198.70078145587, + -183999.60156087438, + null, + -184198.70078145587, + -184625.9060468856, + null, + -184198.70078145587, + -184466.14155302377, + null, + -184198.70078145587, + -184542.5949496982, + null, + -184198.70078145587, + -184302.81502155322, + null, + -184198.70078145587, + -184560.35288850742, + null, + -184198.70078145587, + -182681.0939370604, + null, + -184198.70078145587, + -184843.76024899518, + null, + -184198.70078145587, + -185118.94034561815, + null, + -184198.70078145587, + -184086.80238717035, + null, + -184198.70078145587, + -184046.9710787171, + null, + -184198.70078145587, + -184809.0256036502, + null, + -184198.70078145587, + -184399.0840219996, + null, + -184198.70078145587, + -182676.7358918651, + null, + -184198.70078145587, + -182702.51404425295, + null, + -184198.70078145587, + -184391.88672906658, + null, + -184198.70078145587, + -184053.19035581584, + null, + -184198.70078145587, + -184512.93542301055, + null, + -184198.70078145587, + -184548.98355077006, + null, + -184198.70078145587, + -184938.66553901948, + null, + -184198.70078145587, + -183986.1946205672, + null, + -184198.70078145587, + -185442.92204935086, + null, + -184198.70078145587, + -183956.9061762835, + null, + -184198.70078145587, + -184572.61247797642, + null, + -184198.70078145587, + -184674.4397575011, + null, + -184198.70078145587, + -184157.5174739141, + null, + -184198.70078145587, + -184478.13298193726, + null, + -184198.70078145587, + -183878.92287719354, + null, + -184198.70078145587, + -185153.81686134142, + null, + -184198.70078145587, + -184350.70827119582, + null, + -184198.70078145587, + -184826.67048045195, + null, + -184198.70078145587, + -183926.29882842753, + null, + -184198.70078145587, + -182912.50270388843, + null, + -184198.70078145587, + -182692.2164033097, + null, + -184198.70078145587, + -183984.95380032572, + null, + -184198.70078145587, + -184517.13018578722, + null, + -184198.70078145587, + -184534.56925160962, + null, + -184198.70078145587, + -184964.8159797254, + null, + -184198.70078145587, + -184359.2583782949, + null, + -184198.70078145587, + -184454.54429874875, + null, + -184198.70078145587, + -183922.4251984298, + null, + -185647.43874032347, + -184198.70078145587, + null, + -184198.70078145587, + -183983.12872461032, + null, + -184198.70078145587, + -184448.92155459523, + null, + -184198.70078145587, + -183926.65394185428, + null, + -184198.70078145587, + -184483.14178490062, + null, + -184198.70078145587, + -184459.0371071663, + null, + -184198.70078145587, + -183908.0265364355, + null, + -184198.70078145587, + -184093.90873268884, + null, + -184198.70078145587, + -184448.99616662858, + null, + -184198.70078145587, + -183772.9734046665, + null, + -184198.70078145587, + -184052.96519921636, + null, + -184198.70078145587, + -185132.4642161289, + null, + -184198.70078145587, + -183918.1878761729, + null, + -184198.70078145587, + -185279.59438908967, + null, + -184198.70078145587, + -182664.5201322499, + null, + -184198.70078145587, + -184098.43718922336, + null, + -184198.70078145587, + -184056.83511514793, + null, + -186439.9649841702, + -186797.6920016611, + null, + -186439.9649841702, + -186950.25182405324, + null, + -186439.9649841702, + -186764.78961016686, + null, + -186439.9649841702, + -186606.74246421392, + null, + -186439.9649841702, + -186814.08319625797, + null, + -186439.9649841702, + -186841.85064924235, + null, + -185019.88314560454, + -185229.98445879115, + null, + -187639.15760068822, + -188223.46779498976, + null, + -187639.15760068822, + -188109.9241793382, + null, + -187639.15760068822, + -188213.9164635894, + null, + -187639.15760068822, + -188205.49509758296, + null, + -187639.15760068822, + -188211.13477789238, + null, + -186765.58714734673, + -186979.2569175904, + null, + -186765.58714734673, + -186921.99192275654, + null, + -187686.9419411423, + -188363.39439349156, + null, + -187686.9419411423, + -188369.21574915142, + null, + -187048.28032769196, + -187339.4240354632, + null, + -187048.28032769196, + -187316.92185478634, + null, + -187563.39014736656, + -187768.56183739353, + null, + -187385.0923661435, + -187794.3370978308, + null, + -187385.0923661435, + -188356.18496868218, + null, + -187385.0923661435, + -187548.05692883665, + null, + -187385.0923661435, + -187406.00798270156, + null, + -187385.0923661435, + -188336.9253777015, + null, + -186888.21059285887, + -187360.3181764521, + null, + -186888.21059285887, + -187377.81473387225, + null, + -186888.21059285887, + -187085.60542441468, + null, + -186888.21059285887, + -187126.73472208405, + null, + -186888.21059285887, + -187076.44109914085, + null, + -185829.80948671233, + -185229.03460210934, + null, + -185829.80948671233, + -184350.70827119582, + null, + -187041.9723647092, + -187323.43987749555, + null, + -187041.9723647092, + -187120.4632982402, + null, + -187041.9723647092, + -187733.72742661694, + null, + -187041.9723647092, + -187105.4559362055, + null, + -187041.9723647092, + -187186.98604338866, + null, + -185125.23152722794, + -184625.9060468856, + null, + -185125.23152722794, + -185016.98524079414, + null, + -185125.23152722794, + -185085.52919270555, + null, + -185125.23152722794, + -185442.92204935086, + null, + -185125.23152722794, + -184350.70827119582, + null, + -185125.23152722794, + -184987.4994595672, + null, + -187095.6197581376, + -187742.4789028903, + null, + -187095.6197581376, + -187748.69710114886, + null, + -187095.6197581376, + -187594.73212482024, + null, + -187095.6197581376, + -187526.96904194946, + null, + -185897.53117830772, + -185580.45179848326, + null, + -185897.53117830772, + -185344.8813752901, + null, + -185897.53117830772, + -185852.06992264595, + null, + -185769.0972955552, + -185674.83275462306, + null, + -185769.0972955552, + -185395.53641607144, + null, + -185769.0972955552, + -185836.92063664558, + null, + -185769.0972955552, + -185725.27257533383, + null, + -185769.0972955552, + -185784.19337082037, + null, + -185769.0972955552, + -185614.49407683435, + null, + -186826.48542049516, + -186964.24290234642, + null, + -186826.48542049516, + -186779.89753024382, + null, + -185756.5836062822, + -185624.99907570484, + null, + -185756.5836062822, + -185442.92204935086, + null, + -187393.45287008572, + -186973.73232271746, + null, + -187444.98398375107, + -186973.73232271746, + null, + -187212.75750088846, + -186973.73232271746, + null, + -187430.50547179487, + -186973.73232271746, + null, + -187206.375494998, + -186973.73232271746, + null, + -187142.3027271855, + -186973.73232271746, + null, + -185101.1509899331, + -184719.94581504792, + null, + -185101.1509899331, + -183731.0180707013, + null, + -185101.1509899331, + -185442.92204935086, + null, + -185101.1509899331, + -184938.66553901948, + null, + -185101.1509899331, + -184723.2742356617, + null, + -185101.1509899331, + -184350.70827119582, + null, + -185101.1509899331, + -184726.23986392902, + null, + -185101.1509899331, + -185153.81686134142, + null, + -186015.29034764567, + -185955.71425621217, + null, + -186628.54466062496, + -186797.6920016611, + null, + -186628.54466062496, + -186950.25182405324, + null, + -186628.54466062496, + -186814.08319625797, + null, + -186628.54466062496, + -186841.85064924235, + null, + -185868.99053592625, + -185838.49510347802, + null, + -185868.99053592625, + -185787.33131372032, + null, + -185868.99053592625, + -185765.99863251753, + null, + -185868.99053592625, + -185817.8275685583, + null, + -185892.3867642372, + -185963.7812395475, + null, + -185892.3867642372, + -185746.10347257685, + null, + -185892.3867642372, + -185842.28988354502, + null, + -185892.3867642372, + -185790.03574118888, + null, + -185892.3867642372, + -185826.68751853835, + null, + -185892.3867642372, + -185733.232588588, + null, + -185982.92772953527, + -185937.87729888412, + null, + -188137.57555694113, + -189368.39644194843, + null, + -188137.57555694113, + -188481.58842989343, + null, + -188137.57555694113, + -188436.02662832712, + null, + -188137.57555694113, + -188325.26049889467, + null, + -186628.42409363462, + -186771.04894559522, + null, + -186628.42409363462, + -186697.15984983026, + null, + -187556.7890851402, + -186628.42409363462, + null, + -186628.42409363462, + -186693.21655215652, + null, + -187788.15822833957, + -186628.42409363462, + null, + -187203.12559746174, + -186628.42409363462, + null, + -185328.69791728977, + -185229.03460210934, + null, + -185328.69791728977, + -184938.66553901948, + null, + -185328.69791728977, + -184809.0256036502, + null, + -185328.69791728977, + -185580.45179848326, + null, + -185328.69791728977, + -184892.2726260721, + null, + -185645.35316113118, + -185674.83275462306, + null, + -185645.35316113118, + -185395.53641607144, + null, + -185645.35316113118, + -185567.8690752443, + null, + -185645.35316113118, + -185578.18959431755, + null, + -185645.35316113118, + -185357.74506053058, + null, + -185645.35316113118, + -186246.95216782618, + null, + -185645.35316113118, + -186236.7034840598, + null, + -185190.4973312962, + -185153.81686134142, + null, + -185190.4973312962, + -185414.48586402094, + null, + -185190.4973312962, + -185132.4642161289, + null, + -185190.4973312962, + -185279.59438908967, + null, + -184810.0609463012, + -185229.03460210934, + null, + -184810.0609463012, + -184350.70827119582, + null, + -184810.0609463012, + -185132.4642161289, + null, + -185673.16887228226, + -185583.02070754246, + null, + -185673.16887228226, + -185562.19137743715, + null, + -185673.16887228226, + -186403.77082742343, + null, + -184555.20493347468, + -183731.0180707013, + null, + -184555.20493347468, + -184575.60851572294, + null, + -184555.20493347468, + -184719.94581504792, + null, + -184555.20493347468, + -184350.70827119582, + null, + -184555.20493347468, + -185153.81686134142, + null, + -184555.20493347468, + -185132.4642161289, + null, + -186603.54049738206, + -186874.65690847478, + null, + -187444.98398375107, + -186603.54049738206, + null, + -187212.75750088846, + -186603.54049738206, + null, + -186603.54049738206, + -186891.23996141268, + null, + -186603.54049738206, + -186834.68317631911, + null, + -186603.54049738206, + -186910.4333978544, + null, + -187142.3027271855, + -186603.54049738206, + null, + -187206.375494998, + -186603.54049738206, + null, + -185000.47819436324, + -183731.0180707013, + null, + -185000.47819436324, + -184719.94581504792, + null, + -185000.47819436324, + -184726.23986392902, + null, + -185000.47819436324, + -184350.70827119582, + null, + -185000.47819436324, + -185153.81686134142, + null, + -185000.47819436324, + -185132.4642161289, + null, + -185000.47819436324, + -185279.59438908967, + null, + -185769.4575393162, + -185651.45994159847, + null, + -185769.4575393162, + -185623.0827940337, + null, + -185769.4575393162, + -185632.32875706351, + null, + -185769.4575393162, + -185666.31528947095, + null, + -185778.33475206984, + -185554.52363601752, + null, + -185242.38515533158, + -184938.66553901948, + null, + -185242.38515533158, + -184723.2742356617, + null, + -185242.38515533158, + -185442.92204935086, + null, + -185242.38515533158, + -185153.81686134142, + null, + -185242.38515533158, + -185279.59438908967, + null, + -185242.38515533158, + -184350.70827119582, + null, + -185242.38515533158, + -185414.48586402094, + null, + -185902.13729941534, + -186288.04758386785, + null, + -185902.13729941534, + -185753.3971158193, + null, + -185902.13729941534, + -186310.58059116386, + null, + -185447.3982690385, + -184710.20690531647, + null, + -184710.20690531647, + -184517.13018578722, + null, + -184710.20690531647, + -184616.7688318368, + null, + -184710.20690531647, + -184399.0840219996, + null, + -184710.20690531647, + -184415.6816187155, + null, + -184710.20690531647, + -185118.94034561815, + null, + -184710.20690531647, + -184548.98355077006, + null, + -184710.20690531647, + -184542.5949496982, + null, + -184710.20690531647, + -184344.23325082078, + null, + -184710.20690531647, + -184332.48851433082, + null, + -184710.20690531647, + -184572.61247797642, + null, + -184710.20690531647, + -184401.87544151273, + null, + -184710.20690531647, + -185442.92204935086, + null, + -184710.20690531647, + -184375.86977942512, + null, + -184710.20690531647, + -184466.14155302377, + null, + -184710.20690531647, + -184525.4736316065, + null, + -184710.20690531647, + -184534.56925160962, + null, + -184710.20690531647, + -184359.2583782949, + null, + -184710.20690531647, + -184391.88672906658, + null, + -184710.20690531647, + -184302.81502155322, + null, + -184710.20690531647, + -184964.8159797254, + null, + -186336.77161351635, + -186276.35195535765, + null, + -186119.94401614703, + -185972.8434477619, + null, + -186119.94401614703, + -186838.5032892438, + null, + -185893.69281000222, + -185727.61304680264, + null, + -185893.69281000222, + -185697.17376918934, + null, + -185893.69281000222, + -185798.98620961388, + null, + -187563.04088038372, + -188380.47926556104, + null, + -187563.04088038372, + -187642.51836253164, + null, + -187563.04088038372, + -186838.5032892438, + null, + -187563.04088038372, + -188464.4232397707, + null, + -187563.04088038372, + -187764.57816116777, + null, + -187563.04088038372, + -188400.57408980286, + null, + -187563.04088038372, + -187542.06987581123, + null, + -186983.54442722624, + -187548.06751765357, + null, + -186983.54442722624, + -187526.72134379356, + null, + -187594.8777657927, + -187703.92647279546, + null, + -188109.5947916895, + -187703.92647279546, + null, + -188135.7951117508, + -187703.92647279546, + null, + -188126.67429510137, + -187703.92647279546, + null, + -188068.89540782082, + -187703.92647279546, + null, + -188138.17806449422, + -187703.92647279546, + null, + -188113.8147030654, + -187703.92647279546, + null, + -188119.49823623613, + -187703.92647279546, + null, + -188123.9780570342, + -187703.92647279546, + null, + -188121.51859750494, + -187703.92647279546, + null, + -188082.81454332572, + -187703.92647279546, + null, + -188023.85098966694, + -187703.92647279546, + null, + -188038.4334288893, + -187703.92647279546, + null, + -188097.6602407291, + -187703.92647279546, + null, + -188124.65543545736, + -187703.92647279546, + null, + -188079.8329504583, + -187703.92647279546, + null, + -188129.3743830729, + -187703.92647279546, + null, + -185743.6029551579, + -185293.2187831642, + null, + -185968.90039689335, + -185903.43875753888, + null, + -185968.90039689335, + -185785.14838709997, + null, + -185968.90039689335, + -185973.87764999818, + null, + -186108.22088459652, + -186067.0862167175, + null, + -186108.22088459652, + -186158.97877465814, + null, + -186108.22088459652, + -185989.4316304029, + null, + -186108.22088459652, + -186114.6936778866, + null, + -186089.89882082163, + -186055.8109308676, + null, + -185308.25354167318, + -184685.0000328583, + null, + -185308.25354167318, + -185291.57756024352, + null, + -185308.25354167318, + -185048.40507163212, + null, + -185308.25354167318, + -185076.47558780372, + null, + -185308.25354167318, + -185092.58870926997, + null, + -185308.25354167318, + -185301.4444383572, + null, + -185308.25354167318, + -185242.82400176267, + null, + -185308.25354167318, + -185140.83648854677, + null, + -185308.25354167318, + -185157.6814537348, + null, + -185308.25354167318, + -185077.8905521608, + null, + -185308.25354167318, + -185155.94466425403, + null, + -185308.25354167318, + -185208.11002613642, + null, + -187444.98398375107, + -186691.95573974657, + null, + -187430.50547179487, + -186691.95573974657, + null, + -186691.95573974657, + -186834.68317631911, + null, + -187212.75750088846, + -186691.95573974657, + null, + -187206.375494998, + -186691.95573974657, + null, + -187142.3027271855, + -186691.95573974657, + null, + -186418.54900034756, + -186565.59087154226, + null, + -186418.54900034756, + -186480.25347723064, + null, + -184684.6304903929, + -185674.83275462306, + null, + -184684.6304903929, + -185395.53641607144, + null, + -184684.6304903929, + -184448.6407484703, + null, + -184684.6304903929, + -184666.32580902395, + null, + -184684.6304903929, + -184668.23630678613, + null, + -184684.6304903929, + -184495.94596649605, + null, + -184684.6304903929, + -184482.70184172114, + null, + -184684.6304903929, + -184478.35050815623, + null, + -184684.6304903929, + -184512.32520094118, + null, + -184684.6304903929, + -184261.5465761945, + null, + -184684.6304903929, + -184634.49566379888, + null, + -184684.6304903929, + -184560.19984549735, + null, + -184684.6304903929, + -184670.23840157985, + null, + -184684.6304903929, + -184371.61625666966, + null, + -184684.6304903929, + -184578.3021335712, + null, + -184684.6304903929, + -184565.8562626501, + null, + -184684.6304903929, + -184563.241697051, + null, + -184684.6304903929, + -184561.60399324592, + null, + -184684.6304903929, + -184436.1199384927, + null, + -184684.6304903929, + -184432.395119436, + null, + -184684.6304903929, + -184361.95124302662, + null, + -184684.6304903929, + -184540.22533401122, + null, + -184684.6304903929, + -184570.8246640068, + null, + -184684.6304903929, + -184324.04454522333, + null, + -184684.6304903929, + -184444.7061040916, + null, + -184684.6304903929, + -184434.7383033702, + null, + -184684.6304903929, + -184412.2399147937, + null, + -184684.6304903929, + -184385.86924617414, + null, + -184684.6304903929, + -184647.3278054887, + null, + -184684.6304903929, + -184525.70918441145, + null, + -184684.6304903929, + -184452.65560742965, + null, + -184684.6304903929, + -184455.16677151565, + null, + -184684.6304903929, + -184602.90357108583, + null, + -184684.6304903929, + -184335.66035031216, + null, + -184684.6304903929, + -184329.45753261627, + null, + -184684.6304903929, + -184396.19705080253, + null, + -184684.6304903929, + -184415.37550663672, + null, + -184684.6304903929, + -184603.9470967293, + null, + -184684.6304903929, + -184259.92373122973, + null, + -184684.6304903929, + -184555.74403726184, + null, + -184684.6304903929, + -184468.20206422772, + null, + -184684.6304903929, + -184378.76424846865, + null, + -184684.6304903929, + -184349.91600976678, + null, + -184684.6304903929, + -184416.8796289699, + null, + -184684.6304903929, + -184531.81137137485, + null, + -184684.6304903929, + -184365.4363055658, + null, + -184684.6304903929, + -184522.8186824892, + null, + -184684.6304903929, + -184214.71754588166, + null, + -184684.6304903929, + -184462.5055205388, + null, + -184684.6304903929, + -184630.82440155972, + null, + -184684.6304903929, + -184268.241804971, + null, + -184684.6304903929, + -184387.83293723778, + null, + -184684.6304903929, + -184263.5080821243, + null, + -184684.6304903929, + -184299.18997492632, + null, + -184684.6304903929, + -184595.47202338692, + null, + -184684.6304903929, + -184367.0304015083, + null, + -184684.6304903929, + -184503.80352402254, + null, + -184684.6304903929, + -184699.5789652916, + null, + -184684.6304903929, + -184396.12613862206, + null, + -184684.6304903929, + -184558.88043573382, + null, + -184684.6304903929, + -184443.74404577023, + null, + -184684.6304903929, + -184532.7557788167, + null, + -184684.6304903929, + -184485.79925380167, + null, + -184684.6304903929, + -184585.6667816663, + null, + -184684.6304903929, + -184535.5438101554, + null, + -184684.6304903929, + -184312.79009042695, + null, + -184684.6304903929, + -184469.3966283573, + null, + -184684.6304903929, + -184380.98245245064, + null, + -184684.6304903929, + -184529.99194847723, + null, + -184684.6304903929, + -184415.93947968376, + null, + -184684.6304903929, + -184490.68544655846, + null, + -184684.6304903929, + -184353.56639420363, + null, + -184684.6304903929, + -184403.17947942961, + null, + -184684.6304903929, + -184239.7978809641, + null, + -184684.6304903929, + -184472.87944490157, + null, + -184684.6304903929, + -184437.15623543007, + null, + -184684.6304903929, + -184323.3322352525, + null, + -184684.6304903929, + -184343.2045702599, + null, + -184684.6304903929, + -184626.3527931452, + null, + -184684.6304903929, + -184462.3167709153, + null, + -184684.6304903929, + -184533.35011545193, + null, + -184684.6304903929, + -184436.2619308537, + null, + -184684.6304903929, + -184431.31792950505, + null, + -184684.6304903929, + -184608.74823234757, + null, + -184684.6304903929, + -184525.2715713245, + null, + -184684.6304903929, + -184325.9582852508, + null, + -184684.6304903929, + -184428.10464539006, + null, + -184684.6304903929, + -184371.6132084216, + null, + -184684.6304903929, + -184211.15437910138, + null, + -184684.6304903929, + -184572.96927713798, + null, + -184684.6304903929, + -184583.2702726393, + null, + -184684.6304903929, + -185357.74506053058, + null, + -184684.6304903929, + -184430.24335061625, + null, + -184684.6304903929, + -184403.36231750465, + null, + -184684.6304903929, + -184453.03854239488, + null, + -184684.6304903929, + -184385.02662899948, + null, + -184684.6304903929, + -184588.89026853853, + null, + -184684.6304903929, + -184470.32547589156, + null, + -184684.6304903929, + -184590.07805586595, + null, + -184684.6304903929, + -184541.99719453312, + null, + -184684.6304903929, + -184491.53542994565, + null, + -184684.6304903929, + -184482.47262135896, + null, + -184684.6304903929, + -184411.4790215959, + null, + -184684.6304903929, + -184521.32453058366, + null, + -184684.6304903929, + -184314.30332101538, + null, + -184684.6304903929, + -184366.10316420314, + null, + -184684.6304903929, + -184303.13965177367, + null, + -184684.6304903929, + -184460.4007301304, + null, + -184684.6304903929, + -184666.42142408775, + null, + -184684.6304903929, + -184598.78127871666, + null, + -184684.6304903929, + -184634.43962006122, + null, + -184684.6304903929, + -184510.82978744808, + null, + -184684.6304903929, + -184295.7969173079, + null, + -184684.6304903929, + -184270.03347038655, + null, + -184684.6304903929, + -184562.56576027544, + null, + -184684.6304903929, + -184335.1636910743, + null, + -184684.6304903929, + -184393.67580475452, + null, + -184684.6304903929, + -184415.05527906748, + null, + -184684.6304903929, + -184359.19078144277, + null, + -184684.6304903929, + -184517.4784958797, + null, + -184684.6304903929, + -184361.13898158647, + null, + -184684.6304903929, + -184483.3183891127, + null, + -184684.6304903929, + -184530.67200001556, + null, + -184684.6304903929, + -184319.54353745113, + null, + -184684.6304903929, + -184442.3560432253, + null, + -184684.6304903929, + -184343.06019309026, + null, + -184684.6304903929, + -184499.12636936383, + null, + -184684.6304903929, + -184309.25597490775, + null, + -184684.6304903929, + -184609.18084080587, + null, + -184684.6304903929, + -184650.4287460847, + null, + -184684.6304903929, + -184514.18980174183, + null, + -184684.6304903929, + -184624.57672919738, + null, + -184684.6304903929, + -184479.1033492302, + null, + -184684.6304903929, + -184519.87542979151, + null, + -184684.6304903929, + -184441.9149540535, + null, + -184684.6304903929, + -184632.72769793158, + null, + -184684.6304903929, + -184497.03806767587, + null, + -184684.6304903929, + -184384.12166117266, + null, + -184684.6304903929, + -184280.1057777649, + null, + -184684.6304903929, + -184496.8931498738, + null, + -184684.6304903929, + -184398.13435960136, + null, + -184684.6304903929, + -184297.99249258768, + null, + -184684.6304903929, + -184338.27076041044, + null, + -184684.6304903929, + -184415.7362226067, + null, + -184684.6304903929, + -184546.95625114103, + null, + -184684.6304903929, + -184457.04009611104, + null, + -184684.6304903929, + -184372.91083005106, + null, + -184684.6304903929, + -184347.8071741038, + null, + -184684.6304903929, + -184518.7451596348, + null, + -184684.6304903929, + -184406.7120236349, + null, + -184684.6304903929, + -184293.26120611504, + null, + -184684.6304903929, + -184266.78907644618, + null, + -184684.6304903929, + -184209.51427339256, + null, + -184684.6304903929, + -184398.74708779794, + null, + -184684.6304903929, + -184614.44298991206, + null, + -184684.6304903929, + -184632.3570707878, + null, + -186003.21438929535, + -185153.81686134142, + null, + -186003.21438929535, + -185414.48586402094, + null, + -186003.21438929535, + -185132.4642161289, + null, + -186003.21438929535, + -185279.59438908967, + null, + -186109.56426562366, + -185153.81686134142, + null, + -186109.56426562366, + -185414.48586402094, + null, + -186109.56426562366, + -185132.4642161289, + null, + -186109.56426562366, + -185279.59438908967, + null, + -186120.97182205616, + -185442.92204935086, + null, + -186120.97182205616, + -185118.94034561815, + null, + -186120.97182205616, + -186007.6159161239, + null, + -186120.97182205616, + -186163.37174399567, + null, + -186120.97182205616, + -186107.7087016988, + null, + -186120.97182205616, + -186053.46910530954, + null, + -186120.97182205616, + -185967.29699299918, + null, + -186324.3395864327, + -185442.92204935086, + null, + -186324.3395864327, + -186292.72724037222, + null, + -186324.3395864327, + -186455.910536921, + null, + -186324.3395864327, + -186026.151084583, + null, + -186722.7974234636, + -186855.24147507292, + null, + -186722.7974234636, + -186711.62852341603, + null, + -140718.26168474945, + -139341.949669956, + null, + -140718.26168474945, + -139539.797746249, + null, + -140718.26168474945, + -139146.21128232183, + null, + -140718.26168474945, + -139565.22959641, + null, + -140718.26168474945, + -139465.3572705693, + null, + -140718.26168474945, + -139296.28092584724, + null, + -140718.26168474945, + -139274.0018388218, + null, + -140718.26168474945, + -139295.3614578835, + null, + -140718.26168474945, + -139258.7541785887, + null, + -140718.26168474945, + -139233.79058958867, + null, + -140718.26168474945, + -139465.6696429816, + null, + -140718.26168474945, + -139421.82453819446, + null, + -140718.26168474945, + -139314.36540387178, + null, + -140718.26168474945, + -139471.37099448388, + null, + -140718.26168474945, + -139322.61723275625, + null, + -140718.26168474945, + -139254.49879413686, + null, + -140718.26168474945, + -139152.07069639352, + null, + -140718.26168474945, + -139446.30071366948, + null, + -140718.26168474945, + -139338.01794312976, + null, + -140718.26168474945, + -139349.40202200913, + null, + -140718.26168474945, + -139454.68894926444, + null, + -140718.26168474945, + -139556.73393765689, + null, + -140718.26168474945, + -139401.883376087, + null, + -140718.26168474945, + -139542.7100989013, + null, + -140718.26168474945, + -139525.78047562818, + null, + -140718.26168474945, + -139405.61393328427, + null, + -140718.26168474945, + -139426.94510950823, + null, + -140718.26168474945, + -139521.39146743398, + null, + -140718.26168474945, + -139421.50755701648, + null, + -140718.26168474945, + -139349.08980886897, + null, + -140718.26168474945, + -139525.91943066413, + null, + -140718.26168474945, + -139272.999764756, + null, + -140718.26168474945, + -139272.36405853787, + null, + -140718.26168474945, + -139336.093312044, + null, + -140718.26168474945, + -139246.6141244061, + null, + -140718.26168474945, + -139523.06559060336, + null, + -140718.26168474945, + -139247.63421479816, + null, + -140718.26168474945, + -139207.23911923319, + null, + -140718.26168474945, + -139476.1859444214, + null, + -140718.26168474945, + -139329.5233097719, + null, + -140718.26168474945, + -139294.17738416753, + null, + -140718.26168474945, + -139215.67203308453, + null, + -140718.26168474945, + -139343.36984284074, + null, + -140718.26168474945, + -139356.00664369308, + null, + -140718.26168474945, + -139261.90354299522, + null, + -140718.26168474945, + -139184.40763990118, + null, + -140718.26168474945, + -139349.4517755712, + null, + -140718.26168474945, + -139476.30021379262, + null, + -140718.26168474945, + -139542.46177825486, + null, + -140718.26168474945, + -139219.37353035068, + null, + -140718.26168474945, + -139431.9287754304, + null, + -140718.26168474945, + -139403.71827377586, + null, + -140718.26168474945, + -139622.15994571723, + null, + -140718.26168474945, + -139284.25180573002, + null, + -140718.26168474945, + -139218.83581593077, + null, + -140718.26168474945, + -139644.58808539595, + null, + -140718.26168474945, + -139222.4936281499, + null, + -140718.26168474945, + -139420.3443880718, + null, + -140718.26168474945, + -139486.84931904363, + null, + -140718.26168474945, + -139275.2295283498, + null, + -140718.26168474945, + -139592.2183367796, + null, + -140718.26168474945, + -139230.0369023893, + null, + -140718.26168474945, + -139470.57660551192, + null, + -140718.26168474945, + -139300.0220610434, + null, + -140718.26168474945, + -139449.34942189485, + null, + -140718.26168474945, + -139256.2653134632, + null, + -140718.26168474945, + -139514.16899338784, + null, + -140718.26168474945, + -139255.36501145226, + null, + -140718.26168474945, + -139347.38841428462, + null, + -140718.26168474945, + -139398.2862961737, + null, + -140718.26168474945, + -139186.35936738102, + null, + -140718.26168474945, + -139422.8248009617, + null, + -140718.26168474945, + -139371.6788113676, + null, + -140718.26168474945, + -139225.554311968, + null, + -140718.26168474945, + -139267.33349575038, + null, + -140718.26168474945, + -139318.1970961605, + null, + -140718.26168474945, + -139569.97881076875, + null, + -140718.26168474945, + -139270.18681502272, + null, + -140718.26168474945, + -139325.29900676035, + null, + -140718.26168474945, + -139340.60702624888, + null, + -140718.26168474945, + -139291.87542162067, + null, + -140718.26168474945, + -139624.6153460218, + null, + -140718.26168474945, + -139676.67233930697, + null, + -140718.26168474945, + -139375.54836322943, + null, + -140718.26168474945, + -139384.8347452151, + null, + -140718.26168474945, + -139550.11749199033, + null, + -140718.26168474945, + -139375.36967259427, + null, + -140718.26168474945, + -139348.05547720563, + null, + -140718.26168474945, + -139257.18421795493, + null, + -140718.26168474945, + -139254.19065915552, + null, + -140718.26168474945, + -139280.63467425137, + null, + -140718.26168474945, + -139453.21013689402, + null, + -140718.26168474945, + -139222.95188000842, + null, + -140718.26168474945, + -139338.8615734688, + null, + -140718.26168474945, + -139127.0662061807, + null, + -140718.26168474945, + -139201.34117110627, + null, + -140718.26168474945, + -139332.2127012205, + null, + -140718.26168474945, + -139324.84427304813, + null, + -140718.26168474945, + -139250.52794257455, + null, + -140718.26168474945, + -139481.79335763532, + null, + -140718.26168474945, + -139315.25978792255, + null, + -140718.26168474945, + -139302.56149450256, + null, + -140718.26168474945, + -139375.76431838053, + null, + -140718.26168474945, + -139305.36694469122, + null, + -140718.26168474945, + -139629.7013795666, + null, + -140718.26168474945, + -139245.1631113287, + null, + -140718.26168474945, + -139150.7296967715, + null, + -140718.26168474945, + -139602.53344158875, + null, + -140718.26168474945, + -139430.88631425935, + null, + -140718.26168474945, + -139249.79431222109, + null, + -140718.26168474945, + -139268.95938093786, + null, + -140718.26168474945, + -139399.45535473176, + null, + -140718.26168474945, + -139521.13313974865, + null, + -140718.26168474945, + -139562.00160215882, + null, + -140718.26168474945, + -139296.22896657095, + null, + -140718.26168474945, + -139181.26970845836, + null, + -140718.26168474945, + -139531.90105065668, + null, + -140718.26168474945, + -139624.8964741382, + null, + -140718.26168474945, + -139440.99814282567, + null, + -140718.26168474945, + -139172.61805303066, + null, + -140718.26168474945, + -139252.62835533492, + null, + -140718.26168474945, + -139239.7146275747, + null, + -140718.26168474945, + -139406.58475620614, + null, + -140718.26168474945, + -139305.65388160577, + null, + -140718.26168474945, + -139245.6143086338, + null, + -140718.26168474945, + -139362.49801767562, + null, + -140718.26168474945, + -139368.9630914053, + null, + -140718.26168474945, + -139496.4003878001, + null, + -140718.26168474945, + -139210.4343189794, + null, + -140718.26168474945, + -139251.7462727586, + null, + -140718.26168474945, + -137645.21150798537, + null, + -140718.26168474945, + -139347.1583152886, + null, + -140718.26168474945, + -139185.43947442787, + null, + -140718.26168474945, + -139141.95977890037, + null, + -140718.26168474945, + -139374.80029288903, + null, + -140718.26168474945, + -139298.21212116178, + null, + -140718.26168474945, + -139245.84191401702, + null, + -140718.26168474945, + -139386.5195070693, + null, + -140718.26168474945, + -139458.52947640378, + null, + -140718.26168474945, + -139319.53739196222, + null, + -140718.26168474945, + -139500.62502624292, + null, + -140718.26168474945, + -139269.75368532154, + null, + -140718.26168474945, + -139353.4017776092, + null, + -140718.26168474945, + -139497.7060077906, + null, + -140718.26168474945, + -139392.14969518423, + null, + -140718.26168474945, + -139465.92291392805, + null, + -140718.26168474945, + -139446.17035811715, + null, + -140718.26168474945, + -139288.9652240138, + null, + -140718.26168474945, + -139258.63230897923, + null, + -140718.26168474945, + -139222.34616055127, + null, + -140718.26168474945, + -139579.0114335206, + null, + -140718.26168474945, + -139504.72005689488, + null, + -140718.26168474945, + -139301.92562235743, + null, + -140718.26168474945, + -139323.9460419651, + null, + -140718.26168474945, + -139301.641083254, + null, + -140718.26168474945, + -139487.4178243815, + null, + -140718.26168474945, + -139368.99379823424, + null, + -140718.26168474945, + -139341.07849414786, + null, + -140718.26168474945, + -139230.70690965184, + null, + -140718.26168474945, + -139322.4115244643, + null, + -140718.26168474945, + -139499.0742565992, + null, + -140718.26168474945, + -139299.58894052787, + null, + -140718.26168474945, + -139361.88864313313, + null, + -140718.26168474945, + -139552.7148175742, + null, + -140718.26168474945, + -139319.57765505658, + null, + -140718.26168474945, + -139452.5128782478, + null, + -140718.26168474945, + -139262.00402649786, + null, + -140718.26168474945, + -139325.02744581705, + null, + -140718.26168474945, + -139337.2275268746, + null, + -140718.26168474945, + -139407.11302883684, + null, + -140718.26168474945, + -139273.62445480048, + null, + -140718.26168474945, + -139199.82122981313, + null, + -140718.26168474945, + -139293.78939414152, + null, + -140718.26168474945, + -139312.25160916877, + null, + -140718.26168474945, + -139309.58979877408, + null, + -140718.26168474945, + -139287.7030189087, + null, + -140718.26168474945, + -139455.60678241128, + null, + -140718.26168474945, + -139238.1184562021, + null, + -140718.26168474945, + -139561.07093915364, + null, + -140718.26168474945, + -139356.6211330608, + null, + -140718.26168474945, + -139481.56579861138, + null, + -140718.26168474945, + -139205.18843565695, + null, + -140718.26168474945, + -139293.35993355856, + null, + -140718.26168474945, + -139500.82792815822, + null, + -140718.26168474945, + -139381.53581003318, + null, + -140718.26168474945, + -139272.1101007574, + null, + -140718.26168474945, + -139204.18767959758, + null, + -140718.26168474945, + -139466.64476026874, + null, + -140718.26168474945, + -139244.23799759592, + null, + -140718.26168474945, + -139412.313857633, + null, + -140718.26168474945, + -139490.90714418553, + null, + -140718.26168474945, + -139564.66187716788, + null, + -140718.26168474945, + -139419.0209359383, + null, + -140718.26168474945, + -139195.77514016427, + null, + -140718.26168474945, + -139620.6116018754, + null, + -140718.26168474945, + -139403.47462324586, + null, + -140718.26168474945, + -139390.86121724633, + null, + -140718.26168474945, + -139278.73799679236, + null, + -140718.26168474945, + -139355.46728532106, + null, + -140718.26168474945, + -139325.20445922078, + null, + -140718.26168474945, + -139268.90384384684, + null, + -140718.26168474945, + -139368.21065153804, + null, + -140718.26168474945, + -139243.84566835393, + null, + -140718.26168474945, + -139439.8644722435, + null, + -140718.26168474945, + -139311.07528284538, + null, + -140718.26168474945, + -139452.66971040476, + null, + -140718.26168474945, + -139410.2270479437, + null, + -140718.26168474945, + -139233.21359476962, + null, + -140718.26168474945, + -139386.56646685992, + null, + -140718.26168474945, + -139330.93814001975, + null, + -140718.26168474945, + -139292.83803425037, + null, + -140718.26168474945, + -139565.19409284645, + null, + -140718.26168474945, + -139280.11347929307, + null, + -140718.26168474945, + -139371.4788165129, + null, + -140718.26168474945, + -139255.5205051406, + null, + -140718.26168474945, + -139380.35416142584, + null, + -140718.26168474945, + -139440.57369675537, + null, + -140718.26168474945, + -139256.15369253952, + null, + -140718.26168474945, + -139350.5393342178, + null, + -140718.26168474945, + -138292.50237790353, + null, + -140718.26168474945, + -139393.05546993954, + null, + -140718.26168474945, + -139343.99282516513, + null, + -140718.26168474945, + -139492.56377327073, + null, + -140718.26168474945, + -139328.0534871222, + null, + -140718.26168474945, + -139590.06090134796, + null, + -140718.26168474945, + -139268.65204027394, + null, + -162271.2627223581, + -162116.20043753972, + null, + -162271.2627223581, + -162125.48737219273, + null, + -186085.13248614842, + -186210.2538179402, + null, + -186085.13248614842, + -186189.87064224097, + null, + -185427.49168366197, + -185229.03460210934, + null, + -185427.49168366197, + -184350.70827119582, + null, + -185427.49168366197, + -185132.4642161289, + null, + -184985.73631769797, + -185153.81686134142, + null, + -184985.73631769797, + -185279.59438908967, + null, + -184985.73631769797, + -185132.4642161289, + null, + -184766.12089212818, + -183731.0180707013, + null, + -184766.12089212818, + -184575.60851572294, + null, + -184766.12089212818, + -184719.94581504792, + null, + -184766.12089212818, + -185153.81686134142, + null, + -184766.12089212818, + -184350.70827119582, + null, + -184766.12089212818, + -185132.4642161289, + null, + -185693.59243815514, + -185442.92204935086, + null, + -185693.59243815514, + -185633.56148535747, + null, + -185693.59243815514, + -186026.151084583, + null, + -186460.20786475393, + -186797.6920016611, + null, + -186460.20786475393, + -186950.25182405324, + null, + -186460.20786475393, + -186764.78961016686, + null, + -186460.20786475393, + -186606.74246421392, + null, + -186460.20786475393, + -186814.08319625797, + null, + -186460.20786475393, + -186841.85064924235, + null, + -186037.59716773787, + -186484.6927396635, + null, + -185450.5833065486, + -185717.30202552347, + null, + -185396.0966615638, + -185565.68090042786, + null, + -185109.39166642443, + -185153.81686134142, + null, + -185109.39166642443, + -185414.48586402094, + null, + -185109.39166642443, + -185132.4642161289, + null, + -185109.39166642443, + -185279.59438908967, + null, + -185556.4843562863, + -185442.92204935086, + null, + -185556.4843562863, + -185436.73528009508, + null, + -185556.4843562863, + -185118.94034561815, + null, + -185556.4843562863, + -185387.24181644092, + null, + -186719.88216859457, + -186735.62978625085, + null, + -186719.88216859457, + -186693.21580687084, + null, + -186719.88216859457, + -186817.60492868512, + null, + -186719.88216859457, + -186771.81868420233, + null, + -186773.59087394056, + -186646.66034112757, + null, + -186773.59087394056, + -186797.6920016611, + null, + -186773.59087394056, + -186764.78961016686, + null, + -186773.59087394056, + -186606.74246421392, + null, + -186773.59087394056, + -186814.08319625797, + null, + -186773.59087394056, + -186841.85064924235, + null, + -186773.59087394056, + -187059.63779786762, + null, + -186505.48261010222, + -186549.29909114336, + null, + -186505.48261010222, + -186609.05910111836, + null, + -187857.75124697632, + -187516.20202739417, + null, + -187760.40303329699, + -187516.20202739417, + null, + -187920.62374587829, + -187516.20202739417, + null, + -187858.44732430877, + -187516.20202739417, + null, + -188001.86892294977, + -188163.4372575625, + null, + -188001.86892294977, + -188178.96030772812, + null, + -188001.86892294977, + -187794.3370978308, + null, + -188001.86892294977, + -188757.56169839122, + null, + -188001.86892294977, + -188351.81043164252, + null, + -188001.86892294977, + -188249.63103895306, + null, + -188001.86892294977, + -188730.12048244115, + null, + -188001.86892294977, + -188276.72026730192, + null, + -188001.86892294977, + -188189.30416656632, + null, + -188001.86892294977, + -188192.0034322741, + null, + -188001.86892294977, + -188290.9601897545, + null, + -188001.86892294977, + -188719.19122749128, + null, + -186684.80121130878, + -186771.04894559522, + null, + -187788.15822833957, + -186684.80121130878, + null, + -187203.12559746174, + -186684.80121130878, + null, + -184705.8070100957, + -185229.03460210934, + null, + -184705.8070100957, + -183731.0180707013, + null, + -184705.8070100957, + -184632.38804639404, + null, + -184705.8070100957, + -185276.91448933058, + null, + -184705.8070100957, + -184892.2726260721, + null, + -184705.8070100957, + -184350.70827119582, + null, + -184705.8070100957, + -184726.23986392902, + null, + -184864.84138353547, + -185229.03460210934, + null, + -184864.84138353547, + -184743.18095205686, + null, + -184864.84138353547, + -184933.89129201812, + null, + -184864.84138353547, + -184843.76024899518, + null, + -184566.07730183762, + -184719.94581504792, + null, + -184566.07730183762, + -183731.0180707013, + null, + -184566.07730183762, + -185442.92204935086, + null, + -184566.07730183762, + -184575.60851572294, + null, + -184566.07730183762, + -184723.2742356617, + null, + -184566.07730183762, + -184892.2726260721, + null, + -184566.07730183762, + -184350.70827119582, + null, + -186337.80196089507, + -186510.77814177045, + null, + -186337.80196089507, + -186573.3663340251, + null, + -186337.80196089507, + -186606.6604376666, + null, + -186150.906960568, + -186376.56840758125, + null, + -186150.906960568, + -186481.02628071915, + null, + -186089.31929989046, + -186270.72457911135, + null, + -186089.31929989046, + -186368.82373217016, + null, + -186474.6235265719, + -186797.6920016611, + null, + -186474.6235265719, + -186950.25182405324, + null, + -186474.6235265719, + -186841.85064924235, + null, + -186468.51753357225, + -186959.9607940277, + null, + -186468.51753357225, + -186797.6920016611, + null, + -186468.51753357225, + -186764.78961016686, + null, + -186468.51753357225, + -186841.85064924235, + null, + -186468.51753357225, + -186814.08319625797, + null, + -186122.9165758566, + -186229.18141067243, + null, + -186122.9165758566, + -186563.95497765776, + null, + -186174.69969704037, + -186438.41734368665, + null, + -186174.69969704037, + -186476.53578284683, + null, + -186174.69969704037, + -186483.8946055219, + null, + -186174.69969704037, + -186511.39743435007, + null, + -186174.69969704037, + -186382.5747826665, + null, + -187820.43378501857, + -189142.84215571234, + null, + -186775.64544110073, + -187046.01116874782, + null, + -185619.5302422243, + -185485.81598355123, + null, + -185619.5302422243, + -185498.34392864152, + null, + -185704.2175677414, + -185701.20064437657, + null, + -185704.2175677414, + -185624.12085151995, + null, + -185704.2175677414, + -185825.18129384934, + null, + -185704.2175677414, + -185792.9261615262, + null, + -185704.2175677414, + -185777.55867690372, + null, + -185704.2175677414, + -185599.70858937444, + null, + -185704.2175677414, + -185694.282919335, + null, + -185704.2175677414, + -185472.77572732724, + null, + -185704.2175677414, + -185549.58620082302, + null, + -185704.2175677414, + -185819.18617559347, + null, + -185704.2175677414, + -185751.22791972532, + null, + -185704.2175677414, + -185694.7882635787, + null, + -185704.2175677414, + -185592.74158341286, + null, + -185704.2175677414, + -186356.13856033777, + null, + -185704.2175677414, + -185714.6501823629, + null, + -185704.2175677414, + -185796.95803472877, + null, + -185704.2175677414, + -185665.73353903665, + null, + -185704.2175677414, + -185590.6028889697, + null, + -185704.2175677414, + -185680.08075913816, + null, + -185704.2175677414, + -185578.91825066306, + null, + -185704.2175677414, + -185742.93606300268, + null, + -185704.2175677414, + -185770.52060652812, + null, + -185704.2175677414, + -185623.07925557217, + null, + -185704.2175677414, + -185822.61530116087, + null, + -185704.2175677414, + -185511.56454960397, + null, + -185704.2175677414, + -185722.02131296776, + null, + -185704.2175677414, + -185684.72951200834, + null, + -185704.2175677414, + -185546.35826834274, + null, + -185704.2175677414, + -185650.08701435704, + null, + -185704.2175677414, + -185542.62007957482, + null, + -185704.2175677414, + -185750.34116926818, + null, + -185704.2175677414, + -185562.20409519147, + null, + -185704.2175677414, + -185578.7055139462, + null, + -185704.2175677414, + -185625.67626786084, + null, + -185704.2175677414, + -185642.09079542043, + null, + -185704.2175677414, + -185662.28784714767, + null, + -185704.2175677414, + -185541.54208441218, + null, + -185704.2175677414, + -185668.33577293195, + null, + -185704.2175677414, + -185750.3502888854, + null, + -185704.2175677414, + -185861.49673175454, + null, + -185704.2175677414, + -185708.1687654314, + null, + -185704.2175677414, + -185618.98439702013, + null, + -185704.2175677414, + -185518.24947672113, + null, + -185704.2175677414, + -185835.7597285131, + null, + -185704.2175677414, + -185773.82512637385, + null, + -185704.2175677414, + -185512.78839085187, + null, + -185704.2175677414, + -185652.0261395966, + null, + -185704.2175677414, + -185746.51091015068, + null, + -185937.20459336432, + -184964.8159797254, + null, + -185937.20459336432, + -185873.04603168063, + null, + -185937.20459336432, + -185229.03460210934, + null, + -185937.20459336432, + -185442.92204935086, + null, + -185937.20459336432, + -184350.70827119582, + null, + -185937.20459336432, + -185153.81686134142, + null, + -185937.20459336432, + -185279.59438908967, + null, + -185937.20459336432, + -186324.1665531549, + null, + -185937.20459336432, + -185132.4642161289, + null, + -185523.5880471388, + -185361.677162874, + null, + -185523.5880471388, + -184826.67048045195, + null, + -185523.5880471388, + -184843.76024899518, + null, + -185523.5880471388, + -185411.21735269792, + null, + -186490.92481183048, + -185523.5880471388, + null, + -185073.60125989263, + -185229.03460210934, + null, + -185073.60125989263, + -185153.81686134142, + null, + -185073.60125989263, + -184350.70827119582, + null, + -185073.60125989263, + -184843.76024899518, + null, + -185073.60125989263, + -184933.89129201812, + null, + -185073.60125989263, + -185132.4642161289, + null, + -185681.62401491503, + -185521.48335125647, + null, + -185755.25804511458, + -185697.17376918934, + null, + -185755.25804511458, + -185798.98620961388, + null, + -185755.25804511458, + -185727.61304680264, + null, + -185742.32278142963, + -185697.17376918934, + null, + -185742.32278142963, + -185798.98620961388, + null, + -186839.17366214117, + -186857.89701196033, + null, + -185460.24572993352, + -185379.7874590432, + null, + -185460.24572993352, + -185291.57756024352, + null, + -185460.24572993352, + -185314.1328971909, + null, + -185460.24572993352, + -185396.9854106273, + null, + -185767.89203574616, + -185739.1249763607, + null, + -185411.53656573629, + -185362.75844820152, + null, + -185411.53656573629, + -185281.317667854, + null, + -185411.53656573629, + -185272.70789378206, + null, + -185411.53656573629, + -185291.36523286297, + null, + -185411.53656573629, + -185174.38186064654, + null, + -186079.66390792772, + -185229.03460210934, + null, + -186079.66390792772, + -184350.70827119582, + null, + -185233.48683497915, + -185276.91448933058, + null, + -185233.48683497915, + -185229.03460210934, + null, + -185233.48683497915, + -184632.38804639404, + null, + -185233.48683497915, + -184809.0256036502, + null, + -185233.48683497915, + -184674.4397575011, + null, + -185233.48683497915, + -184892.2726260721, + null, + -185233.48683497915, + -184350.70827119582, + null, + -184948.90466462815, + -184691.19229069614, + null, + -184948.90466462815, + -184746.1499818466, + null, + -184948.90466462815, + -184689.754206081, + null, + -184948.90466462815, + -184625.9060468856, + null, + -184948.90466462815, + -184542.5949496982, + null, + -184948.90466462815, + -184482.14613425103, + null, + -184948.90466462815, + -184843.0177536058, + null, + -184948.90466462815, + -184548.98355077006, + null, + -184948.90466462815, + -184560.35288850742, + null, + -184948.90466462815, + -184572.61247797642, + null, + -184948.90466462815, + -185442.92204935086, + null, + -184948.90466462815, + -184478.13298193726, + null, + -184948.90466462815, + -184512.93542301055, + null, + -184948.90466462815, + -184853.5029479663, + null, + -184948.90466462815, + -184718.15641227114, + null, + -184948.90466462815, + -184800.69552071634, + null, + -184948.90466462815, + -184517.13018578722, + null, + -184948.90466462815, + -184707.82276925643, + null, + -184948.90466462815, + -184448.92155459523, + null, + -184948.90466462815, + -184534.56925160962, + null, + -184948.90466462815, + -184774.76972403165, + null, + -184948.90466462815, + -184483.14178490062, + null, + -184948.90466462815, + -184826.2852678662, + null, + -184948.90466462815, + -184448.99616662858, + null, + -184948.90466462815, + -184771.05300911746, + null, + -184948.90466462815, + -184964.8159797254, + null, + -184948.90466462815, + -184684.19434018733, + null, + -185247.7806087925, + -184691.19229069614, + null, + -185447.3982690385, + -185247.7806087925, + null, + -185247.7806087925, + -184685.21209432156, + null, + -185247.7806087925, + -185442.92204935086, + null, + -185247.7806087925, + -185078.36462542813, + null, + -185647.43874032347, + -185247.7806087925, + null, + -186549.85209355422, + -186959.9607940277, + null, + -186549.85209355422, + -186797.6920016611, + null, + -186549.85209355422, + -186764.78961016686, + null, + -186549.85209355422, + -186841.85064924235, + null, + -186549.85209355422, + -186814.08319625797, + null, + -187393.45287008572, + -186917.39214776302, + null, + -187444.98398375107, + -186917.39214776302, + null, + -187212.75750088846, + -186917.39214776302, + null, + -187430.50547179487, + -186917.39214776302, + null, + -187206.375494998, + -186917.39214776302, + null, + -187142.3027271855, + -186917.39214776302, + null, + -186657.063249416, + -187076.44109914085, + null, + -186657.063249416, + -186687.5390903128, + null, + -186657.063249416, + -187215.37650594692, + null, + -186657.063249416, + -187085.60542441468, + null, + -186137.98831876533, + -186171.58567249685, + null, + -186137.98831876533, + -186687.5390903128, + null, + -186137.98831876533, + -186735.62978625085, + null, + -187687.3081902085, + -187787.56778004483, + null, + -187687.3081902085, + -187824.5134312553, + null, + -187687.3081902085, + -187833.02563482567, + null, + -187525.68775441864, + -187581.7153446357, + null, + -187525.68775441864, + -187652.55658732413, + null, + -187525.68775441864, + -187580.99353856346, + null, + -187525.68775441864, + -187754.07494608234, + null, + -189245.3547860996, + -189535.01243196902, + null, + -189245.3547860996, + -189425.32230335136, + null, + -189245.3547860996, + -188730.12048244115, + null, + -189245.3547860996, + -189312.48116427055, + null, + -189245.3547860996, + -189513.44740838156, + null, + -189245.3547860996, + -188757.56169839122, + null, + -189245.3547860996, + -189517.99575540732, + null, + -189245.3547860996, + -189944.012554813, + null, + -189245.3547860996, + -189496.79918659473, + null, + -189245.3547860996, + -189368.39644194843, + null, + -189245.3547860996, + -189469.04376733972, + null, + -189245.3547860996, + -189362.47419392664, + null, + -189245.3547860996, + -189382.47630280166, + null, + -189245.3547860996, + -189485.70992618654, + null, + -189245.3547860996, + -189559.7791311184, + null, + -189245.3547860996, + -189500.13200693708, + null, + -189245.3547860996, + -189363.56864523052, + null, + -189245.3547860996, + -188356.18496868218, + null, + -189245.3547860996, + -189453.44844629106, + null, + -189245.3547860996, + -189572.48058974993, + null, + -189245.3547860996, + -189475.58635906797, + null, + -189245.3547860996, + -189526.51874136768, + null, + -189245.3547860996, + -189367.89125734873, + null, + -189245.3547860996, + -189541.99521682394, + null, + -189245.3547860996, + -189567.65578797, + null, + -189245.3547860996, + -189471.45745863195, + null, + -189245.3547860996, + -189366.884398309, + null, + -189245.3547860996, + -189599.46915367024, + null, + -189245.3547860996, + -189455.07428863845, + null, + -189245.3547860996, + -189511.27264576766, + null, + -189245.3547860996, + -189580.51999570787, + null, + -189245.3547860996, + -189452.41670386208, + null, + -189245.3547860996, + -189357.50921074985, + null, + -189245.3547860996, + -189441.34490278744, + null, + -189245.3547860996, + -189338.2129481716, + null, + -189245.3547860996, + -188336.9253777015, + null, + -189245.3547860996, + -189539.74164709073, + null, + -189245.3547860996, + -189596.23961239535, + null, + -189245.3547860996, + -189439.38497924476, + null, + -189245.3547860996, + -189423.64743936853, + null, + -189245.3547860996, + -189409.86495387822, + null, + -189245.3547860996, + -189539.70128887953, + null, + -189245.3547860996, + -189667.71460354235, + null, + -189245.3547860996, + -189593.34528908966, + null, + -189245.3547860996, + -189550.91913873702, + null, + -189245.3547860996, + -189351.29030582856, + null, + -189245.3547860996, + -188719.19122749128, + null, + -189245.3547860996, + -189944.03349898005, + null, + -189245.3547860996, + -189421.9621471471, + null, + -189245.3547860996, + -189523.16925353085, + null, + -189245.3547860996, + -189362.616609502, + null, + -189245.3547860996, + -189550.7519103663, + null, + -189245.3547860996, + -189303.51340100932, + null, + -189245.3547860996, + -189504.79772117123, + null, + -189245.3547860996, + -189478.73813235975, + null, + -189245.3547860996, + -189513.39599368742, + null, + -189245.3547860996, + -189335.5119015967, + null, + -189245.3547860996, + -189566.15070619906, + null, + -189245.3547860996, + -189492.97056199546, + null, + -189245.3547860996, + -189370.19960247193, + null, + -184934.10299478343, + -185013.49245940326, + null, + -184934.10299478343, + -184958.53058641133, + null, + -184934.10299478343, + -184935.10362539484, + null, + -184934.10299478343, + -185074.06093464053, + null, + -184934.10299478343, + -184859.90571038926, + null, + -184595.03593603414, + -183731.0180707013, + null, + -184595.03593603414, + -184632.38804639404, + null, + -184595.03593603414, + -185276.91448933058, + null, + -184595.03593603414, + -185229.03460210934, + null, + -184595.03593603414, + -184892.2726260721, + null, + -184595.03593603414, + -184350.70827119582, + null, + -184595.03593603414, + -184726.23986392902, + null, + -185557.18603881687, + -184938.66553901948, + null, + -185557.18603881687, + -185383.19785552978, + null, + -186490.92481183048, + -185557.18603881687, + null, + -184826.82895671725, + -184548.98355077006, + null, + -184826.82895671725, + -184542.5949496982, + null, + -184826.82895671725, + -185281.13137164246, + null, + -184826.82895671725, + -184938.66553901948, + null, + -185447.3982690385, + -184826.82895671725, + null, + -184826.82895671725, + -184517.13018578722, + null, + -184826.82895671725, + -184616.7688318368, + null, + -184826.82895671725, + -184459.0371071663, + null, + -184826.82895671725, + -185344.8813752901, + null, + -184826.82895671725, + -184469.7626795134, + null, + -184826.82895671725, + -184572.61247797642, + null, + -184826.82895671725, + -185442.92204935086, + null, + -184826.82895671725, + -184466.14155302377, + null, + -184826.82895671725, + -184534.56925160962, + null, + -184826.82895671725, + -184454.54429874875, + null, + -184826.82895671725, + -184685.21209432156, + null, + -185703.95718490216, + -185727.50454600956, + null, + -185294.42224015918, + -185229.03460210934, + null, + -185294.42224015918, + -185442.92204935086, + null, + -185294.42224015918, + -184350.70827119582, + null, + -185294.42224015918, + -184892.2726260721, + null, + -185294.42224015918, + -185279.59438908967, + null, + -185294.42224015918, + -185414.48586402094, + null, + -185294.42224015918, + -186324.1665531549, + null, + -185294.42224015918, + -185132.4642161289, + null, + -185575.41563245628, + -185535.53248590635, + null, + -186172.60986329245, + -186171.58567249685, + null, + -186172.60986329245, + -186134.11497462608, + null, + -186172.60986329245, + -186735.62978625085, + null, + -185661.8516968439, + -185727.61304680264, + null, + -185638.24577050543, + -185680.67525457422, + null, + -185638.24577050543, + -185536.38613328367, + null, + -185638.24577050543, + -185655.1626902235, + null, + -185638.24577050543, + -185488.5778872063, + null, + -185965.40347835567, + -186105.887330311, + null, + -185965.40347835567, + -185976.58162628958, + null, + -185965.40347835567, + -186073.11253527744, + null, + -185965.40347835567, + -186128.44688249985, + null, + -185965.40347835567, + -186033.4105802999, + null, + -185965.40347835567, + -186002.9429366717, + null, + -185965.40347835567, + -186045.44966286444, + null, + -185965.40347835567, + -186081.69116184756, + null, + -186004.1374210784, + -185660.47909749488, + null, + -186004.1374210784, + -185707.75565992156, + null, + -186004.1374210784, + -185700.99602275767, + null, + -185781.3584731582, + -185718.84276913418, + null, + -185781.3584731582, + -185902.6810428331, + null, + -185781.3584731582, + -185956.2569658538, + null, + -185815.6127283012, + -185833.31614885287, + null, + -185815.6127283012, + -185851.9149913291, + null, + -185815.6127283012, + -185927.02764805633, + null, + -184723.17471127305, + -185229.03460210934, + null, + -184723.17471127305, + -183731.0180707013, + null, + -184723.17471127305, + -184350.70827119582, + null, + -186009.95200031195, + -185956.9814913556, + null, + -186009.95200031195, + -185864.94860133113, + null, + -186009.95200031195, + -185974.76542021832, + null, + -186490.92481183048, + -186009.95200031195, + null, + -186195.38531040744, + -186732.12278519588, + null, + -185753.05619845918, + -185843.3464556168, + null, + -185703.19314166557, + -185802.44778285624, + null, + -185703.19314166557, + -185754.544341611, + null, + -186594.9114183287, + -186863.0905598625, + null, + -186594.9114183287, + -186687.5390903128, + null, + -186594.9114183287, + -187076.44109914085, + null, + -186594.9114183287, + -186747.14508188295, + null, + -186594.9114183287, + -187126.73472208405, + null, + -186594.9114183287, + -187085.60542441468, + null, + -186594.9114183287, + -186786.29748301074, + null, + -186594.9114183287, + -186598.35931928424, + null, + -185580.15593113314, + -185525.00035815442, + null, + -185541.68129385356, + -185444.044824558, + null, + -186549.16628896404, + -187440.6696185839, + null, + -186549.16628896404, + -186566.67634397448, + null, + -185479.2357860194, + -185660.47909749488, + null, + -185479.2357860194, + -185354.45827997458, + null, + -185479.2357860194, + -185707.75565992156, + null, + -185479.2357860194, + -185700.99602275767, + null, + -184618.35740420443, + -184622.6678207158, + null, + -184661.85928366336, + -184757.69014603368, + null, + -184523.38966404533, + -184575.60851572294, + null, + -184523.38966404533, + -184719.94581504792, + null, + -184523.38966404533, + -183731.0180707013, + null, + -184523.38966404533, + -184350.70827119582, + null, + -184523.38966404533, + -185153.81686134142, + null, + -184523.38966404533, + -185132.4642161289, + null, + -185717.16624584142, + -185572.97533470273, + null, + -186603.54049738206, + -185717.16624584142, + null, + -185000.47819436324, + -185717.16624584142, + null, + -185769.4575393162, + -185717.16624584142, + null, + -185778.33475206984, + -185717.16624584142, + null, + -185864.6939073649, + -185717.16624584142, + null, + -185242.38515533158, + -185717.16624584142, + null, + -185483.3295420938, + -185426.46129555986, + null, + -186417.94305405728, + -186646.66034112757, + null, + -186417.94305405728, + -186764.78961016686, + null, + -186417.94305405728, + -186389.46830649345, + null, + -186417.94305405728, + -186349.721133472, + null, + -186417.94305405728, + -186797.6920016611, + null, + -186417.94305405728, + -186735.62978625085, + null, + -186417.94305405728, + -186355.21655197296, + null, + -186417.94305405728, + -186814.08319625797, + null, + -186417.94305405728, + -186513.88131954975, + null, + -186417.94305405728, + -186841.85064924235, + null, + -186417.94305405728, + -186461.71104419266, + null, + -186417.94305405728, + -186495.60474119912, + null, + -186417.94305405728, + -186499.94535950987, + null, + -186246.51492087843, + -186797.6920016611, + null, + -186246.51492087843, + -186764.78961016686, + null, + -186246.51492087843, + -186389.46830649345, + null, + -186246.51492087843, + -186349.721133472, + null, + -186246.51492087843, + -186735.62978625085, + null, + -186246.51492087843, + -186814.08319625797, + null, + -184845.9682979859, + -185229.03460210934, + null, + -184845.9682979859, + -184350.70827119582, + null, + -184845.9682979859, + -185132.4642161289, + null, + -184540.75647463603, + -185229.03460210934, + null, + -184540.75647463603, + -183731.0180707013, + null, + -184540.75647463603, + -184350.70827119582, + null, + -184666.37763325783, + -183731.0180707013, + null, + -184666.37763325783, + -184719.94581504792, + null, + -184666.37763325783, + -184350.70827119582, + null, + -184666.37763325783, + -185153.81686134142, + null, + -184666.37763325783, + -184726.23986392902, + null, + -184666.37763325783, + -185132.4642161289, + null, + -185185.18619115572, + -185153.81686134142, + null, + -185185.18619115572, + -185414.48586402094, + null, + -185185.18619115572, + -185132.4642161289, + null, + -185185.18619115572, + -185279.59438908967, + null, + -186199.38823877013, + -186065.51198935235, + null, + -186199.38823877013, + -186213.8074190881, + null, + -186199.38823877013, + -186160.78639569957, + null, + -186199.38823877013, + -185442.92204935086, + null, + -186199.38823877013, + -186112.10093216717, + null, + -184507.9099237428, + -184719.94581504792, + null, + -184507.9099237428, + -183731.0180707013, + null, + -184507.9099237428, + -185442.92204935086, + null, + -184507.9099237428, + -184723.2742356617, + null, + -184507.9099237428, + -184892.2726260721, + null, + -184507.9099237428, + -184350.70827119582, + null, + -184507.9099237428, + -184726.23986392902, + null, + -187003.43820973596, + -187073.89756594264, + null, + -187003.43820973596, + -186996.16233734277, + null, + -186545.16136884323, + -186646.66034112757, + null, + -186545.16136884323, + -186797.6920016611, + null, + -186545.16136884323, + -186764.78961016686, + null, + -186545.16136884323, + -186389.46830649345, + null, + -186545.16136884323, + -186349.721133472, + null, + -186545.16136884323, + -186735.62978625085, + null, + -186545.16136884323, + -186513.88131954975, + null, + -186545.16136884323, + -186841.85064924235, + null, + -186545.16136884323, + -186461.71104419266, + null, + -186545.16136884323, + -186495.60474119912, + null, + -186545.16136884323, + -186814.08319625797, + null, + -186545.16136884323, + -186499.94535950987, + null, + -186951.0722009215, + -186997.73649561932, + null, + -186951.0722009215, + -186937.89091646543, + null, + -186951.0722009215, + -186864.95551788062, + null, + -186951.0722009215, + -186985.11266736986, + null, + -186951.0722009215, + -187030.91302532048, + null, + -186951.0722009215, + -186947.00283212372, + null, + -186951.0722009215, + -187085.60542441468, + null, + -186951.0722009215, + -186863.0905598625, + null, + -186951.0722009215, + -186687.5390903128, + null, + -186951.0722009215, + -187076.44109914085, + null, + -186951.0722009215, + -186747.14508188295, + null, + -186951.0722009215, + -187126.73472208405, + null, + -186951.0722009215, + -186997.2675516971, + null, + -186951.0722009215, + -186875.9473745203, + null, + -186951.0722009215, + -186901.92526942323, + null, + -186951.0722009215, + -186900.29593926048, + null, + -186951.0722009215, + -187024.62336807686, + null, + -186951.0722009215, + -187037.0011573454, + null, + -186951.0722009215, + -186832.6725820172, + null, + -186951.0722009215, + -186786.29748301074, + null, + -186951.0722009215, + -186813.1846090411, + null, + -186588.34259437467, + -186614.42390696477, + null, + -186588.34259437467, + -186560.72865754293, + null, + -186588.34259437467, + -186735.62978625085, + null, + -186588.34259437467, + -186797.6920016611, + null, + -186588.34259437467, + -186606.74246421392, + null, + -185936.8747686248, + -185963.7812395475, + null, + -185936.8747686248, + -185842.28988354502, + null, + -185936.8747686248, + -185790.03574118888, + null, + -185936.8747686248, + -185826.68751853835, + null, + -186443.85498753583, + -186461.4445482228, + null, + -186443.85498753583, + -186550.8345017166, + null, + -186443.85498753583, + -186570.36775560552, + null, + -186443.85498753583, + -186423.99947252453, + null, + -186443.85498753583, + -186628.01342634475, + null, + -186443.85498753583, + -186475.36638154497, + null, + -186141.55895141896, + -186064.49513448935, + null, + -186141.55895141896, + -186350.56007629345, + null, + -186141.55895141896, + -186061.0704683533, + null, + -186141.55895141896, + -186156.7436722801, + null, + -186141.55895141896, + -186019.09209682065, + null, + -186141.55895141896, + -186114.6936778866, + null, + -186141.55895141896, + -186158.97877465814, + null, + -186141.55895141896, + -186067.0862167175, + null, + -186141.55895141896, + -186017.97165171077, + null, + -184523.06400318502, + -184373.86341036516, + null, + -185073.57268297486, + -185153.81686134142, + null, + -185073.57268297486, + -185414.48586402094, + null, + -185073.57268297486, + -185132.4642161289, + null, + -185073.57268297486, + -185279.59438908967, + null, + -185077.8905521608, + -185153.81686134142, + null, + -185077.8905521608, + -185414.48586402094, + null, + -185077.8905521608, + -185132.4642161289, + null, + -185077.8905521608, + -185279.59438908967, + null, + -184685.0000328583, + -183731.0180707013, + null, + -184685.0000328583, + -184719.94581504792, + null, + -184685.0000328583, + -185442.92204935086, + null, + -184685.0000328583, + -184892.2726260721, + null, + -184685.0000328583, + -184350.70827119582, + null, + -184685.0000328583, + -184726.23986392902, + null, + -184685.0000328583, + -185132.4642161289, + null, + -187192.2975120381, + -187019.55647718406, + null, + -187002.80523749278, + -186797.6920016611, + null, + -187002.80523749278, + -186950.25182405324, + null, + -187002.80523749278, + -186814.08319625797, + null, + -187002.80523749278, + -186841.85064924235, + null, + -187003.69318072736, + -186814.08319625797, + null, + -187003.69318072736, + -186797.6920016611, + null, + -187003.69318072736, + -186841.85064924235, + null, + -186907.3329708996, + -186484.6927396635, + null, + -186907.3329708996, + -186971.5333996734, + null, + -187388.2617066739, + -187500.48780981993, + null, + -186950.9060841143, + -186563.95497765776, + null, + -186950.9060841143, + -186878.72794609106, + null, + -187426.40772893745, + -187396.02141762438, + null, + -188015.87833895627, + -188618.1767619867, + null, + -186718.14847004472, + -186288.04758386785, + null, + -186718.14847004472, + -186571.8229187881, + null, + -186718.14847004472, + -186630.38236103597, + null, + -186718.14847004472, + -186310.58059116386, + null, + -187192.52823779927, + -187104.66672028726, + null, + -187192.52823779927, + -187258.6264260895, + null, + -187430.84477593255, + -187483.32473075076, + null, + -188090.9736323963, + -188432.80628645205, + null, + -187785.39966082262, + -188090.9736323963, + null, + -188158.79572465117, + -188090.9736323963, + null, + -188090.9736323963, + -188300.89497706314, + null, + -188183.12236589222, + -188090.9736323963, + null, + -188090.9736323963, + -188042.5665423474, + null, + -188776.05672438274, + -188090.9736323963, + null, + -188090.9736323963, + -188364.38063477044, + null, + -187057.4226896695, + -186863.0905598625, + null, + -187057.4226896695, + -186687.5390903128, + null, + -187057.4226896695, + -187076.44109914085, + null, + -187057.4226896695, + -187126.73472208405, + null, + -187057.4226896695, + -187085.60542441468, + null, + -187299.00679136443, + -187286.4447786102, + null, + -187299.00679136443, + -187200.34425699944, + null, + -187898.09108993356, + -187965.5292712589, + null, + -187898.09108993356, + -188225.16941637502, + null, + -187898.09108993356, + -188062.36969725473, + null, + -187898.09108993356, + -188181.734542407, + null, + -187898.09108993356, + -188155.6659757379, + null, + -187800.71024494842, + -188111.17360157988, + null, + -187800.71024494842, + -188128.15679037262, + null, + -187578.7945424208, + -187472.995221879, + null, + -187578.7945424208, + -187574.469287988, + null, + -188236.33672313037, + -187852.2157456399, + null, + -187852.2157456399, + -188062.32220423166, + null, + -187852.2157456399, + -187894.01688021977, + null, + -187852.2157456399, + -188099.19669860823, + null, + -188445.4527261622, + -189762.7876085155, + null, + -188158.79572465117, + -188445.4527261622, + null, + -187785.39966082262, + -188445.4527261622, + null, + -188445.4527261622, + -188601.02966071616, + null, + -188445.4527261622, + -188432.80628645205, + null, + -188445.4527261622, + -188364.38063477044, + null, + -187821.0464781729, + -187946.30083110215, + null, + -187821.0464781729, + -187939.07366045075, + null, + -187821.0464781729, + -187903.16231886458, + null, + -187821.0464781729, + -188040.85490399896, + null, + -187821.0464781729, + -187860.1481306559, + null, + -187821.0464781729, + -188160.71996131094, + null, + -187538.8698057885, + -187432.15774098889, + null, + -187538.8698057885, + -187525.83126370964, + null, + -187904.2446480533, + -188031.27587781637, + null, + -187904.2446480533, + -188070.40997344436, + null, + -187904.2446480533, + -188048.3992797907, + null, + -187904.2446480533, + -187895.89321173978, + null, + -187904.2446480533, + -188181.734542407, + null, + -187904.2446480533, + -187936.34066587713, + null, + -187904.2446480533, + -188155.82804223945, + null, + -187904.2446480533, + -188130.31137840738, + null, + -187904.2446480533, + -188120.22345911132, + null, + -187904.2446480533, + -188032.87803354842, + null, + -187904.2446480533, + -188172.4473275845, + null, + -187904.2446480533, + -187808.99921337265, + null, + -187707.84632557898, + -187936.34066587713, + null, + -187707.84632557898, + -187895.89321173978, + null, + -187707.84632557898, + -187967.87420157884, + null, + -187707.84632557898, + -187734.2241532564, + null, + -187707.84632557898, + -187631.17759388033, + null, + -187707.84632557898, + -187665.10987331756, + null, + -187707.84632557898, + -187571.98956801443, + null, + -187707.84632557898, + -187705.53688735073, + null, + -187515.5351218408, + -187482.80309790745, + null, + -187515.5351218408, + -187551.0033509855, + null, + -188304.55925484645, + -188658.0072073565, + null, + -188304.55925484645, + -189077.79649620972, + null, + -187109.55145493208, + -186927.86579355603, + null, + -186442.0690847481, + -186927.86579355603, + null, + -186870.85476427, + -186927.86579355603, + null, + -187675.71540639747, + -187731.77787177297, + null, + -187675.71540639747, + -187759.8314365375, + null, + -187675.71540639747, + -187692.0166453802, + null, + -187132.18270199542, + -187044.02292752767, + null, + -187132.18270199542, + -187058.71596401595, + null, + -187132.18270199542, + -187088.50568167077, + null, + -187132.18270199542, + -187073.6774906163, + null, + -186691.95573974657, + -186661.11383538053, + null, + -186109.56426562366, + -186661.11383538053, + null, + -186418.54900034756, + -186661.11383538053, + null, + -186324.3395864327, + -186661.11383538053, + null, + -187238.4395913106, + -187239.5588897707, + null, + -187238.4395913106, + -187170.77976082207, + null, + -186711.99171266862, + -186801.35615984973, + null, + -187274.8884360902, + -187206.43231087644, + null, + -187274.8884360902, + -187147.2617761165, + null, + -187274.8884360902, + -187156.6127847207, + null, + -187274.8884360902, + -187288.92506628836, + null, + -187274.8884360902, + -187242.12665091688, + null, + -187274.8884360902, + -187173.12966849466, + null, + -187274.8884360902, + -187092.16430615127, + null, + -187274.8884360902, + -187263.40330149935, + null, + -187274.8884360902, + -187369.76914685333, + null, + -187274.8884360902, + -187198.53043071972, + null, + -187274.8884360902, + -187165.6819904993, + null, + -187274.8884360902, + -187252.84288585366, + null, + -187274.8884360902, + -187210.98676202566, + null, + -187274.8884360902, + -187153.50395988487, + null, + -187274.8884360902, + -187277.2067933512, + null, + -187274.8884360902, + -187342.80854711783, + null, + -187274.8884360902, + -187068.89280375512, + null, + -187274.8884360902, + -187238.5009002487, + null, + -187274.8884360902, + -187216.975043701, + null, + -187274.8884360902, + -187109.7384653588, + null, + -187274.8884360902, + -187259.9476909209, + null, + -187274.8884360902, + -187308.82684037564, + null, + -187274.8884360902, + -187159.23609979774, + null, + -187274.8884360902, + -187363.1881956749, + null, + -187274.8884360902, + -187159.41832586098, + null, + -187274.8884360902, + -187410.99982117375, + null, + -187605.70324073057, + -187796.24083019167, + null, + -187605.70324073057, + -187606.8809797769, + null, + -187459.62733920277, + -187444.6011580884, + null, + -187459.62733920277, + -187390.00271703285, + null, + -187350.64454981094, + -187099.9147383517, + null, + -187350.64454981094, + -187472.02889830602, + null, + -187987.25877007708, + -188118.10121137855, + null, + -187987.25877007708, + -188058.55113991152, + null, + -187987.25877007708, + -188152.38460645571, + null, + -187987.25877007708, + -187998.2545058029, + null, + -187987.25877007708, + -187975.58317137446, + null, + -187987.25877007708, + -188204.5488536757, + null, + -187987.25877007708, + -188186.43905492313, + null, + -187987.25877007708, + -187962.60318830537, + null, + -187987.25877007708, + -188107.7357415216, + null, + -187987.25877007708, + -188164.08029550806, + null, + -187987.25877007708, + -188015.52564658516, + null, + -187987.25877007708, + -188401.70303736636, + null, + -188158.79572465117, + -187987.25877007708, + null, + -187987.25877007708, + -188145.6956721136, + null, + -187859.86995225446, + -188133.99953381368, + null, + -188696.782377594, + -188133.99953381368, + null, + -188808.58568177576, + -188133.99953381368, + null, + -187594.8777657927, + -187908.8502698971, + null, + -188109.5947916895, + -187908.8502698971, + null, + -188135.7951117508, + -187908.8502698971, + null, + -188129.3743830729, + -187908.8502698971, + null, + -188038.4334288893, + -187908.8502698971, + null, + -188138.17806449422, + -187908.8502698971, + null, + -188068.89540782082, + -187908.8502698971, + null, + -188079.8329504583, + -187908.8502698971, + null, + -188126.67429510137, + -187908.8502698971, + null, + -188119.49823623613, + -187908.8502698971, + null, + -188097.6602407291, + -187908.8502698971, + null, + -188023.85098966694, + -187908.8502698971, + null, + -188123.9780570342, + -187908.8502698971, + null, + -188082.81454332572, + -187908.8502698971, + null, + -188113.8147030654, + -187908.8502698971, + null, + -188124.65543545736, + -187908.8502698971, + null, + -188121.51859750494, + -187908.8502698971, + null, + -187974.06713440962, + -188116.4163078441, + null, + -187974.06713440962, + -188550.56920449316, + null, + -188174.96094340537, + -188650.65877533983, + null, + -188174.96094340537, + -188550.56920449316, + null, + -188174.96094340537, + -188629.10826848733, + null, + -188174.96094340537, + -188615.4770908332, + null, + -187654.68501915902, + -187617.20728946448, + null, + -187654.68501915902, + -187778.39851127946, + null, + -187594.8777657927, + -187919.67545603745, + null, + -188109.5947916895, + -187919.67545603745, + null, + -188135.7951117508, + -187919.67545603745, + null, + -188129.3743830729, + -187919.67545603745, + null, + -188038.4334288893, + -187919.67545603745, + null, + -188138.17806449422, + -187919.67545603745, + null, + -188068.89540782082, + -187919.67545603745, + null, + -188079.8329504583, + -187919.67545603745, + null, + -188126.67429510137, + -187919.67545603745, + null, + -188119.49823623613, + -187919.67545603745, + null, + -188097.6602407291, + -187919.67545603745, + null, + -188023.85098966694, + -187919.67545603745, + null, + -188123.9780570342, + -187919.67545603745, + null, + -188082.81454332572, + -187919.67545603745, + null, + -188113.8147030654, + -187919.67545603745, + null, + -188124.65543545736, + -187919.67545603745, + null, + -188121.51859750494, + -187919.67545603745, + null, + -188033.5893052449, + -188244.79326966844, + null, + -188033.5893052449, + -188213.14960795594, + null, + -188033.5893052449, + -188231.4342562094, + null, + -188033.5893052449, + -188113.22548338465, + null, + -188033.5893052449, + -188023.6918304611, + null, + -188033.5893052449, + -188262.28974807056, + null, + -188033.5893052449, + -188215.08406320887, + null, + -188033.5893052449, + -188272.12758768487, + null, + -188033.5893052449, + -188247.52374121372, + null, + -188033.5893052449, + -188234.36159403733, + null, + -188033.5893052449, + -188185.72950550105, + null, + -188033.5893052449, + -188235.01025868888, + null, + -188033.5893052449, + -188188.26732140826, + null, + -187179.74870279036, + -187106.90783512246, + null, + -187179.74870279036, + -187129.68155894056, + null, + -187179.74870279036, + -187059.63779786762, + null, + -187958.6837154068, + -188336.02952000388, + null, + -187958.6837154068, + -188287.7882146985, + null, + -187098.08472081405, + -187291.27141208755, + null, + -187098.08472081405, + -187309.56083654592, + null, + -187098.08472081405, + -188160.71996131094, + null, + -187817.05963383534, + -188031.80187769613, + null, + -187817.05963383534, + -187966.1524006884, + null, + -187817.05963383534, + -187974.4559084142, + null, + -187817.05963383534, + -188040.85490399896, + null, + -187817.05963383534, + -187907.4340805515, + null, + -187817.05963383534, + -187767.69283004745, + null, + -187227.08326375764, + -187180.89797155827, + null, + -187227.08326375764, + -187226.84036497626, + null, + -187227.08326375764, + -187060.70491358606, + null, + -187840.08914857774, + -188240.28382077243, + null, + -187243.47707715337, + -187284.9913843901, + null, + -187243.47707715337, + -187186.54130078974, + null, + -187243.47707715337, + -187275.69818428368, + null, + -187870.53601201336, + -187867.79057975026, + null, + -187870.53601201336, + -188031.27587781637, + null, + -187870.53601201336, + -188181.734542407, + null, + -187870.53601201336, + -188070.40997344436, + null, + -187870.53601201336, + -188155.6659757379, + null, + -187825.62181611278, + -188031.27587781637, + null, + -187825.62181611278, + -187990.37417889741, + null, + -187825.62181611278, + -188062.36969725473, + null, + -187825.62181611278, + -188155.6659757379, + null, + -187825.62181611278, + -187895.89321173978, + null, + -187383.08957187168, + -187368.6219077213, + null, + -186628.42409363462, + -186137.40837100832, + null, + -185645.35316113118, + -186137.40837100832, + null, + -185328.69791728977, + -186137.40837100832, + null, + -186137.40837100832, + -186143.80639793802, + null, + -187368.8604475479, + -187491.1668464797, + null, + -186975.18042715648, + -186533.40398627482, + null, + -187218.33649070092, + -187180.10508663693, + null, + -187115.92005878876, + -186959.9607940277, + null, + -187115.92005878876, + -186797.6920016611, + null, + -187115.92005878876, + -186764.78961016686, + null, + -187115.92005878876, + -186841.85064924235, + null, + -187115.92005878876, + -186814.08319625797, + null, + -188577.08388106618, + -189430.02118486408, + null, + -188577.08388106618, + -189533.9883014909, + null, + -188577.08388106618, + -189550.71352449455, + null, + -188577.08388106618, + -188912.60302975413, + null, + -188577.08388106618, + -189360.94131929203, + null, + -185632.1535476023, + -185478.86967573757, + null, + -185632.1535476023, + -186026.48205634058, + null, + -185632.1535476023, + -186004.81625674714, + null, + -185632.1535476023, + -185520.730759067, + null, + -185632.1535476023, + -185998.5887411339, + null, + -186782.64173592345, + -187129.68155894056, + null, + -186782.64173592345, + -187137.15198455175, + null, + -186782.64173592345, + -187106.90783512246, + null, + -186782.64173592345, + -186802.3568031418, + null, + -186782.64173592345, + -186868.89558539094, + null, + -186782.64173592345, + -187059.63779786762, + null, + -187389.2021586, + -187655.25025753496, + null, + -187389.2021586, + -188481.01875659585, + null, + -188364.15112362726, + -188776.08503380354, + null, + -188364.15112362726, + -189000.49204416302, + null, + -188364.15112362726, + -188714.40557555703, + null, + -188088.5917691664, + -188031.27587781637, + null, + -188088.5917691664, + -188062.36969725473, + null, + -188088.5917691664, + -188312.61881360278, + null, + -188088.5917691664, + -188070.40997344436, + null, + -188088.5917691664, + -188048.3992797907, + null, + -188088.5917691664, + -188181.734542407, + null, + -188088.5917691664, + -188120.22345911132, + null, + -188088.5917691664, + -188155.82804223945, + null, + -188088.5917691664, + -187895.89321173978, + null, + -188088.5917691664, + -188130.31137840738, + null, + -188088.5917691664, + -187936.34066587713, + null, + -188088.5917691664, + -188155.6659757379, + null, + -188088.5917691664, + -188032.87803354842, + null, + -188088.5917691664, + -188172.4473275845, + null, + -187984.06459012086, + -188175.30943800946, + null, + -187984.06459012086, + -188163.88067313796, + null, + -187984.06459012086, + -188226.39056838182, + null, + -187984.06459012086, + -188209.27391620574, + null, + -187984.06459012086, + -188335.63051938498, + null, + -188713.3588507996, + -189088.68284567073, + null, + -188713.3588507996, + -189075.73849338002, + null, + -188713.3588507996, + -188951.38770398786, + null, + -188713.3588507996, + -188963.77157590713, + null, + -188713.3588507996, + -189065.25002395606, + null, + -188713.3588507996, + -188951.75753479835, + null, + -188713.3588507996, + -188905.5182702426, + null, + -188713.3588507996, + -188940.43452731014, + null, + -188713.3588507996, + -189039.75779005556, + null, + -188713.3588507996, + -189206.12228753112, + null, + -188713.3588507996, + -188851.90860081342, + null, + -188713.3588507996, + -189009.33129113074, + null, + -188713.3588507996, + -189075.7496586295, + null, + -188713.3588507996, + -188914.1058596282, + null, + -188713.3588507996, + -189044.50009148906, + null, + -188713.3588507996, + -188978.63723458152, + null, + -188713.3588507996, + -188869.1337570157, + null, + -188713.3588507996, + -189039.16739681517, + null, + -188713.3588507996, + -189001.4557504514, + null, + -188713.3588507996, + -188915.3021854897, + null, + -188624.00866552212, + -188715.59088057993, + null, + -188624.00866552212, + -188811.45728948622, + null, + -188363.5387691212, + -188810.17734219952, + null, + -188363.5387691212, + -189093.52694899408, + null, + -187634.18143546607, + -188064.28392279483, + null, + -187634.18143546607, + -187758.21727978287, + null, + -187634.18143546607, + -188265.23932553243, + null, + -188126.67429510137, + -187634.18143546607, + null, + -187634.18143546607, + -188123.85049620818, + null, + -187634.18143546607, + -187927.6227750181, + null, + -187634.18143546607, + -187838.97430345853, + null, + -188079.8329504583, + -187634.18143546607, + null, + -186777.46669602653, + -186958.81639775305, + null, + -186777.46669602653, + -186907.28656468532, + null, + -186820.56521939114, + -186927.36304929492, + null, + -186867.77653250156, + -187085.60542441468, + null, + -186867.77653250156, + -187076.44109914085, + null, + -186867.77653250156, + -187126.73472208405, + null, + -186618.4433734245, + -186672.81797529917, + null, + -187699.43272561228, + -188609.42242236514, + null, + -188333.01761814565, + -187699.43272561228, + null, + -185956.04238149663, + -186533.40398627482, + null, + -187466.71062113094, + -187707.60820000168, + null, + -187466.71062113094, + -187504.85470640293, + null, + -188115.28176793884, + -188650.65877533983, + null, + -188115.28176793884, + -188629.10826848733, + null, + -188115.28176793884, + -188615.4770908332, + null, + -188115.28176793884, + -188550.56920449316, + null, + -187716.48506167036, + -188111.17360157988, + null, + -187716.48506167036, + -188128.15679037262, + null, + -188144.50874112692, + -189110.24543217203, + null, + -187644.81497540837, + -188023.84131581298, + null, + -187644.81497540837, + -187790.5245520355, + null, + -187644.81497540837, + -188012.06379015357, + null, + -187452.13970792587, + -187675.9578640814, + null, + -187779.38447152777, + -187970.69994692729, + null, + -187779.38447152777, + -188070.52866315134, + null, + -187779.38447152777, + -188065.10539432376, + null, + -187779.38447152777, + -187968.263731226, + null, + -187503.58157137837, + -187700.7506709641, + null, + -187503.58157137837, + -187765.9490496175, + null, + -187819.7552003765, + -188079.28387346116, + null, + -187819.7552003765, + -187946.30083110215, + null, + -187819.7552003765, + -188216.9357266321, + null, + -187819.7552003765, + -187903.16231886458, + null, + -187819.7552003765, + -188040.85490399896, + null, + -187819.7552003765, + -187860.1481306559, + null, + -187819.7552003765, + -188160.71996131094, + null, + -187727.83570354496, + -188079.28387346116, + null, + -187727.83570354496, + -187859.43582945326, + null, + -187727.83570354496, + -187881.72894882134, + null, + -187727.83570354496, + -187966.1524006884, + null, + -187727.83570354496, + -187846.40461867992, + null, + -187727.83570354496, + -187850.35451233227, + null, + -187727.83570354496, + -188040.85490399896, + null, + -187950.17000928946, + -188728.6455416676, + null, + -187950.17000928946, + -188149.60791583278, + null, + -187918.25825739285, + -188022.7222170089, + null, + -188059.71110303834, + -188255.90003583845, + null, + -188059.71110303834, + -188221.7088630824, + null, + -188071.01532488095, + -187990.37417889741, + null, + -188071.01532488095, + -188225.16941637502, + null, + -188071.01532488095, + -188062.36969725473, + null, + -188071.01532488095, + -188181.734542407, + null, + -188071.01532488095, + -188155.6659757379, + null, + -188127.41684105122, + -188163.88067313796, + null, + -188127.41684105122, + -188175.30943800946, + null, + -188127.41684105122, + -188193.52566727533, + null, + -188127.41684105122, + -188226.39056838182, + null, + -188127.41684105122, + -188012.06379015357, + null, + -188127.41684105122, + -188209.27391620574, + null, + -188127.41684105122, + -188355.29507459403, + null, + -188127.41684105122, + -188312.87042909442, + null, + -188138.2687240919, + -188204.5488536757, + null, + -188138.2687240919, + -188128.3711568641, + null, + -188138.2687240919, + -188058.55113991152, + null, + -188138.2687240919, + -188186.43905492313, + null, + -188138.2687240919, + -188107.7357415216, + null, + -188138.2687240919, + -188164.08029550806, + null, + -188138.2687240919, + -188015.52564658516, + null, + -188138.2687240919, + -188401.70303736636, + null, + -188138.2687240919, + -188355.54500076355, + null, + -188158.79572465117, + -188138.2687240919, + null, + -188138.2687240919, + -188145.6956721136, + null, + -188544.97753253547, + -188658.0072073565, + null, + -188544.97753253547, + -188736.05243360804, + null, + -188544.97753253547, + -188740.43423724885, + null, + -188544.97753253547, + -188813.8225883926, + null, + -188544.97753253547, + -189133.8473924533, + null, + -188544.97753253547, + -188770.00276586786, + null, + -187850.79133717477, + -187738.94090615874, + null, + -187850.79133717477, + -187912.43204192858, + null, + -188029.4838038799, + -188179.3106533003, + null, + -188029.4838038799, + -188134.73671238107, + null, + -188053.78221453892, + -188143.66245138436, + null, + -188053.78221453892, + -188187.54601173053, + null, + -188053.78221453892, + -187975.5749715801, + null, + -187985.91644521983, + -187947.11070160166, + null, + -187985.91644521983, + -188181.5560967198, + null, + -188319.77932730978, + -188650.65877533983, + null, + -188319.77932730978, + -188550.56920449316, + null, + -188319.77932730978, + -188629.10826848733, + null, + -188319.77932730978, + -188615.4770908332, + null, + -188058.86903379706, + -187883.27494840516, + null, + -188058.86903379706, + -188169.70603632976, + null, + -188058.86903379706, + -187970.877541831, + null, + -188058.86903379706, + -188133.03987872423, + null, + -188058.86903379706, + -188110.62617021287, + null, + -188058.86903379706, + -188151.5012872308, + null, + -188058.86903379706, + -188211.38351583906, + null, + -188058.86903379706, + -187925.41207692228, + null, + -188058.86903379706, + -187993.2042355374, + null, + -188058.86903379706, + -188267.4433579352, + null, + -188156.86956179672, + -188244.79326966844, + null, + -188156.86956179672, + -188213.14960795594, + null, + -188156.86956179672, + -188341.5637869163, + null, + -188156.86956179672, + -188231.4342562094, + null, + -188156.86956179672, + -188290.85103842587, + null, + -188156.86956179672, + -188325.80348101287, + null, + -188156.86956179672, + -188215.08406320887, + null, + -188156.86956179672, + -188272.12758768487, + null, + -188156.86956179672, + -188247.52374121372, + null, + -188156.86956179672, + -188234.36159403733, + null, + -188156.86956179672, + -188185.72950550105, + null, + -188156.86956179672, + -188235.01025868888, + null, + -188156.86956179672, + -188188.26732140826, + null, + -188156.86956179672, + -188262.28974807056, + null, + -188229.6880717756, + -188223.46779498976, + null, + -188229.6880717756, + -188213.9164635894, + null, + -188229.6880717756, + -188205.49509758296, + null, + -188229.6880717756, + -188211.13477789238, + null, + -188484.82353855815, + -189041.39569706662, + null, + -188484.82353855815, + -188572.92778198744, + null, + -188484.82353855815, + -188651.52337605663, + null, + -188095.58751833517, + -188170.50337793116, + null, + -187872.1074932044, + -187892.03383253983, + null, + -187872.1074932044, + -187909.65223383403, + null, + -187955.31108521658, + -188044.8103796621, + null, + -187955.31108521658, + -188041.9401363172, + null, + -188110.34340208996, + -188262.9817529038, + null, + -188110.34340208996, + -188225.16941637502, + null, + -188110.34340208996, + -188312.61881360278, + null, + -188110.34340208996, + -188155.6659757379, + null, + -188020.26106810436, + -188023.84131581298, + null, + -188020.26106810436, + -188209.27391620574, + null, + -188020.26106810436, + -188012.06379015357, + null, + -188020.26106810436, + -188175.30943800946, + null, + -188084.40086565504, + -188256.1065241927, + null, + -188084.40086565504, + -188209.65683125617, + null, + -188084.40086565504, + -188114.23360095327, + null, + -188480.56911294378, + -188697.0393909679, + null, + -188480.56911294378, + -188681.5607578964, + null, + -188480.56911294378, + -189133.8473924533, + null, + -188480.56911294378, + -188730.09509530946, + null, + -188480.56911294378, + -188736.05243360804, + null, + -189671.69440695026, + -190034.47824283707, + null, + -189671.69440695026, + -189435.73444291795, + null, + -189671.69440695026, + -189133.8473924533, + null, + -189769.90898797516, + -190034.47824283707, + null, + -189769.90898797516, + -189077.79649620972, + null, + -189769.90898797516, + -189435.73444291795, + null, + -189769.90898797516, + -189133.8473924533, + null, + -190284.9707253069, + -190501.98770180898, + null, + -190284.9707253069, + -190447.71814332827, + null, + -188031.62889293503, + -188084.4049082775, + null, + -188031.62889293503, + -188259.3724547593, + null, + -186109.56426562366, + -186743.00019037828, + null, + -186418.54900034756, + -186743.00019037828, + null, + -186691.95573974657, + -186743.00019037828, + null, + -186120.97182205616, + -186743.00019037828, + null, + -188003.55552109788, + -188206.0236343385, + null, + -187785.39966082262, + -188003.55552109788, + null, + -188003.55552109788, + -188263.0862416689, + null, + -188363.56661918454, + -188557.4596234686, + null, + -188363.56661918454, + -188502.3898432576, + null, + -188363.56661918454, + -188505.68688054534, + null, + -188363.56661918454, + -188469.82315365504, + null, + -188363.56661918454, + -188505.51258337646, + null, + -187746.85639765018, + -187803.69675157015, + null, + -188346.87533387216, + -188242.03582545792, + null, + -188346.87533387216, + -188340.80377890947, + null, + -188346.87533387216, + -188079.28387346116, + null, + -188346.87533387216, + -188113.01612090584, + null, + -188346.87533387216, + -188417.0385262703, + null, + -188346.87533387216, + -188371.1353376313, + null, + -188346.87533387216, + -188321.03177579722, + null, + -188346.87533387216, + -188339.34322755944, + null, + -188346.87533387216, + -188216.9357266321, + null, + -188346.87533387216, + -188251.23458842657, + null, + -188346.87533387216, + -188337.78581776284, + null, + -188346.87533387216, + -188397.17051714816, + null, + -188346.87533387216, + -188454.9590132297, + null, + -188346.87533387216, + -188208.58303294552, + null, + -188346.87533387216, + -188040.85490399896, + null, + -188346.87533387216, + -188169.8318157927, + null, + -188346.87533387216, + -188266.84959804747, + null, + -187903.51839239706, + -187741.94817842022, + null, + -187903.51839239706, + -187915.18145302637, + null, + -187903.51839239706, + -187730.29858536096, + null, + -187903.51839239706, + -187855.06171209805, + null, + -187903.51839239706, + -188047.300018304, + null, + -187903.51839239706, + -187808.78158663612, + null, + -188043.9321563204, + -188004.16215920547, + null, + -188043.9321563204, + -188000.00859777548, + null, + -188112.71027176845, + -187965.5292712589, + null, + -188112.71027176845, + -188062.36969725473, + null, + -188112.71027176845, + -188031.27587781637, + null, + -188112.71027176845, + -188181.734542407, + null, + -188112.71027176845, + -188155.6659757379, + null, + -188550.03414205718, + -188755.66928509064, + null, + -188550.03414205718, + -188641.96581119657, + null, + -188550.03414205718, + -188742.29461186353, + null, + -187563.39014736656, + -188550.03414205718, + null, + -188550.03414205718, + -188705.16194427633, + null, + -189449.1232264199, + -189490.00008750655, + null, + -189449.1232264199, + -189693.02311333298, + null, + -189769.90898797516, + -189768.43355961813, + null, + -189671.69440695026, + -189768.43355961813, + null, + -189768.43355961813, + -190001.3370355461, + null, + -189768.43355961813, + -190157.89391110622, + null, + -189768.43355961813, + -190149.2470879302, + null, + -188740.94405652286, + -188557.4596234686, + null, + -188740.94405652286, + -188502.3898432576, + null, + -188740.94405652286, + -188505.68688054534, + null, + -188740.94405652286, + -188482.3157020377, + null, + -188740.94405652286, + -188505.51258337646, + null, + -189567.65591494428, + -189853.4918559908, + null, + -187857.75124697632, + -188309.81027713025, + null, + -187760.40303329699, + -188309.81027713025, + null, + -187858.44732430877, + -188309.81027713025, + null, + -187920.62374587829, + -188309.81027713025, + null, + -188392.79233416848, + -187742.4789028903, + null, + -188392.79233416848, + -187748.69710114886, + null, + -188392.79233416848, + -188341.7325242664, + null, + -188392.79233416848, + -188116.4163078441, + null, + -188392.79233416848, + -188206.0236343385, + null, + -188392.79233416848, + -188482.59835269416, + null, + -188392.79233416848, + -188516.73245045255, + null, + -188392.79233416848, + -188462.29234457048, + null, + -188392.79233416848, + -188263.0862416689, + null, + -188392.79233416848, + -188223.6915529377, + null, + -189319.79863515618, + -189325.9475189374, + null, + -189319.79863515618, + -189443.62330827498, + null, + -189178.14899455837, + -188618.1767619867, + null, + -189178.14899455837, + -189362.4367816456, + null, + -188386.42729721224, + -188244.79326966844, + null, + -188386.42729721224, + -188213.14960795594, + null, + -188386.42729721224, + -188341.5637869163, + null, + -188386.42729721224, + -188231.4342562094, + null, + -188386.42729721224, + -188290.85103842587, + null, + -188386.42729721224, + -188325.80348101287, + null, + -188386.42729721224, + -188262.28974807056, + null, + -188386.42729721224, + -188215.08406320887, + null, + -188386.42729721224, + -188272.12758768487, + null, + -188386.42729721224, + -188247.52374121372, + null, + -188386.42729721224, + -188234.36159403733, + null, + -188386.42729721224, + -188185.72950550105, + null, + -188386.42729721224, + -188235.01025868888, + null, + -188386.42729721224, + -188188.26732140826, + null, + -189445.19176040665, + -189550.71352449455, + null, + -189445.19176040665, + -189895.3596929185, + null, + -189445.19176040665, + -189658.36156726885, + null, + -189445.19176040665, + -189360.94131929203, + null, + -186109.56426562366, + -187087.48998708234, + null, + -186324.3395864327, + -187087.48998708234, + null, + -186003.21438929535, + -187087.48998708234, + null, + -186722.7974234636, + -187087.48998708234, + null, + -188553.87487120138, + -188794.21431317774, + null, + -188553.87487120138, + -188577.9696506949, + null, + -188553.87487120138, + -188698.27076012257, + null, + -188553.87487120138, + -188769.9281353376, + null, + -188553.87487120138, + -188620.52703365445, + null, + -188553.87487120138, + -188670.32476137517, + null, + -188553.87487120138, + -188707.42534730173, + null, + -188553.87487120138, + -188712.10885138786, + null, + -188553.87487120138, + -188702.73035210292, + null, + -188553.87487120138, + -188711.29676749153, + null, + -187941.06540326262, + -188103.12207565852, + null, + -188529.93400312582, + -188225.16941637502, + null, + -188529.93400312582, + -188181.734542407, + null, + -188529.93400312582, + -188312.61881360278, + null, + -188529.93400312582, + -188155.6659757379, + null, + -189358.06753687156, + -189495.15496592113, + null, + -188609.42242236514, + -188845.87523352558, + null, + -188787.1864357604, + -189032.4074763674, + null, + -188787.1864357604, + -189112.60837969606, + null, + -188843.1765843312, + -189224.72431987463, + null, + -188843.1765843312, + -189055.63729894848, + null, + -188843.1765843312, + -189078.20075112823, + null, + -188754.528514879, + -188970.86331049414, + null, + -188094.74107414478, + -188090.16004640074, + null, + -188094.74107414478, + -188001.36342649613, + null, + -188094.74107414478, + -188049.5792653426, + null, + -188094.74107414478, + -188098.1789861639, + null, + -188094.74107414478, + -188168.62826092765, + null, + -188094.74107414478, + -188029.9456644019, + null, + -188088.6155039975, + -188084.14766681893, + null, + -188088.6155039975, + -187984.70011229935, + null, + -188060.38234672905, + -188125.29346391422, + null, + -188060.38234672905, + -187981.62287282626, + null, + -188060.38234672905, + -188040.22076810958, + null, + -188060.38234672905, + -187946.41481497037, + null, + -188060.38234672905, + -188064.20365215855, + null, + -188060.38234672905, + -188024.33796311452, + null, + -188060.38234672905, + -188016.9967920004, + null, + -188060.38234672905, + -188156.43008065908, + null, + -188060.38234672905, + -187984.27632270768, + null, + -188060.38234672905, + -188060.64962766727, + null, + -188067.26794690712, + -188017.1144187662, + null, + -188067.26794690712, + -188113.48002990385, + null, + -187621.21847052537, + -187571.6016396001, + null, + -187621.21847052537, + -187064.19611193764, + null, + -188516.84498886167, + -188650.65877533983, + null, + -188516.84498886167, + -188615.4770908332, + null, + -188516.84498886167, + -188629.10826848733, + null, + -188516.84498886167, + -188550.56920449316, + null, + -187915.12744256484, + -187594.73212482024, + null, + -187915.12744256484, + -188116.4163078441, + null, + -187915.12744256484, + -187748.69710114886, + null, + -188443.7578148925, + -188444.14506902872, + null, + -188443.7578148925, + -188879.3624434629, + null, + -188443.7578148925, + -188491.01308587843, + null, + -188443.7578148925, + -188422.62348726718, + null, + -188443.7578148925, + -188362.80673320158, + null, + -188443.7578148925, + -188367.2149491498, + null, + -188116.10771085072, + -188223.6915529377, + null, + -188116.10771085072, + -188059.13848447741, + null, + -187264.47609357847, + -186797.6920016611, + null, + -187264.47609357847, + -186950.25182405324, + null, + -187264.47609357847, + -186814.08319625797, + null, + -187264.47609357847, + -186841.85064924235, + null, + -188176.21031836848, + -188141.38815636735, + null, + -188176.21031836848, + -188116.1496857662, + null, + -188176.21031836848, + -188396.4771118219, + null, + -188176.21031836848, + -188173.86388179136, + null, + -188176.21031836848, + -188086.05933701512, + null, + -188176.21031836848, + -188212.2979830604, + null, + -188170.57903762278, + -188225.63058791048, + null, + -188170.57903762278, + -188192.74355890218, + null, + -188170.57903762278, + -188174.69316455667, + null, + -188170.57903762278, + -188123.86206640746, + null, + -188294.6644996429, + -188337.78581776284, + null, + -188294.6644996429, + -188321.03177579722, + null, + -188036.63953174325, + -187930.403868511, + null, + -188036.63953174325, + -188034.7860958726, + null, + -188101.5543653428, + -188020.54736677188, + null, + -188248.6764013949, + -188377.8601678689, + null, + -188097.50692052435, + -188278.16470975717, + null, + -188097.50692052435, + -187965.47459509477, + null, + -188272.49029985358, + -188379.13752876033, + null, + -188206.77019901376, + -188291.99341747075, + null, + -188206.77019901376, + -188172.93746177154, + null, + -188508.96860365788, + -188650.65877533983, + null, + -188508.96860365788, + -188550.56920449316, + null, + -188508.96860365788, + -188615.4770908332, + null, + -188508.96860365788, + -188629.10826848733, + null, + -188262.8988252888, + -188341.7325242664, + null, + -188262.8988252888, + -188206.0236343385, + null, + -187569.11179548127, + -187617.11614566448, + null, + -187569.11179548127, + -187526.08903537705, + null, + -187569.11179548127, + -187674.11098333378, + null, + -187569.11179548127, + -187674.84914594653, + null, + -187569.11179548127, + -187730.26368818164, + null, + -187569.11179548127, + -187736.67929052594, + null, + -187569.11179548127, + -187773.52054137996, + null, + -187569.11179548127, + -187501.71133436213, + null, + -187569.11179548127, + -187634.29116306888, + null, + -187569.11179548127, + -187558.68805862614, + null, + -187569.11179548127, + -187669.9562295721, + null, + -187569.11179548127, + -187771.99177388693, + null, + -186292.02017205243, + -186026.48205634058, + null, + -186292.02017205243, + -186004.81625674714, + null, + -186292.02017205243, + -186119.52079627474, + null, + -186292.02017205243, + -186288.95960552836, + null, + -186292.02017205243, + -185999.16203666863, + null, + -186292.02017205243, + -185998.5887411339, + null, + -187472.02889830602, + -187323.43987749555, + null, + -187472.02889830602, + -188055.39603818467, + null, + -187472.02889830602, + -187504.9066256753, + null, + -187099.9147383517, + -186969.2603064072, + null, + -187099.9147383517, + -187082.62729634583, + null, + -186900.76235636437, + -187036.27923026812, + null, + -188027.44881588852, + -187966.1524006884, + null, + -188027.44881588852, + -188255.60873041113, + null, + -188027.44881588852, + -187976.477714238, + null, + -188027.44881588852, + -187993.00429935096, + null, + -188027.44881588852, + -188015.18762576373, + null, + -188027.44881588852, + -187974.4559084142, + null, + -188027.44881588852, + -187907.4340805515, + null, + -188027.44881588852, + -188079.28387346116, + null, + -188027.44881588852, + -188040.85490399896, + null, + -188432.67762655424, + -188502.16698048013, + null, + -188432.67762655424, + -188537.83259610005, + null, + -188121.5471579039, + -188062.36969725473, + null, + -188121.5471579039, + -188176.72236609916, + null, + -188121.5471579039, + -188031.27587781637, + null, + -188121.5471579039, + -188070.40997344436, + null, + -188121.5471579039, + -188150.16400430968, + null, + -188121.5471579039, + -187967.87420157884, + null, + -188121.5471579039, + -188181.734542407, + null, + -188432.80628645205, + -188490.24496475342, + null, + -188432.80628645205, + -188463.08599731518, + null, + -187926.7782463939, + -187842.37642177322, + null, + -187926.7782463939, + -187290.77255972844, + null, + -189762.7876085155, + -189950.42776230097, + null, + -189762.7876085155, + -190060.46897811978, + null, + -189762.7876085155, + -189981.01291727906, + null, + -189762.7876085155, + -189913.25422408764, + null, + -189762.7876085155, + -189806.80628290947, + null, + -189762.7876085155, + -189948.99978218455, + null, + -189762.7876085155, + -189877.31094941634, + null, + -189762.7876085155, + -190014.67649279692, + null, + -189762.7876085155, + -190053.96902679597, + null, + -189762.7876085155, + -189989.4594749927, + null, + -189762.7876085155, + -190083.1171838038, + null, + -189762.7876085155, + -189829.45164674928, + null, + -189762.7876085155, + -190096.78467347255, + null, + -189762.7876085155, + -190096.07678832914, + null, + -189762.7876085155, + -189877.19470812628, + null, + -189762.7876085155, + -190082.79529512883, + null, + -189762.7876085155, + -189883.13957683812, + null, + -189762.7876085155, + -190115.00855424744, + null, + -189762.7876085155, + -189980.07865196207, + null, + -189762.7876085155, + -190074.83957112802, + null, + -189762.7876085155, + -190002.89388120713, + null, + -189762.7876085155, + -190028.31976652934, + null, + -189762.7876085155, + -190003.88761541533, + null, + -189762.7876085155, + -189845.95459293955, + null, + -189762.7876085155, + -189907.48300156422, + null, + -189762.7876085155, + -189952.45096025168, + null, + -189762.7876085155, + -189952.9122595734, + null, + -189762.7876085155, + -189970.4446921895, + null, + -189762.7876085155, + -190136.23241432256, + null, + -189762.7876085155, + -189913.2901080308, + null, + -189762.7876085155, + -189912.5972757215, + null, + -189762.7876085155, + -190001.55681149926, + null, + -189762.7876085155, + -190018.83290028255, + null, + -189762.7876085155, + -190055.39543139332, + null, + -189762.7876085155, + -190102.7516358813, + null, + -189762.7876085155, + -189863.3993587257, + null, + -189762.7876085155, + -190115.46594863496, + null, + -189762.7876085155, + -190023.95702336595, + null, + -189762.7876085155, + -190012.38051216485, + null, + -189762.7876085155, + -189955.59784194958, + null, + -189762.7876085155, + -190016.798744122, + null, + -189762.7876085155, + -190038.4192383941, + null, + -189762.7876085155, + -190021.38597195703, + null, + -189762.7876085155, + -190027.5122056294, + null, + -189762.7876085155, + -189925.09260238602, + null, + -189762.7876085155, + -190005.9285941052, + null, + -186732.12278519588, + -186723.40654902256, + null, + -188647.95316923055, + -188894.53982702826, + null, + -186647.18276851127, + -187592.5524397363, + null, + -188932.9501046265, + -188736.05243360804, + null, + -188932.9501046265, + -188658.0072073565, + null, + -188932.9501046265, + -189183.9255548992, + null, + -188932.9501046265, + -189435.73444291795, + null, + -188932.9501046265, + -189133.8473924533, + null, + -188932.9501046265, + -188813.8225883926, + null, + -188932.9501046265, + -189077.79649620972, + null, + -188932.9501046265, + -189128.86816413907, + null, + -188606.43169921683, + -188774.29128529222, + null, + -187785.39966082262, + -188170.21924476055, + null, + -188170.21924476055, + -188204.5488536757, + null, + -188170.21924476055, + -188377.4874670383, + null, + -188170.21924476055, + -188384.8221014744, + null, + -187962.6323277363, + -187892.99204450037, + null, + -187962.6323277363, + -187939.69243235173, + null, + -187962.6323277363, + -188060.7588005113, + null, + -187962.6323277363, + -188141.4683259749, + null, + -187962.6323277363, + -187985.66986119872, + null, + -187962.6323277363, + -188016.84167383236, + null, + -187962.6323277363, + -188137.77621320283, + null, + -187962.6323277363, + -187993.2042355374, + null, + -187962.6323277363, + -188059.75644058318, + null, + -187962.6323277363, + -187963.3746181554, + null, + -187962.6323277363, + -187912.61343497797, + null, + -187962.6323277363, + -188088.04522687456, + null, + -187962.6323277363, + -188075.4069209078, + null, + -187962.6323277363, + -187967.12879439283, + null, + -187962.6323277363, + -187778.39851127946, + null, + -187962.6323277363, + -188090.49990946325, + null, + -187962.6323277363, + -188001.86127453632, + null, + -187962.6323277363, + -188048.6921698139, + null, + -187962.6323277363, + -187956.53599492338, + null, + -187962.6323277363, + -187898.34942572337, + null, + -187962.6323277363, + -188006.12427452058, + null, + -187962.6323277363, + -187862.9006513407, + null, + -187962.6323277363, + -187947.29186367439, + null, + -187962.6323277363, + -187806.00028568978, + null, + -187962.6323277363, + -187983.9730009755, + null, + -187962.6323277363, + -187934.93717959968, + null, + -187962.6323277363, + -187909.29798849218, + null, + -187191.96052360526, + -186874.65690847478, + null, + -187444.98398375107, + -187191.96052360526, + null, + -187212.75750088846, + -187191.96052360526, + null, + -187191.96052360526, + -186891.23996141268, + null, + -187191.96052360526, + -186834.68317631911, + null, + -187206.375494998, + -187191.96052360526, + null, + -187142.3027271855, + -187191.96052360526, + null, + -187191.96052360526, + -186910.4333978544, + null, + -186920.5220397891, + -186797.6920016611, + null, + -186920.5220397891, + -186950.25182405324, + null, + -186920.5220397891, + -186814.08319625797, + null, + -186920.5220397891, + -186841.85064924235, + null, + -186786.62616005604, + -186646.66034112757, + null, + -186786.62616005604, + -186797.6920016611, + null, + -186786.62616005604, + -186621.876169047, + null, + -186786.62616005604, + -186841.85064924235, + null, + -186786.62616005604, + -186814.08319625797, + null, + -186786.62616005604, + -186692.4367868679, + null, + -186786.62616005604, + -186741.5982248406, + null, + -186786.62616005604, + -186723.82204225528, + null, + -186385.05781979268, + -186331.92093130833, + null, + -186385.05781979268, + -186004.81625674714, + null, + -186385.05781979268, + -185998.5887411339, + null, + -186385.05781979268, + -186279.27655188824, + null, + -186385.05781979268, + -186026.48205634058, + null, + -186385.05781979268, + -186388.903534561, + null, + -188061.28832562154, + -188283.31659324036, + null, + -187390.1456922822, + -187137.15198455175, + null, + -187390.1456922822, + -187106.90783512246, + null, + -187390.1456922822, + -187129.68155894056, + null, + -187390.1456922822, + -187059.63779786762, + null, + -188062.07603085358, + -188059.13848447741, + null, + -188062.07603085358, + -188223.6915529377, + null, + -188037.6869183598, + -188208.58303294552, + null, + -188037.6869183598, + -188113.01612090584, + null, + -188212.0229575658, + -188371.1353376313, + null, + -188212.0229575658, + -188340.80377890947, + null, + -188212.0229575658, + -188266.84959804747, + null, + -188090.36866231312, + -188239.9298258223, + null, + -188133.31477841723, + -188237.88964578896, + null, + -188173.70843883988, + -188331.29169328697, + null, + -187844.47640926004, + -187886.85685091044, + null, + -187872.30401330232, + -187819.40370573246, + null, + -187872.30401330232, + -187820.46863147497, + null, + -187872.30401330232, + -187870.61997418042, + null, + -187872.30401330232, + -187807.5058878382, + null, + -187796.24083019167, + -187819.40370573246, + null, + -187796.24083019167, + -187820.46863147497, + null, + -187796.24083019167, + -187807.5058878382, + null, + -187732.98575521674, + -187709.49216077014, + null, + -187732.98575521674, + -187741.85674802802, + null, + -187983.71489758827, + -188341.7325242664, + null, + -187983.71489758827, + -188206.0236343385, + null, + -187983.71489758827, + -187594.73212482024, + null, + -188083.6875223691, + -188209.98314272103, + null, + -188083.6875223691, + -188113.20511465575, + null, + -188083.6875223691, + -188169.53042942294, + null, + -187897.73274734168, + -187771.99177388693, + null, + -187897.73274734168, + -187759.8314365375, + null, + -187897.73274734168, + -187971.1856885119, + null, + -188059.30925306716, + -187943.5654100888, + null, + -188059.30925306716, + -188015.82954131006, + null, + -188059.30925306716, + -187985.37244124175, + null, + -188583.01081795827, + -188223.46779498976, + null, + -188583.01081795827, + -188205.49509758296, + null, + -188583.01081795827, + -188213.9164635894, + null, + -188583.01081795827, + -188948.66413662076, + null, + -188583.01081795827, + -188211.13477789238, + null, + -187487.7635363833, + -186959.9607940277, + null, + -187487.7635363833, + -186797.6920016611, + null, + -187487.7635363833, + -186764.78961016686, + null, + -187487.7635363833, + -186841.85064924235, + null, + -187487.7635363833, + -186814.08319625797, + null, + -189713.64541984547, + -190096.89096654434, + null, + -189713.64541984547, + -189974.37047163243, + null, + -189713.64541984547, + -189985.50358982256, + null, + -189713.64541984547, + -190018.75625555322, + null, + -189555.82412272718, + -189881.52640402465, + null, + -189555.82412272718, + -189982.52573305275, + null, + -189852.59554859076, + -190303.37435690386, + null, + -189852.59554859076, + -190129.35138968015, + null, + -189852.59554859076, + -190197.68125067052, + null, + -189852.59554859076, + -190162.71323384313, + null, + -189852.59554859076, + -190060.9219493719, + null, + -189852.59554859076, + -190109.05857624288, + null, + -189218.8087403817, + -189342.43960965818, + null, + -190167.76777641778, + -190542.72404693422, + null, + -190167.76777641778, + -190528.42189584312, + null, + -190167.76777641778, + -190387.50133943587, + null, + -190167.76777641778, + -190448.01691882563, + null, + -190167.76777641778, + -190574.95327101208, + null, + -190167.76777641778, + -190449.33451776393, + null, + -190167.76777641778, + -190511.44661767114, + null, + -190167.76777641778, + -190529.03440203832, + null, + -190167.76777641778, + -190537.75501553333, + null, + -189645.6152674434, + -189951.22738006982, + null, + -189645.6152674434, + -189973.1446726601, + null, + -189645.6152674434, + -190025.6059146946, + null, + -188532.9554546275, + -188055.39603818467, + null, + -188532.9554546275, + -188716.242548552, + null, + -189523.58352465904, + -189704.3634728571, + null, + -189523.58352465904, + -189777.36801090316, + null, + -189343.14144035138, + -189592.89736085432, + null, + -188235.48072958956, + -188023.84131581298, + null, + -188235.48072958956, + -188356.17431058898, + null, + -188180.02447286362, + -188274.34719061715, + null, + -188078.15933603563, + -188129.64780031645, + null, + -188078.15933603563, + -188133.9859146477, + null, + -188078.15933603563, + -188187.3712458545, + null, + -187990.69685232927, + -187998.556032186, + null, + -188502.1043309098, + -188653.13430381866, + null, + -188502.1043309098, + -188590.65193490608, + null, + -188502.1043309098, + -188642.5915163027, + null, + -188502.1043309098, + -188608.96821789932, + null, + -188368.05619089317, + -188491.18481576003, + null, + -188368.05619089317, + -188453.79791390765, + null, + -187629.39631769145, + -187621.10380116603, + null, + -187629.39631769145, + -187575.41147213435, + null, + -187643.6924245978, + -187588.09756598267, + null, + -187643.6924245978, + -187647.5494085932, + null, + -187638.51851489613, + -187611.58499095225, + null, + -187804.318709099, + -187862.42691907028, + null, + -187804.318709099, + -187526.96904194946, + null, + -187804.318709099, + -187942.80643346356, + null, + -187804.318709099, + -187906.52592987043, + null, + -187804.318709099, + -187748.69710114886, + null, + -188499.9137700682, + -188604.68535202384, + null, + -189238.12878373484, + -188879.3624434629, + null, + -189238.12878373484, + -189306.6357714241, + null, + -189238.12878373484, + -189427.61078841175, + null, + -189238.12878373484, + -189277.59357979376, + null, + -189238.12878373484, + -189487.23133315498, + null, + -189238.12878373484, + -189451.93310388672, + null, + -189238.12878373484, + -189248.95882783754, + null, + -189238.12878373484, + -189230.47303573164, + null, + -189238.12878373484, + -189293.00424421756, + null, + -189238.12878373484, + -189366.6038676548, + null, + -189238.12878373484, + -189332.9999406152, + null, + -189238.12878373484, + -189276.45932175536, + null, + -189238.12878373484, + -189403.28546952922, + null, + -189238.12878373484, + -189217.14323216394, + null, + -189238.12878373484, + -189198.15043086934, + null, + -189238.12878373484, + -189325.62242567082, + null, + -189238.12878373484, + -189325.9475189374, + null, + -189238.12878373484, + -189384.22659187752, + null, + -189238.12878373484, + -189317.61864053438, + null, + -187745.42964825404, + -187748.69710114886, + null, + -187745.42964825404, + -187742.4789028903, + null, + -187745.42964825404, + -187526.96904194946, + null, + -188287.79217814526, + -188650.65877533983, + null, + -188287.79217814526, + -188550.56920449316, + null, + -188287.79217814526, + -188615.4770908332, + null, + -188287.79217814526, + -188629.10826848733, + null, + -188549.32629648288, + -188650.65877533983, + null, + -188549.32629648288, + -188615.4770908332, + null, + -188549.32629648288, + -188629.10826848733, + null, + -188549.32629648288, + -188550.56920449316, + null, + -188250.077786393, + -188263.0862416689, + null, + -188250.077786393, + -188206.0236343385, + null, + -188161.7726015361, + -188115.07214676208, + null, + -187785.39966082262, + -188161.7726015361, + null, + -188161.7726015361, + -188066.67095698978, + null, + -188158.79572465117, + -188161.7726015361, + null, + -188776.05672438274, + -188161.7726015361, + null, + -187116.7595416007, + -186797.6920016611, + null, + -187116.7595416007, + -186950.25182405324, + null, + -187116.7595416007, + -186814.08319625797, + null, + -187116.7595416007, + -186841.85064924235, + null, + -188196.3093746599, + -188079.28387346116, + null, + -188196.3093746599, + -188242.03582545792, + null, + -188196.3093746599, + -188340.80377890947, + null, + -188196.3093746599, + -188113.01612090584, + null, + -188196.3093746599, + -188371.1353376313, + null, + -188196.3093746599, + -188208.58303294552, + null, + -188196.3093746599, + -188339.34322755944, + null, + -188196.3093746599, + -188169.8318157927, + null, + -188433.12753228875, + -188537.83259610005, + null, + -188433.12753228875, + -188502.16698048013, + null, + -188585.6524637753, + -188725.43356871564, + null, + -188822.05132961101, + -189098.95554895798, + null, + -188822.05132961101, + -188975.88092212117, + null, + -188822.05132961101, + -189003.23537626144, + null, + -186793.18125099468, + -186773.96651147603, + null, + -186793.18125099468, + -186680.0988857744, + null, + -186793.18125099468, + -186763.42703853172, + null, + -186493.55860467892, + -187064.19611193764, + null, + -188693.43620027843, + -188808.86236120248, + null, + -188728.28837500748, + -188878.37097806166, + null, + -188981.19486242285, + -189092.3160336398, + null, + -188981.19486242285, + -189091.72331575488, + null, + -188981.19486242285, + -189115.96574922363, + null, + -188981.19486242285, + -189174.7824324944, + null, + -188981.19486242285, + -189157.24885475944, + null, + -187594.8777657927, + -188119.03297787975, + null, + -188135.7951117508, + -188119.03297787975, + null, + -188109.5947916895, + -188119.03297787975, + null, + -188129.3743830729, + -188119.03297787975, + null, + -188038.4334288893, + -188119.03297787975, + null, + -188138.17806449422, + -188119.03297787975, + null, + -188068.89540782082, + -188119.03297787975, + null, + -188079.8329504583, + -188119.03297787975, + null, + -188126.67429510137, + -188119.03297787975, + null, + -188119.49823623613, + -188119.03297787975, + null, + -188097.6602407291, + -188119.03297787975, + null, + -188023.85098966694, + -188119.03297787975, + null, + -188123.9780570342, + -188119.03297787975, + null, + -188082.81454332572, + -188119.03297787975, + null, + -188113.8147030654, + -188119.03297787975, + null, + -188124.65543545736, + -188119.03297787975, + null, + -188121.51859750494, + -188119.03297787975, + null, + -188810.88834411, + -188896.42384657034, + null, + -188810.88834411, + -188965.84803500844, + null, + -188810.88834411, + -188977.29955893577, + null, + -188363.9646618443, + -188347.30539835, + null, + -188363.9646618443, + -188507.92896134197, + null, + -188363.9646618443, + -188383.06499636912, + null, + -188363.9646618443, + -188337.7090878203, + null, + -188363.9646618443, + -187880.4124846486, + null, + -188363.9646618443, + -188463.68731936606, + null, + -188363.9646618443, + -188464.30136542933, + null, + -188363.9646618443, + -188438.85061418812, + null, + -188363.9646618443, + -188519.72994095754, + null, + -188079.80446299998, + -188078.68826342997, + null, + -188079.80446299998, + -188147.73696519702, + null, + -188079.80446299998, + -188179.73130929295, + null, + -188079.80446299998, + -188126.95002996654, + null, + -188079.80446299998, + -188067.732082051, + null, + -186579.71684840842, + -186989.19017429496, + null, + -186579.71684840842, + -186022.8484731827, + null, + -186579.71684840842, + -186582.35956467458, + null, + -186579.71684840842, + -186644.40821102815, + null, + -186579.71684840842, + -186276.30897092307, + null, + -186579.71684840842, + -186380.05426090743, + null, + -186579.71684840842, + -186366.66193073316, + null, + -186579.71684840842, + -186249.20162775152, + null, + -186579.71684840842, + -186530.9497347801, + null, + -186734.72800259737, + -186838.07892423088, + null, + -186734.72800259737, + -186366.66193073316, + null, + -186734.72800259737, + -186380.05426090743, + null, + -186734.72800259737, + -186782.58239993363, + null, + -186734.72800259737, + -186703.07900031318, + null, + -187909.24698119418, + -188115.43138405305, + null, + -186382.6521426854, + -186304.48945547143, + null, + -185961.70758748136, + -185830.3568996049, + null, + -185961.70758748136, + -185677.2673627574, + null, + -185961.70758748136, + -185485.39401094842, + null, + -185961.70758748136, + -185894.3650318397, + null, + -185946.98023837636, + -185830.3568996049, + null, + -185946.98023837636, + -185677.2673627574, + null, + -185946.98023837636, + -185485.39401094842, + null, + -187359.95937813746, + -187307.28028177153, + null, + -187016.51462670026, + -187076.1453172014, + null, + -187016.51462670026, + -186960.017269483, + null, + -187016.51462670026, + -187191.82408836586, + null, + -187016.51462670026, + -187097.05438409094, + null, + -187016.51462670026, + -187032.18336904267, + null, + -187205.7558130452, + -187633.5780712459, + null, + -186884.1274436682, + -186980.52193011073, + null, + -186884.1274436682, + -186835.21868742444, + null, + -186884.1274436682, + -186834.48131419005, + null, + -186884.1274436682, + -186896.63197455366, + null, + -186884.1274436682, + -186898.4857403215, + null, + -186884.1274436682, + -186783.15141955295, + null, + -186884.1274436682, + -187003.82345200694, + null, + -186884.1274436682, + -186930.054845507, + null, + -186884.1274436682, + -186868.36430568714, + null, + -184253.32763020493, + -183454.4556818976, + null, + -184253.32763020493, + -183948.96667538802, + null, + -184253.32763020493, + -184137.3540563784, + null, + -184253.32763020493, + -184055.31954335116, + null, + -184253.32763020493, + -183942.6631635848, + null, + -184253.32763020493, + -183991.55361005352, + null, + -184253.32763020493, + -184151.48218769403, + null, + -184253.32763020493, + -184043.4298278558, + null, + -184253.32763020493, + -184098.23387283756, + null, + -184253.32763020493, + -184011.24318851618, + null, + -184253.32763020493, + -184221.4732984055, + null, + -184253.32763020493, + -184107.8627639706, + null, + -184253.32763020493, + -184141.2115983499, + null, + -184253.32763020493, + -183965.70838288227, + null, + -184253.32763020493, + -184080.74407013148, + null, + -184253.32763020493, + -184054.17977045127, + null, + -184253.32763020493, + -184095.92236913048, + null, + -184253.32763020493, + -183427.52450741653, + null, + -184253.32763020493, + -183468.11246198523, + null, + -184253.32763020493, + -184220.86336669532, + null, + -184253.32763020493, + -183448.23675261464, + null, + -184253.32763020493, + -183478.30434363155, + null, + -184253.32763020493, + -184155.19932672151, + null, + -184253.32763020493, + -184060.82188045702, + null, + -184253.32763020493, + -183991.8487036277, + null, + -184253.32763020493, + -183408.7996719894, + null, + -184253.32763020493, + -184153.1514375469, + null, + -184253.32763020493, + -184022.7059931264, + null, + -184253.32763020493, + -184061.19109231277, + null, + -184253.32763020493, + -183653.6949449289, + null, + -184253.32763020493, + -183453.94049617794, + null, + -186104.54831179176, + -185650.36841039386, + null, + -186104.54831179176, + -186017.78871449898, + null, + -186104.54831179176, + -185677.2673627574, + null, + -186046.42225495278, + -185830.3568996049, + null, + -186046.42225495278, + -185677.2673627574, + null, + -186046.42225495278, + -185485.39401094842, + null, + -186037.93743685633, + -185830.3568996049, + null, + -186037.93743685633, + -185677.2673627574, + null, + -186037.93743685633, + -185485.39401094842, + null, + -188052.32690400552, + -188244.00313072064, + null, + -187857.75124697632, + -187910.51665730815, + null, + -187760.40303329699, + -187910.51665730815, + null, + -187858.44732430877, + -187910.51665730815, + null, + -187920.62374587829, + -187910.51665730815, + null, + -187778.44937962503, + -187642.58450439633, + null, + -187778.44937962503, + -187676.73784619576, + null, + -187778.44937962503, + -187746.50016018358, + null, + -187778.44937962503, + -187763.7880342417, + null, + -187778.44937962503, + -187815.17680412173, + null, + -187882.8114859411, + -187877.05060775447, + null, + -187882.8114859411, + -187920.4490734947, + null, + -186814.5954261676, + -186347.05945545353, + null, + -187233.7119709426, + -187220.9163611917, + null, + -187233.7119709426, + -187132.94513084943, + null, + -188083.10323281528, + -188062.16660663078, + null, + -188083.10323281528, + -188144.67010069184, + null, + -187171.2549893913, + -187401.67452925173, + null, + -187396.43681444638, + -187525.18521744406, + null, + -186753.4893091006, + -186669.07004417825, + null, + -185706.60147189337, + -185614.40716294627, + null, + -185706.60147189337, + -185192.79185703603, + null, + -185706.60147189337, + -185593.93006590506, + null, + -185706.60147189337, + -185273.47420901168, + null, + -185706.60147189337, + -185211.40111909146, + null, + -185706.60147189337, + -185190.66664916382, + null, + -185706.60147189337, + -185277.53611586575, + null, + -187594.8777657927, + -187916.63879302575, + null, + -188109.5947916895, + -187916.63879302575, + null, + -188135.7951117508, + -187916.63879302575, + null, + -188129.3743830729, + -187916.63879302575, + null, + -188038.4334288893, + -187916.63879302575, + null, + -188138.17806449422, + -187916.63879302575, + null, + -188068.89540782082, + -187916.63879302575, + null, + -188079.8329504583, + -187916.63879302575, + null, + -188126.67429510137, + -187916.63879302575, + null, + -188119.49823623613, + -187916.63879302575, + null, + -188097.6602407291, + -187916.63879302575, + null, + -188023.85098966694, + -187916.63879302575, + null, + -188123.9780570342, + -187916.63879302575, + null, + -188082.81454332572, + -187916.63879302575, + null, + -188113.8147030654, + -187916.63879302575, + null, + -188124.65543545736, + -187916.63879302575, + null, + -188121.51859750494, + -187916.63879302575, + null, + -187328.97058315662, + -187274.1302045654, + null, + -187328.97058315662, + -187343.49249793775, + null, + -187328.97058315662, + -187394.75452353517, + null, + -187271.98186820754, + -187300.93102998807, + null, + -187271.98186820754, + -187259.70142610237, + null, + -187263.8658911728, + -187299.8777924226, + null, + -187263.8658911728, + -187244.80180643054, + null, + -187263.8658911728, + -187332.91403683388, + null, + -186657.7218807427, + -186658.96281459343, + null, + -185972.4842459763, + -186657.7218807427, + null, + -186657.7218807427, + -186713.4375646213, + null, + -188362.04736375934, + -188457.13629440215, + null, + -188362.04736375934, + -188594.7169153639, + null, + -188362.04736375934, + -188477.92284249174, + null, + -188362.04736375934, + -188621.68315608325, + null, + -188362.04736375934, + -188735.25527640682, + null, + -188362.04736375934, + -188657.22598614308, + null, + -188362.04736375934, + -188707.19411003264, + null, + -188362.04736375934, + -188680.00271065094, + null, + -188362.04736375934, + -188700.56167535784, + null, + -188362.04736375934, + -188716.07523902692, + null, + -188362.04736375934, + -188531.03886595092, + null, + -188362.04736375934, + -188691.9863820846, + null, + -188362.04736375934, + -188486.4372749181, + null, + -188362.04736375934, + -188676.66102464776, + null, + -188362.04736375934, + -188377.38130930747, + null, + -188362.04736375934, + -188544.12377281216, + null, + -183620.7015398458, + -183282.65685712005, + null, + -183620.7015398458, + -183361.18161794438, + null, + -183620.7015398458, + -183464.893368499, + null, + -183620.7015398458, + -183433.51219686866, + null, + -183620.7015398458, + -183454.83768123688, + null, + -183620.7015398458, + -183269.02525615806, + null, + -183620.7015398458, + -183232.39642749276, + null, + -183620.7015398458, + -183309.3093745461, + null, + -182951.77725421966, + -182087.23736153383, + null, + -182951.77725421966, + -182094.36855869577, + null, + -184276.46905717737, + -184069.6521547393, + null, + -184276.46905717737, + -184147.62949476115, + null, + -186841.4017466797, + -186140.23856401135, + null, + -186841.4017466797, + -186153.994068847, + null, + -186841.4017466797, + -186140.23856401135, + null, + -186841.4017466797, + -186153.994068847, + null, + -188158.73371046473, + -188437.17592704867, + null, + -188158.73371046473, + -188767.31638590462, + null, + -186840.44087714233, + -185830.8351587531, + null, + -186840.44087714233, + -186746.85165138246, + null, + -186840.44087714233, + -186884.75829816138, + null, + -186840.44087714233, + -185821.64538848578, + null, + -186431.27519216418, + -185650.36841039386, + null, + -186431.27519216418, + -185774.3961361211, + null, + -186431.27519216418, + -185830.3568996049, + null, + -186431.27519216418, + -185677.2673627574, + null, + -186083.5663938709, + -185650.36841039386, + null, + -186083.5663938709, + -185677.2673627574, + null, + -185755.0131330002, + -185774.3961361211, + null, + -185755.0131330002, + -185830.3568996049, + null, + -185755.0131330002, + -185320.20394035542, + null, + -185755.0131330002, + -185425.12264167838, + null, + -188153.623631181, + -188341.5637869163, + null, + -188153.623631181, + -188325.80348101287, + null, + -188153.623631181, + -188290.85103842587, + null, + -188153.623631181, + -188231.4342562094, + null, + -188153.623631181, + -188213.14960795594, + null, + -188153.623631181, + -188262.28974807056, + null, + -188153.623631181, + -188215.08406320887, + null, + -188153.623631181, + -188272.12758768487, + null, + -188153.623631181, + -188247.52374121372, + null, + -188153.623631181, + -188234.36159403733, + null, + -188153.623631181, + -188185.72950550105, + null, + -188153.623631181, + -188235.01025868888, + null, + -188153.623631181, + -188188.26732140826, + null, + -187630.0455403068, + -187587.3618641956, + null, + -188058.85243110455, + -188355.0198765514, + null, + -188058.85243110455, + -188303.63550310052, + null, + -188058.85243110455, + -188084.8572338393, + null, + -187360.02800482418, + -187395.58003873198, + null, + -187257.6129123713, + -187322.44828818025, + null, + -187257.6129123713, + -187189.01895715407, + null, + -187153.83483170177, + -187411.8004731311, + null, + -187153.83483170177, + -187384.85440843413, + null, + -187153.83483170177, + -187397.49483843523, + null, + -187153.83483170177, + -187389.06402282708, + null, + -187153.83483170177, + -187408.57036686965, + null, + -186828.08396658566, + -186418.97489203545, + null, + -185480.2185366004, + -184966.2533605747, + null, + -185480.2185366004, + -184939.83808412577, + null, + -185480.2185366004, + -184993.21116610424, + null, + -185480.2185366004, + -184884.01447443964, + null, + -185480.2185366004, + -185033.33272861876, + null, + -185480.2185366004, + -184992.49271023268, + null, + -185480.2185366004, + -185018.8411711607, + null, + -185480.2185366004, + -184014.45332893237, + null, + -185480.2185366004, + -184934.65343953003, + null, + -185480.2185366004, + -184979.51429673051, + null, + -188910.8076400013, + -189116.30601221605, + null, + -188910.8076400013, + -189212.36051423496, + null, + -188910.8076400013, + -189174.68517565948, + null, + -188910.8076400013, + -189131.0165825411, + null, + -188910.8076400013, + -189167.72369075686, + null, + -188910.8076400013, + -189167.94071155033, + null, + -188288.38165867908, + -188427.09207581004, + null, + -188288.38165867908, + -188324.23665222884, + null, + -188288.38165867908, + -188418.21913144834, + null, + -188288.38165867908, + -188441.4650250465, + null, + -188288.38165867908, + -188445.5181910649, + null, + -188288.38165867908, + -188467.52659245866, + null, + -188288.38165867908, + -188309.0577119622, + null, + -188288.38165867908, + -188432.27960119525, + null, + -188288.38165867908, + -188509.53908534927, + null, + -188288.38165867908, + -188525.32217186975, + null, + -188232.25279280051, + -188384.74779075198, + null, + -188232.25279280051, + -188435.01343296896, + null, + -188232.25279280051, + -188259.3724547593, + null, + -188232.25279280051, + -188370.95224479612, + null, + -188232.25279280051, + -188400.71709087957, + null, + -188232.25279280051, + -188465.6069223673, + null, + -188232.25279280051, + -188308.00977643783, + null, + -187620.16897113936, + -187401.67452925173, + null, + -188200.78220052563, + -188406.39216122098, + null, + -188200.78220052563, + -188320.2791584246, + null, + -187980.56614154446, + -188088.18070606928, + null, + -187980.56614154446, + -188328.50499043753, + null, + -187505.77792284868, + -186276.30897092307, + null, + -187505.77792284868, + -186989.19017429496, + null, + -187505.77792284868, + -186380.05426090743, + null, + -187505.77792284868, + -186366.66193073316, + null, + -187993.10500323906, + -188334.61613365755, + null, + -187993.10500323906, + -188337.0013544444, + null, + -187993.10500323906, + -188418.8611254507, + null, + -188057.23331354433, + -188272.04429126595, + null, + -188057.23331354433, + -188319.53228907965, + null, + -186724.68573885344, + -185650.36841039386, + null, + -186724.68573885344, + -185774.3961361211, + null, + -186724.68573885344, + -185677.2673627574, + null, + -188580.3548192478, + -188852.30706541648, + null, + -188580.3548192478, + -188766.82769508022, + null, + -188580.3548192478, + -188762.09396253395, + null, + -188580.3548192478, + -188673.21619043712, + null, + -188580.3548192478, + -188418.8611254507, + null, + -170265.1251636849, + -169378.16013668, + null, + -170265.1251636849, + -169344.14125408427, + null, + -170265.1251636849, + -169393.17968203666, + null, + -170265.1251636849, + -169416.96099860338, + null, + -170265.1251636849, + -169551.3818453157, + null, + -170265.1251636849, + -169348.52705148203, + null, + -170265.1251636849, + -169359.83740548883, + null, + -170265.1251636849, + -169545.8449313544, + null, + -170265.1251636849, + -169324.49667951552, + null, + -170265.1251636849, + -169436.0497249682, + null, + -170265.1251636849, + -169490.59569541228, + null, + -170265.1251636849, + -169603.0032231782, + null, + -170265.1251636849, + -169405.62489197458, + null, + -170265.1251636849, + -169343.7298139408, + null, + -170265.1251636849, + -169589.86991772245, + null, + -170265.1251636849, + -169356.23498042687, + null, + -170265.1251636849, + -169545.28212240088, + null, + -170265.1251636849, + -169280.9450788244, + null, + -170265.1251636849, + -169372.553645448, + null, + -170265.1251636849, + -169549.46033044296, + null, + -170265.1251636849, + -169468.52331958243, + null, + -170265.1251636849, + -169320.2863155955, + null, + -170265.1251636849, + -169441.31671768497, + null, + -170265.1251636849, + -169381.24488365222, + null, + -170265.1251636849, + -173635.00926671873, + null, + -170265.1251636849, + -169571.96017328865, + null, + -170265.1251636849, + -169386.7535787633, + null, + -170265.1251636849, + -169419.55932408103, + null, + -170265.1251636849, + -169652.86980383957, + null, + -170265.1251636849, + -169606.2546200287, + null, + -170265.1251636849, + -169566.43337423858, + null, + -170265.1251636849, + -169642.84989518244, + null, + -170265.1251636849, + -169277.37511423865, + null, + -170265.1251636849, + -169446.0290591557, + null, + -170265.1251636849, + -169479.8007415065, + null, + -170265.1251636849, + -169640.66377360295, + null, + -170265.1251636849, + -169398.552777607, + null, + -170265.1251636849, + -169492.6505170808, + null, + -170265.1251636849, + -169303.42487485384, + null, + -170265.1251636849, + -169438.62470300702, + null, + -170265.1251636849, + -169670.358202471, + null, + -170265.1251636849, + -169518.63445990958, + null, + -170265.1251636849, + -169458.16723794234, + null, + -170265.1251636849, + -169435.0519460718, + null, + -170265.1251636849, + -169391.18343571847, + null, + -170265.1251636849, + -169379.72481367842, + null, + -170265.1251636849, + -169331.45299684268, + null, + -170265.1251636849, + -169407.90694092953, + null, + -170265.1251636849, + -169482.87945843037, + null, + -170265.1251636849, + -169285.9559721673, + null, + -170265.1251636849, + -169264.42577758324, + null, + -170265.1251636849, + -169392.70401915823, + null, + -170265.1251636849, + -169615.727825337, + null, + -170265.1251636849, + -169495.95591972838, + null, + -170265.1251636849, + -169588.04616772282, + null, + -170265.1251636849, + -169433.95314637333, + null, + -170265.1251636849, + -169345.47056011425, + null, + -170265.1251636849, + -169496.50719911815, + null, + -170265.1251636849, + -169460.09445462836, + null, + -170265.1251636849, + -173634.2922040698, + null, + -170265.1251636849, + -169300.87184353019, + null, + -170265.1251636849, + -169354.53427482693, + null, + -170265.1251636849, + -173629.4910453442, + null, + -170265.1251636849, + -169330.76943894773, + null, + -170265.1251636849, + -169519.96951494063, + null, + -170265.1251636849, + -169501.82029113118, + null, + -170265.1251636849, + -169610.62571105798, + null, + -170265.1251636849, + -169324.25162713093, + null, + -170265.1251636849, + -169326.57314930166, + null, + -170265.1251636849, + -169431.85987472688, + null, + -170265.1251636849, + -169483.31429722917, + null, + -170265.1251636849, + -169538.3541819729, + null, + -170265.1251636849, + -169499.22972979312, + null, + -170265.1251636849, + -169404.3866338821, + null, + -170265.1251636849, + -169511.19498936835, + null, + -170265.1251636849, + -169649.91351843745, + null, + -170265.1251636849, + -169287.2120591798, + null, + -170265.1251636849, + -169311.3089851137, + null, + -170265.1251636849, + -169438.71859283923, + null, + -170265.1251636849, + -169355.24062342444, + null, + -170265.1251636849, + -169553.1803424696, + null, + -170265.1251636849, + -168624.87506894136, + null, + -170265.1251636849, + -169372.41900998444, + null, + -170265.1251636849, + -169449.22305063045, + null, + -170265.1251636849, + -169292.06106073438, + null, + -170265.1251636849, + -169144.59176013063, + null, + -170265.1251636849, + -169444.63655704536, + null, + -170265.1251636849, + -169375.8571831571, + null, + -170265.1251636849, + -169381.80418022617, + null, + -170265.1251636849, + -169399.62068739222, + null, + -170265.1251636849, + -169492.64094444556, + null, + -170265.1251636849, + -169304.5215244161, + null, + -170265.1251636849, + -169261.65588238483, + null, + -170265.1251636849, + -169329.1993639435, + null, + -170265.1251636849, + -169695.5695061532, + null, + -170265.1251636849, + -168758.49492464514, + null, + -170265.1251636849, + -169398.69256838647, + null, + -170265.1251636849, + -169358.1076510309, + null, + -170265.1251636849, + -169420.13524775338, + null, + -170265.1251636849, + -169574.74287326206, + null, + -170265.1251636849, + -169416.57296196205, + null, + -170265.1251636849, + -169515.2950036648, + null, + -170265.1251636849, + -169310.57562489106, + null, + -170265.1251636849, + -169537.50719481107, + null, + -170265.1251636849, + -169316.58449546693, + null, + -170265.1251636849, + -169448.7580978541, + null, + -170265.1251636849, + -169284.00204185088, + null, + -170265.1251636849, + -169465.03979915124, + null, + -170265.1251636849, + -169333.68269487692, + null, + -170265.1251636849, + -169296.56143188913, + null, + -170265.1251636849, + -169442.20170846063, + null, + -170265.1251636849, + -169536.4914924849, + null, + -170265.1251636849, + -169474.90139630102, + null, + -170265.1251636849, + -169626.45864951386, + null, + -170265.1251636849, + -169367.87410591237, + null, + -170265.1251636849, + -169476.10791408707, + null, + -170265.1251636849, + -169513.68386334792, + null, + -170265.1251636849, + -169578.66391360908, + null, + -170265.1251636849, + -169346.72799167415, + null, + -170265.1251636849, + -169299.96427660287, + null, + -170265.1251636849, + -169453.17177729314, + null, + -170265.1251636849, + -169376.77103179775, + null, + -170265.1251636849, + -169406.5342543557, + null, + -170265.1251636849, + -169474.3421468556, + null, + -180731.45597962325, + -182087.23736153383, + null, + -180731.45597962325, + -182094.36855869577, + null, + -178274.85226883533, + -178055.41538814097, + null, + -178274.85226883533, + -178014.1671556615, + null, + -178274.85226883533, + -177981.96991200637, + null, + -178274.85226883533, + -177970.49030488016, + null, + -178274.85226883533, + -178036.43547562294, + null, + -178274.85226883533, + -177949.15006345935, + null, + -182297.66613175042, + -182247.59705571106, + null, + -182297.66613175042, + -184014.45332893237, + null, + -178392.8789808, + -178163.6646337293, + null, + -178392.8789808, + -178131.0253649996, + null, + -178392.8789808, + -178108.70633296893, + null, + -178392.8789808, + -178202.65946718425, + null, + -178392.8789808, + -178085.69550089262, + null, + -188316.36771212667, + -188482.95193410772, + null, + -188316.36771212667, + -188419.5246448583, + null, + -186656.42396019315, + -186380.05426090743, + null, + -186656.42396019315, + -186276.30897092307, + null, + -186656.42396019315, + -186366.66193073316, + null, + -186656.42396019315, + -186709.57387613264, + null, + -186656.42396019315, + -186834.0978550618, + null, + -186656.42396019315, + -186249.20162775152, + null, + -187822.9358747536, + -188114.69040843635, + null, + -187822.9358747536, + -188021.61315320883, + null, + -187822.9358747536, + -188144.41832691527, + null, + -185715.21113775368, + -184941.34178302911, + null, + -185841.86069840766, + -185830.3568996049, + null, + -185841.86069840766, + -185677.2673627574, + null, + -185841.86069840766, + -185485.39401094842, + null, + -185606.18370621337, + -185444.45812838196, + null, + -185606.18370621337, + -185485.39401094842, + null, + -185745.05148061714, + -185677.50351590122, + null, + -185745.05148061714, + -185680.67525457422, + null, + -185745.05148061714, + -185655.1626902235, + null, + -185745.05148061714, + -185765.7596655601, + null, + -184765.73067528612, + -184489.2856165779, + null, + -184765.73067528612, + -184454.01464139723, + null, + -184765.73067528612, + -184498.4737922646, + null, + -184765.73067528612, + -184573.2021564755, + null, + -184765.73067528612, + -184621.93570408592, + null, + -184765.73067528612, + -184465.9277614155, + null, + -184765.73067528612, + -184029.80810323294, + null, + -184765.73067528612, + -185211.40111909146, + null, + -184765.73067528612, + -185190.66664916382, + null, + -184765.73067528612, + -184605.50077799056, + null, + -184765.73067528612, + -184576.40010769488, + null, + -184765.73067528612, + -184627.64145343105, + null, + -184765.73067528612, + -184506.37513977927, + null, + -184765.73067528612, + -184609.0831377138, + null, + -184765.73067528612, + -184677.96396018367, + null, + -184765.73067528612, + -184664.23676982484, + null, + -184765.73067528612, + -184556.3775650089, + null, + -184765.73067528612, + -185192.79185703603, + null, + -184765.73067528612, + -184550.4233071596, + null, + -184765.73067528612, + -184536.88599997063, + null, + -184765.73067528612, + -184512.64018821175, + null, + -184765.73067528612, + -184543.452959208, + null, + -185826.80959253322, + -185776.6914500685, + null, + -185805.15630328484, + -185822.29164402644, + null, + -185805.15630328484, + -185696.655354225, + null, + -185805.15630328484, + -185760.94872793366, + null, + -185880.6665128765, + -185846.41148709282, + null, + -185880.6665128765, + -185909.15469419034, + null, + -183430.55483779273, + -182087.23736153383, + null, + -183430.55483779273, + -182094.36855869577, + null, + -185519.05918496437, + -185637.4693084021, + null, + -185519.05918496437, + -185652.67346685063, + null, + -185519.05918496437, + -185535.5286475488, + null, + -185519.05918496437, + -185602.36617438102, + null, + -185519.05918496437, + -185573.4220194495, + null, + -185519.05918496437, + -185521.9131599804, + null, + -185519.05918496437, + -185472.62564099822, + null, + -185720.05400911724, + -185760.40751850946, + null, + -185249.63622188903, + -185138.2952496597, + null, + -185249.63622188903, + -184720.63687979916, + null, + -185249.63622188903, + -185165.7311987436, + null, + -186055.02259865488, + -185650.36841039386, + null, + -186055.02259865488, + -185425.12264167838, + null, + -186055.02259865488, + -185830.3568996049, + null, + -186055.02259865488, + -185893.34313629338, + null, + -186055.02259865488, + -185936.0348898676, + null, + -186283.60700347682, + -185753.54811495807, + null, + -185753.54811495807, + -185250.60864012758, + null, + -185753.54811495807, + -185649.41923234705, + null, + -185753.54811495807, + -185429.39968634545, + null, + -185753.54811495807, + -185474.01141745676, + null, + -185753.54811495807, + -185774.3961361211, + null, + -185753.54811495807, + -185425.12264167838, + null, + -185753.54811495807, + -185830.3568996049, + null, + -185753.54811495807, + -185687.14488378543, + null, + -185753.54811495807, + -185285.8440935564, + null, + -185753.54811495807, + -185453.97411013974, + null, + -185753.54811495807, + -185677.2673627574, + null, + -185753.54811495807, + -185473.5944232423, + null, + -185753.54811495807, + -185345.18748309344, + null, + -185753.54811495807, + -185469.22223657562, + null, + -185753.54811495807, + -185420.4043875232, + null, + -185753.54811495807, + -185496.81537077486, + null, + -185753.54811495807, + -185067.60944469785, + null, + -185753.54811495807, + -185485.39401094842, + null, + -185753.54811495807, + -185206.36499600124, + null, + -185753.54811495807, + -185436.550641823, + null, + -186091.85862784483, + -185650.36841039386, + null, + -186091.85862784483, + -185774.3961361211, + null, + -186091.85862784483, + -185830.3568996049, + null, + -186091.85862784483, + -185677.2673627574, + null, + -186095.0815121383, + -185830.3568996049, + null, + -186095.0815121383, + -185677.2673627574, + null, + -186095.0815121383, + -185485.39401094842, + null, + -187638.04666398917, + -187619.79836570565, + null, + -187894.2559948564, + -188121.44388568716, + null, + -187894.2559948564, + -188058.76541098158, + null, + -187763.07589632823, + -187911.62808368597, + null, + -188155.95470557085, + -188420.2067400686, + null, + -186739.78539095962, + -186640.57850765003, + null, + -183895.39726926797, + -183787.8778325471, + null, + -183895.39726926797, + -183620.92374765448, + null, + -183895.39726926797, + -183585.59515960552, + null, + -183895.39726926797, + -183702.47064300528, + null, + -183895.39726926797, + -182420.8485208509, + null, + -183895.39726926797, + -183654.7560552544, + null, + -183895.39726926797, + -183693.60669998443, + null, + -183895.39726926797, + -183744.1802364832, + null, + -183895.39726926797, + -183628.01772203547, + null, + -183895.39726926797, + -183575.58455289324, + null, + -183895.39726926797, + -183564.13613035955, + null, + -183895.39726926797, + -183676.65146323718, + null, + -183895.39726926797, + -183629.47499298933, + null, + -183895.39726926797, + -183721.38596098, + null, + -183895.39726926797, + -183666.4888270363, + null, + -183895.39726926797, + -183638.88510177907, + null, + -183895.39726926797, + -183774.8403863521, + null, + -183895.39726926797, + -183728.9159629604, + null, + -186077.7694141048, + -186418.97489203545, + null, + -187374.96766820594, + -187401.67452925173, + null, + -186600.31501724018, + -186989.19017429496, + null, + -186600.31501724018, + -186022.8484731827, + null, + -186600.31501724018, + -186276.30897092307, + null, + -186600.31501724018, + -186380.05426090743, + null, + -186600.31501724018, + -186366.66193073316, + null, + -186600.31501724018, + -186249.20162775152, + null, + -187746.2614260409, + -187943.03068637176, + null, + -187746.2614260409, + -187976.53087558964, + null, + -187746.2614260409, + -187948.27627186524, + null, + -187575.0666518512, + -187693.25148113363, + null, + -185615.21357472814, + -185511.4642967856, + null, + -185615.21357472814, + -185650.36841039386, + null, + -185615.21357472814, + -185830.3568996049, + null, + -185615.21357472814, + -185617.06228111294, + null, + -186386.17022089174, + -187176.16775513362, + null, + -184792.31269895128, + -184099.48942748536, + null, + -185297.15959925592, + -185271.49815979396, + null, + -185297.15959925592, + -185091.71032325653, + null, + -185297.15959925592, + -185177.44259645653, + null, + -185376.32218916347, + -185280.3717521528, + null, + -185376.32218916347, + -185267.68557543933, + null, + -185934.3441057752, + -186347.05945545353, + null, + -184719.8977207577, + -184884.01447443964, + null, + -184719.8977207577, + -184966.2533605747, + null, + -184719.8977207577, + -184939.83808412577, + null, + -184719.8977207577, + -184652.76724765133, + null, + -184719.8977207577, + -184992.49271023268, + null, + -184719.8977207577, + -184014.45332893237, + null, + -184719.8977207577, + -184548.04804199652, + null, + -184719.8977207577, + -184618.82194938904, + null, + -184719.8977207577, + -184588.43758881366, + null, + -184719.8977207577, + -184979.51429673051, + null, + -184719.8977207577, + -184934.65343953003, + null, + -184719.8977207577, + -184540.4465197977, + null, + -184719.8977207577, + -184529.68677437576, + null, + -184719.8977207577, + -184527.59148972368, + null, + -184719.8977207577, + -184603.30224533824, + null, + -184719.8977207577, + -184695.73622553676, + null, + -184203.63035864593, + -183856.76291758567, + null, + -184203.63035864593, + -183923.04167683766, + null, + -184203.63035864593, + -183920.46827459653, + null, + -184203.63035864593, + -183942.46072287185, + null, + -184203.63035864593, + -183966.14944940363, + null, + -184203.63035864593, + -184022.37986115966, + null, + -184203.63035864593, + -183858.53808757465, + null, + -184203.63035864593, + -183856.8165942456, + null, + -184203.63035864593, + -183783.75192537752, + null, + -184203.63035864593, + -184021.05886616785, + null, + -184203.63035864593, + -183734.7000156707, + null, + -184203.63035864593, + -183874.32018150846, + null, + -184203.63035864593, + -183834.41121000051, + null, + -184203.63035864593, + -184004.2014556012, + null, + -184203.63035864593, + -183959.7185885655, + null, + -184203.63035864593, + -183918.43052226157, + null, + -184203.63035864593, + -183886.46074349398, + null, + -184203.63035864593, + -183970.12618582664, + null, + -184203.63035864593, + -184047.8385877452, + null, + -186271.3613223738, + -186182.73800954662, + null, + -186271.3613223738, + -186249.61481778725, + null, + -186271.3613223738, + -186297.75486173076, + null, + -186271.3613223738, + -186324.0305926026, + null, + -186271.3613223738, + -186236.53912128153, + null, + -186271.3613223738, + -186182.5712881453, + null, + -186024.0766929756, + -185953.14899281866, + null, + -186024.0766929756, + -185830.8351587531, + null, + -186024.0766929756, + -185821.64538848578, + null, + -185603.29490146937, + -185141.05742456802, + null, + -185603.29490146937, + -185439.13268669933, + null, + -185603.29490146937, + -185830.8351587531, + null, + -185603.29490146937, + -185177.60111052875, + null, + -185603.29490146937, + -185821.64538848578, + null, + -185603.29490146937, + -185182.7983091269, + null, + -185753.06204734184, + -185650.36841039386, + null, + -185753.06204734184, + -185774.3961361211, + null, + -185753.06204734184, + -185830.3568996049, + null, + -185753.06204734184, + -185677.2673627574, + null, + -185753.06204734184, + -185345.18748309344, + null, + -185276.91448933058, + -185650.36841039386, + null, + -185276.91448933058, + -185830.3568996049, + null, + -185276.91448933058, + -185677.2673627574, + null, + -185276.91448933058, + -185485.39401094842, + null, + -185276.91448933058, + -185206.36499600124, + null, + -186283.60700347682, + -185442.92204935086, + null, + -186870.78214397354, + -185442.92204935086, + null, + -185153.81686134142, + -184974.97222906543, + null, + -184350.70827119582, + -184279.90057619184, + null, + -187471.21704082517, + -186324.1665531549, + null, + -187965.95478834442, + -186324.1665531549, + null, + -186324.1665531549, + -186236.2314711706, + null, + -185279.59438908967, + -185215.91952611177, + null, + -185737.7766019711, + -185273.47420901168, + null, + -185737.7766019711, + -185277.53611586575, + null, + -185737.7766019711, + -185190.66664916382, + null, + -185737.7766019711, + -185192.79185703603, + null, + -185737.7766019711, + -185614.40716294627, + null, + -185737.7766019711, + -185593.93006590506, + null, + -185737.7766019711, + -185211.40111909146, + null, + -188111.50245778877, + -188557.4596234686, + null, + -188111.50245778877, + -188769.7524320571, + null, + -188111.50245778877, + -188505.68688054534, + null, + -188111.50245778877, + -188370.1764330157, + null, + -188111.50245778877, + -188469.82315365504, + null, + -181117.95796056575, + -182420.8485208509, + null, + -181117.95796056575, + -180909.745155569, + null, + -181117.95796056575, + -180709.71261549313, + null, + -181117.95796056575, + -180902.77547837683, + null, + -181117.95796056575, + -179952.33000867523, + null, + -181117.95796056575, + -180842.29239043556, + null, + -181117.95796056575, + -179943.77813433905, + null, + -181117.95796056575, + -180787.81029715057, + null, + -181117.95796056575, + -179964.11953050675, + null, + -181117.95796056575, + -180735.5598518938, + null, + -181117.95796056575, + -180724.51318886082, + null, + -181117.95796056575, + -180764.8170700024, + null, + -181117.95796056575, + -180785.9780778761, + null, + -181117.95796056575, + -180804.75158568795, + null, + -181117.95796056575, + -180845.41459382957, + null, + -181117.95796056575, + -180819.41967854003, + null, + -181117.95796056575, + -179924.4116050648, + null, + -181117.95796056575, + -180765.59250306184, + null, + -181117.95796056575, + -180738.89765472096, + null, + -181117.95796056575, + -180692.9880617934, + null, + -181117.95796056575, + -180666.9615653273, + null, + -181117.95796056575, + -180723.1250971798, + null, + -181117.95796056575, + -180874.4925506424, + null, + -181117.95796056575, + -179940.5474174767, + null, + -181117.95796056575, + -180670.7264006914, + null, + -181117.95796056575, + -180770.5721985639, + null, + -181117.95796056575, + -180897.94932214296, + null, + -181117.95796056575, + -180816.50719117105, + null, + -181117.95796056575, + -180840.88607907726, + null, + -181117.95796056575, + -180682.41488442908, + null, + -181117.95796056575, + -180792.44149952132, + null, + -181117.95796056575, + -180803.10102321903, + null, + -181117.95796056575, + -180659.778327287, + null, + -181117.95796056575, + -180717.96359535548, + null, + -183944.29790406587, + -183788.99096273613, + null, + -183944.29790406587, + -183779.16247176562, + null, + -184501.03914673053, + -184347.65849261818, + null, + -184501.03914673053, + -184884.01447443964, + null, + -183887.24713882807, + -183714.67737531645, + null, + -184797.30489013533, + -185323.49054395297, + null, + -186552.6186504858, + -186380.05426090743, + null, + -186552.6186504858, + -186366.66193073316, + null, + -186552.6186504858, + -186604.72926858248, + null, + -186552.6186504858, + -186567.5091645483, + null, + -186552.6186504858, + -186249.20162775152, + null, + -186552.6186504858, + -186276.30897092307, + null, + -186153.74538117443, + -185650.36841039386, + null, + -186153.74538117443, + -185774.3961361211, + null, + -186153.74538117443, + -185830.3568996049, + null, + -186153.74538117443, + -185677.2673627574, + null, + -187278.66842823187, + -187463.35892346295, + null, + -187278.66842823187, + -187475.19460358928, + null, + -186283.60700347682, + -185447.3850337414, + null, + -186870.78214397354, + -185447.3850337414, + null, + -184333.46569932284, + -184991.80627054124, + null, + -183609.28082124022, + -183461.60321590066, + null, + -183737.2037660667, + -183706.9123006825, + null, + -183570.56269982722, + -183382.93836771394, + null, + -182851.40614782678, + -183454.4556818976, + null, + -182851.40614782678, + -182388.11368171035, + null, + -182851.40614782678, + -182529.26628902787, + null, + -182851.40614782678, + -182549.07931419823, + null, + -182851.40614782678, + -182425.7209298557, + null, + -182851.40614782678, + -182606.63936888328, + null, + -182851.40614782678, + -182486.48502463632, + null, + -182851.40614782678, + -182582.6931146041, + null, + -182851.40614782678, + -182423.89628454405, + null, + -182851.40614782678, + -183427.52450741653, + null, + -182851.40614782678, + -183468.11246198523, + null, + -182851.40614782678, + -182443.7956614858, + null, + -182851.40614782678, + -183448.23675261464, + null, + -182851.40614782678, + -183478.30434363155, + null, + -182851.40614782678, + -182486.5877240622, + null, + -182851.40614782678, + -182475.17256004427, + null, + -182851.40614782678, + -183408.7996719894, + null, + -182851.40614782678, + -183453.94049617794, + null, + -182851.40614782678, + -182825.80593338294, + null, + -181143.13730185444, + -180900.60175741656, + null, + -181143.13730185444, + -180824.8780152111, + null, + -181143.13730185444, + -179926.86668937167, + null, + -181143.13730185444, + -180827.0478808366, + null, + -181143.13730185444, + -179917.67228537184, + null, + -181143.13730185444, + -179903.54516782166, + null, + -181143.13730185444, + -179893.4393245515, + null, + -181143.13730185444, + -180889.41939093173, + null, + -179062.95290375294, + -179964.11953050675, + null, + -179062.95290375294, + -178623.59690207575, + null, + -179062.95290375294, + -179952.33000867523, + null, + -179062.95290375294, + -178554.08466333893, + null, + -179062.95290375294, + -178436.7908829831, + null, + -179062.95290375294, + -179917.67228537184, + null, + -179062.95290375294, + -178558.0937103395, + null, + -179062.95290375294, + -178570.64648304324, + null, + -179062.95290375294, + -178488.27744802684, + null, + -179062.95290375294, + -179926.86668937167, + null, + -179062.95290375294, + -178691.44886841782, + null, + -179062.95290375294, + -178564.94630361674, + null, + -179062.95290375294, + -178563.48522728076, + null, + -179062.95290375294, + -178717.23295975232, + null, + -179062.95290375294, + -178442.469710615, + null, + -179062.95290375294, + -178533.43895398427, + null, + -179062.95290375294, + -178405.40053992975, + null, + -179062.95290375294, + -178581.996633066, + null, + -179062.95290375294, + -178750.33119243302, + null, + -179062.95290375294, + -178518.2432508357, + null, + -179062.95290375294, + -178638.1301594935, + null, + -179062.95290375294, + -178549.44571791714, + null, + -179062.95290375294, + -178432.0352583338, + null, + -179062.95290375294, + -178460.23443320673, + null, + -179062.95290375294, + -178462.3041424345, + null, + -179062.95290375294, + -178511.13389375104, + null, + -179062.95290375294, + -178294.2997167077, + null, + -179062.95290375294, + -178542.3251145037, + null, + -179062.95290375294, + -178428.43265563578, + null, + -179062.95290375294, + -178524.70063209053, + null, + -179062.95290375294, + -178652.93553051475, + null, + -179062.95290375294, + -178564.5275489163, + null, + -179062.95290375294, + -179924.4116050648, + null, + -179062.95290375294, + -178711.00834272362, + null, + -179062.95290375294, + -178593.38928498706, + null, + -179062.95290375294, + -178607.60033410153, + null, + -179062.95290375294, + -178697.5378154587, + null, + -179062.95290375294, + -178496.6439016545, + null, + -179062.95290375294, + -178516.70514832705, + null, + -179062.95290375294, + -179940.5474174767, + null, + -179062.95290375294, + -178173.96397881166, + null, + -179062.95290375294, + -178630.87310248002, + null, + -179062.95290375294, + -178507.01579040708, + null, + -179062.95290375294, + -178474.2039992179, + null, + -179062.95290375294, + -178492.20167515153, + null, + -179062.95290375294, + -178637.20991508843, + null, + -179062.95290375294, + -179943.77813433905, + null, + -179062.95290375294, + -178464.27180037618, + null, + -179062.95290375294, + -178577.39055378566, + null, + -179062.95290375294, + -178405.1247219723, + null, + -179062.95290375294, + -178601.60635392906, + null, + -179062.95290375294, + -178720.07863024718, + null, + -179062.95290375294, + -178607.70179973924, + null, + -179062.95290375294, + -177980.3058143678, + null, + -179062.95290375294, + -178516.96872389078, + null, + -179062.95290375294, + -178455.55225062207, + null, + -179062.95290375294, + -178523.4874214946, + null, + -179062.95290375294, + -178559.66565811823, + null, + -179062.95290375294, + -178654.88321266344, + null, + -179062.95290375294, + -178652.8764789972, + null, + -179062.95290375294, + -178606.5230669658, + null, + -179062.95290375294, + -178462.88979660024, + null, + -179062.95290375294, + -178505.99092471664, + null, + -179062.95290375294, + -178659.89626082158, + null, + -179062.95290375294, + -179893.4393245515, + null, + -179062.95290375294, + -178495.2300096829, + null, + -179062.95290375294, + -178697.93002062794, + null, + -179062.95290375294, + -178570.20722506093, + null, + -179062.95290375294, + -179903.54516782166, + null, + -179062.95290375294, + -178609.4919362779, + null, + -179062.95290375294, + -178550.05784523298, + null, + -179062.95290375294, + -178679.05433494938, + null, + -179062.95290375294, + -178439.9217113105, + null, + -179062.95290375294, + -178541.75133386956, + null, + -179062.95290375294, + -178588.50198710954, + null, + -179062.95290375294, + -178609.18224746437, + null, + -179062.95290375294, + -178608.5732692418, + null, + -179062.95290375294, + -178641.31909922665, + null, + -179062.95290375294, + -178488.30962670548, + null, + -179062.95290375294, + -178657.90280830112, + null, + -183428.15224553086, + -183289.93151228954, + null, + -183428.15224553086, + -183242.92238719485, + null, + -183428.15224553086, + -183255.82906837002, + null, + -186400.055894199, + -187863.92820822977, + null, + -186400.055894199, + -187894.56703794212, + null, + -186400.055894199, + -187852.36526218464, + null, + -183195.36094988632, + -182978.78721471297, + null, + -183195.36094988632, + -183038.58157721706, + null, + -183195.36094988632, + -183309.3093745461, + null, + -183195.36094988632, + -183269.02525615806, + null, + -183195.36094988632, + -183282.65685712005, + null, + -183195.36094988632, + -182993.2503192717, + null, + -183195.36094988632, + -183232.39642749276, + null, + -183346.4258055763, + -183133.59169112245, + null, + -183346.4258055763, + -183172.54648983607, + null, + -183346.4258055763, + -183115.6076721331, + null, + -184867.16628209932, + -185011.84033188224, + null, + -184867.16628209932, + -185250.60864012758, + null, + -184867.16628209932, + -185293.2187831642, + null, + -184867.16628209932, + -184896.9494846697, + null, + -184867.16628209932, + -185285.8440935564, + null, + -184867.16628209932, + -184966.17232256278, + null, + -184867.16628209932, + -184963.36474706372, + null, + -184867.16628209932, + -185774.3961361211, + null, + -184867.16628209932, + -184720.55315674286, + null, + -184867.16628209932, + -184789.59237810186, + null, + -184867.16628209932, + -184250.11601459378, + null, + -184867.16628209932, + -184840.94461722943, + null, + -184867.16628209932, + -184982.25190169932, + null, + -184867.16628209932, + -184925.3424128911, + null, + -184867.16628209932, + -185425.12264167838, + null, + -184867.16628209932, + -185021.8294439658, + null, + -184867.16628209932, + -185206.36499600124, + null, + -185096.76662262852, + -185250.60864012758, + null, + -185096.76662262852, + -185774.3961361211, + null, + -185096.76662262852, + -185650.36841039386, + null, + -185096.76662262852, + -185067.60944469785, + null, + -185096.76662262852, + -185830.3568996049, + null, + -185096.76662262852, + -185677.2673627574, + null, + -185096.76662262852, + -185345.18748309344, + null, + -185096.76662262852, + -185206.36499600124, + null, + -183295.14885534026, + -183109.4455208243, + null, + -183295.14885534026, + -183147.2630049226, + null, + -183295.14885534026, + -183100.15820011563, + null, + -183295.14885534026, + -183070.48614592486, + null, + -184940.4396921724, + -185830.3568996049, + null, + -184940.4396921724, + -184756.1452888642, + null, + -184940.4396921724, + -185650.36841039386, + null, + -184940.4396921724, + -184826.45735488343, + null, + -183472.72321986, + -183341.5026651699, + null, + -183472.72321986, + -183257.84783702332, + null, + -183555.20809289117, + -183511.68520968122, + null, + -183534.65675936858, + -183328.08397366235, + null, + -185048.94065281202, + -185068.01671399627, + null, + -185048.94065281202, + -184871.46409474593, + null, + -185048.94065281202, + -186276.30897092307, + null, + -185048.94065281202, + -185052.07634225543, + null, + -185379.95492149531, + -186380.05426090743, + null, + -185379.95492149531, + -186022.8484731827, + null, + -185379.95492149531, + -186366.66193073316, + null, + -185379.95492149531, + -185438.75158188608, + null, + -185379.95492149531, + -185459.31088253466, + null, + -183230.4928305493, + -183001.6851454487, + null, + -183230.4928305493, + -183076.80405507874, + null, + -183230.4928305493, + -183009.4590377982, + null, + -183230.4928305493, + -182979.24860315252, + null, + -183537.31132500691, + -183374.7939359946, + null, + -185199.55957149496, + -185011.84033188224, + null, + -185199.55957149496, + -185250.60864012758, + null, + -185199.55957149496, + -185093.7368725669, + null, + -186283.60700347682, + -185199.55957149496, + null, + -185199.55957149496, + -184925.3424128911, + null, + -185199.55957149496, + -184963.36474706372, + null, + -185199.55957149496, + -184998.6633073986, + null, + -185199.55957149496, + -185285.8440935564, + null, + -185199.55957149496, + -185774.3961361211, + null, + -185199.55957149496, + -185068.85971572844, + null, + -185199.55957149496, + -185429.39968634545, + null, + -185199.55957149496, + -185474.01141745676, + null, + -185199.55957149496, + -184943.5809181066, + null, + -185199.55957149496, + -185650.36841039386, + null, + -185199.55957149496, + -185425.12264167838, + null, + -185199.55957149496, + -185067.60944469785, + null, + -185199.55957149496, + -185023.88959588853, + null, + -185199.55957149496, + -185830.3568996049, + null, + -185199.55957149496, + -185082.0833365548, + null, + -185199.55957149496, + -185148.40604299065, + null, + -185199.55957149496, + -185436.550641823, + null, + -185199.55957149496, + -184966.17232256278, + null, + -185199.55957149496, + -184982.25190169932, + null, + -185199.55957149496, + -184977.44409740437, + null, + -185199.55957149496, + -184997.31464103883, + null, + -185199.55957149496, + -185089.27598983576, + null, + -185199.55957149496, + -185089.0086389262, + null, + -185199.55957149496, + -184902.62901699232, + null, + -185199.55957149496, + -185079.38925215916, + null, + -185199.55957149496, + -185230.35763149426, + null, + -185199.55957149496, + -185453.97411013974, + null, + -185199.55957149496, + -185048.74105525186, + null, + -185199.55957149496, + -184896.9494846697, + null, + -185199.55957149496, + -185677.2673627574, + null, + -185199.55957149496, + -185187.47949728227, + null, + -185199.55957149496, + -185473.5944232423, + null, + -185199.55957149496, + -185150.70672626782, + null, + -185199.55957149496, + -185132.0865388388, + null, + -185199.55957149496, + -185142.57079867384, + null, + -185199.55957149496, + -185469.22223657562, + null, + -185199.55957149496, + -185345.18748309344, + null, + -185199.55957149496, + -184910.07141996681, + null, + -185199.55957149496, + -185021.8294439658, + null, + -185199.55957149496, + -185420.4043875232, + null, + -185199.55957149496, + -185010.9809112164, + null, + -185199.55957149496, + -185496.81537077486, + null, + -185199.55957149496, + -185055.58177579596, + null, + -185199.55957149496, + -185206.36499600124, + null, + -185199.55957149496, + -185485.39401094842, + null, + -184996.35720146328, + -185830.3568996049, + null, + -184996.35720146328, + -185677.2673627574, + null, + -184996.35720146328, + -185485.39401094842, + null, + -183484.0643545454, + -183319.82671109284, + null, + -183484.0643545454, + -183343.52858918067, + null, + -183661.7612554338, + -183540.0801197569, + null, + -183634.66754273794, + -183455.08344399888, + null, + -183149.3117717627, + -182897.35332880451, + null, + -183149.3117717627, + -183031.3680288819, + null, + -183149.3117717627, + -182899.68496868006, + null, + -183149.3117717627, + -182951.00775120725, + null, + -183149.3117717627, + -183009.0203452414, + null, + -183149.3117717627, + -182969.49503841982, + null, + -183149.3117717627, + -182961.8930869576, + null, + -183600.97574435148, + -183565.39955803388, + null, + -185172.1130263042, + -186140.23856401135, + null, + -185172.1130263042, + -186153.994068847, + null, + -184941.27866808354, + -184719.2933805017, + null, + -184941.27866808354, + -184852.54846837025, + null, + -184941.27866808354, + -185830.3568996049, + null, + -184941.27866808354, + -185650.36841039386, + null, + -184941.27866808354, + -184771.7014457759, + null, + -184941.27866808354, + -185320.20394035542, + null, + -184423.14627603424, + -185067.60944469785, + null, + -185137.9260259597, + -185425.12264167838, + null, + -185137.9260259597, + -185067.60944469785, + null, + -185137.9260259597, + -185830.3568996049, + null, + -185137.9260259597, + -185677.2673627574, + null, + -185137.9260259597, + -185485.39401094842, + null, + -185137.9260259597, + -185206.36499600124, + null, + -183495.9303439195, + -183238.2725594145, + null, + -183495.9303439195, + -183287.3196162057, + null, + -183495.9303439195, + -184029.80810323294, + null, + -183495.9303439195, + -183298.64678428596, + null, + -183495.9303439195, + -183179.063213912, + null, + -183495.9303439195, + -183301.19264459712, + null, + -183638.59508131372, + -183496.95058249735, + null, + -183150.43565294353, + -183454.4556818976, + null, + -183150.43565294353, + -182606.63936888328, + null, + -183150.43565294353, + -182582.6931146041, + null, + -183150.43565294353, + -183427.52450741653, + null, + -183150.43565294353, + -183468.11246198523, + null, + -183150.43565294353, + -183448.23675261464, + null, + -183150.43565294353, + -183478.30434363155, + null, + -183150.43565294353, + -183408.7996719894, + null, + -183150.43565294353, + -183653.6949449289, + null, + -183150.43565294353, + -183453.94049617794, + null, + -183150.43565294353, + -182825.80593338294, + null, + -184959.75297709103, + -184843.89469543626, + null, + -184282.8223254371, + -184941.34178302911, + null, + -185050.17746824646, + -185486.61372523938, + null, + -185050.17746824646, + -185440.07638832257, + null, + -184855.78706899192, + -185141.05742456802, + null, + -184855.78706899192, + -184624.17550004294, + null, + -184855.78706899192, + -184691.42044326675, + null, + -184855.78706899192, + -184697.7108009961, + null, + -184855.78706899192, + -184564.4704663814, + null, + -184855.78706899192, + -184692.4146787554, + null, + -184855.78706899192, + -184745.86688139816, + null, + -184855.78706899192, + -184745.63052333257, + null, + -184855.78706899192, + -184606.98123665425, + null, + -184855.78706899192, + -184673.6351594657, + null, + -184855.78706899192, + -184648.9263016337, + null, + -184855.78706899192, + -184634.4057762235, + null, + -184855.78706899192, + -185830.8351587531, + null, + -184855.78706899192, + -185177.60111052875, + null, + -184855.78706899192, + -185821.64538848578, + null, + -184855.78706899192, + -185182.7983091269, + null, + -184855.78706899192, + -184588.40026682435, + null, + -184855.78706899192, + -184728.63779550133, + null, + -184855.78706899192, + -184697.06720197387, + null, + -184855.78706899192, + -184658.08630104552, + null, + -184855.78706899192, + -184751.42939384596, + null, + -184961.07542385507, + -184915.37938012218, + null, + -184961.07542385507, + -185345.18748309344, + null, + -184961.07542385507, + -184915.80229910425, + null, + -184961.07542385507, + -184998.6633073986, + null, + -184961.07542385507, + -184809.226434392, + null, + -184961.07542385507, + -184878.41272612265, + null, + -184961.07542385507, + -184781.15000342295, + null, + -184981.84743495082, + -185830.3568996049, + null, + -184981.84743495082, + -185677.2673627574, + null, + -184981.84743495082, + -185485.39401094842, + null, + -183572.02000817447, + -183425.42042761206, + null, + -183572.02000817447, + -183491.17842973955, + null, + -187808.73897039745, + -185847.7897940973, + null, + -187808.73897039745, + -185845.0713146115, + null, + -183567.13168373698, + -183394.46490438026, + null, + -183567.13168373698, + -183482.59900076909, + null, + -184953.50462711358, + -184789.43054132286, + null, + -184953.50462711358, + -184840.87093100656, + null, + -184953.50462711358, + -184955.71478210148, + null, + -184953.50462711358, + -184853.88088084952, + null, + -183740.6927330769, + -183488.3327404413, + null, + -183740.6927330769, + -183654.62815247447, + null, + -183740.6927330769, + -184250.11601459378, + null, + -183447.3736804631, + -183170.48934623392, + null, + -183638.5415461372, + -183544.22509648418, + null, + -183693.8098700191, + -183609.01332193392, + null, + -183506.43875629295, + -183346.06901967287, + null, + -183465.92369980083, + -183224.1180654994, + null, + -184713.8079921453, + -185192.79185703603, + null, + -184713.8079921453, + -184550.4233071596, + null, + -184713.8079921453, + -184489.2856165779, + null, + -184713.8079921453, + -185190.66664916382, + null, + -184713.8079921453, + -185277.53611586575, + null, + -184713.8079921453, + -185273.47420901168, + null, + -184713.8079921453, + -185211.40111909146, + null, + -187444.98398375107, + -186310.16860214635, + null, + -187212.75750088846, + -186310.16860214635, + null, + -187393.45287008572, + -186310.16860214635, + null, + -187430.50547179487, + -186310.16860214635, + null, + -187206.375494998, + -186310.16860214635, + null, + -187142.3027271855, + -186310.16860214635, + null, + -186301.94278822944, + -187411.8004731311, + null, + -186301.94278822944, + -187384.85440843413, + null, + -186301.94278822944, + -187397.49483843523, + null, + -186301.94278822944, + -187389.06402282708, + null, + -186301.94278822944, + -187408.57036686965, + null, + -186163.99974887632, + -188162.64085287615, + null, + -186163.99974887632, + -186119.49203913865, + null, + -186163.99974887632, + -187252.96696407747, + null, + -186163.99974887632, + -186217.65823101738, + null, + -184581.99228433802, + -184884.01447443964, + null, + -184581.99228433802, + -184966.2533605747, + null, + -184581.99228433802, + -184939.83808412577, + null, + -184581.99228433802, + -184993.21116610424, + null, + -184581.99228433802, + -185033.33272861876, + null, + -184581.99228433802, + -184992.49271023268, + null, + -184581.99228433802, + -185018.8411711607, + null, + -184581.99228433802, + -184014.45332893237, + null, + -184581.99228433802, + -184431.29788077172, + null, + -184581.99228433802, + -184934.65343953003, + null, + -184581.99228433802, + -184979.51429673051, + null, + -183482.81197479606, + -183374.18390449428, + null, + -183482.81197479606, + -183323.66280121214, + null, + -183482.81197479606, + -183408.2842664633, + null, + -183599.0223072427, + -183404.54218882136, + null, + -185523.21586449863, + -186276.30897092307, + null, + -185523.21586449863, + -186380.05426090743, + null, + -185523.21586449863, + -186022.8484731827, + null, + -185523.21586449863, + -186366.66193073316, + null, + -185523.21586449863, + -185438.75158188608, + null, + -185523.21586449863, + -185459.31088253466, + null, + -185523.21586449863, + -186249.20162775152, + null, + -184220.87408888803, + -184720.63687979916, + null, + -184220.87408888803, + -184125.37656993855, + null, + -183336.9655582326, + -183193.80563843125, + null, + -183336.9655582326, + -183210.86534053346, + null, + -183336.9655582326, + -183068.9782319114, + null, + -183336.9655582326, + -183158.49383680677, + null, + -183417.25501227446, + -183278.76592303222, + null, + -183574.8313324696, + -183433.48674636218, + null, + -183574.8313324696, + -183536.10312163807, + null, + -183568.94114048648, + -183372.0424666985, + null, + -183561.13969966708, + -184099.48942748536, + null, + -183561.13969966708, + -183231.82462614574, + null, + -183561.13969966708, + -183302.02623710444, + null, + -177310.94056187524, + -173635.00926671873, + null, + -177310.94056187524, + -173629.4910453442, + null, + -177310.94056187524, + -176998.64399938524, + null, + -177310.94056187524, + -177066.8720413106, + null, + -177310.94056187524, + -173634.2922040698, + null, + -177310.94056187524, + -177022.6135091292, + null, + -183314.90524811472, + -183161.23163489092, + null, + -183314.90524811472, + -183049.5712780777, + null, + -183562.4655226862, + -183453.48204868875, + null, + -188001.67609114133, + -187890.59895818657, + null, + -188590.2656368338, + -189168.76930062557, + null, + -188650.31700513716, + -189017.94980528016, + null, + -188650.31700513716, + -189051.82394498357, + null, + -188650.31700513716, + -188584.48243914515, + null, + -188108.82660797954, + -188022.7222170089, + null, + -188108.82660797954, + -188052.25455199185, + null, + -188108.82660797954, + -188165.97775520477, + null, + -187817.81523305984, + -187748.69710114886, + null, + -187817.81523305984, + -187526.96904194946, + null, + -188174.91579203284, + -188142.36563635623, + null, + -188174.91579203284, + -188219.55657425546, + null, + -188038.4334288893, + -188174.91579203284, + null, + -188174.91579203284, + -188171.8323130677, + null, + -188174.91579203284, + -188265.23932553243, + null, + -188174.91579203284, + -188123.85049620818, + null, + -188075.2636711698, + -188286.52887175203, + null, + -188835.70345149824, + -189084.5439991584, + null, + -188835.70345149824, + -188340.82871420533, + null, + -190313.9575153106, + -190481.18414111834, + null, + -190313.9575153106, + -190194.37548906854, + null, + -190313.9575153106, + -190619.62304985526, + null, + -190313.9575153106, + -189944.012554813, + null, + -190313.9575153106, + -189368.39644194843, + null, + -190313.9575153106, + -190625.60337733393, + null, + -190313.9575153106, + -190599.24045840377, + null, + -190313.9575153106, + -190226.99435288858, + null, + -190313.9575153106, + -190555.5337087257, + null, + -190313.9575153106, + -190577.08701564785, + null, + -190313.9575153106, + -190502.54227035303, + null, + -190313.9575153106, + -190701.39607546074, + null, + -190313.9575153106, + -190483.56699262653, + null, + -190313.9575153106, + -190558.59312642895, + null, + -190313.9575153106, + -189944.03349898005, + null, + -190313.9575153106, + -190622.50020444766, + null, + -190313.9575153106, + -191956.9509027277, + null, + -189099.75049063095, + -189596.39277355725, + null, + -189095.71887327847, + -189596.39277355725, + null, + -188914.75145452813, + -189081.37240888822, + null, + -188914.75145452813, + -189189.54697625263, + null, + -188914.75145452813, + -189022.31890019495, + null, + -190032.7652732372, + -189607.57795842667, + null, + -189938.6241563695, + -189794.93841442053, + null, + -189938.6241563695, + -189619.61208740424, + null, + -189938.6241563695, + -189757.03297088, + null, + -189938.6241563695, + -189607.57795842667, + null, + -189234.69869927395, + -188650.65877533983, + null, + -189234.69869927395, + -188629.10826848733, + null, + -189234.69869927395, + -188615.4770908332, + null, + -189234.69869927395, + -188550.56920449316, + null, + -193457.45865985725, + -193534.58363562726, + null, + -193457.45865985725, + -193746.06656836157, + null, + -193457.45865985725, + -193536.88821662494, + null, + -193457.45865985725, + -193690.75126823565, + null, + -193457.45865985725, + -193828.1864987295, + null, + -193457.45865985725, + -193694.47134159697, + null, + -193457.45865985725, + -193908.71990085614, + null, + -193457.45865985725, + -193926.73131627264, + null, + -193457.45865985725, + -192467.37989371552, + null, + -193457.45865985725, + -193876.98390154605, + null, + -193457.45865985725, + -193937.14325502317, + null, + -193457.45865985725, + -193799.02394631426, + null, + -193457.45865985725, + -193774.27258889857, + null, + -193457.45865985725, + -193975.47469840795, + null, + -193457.45865985725, + -193668.5700211384, + null, + -193457.45865985725, + -193863.922824815, + null, + -193457.45865985725, + -193777.43216763728, + null, + -193457.45865985725, + -193702.5372609475, + null, + -193457.45865985725, + -193807.07780800795, + null, + -193457.45865985725, + -193749.23407981847, + null, + -193457.45865985725, + -193848.73115611952, + null, + -193457.45865985725, + -193829.82350082346, + null, + -193457.45865985725, + -194072.47921578164, + null, + -193457.45865985725, + -193714.61436065382, + null, + -193457.45865985725, + -193831.93364492635, + null, + -193457.45865985725, + -194022.37644342383, + null, + -193457.45865985725, + -193929.14922551668, + null, + -193457.45865985725, + -191956.9509027277, + null, + -193457.45865985725, + -193709.41847952036, + null, + -193457.45865985725, + -193580.42749235677, + null, + -193457.45865985725, + -193673.19657366312, + null, + -193457.45865985725, + -193675.4846188424, + null, + -193457.45865985725, + -193804.38388892714, + null, + -193457.45865985725, + -193761.4245739493, + null, + -193457.45865985725, + -193832.16706009684, + null, + -193457.45865985725, + -193963.83892343825, + null, + -193457.45865985725, + -193744.99083273322, + null, + -193457.45865985725, + -193651.75122489312, + null, + -193457.45865985725, + -193746.6309587092, + null, + -193457.45865985725, + -193858.4367764975, + null, + -193457.45865985725, + -193735.9695129494, + null, + -193457.45865985725, + -193791.1955832733, + null, + -193457.45865985725, + -193759.89400756784, + null, + -193457.45865985725, + -193767.32774094612, + null, + -193457.45865985725, + -193960.03946464113, + null, + -193457.45865985725, + -193825.5996938444, + null, + -193457.45865985725, + -193646.09114384378, + null, + -193457.45865985725, + -194029.90647483527, + null, + -193457.45865985725, + -193627.99896662962, + null, + -193457.45865985725, + -193600.72359083666, + null, + -193457.45865985725, + -193919.70824670978, + null, + -193457.45865985725, + -193766.4906457397, + null, + -193457.45865985725, + -194007.48964572605, + null, + -193457.45865985725, + -193810.47215112645, + null, + -193457.45865985725, + -193844.94572726413, + null, + -193457.45865985725, + -194037.0391692495, + null, + -193457.45865985725, + -193851.06434528634, + null, + -193457.45865985725, + -193874.82215845535, + null, + -193457.45865985725, + -193723.95168770116, + null, + -193457.45865985725, + -193897.5631725786, + null, + -193457.45865985725, + -193810.2074839169, + null, + -193457.45865985725, + -193608.74043988352, + null, + -193457.45865985725, + -193894.64693893815, + null, + -193457.45865985725, + -193688.6584630469, + null, + -193457.45865985725, + -193904.11476722118, + null, + -193457.45865985725, + -193682.8928145957, + null, + -193457.45865985725, + -193820.47172546384, + null, + -193457.45865985725, + -193889.7955965534, + null, + -193457.45865985725, + -193787.85515705598, + null, + -193457.45865985725, + -193728.1477085373, + null, + -193457.45865985725, + -193937.34499460776, + null, + -193457.45865985725, + -193805.18800143278, + null, + -193457.45865985725, + -193739.99240211275, + null, + -193457.45865985725, + -193928.394955046, + null, + -193457.45865985725, + -193797.7489289576, + null, + -193457.45865985725, + -193622.61125641817, + null, + -193457.45865985725, + -193580.10680370886, + null, + -193457.45865985725, + -193821.88689952737, + null, + -193457.45865985725, + -193875.7883864531, + null, + -193457.45865985725, + -193843.667706734, + null, + -190806.68303526114, + -190942.65455718772, + null, + -190806.68303526114, + -190935.69915585697, + null, + -190806.68303526114, + -190754.12935394185, + null, + -190806.68303526114, + -190772.50006996628, + null, + -190806.68303526114, + -190718.86652711377, + null, + -190793.21217436218, + -190909.16845115123, + null, + -190793.21217436218, + -190962.44360370797, + null, + -190793.21217436218, + -190988.82032427454, + null, + -189559.22608543184, + -189666.5672120893, + null, + -189559.22608543184, + -189829.0928502695, + null, + -189665.89556126, + -189626.70216868905, + null, + -189665.89556126, + -189859.27408912993, + null, + -189665.89556126, + -189749.7157783643, + null, + -189665.89556126, + -189930.46843261595, + null, + -190343.14623174802, + -190772.50006996628, + null, + -190343.14623174802, + -190546.38147049418, + null, + -190343.14623174802, + -190399.4126354747, + null, + -190343.14623174802, + -190728.8379457946, + null, + -190343.14623174802, + -190467.53947576138, + null, + -190343.14623174802, + -190665.37836808496, + null, + -190343.14623174802, + -190403.65729820394, + null, + -190343.14623174802, + -190572.92069195924, + null, + -190343.14623174802, + -190754.12935394185, + null, + -190343.14623174802, + -190391.5963820497, + null, + -190343.14623174802, + -190718.86652711377, + null, + -190343.14623174802, + -190588.72561153484, + null, + -189609.91441884363, + -189830.10127174208, + null, + -189609.91441884363, + -189867.38685376107, + null, + -189229.82297158477, + -189148.04361715776, + null, + -189229.82297158477, + -189136.8179316544, + null, + -189294.14527588105, + -189454.19264113074, + null, + -189294.14527588105, + -189592.2520227959, + null, + -189496.41348015732, + -189764.96604252383, + null, + -189577.41239445566, + -189136.14569979953, + null, + -189577.41239445566, + -189169.39385335796, + null, + -189744.80163897088, + -189852.88038329795, + null, + -189744.80163897088, + -189957.89952853756, + null, + -189717.16898665222, + -189901.24368659954, + null, + -189771.05744312212, + -189910.4178996724, + null, + -189771.05744312212, + -189999.55141092496, + null, + -189288.86354766923, + -189360.40048394818, + null, + -189288.86354766923, + -189540.12165547063, + null, + -189288.86354766923, + -189471.1548799475, + null, + -189288.86354766923, + -189457.7383592478, + null, + -189288.86354766923, + -189492.84011594678, + null, + -189288.86354766923, + -188160.71996131094, + null, + -189791.60417761785, + -189930.6622301241, + null, + -189791.60417761785, + -190012.9729410129, + null, + -189567.91347630875, + -189410.9334851875, + null, + -189410.9334851875, + -189643.8250184186, + null, + -189378.6089809849, + -189410.9334851875, + null, + -189410.9334851875, + -189606.224952288, + null, + -188624.00866552212, + -189410.9334851875, + null, + -189178.14899455837, + -189410.9334851875, + null, + -189116.88474309855, + -188944.92574917976, + null, + -189116.88474309855, + -189093.52694899408, + null, + -189175.60345293803, + -189100.93180802726, + null, + -189175.60345293803, + -189069.94292362832, + null, + -189175.60345293803, + -189166.93269470712, + null, + -189586.963087114, + -189710.98534421215, + null, + -189586.963087114, + -189909.66210198548, + null, + -189586.963087114, + -189800.87833115685, + null, + -189188.60469326557, + -189358.71097730752, + null, + -189188.60469326557, + -189619.61208740424, + null, + -188162.64085287615, + -188372.40414795655, + null, + -188162.64085287615, + -188307.97072896184, + null, + -188162.64085287615, + -188449.08216930606, + null, + -188162.64085287615, + -188896.90746870203, + null, + -188162.64085287615, + -188488.92438829996, + null, + -188162.64085287615, + -188410.6282062072, + null, + -188162.64085287615, + -188423.00742554842, + null, + -188162.64085287615, + -188342.75560755408, + null, + -188162.64085287615, + -188474.5390069502, + null, + -188162.64085287615, + -188893.76273750738, + null, + -188162.64085287615, + -188383.44348380194, + null, + -188162.64085287615, + -188919.52659774327, + null, + -188162.64085287615, + -188450.24143295805, + null, + -188162.64085287615, + -188339.98623365132, + null, + -188162.64085287615, + -188920.24503447048, + null, + -189548.11338182713, + -189749.7157783643, + null, + -189548.11338182713, + -189626.70216868905, + null, + -189548.11338182713, + -189954.8799487552, + null, + -189548.11338182713, + -189930.46843261595, + null, + -189105.4292626352, + -189224.8723192654, + null, + -189105.4292626352, + -189437.85306139573, + null, + -188962.863330971, + -189128.61828617012, + null, + -188860.5081701973, + -189076.00888676112, + null, + -189022.6764695094, + -189168.76930062557, + null, + -189022.6764695094, + -189229.93966087615, + null, + -189022.6764695094, + -189057.92180438363, + null, + -189022.6764695094, + -189159.80594753037, + null, + -188934.8216489112, + -189168.76930062557, + null, + -189023.35265461885, + -189168.76930062557, + null, + -189023.35265461885, + -189221.1271062979, + null, + -189023.35265461885, + -189275.09899359176, + null, + -189224.35755215236, + -189029.3114905367, + null, + -189224.35755215236, + -189796.53172043787, + null, + -189224.35755215236, + -189017.94980528016, + null, + -189224.35755215236, + -189179.26724934444, + null, + -188984.99469066437, + -189029.3114905367, + null, + -188984.99469066437, + -189209.43422944171, + null, + -188693.81198834366, + -188434.3714432306, + null, + -188693.81198834366, + -188735.4427305461, + null, + -188693.81198834366, + -188852.55618795755, + null, + -188415.0669334945, + -188648.26563955305, + null, + -188415.0669334945, + -188750.48177969156, + null, + -188415.0669334945, + -188633.9067049795, + null, + -189349.87620961215, + -190226.99435288858, + null, + -189349.87620961215, + -190194.37548906854, + null, + -188810.17734219952, + -188963.22418785066, + null, + -188810.17734219952, + -188921.29656857427, + null, + -188810.17734219952, + -189021.56662713946, + null, + -188810.17734219952, + -188962.55017746423, + null, + -188810.17734219952, + -188997.33770734456, + null, + -188944.92574917976, + -189607.57795842667, + null, + -188941.78166669174, + -189023.01935678284, + null, + -189742.2319582998, + -190399.4126354747, + null, + -189742.2319582998, + -190391.5963820497, + null, + -189742.2319582998, + -190261.8156757386, + null, + -189742.2319582998, + -190001.24087948908, + null, + -189965.4221631259, + -190205.95046477395, + null, + -189965.4221631259, + -190299.55174747857, + null, + -189965.4221631259, + -190144.7648684372, + null, + -189965.4221631259, + -190362.44164700346, + null, + -189965.4221631259, + -190189.73769569694, + null, + -189965.4221631259, + -190267.11271629602, + null, + -189965.4221631259, + -190205.97081794371, + null, + -189965.4221631259, + -190270.2885900102, + null, + -189965.4221631259, + -190214.73308856742, + null, + -189965.4221631259, + -190326.65557216902, + null, + -189965.4221631259, + -190414.88888080535, + null, + -189965.4221631259, + -190199.32333034926, + null, + -189965.4221631259, + -190282.24854628212, + null, + -189965.4221631259, + -190312.73737813003, + null, + -189965.4221631259, + -189930.46843261595, + null, + -188707.0214085327, + -188873.8626963419, + null, + -188707.0214085327, + -188920.2684739792, + null, + -188707.0214085327, + -188858.41273348493, + null, + -188855.1713664295, + -189148.04361715776, + null, + -188855.1713664295, + -189136.8179316544, + null, + -188374.52176348033, + -188379.0378458674, + null, + -188374.52176348033, + -188512.27456350578, + null, + -188046.43068903935, + -187633.5780712459, + null, + -188584.11655148058, + -188638.8220475936, + null, + -188921.07600126017, + -189136.14569979953, + null, + -188921.07600126017, + -189169.39385335796, + null, + -188921.07600126017, + -188851.4444004593, + null, + -188921.07600126017, + -188856.0250278521, + null, + -188921.07600126017, + -188992.6676338556, + null, + -188465.50594804902, + -188567.034494689, + null, + -188465.50594804902, + -188562.145978013, + null, + -188491.91213643632, + -188709.5724031946, + null, + -188491.91213643632, + -188502.3898432576, + null, + -188491.91213643632, + -188583.43301745184, + null, + -188491.91213643632, + -188633.37897797985, + null, + -188423.88162786607, + -188513.3287395779, + null, + -188423.88162786607, + -188486.02304199967, + null, + -189249.9264656677, + -189455.44381807276, + null, + -189249.9264656677, + -188895.9417109116, + null, + -189249.9264656677, + -189700.65258162987, + null, + -189249.9264656677, + -189371.6910585, + null, + -189249.9264656677, + -189511.31796618277, + null, + -189249.9264656677, + -189314.42297487025, + null, + -189249.9264656677, + -189274.3071301368, + null, + -189249.9264656677, + -189387.76225415204, + null, + -189249.9264656677, + -189380.90819896417, + null, + -189249.9264656677, + -189390.8243694251, + null, + -189249.9264656677, + -189084.5439991584, + null, + -188453.23945302286, + -188565.08660170887, + null, + -188453.23945302286, + -188585.1092319325, + null, + -188453.23945302286, + -188535.84972231102, + null, + -188453.23945302286, + -188428.1636080926, + null, + -188453.23945302286, + -188480.76720246498, + null, + -188453.23945302286, + -188497.23442699056, + null, + -188453.23945302286, + -188477.61159047254, + null, + -188453.23945302286, + -188560.29997725625, + null, + -188453.23945302286, + -188469.464678068, + null, + -188453.23945302286, + -188412.24447188206, + null, + -188248.20895894684, + -188400.34769697144, + null, + -188248.20895894684, + -188326.83417554572, + null, + -188248.20895894684, + -188472.80747925534, + null, + -188248.20895894684, + -188371.0306914976, + null, + -187920.62374587829, + -188248.20895894684, + null, + -188248.20895894684, + -188439.41147707586, + null, + -188248.20895894684, + -188383.06499636912, + null, + -187858.44732430877, + -188248.20895894684, + null, + -188248.20895894684, + -188337.7090878203, + null, + -188248.20895894684, + -188460.25442393898, + null, + -188248.20895894684, + -187880.4124846486, + null, + -188248.20895894684, + -188478.67324954533, + null, + -188248.20895894684, + -188414.5465883974, + null, + -188248.20895894684, + -188506.02275688382, + null, + -189083.05589016425, + -189533.1271418779, + null, + -189083.05589016425, + -189305.03128895749, + null, + -189083.05589016425, + -189500.05954191848, + null, + -188881.18116724692, + -189148.04361715776, + null, + -188881.18116724692, + -189136.8179316544, + null, + -188752.26508317536, + -189136.14569979953, + null, + -188752.26508317536, + -189169.39385335796, + null, + -190353.63610682223, + -190614.02637885386, + null, + -190284.40860835864, + -190408.6976223534, + null, + -190512.74405530427, + -190772.61217766535, + null, + -190512.74405530427, + -190745.8656578664, + null, + -190567.27156873213, + -190782.00210851693, + null, + -190567.27156873213, + -190713.68513502888, + null, + -190567.27156873213, + -190769.81695999636, + null, + -190567.27156873213, + -190574.05181437873, + null, + -190567.27156873213, + -190721.68694858113, + null, + -190567.27156873213, + -190713.55530098, + null, + -190567.27156873213, + -190549.81716892275, + null, + -190521.19493654618, + -190715.47477903482, + null, + -190521.19493654618, + -190587.36694516958, + null, + -190521.19493654618, + -190653.71505993314, + null, + -190521.19493654618, + -190733.79506238594, + null, + -190521.19493654618, + -190759.5937266005, + null, + -190521.19493654618, + -190665.1557136483, + null, + -190290.13307072833, + -190521.19493654618, + null, + -189462.78633118852, + -189041.39569706662, + null, + -189462.78633118852, + -189551.6404319715, + null, + -189462.78633118852, + -189175.80872704333, + null, + -189462.78633118852, + -188999.41125879882, + null, + -189462.78633118852, + -189583.71120295482, + null, + -189190.69568859632, + -189495.0923323141, + null, + -189495.0923323141, + -189736.44355789217, + null, + -188818.68200287974, + -189495.0923323141, + null, + -189822.36786467835, + -189533.1271418779, + null, + -189822.36786467835, + -189666.5672120893, + null, + -189822.36786467835, + -189500.05954191848, + null, + -189822.36786467835, + -189721.16100992335, + null, + -190528.4811711618, + -190794.8754551881, + null, + -190528.4811711618, + -190767.60153448136, + null, + -190528.4811711618, + -190528.3678224796, + null, + -190459.28418449903, + -190527.9985717709, + null, + -190459.28418449903, + -190651.3096880947, + null, + -190549.83564310966, + -190850.62628139483, + null, + -190549.83564310966, + -190767.53942386774, + null, + -190108.53169201384, + -189796.53172043787, + null, + -190108.53169201384, + -190178.30316847924, + null, + -189701.9396398646, + -189168.76930062557, + null, + -189701.9396398646, + -189906.9288545038, + null, + -190261.65948142193, + -190398.25884468752, + null, + -189567.91347630875, + -189812.65902349033, + null, + -189812.65902349033, + -189902.1572291747, + null, + -189812.65902349033, + -189756.1793300799, + null, + -189378.6089809849, + -189812.65902349033, + null, + -192729.44916755898, + -192960.00724960802, + null, + -192729.44916755898, + -193032.32651674768, + null, + -192729.44916755898, + -194526.8572523203, + null, + -192729.44916755898, + -192970.64111818164, + null, + -192729.44916755898, + -194540.51188655684, + null, + -189998.17792497025, + -190076.97029283058, + null, + -189998.17792497025, + -189700.65258162987, + null, + -189950.47607682366, + -189596.39277355725, + null, + -190422.55995988214, + -190578.37958836104, + null, + -190422.55995988214, + -190633.09861453043, + null, + -189475.00799780615, + -189093.52694899408, + null, + -188810.17734219952, + -189475.00799780615, + null, + -189475.00799780615, + -189340.40098509513, + null, + -189475.00799780615, + -189127.7614248225, + null, + -189475.00799780615, + -189612.56701675983, + null, + -189475.00799780615, + -189584.85448124894, + null, + -189475.00799780615, + -189639.9730804576, + null, + -189475.00799780615, + -189726.2893258764, + null, + -189475.00799780615, + -189663.43940283198, + null, + -189475.00799780615, + -189589.25507494135, + null, + -189475.00799780615, + -189373.96438282065, + null, + -189475.00799780615, + -189614.62635399186, + null, + -189475.00799780615, + -189158.38902759828, + null, + -188944.92574917976, + -189475.00799780615, + null, + -189475.00799780615, + -189507.12134144705, + null, + -189475.00799780615, + -189695.59469139914, + null, + -189475.00799780615, + -189747.88347755812, + null, + -189475.00799780615, + -189662.8350739805, + null, + -189539.44815716433, + -189093.52694899408, + null, + -189539.44815716433, + -189704.61279866777, + null, + -189539.44815716433, + -189127.7614248225, + null, + -189539.44815716433, + -189589.25507494135, + null, + -189539.44815716433, + -189158.38902759828, + null, + -190286.8293532656, + -190468.9495086276, + null, + -190510.04082654967, + -190691.40485899913, + null, + -190510.04082654967, + -190602.30273507602, + null, + -190510.04082654967, + -190690.3495420362, + null, + -190510.04082654967, + -190742.67043381042, + null, + -190510.04082654967, + -190516.9103386334, + null, + -188268.17237905652, + -187411.8004731311, + null, + -188268.17237905652, + -187384.85440843413, + null, + -188268.17237905652, + -187397.49483843523, + null, + -188268.17237905652, + -187389.06402282708, + null, + -188268.17237905652, + -187408.57036686965, + null, + -189701.77739699613, + -189110.24543217203, + null, + -190449.5219220677, + -190625.0036216086, + null, + -190449.5219220677, + -190467.63078097987, + null, + -190449.5219220677, + -190711.89591260994, + null, + -190479.13829348728, + -190681.55111231707, + null, + -190479.13829348728, + -190714.2334944442, + null, + -190479.13829348728, + -190728.0443911054, + null, + -190341.1859679305, + -190260.22221289267, + null, + -190470.3866958542, + -190672.9365789004, + null, + -190470.3866958542, + -190463.41389632598, + null, + -190470.3866958542, + -190574.5566659715, + null, + -190470.3866958542, + -190503.87993822052, + null, + -190470.3866958542, + -190597.1290096374, + null, + -190475.05501335283, + -190738.17937622103, + null, + -190475.05501335283, + -190736.14123626714, + null, + -188662.78581283378, + -189136.14569979953, + null, + -188662.78581283378, + -189169.39385335796, + null, + -188662.78581283378, + -188851.4444004593, + null, + -188662.78581283378, + -188856.0250278521, + null, + -187110.75257883506, + -186403.77082742343, + null, + -188712.68604789645, + -189168.76930062557, + null, + -188712.68604789645, + -188844.49537900015, + null, + -188167.60811296935, + -188142.36563635623, + null, + -188068.89540782082, + -188167.60811296935, + null, + -188167.60811296935, + -188171.8323130677, + null, + -188167.60811296935, + -188265.23932553243, + null, + -188167.60811296935, + -188360.45872868263, + null, + -188167.60811296935, + -188123.85049620818, + null, + -188138.17806449422, + -188167.60811296935, + null, + -188167.60811296935, + -188174.51164152424, + null, + -188135.7951117508, + -188167.60811296935, + null, + -188038.4334288893, + -188167.60811296935, + null, + -188129.3743830729, + -188167.60811296935, + null, + -188126.67429510137, + -188167.60811296935, + null, + -189054.24101899815, + -189352.91617699675, + null, + -189054.24101899815, + -189293.61601165356, + null, + -189054.24101899815, + -189198.92299734885, + null, + -189054.24101899815, + -189188.6211538655, + null, + -189054.24101899815, + -189248.80812324327, + null, + -188703.7958482956, + -188903.04749914605, + null, + -188700.76734194253, + -189175.80872704333, + null, + -188700.76734194253, + -188991.53960870573, + null, + -189058.78733204654, + -189277.4028354314, + null, + -189058.78733204654, + -189224.98825033373, + null, + -189058.78733204654, + -189320.46260078246, + null, + -189058.78733204654, + -189230.83393577425, + null, + -189058.78733204654, + -189282.98979945903, + null, + -185748.77931932142, + -184991.80627054124, + null, + -185748.77931932142, + -185674.87055856248, + null, + -189240.3648502884, + -189626.70216868905, + null, + -189240.3648502884, + -189767.3376516928, + null, + -189240.3648502884, + -189954.8799487552, + null, + -189240.3648502884, + -189930.46843261595, + null, + -186570.1920070612, + -186429.02907093416, + null, + -186570.1920070612, + -186471.6273977257, + null, + -186570.1920070612, + -186557.56944473545, + null, + -186570.1920070612, + -186373.05814148398, + null, + -186570.1920070612, + -186421.09165944587, + null, + -186570.1920070612, + -186389.60376488912, + null, + -186570.1920070612, + -186551.00981625286, + null, + -186570.1920070612, + -186485.36466106286, + null, + -186570.1920070612, + -186416.7791946597, + null, + -186570.1920070612, + -186425.80797049435, + null, + -186570.1920070612, + -186507.88074432584, + null, + -186570.1920070612, + -186483.2058758233, + null, + -186570.1920070612, + -186446.32894291877, + null, + -186570.1920070612, + -186578.13349791485, + null, + -186570.1920070612, + -185281.13137164246, + null, + -188094.559535361, + -188294.34254262215, + null, + -188714.47848400145, + -188903.12131841254, + null, + -188749.09654230482, + -188974.1903070274, + null, + -188749.09654230482, + -189013.00556954916, + null, + -188749.09654230482, + -188990.05786341277, + null, + -189030.03347002508, + -189283.6558680965, + null, + -189030.03347002508, + -189156.776198667, + null, + -189030.03347002508, + -189017.94980528016, + null, + -189030.03347002508, + -189281.15801555838, + null, + -189030.03347002508, + -189229.38188445318, + null, + -189030.03347002508, + -189051.82394498357, + null, + -189030.03347002508, + -189179.26724934444, + null, + -188623.43984532243, + -188752.90976222482, + null, + -188960.00928668556, + -189268.83368658138, + null, + -188960.00928668556, + -189109.80505218275, + null, + -188960.00928668556, + -189263.46207696153, + null, + -188823.15900221813, + -189443.79748188236, + null, + -189190.69568859632, + -189443.79748188236, + null, + -189443.79748188236, + -189794.93841442053, + null, + -189443.79748188236, + -189607.57795842667, + null, + -189443.79748188236, + -189757.03297088, + null, + -189613.4274864384, + -189607.57795842667, + null, + -189068.79735651254, + -188650.65877533983, + null, + -189068.79735651254, + -188629.10826848733, + null, + -189068.79735651254, + -188615.4770908332, + null, + -190220.04026000245, + -190474.83424193788, + null, + -190220.04026000245, + -190404.0846714618, + null, + -189448.3993228098, + -188896.90746870203, + null, + -189448.3993228098, + -188893.76273750738, + null, + -189448.3993228098, + -189725.66534082082, + null, + -189448.3993228098, + -188919.52659774327, + null, + -189448.3993228098, + -188920.24503447048, + null, + -190206.09219721612, + -190387.365071224, + null, + -190206.09219721612, + -190322.7145666639, + null, + -190341.17256340745, + -190610.7397637846, + null, + -190341.17256340745, + -190530.50822368442, + null, + -190341.17256340745, + -190565.46212922395, + null, + -190341.17256340745, + -190634.5753037945, + null, + -189861.2742767397, + -189764.96604252383, + null, + -190227.47044230253, + -190356.45986323425, + null, + -190227.47044230253, + -190391.1380994609, + null, + -190227.47044230253, + -190429.80943282603, + null, + -190186.66872072185, + -190464.96139017996, + null, + -190191.87720016416, + -190289.1133185594, + null, + -190085.2874754612, + -190367.6186600842, + null, + -190232.32595297435, + -190422.79258775173, + null, + -190184.90518216093, + -190454.50715953342, + null, + -190623.42617965583, + -190902.48296050128, + null, + -190623.42617965583, + -190846.00728882258, + null, + -190623.42617965583, + -190768.94184870122, + null, + -190623.42617965583, + -190917.1501459411, + null, + -190623.42617965583, + -190904.19225035308, + null, + -190623.42617965583, + -190869.11155008027, + null, + -190623.42617965583, + -190847.3760969188, + null, + -190623.42617965583, + -190833.92831575198, + null, + -190772.98680974997, + -190914.59919810772, + null, + -190772.98680974997, + -191003.5049998549, + null, + -190772.98680974997, + -190987.6662291279, + null, + -190772.98680974997, + -190918.1130413622, + null, + -190772.98680974997, + -190978.42508732385, + null, + -190772.98680974997, + -191045.33010704067, + null, + -190772.98680974997, + -191118.3344811227, + null, + -190772.98680974997, + -191028.42716404388, + null, + -190772.98680974997, + -191087.25231874056, + null, + -190772.98680974997, + -191063.94152141083, + null, + -189014.93254325056, + -188557.4596234686, + null, + -189014.93254325056, + -188502.3898432576, + null, + -189014.93254325056, + -188505.68688054534, + null, + -189014.93254325056, + -188469.82315365504, + null, + -189014.93254325056, + -188505.51258337646, + null, + -190242.87904319484, + -190533.19955587725, + null, + -190242.87904319484, + -190467.77931488148, + null, + -190489.49488075302, + -190736.1226796714, + null, + -190489.49488075302, + -190650.8583482665, + null, + -190489.49488075302, + -190695.986401139, + null, + -190489.49488075302, + -190705.99136849152, + null, + -190489.49488075302, + -190727.1717134085, + null, + -190489.49488075302, + -190775.09420707048, + null, + -189279.31349246096, + -189526.2394383325, + null, + -189279.31349246096, + -189057.81546602, + null, + -188609.42242236514, + -189279.31349246096, + null, + -189028.54304697987, + -189181.60084101505, + null, + -189028.54304697987, + -189185.06032392784, + null, + -189028.54304697987, + -188957.68048442173, + null, + -189028.54304697987, + -189112.62460586315, + null, + -189028.54304697987, + -188707.19411003264, + null, + -189028.54304697987, + -188699.98510029077, + null, + -189028.54304697987, + -188657.22598614308, + null, + -189028.54304697987, + -188691.9863820846, + null, + -189028.54304697987, + -188676.66102464776, + null, + -189028.54304697987, + -188680.00271065094, + null, + -189028.54304697987, + -188675.42898269245, + null, + -189028.54304697987, + -188716.07523902692, + null, + -189972.24185554104, + -190085.7072353487, + null, + -190133.02174061345, + -190308.5994523768, + null, + -190133.02174061345, + -190398.8378197505, + null, + -190152.09510136288, + -190090.6958227699, + null, + -190152.09510136288, + -190400.7504096945, + null, + -189802.5411068607, + -189596.39277355725, + null, + -189342.87589914515, + -189466.40250005975, + null, + -189342.87589914515, + -188816.86933252332, + null, + -189342.87589914515, + -189511.31796618277, + null, + -189342.87589914515, + -188895.9417109116, + null, + -190335.55788041826, + -190594.37588089012, + null, + -190335.55788041826, + -190621.45203308872, + null, + -190335.55788041826, + -190572.00478016632, + null, + -190558.09229834663, + -190677.74061826518, + null, + -190558.09229834663, + -190772.50006996628, + null, + -190558.09229834663, + -190777.950647815, + null, + -190558.09229834663, + -190754.12935394185, + null, + -190558.09229834663, + -190588.72561153484, + null, + -190348.92129023964, + -190399.4126354747, + null, + -190348.92129023964, + -190572.92069195924, + null, + -190348.92129023964, + -190391.5963820497, + null, + -190348.92129023964, + -190643.4977867746, + null, + -189476.29985464577, + -189148.04361715776, + null, + -189476.29985464577, + -189136.8179316544, + null, + -190078.20561894446, + -190238.15773232863, + null, + -189953.83628432205, + -190074.67463959943, + null, + -190120.31875176344, + -190367.91326419555, + null, + -190159.9606195649, + -190399.54829885028, + null, + -190159.9606195649, + -190275.09228250064, + null, + -190036.82480240372, + -190306.22405632425, + null, + -190207.22081163406, + -190356.45986323425, + null, + -190207.22081163406, + -190391.1380994609, + null, + -190207.22081163406, + -190429.80943282603, + null, + -189987.67952550904, + -190162.3371470009, + null, + -190139.95443899676, + -190432.7873200079, + null, + -187718.59193484212, + -188283.400572689, + null, + -187109.55145493208, + -188283.400572689, + null, + -187687.3081902085, + -188283.400572689, + null, + -187630.12975349987, + -188283.400572689, + null, + -190271.7928245326, + -190532.19121997847, + null, + -190271.7928245326, + -190494.93518483994, + null, + -190271.7928245326, + -190497.28396928875, + null, + -190391.556711525, + -190620.24351137725, + null, + -190391.556711525, + -190664.86329969479, + null, + -190391.556711525, + -190574.09918967442, + null, + -190391.556711525, + -190591.03375007253, + null, + -190391.556711525, + -190520.7869251755, + null, + -190159.25461435507, + -190351.42834427793, + null, + -190159.25461435507, + -190301.86472867473, + null, + -190150.01777997345, + -190168.79581539883, + null, + -190150.01777997345, + -190379.19934607125, + null, + -190050.76105059695, + -189629.98277226143, + null, + -190050.76105059695, + -190296.38287072422, + null, + -190016.05202348984, + -189629.98277226143, + null, + -190016.05202348984, + -190225.95395946506, + null, + -190016.05202348984, + -190265.65052037945, + null, + -190016.05202348984, + -190191.99887281418, + null, + -190016.05202348984, + -190178.30316847924, + null, + -190016.05202348984, + -190296.38287072422, + null, + -190016.05202348984, + -190181.16020360703, + null, + -190016.05202348984, + -190253.12505174227, + null, + -190016.05202348984, + -189142.84215571234, + null, + -189455.41921722554, + -189168.76930062557, + null, + -189852.04204695, + -189596.39277355725, + null, + -189837.30541417195, + -189596.39277355725, + null, + -190073.05198879744, + -190294.27227855046, + null, + -190073.05198879744, + -190268.58159355848, + null, + -187920.62374587829, + -188518.20269654013, + null, + -187857.75124697632, + -188518.20269654013, + null, + -188518.20269654013, + -188472.80747925534, + null, + -187760.40303329699, + -188518.20269654013, + null, + -190060.64739146762, + -190340.03937897002, + null, + -189906.78269750674, + -189884.18087312218, + null, + -189906.78269750674, + -190049.21420073678, + null, + -189906.78269750674, + -190111.19686576354, + null, + -189977.09666591295, + -190243.76439905912, + null, + -189869.86826830884, + -190016.1087708468, + null, + -189967.10530352197, + -189629.98277226143, + null, + -189967.10530352197, + -190165.94445480712, + null, + -189967.10530352197, + -190178.30316847924, + null, + -189967.10530352197, + -190306.18105336872, + null, + -189967.10530352197, + -190296.38287072422, + null, + -189967.10530352197, + -190253.12505174227, + null, + -189967.10530352197, + -189142.84215571234, + null, + -189967.10530352197, + -190346.03752427932, + null, + -189967.10530352197, + -189619.67419571467, + null, + -189429.90513536637, + -189168.76930062557, + null, + -189921.33171368486, + -190167.53475611532, + null, + -188696.9637922992, + -188655.21405929135, + null, + -188609.42242236514, + -188696.9637922992, + null, + -187788.15822833957, + -188696.9637922992, + null, + -190157.63685626572, + -190315.310468642, + null, + -190157.63685626572, + -190379.6458049226, + null, + -190157.63685626572, + -190388.22574712188, + null, + -190157.63685626572, + -190489.64234467523, + null, + -188719.43960811262, + -189077.9073416021, + null, + -188719.43960811262, + -188063.1798418329, + null, + -188719.43960811262, + -188001.539550981, + null, + -188719.43960811262, + -188024.4130746416, + null, + -188719.43960811262, + -189148.47818539297, + null, + -188719.43960811262, + -187993.0192754519, + null, + -188719.43960811262, + -189076.27522030505, + null, + -189850.42517754433, + -190096.82864513667, + null, + -189820.92311716045, + -189867.38685376107, + null, + -189820.92311716045, + -189830.10127174208, + null, + -190176.96097381625, + -190440.0090447352, + null, + -190176.96097381625, + -190435.29393371142, + null, + -190176.96097381625, + -190435.58900957322, + null, + -190176.96097381625, + -190429.5710330078, + null, + -191159.10117676161, + -192467.37989371552, + null, + -191159.10117676161, + -191322.5198972912, + null, + -191159.10117676161, + -191383.64086574878, + null, + -190189.18840931443, + -190438.21639421294, + null, + -190189.18840931443, + -190236.33574161452, + null, + -190189.18840931443, + -190267.11271629602, + null, + -190189.18840931443, + -190380.63617074298, + null, + -190189.18840931443, + -190401.29010947546, + null, + -190189.18840931443, + -190331.29312605906, + null, + -190189.18840931443, + -190559.2179529797, + null, + -190189.18840931443, + -190494.5809685014, + null, + -190189.18840931443, + -190205.97081794371, + null, + -190189.18840931443, + -189767.3376516928, + null, + -190189.18840931443, + -190527.79502621465, + null, + -190189.18840931443, + -189954.8799487552, + null, + -190189.18840931443, + -189930.46843261595, + null, + -189995.43347064062, + -190152.69203156038, + null, + -189420.0485446386, + -189520.9274802002, + null, + -189420.0485446386, + -189169.39385335796, + null, + -190029.46210824672, + -190148.86085124593, + null, + -190029.46210824672, + -190346.98044319588, + null, + -190125.23168976346, + -190273.92525879134, + null, + -190125.23168976346, + -190362.20891689835, + null, + -190125.23168976346, + -190211.2410560863, + null, + -190125.23168976346, + -190293.35532104713, + null, + -189369.10856700627, + -189532.25620878863, + null, + -189369.10856700627, + -189522.88266085237, + null, + -189369.10856700627, + -189051.82394498357, + null, + -190229.02945436694, + -190499.65023009953, + null, + -190229.02945436694, + -190399.7332476172, + null, + -190229.02945436694, + -190462.91341077103, + null, + -190229.02945436694, + -190497.98956719536, + null, + -190229.02945436694, + -190271.89947805196, + null, + -189495.16633347023, + -189606.224952288, + null, + -189567.91347630875, + -189495.16633347023, + null, + -189495.16633347023, + -189731.91642502818, + null, + -189495.16633347023, + -189365.14372923566, + null, + -189495.16633347023, + -189627.2693908589, + null, + -189495.16633347023, + -189450.8103449795, + null, + -189495.16633347023, + -189878.37777838547, + null, + -189495.16633347023, + -189606.4880574026, + null, + -189495.16633347023, + -189671.94160478926, + null, + -189495.16633347023, + -189753.5036607848, + null, + -189495.16633347023, + -189792.539377009, + null, + -189495.16633347023, + -189709.64844401702, + null, + -189495.16633347023, + -189709.42207181625, + null, + -189495.16633347023, + -189560.8040860744, + null, + -189495.16633347023, + -189639.18026060294, + null, + -189495.16633347023, + -189579.70324669065, + null, + -189495.16633347023, + -189605.1403288076, + null, + -189495.16633347023, + -189479.9373604124, + null, + -189378.6089809849, + -189495.16633347023, + null, + -189495.16633347023, + -189676.83534590385, + null, + -189495.16633347023, + -189809.71999294424, + null, + -189495.16633347023, + -189641.32627110553, + null, + -189495.16633347023, + -189671.34718930145, + null, + -189495.16633347023, + -189694.57212468094, + null, + -189495.16633347023, + -189642.2465612403, + null, + -189495.16633347023, + -189589.32744394697, + null, + -189495.16633347023, + -189692.93760685052, + null, + -189238.12878373484, + -189495.16633347023, + null, + -189495.16633347023, + -189782.31803998386, + null, + -189495.16633347023, + -189551.69582469424, + null, + -189495.16633347023, + -189632.7736323519, + null, + -189178.14899455837, + -189495.16633347023, + null, + -188624.00866552212, + -189495.16633347023, + null, + -189495.16633347023, + -189649.24507055973, + null, + -189295.9917839161, + -189551.3936761994, + null, + -190114.3473213471, + -190415.83660361098, + null, + -190114.3473213471, + -190295.38448827688, + null, + -190114.3473213471, + -190278.06551487523, + null, + -190368.81587279582, + -190602.566736292, + null, + -190368.81587279582, + -190772.50006996628, + null, + -190368.81587279582, + -190754.12935394185, + null, + -190368.81587279582, + -190582.58999662191, + null, + -189901.64680176062, + -189148.04361715776, + null, + -189901.64680176062, + -189136.8179316544, + null, + -190316.76887405966, + -190402.49114878004, + null, + -190316.76887405966, + -190640.8143948027, + null, + -190316.76887405966, + -190434.0622041177, + null, + -190316.76887405966, + -190396.1118665038, + null, + -190316.76887405966, + -190633.88684340264, + null, + -189795.9680877463, + -190033.28449762813, + null, + -189795.9680877463, + -189931.84776524975, + null, + -189795.9680877463, + -189984.33860279026, + null, + -189795.9680877463, + -189914.35806747197, + null, + -189795.9680877463, + -189913.8177868138, + null, + -189795.9680877463, + -190053.69755855628, + null, + -189795.9680877463, + -189915.13218034807, + null, + -189795.9680877463, + -189840.37838709482, + null, + -189795.9680877463, + -190003.0113512847, + null, + -189795.9680877463, + -189865.52199599275, + null, + -189795.9680877463, + -189940.86916101858, + null, + -189399.04279996626, + -189527.17241938802, + null, + -189460.44281266938, + -189574.29060602633, + null, + -189460.44281266938, + -189631.36291813108, + null, + -188391.67478690643, + -188579.02593842897, + null, + -188391.67478690643, + -188618.87056923824, + null, + -188391.67478690643, + -188604.32311363696, + null, + -188975.4648828089, + -189090.5718994998, + null, + -188975.4648828089, + -189142.3179762273, + null, + -188975.4648828089, + -189107.25327854278, + null, + -188975.4648828089, + -189144.62965207951, + null, + -188975.4648828089, + -188857.1383443916, + null, + -188975.4648828089, + -189187.28747484853, + null, + -189027.84875586937, + -189269.54448270632, + null, + -189027.84875586937, + -189159.14568024248, + null, + -189027.84875586937, + -189138.2076064306, + null, + -188894.1604885968, + -189138.2076064306, + null, + -188258.98268007717, + -188142.36563635623, + null, + -188258.98268007717, + -188076.45815998927, + null, + -188258.98268007717, + -188219.55657425546, + null, + -188038.4334288893, + -188258.98268007717, + null, + -188258.98268007717, + -188265.23932553243, + null, + -188258.98268007717, + -188171.8323130677, + null, + -188258.98268007717, + -188123.85049620818, + null, + -189054.1850300602, + -189365.14372923566, + null, + -189054.1850300602, + -189270.2207259438, + null, + -189173.28782093368, + -189596.39277355725, + null, + -188857.1383443916, + -189210.2926095509, + null, + -188857.1383443916, + -188900.63432967928, + null, + -188857.1383443916, + -188932.77198095532, + null, + -188857.1383443916, + -189022.40118831143, + null, + -189144.62965207951, + -189307.27750116092, + null, + -189144.62965207951, + -189338.82125386308, + null, + -189144.62965207951, + -189289.75729540995, + null, + -189144.62965207951, + -189274.3071301368, + null, + -189144.62965207951, + -189349.08753127913, + null, + -189144.62965207951, + -188991.53960870573, + null, + -189144.62965207951, + -189239.27466604387, + null, + -189144.62965207951, + -189238.41421960684, + null, + -188904.83506058183, + -189069.94292362832, + null, + -188904.83506058183, + -189100.93180802726, + null, + -189366.89830297738, + -189412.9721563485, + null, + -189366.89830297738, + -189524.31705901856, + null, + -189366.89830297738, + -189559.7460368871, + null, + -189366.89830297738, + -189476.0747606827, + null, + -189366.89830297738, + -189570.0168598492, + null, + -189366.89830297738, + -189700.65258162987, + null, + -189366.89830297738, + -189495.32258851867, + null, + -189366.89830297738, + -189210.2926095509, + null, + -189366.89830297738, + -189380.90819896417, + null, + -185753.54811495807, + -187142.83156573743, + null, + -188470.49516960207, + -188655.21405929135, + null, + -188470.49516960207, + -188665.65407218394, + null, + -188609.42242236514, + -188470.49516960207, + null, + -188152.2857732802, + -188215.8616615981, + null, + -188152.2857732802, + -188199.75814143405, + null, + -188152.2857732802, + -188123.16757309233, + null, + -188538.57571479923, + -188542.53301547328, + null, + -188538.57571479923, + -188583.50114275728, + null, + -188538.57571479923, + -188646.66744792875, + null, + -188538.57571479923, + -188627.52790190434, + null, + -188538.57571479923, + -188624.96953674362, + null, + -188538.57571479923, + -188680.12739772093, + null, + -188538.57571479923, + -188603.88153743022, + null, + -188538.57571479923, + -188717.93046449387, + null, + -188538.57571479923, + -188701.2044515723, + null, + -188538.57571479923, + -188667.65399479453, + null, + -188538.57571479923, + -188578.38898107715, + null, + -188172.07424796064, + -188162.49129769465, + null, + -188198.6549685184, + -188283.31886173566, + null, + -188215.8464237905, + -188344.14937816412, + null, + -188334.1310395238, + -188727.8586654595, + null, + -188242.85548355136, + -188367.9220383512, + null, + -188242.85548355136, + -188429.7191107016, + null, + -187393.45287008572, + -187513.15206802913, + null, + -187444.98398375107, + -187513.15206802913, + null, + -187212.75750088846, + -187513.15206802913, + null, + -187430.50547179487, + -187513.15206802913, + null, + -187206.375494998, + -187513.15206802913, + null, + -187142.3027271855, + -187513.15206802913, + null, + -188318.52134241172, + -188521.51772652115, + null, + -188318.52134241172, + -188573.1166522805, + null, + -188494.86160857437, + -188704.52880665567, + null, + -188494.86160857437, + -188739.29930100363, + null, + -188494.86160857437, + -188761.3774557424, + null, + -188494.86160857437, + -188771.39763015826, + null, + -188963.12094415203, + -189596.39277355725, + null, + -187905.26212099823, + -187903.75952678625, + null, + -187905.26212099823, + -187774.81306834565, + null, + -187905.26212099823, + -187895.58897193626, + null, + -187905.26212099823, + -187884.75183693127, + null, + -187905.26212099823, + -187967.06818140898, + null, + -187905.26212099823, + -187951.53704565333, + null, + -187905.26212099823, + -187825.18842699032, + null, + -187905.26212099823, + -187758.29365704863, + null, + -187905.26212099823, + -187868.23432734396, + null, + -187905.26212099823, + -187895.08998922407, + null, + -187905.26212099823, + -187890.49062902073, + null, + -187905.26212099823, + -187955.65971712122, + null, + -187905.26212099823, + -187928.10424729847, + null, + -187905.26212099823, + -187989.67935819595, + null, + -187905.26212099823, + -187874.83194403967, + null, + -187905.26212099823, + -187933.04952081686, + null, + -187905.26212099823, + -187872.3771147445, + null, + -187905.26212099823, + -187856.99852649588, + null, + -187905.26212099823, + -187848.4223915153, + null, + -187905.26212099823, + -187920.79346467156, + null, + -187905.26212099823, + -187930.77700494797, + null, + -187905.26212099823, + -187895.29714433412, + null, + -187905.26212099823, + -187920.6210824505, + null, + -187905.26212099823, + -187887.69961918573, + null, + -187905.26212099823, + -187938.61799761548, + null, + -187905.26212099823, + -187848.99743691334, + null, + -187905.26212099823, + -187796.57704625433, + null, + -187905.26212099823, + -187814.10684264067, + null, + -187905.26212099823, + -187814.4228992428, + null, + -187905.26212099823, + -188045.52612894526, + null, + -187905.26212099823, + -188018.15484515057, + null, + -187905.26212099823, + -188007.98228798102, + null, + -187905.26212099823, + -187778.2567400219, + null, + -187905.26212099823, + -187853.44280984605, + null, + -187905.26212099823, + -187973.77791186082, + null, + -187905.26212099823, + -187919.99609137262, + null, + -187905.26212099823, + -187824.0586511038, + null, + -188810.17734219952, + -188527.56986848032, + null, + -188527.56986848032, + -189127.7614248225, + null, + -188527.56986848032, + -189158.38902759828, + null, + -188265.23932553243, + -189148.04361715776, + null, + -188265.23932553243, + -189136.8179316544, + null, + -189971.44220929153, + -190307.0714778582, + null, + -189971.44220929153, + -190230.59833375542, + null, + -189971.44220929153, + -190227.19725287892, + null, + -189971.44220929153, + -190163.7718421069, + null, + -189971.44220929153, + -190243.0796793292, + null, + -189971.44220929153, + -190236.33574161452, + null, + -189971.44220929153, + -190267.11271629602, + null, + -189971.44220929153, + -190331.77132419008, + null, + -189971.44220929153, + -190331.29312605906, + null, + -189971.44220929153, + -190303.73582563325, + null, + -189971.44220929153, + -190205.97081794371, + null, + -189971.44220929153, + -190230.98203889182, + null, + -189971.44220929153, + -190163.62860191637, + null, + -189971.44220929153, + -190127.76616371796, + null, + -189971.44220929153, + -190204.7291192877, + null, + -189971.44220929153, + -190198.29510713098, + null, + -189971.44220929153, + -189954.8799487552, + null, + -189971.44220929153, + -189930.46843261595, + null, + -189971.44220929153, + -190038.48386398226, + null, + -189971.44220929153, + -190286.96585014055, + null, + -189133.4623975504, + -189285.5038908931, + null, + -189133.4623975504, + -189314.6925545715, + null, + -189133.4623975504, + -189322.54633697437, + null, + -189821.2312186076, + -190108.9160963181, + null, + -189821.2312186076, + -189919.7044719638, + null, + -189278.69115591797, + -189515.2170023079, + null, + -189451.86192620388, + -189696.5583651094, + null, + -189451.86192620388, + -189620.28942638537, + null, + -189265.49060988644, + -189470.10195977517, + null, + -190349.61880493132, + -190628.8763620154, + null, + -190349.61880493132, + -190142.2688152774, + null, + -190349.61880493132, + -190540.76510119194, + null, + -190349.61880493132, + -190565.15412975918, + null, + -190349.61880493132, + -190682.29055485144, + null, + -190349.61880493132, + -190430.80151139415, + null, + -190349.61880493132, + -190521.04186612897, + null, + -190349.61880493132, + -190646.607620274, + null, + -190349.61880493132, + -190384.46970978877, + null, + -190349.61880493132, + -190837.33673650466, + null, + -190349.61880493132, + -190630.24314895942, + null, + -190349.61880493132, + -190642.08708267138, + null, + -189771.93099297164, + -190349.61880493132, + null, + -190349.61880493132, + -190492.82676087008, + null, + -190349.61880493132, + -190796.54577428204, + null, + -190349.61880493132, + -190481.11319650357, + null, + -190349.61880493132, + -190589.098462086, + null, + -190349.61880493132, + -190401.1922366718, + null, + -190349.61880493132, + -190615.01500565186, + null, + -190349.61880493132, + -190379.40568476502, + null, + -190349.61880493132, + -190349.0282488827, + null, + -190349.61880493132, + -190228.63718259358, + null, + -190349.61880493132, + -190321.80363929408, + null, + -190349.61880493132, + -190200.62285130544, + null, + -190349.61880493132, + -190577.94552562502, + null, + -190349.61880493132, + -190476.58697762445, + null, + -190349.61880493132, + -190603.3594025055, + null, + -190349.61880493132, + -190515.7769230437, + null, + -190349.61880493132, + -190686.42496369162, + null, + -190349.61880493132, + -190557.064280662, + null, + -188273.88722517353, + -188621.10935024044, + null, + -188273.88722517353, + -187857.41211453432, + null, + -188273.88722517353, + -188417.53740720224, + null, + -188273.88722517353, + -187912.95191827603, + null, + -188273.88722517353, + -188406.84414023338, + null, + -188111.50245778877, + -188273.88722517353, + null, + -187693.57844067938, + -188273.88722517353, + null, + -189167.452960464, + -189168.76930062557, + null, + -188204.88501110626, + -188434.3714432306, + null, + -188051.1449940405, + -188092.88408938725, + null, + -188051.1449940405, + -187956.81249239156, + null, + -188051.1449940405, + -187979.11709276808, + null, + -188051.1449940405, + -187979.482131256, + null, + -188051.1449940405, + -187979.50818299758, + null, + -188051.1449940405, + -187996.93410740836, + null, + -187943.6909840044, + -187889.46739959446, + null, + -187943.6909840044, + -187963.20107476946, + null, + -187943.6909840044, + -187692.31182614467, + null, + -188101.04549079717, + -187929.6211213274, + null, + -188101.04549079717, + -187965.07830668992, + null, + -187914.7483476306, + -187856.64089532907, + null, + -187914.7483476306, + -187920.64538985988, + null, + -196054.36698636063, + -196635.93024140774, + null, + -196054.36698636063, + -194526.8572523203, + null, + -196054.36698636063, + -196399.9604654788, + null, + -196054.36698636063, + -196362.5620857767, + null, + -196054.36698636063, + -196370.54701890302, + null, + -196054.36698636063, + -196328.77006002006, + null, + -196054.36698636063, + -196438.87708898322, + null, + -196054.36698636063, + -196344.7214253337, + null, + -196054.36698636063, + -196337.77592539776, + null, + -196054.36698636063, + -196516.39975494708, + null, + -196054.36698636063, + -196375.4820001025, + null, + -196054.36698636063, + -196572.13617882138, + null, + -196054.36698636063, + -196357.81249105308, + null, + -196054.36698636063, + -196402.59115033425, + null, + -196054.36698636063, + -196403.98426888036, + null, + -196054.36698636063, + -196525.95899245862, + null, + -196054.36698636063, + -196450.95791918522, + null, + -196054.36698636063, + -196516.9695874955, + null, + -196054.36698636063, + -196526.78985808208, + null, + -196054.36698636063, + -196305.99375243418, + null, + -196054.36698636063, + -196477.75824980924, + null, + -196054.36698636063, + -196371.17169785398, + null, + -196054.36698636063, + -196540.8496484741, + null, + -196054.36698636063, + -196413.56960098774, + null, + -196054.36698636063, + -196398.85033780828, + null, + -196054.36698636063, + -196519.40403056843, + null, + -196054.36698636063, + -196586.5152888427, + null, + -196054.36698636063, + -196484.0741919208, + null, + -196054.36698636063, + -196477.4423322067, + null, + -196054.36698636063, + -196580.94705004548, + null, + -196054.36698636063, + -196493.03467572184, + null, + -196054.36698636063, + -196355.35715885067, + null, + -196054.36698636063, + -196524.4255226339, + null, + -196054.36698636063, + -196575.5793318735, + null, + -196054.36698636063, + -196388.91149252217, + null, + -196054.36698636063, + -197117.95006697494, + null, + -196054.36698636063, + -196453.8097539728, + null, + -196054.36698636063, + -196411.73181172024, + null, + -196054.36698636063, + -194540.51188655684, + null, + -196054.36698636063, + -196519.77480193917, + null, + -196054.36698636063, + -196290.0514181662, + null, + -196054.36698636063, + -196541.32332563752, + null, + -196054.36698636063, + -196408.34816477957, + null, + -196054.36698636063, + -196504.99785979235, + null, + -196054.36698636063, + -196455.70087208258, + null, + -196054.36698636063, + -196480.78836830918, + null, + -196054.36698636063, + -196623.01283625938, + null, + -196054.36698636063, + -196421.16774980287, + null, + -196054.36698636063, + -196549.77754785056, + null, + -196054.36698636063, + -196520.50848836853, + null, + -196054.36698636063, + -196460.99820681041, + null, + -196054.36698636063, + -196330.35222787867, + null, + -196054.36698636063, + -196641.30269969517, + null, + -196054.36698636063, + -196316.11984664403, + null, + -196054.36698636063, + -196615.8921314892, + null, + -196054.36698636063, + -196323.18575227895, + null, + -196054.36698636063, + -196287.24588507827, + null, + -196054.36698636063, + -196489.4637902344, + null, + -196054.36698636063, + -196592.64448067575, + null, + -196054.36698636063, + -196651.12796950675, + null, + -196054.36698636063, + -196337.7964175994, + null, + -196054.36698636063, + -196435.57903475765, + null, + -196054.36698636063, + -196425.72291655725, + null, + -196054.36698636063, + -196443.09441339519, + null, + -196054.36698636063, + -196503.89361416345, + null, + -196054.36698636063, + -196538.03796348278, + null, + -196054.36698636063, + -196407.69176682775, + null, + -196054.36698636063, + -196453.90366500575, + null, + -196054.36698636063, + -196620.4564034161, + null, + -196054.36698636063, + -196368.93578565225, + null, + -196054.36698636063, + -196336.6452604692, + null, + -196054.36698636063, + -196451.32659140672, + null, + -196054.36698636063, + -196584.13722435836, + null, + -196054.36698636063, + -196550.36163773743, + null, + -196054.36698636063, + -196467.06908865008, + null, + -196054.36698636063, + -196437.28763150718, + null, + -196054.36698636063, + -196539.00158353732, + null, + -196054.36698636063, + -196464.94812796215, + null, + -196054.36698636063, + -196628.33337194961, + null, + -196054.36698636063, + -196276.35492457935, + null, + -196054.36698636063, + -196600.84524455655, + null, + -196054.36698636063, + -196438.97737875086, + null, + -196054.36698636063, + -196542.46186392213, + null, + -196054.36698636063, + -196495.15646825332, + null, + -196054.36698636063, + -196383.44533773506, + null, + -196054.36698636063, + -196584.13630503832, + null, + -196054.36698636063, + -196435.07942520038, + null, + -196054.36698636063, + -196472.90803114063, + null, + -196054.36698636063, + -196858.56777267455, + null, + -196054.36698636063, + -196506.52317436016, + null, + -196054.36698636063, + -196423.12115615146, + null, + -196054.36698636063, + -196494.714181361, + null, + -196054.36698636063, + -196335.97571939143, + null, + -196054.36698636063, + -196257.5842439066, + null, + -196054.36698636063, + -196450.63647772084, + null, + -196054.36698636063, + -196295.25829369153, + null, + -196054.36698636063, + -196549.37678044723, + null, + -196054.36698636063, + -196353.43409226913, + null, + -196054.36698636063, + -196392.21021078614, + null, + -196054.36698636063, + -196509.71950499725, + null, + -196054.36698636063, + -196444.19108020968, + null, + -196054.36698636063, + -196816.3663020291, + null, + -196054.36698636063, + -196254.53937207581, + null, + -196054.36698636063, + -196401.17859141144, + null, + -196054.36698636063, + -196582.62604443275, + null, + -196054.36698636063, + -196375.1204955413, + null, + -196054.36698636063, + -196306.78705593187, + null, + -196054.36698636063, + -196556.263798411, + null, + -196054.36698636063, + -196481.2520604121, + null, + -196054.36698636063, + -196387.3684123011, + null, + -196054.36698636063, + -196594.68433771073, + null, + -196054.36698636063, + -196534.56974015787, + null, + -196054.36698636063, + -196598.3252346663, + null, + -196054.36698636063, + -196432.1174841255, + null, + -196054.36698636063, + -196371.8701767749, + null, + -196054.36698636063, + -196561.82015946324, + null, + -196054.36698636063, + -196474.51192388064, + null, + -196054.36698636063, + -196410.2165088565, + null, + -196054.36698636063, + -196488.0490661285, + null, + -196054.36698636063, + -196601.67402550596, + null, + -196054.36698636063, + -196270.8076973989, + null, + -190713.34611914298, + -190226.99435288858, + null, + -190713.34611914298, + -190194.37548906854, + null, + -190997.92481924436, + -190490.7591485024, + null, + -190997.92481924436, + -191218.29792273082, + null, + -190575.84463553302, + -190773.35143504693, + null, + -189769.90898797516, + -190467.1990688694, + null, + -190467.1990688694, + -190157.89391110622, + null, + -190284.9707253069, + -190467.1990688694, + null, + -190337.43065788288, + -190391.15414305858, + null, + -190337.43065788288, + -190504.12149903976, + null, + -190337.43065788288, + -190541.7584943848, + null, + -190337.43065788288, + -190584.05715662817, + null, + -190337.43065788288, + -190474.82891365502, + null, + -190337.43065788288, + -190627.12273639874, + null, + -190337.43065788288, + -190565.5574961089, + null, + -190337.43065788288, + -190462.08398884002, + null, + -190337.43065788288, + -190363.26549123542, + null, + -190337.43065788288, + -190574.05181437873, + null, + -190337.43065788288, + -190511.04042249869, + null, + -190337.43065788288, + -190665.9029325363, + null, + -190337.43065788288, + -190549.36495173737, + null, + -190337.43065788288, + -190603.2646405981, + null, + -190337.43065788288, + -190467.50067797417, + null, + -190337.43065788288, + -190713.55530098, + null, + -190337.43065788288, + -190576.57553214984, + null, + -190337.43065788288, + -190549.81716892275, + null, + -190337.43065788288, + -190443.4219741818, + null, + -190337.43065788288, + -190434.752852087, + null, + -190337.43065788288, + -190445.9979986217, + null, + -190337.43065788288, + -190683.8285149941, + null, + -190699.1670419356, + -190772.50006996628, + null, + -190699.1670419356, + -190754.12935394185, + null, + -190699.1670419356, + -190665.37836808496, + null, + -190699.1670419356, + -190852.38090816615, + null, + -190568.56008858563, + -190399.4126354747, + null, + -190568.56008858563, + -190728.73035462684, + null, + -190568.56008858563, + -190261.8156757386, + null, + -190568.56008858563, + -190391.5963820497, + null, + -190832.90541128814, + -190883.16828134973, + null, + -190622.68743332793, + -190414.88888080535, + null, + -190622.68743332793, + -190267.11271629602, + null, + -190622.68743332793, + -190362.44164700346, + null, + -190622.68743332793, + -190527.79502621465, + null, + -190622.68743332793, + -190787.82297448965, + null, + -190622.68743332793, + -189954.8799487552, + null, + -190622.68743332793, + -189930.46843261595, + null, + -190622.68743332793, + -190803.13129126374, + null, + -191792.811774679, + -192061.2139999865, + null, + -191792.811774679, + -192043.71626047432, + null, + -191792.811774679, + -191964.647756764, + null, + -190689.0572112892, + -190891.79490739512, + null, + -190689.0572112892, + -190894.2735892318, + null, + -190689.0572112892, + -190940.53838586452, + null, + -190689.0572112892, + -190816.47205959816, + null, + -190689.0572112892, + -190853.98202544727, + null, + -190689.0572112892, + -190769.52819472074, + null, + -190689.0572112892, + -190711.82282255974, + null, + -190689.0572112892, + -190786.15393264592, + null, + -190554.549981457, + -190715.2106409246, + null, + -190851.29303480033, + -190927.8131014321, + null, + -190792.2009981391, + -190983.24181297334, + null, + -185674.83275462306, + -185652.40467809694, + null, + -186040.44887473437, + -185945.5150238995, + null, + -186246.95216782618, + -186214.06819645717, + null, + -186246.95216782618, + -186216.50602458388, + null, + -191372.67854098132, + -191856.6763200281, + null, + -191372.67854098132, + -191865.84986712263, + null, + -191372.67854098132, + -191865.61681838395, + null, + -191372.67854098132, + -191828.29448063852, + null, + -191372.67854098132, + -191764.30286109785, + null, + -191372.67854098132, + -191718.61375219104, + null, + -191372.67854098132, + -191653.1809436873, + null, + -191372.67854098132, + -191743.9925516096, + null, + -191372.67854098132, + -191796.13851196037, + null, + -191372.67854098132, + -191702.30279357143, + null, + -191372.67854098132, + -191702.69456493555, + null, + -191372.67854098132, + -191978.06283560264, + null, + -191372.67854098132, + -191767.79566278576, + null, + -191372.67854098132, + -191879.5988250336, + null, + -191372.67854098132, + -191816.39414215, + null, + -191372.67854098132, + -191761.08538711286, + null, + -191372.67854098132, + -191848.65283808287, + null, + -191372.67854098132, + -191632.82192091842, + null, + -188837.46529610577, + -188083.38799385336, + null, + -187692.98713641445, + -188147.31119030315, + null, + -187692.98713641445, + -187554.55535205672, + null, + -187692.98713641445, + -187589.65761840937, + null, + -187692.98713641445, + -187526.1000837456, + null, + -188216.9357266321, + -188434.3714432306, + null, + -189035.7518822911, + -189142.84215571234, + null, + -189035.7518822911, + -189619.67419571467, + null, + -188123.85049620818, + -188247.63095166776, + null, + -188123.85049620818, + -188253.21810837943, + null, + -188123.85049620818, + -188166.64910838503, + null, + -188123.85049620818, + -188229.09502381584, + null, + -188174.51164152424, + -188816.86933252332, + null, + -188174.51164152424, + -188895.9417109116, + null, + -188174.51164152424, + -188212.53536496227, + null, + -188360.45872868263, + -188349.5439406991, + null, + -188360.45872868263, + -188999.41125879882, + null, + -188944.92574917976, + -188360.45872868263, + null, + -187920.04303128363, + -188074.9390005927, + null, + -187920.04303128363, + -188040.12515643216, + null, + -187920.04303128363, + -187966.5095326889, + null, + -187843.0478644709, + -187845.35077936196, + null, + -189252.1261607356, + -189533.1271418779, + null, + -189252.1261607356, + -189666.5672120893, + null, + -189252.1261607356, + -189500.05954191848, + null, + -189252.1261607356, + -189721.16100992335, + null, + -188964.9295065745, + -189215.35398462103, + null, + -188964.9295065745, + -189123.84104439258, + null, + -188964.9295065745, + -189194.488756125, + null, + -188964.9295065745, + -189196.6452778848, + null, + -188317.85419149252, + -188323.24737628445, + null, + -188317.85419149252, + -188332.4255229405, + null, + -188317.85419149252, + -188370.9159487689, + null, + -188317.85419149252, + -188370.28768893745, + null, + -188304.15480666218, + -188283.69853709696, + null, + -188304.15480666218, + -188297.15304957947, + null, + -188304.15480666218, + -188298.3598862649, + null, + -188068.89540782082, + -188212.56287800474, + null, + -188135.7951117508, + -188212.56287800474, + null, + -188212.56287800474, + -188064.28392279483, + null, + -188265.23932553243, + -188212.56287800474, + null, + -188360.45872868263, + -188212.56287800474, + null, + -188212.56287800474, + -188171.8323130677, + null, + -188267.7210327238, + -188283.09308279172, + null, + -188267.7210327238, + -188237.7610465607, + null, + -188267.7210327238, + -188292.3058890195, + null, + -188267.7210327238, + -188271.55860805113, + null, + -188068.89540782082, + -188211.52410601077, + null, + -188135.7951117508, + -188211.52410601077, + null, + -188211.52410601077, + -188064.28392279483, + null, + -188265.23932553243, + -188211.52410601077, + null, + -188360.45872868263, + -188211.52410601077, + null, + -188211.52410601077, + -188171.8323130677, + null, + -188038.4334288893, + -188021.5412306319, + null, + -188135.7951117508, + -188021.5412306319, + null, + -187594.8777657927, + -188021.5412306319, + null, + -188138.17806449422, + -188021.5412306319, + null, + -188068.89540782082, + -188021.5412306319, + null, + -188123.85049620818, + -188021.5412306319, + null, + -188021.5412306319, + -188171.8323130677, + null, + -188021.5412306319, + -188027.126623048, + null, + -188021.5412306319, + -187826.2030626212, + null, + -188021.5412306319, + -187972.38221218612, + null, + -188021.5412306319, + -187838.97430345853, + null, + -188079.8329504583, + -188021.5412306319, + null, + -188021.5412306319, + -188009.8309550313, + null, + -187109.55145493208, + -187777.82929663642, + null, + -187291.09671769937, + -187777.82929663642, + null, + -187525.68775441864, + -187777.82929663642, + null, + -188092.54169536094, + -188083.56553678407, + null, + -188092.54169536094, + -188373.82014025023, + null, + -188092.54169536094, + -188122.50775063198, + null, + -187796.6542157994, + -187819.40370573246, + null, + -187796.6542157994, + -187870.61997418042, + null, + -187796.6542157994, + -187807.5058878382, + null, + -187635.59468253268, + -187561.3376490592, + null, + -187635.59468253268, + -187629.0390798209, + null, + -187635.59468253268, + -187535.8662195509, + null, + -187635.59468253268, + -187668.81541389253, + null, + -187635.59468253268, + -187621.53310971783, + null, + -187635.59468253268, + -187601.9133239069, + null, + -188033.40789813793, + -188283.31658936644, + null, + -188126.67429510137, + -188033.5726857013, + null, + -188038.4334288893, + -188033.5726857013, + null, + -188135.7951117508, + -188033.5726857013, + null, + -188265.23932553243, + -188033.5726857013, + null, + -187594.8777657927, + -188033.5726857013, + null, + -188123.85049620818, + -188033.5726857013, + null, + -188119.49823623613, + -188033.5726857013, + null, + -188033.5726857013, + -187838.97430345853, + null, + -188360.45872868263, + -188033.5726857013, + null, + -188079.8329504583, + -188033.5726857013, + null, + -188033.5726857013, + -188095.2939063459, + null, + -188033.5726857013, + -188054.9089034451, + null, + -188033.5726857013, + -188048.40563093848, + null, + -188033.5726857013, + -188029.4813787521, + null, + -188191.56577066958, + -188259.8008772253, + null, + -188068.89540782082, + -188191.56577066958, + null, + -188135.7951117508, + -188191.56577066958, + null, + -188191.56577066958, + -188064.28392279483, + null, + -188265.23932553243, + -188191.56577066958, + null, + -188191.56577066958, + -188171.8323130677, + null, + -188068.89540782082, + -188064.2405154846, + null, + -188038.4334288893, + -188064.2405154846, + null, + -187927.6227750181, + -188064.2405154846, + null, + -188152.2857732802, + -188064.2405154846, + null, + -188128.65301616665, + -188064.2405154846, + null, + -188187.0305086857, + -188064.2405154846, + null, + -188215.8464237905, + -188064.2405154846, + null, + -188172.07424796064, + -188064.2405154846, + null, + -188064.2405154846, + -188171.8323130677, + null, + -187594.8777657927, + -188064.2405154846, + null, + -188123.85049620818, + -188064.2405154846, + null, + -188064.2405154846, + -187942.90402075808, + null, + -188064.2405154846, + -187826.2030626212, + null, + -188064.2405154846, + -187838.97430345853, + null, + -188079.8329504583, + -188064.2405154846, + null, + -188198.6549685184, + -188064.2405154846, + null, + -188064.2405154846, + -188009.8309550313, + null, + -188174.51164152424, + -187977.02349488987, + null, + -187927.6227750181, + -187977.02349488987, + null, + -188265.23932553243, + -187977.02349488987, + null, + -187594.8777657927, + -187977.02349488987, + null, + -187977.02349488987, + -187593.51605149044, + null, + -187977.02349488987, + -187826.2030626212, + null, + -187977.02349488987, + -187838.97430345853, + null, + -188079.8329504583, + -187977.02349488987, + null, + -187977.02349488987, + -188009.8309550313, + null, + -188150.9408505529, + -188111.32098520146, + null, + -188150.9408505529, + -188269.27401706978, + null, + -188150.9408505529, + -188038.668261585, + null, + -188150.9408505529, + -188021.35599826832, + null, + -188150.9408505529, + -188145.63669386692, + null, + -188150.9408505529, + -188154.92217313207, + null, + -188150.9408505529, + -188285.04208775162, + null, + -188150.9408505529, + -188032.76818274957, + null, + -188150.9408505529, + -188202.108708612, + null, + -188399.31508879495, + -188548.4840723725, + null, + -188399.31508879495, + -188370.81304855144, + null, + -188399.31508879495, + -188508.64502421487, + null, + -188388.79423971399, + -188435.5287980957, + null, + -188388.79423971399, + -188539.16539749154, + null, + -188388.79423971399, + -188406.0852420654, + null, + -188388.79423971399, + -188375.41608470536, + null, + -188200.68466137044, + -188033.49918109106, + null, + -188200.68466137044, + -188141.9406256535, + null, + -188038.4334288893, + -188105.61118723254, + null, + -188135.7951117508, + -188105.61118723254, + null, + -188126.67429510137, + -188105.61118723254, + null, + -188265.23932553243, + -188105.61118723254, + null, + -187594.8777657927, + -188105.61118723254, + null, + -188123.85049620818, + -188105.61118723254, + null, + -188119.49823623613, + -188105.61118723254, + null, + -188360.45872868263, + -188105.61118723254, + null, + -188105.61118723254, + -187838.97430345853, + null, + -188079.8329504583, + -188105.61118723254, + null, + -188105.61118723254, + -188213.16505670684, + null, + -188197.26080880096, + -188299.90754175812, + null, + -187963.81710303735, + -188055.18840825645, + null, + -187857.75124697632, + -187963.81710303735, + null, + -187760.40303329699, + -187963.81710303735, + null, + -187858.44732430877, + -187963.81710303735, + null, + -187963.81710303735, + -188010.80106167274, + null, + -188081.06831320774, + -188288.30179744438, + null, + -188081.06831320774, + -188172.62871077625, + null, + -187785.39966082262, + -188081.06831320774, + null, + -188081.06831320774, + -188028.9956217424, + null, + -188081.06831320774, + -187979.16806459098, + null, + -188081.06831320774, + -188201.16967686315, + null, + -187857.75124697632, + -187780.86450984897, + null, + -187760.40303329699, + -187780.86450984897, + null, + -187858.44732430877, + -187780.86450984897, + null, + -187780.86450984897, + -188010.80106167274, + null, + -188832.74568101848, + -189096.27550826877, + null, + -188832.74568101848, + -189047.49853952235, + null, + -188832.74568101848, + -189062.21473259735, + null, + -188832.74568101848, + -189137.79815942995, + null, + -188068.89540782082, + -188271.2574905656, + null, + -188135.7951117508, + -188271.2574905656, + null, + -188271.2574905656, + -188402.8210414287, + null, + -188271.2574905656, + -188171.8323130677, + null, + -188271.2574905656, + -188218.0680871657, + null, + -188360.45872868263, + -188271.2574905656, + null, + -188098.9031617914, + -188209.99551585125, + null, + -188098.9031617914, + -188252.8925638619, + null, + -188265.23932553243, + -188098.9031617914, + null, + -188098.9031617914, + -188171.8323130677, + null, + -188135.7951117508, + -188098.9031617914, + null, + -188360.45872868263, + -188098.9031617914, + null, + -188126.67429510137, + -188098.9031617914, + null, + -188129.3743830729, + -188098.9031617914, + null, + -188038.4334288893, + -188098.9031617914, + null, + -188123.85049620818, + -188098.9031617914, + null, + -188138.17806449422, + -188098.9031617914, + null, + -187594.8777657927, + -188098.9031617914, + null, + -188098.9031617914, + -188218.0680871657, + null, + -187594.8777657927, + -187978.67714400974, + null, + -188038.4334288893, + -187978.67714400974, + null, + -188068.89540782082, + -187978.67714400974, + null, + -187978.67714400974, + -188027.126623048, + null, + -188135.7951117508, + -187978.67714400974, + null, + -188138.17806449422, + -187978.67714400974, + null, + -188123.85049620818, + -187978.67714400974, + null, + -187978.67714400974, + -188171.8323130677, + null, + -187978.67714400974, + -187826.2030626212, + null, + -187978.67714400974, + -187972.38221218612, + null, + -187978.67714400974, + -187838.97430345853, + null, + -188079.8329504583, + -187978.67714400974, + null, + -187978.67714400974, + -188009.8309550313, + null, + -189036.270514249, + -189858.4613268521, + null, + -188358.16456153046, + -188378.5507944686, + null, + -188358.16456153046, + -188392.59520295658, + null, + -188358.16456153046, + -188340.82295965083, + null, + -188358.16456153046, + -188344.25051226772, + null, + -188358.16456153046, + -188447.38244263985, + null, + -188358.16456153046, + -188321.4992550657, + null, + -188358.16456153046, + -188290.03028204778, + null, + -188358.16456153046, + -188276.1905836357, + null, + -188358.16456153046, + -188426.3163433966, + null, + -188358.16456153046, + -188379.43972742173, + null, + -188793.71858353209, + -188940.39294818317, + null, + -188793.71858353209, + -189044.42758006393, + null, + -188793.71858353209, + -188982.13117658292, + null, + -188463.8027867851, + -188487.06747544595, + null, + -188463.8027867851, + -188591.84517673572, + null, + -188463.8027867851, + -188430.72620436488, + null, + -188463.8027867851, + -188444.0235731584, + null, + -188463.8027867851, + -188596.05013602367, + null, + -188420.56292882576, + -188512.54177513707, + null, + -188527.54012336218, + -188285.55395057393, + null, + -188527.54012336218, + -188522.74551045886, + null, + -188527.54012336218, + -188699.77662528763, + null, + -188527.54012336218, + -188477.04377820794, + null, + -188527.54012336218, + -188625.63379156328, + null, + -188527.54012336218, + -188740.4076299442, + null, + -188527.54012336218, + -188355.1199264169, + null, + -188527.54012336218, + -188612.0962266196, + null, + -188527.54012336218, + -188650.9029571649, + null, + -188527.54012336218, + -188362.19832204955, + null, + -188527.54012336218, + -188412.44037557312, + null, + -188527.54012336218, + -188781.8283257325, + null, + -188138.17806449422, + -188237.94842374895, + null, + -188237.94842374895, + -188231.5422576223, + null, + -188237.94842374895, + -188240.22615160185, + null, + -188237.94842374895, + -188048.40563093848, + null, + -187927.6227750181, + -188237.94842374895, + null, + -188237.94842374895, + -188094.17418821002, + null, + -188237.94842374895, + -188268.16708529167, + null, + -188123.85049620818, + -188237.94842374895, + null, + -188237.94842374895, + -188277.69161143652, + null, + -188527.56986848032, + -188237.94842374895, + null, + -188126.67429510137, + -188152.7059567754, + null, + -188135.7951117508, + -188152.7059567754, + null, + -188138.17806449422, + -188152.7059567754, + null, + -187594.8777657927, + -188152.7059567754, + null, + -188038.4334288893, + -188152.7059567754, + null, + -188129.3743830729, + -188152.7059567754, + null, + -188265.23932553243, + -188152.7059567754, + null, + -188152.7059567754, + -188126.03656747416, + null, + -188152.7059567754, + -188171.8323130677, + null, + -188123.85049620818, + -188152.7059567754, + null, + -188360.45872868263, + -188152.7059567754, + null, + -188229.32312055898, + -188111.17360157988, + null, + -188229.32312055898, + -188128.15679037262, + null, + -185974.23479730866, + -185440.07638832257, + null, + -185974.23479730866, + -185486.61372523938, + null, + -187407.3972483268, + -187773.89161390605, + null, + -187407.3972483268, + -187768.02879467254, + null, + -188704.9483600274, + -188801.4210158928, + null, + -188704.9483600274, + -188767.41641843505, + null, + -188704.9483600274, + -188890.03400560268, + null, + -188704.9483600274, + -189022.30145293748, + null, + -188119.49823623613, + -188229.5695177689, + null, + -188229.5695177689, + -188215.89141412245, + null, + -188126.67429510137, + -188229.5695177689, + null, + -188129.3743830729, + -188229.5695177689, + null, + -188229.5695177689, + -188048.40563093848, + null, + -188229.5695177689, + -188209.99551585125, + null, + -188527.56986848032, + -188229.5695177689, + null, + -187927.6227750181, + -188229.5695177689, + null, + -188229.5695177689, + -188094.17418821002, + null, + -188360.45872868263, + -188229.5695177689, + null, + -188060.74338207667, + -187968.55426813365, + null, + -188060.74338207667, + -188171.8323130677, + null, + -188060.74338207667, + -188197.29564009517, + null, + -188060.74338207667, + -188033.3870086141, + null, + -188060.74338207667, + -188007.0926605345, + null, + -188060.74338207667, + -188162.9565995668, + null, + -188060.74338207667, + -188231.5422576223, + null, + -188060.74338207667, + -188185.8360206985, + null, + -187927.6227750181, + -188060.74338207667, + null, + -188038.4334288893, + -188060.74338207667, + null, + -188060.74338207667, + -188045.48630401408, + null, + -188060.74338207667, + -188064.28392279483, + null, + -188060.74338207667, + -188142.36563635623, + null, + -188060.74338207667, + -188126.03656747416, + null, + -188060.74338207667, + -188111.84876750235, + null, + -188060.74338207667, + -188003.5861127096, + null, + -188060.74338207667, + -188087.67081568346, + null, + -188060.74338207667, + -188058.20794789607, + null, + -188060.74338207667, + -188039.71959966994, + null, + -188060.74338207667, + -188083.6924472722, + null, + -188060.74338207667, + -188218.0680871657, + null, + -188060.74338207667, + -187974.56083652587, + null, + -188060.74338207667, + -188200.24848876594, + null, + -188060.74338207667, + -188146.93600360025, + null, + -188060.74338207667, + -188144.75157425427, + null, + -188060.74338207667, + -188145.70803974595, + null, + -187594.8777657927, + -188060.74338207667, + null, + -188123.85049620818, + -188060.74338207667, + null, + -188060.74338207667, + -188106.29213649518, + null, + -188060.74338207667, + -188082.19662846022, + null, + -188060.74338207667, + -187968.96276014342, + null, + -188360.45872868263, + -188060.74338207667, + null, + -188060.74338207667, + -187826.2030626212, + null, + -188060.74338207667, + -188086.97635425016, + null, + -188060.74338207667, + -187838.97430345853, + null, + -188060.74338207667, + -188104.29806410245, + null, + -188079.8329504583, + -188060.74338207667, + null, + -188060.74338207667, + -188009.8309550313, + null, + -188060.74338207667, + -188043.63936497684, + null, + -188527.56986848032, + -188009.8309550313, + null, + -188009.8309550313, + -188006.95668439232, + null, + -188009.8309550313, + -188139.7614408556, + null, + -187927.6227750181, + -188009.8309550313, + null, + -188009.8309550313, + -187885.68037084257, + null, + -188135.7951117508, + -188009.8309550313, + null, + -188138.17806449422, + -188009.8309550313, + null, + -188009.8309550313, + -188103.01400066275, + null, + -188009.8309550313, + -188117.5227897902, + null, + -188038.4334288893, + -188009.8309550313, + null, + -188009.8309550313, + -188046.5415193328, + null, + -188129.3743830729, + -188009.8309550313, + null, + -188009.8309550313, + -188048.40563093848, + null, + -188009.8309550313, + -188215.89141412245, + null, + -188009.8309550313, + -187934.88019874017, + null, + -188009.8309550313, + -188171.8323130677, + null, + -188009.8309550313, + -187902.2258420666, + null, + -188009.8309550313, + -188060.24566124828, + null, + -188009.8309550313, + -188138.19385150683, + null, + -188009.8309550313, + -187992.70459943428, + null, + -188009.8309550313, + -188100.83145626815, + null, + -187905.26212099823, + -188009.8309550313, + null, + -188126.67429510137, + -188009.8309550313, + null, + -188009.8309550313, + -187918.62888498866, + null, + -187594.8777657927, + -188009.8309550313, + null, + -188123.85049620818, + -188009.8309550313, + null, + -188009.8309550313, + -187826.2030626212, + null, + -188009.8309550313, + -188203.05941331436, + null, + -188009.8309550313, + -188026.76554396577, + null, + -188009.8309550313, + -187996.96960220046, + null, + -188009.8309550313, + -187838.97430345853, + null, + -188079.8329504583, + -188009.8309550313, + null, + -188265.23932553243, + -188009.8309550313, + null, + -188009.8309550313, + -188146.49730992244, + null, + -188009.8309550313, + -188009.8309550313, + null, + -188009.8309550313, + -187979.69368844153, + null, + -188009.8309550313, + -188054.69156568003, + null, + -188016.12153162181, + -187927.8824349312, + null, + -188016.12153162181, + -187981.00449699291, + null, + -188409.31602683378, + -188174.46166792992, + null, + -188409.31602683378, + -187733.72742661694, + null, + -188494.15449793098, + -188111.17360157988, + null, + -188494.15449793098, + -188128.15679037262, + null, + -189395.759421411, + -189589.74977397075, + null, + -189395.759421411, + -189522.47085552436, + null, + -188314.0618063977, + -188307.32313826354, + null, + -188061.6228223648, + -188142.36563635623, + null, + -187594.8777657927, + -188061.6228223648, + null, + -188138.17806449422, + -188061.6228223648, + null, + -188038.4334288893, + -188061.6228223648, + null, + -188135.7951117508, + -188061.6228223648, + null, + -188129.3743830729, + -188061.6228223648, + null, + -188265.23932553243, + -188061.6228223648, + null, + -188061.6228223648, + -188171.8323130677, + null, + -188123.85049620818, + -188061.6228223648, + null, + -188126.67429510137, + -188061.6228223648, + null, + -187905.26212099823, + -188061.6228223648, + null, + -188377.0181492975, + -188508.64502421487, + null, + -188377.0181492975, + -188432.78907464017, + null, + -188377.0181492975, + -188326.60982191455, + null, + -188377.0181492975, + -188354.1811308593, + null, + -188377.0181492975, + -188533.53409693413, + null, + -188192.37099960947, + -188033.49918109106, + null, + -188192.37099960947, + -188141.9406256535, + null, + -187758.18487713882, + -187800.99882697721, + null, + -187758.18487713882, + -187868.5464667596, + null, + -187758.18487713882, + -187753.06096357654, + null, + -187758.18487713882, + -187717.91851693625, + null, + -187758.18487713882, + -187695.8720814455, + null, + -187758.18487713882, + -187675.48095937257, + null, + -187758.18487713882, + -187700.15324202535, + null, + -187787.2879845593, + -187783.07389216768, + null, + -187787.2879845593, + -187780.48748696045, + null, + -187787.2879845593, + -187828.2195422653, + null, + -187787.2879845593, + -187833.51705638343, + null, + -187572.14078191516, + -187339.4240354632, + null, + -187572.14078191516, + -187316.92185478634, + null, + -187741.49763673818, + -187721.85004660045, + null, + -187741.49763673818, + -187660.64237843428, + null, + -187741.49763673818, + -187715.7343131632, + null, + -187741.49763673818, + -187780.5533465789, + null, + -187741.49763673818, + -187753.63706882135, + null, + -188068.89540782082, + -187964.39443212652, + null, + -188038.4334288893, + -187964.39443212652, + null, + -188135.7951117508, + -187964.39443212652, + null, + -187594.8777657927, + -187964.39443212652, + null, + -188138.17806449422, + -187964.39443212652, + null, + -188123.85049620818, + -187964.39443212652, + null, + -187964.39443212652, + -188171.8323130677, + null, + -187964.39443212652, + -188027.126623048, + null, + -187964.39443212652, + -187826.2030626212, + null, + -187964.39443212652, + -187972.38221218612, + null, + -187964.39443212652, + -187838.97430345853, + null, + -188079.8329504583, + -187964.39443212652, + null, + -188009.8309550313, + -187964.39443212652, + null, + -189643.33025442102, + -190192.99199780272, + null, + -189643.33025442102, + -189790.89938445395, + null, + -189643.33025442102, + -190212.54156170116, + null, + -189290.1565425291, + -189775.7899940225, + null, + -188953.4021090192, + -189039.90533258254, + null, + -188953.4021090192, + -189023.69513390047, + null, + -189135.25543499572, + -189295.93670652222, + null, + -189135.25543499572, + -189291.79965791342, + null, + -189135.25543499572, + -189200.57330304422, + null, + -189135.25543499572, + -189225.44343217573, + null, + -189523.5420746396, + -189655.76464204327, + null, + -189523.5420746396, + -189756.1793300799, + null, + -189523.5420746396, + -189705.95770007666, + null, + -189523.5420746396, + -189643.5524444072, + null, + -187927.6227750181, + -188139.9439583329, + null, + -188138.17806449422, + -188139.9439583329, + null, + -188038.4334288893, + -188139.9439583329, + null, + -188135.7951117508, + -188139.9439583329, + null, + -188129.3743830729, + -188139.9439583329, + null, + -188139.9439583329, + -188171.8323130677, + null, + -187594.8777657927, + -188139.9439583329, + null, + -188123.85049620818, + -188139.9439583329, + null, + -188139.9439583329, + -187826.2030626212, + null, + -188360.45872868263, + -188139.9439583329, + null, + -188126.67429510137, + -188139.9439583329, + null, + -188139.9439583329, + -187657.0868990739, + null, + -188139.9439583329, + -187838.97430345853, + null, + -188079.8329504583, + -188139.9439583329, + null, + -188009.8309550313, + -188139.9439583329, + null, + -189020.66022475137, + -189130.97364801675, + null, + -189020.66022475137, + -189116.34404480382, + null, + -187947.31400414582, + -188181.00690298795, + null, + -187672.10042218023, + -187593.07759266367, + null, + -188053.95244611433, + -188171.8323130677, + null, + -188265.23932553243, + -188053.95244611433, + null, + -188053.95244611433, + -188064.28392279483, + null, + -188126.67429510137, + -188053.95244611433, + null, + -188138.17806449422, + -188053.95244611433, + null, + -188123.85049620818, + -188053.95244611433, + null, + -187594.8777657927, + -188053.95244611433, + null, + -188360.45872868263, + -188053.95244611433, + null, + -188038.4334288893, + -188053.95244611433, + null, + -188135.7951117508, + -188053.95244611433, + null, + -188129.3743830729, + -188053.95244611433, + null, + -187927.6227750181, + -187911.62808368597, + null, + -187911.62808368597, + -188006.95668439232, + null, + -187911.62808368597, + -188048.40563093848, + null, + -187594.8777657927, + -187911.62808368597, + null, + -187911.62808368597, + -188171.8323130677, + null, + -188123.85049620818, + -187911.62808368597, + null, + -187911.62808368597, + -187826.2030626212, + null, + -187911.62808368597, + -187838.97430345853, + null, + -188079.8329504583, + -187911.62808368597, + null, + -188009.8309550313, + -187911.62808368597, + null, + -187842.24023419546, + -188076.45815998927, + null, + -187842.24023419546, + -187846.51677388168, + null, + -187842.24023419546, + -187788.46861765772, + null, + -187927.6227750181, + -187842.24023419546, + null, + -187842.24023419546, + -187757.48312437613, + null, + -188265.23932553243, + -187842.24023419546, + null, + -187594.8777657927, + -187842.24023419546, + null, + -188123.85049620818, + -187842.24023419546, + null, + -187842.24023419546, + -188048.40563093848, + null, + -187842.24023419546, + -188094.17418821002, + null, + -187842.24023419546, + -187811.00235893583, + null, + -187842.24023419546, + -187826.2030626212, + null, + -187842.24023419546, + -187835.38918713373, + null, + -187842.24023419546, + -187838.97430345853, + null, + -188079.8329504583, + -187842.24023419546, + null, + -188009.8309550313, + -187842.24023419546, + null, + -188387.07160945956, + -188503.3820257475, + null, + -189016.05459049373, + -189775.7899940225, + null, + -188485.53190433834, + -188608.75666870267, + null, + -188485.53190433834, + -188659.3952954119, + null, + -187594.8777657927, + -188056.2157138019, + null, + -188109.5947916895, + -188056.2157138019, + null, + -188135.7951117508, + -188056.2157138019, + null, + -188113.8147030654, + -188056.2157138019, + null, + -188023.85098966694, + -188056.2157138019, + null, + -188124.65543545736, + -188056.2157138019, + null, + -188126.67429510137, + -188056.2157138019, + null, + -188068.89540782082, + -188056.2157138019, + null, + -188138.17806449422, + -188056.2157138019, + null, + -188119.49823623613, + -188056.2157138019, + null, + -188123.9780570342, + -188056.2157138019, + null, + -188121.51859750494, + -188056.2157138019, + null, + -188082.81454332572, + -188056.2157138019, + null, + -188038.4334288893, + -188056.2157138019, + null, + -188097.6602407291, + -188056.2157138019, + null, + -188079.8329504583, + -188056.2157138019, + null, + -188129.3743830729, + -188056.2157138019, + null, + -188150.01873431922, + -188337.7090878203, + null, + -187857.75124697632, + -188150.01873431922, + null, + -187760.40303329699, + -188150.01873431922, + null, + -187858.44732430877, + -188150.01873431922, + null, + -188407.83621514795, + -188533.61152171314, + null, + -188407.83621514795, + -188158.7950138316, + null, + -188407.83621514795, + -188473.738548232, + null, + -188407.83621514795, + -188446.22688801138, + null, + -188351.8861077988, + -188269.27401706978, + null, + -188351.8861077988, + -188285.04208775162, + null, + -188351.8861077988, + -188324.66509707412, + null, + -189581.91550554175, + -190227.9999344756, + null, + -189581.91550554175, + -189775.7899940225, + null, + -189581.91550554175, + -190209.6170070622, + null, + -187744.01854014478, + -187243.66628145642, + null, + -187744.01854014478, + -187271.48480846945, + null, + -187744.01854014478, + -187256.19230974244, + null, + -190304.48024467833, + -190419.3938255866, + null, + -189251.39154025816, + -188158.7950138316, + null, + -189251.39154025816, + -189358.54226131324, + null, + -189251.39154025816, + -189455.7501465173, + null, + -187845.25254911988, + -187868.5464667596, + null, + -187845.25254911988, + -188033.49918109106, + null, + -187845.25254911988, + -187851.21871572215, + null, + -187845.25254911988, + -187800.99882697721, + null, + -187845.25254911988, + -187789.48509271396, + null, + -185000.47819436324, + -186176.69143772183, + null, + -186603.54049738206, + -186176.69143772183, + null, + -186176.69143772183, + -186169.3625546227, + null, + -185778.33475206984, + -186176.69143772183, + null, + -185769.4575393162, + -186176.69143772183, + null, + -185864.6939073649, + -186176.69143772183, + null, + -185242.38515533158, + -186176.69143772183, + null, + -190605.68260414473, + -190884.92755364833, + null, + -190605.68260414473, + -190852.65448954437, + null, + -190605.68260414473, + -190676.0383364286, + null, + -190605.68260414473, + -190794.98816362483, + null, + -190605.68260414473, + -190875.6299963171, + null, + -190605.68260414473, + -190881.4195072494, + null, + -190605.68260414473, + -190800.5661891712, + null, + -190605.68260414473, + -190967.90324167695, + null, + -190605.68260414473, + -189858.4613268521, + null, + -190605.68260414473, + -190796.21734701467, + null, + -190605.68260414473, + -190849.80556299916, + null, + -190605.68260414473, + -190227.9999344756, + null, + -190605.68260414473, + -190850.39999002474, + null, + -190605.68260414473, + -190705.93683743462, + null, + -190605.68260414473, + -190771.58442055932, + null, + -190605.68260414473, + -190703.81262351107, + null, + -190605.68260414473, + -190937.47881374045, + null, + -190605.68260414473, + -190805.20644104716, + null, + -190605.68260414473, + -190692.507124959, + null, + -190605.68260414473, + -190908.47378217717, + null, + -190605.68260414473, + -190864.96463177202, + null, + -190605.68260414473, + -190737.8835624348, + null, + -190605.68260414473, + -190739.5724284781, + null, + -190605.68260414473, + -190802.30922898772, + null, + -190605.68260414473, + -190698.23881648583, + null, + -190605.68260414473, + -190929.66979578658, + null, + -190605.68260414473, + -190729.50539915852, + null, + -190605.68260414473, + -190844.91909849216, + null, + -190605.68260414473, + -190813.14436611588, + null, + -190605.68260414473, + -189775.7899940225, + null, + -190605.68260414473, + -190895.66896662925, + null, + -190605.68260414473, + -190908.32604239337, + null, + -190605.68260414473, + -190964.17059618633, + null, + -190605.68260414473, + -190762.50171806797, + null, + -190605.68260414473, + -190994.52260283855, + null, + -190605.68260414473, + -190768.6419722291, + null, + -190605.68260414473, + -190804.9616245743, + null, + -190605.68260414473, + -190962.8796978228, + null, + -190605.68260414473, + -190835.27084363703, + null, + -190605.68260414473, + -190974.33881747143, + null, + -190605.68260414473, + -190876.57184446702, + null, + -190605.68260414473, + -190209.6170070622, + null, + -190605.68260414473, + -190834.01009906843, + null, + -190605.68260414473, + -190933.9534077934, + null, + -190605.68260414473, + -190909.64976137923, + null, + -190605.68260414473, + -190913.5105326216, + null, + -190605.68260414473, + -190796.94141805047, + null, + -190605.68260414473, + -190212.54156170116, + null, + -190605.68260414473, + -190781.4409062239, + null, + -190605.68260414473, + -190923.8425100799, + null, + -190605.68260414473, + -191035.1109422804, + null, + -190605.68260414473, + -190908.71441964828, + null, + -190605.68260414473, + -190741.38638934697, + null, + -190605.68260414473, + -190192.99199780272, + null, + -190605.68260414473, + -190885.78296118212, + null, + -190605.68260414473, + -190993.37192165887, + null, + -190605.68260414473, + -190961.12960518763, + null, + -190605.68260414473, + -190763.67489496517, + null, + -190605.68260414473, + -191006.89775095775, + null, + -190605.68260414473, + -190709.62985214093, + null, + -190605.68260414473, + -190934.3591051317, + null, + -190605.68260414473, + -190851.954708939, + null, + -190605.68260414473, + -190837.31528721907, + null, + -190605.68260414473, + -190807.84919101253, + null, + -190605.68260414473, + -190878.46789065155, + null, + -190605.68260414473, + -190967.49452304916, + null, + -190605.68260414473, + -190762.08180819644, + null, + -189416.02083849843, + -189505.9875498694, + null, + -189416.02083849843, + -189535.1434064379, + null, + -189416.02083849843, + -189668.16727616882, + null, + -189416.02083849843, + -189616.60988648146, + null, + -189416.02083849843, + -189638.23178416977, + null, + -189416.02083849843, + -189570.86066694462, + null, + -189416.02083849843, + -189576.08308589703, + null, + -189104.16659807847, + -189155.14860018887, + null, + -189104.16659807847, + -189239.60796500134, + null, + -186870.85476427, + -187252.2711895733, + null, + -187109.55145493208, + -187252.2711895733, + null, + -187385.0923661435, + -187252.2711895733, + null, + -186563.35158898422, + -187252.2711895733, + null, + -185829.80948671233, + -187252.2711895733, + null, + -187041.9723647092, + -187252.2711895733, + null, + -188769.20753909196, + -188557.4596234686, + null, + -188769.20753909196, + -188502.3898432576, + null, + -188769.20753909196, + -188505.68688054534, + null, + -188769.20753909196, + -188482.3157020377, + null, + -188769.20753909196, + -188505.51258337646, + null, + -187796.24083019167, + -187699.42874421572, + null, + -187699.42874421572, + -187880.24230509295, + null, + -187699.42874421572, + -187644.4018088615, + null, + -187699.42874421572, + -187728.90535634218, + null, + -187938.3617763031, + -187880.24230509295, + null, + -187938.3617763031, + -187852.92563407216, + null, + -187938.3617763031, + -187868.5464667596, + null, + -187938.3617763031, + -187906.33280999027, + null, + -187938.3617763031, + -187894.400024042, + null, + -187938.3617763031, + -188158.7950138316, + null, + -187938.3617763031, + -187851.21871572215, + null, + -187938.3617763031, + -187773.89161390605, + null, + -187938.3617763031, + -187929.1853205998, + null, + -187938.3617763031, + -187896.99301672008, + null, + -187796.24083019167, + -187938.3617763031, + null, + -187938.3617763031, + -187768.02879467254, + null, + -187668.34843839586, + -187852.92563407216, + null, + -187668.34843839586, + -187640.26178314057, + null, + -187668.34843839586, + -187703.77673713973, + null, + -187987.33055419096, + -188142.36563635623, + null, + -187594.8777657927, + -187987.33055419096, + null, + -188138.17806449422, + -187987.33055419096, + null, + -188038.4334288893, + -187987.33055419096, + null, + -188135.7951117508, + -187987.33055419096, + null, + -188129.3743830729, + -187987.33055419096, + null, + -188265.23932553243, + -187987.33055419096, + null, + -187987.33055419096, + -188171.8323130677, + null, + -188123.85049620818, + -187987.33055419096, + null, + -188126.67429510137, + -187987.33055419096, + null, + -187905.26212099823, + -187987.33055419096, + null, + -188068.89540782082, + -188319.47292758749, + null, + -188135.7951117508, + -188319.47292758749, + null, + -188319.47292758749, + -188064.28392279483, + null, + -188265.23932553243, + -188319.47292758749, + null, + -188360.45872868263, + -188319.47292758749, + null, + -188319.47292758749, + -188171.8323130677, + null, + -187952.69828486128, + -188077.23734942425, + null, + -187095.6197581376, + -187276.75570563087, + null, + -187291.09671769937, + -187276.75570563087, + null, + -186826.48542049516, + -187276.75570563087, + null, + -187109.55145493208, + -187276.75570563087, + null, + -187204.27240844848, + -187276.75570563087, + null, + -187999.3435431426, + -188111.17360157988, + null, + -187999.3435431426, + -188128.15679037262, + null, + -188054.9089034451, + -187999.18462355132, + null, + -188054.9089034451, + -188092.18378419022, + null, + -188032.08428389157, + -187773.89161390605, + null, + -188032.08428389157, + -187768.02879467254, + null, + -188828.710009183, + -188990.4010166953, + null, + -188828.710009183, + -188932.35300179519, + null, + -188828.710009183, + -188987.5553701727, + null, + -188828.710009183, + -188980.99251783875, + null, + -188068.89540782082, + -188269.90433919505, + null, + -188135.7951117508, + -188269.90433919505, + null, + -188265.23932553243, + -188269.90433919505, + null, + -188269.90433919505, + -188171.8323130677, + null, + -188269.90433919505, + -188218.0680871657, + null, + -188360.45872868263, + -188269.90433919505, + null, + -188068.89540782082, + -188242.81984720996, + null, + -188527.56986848032, + -188242.81984720996, + null, + -188265.23932553243, + -188242.81984720996, + null, + -188123.85049620818, + -188242.81984720996, + null, + -188138.17806449422, + -188242.81984720996, + null, + -188174.51164152424, + -188242.81984720996, + null, + -188129.3743830729, + -188242.81984720996, + null, + -188135.7951117508, + -188242.81984720996, + null, + -188038.4334288893, + -188242.81984720996, + null, + -188360.45872868263, + -188242.81984720996, + null, + -188126.67429510137, + -188242.81984720996, + null, + -188483.53884869776, + -188515.5010910575, + null, + -188483.53884869776, + -188574.65523758496, + null, + -189749.7370829404, + -190098.24210039582, + null, + -189749.7370829404, + -190295.73742487756, + null, + -189749.7370829404, + -190147.97551236962, + null, + -189749.7370829404, + -190113.79330947442, + null, + -189155.7502287397, + -189595.58720010423, + null, + -190823.13696070746, + -191048.32021429407, + null, + -190823.13696070746, + -191088.9053977869, + null, + -190823.13696070746, + -191072.42749505086, + null, + -188948.92747001626, + -189148.04361715776, + null, + -188948.92747001626, + -189136.8179316544, + null, + -188527.56986848032, + -188207.51154255582, + null, + -188135.7951117508, + -188207.51154255582, + null, + -187594.8777657927, + -188207.51154255582, + null, + -188138.17806449422, + -188207.51154255582, + null, + -188038.4334288893, + -188207.51154255582, + null, + -188129.3743830729, + -188207.51154255582, + null, + -188265.23932553243, + -188207.51154255582, + null, + -188123.85049620818, + -188207.51154255582, + null, + -188126.67429510137, + -188207.51154255582, + null, + -188360.45872868263, + -188207.51154255582, + null, + -188126.67429510137, + -188151.91592219454, + null, + -188135.7951117508, + -188151.91592219454, + null, + -188360.45872868263, + -188151.91592219454, + null, + -188129.3743830729, + -188151.91592219454, + null, + -188138.17806449422, + -188151.91592219454, + null, + -187594.8777657927, + -188151.91592219454, + null, + -188038.4334288893, + -188151.91592219454, + null, + -188265.23932553243, + -188151.91592219454, + null, + -188151.91592219454, + -188126.03656747416, + null, + -188151.91592219454, + -188171.8323130677, + null, + -188123.85049620818, + -188151.91592219454, + null, + -188673.74140925996, + -188779.56731104586, + null, + -188673.74140925996, + -188683.22659860307, + null, + -188673.74140925996, + -188728.41122024317, + null, + -188503.80500650342, + -188548.4840723725, + null, + -188503.80500650342, + -188508.64502421487, + null, + -188503.80500650342, + -188432.78907464017, + null, + -188503.80500650342, + -188373.82014025023, + null, + -188703.13655352002, + -188799.83721849287, + null, + -188678.94430401377, + -188762.11742505888, + null, + -188594.7332906974, + -188619.68472282932, + null, + -188597.86898873816, + -188574.65523758496, + null, + -188784.85977225626, + -188957.1549401508, + null, + -188784.85977225626, + -188557.4596234686, + null, + -188784.85977225626, + -188701.5447475946, + null, + -188784.85977225626, + -188971.72404492387, + null, + -187857.75124697632, + -188110.75597498723, + null, + -187760.40303329699, + -188110.75597498723, + null, + -187858.44732430877, + -188110.75597498723, + null, + -187920.62374587829, + -188110.75597498723, + null, + -188436.68427228258, + -188283.31658936644, + null, + -188666.33131441893, + -188694.51829272378, + null, + -188666.33131441893, + -188750.53984223565, + null + ] + }, + { + "hoverinfo": "text", + "marker": { + "colorbar": { + "thickness": 15, + "title": { + "side": "right", + "text": "Node Connections" + }, + "xanchor": "left" + }, + "colorscale": [ + [ + 0, + "rgb(255,255,217)" + ], + [ + 0.125, + "rgb(237,248,177)" + ], + [ + 0.25, + "rgb(199,233,180)" + ], + [ + 0.375, + "rgb(127,205,187)" + ], + [ + 0.5, + "rgb(65,182,196)" + ], + [ + 0.625, + "rgb(29,145,192)" + ], + [ + 0.75, + "rgb(34,94,168)" + ], + [ + 0.875, + "rgb(37,52,148)" + ], + [ + 1, + "rgb(8,29,88)" + ] + ], + "showscale": true, + "size": 10 + }, + "mode": "markers", + "type": "scatter", + "x": [ + 933483.4567391834, + -366283.69394185964, + -181700.15961593334, + 429817.1381553038, + 77282.61765229338, + -894216.5057303684, + -340099.1897493526, + 458352.946828549, + 683996.0178905013, + 233201.9544420003, + -884245.3767823352, + -347699.8273738099, + 465403.5083914787, + 183588.8342892922, + 332347.5294036897, + -554819.1953686934, + 950439.392680525, + -956642.0026505338, + 801315.0897775844, + 856763.4161872992, + 543040.1381149603, + -190477.9447491629, + -316220.8201520302, + 470707.5911725738, + -40084.87664969729, + 330812.40467371355, + 909323.2027302729, + -968835.1525967998, + 902764.2360196946, + 896641.9692342175, + -21448.410189587543, + 957697.1302399324, + 482919.71377339005, + -922113.7465409437, + 320129.40833918104, + -115988.0603293435, + 320720.9523268768, + -183915.13182539286, + 467586.5371865227, + 155810.07246206168, + -255273.7184953122, + 683377.9850822419, + -820786.1217632035, + -514479.34659976815, + 324337.7237462275, + -158992.66117613608, + 674390.0901959051, + -545638.2423811845, + 604934.7306536661, + -162966.46759127188, + 914467.6632273761, + -881198.5201276346, + 393875.6303361353, + -173691.57445018858, + 101734.4186530189, + 102890.59825682867, + -709061.166520672, + -704117.2696122591, + -78921.56012487228, + 82695.01147360781, + 892639.6045231073, + -407373.19441791973, + -542090.163883535, + 383602.4527648727, + 587710.1196072107, + 326147.5533448339, + -995533.7825129096, + -534018.0751121859, + -830220.9718566176, + 736765.1546685816, + -377702.94197033683, + -261148.38158098143, + 662042.6234050796, + -883231.0328140896, + 487333.2756261608, + 793285.0618945669, + 884802.6012272596, + -600937.0920693981, + 379335.77436914813, + -840629.2261889379, + 360724.37328794546, + 881922.3999063373, + -78715.90056435295, + -188072.50905787342, + 93214.08443516676, + 212406.3833148444, + 42356.860080162485, + 864742.738718304, + 466495.4269516823, + -72851.75443980707, + 296865.7210732206, + 201690.5001386915, + -809602.3854719092, + 455089.0566991821, + -421789.7677491984, + -730099.8140962289, + 941129.1135389946, + 869007.5350815292, + 717990.2465833629, + 197134.69020416553, + -894718.6391275503, + -723155.4734128875, + -8379.412339935, + -909596.9341151802, + -292082.4385481624, + 153864.8390642192, + 712361.2951724086, + 914316.0572963407, + -919652.1895690879, + 626046.287861095, + -671624.2805811912, + -564517.9022853523, + -836089.2335397754, + -727307.2831803005, + -63184.91059391906, + 168229.98075621086, + 645979.5543442839, + 438081.87126206444, + 826920.9352810534, + 602407.9673077478, + 631265.6698211387, + 777914.9540390078, + -547642.2852201579, + 526877.4573910712, + -38327.955008397694, + 418566.19868298183, + 197973.49488166915, + 184766.2002418735, + 715784.4905156529, + -516221.8913464849, + -434623.4691013651, + -5596.113939467129, + 648246.2669582678, + -400567.27083104127, + 76755.93591468189, + 663904.7617724848, + -897623.4682337678, + -857957.9247302185, + 517837.1986306305, + 232161.74846487082, + -321727.77392575116, + 538787.438030321, + 617187.9259473727, + 704105.6988044545, + -169312.1842001153, + 739393.8950776226, + 27058.202771294447, + 21387.915970575654, + -898957.63764533, + -96792.91913518484, + -21227.49778743449, + 276976.17238035274, + -755074.7222507059, + -3151.853730977372, + 447205.8626187305, + -409297.7949012127, + 721040.7630583367, + -551799.6409460857, + -495134.76313686476, + -566236.2561708712, + -383589.25783163536, + 520674.05570668046, + -379083.4425797596, + 714780.540659039, + -604109.0475752635, + 792749.3740975467, + -695748.732719113, + -841161.2589156998, + -195189.11757277558, + 431924.74953544035, + 876253.9237453884, + -969676.0286274004, + -814469.2956539985, + -203858.51979069636, + 987883.3246678433, + -754434.0508021094, + 56220.819532364796, + 291351.1195352343, + -877967.6203988978, + -616004.2932641512, + 650337.6304247482, + 767568.1344808547, + 615619.3556276786, + -205710.37365605726, + -452877.2624604085, + 170430.45436057568, + 66750.84993936031, + -771349.5296019091, + -76184.7834570475, + 223240.49951923918, + 47468.46409605654, + -900078.2113245784, + -707282.1263826032, + 498738.2468210295, + 623681.4455269715, + -439114.2156817536, + 712395.3589967475, + -67881.32275742265, + -903849.429763719, + -761921.4177536746, + -289319.9518633871, + 430326.2401265009, + 526519.186730167, + 628334.3788628908, + 141499.46505001077, + -25360.886258957606, + -709849.9682138389, + 472144.8048529735, + 642676.881996413, + 985082.8450351985, + 177913.9037321007, + -475020.10876459733, + 829759.5568487745, + 621840.5604610262, + 241848.8026121215, + 272875.8067462236, + -434770.8766206291, + 806359.0699789898, + -863812.5608722302, + 675721.386773738, + -792990.950272441, + 79002.14739262879, + 773503.3528407407, + 267310.8001232671, + -49360.913627868984, + 81010.32478152437, + 698548.8043876948, + -777612.1742197457, + 25182.32358250505, + -459999.322682785, + -530206.2725823066, + -285897.65920436603, + -338463.1555088351, + -441941.0409727664, + 507573.35056005995, + -668626.5976141022, + 690145.8497871232, + -89085.74572926975, + 915263.3573844782, + 713479.5856259892, + -767480.6633687961, + -359558.8897121338, + 202408.6912441687, + -472765.09146025503, + -224465.75825735682, + 40079.99249920036, + -257529.7647083643, + 850913.531484576, + -907282.0446569585, + 843622.9094645538, + 115292.52144101188, + 284988.9338097777, + -401281.38711647975, + -486049.0391869989, + -623176.5609360784, + 157004.07763181155, + 978318.5934822272, + -822372.6879477986, + 625086.0530151355, + 398851.1180425776, + -982531.8952967137, + -388346.84791477025, + 32321.233344296375, + 829256.0232519812, + 157263.60815314978, + 850940.5457161552, + -652873.5736363298, + -165877.75686732464, + 400648.1628683858, + -844246.5819693888, + -484658.3050507276, + 27244.414390010574, + -235998.43433836033, + 832880.6118917629, + 990684.9044964272, + -878821.3304950048, + -458711.1024669723, + 802251.3174304304, + 408034.5906397866, + -504542.1352043298, + 561261.9310804654, + 97633.05212708894, + 502900.9484947351, + -405277.08141188713, + -641913.5259541672, + 15427.685521914647, + 292571.0942710789, + 942482.3561708895, + 324668.65708667634, + -95612.21767736993, + 280237.001949774, + -823020.539712868, + -970779.9930329554, + -486550.24362551223, + 231074.82024078374, + -547870.9118915705, + -702264.0646188254, + 158951.22444749888, + -573579.8815497239, + 291482.05335721734, + -662208.9345963952, + 113379.54184456533, + 718826.5521028038, + 670560.6168920255, + 381475.48544957186, + -964533.0899372523, + -573964.3844729715, + 860516.1611720189, + -641961.420259417, + 940801.7662788922, + 444032.79606093984, + -484224.4518047343, + -149110.68317453036, + 975774.1818193704, + 900636.500591634, + 725677.6911089884, + -611806.3248940435, + 328217.0229704833, + 431602.0630810575, + -96395.66533854649, + -230307.1527079439, + -866085.6054143156, + 596873.7891156799, + 728757.2302041758, + 185469.61189416988, + 506079.2433519592, + 186411.39583669396, + 661913.0057686664, + 99207.88555998539, + 852437.5161791889, + -134443.11900166151, + -124462.9076692243, + 6274.1707185636205, + 505074.68310500745, + -640937.7577869985, + 348115.135016678, + 752993.026601618, + -798864.8616855099, + -862762.1182790956, + -356820.70111571206, + 177560.89683188248, + -697806.9091883699, + 228554.08877429407, + -104591.68288544696, + 596758.7520509677, + 684264.4055752846, + 38860.38466092723, + -293966.9337601134, + 205575.50894640197, + -238955.24483877773, + -887559.5147387895, + -810392.7287200175, + -384269.55450074596, + 825928.0205778476, + -630743.5726622504, + 602845.2465308853, + 254733.63076877088, + -223735.95682974058, + 857326.5405612354, + -606908.4936988576, + 327038.5420484947, + 900407.8115062198, + 570248.7195378274, + -196417.42374274827, + 302746.5200068291, + -185247.41886056017, + 661833.7999114355, + 342718.2897794898, + 21877.881505122376, + 897967.5960706323, + 426984.0513968357, + -910074.4476692642, + 290487.3206044216, + -648161.226738482, + -96665.56418908923, + 235712.27042544284, + -597264.9068567748, + -837885.1665043108, + 882596.9345251996, + 159141.450872055, + 381868.0890948134, + 978774.8671757412, + -588807.6533459923, + -194279.80743491635, + -596759.6697357827, + -520404.53542439133, + 839521.0558089447, + 288080.60505450726, + 771674.8466703555, + -215057.2188755595, + -102229.42822348347, + 376753.80948773184, + -25705.236251931663, + 235382.84267939447, + -768077.3568489492, + -13964.755390297512, + 660747.1133854709, + -435531.37121292826, + 988256.9959860345, + 28339.46953594202, + 967043.4622880626, + 926635.0133391499, + -535039.744551085, + -666783.5869524132, + -212732.11676849678, + -359443.6248692099, + 92578.11928373361, + -150943.60975530808, + 942137.0889056928, + 263248.3851843943, + 159066.9874468782, + 435040.8329212534, + -268079.75936596474, + 403899.78181010886, + -405306.02044891764, + -476745.24667233275, + -88739.66357379004, + -655098.6365330735, + 286552.26150755887, + -252963.25799429885, + 486620.05816211493, + -328431.293413165, + 986835.0736272966, + -41600.750115048155, + 629509.3608464187, + -653765.5633018771, + 487810.7120183575, + 79696.72280020501, + 342674.5313034989, + 93058.14653318057, + 792119.881503258, + 167826.07426211916, + -38509.35045387782, + 464766.31972976757, + 502981.5468323673, + 868139.6588996886, + -170207.19763056102, + -443329.20444239624, + -525909.7546974054, + 578051.3518156023, + 61547.78938514394, + 522257.1386652817, + 577392.8090613643, + 665091.1247342328, + 786778.6542879742, + 39590.950316552575, + 815950.3189379036, + 586091.0234255437, + 38830.39103194141, + -635979.9761410847, + -651013.7192327545, + 811131.8183294842, + 190593.36686297934, + 588024.254014322, + 316053.7349427122, + 587577.2507856083, + 351301.77422378736, + 848868.644806498, + -299923.25938496925, + -360885.8773834229, + -345441.7571526054, + 437694.3292319815, + 947333.3380176532, + 916183.0371557598, + 388152.5796828631, + -789394.6420817033, + -84551.7835832943, + 946906.6064106144, + 608890.8180953821, + 677591.4524686069, + 521072.90601517487, + -178216.50664417076, + -14463.351502338017, + 554892.5945752865, + -387963.4681192348, + 717447.7001192871, + 180005.58774911758, + 698099.5531065653, + -656436.9674364273, + 733527.2827753351, + -580427.8565184487, + 345722.8774127468, + -150377.71014886748, + 155998.46897914205, + 65171.48029580055, + -181637.07161457854, + 308041.3932794368, + -287412.34625400434, + -656253.5214717102, + -648310.0496600611, + -746381.2366853913, + 83622.16583016257, + -19364.354844584097, + -625569.4912948359, + 185128.5230804234, + 854658.2178867612, + -502221.2423468795, + -233364.95639678233, + -941688.012740526, + 561686.4496072094, + 961212.1187088809, + 755173.4644584443, + -476509.16832876677, + 287186.1271102667, + -561334.5561021474, + 227756.20584921018, + 506936.28230545484, + 264911.4833220334, + 485523.02644619404, + -374210.50593961857, + 712593.3587444853, + -105937.42716478017, + -482613.4945723788, + 414860.97835098446, + -452038.74419801694, + -535310.6977113642, + 381373.32463077886, + -974324.3390105796, + 806644.7911977044, + 127035.20726680085, + -613747.5981969669, + -825092.242771966, + 987745.54077045, + 807729.8305085383, + 820212.0126397252, + -911815.111465116, + 489670.6800430286, + 959231.5187373273, + -927929.0330374057, + 588029.7165107527, + -171353.0669321337, + 993726.2469277983, + 77338.04827971746, + -426997.16687418986, + 712085.8290284196, + 435772.6139411109, + -440084.7440775184, + 710759.9155269597, + -215550.8344180117, + 891032.4039561477, + 790332.191399174, + 963066.2603491714, + -685442.0011943391, + 57957.366801817625, + -730374.7417052435, + -47892.04997571828, + 610875.7945680574, + 632616.1117033211, + -553534.4002918107, + 823874.0941544147, + 787091.7877283216, + 669797.903895613, + 951883.2032729578, + -610474.3031996711, + -359953.17372292135, + 800919.0893525608, + 288707.8838759225, + -788593.7694426945, + -699791.7379094269, + -576254.7272775868, + 962442.7194031442, + 193663.74090908578, + 192898.7761189127, + -636627.180160112, + -678923.3564325646, + -536139.8345770207, + 483038.4019771743, + -615542.8321597268, + -425154.8175794468, + 389129.0935796654, + -622531.8936491543, + -942230.4813874803, + -702245.1002356531, + 167597.5150278466, + 426236.00695759256, + 901070.8355996925, + 102710.81065561782, + 292658.47368995537, + 772772.6984495806, + 966475.7136151139, + 787936.2857831245, + 417358.92862643854, + 530081.4122312207, + -761342.1567954683, + -290976.6678246506, + -532125.9656384134, + 28934.677807041397, + 337954.1081590967, + 244901.82551867145, + -166247.8824189475, + -676791.1366678317, + 711185.3610915573, + -492150.0337925884, + -672459.1537540519, + 391637.40453810303, + 301584.1595675015, + -728121.2615781027, + 944314.1496489326, + -645320.261332402, + -270676.14341981197, + 296918.82281927473, + -797857.9983668334, + -613602.9955438446, + -259651.77389573512, + 676283.1023599645, + 362932.4315698379, + -926960.4448085378, + 343087.31060714746, + -670836.4706392518, + 118341.36735152123, + -702119.1055820582, + -839634.4902872923, + 342991.9322557311, + 758907.6565430774, + -264607.122813989, + 291461.7572568536, + -573251.5566775127, + -471326.4887253379, + -34270.002993454174, + 896594.9176006076, + -146728.84329680348, + 907629.9728597652, + 778318.4083408179, + -868290.3040404802, + -735155.8654195756, + -45679.01742848979, + -97941.64126586735, + -892081.6025005636, + -813369.5244834947, + -266277.8424595926, + 499966.1047499513, + -163970.4374781452, + 706091.1703498379, + 245960.7519979834, + 233684.57456860182, + -926848.5189596672, + -51883.16139370164, + -462205.5848496869, + 81873.6562964113, + 145994.06525380543, + -64795.584166803535, + 254279.6946992969, + 306373.6140003388, + -624947.0977210656, + -966781.2640380245, + 460032.0894692578, + -397043.7914764817, + -330148.6543510428, + 542536.1597444247, + -563315.1228241045, + 949568.659661479, + -357140.1701558412, + 225969.41310828787, + 216192.12300347246, + -203812.76400936677, + -852481.3244450431, + 699178.8707138866, + 121511.70759860253, + 932707.054767189, + -669959.8044202978, + 471252.6446453877, + -418007.2471374858, + -545416.2893863735, + -481867.3056995857, + -595545.0990912922, + -998353.339486974, + -794489.958155848, + 335634.35548853973, + -242831.30498189954, + -580395.9993417307, + -751958.7094608329, + 578302.6554046244, + -745776.6332386915, + -70504.44002347355, + 405209.7695122363, + 109205.8892351293, + 586607.876237558, + -712531.0858282759, + -653203.1728910306, + -684804.0449314632, + 942573.4499942933, + 242950.78076844878, + -19300.152901333688, + -580762.4057397209, + -191488.59545737063, + -77572.38474831896, + 529076.7318097918, + 36891.53405376744, + -759955.1160411198, + 589971.9146077507, + -901190.6291528433, + 499075.9648008205, + -376632.64586787904, + -737243.4192446303, + 853135.4107512173, + 686457.484463654, + 521281.92136153625, + 436109.83555232076, + -806662.233202842, + 910837.6132632548, + -57990.46711172173, + 705446.5746370952, + -335142.5920204685, + -740869.9580183655, + -222547.52258726262, + -832582.2800456601, + 752502.5085062573, + -355715.62235270557, + -340834.80306814297, + 428799.7229905596, + 825623.1467348118, + 864376.9474193164, + -590701.5223808518, + 226406.7560612437, + -190301.22204413003, + 117844.33198406918, + -167083.48793762305, + -918312.1848531989, + 706355.099357429, + -689526.4698726246, + -139916.09976592124, + 937041.4017451311, + -105081.2965803316, + -313056.76625531854, + -642695.7852381483, + -477291.66072254523, + -479638.8660145041, + -954606.2705035188, + -764170.8582776308, + -204790.6833328741, + 388801.7469946561, + -582315.3533217438, + -264500.0476571513, + 855596.2450162555, + 615016.0555362441, + -529690.6065362472, + -92293.23122608424, + -977538.4639587627, + 162333.8569723003, + 831880.4547810224, + 71904.65654530453, + 675024.5044104133, + 72375.46008868323, + 46135.90915074761, + 355766.25091383286, + 532252.0967147304, + -198592.19940670926, + 485939.57244768913, + 729754.7566167935, + 258128.7709562441, + -728546.1606056102, + -630700.5539374348, + -200619.29049779504, + -773476.9110081785, + 488523.16278449906, + 479337.6307810131, + -271896.07094580337, + 964709.7956724573, + -50300.24303033032, + -150561.66474866783, + -743883.5859656468, + 6067.961335880279, + -834076.6783541171, + 390848.29142426414, + -744704.8915039272, + 148673.7205464348, + 130164.00155151908, + -739805.0759459997, + -606712.3381309088, + 543108.1443403312, + 168551.44621210094, + -414611.0283050124, + -174433.36460080495, + -417367.8461293129, + -66996.95100886682, + -247523.22942080896, + 851726.2346237586, + -382806.5929270614, + -764137.0198895781, + -144882.33504458336, + -287041.85032694094, + 922144.5453300388, + -438724.37629613816, + -194690.83075642347, + -238963.84272863713, + -830756.8210522116, + -998872.3625218678, + -735897.559121462, + -11490.554677258791, + -551483.7339817027, + 130910.4232699998, + 311550.7252590313, + -797945.4411613465, + 13303.11779384674, + -410427.3486838355, + 26724.00570022315, + 820769.508205695, + -623841.5453229153, + 714809.7032498644, + 178509.2018106782, + -558219.8487983729, + 391479.0624586482, + 322721.38939944515, + 270285.70623006474, + 225652.9409437853, + 329288.4568519665, + 479297.22540408594, + 72393.98898358118, + 480997.48548787157, + -63407.82252240862, + -106200.53386350947, + -862100.7045863331, + -800151.1762025431, + 897190.8479211597, + -208079.4572164033, + -944846.5041680955, + -417134.1848025454, + -290539.2420382984, + -887279.9756945478, + -651653.1621533652, + -568650.6221028853, + 993745.8997021096, + 363619.80312148435, + -773588.2394005709, + -86410.67840110871, + 795103.7666010536, + 388097.2852283364, + 389360.08405924926, + 265851.2953266563, + -270637.2190499677, + -43689.021691403206, + 896292.0975587853, + 145659.90931488003, + -707573.6735011062, + -414518.1562494407, + 388940.7237708673, + -332757.17185846076, + -109478.99206912171, + -253272.44746278966, + 837230.831091525, + 35545.38425009501, + 495908.44835821545, + 633373.1055499234, + 627513.0531605089, + 5777.368955611983, + 969500.6935214978, + -628672.3052450034, + -988360.2995223184, + 955674.4657398859, + 857473.9729792982, + 79213.30937647352, + 544791.106235158, + -588655.115372228, + -584061.8464251115, + 295371.4252235613, + -27949.358020108895, + 797890.0566661789, + -113679.02802626473, + 310251.22360131843, + 164283.0055700728, + 989816.9831035233, + 314454.13470897754, + -954595.6174402137, + -933962.716237892, + -510.3139191593442, + 590120.0921364109, + -692982.0177167297, + -553070.1308286763, + -448513.0443459069, + -334263.55628303875, + -250006.68051605744, + -807962.1075369099, + -902649.6626201568, + -402653.8862268767, + -80624.23169326305, + 552387.6544885327, + -244246.73564486898, + 205076.87753395643, + 606747.1336211909, + -691607.6877215977, + 279178.27722758945, + 131674.4182435794, + 612362.2882014046, + -71914.47212366264, + 225545.22028382996, + -925298.2728422172, + 91195.20050579122, + 735378.9273222877, + 349647.39931373636, + 145479.8058977542, + -947552.8736429994, + -688198.1244644225, + 788237.1509982867, + -18287.692185093187, + -12554.053268992948, + -134804.31729459565, + 63748.03762520176, + 798123.2330098836, + -730693.6302666769, + 991252.3220477656, + -724237.2665346239, + -213759.13286812452, + 869304.3468442438, + 499943.2657077738, + -579686.7700302646, + 867438.5397914342, + -4827.577509003644, + -702870.8634419405, + -268633.07539224834, + -131930.58197698227, + 700768.4067999736, + 614951.4848368847, + 458579.5987339245, + -911098.2844415642, + 317601.92327939294, + 504389.96755462553, + -401022.0090703962, + -708616.5556564817, + 294994.05839854374, + 924757.8050174923, + -249865.37102783157, + -427540.7100207227, + 823338.5231087147, + 250755.82625401815, + -380771.6027278605, + -445182.7447094121, + 855370.8433321096, + 540689.0465774519, + -896844.2337849404, + -439966.5707033511, + 309854.33003742876, + -156030.00790683596, + -941903.7408313074, + 15657.746200550937, + -764227.7601215485, + -190501.65951282083, + 926306.3770224456, + 542915.3159955675, + -871340.918829856, + 327602.8913810769, + 408629.83762795135, + 750911.3760363817, + 840277.1209069031, + 639627.5654747885, + -805200.8901203491, + -751563.4689428771, + -555548.58774043, + -527930.7890435532, + 147982.52449250926, + -604309.8816956244, + -66662.88622797457, + -142276.73243965567, + 195841.51413321306, + -765345.5907933846, + 224531.28390583687, + 526520.4578980436, + 479163.58732411556, + 901577.2016848045, + 240478.33947415854, + 398039.6335712524, + -485795.3631268366, + -914154.7524448048, + 872437.5789128591, + 849668.834493184, + 644733.2242558899, + -460879.7702003471, + -989885.9851187116, + 183309.3946068618, + -824909.8451051109, + 687404.268907857, + -429108.25412861933, + -595990.473675589, + -181390.3292990644, + -686538.3272101553, + 208812.12265455473, + 821746.0434958095, + -238610.32768447953, + -570111.8851928166, + 797758.6314379035, + 561758.7789009119, + 843756.7231722763, + -31810.158001698506, + -171957.9345640796, + -114038.38839013437, + -368898.693234492, + -863832.567187541, + 787162.6919805454, + -222170.71458106406, + 121858.85247747663, + -772067.9564600968, + -784157.5552125777, + 158571.17886839612, + 177798.96221545432, + -620869.2866417456, + -180971.23048847297, + -5574.809952380689, + 233972.66599604284, + 116245.11793368476, + -134478.26459281886, + -666823.288382161, + 579455.079592233, + -467262.6148439527, + 294975.2601213742, + 543888.6076355122, + -245507.55541121028, + 758539.5335840486, + -859686.782273051, + -141632.02029586319, + 108260.35873663887, + 251197.94471248414, + -972132.6558257593, + 981186.9044304946, + 957377.2427948934, + -38673.82262208263, + 883506.9779315428, + -811148.5473097427, + -232038.3512543973, + -608990.7118987952, + 524049.83397608064, + 850729.4896499905, + -644057.7138295526, + -459114.2883209851, + -978545.948621703, + 403910.2770509948, + 799750.1403151368, + -906109.1085695425, + -603784.8030093274, + -294101.62692507624, + -504573.22072466405, + 763622.7483051696, + 85185.09216985381, + 937964.2752123139, + -819933.6966757734, + 117414.68728588545, + -529632.8416100357, + 407849.35765214736, + 306181.0172647059, + 170270.17455860748, + 724853.3688152217, + -937535.5504195595, + -859985.4705176337, + -688032.7238607942, + 557391.947496803, + -560661.2367481291, + -187084.41612170535, + 662360.6947379261, + -576159.619036896, + -519623.84609460743, + -832944.397357346, + -215800.92803963114, + 199075.24870778405, + 394614.72439210746, + 352366.57067190215, + -623029.4332761565, + -603707.9177931123, + 10360.260927728903, + -548271.1296783158, + 21788.795921174886, + -769299.1530569749, + -821186.9636366412, + 900779.2194563157, + 182241.99218478377, + 272834.1028016543, + 971904.6866248937, + 764825.2585659927, + 362827.25527501915, + 541692.996148921, + -925406.735275438, + 308985.1726458357, + -96153.49873239044, + 346831.7239236365, + 503378.7038212665, + 586886.7109516746, + 595780.2402537148, + -963728.5844242207, + 318664.61664875766, + 279402.88259371225, + -491878.34233527817, + -409101.8929978014, + -866017.5489527519, + -251516.68698053743, + -299647.1643384531, + -83799.97128770666, + 448362.05638158624, + -533859.336437661, + 962736.9650975642, + -28443.047712939817, + -301208.0583927057, + -353833.05990219815, + 167452.6822446154, + -746593.9791985748, + 955947.5418821241, + -499328.8053326861, + 316232.58918972244, + 366636.79277629725, + -288547.1455220523, + 245195.9363499303, + 235888.86308776337, + -552997.699364014, + 593303.1260341944, + 489050.00710199587, + 539313.0418165693, + -315125.91695923463, + 534719.4402519176, + 793149.2200619061, + -868389.8986401182, + -172331.15737877958, + -91761.8873428805, + -210116.35963346652, + 395606.2910396527, + 264162.3282401524, + -647784.1034083248, + 345839.8296194911, + -461608.042010762, + 202813.21901563354, + -940957.0717831916, + -109983.74705520587, + 845084.6710773596, + -752765.3016842231, + 436452.16607724025, + -25086.872014054683, + -967602.7232259676, + -251233.1686301623, + 974085.6677052858, + 313601.9890748296, + 497399.5391862629, + 664537.2889734871, + 667260.2455580661, + -392080.3345065982, + -303519.81932502234, + 922918.7525526405, + -21113.56907745132, + 962506.391907379, + -41909.80183653714, + -642915.2614714748, + 970902.747844056, + -697653.5920095402, + 484438.90283956594, + -399022.00141791574, + -303424.29995457444, + -991422.9130151526, + -976119.2708692483, + -426009.1013400598, + -498362.87473521114, + 153911.72895294524, + 738202.9022251036, + 808881.7666505064, + -316101.8344371189, + 442656.2126676581, + 461854.7596796827, + -914818.184835072, + -818285.8088131602, + -740268.1102057132, + 887110.8021155552, + -200447.47217449464, + -953049.0807226555, + -176233.96315346574, + 829080.011192042, + 458315.88583769836, + -313508.638729566, + -635298.0399664217, + -494510.68649583595, + 889116.6813086162, + -28336.207287975813, + -804871.496733351, + 479027.0055964698, + 29261.851543776364, + 518329.40171165596, + 963742.9327330225, + 132402.84519054813, + 146669.8955315029, + 980867.726299704, + -427500.822387743, + -589376.471258098, + -10632.05328570671, + 115065.27643567743, + -365883.03657564067, + 439530.6615365946, + -589328.8578121014, + 597885.198668642, + -170929.1070357075, + 388957.0261418009, + 9216.576356292138, + -471235.0368947404, + -103892.01976106044, + 20603.31430457385, + 890370.37680295, + -575990.3314369438, + 415033.51132967125, + 68047.90214285994, + -647328.0505657532, + 664130.1603214218, + 434627.21160258865, + -928160.5234004618, + 34730.5396936699, + 803291.2345585454, + 383509.55259038025, + 130582.23727285955, + -250639.40379351468, + 763333.6052188507, + 456729.16084220127, + -454744.80523948825, + 130968.58000013855, + -140678.6939033493, + 414844.49911879183, + -593975.1245301302, + 173335.4152895037, + -368465.52757314546, + 262822.0069579461, + 987602.5222118099, + -348818.8071499936, + 285759.05408772104, + -9325.835499452318, + -855993.513669304, + -363304.084007612, + 597488.8439013408, + 97243.28617677136, + -330603.60724479664, + 187416.40021586226, + 513200.7984407272, + 883476.0808413689, + -678012.3070365165, + 973943.1413844374, + -213351.52521131895, + -688941.1203990141, + 997060.3803065763, + 858702.8823411855, + 496214.383788554, + -902170.3626385045, + 516690.6578063111, + -184543.5533949662, + 292546.4053266724, + -511780.23028340604, + 305418.7888558184, + 141961.07855290908, + 477707.52879901003, + 786586.3643007085, + 116773.74337990231, + 681783.0260473767, + -414040.5033991677, + -737201.9158822978, + 48518.55827067442, + 961334.6481529024, + -899941.1162503663, + -501203.37687945925, + -281942.56904985005, + 818145.42828364, + -122918.52270650638, + 268358.33778312645, + 141177.99544073062, + 329575.5437074153, + -224657.15208471648, + -699024.9894883564, + 212764.59058188114, + 639174.1551015093, + 315825.2202857208, + -962821.1685407511, + 45038.88428834024, + -40001.9478849829, + -362662.6819606953, + 135736.3299043617, + -519778.9557248058, + -690686.5458962872, + 338708.1359236277, + 285567.91232418123, + -516422.410481439, + 694585.2892694366, + 916976.391376023, + 921449.6082577311, + 353726.4989900804, + -722819.454318375, + 760367.0677509868, + 431360.37653621216, + 588702.1503026002, + 977431.0548240622, + -71305.48074092303, + 264187.7242668955, + 662876.7514379941, + 689114.4503598423, + 560353.2055427589, + 311194.9506587801, + 117413.10839336138, + -471752.52777544106, + -706738.7165228054, + 158146.76917570524, + -140307.1091033965, + 518090.9715671851, + -835844.2832427493, + -51311.687570270384, + 60068.20128321699, + 749782.78602511, + 589476.7167951651, + -245263.81653464303, + -158667.86160354884, + -490007.7283662494, + -596989.1835686882, + -134853.19484929525, + -622066.3543018827, + 280245.87520040467, + 738282.357878187, + -865560.5696594018, + 216240.78674699776, + -32287.15480217259, + 652708.8801697731, + 129788.61205502313, + -762202.6042816064, + 763945.952812722, + -832234.8822527956, + -469280.4748211241, + 27722.900338855274, + -393641.6868286554, + 913546.7331465943, + 507031.81580640865, + 168493.94236804362, + -838832.7416371386, + 753783.9474351837, + -889394.71155233, + 170139.08991868232, + -710301.453440974, + 99342.00873687638, + 833194.5002041856, + -583783.441878583, + 120119.52351069843, + 181388.9330170395, + -54131.994661522185, + 529911.8462952606, + -905168.2172854192, + -307621.3753141221, + -134360.58051355326, + 658211.6389574832, + 396366.7115537972, + 85375.24264389295, + -526336.875606502, + -863785.5534936865, + -583416.5324594367, + -253729.6061651857, + -196094.90074728007, + -826303.0724632896, + -923976.9127758634, + 237664.32216878107, + -246484.8215855435, + 209247.97697195175, + -856877.464903594, + 609289.6605710064, + -229306.221338597, + 528809.1194949202, + 479224.44014622376, + -620249.6465113134, + -870709.3195085292, + 940928.5555615677, + -214745.5466234993, + 158349.37394422878, + 578800.4616899969, + -249996.33057604908, + -533815.784824959, + 962372.2516135185, + 84632.311267965, + 319997.8309322886, + -954093.7938510344, + 183082.6978152391, + 555040.297907369, + -341097.19850871636, + 131539.29842401246, + -616098.0705638843, + -132562.22722753554, + -989913.6785975819, + 129350.42221795623, + -840160.7034473713, + 555775.2087518979, + 523648.64436214865, + -737025.2528853267, + 762871.0989849903, + -281994.5994935653, + 460924.6672494573, + 506621.0251963719, + -802765.4660821371, + 942841.3108829072, + 220662.17221334772, + 376978.08038987726, + 769579.465255393, + 558504.3280265343, + 980629.6755579311, + 654485.6471802179, + 495801.67408827535, + 129447.64082344729, + 923774.2404548015, + -682740.1806915688, + -2917.845693345633, + 300120.60168348206, + 771021.6826783862, + 216814.21171666915, + 983669.8479852641, + 522184.2219951631, + -57688.27594316695, + 32364.15907100687, + -55439.36829194895, + -994148.807324925, + 491786.9150110139, + -847974.5782801093, + -763214.2720794901, + 907179.9555902134, + 17746.742534135552, + -749668.8616756058, + 848628.075328612, + -462685.5170257047, + -532274.1595739651, + 654319.808631495, + -388373.37044140673, + -234710.58963889236, + 631836.7783493767, + -898684.4538619114, + -757335.8586361238, + -965680.8157041208, + -389286.9432001715, + -116604.43736277215, + -61066.52629965414, + -521127.90471048956, + -690882.513588184, + -832977.1136049168, + -765221.1890699823, + -689940.7288496743, + -423162.0623450449, + 292048.0804847625, + -649140.7604522945, + 645225.7201356861, + -437651.1229683682, + 96261.60597609812, + 496978.7903337752, + 226869.87029863225, + 564814.8385043796, + -994345.2328199345, + 642222.8940694192, + -408102.14470317896, + -131330.69872609692, + -517582.0916435896, + 787348.938940307, + -765225.9265476459, + -14533.452107377887, + -868422.3051897995, + -520745.37280179147, + -835109.3085778262, + 353450.35915400437, + -846901.4625385914, + 570583.3936024603, + 936902.9256027128, + 351513.36267687404, + -306348.9049036565, + 152630.10089153095, + 97500.28702682334, + 284631.0803318657, + 102102.88920947263, + 432701.41868746845, + -251795.942190735, + 124714.8449397597, + -301960.7960044615, + 725370.5511825124, + 453988.4332138819, + -50755.00588856885, + -670141.3084741643, + 735157.0149800046, + -447422.07637325994, + -885549.3930211904, + 619838.2272940421, + -783075.662140444, + 690886.0627200694, + -795379.7646641119, + -851475.84217996, + -592066.7969136455, + 320145.1439044749, + 880296.6008044586, + 828180.753663547, + -307232.07802182186, + -104209.35985784263, + -272242.8171063103, + -291880.8315045398, + -414706.66756262875, + 85024.16391676481, + -12967.29595703483, + 759455.2651088751, + 116035.4771232741, + 876187.7490770671, + -220281.20520430393, + 773093.7103720052, + 941517.4682520899, + -218460.67021362158, + 745049.2320966134, + 826469.3724807461, + -355920.18368328817, + -684422.458829026, + 936477.1456922367, + -314940.9668901484, + 993002.1840262049, + -626099.8362312544, + 713888.612141427, + -182281.42270725666, + 418352.4765965143, + 688654.6811400496, + -831784.810699766, + 86733.52914857025, + -435120.2020086695, + 617980.3893940063, + 546832.9797995964, + 756544.2136237443, + -743324.068039647, + 613932.4047206119, + -575846.6534108464, + -69041.78580059405, + 836814.6131660759, + 834726.281686301, + -738880.1499345918, + 590242.7408380024, + 422821.111985086, + -899544.7196734758, + 701409.3470021723, + 122626.10348296144, + 941096.4653885924, + -322216.5135631014, + 193255.53151425766, + 872827.2862087636, + -141368.3314694094, + 719633.3486966738, + -24691.683230473325, + 375449.65403399686, + -551583.4845394818, + -620123.2388139662, + 680206.4276647655, + -812275.2303485412, + 195086.13083660498, + -174058.26582650418, + -812961.0599522929, + -621623.8211913281, + -560481.0148626955, + -981915.8445563326, + -542030.4493615504, + -589323.8025723731, + -413423.2600189891, + 809709.7942928735, + 308153.7498309956, + 619308.0630507796, + 537840.9156152819, + -286866.67126349616, + 33451.05922846181, + -757496.9683906252, + -782374.9224350818, + 253309.69590722895, + -912814.4042082427, + 609661.7085588456, + 352261.73826783017, + 954286.742199924, + 103561.59770858775, + -927452.79349884, + 475911.34230118117, + 704654.1693466278, + 205264.41106035808, + 870699.9909441038, + 948683.2053705341, + -34062.63872300941, + -528338.3130711259, + 822896.6027357654, + 278735.46393854485, + -40579.02243977685, + -915749.8364950258, + 659553.9807078792, + -277287.05549408804, + 707214.1956142053, + -895238.0062655665, + 135886.97236071347, + -149241.45499329368, + -63149.16562952666, + 466563.67026671243, + -553672.9216486475, + -229737.17947482708, + 113925.30652771593, + -172048.08512232607, + -605258.6830432644, + -488931.8392681961, + 566270.3725964733, + -833663.1349255899, + 468169.234948705, + 810267.8812994177, + -33415.96103081268, + -242188.22048817002, + -483647.64822008996, + 775502.1634759973, + 789545.6216895065, + 715286.5455839083, + -347233.63810323924, + -124253.01602342409, + 770043.638701771, + -679498.5498179456, + -615312.6904394762, + 739097.3112064815, + 736903.9424725301, + 393077.1877881871, + -198409.42961073393, + 326585.03110612556, + -689434.7713754772, + -239391.44912980747, + -32215.420918962456, + 994419.3723565864, + 79648.96258700316, + 869230.1802750863, + 121796.49071001686, + 844705.9589892165, + 403404.4722209218, + -543139.2374956814, + -372596.9855982447, + -205928.61463833012, + 947168.0769080623, + -977956.3393926435, + 520480.70397851244, + -249433.65271970475, + 631691.3630226009, + -41047.21677271139, + 124960.29178509848, + -988442.5820359281, + 972544.7861681466, + 984950.5065303954, + 925303.2915818018, + -551466.6660725278, + -147377.78182514606, + 279074.6128246222, + -924243.1569144647, + 417410.9512642459, + -695399.0694842241, + -145541.14968434616, + 10727.28426359526, + -338665.9898400157, + -810224.4186979295, + 56722.9360080097, + 861981.966217582, + -439714.1738429704, + -196013.41830216802, + -609793.0347722003, + 190720.7410380365, + -509071.59399098426, + 236506.215392416, + 67187.6065373942, + -928466.9435540672, + 310342.9292630211, + -805675.2833671364, + -527666.5990605796, + -356328.671811996, + -288075.12424565805, + 303224.6802901042, + 284167.0171261672, + -738858.0728741565, + -791000.0656844944, + -358749.8174963055, + 282936.27102726715, + 409571.7583330114, + -782786.5184386442, + -716952.6715066084, + -358590.7451860484, + 527387.1458490185, + -250713.7522315739, + 256300.37060520827, + -697301.7507719572, + 417339.39992854797, + -860336.7506371288, + -924972.0571454045, + -481340.4617895702, + 751175.9252958652, + -567978.7127955292, + 558620.9289424835, + 320136.0617984872, + 707320.9052024276, + -627703.3977639938, + -102503.19197401626, + 729402.6218670637, + 964595.392484441, + -509383.2271404166, + 559173.6530199205, + -470816.4104811543, + 931290.0789234064, + -307372.2410636328, + -7676.840612845792, + -845116.4701019463, + 243627.10163159028, + 84973.33970087784, + 772569.7862625618, + -50809.318772638835, + 524751.6952832949, + -81312.31733415434, + 132234.4480619735, + 104612.17629805897, + -84218.98128980599, + 530964.126127407, + 947440.0938244332, + -825682.5413160255, + -739219.8039864064, + 683000.4284023332, + -863828.3042814046, + 106696.88574342361, + 201119.44299399888, + -931431.7060271222, + -866910.5069906206, + 460688.562183279, + 782396.7437699332, + -682263.0977308097, + -900824.8650649182, + 239697.59166171477, + 747926.9815318972, + 856771.7907479047, + -829757.5890186785, + 443454.6284123364, + 377161.62360497884, + 317544.30553904234, + -75632.39730388705, + 478308.24354802124, + -104883.05833223733, + 999015.61465987, + -286987.95187603985, + -305045.69730364793, + -357944.0118375539, + -892978.5965803307, + -966462.7489620914, + 775131.4148253885, + 593772.0425514368, + -405925.8679461517, + 591050.5234070861, + 17065.276408608555, + 276519.2093188691, + 791621.2481697167, + -340937.84932309366, + 530308.6334495109, + 296367.39607173903, + 344390.17559937056, + -951475.1084669182, + 204357.5254801606, + 971022.9951529492, + 613772.3420304295, + 276545.8422374891, + 798243.2792879139, + 648054.6948441812, + -557037.2814512706, + 196216.62456335654, + -596037.4341912175, + 759937.9527852299, + -979770.2207373817, + 985171.4920396586, + 589533.3045783183, + 120576.86989363447, + 111284.91891042925, + 821064.1488298398, + 929454.9399675176, + -633507.3707911023, + 697423.2590773421, + -326868.2114938957, + 648817.5145515474, + 953719.7890397777, + -916497.6085319059, + 373721.05327601155, + 47663.33989681448, + -93790.0061594068, + 141487.62533589388, + -439056.0987347607, + -920486.1781743885, + 363949.53894583293, + 721912.0685070913, + -691544.9409809167, + 352872.19326222275, + -951551.0421738087, + -471187.12068855384, + 240952.9217686328, + -445496.9252113277, + -371120.74698793964, + 862786.0745609485, + 973813.3464054499, + 680168.2324098508, + -364318.19122620544, + 623903.4854554744, + -905849.1001528237, + 977863.8776084996, + -139186.7655470047, + -145255.79515025512, + -555600.1655529413, + -667474.0913689303, + -888930.6197847205, + -760149.4230184667, + -951646.9750301093, + 152819.4083321528, + 237850.61871997715, + 464169.62633509695, + -159519.74000705048, + -422049.8748792363, + 776751.1209218337, + 658084.9323840506, + 227286.1010118763, + 505604.86355553434, + 316169.9514436445, + -846093.7023891874, + -34061.2467586372, + -943123.2765050895, + 946307.0467768089, + 23274.593973314993, + -521564.73293207405, + -293524.2719411146, + -866234.9319131919, + -661448.478602066, + -296371.75177707407, + -29583.8881174344, + -235505.52792304024, + -333402.4664941595, + 860229.794141804, + -338131.97180013364, + 766088.0973761603, + 553609.6930637724, + 818236.9752655978, + 499670.7325811123, + 451154.6139304736, + 621781.6560029044, + -254941.06479757116, + 478724.9905237874, + 482685.24794928334, + -64131.87226822847, + 221594.5267462014, + 360393.8675889349, + 980320.9721807307, + 820421.2425567443, + 486939.8239928835, + 56570.961797699936, + -226071.57558055845, + 190124.83147423965, + -594469.8220476481, + -886462.6573892627, + -987526.1725025544, + -346815.0341306657, + 779903.8494166494, + 570099.3708950124, + 602003.7409044337, + 356097.60594827234, + 13142.064982992973, + -99821.81800508361, + -88667.0633129989, + -303699.3162004098, + 10143.727770741905, + 583785.1235861715, + 648536.6726233534, + -543098.5469692507, + -583033.1723371831, + 813566.487213899, + 734825.3565112803, + -328855.3062946333, + -466181.3222802531, + -365479.9084505409, + 228372.32525247696, + 903934.3780284302, + 320727.1588662637, + -320383.30347257736, + -860049.2925058996, + -952327.836973756, + -228157.47754152227, + 782624.7715087956, + -426445.81035255233, + -112544.68212304625, + -971010.4224158174, + -441847.32085370994, + -418327.90384353546, + 345048.25542075903, + 994327.3674548118, + 608889.7739436816, + 669688.702007017, + -301691.96709017124, + -905703.1160207894, + -977907.519841735, + -631623.6249763279, + 499862.48325552186, + 171016.39441702553, + 388685.3922678901, + -422694.0721096835, + -878307.6414912663, + 550143.9271309747, + -336398.84910382587, + -756511.3462728874, + -912599.3077388391, + -618194.7345493917, + -390670.22463477973, + 794374.6793098185, + -731922.7386281167, + 950520.9405276891, + -854733.8545677027, + 541486.834250211, + -861410.3882175988, + 249761.57438166125, + 150644.44400739018, + 295328.6415237062, + 807385.6146040938, + 66739.46051902791, + -436897.60210636817, + -134417.1446968374, + 815789.0877785081, + 640216.308506157, + -865992.2514942115, + -660342.1055368074, + 512701.9041428378, + 355423.21677749377, + -70009.51815623413, + 345187.76924801985, + 349814.3658093178, + 181674.71189755612, + 930780.8357906794, + 262706.7544336994, + 48223.20635042265, + -424374.5680725546, + 424755.65046534536, + 236557.87223559475, + 913139.7718660278, + 941144.152200399, + -454102.586298186, + 194304.5691078511, + -136917.6932770111, + -354412.68626613164, + 581036.1480066619, + 910852.0920602485, + -238770.87110864758, + -519975.3647664729, + -374922.1653882484, + -980354.2252625735, + -52779.7952836504, + 926032.2731800559, + -225025.392634997, + 116872.79161366248, + -295744.19989571575, + -320875.60537628556, + -307751.5469476992, + -65132.54734917773, + 576024.1777804472, + 301379.51554337563, + 159426.05803298336, + 577226.6413117722, + 4664.21505131942, + 798580.4599391682, + -401261.4412802744, + 266995.3016585989, + 808045.9233775726, + -621784.3596358845, + 547554.522703148, + -340891.51386623963, + 888754.5034339421, + -157916.3099396197, + 965810.4953762245, + -475203.53294961626, + -116908.34008703077, + -199161.7199842195, + -233660.9642220957, + 894050.8535461549, + 44489.13091515072, + -492008.83867498545, + -873116.3832666307, + -648100.703862506, + 595732.8868098641, + 718339.1568646942, + 605367.2874301472, + 914384.596585353, + -221209.96221077992, + 603137.8048185287, + 462305.83652924537, + -864130.6121854298, + 528757.7981371396, + -506008.40391131083, + -633597.1107892569, + 577552.1941889198, + 912345.2228098568, + 578520.1572902172, + -96072.69883837311, + -101423.73392416882, + -113894.19503511599, + 432865.33585521614, + -270425.98007576447, + 596801.3489205797, + 253117.49588625054, + 493124.36218234425, + -112288.82137357688, + 134012.77358148622, + 238669.43887709934, + -951494.7367034319, + -146677.65481210337, + 699835.9126720852, + -942444.2012530356, + -212552.6430438953, + 971386.6902436607, + -339120.88280133635, + -200805.42058790484, + -802814.8518692915, + -9910.157261713515, + -145721.03503708367, + -728307.274642908, + 43615.277812140586, + -742932.4318120556, + -646027.8283170635, + 369888.62879991834, + -973097.1547492513, + -631698.9280214333, + -273744.563421626, + -417287.63810848957, + -164427.75295124302, + -148428.60327384554, + -167801.14028511717, + -489426.9334935224, + -278793.91134173615, + -340296.8578388577, + -556484.4102847719, + 438655.2061440006, + -276452.37121939694, + -312836.70772736374, + 929222.3654516859, + 893714.4238273806, + -473746.73484195507, + 531559.2164937468, + -802521.718652915, + -905290.688275465, + -237000.90195947853, + -147293.3787711459, + 291600.58864682534, + 986399.2788948404, + -485075.06632204156, + -870289.9228691126, + 624760.6382367495, + -790288.250497408, + 752269.0566820236, + 467576.6729269193, + -865994.9152429418, + -793110.5030413155, + -474701.8137908143, + -306263.615920803, + 567195.3729509839, + -734916.236970009, + 492843.5812387413, + -391624.37866300024, + 164122.44981536551, + -232944.89130545105, + 975469.726241246, + 844287.7477090895, + 404011.35944655776, + -640305.2951774928, + 42875.41627960634, + 214010.42808227433, + 740215.7473042416, + 80541.06876468725, + -818263.035605683, + 117358.92862004315, + -389524.4486992695, + 980386.5459952197, + 32881.61159634773, + -228878.40701000005, + 167355.87941127262, + -184207.09026324135, + -322222.1009867254, + -911386.255718227, + 468397.0603039731, + -145881.92459988635, + 20289.13467154059, + -130695.57461700997, + 654920.198646014, + 719850.4607971632, + -355735.5679648002, + 345443.24182197993, + -730479.4858215358, + 252781.59937537214, + -74231.81779072153, + -615785.4515998511, + -540369.6251237015, + 383112.4033338451, + -511216.2264416995, + -501092.138278501, + -965567.9043428504, + -839433.4613511378, + -532429.9512088739, + -178821.4939386541, + -822448.5803251842, + -633310.1915515151, + 686027.6814889505, + 231928.85951641772, + -238922.6945320282, + 19343.09191528283, + -12639.75195559186, + -188801.82759107277, + -744755.3782537222, + 749280.2816982729, + -705496.3797711047, + -978498.9729623264, + -412114.2968546636, + -359182.9439650376, + -631168.3449491494, + -436244.0560767935, + 126147.95625243768, + 495248.3460312427, + 872207.2549893862, + 763815.8244084439, + 538774.1780694057, + -403730.25814271515, + 819782.3778926807, + -273122.6818702672, + 59096.47112054128, + -672168.527766483, + 881841.866364834, + 350907.38638445805, + 604854.8886693304, + 315731.06400445325, + -70636.49318735088, + 220402.07476972108, + 10276.306437494442, + -327893.4539160956, + -836192.0242930638, + 988222.3716726251, + 817117.7813975348, + -382381.57208321156, + 317152.90156630107, + 472977.4384703318, + 524509.9575316767, + -70957.70632608756, + 578095.1169898873, + -460262.6208950564, + 932693.0546655076, + 669242.1796192825, + 898594.7373659344, + 482810.96346390503, + 46614.397469187716, + 613503.9349926028, + -328667.46486920473, + -375082.42819396954, + 554434.3536955196, + -152235.5548132317, + -509390.545380086, + -32784.668225617206, + -501202.2611890803, + -157964.47741868568, + 524473.4985496274, + 591290.7650467849, + -997624.8203061946, + 58262.989303087044, + -561307.7408716826, + -410503.7659081976, + -714948.8255658642, + 728526.3339241468, + -919555.6882750937, + 629500.2194310939, + 504822.0883629118, + 461006.2733798683, + 993169.8272048872, + -190372.42927670528, + -833592.4892739374, + -719753.6594739618, + -938210.1990110476, + 828057.8115786785, + -238202.51522141646, + -958559.1409717347, + -24438.436745954696, + -83509.411334598, + -359737.5232536628, + 635658.6298983895, + 346033.81218879245, + -584065.5313868428, + -424191.7750400952, + -795188.4583446136, + -926390.3870031927, + -192314.89519482836, + 837315.5068836316, + 947912.7199171691, + -315901.9337075899, + -413380.78296095703, + 607344.6876092256, + -82009.2978524103, + -16617.17929283868, + -483953.7495870241, + -480353.54303317115, + -115491.68593012604, + -237962.22102295837, + -36646.96630013054, + 476471.5152563388, + 978014.421760589, + 166990.14919309053, + -75256.5164660608, + 704061.1470914854, + 760545.8185140528, + 271707.9082764273, + -766792.2989184954, + 752371.0571407238, + 685002.0750843509, + -152387.7131267184, + -38615.33669416017, + -982653.453731932, + 665420.1517247125, + 989118.9587806035, + 780812.1694900701, + 988444.0564038804, + -122241.26006716251, + 541462.0618325197, + 549303.7161436194, + -648806.7077126907, + 415501.4804787651, + -134815.93054463016, + 122351.19856486021, + -289838.61323574843, + -938958.6288578539, + 210809.50595830084, + -43728.42986289638, + -655509.619102224, + 648375.4654321772, + -831518.0754764182, + -240776.02362994765, + 26639.230505501655, + 32440.555743900703, + 640243.7745336627, + -993279.8238941705, + 334421.2859764597, + 932139.9698931639, + -267927.02472327545, + -833849.6950161174, + -455186.4174345987, + 742726.859209176, + 375032.87676424923, + -901061.6611573094, + -200680.5681862598, + -29098.322258459542, + -969099.5620265845, + 606470.9157401051, + 688047.7310671486, + -504679.8049857015, + 791956.2605699479, + -881551.4400428921, + -302741.91980461904, + 638370.066355362, + -532379.4632399773, + -112437.22020383018, + 998204.9462851814, + 221673.05812289938, + -435490.14728919585, + -602451.2772119255, + 838428.4977580552, + 640429.952443936, + -864861.2267447675, + -484302.508192239, + 109128.89678128313, + -20328.54839748688, + 828995.4951326104, + -487462.2273071969, + 713017.6155422061, + 101094.90244385455, + -615236.0198332516, + 407851.9899300057, + 738444.4700362957, + -326348.93110190454, + 549713.8383506504, + -789031.5682618187, + 927239.5313433468, + -644852.66152537, + -848674.8403956364, + -90327.43701721956, + 344851.7126963531, + 582211.9868980944, + 494938.47216756403, + -398224.02858665097, + -13117.584241160828, + -476422.65956851083, + 463827.87232882984, + -198483.34034838344, + 861800.3364449494, + -536551.0299197846, + -564971.5754824718, + -438391.1547383694, + -284302.4138421264, + -763138.098079924, + -45475.32864353476, + 882993.5418502439, + -795097.813606658, + 778033.6674893287, + -2418.8129155333636, + -669045.763451928, + 852396.2366923961, + -867435.6178178153, + 141130.79943615815, + 5859.207615196205, + -430016.71368114057, + -311136.1816182663, + -92202.74906087144, + 726396.9774056793, + 203275.99120218464, + 609164.9786011094, + -820893.9356755016, + -976925.7991053668, + 908116.9482987425, + 50135.352156308596, + 307470.6809337242, + 624935.1013253545, + 750077.1034427078, + -637976.1884960186, + 25448.887234835736, + -550020.0952087349, + -746197.0227358456, + -973658.3178920841, + 978186.6826866972, + 680227.57286416, + -950532.6006931318, + -985116.223945313, + 276446.1342637452, + 555812.3774844274, + -561906.6680129834, + 585465.9502753434, + -183246.98086339253, + -300315.4713015126, + -618267.1634012104, + 820535.9739558253, + -104275.09765960963, + -5346.58817616851, + -864617.2015054823, + -11397.760439159965, + -422153.3977464358, + -905977.0547811708, + 157507.68378500603, + 173869.07234280757, + -856254.0526185319, + 11332.246300312487, + -306103.04654401954, + -956467.8967193629, + 351871.0630276667, + -53051.63699602034, + -799163.3175611261, + 742842.9453996242, + 272709.27656412945, + -794318.9590493409, + 990134.2905889245, + -758069.4118136786, + -709608.5416866865, + -596240.2829503573, + 774885.9141317729, + -690494.1635634536, + 990929.230161747, + 896250.5405987363, + -278399.4663815832, + 188803.00874917165, + -857047.8676380799, + -371863.4527597935, + 404092.4098476062, + 4639.789714036447, + -286453.57823014626, + -719632.5292042802, + 888654.7196585234, + 709150.6721742977, + -17131.11180112037, + 410570.8990221861, + 286646.4790530028, + 996029.5025672762, + 148476.7391556827, + 509349.41798587487, + 210255.15073168412, + 926686.2733395682, + 853052.2156470184, + 154181.9189454976, + 361502.5767059032, + -637520.4295303245, + -22692.749180103, + -972902.5106377238, + -941306.8841809924, + 125310.90758352548, + 448987.6137132358, + -470790.5889628796, + 272112.8848982979, + 688402.4103696209, + -782225.0600537152, + 337320.4438815547, + 585685.6956678807, + 782037.4540348713, + 323611.34131160576, + 962111.1065153991, + -708972.5664482788, + 785076.1176649188, + -613759.6537262494, + 874620.6567376726, + 519880.2158460802, + -240080.77759907919, + 867303.4894966078, + 18586.59640843885, + 718317.2618722233, + -109884.420690743, + 60893.88399643325, + -793863.2538143109, + -823096.4695055234, + 541984.3046998187, + 502612.91624473524, + 850451.3240314535, + -443566.7466770268, + 76572.42006685339, + 752175.587599917, + -691661.6245944632, + -420109.50775639876, + -923914.2776682483, + -96873.89215060804, + 861993.7621760052, + 312068.956212292, + 393104.88502786536, + 413417.946519302, + -623742.7982681545, + -988864.157823258, + -496497.2335478825, + 495836.4964779549, + 667658.0968566479, + 183159.6345591602, + 548791.2674250366, + -530794.2353924422, + -872106.4705118968, + -967081.6457778057, + -295675.77862820606, + 489241.69586654374, + 114351.63197177456, + 928656.4360568917, + -481332.9520845115, + 205154.82978101927, + 809021.1094255167, + 648386.6148555946, + 624035.630911147, + 111741.56162165417, + 462622.3479891516, + 847774.294941535, + 866910.0309817701, + 983925.2318834744, + -177176.59501690042, + -389312.6651434737, + 797430.990397737, + 989151.7564085644, + 244878.55848080153, + -485502.753489353, + 46774.670624054605, + 60435.485430123445, + -898449.5125900214, + -744796.6017609286, + -862882.6783479553, + -157888.66223432563, + -972803.6790509165, + 470136.2829271827, + -975688.118474598, + 152992.7080337581, + -23354.031071151305, + -668333.625705809, + -876205.9164195886, + -883069.9837239113, + 426598.1861566983, + -869287.3247835517, + 879853.569689026, + 546594.4866078043, + -99509.8622748074, + -302744.5540407543, + -731855.0644453203, + -272627.68700988713, + -278223.8655805169, + 888957.9283436493, + 660108.9266092846, + 917268.780933918, + 669599.9344263385, + 727831.5920271352, + -978525.2021719315, + -404913.5781783684, + -34753.84899003142, + -71156.82005439771, + -802907.5131513008, + -700850.6394597387, + -921930.2499325539, + -162433.55914885437, + -334808.4674539402, + 435073.6914931985, + 845636.7029966115, + 207135.67822526558, + -96026.04785172586, + 199428.4919916447, + -424082.1046796668, + -16898.45075365981, + -957590.3912369654, + 139886.54128272305, + 394217.39772983023, + 844416.4301755194, + -653140.4056687764, + -834119.4183135683, + -156832.36929292322, + 551304.5390955278, + 176337.7315588448, + -663101.676063939, + -67259.71288117827, + -773420.1471329172, + -182063.7869665904, + -955268.3965395592, + 327514.9676002464, + 642530.0727235521, + 973285.9105600205, + 951858.9912748337, + -969172.2595629728, + 846551.2772597088, + -61163.42131961572, + -93877.61484184742, + 979221.1718722845, + -920741.4436678549, + -594515.5212872077, + 452862.83363979706, + -728781.7413482134, + -919477.2161480862, + -882764.4693958461, + -264757.4637711385, + 841593.6916205434, + -757659.8021381089, + -999019.2228408539, + -596917.6177809017, + -459175.655123353, + -716602.890959771, + -500483.8474121998, + -840020.8231140387, + 989875.9171430891, + 433627.0314213238, + 655071.8827625411, + -129107.77606289559, + 77293.70857259043, + 428432.3133948817, + 541975.5819624048, + 664882.759408806, + -716933.2276750136, + 570423.3463876566, + -745832.2744820971, + -566363.5393751377, + -155364.70874316798, + 972210.0894667978, + -464628.53244664235, + 921176.4067803072, + -40357.7575256151, + -193500.85153562092, + -980076.2235248009, + 918901.7331085308, + 881432.2925423266, + -507099.1839085488, + -332661.5783185198, + 587733.3523546178, + -636959.5999525497, + -141133.73722255696, + -264003.21528352035, + 220983.1286203139, + 725863.2890422947, + -543648.030735856, + -950317.5831300783, + 223913.6095940133, + -362353.8430032773, + -194579.08321879857, + 286151.61766757537, + 977660.498099364, + -176377.3243333846, + -768821.8593968159, + 80553.70193168665, + 215160.03113057947, + 133973.190815301, + 14309.102496320447, + 618782.1244699516, + 359096.88520256465, + -565747.685903387, + 889600.3765064016, + -777124.9274659591, + 309531.6997973414, + -75919.07408138998, + -454143.96940854273, + -785630.3454262159, + -694477.9817728173, + 92575.85894631903, + -212228.4886969661, + 473307.8813019951, + 203860.33817112638, + -221340.06115960414, + -981006.9289098473, + -975437.2548396133, + -385536.93670941814, + 728597.5080182458, + -562186.4477946741, + -389225.06415039336, + 25621.028918850985, + 430823.64465525333, + 740392.9498443081, + 678633.3729158305, + -85018.46833585591, + -878045.9821414341, + -118007.17027903684, + 487321.3323061261, + 874324.767502872, + 127017.29514174654, + -436085.1153599603, + 348440.3443451778, + 309205.80936487106, + 972247.6583574327, + 763742.4912586879, + 897545.3621887406, + -502720.5229167948, + -153319.72724914667, + -205680.67829882586, + 545787.881592392, + -227452.0543237959, + -258491.8809154342, + -621266.9560449793, + 47304.82415004889, + -648693.9622705946, + -997858.9143206262, + 270633.6365727273, + -223806.04027736007, + -300981.25730592496, + 763076.761484927, + 642887.5529332205, + -432338.062561755, + -163576.2588385341, + -963363.6620967619, + -683224.2199831498, + 856808.2197890275, + -987666.2676369658, + 479609.2251199442, + -80915.26052497078, + -201293.44341346656, + -173683.12627848348, + -508387.3170630311, + -435191.4569828126, + 584313.785397261, + -109722.51489403195, + 481190.76916848094, + 108791.43831964266, + 68776.18660720675, + 622369.486735215, + -209513.53982177845, + 650541.4866307242, + 754712.0658988255, + 813752.8634957385, + -298356.292464911, + -61215.42033610039, + 436744.9224343889, + -330041.7260647648, + -334831.8316804262, + 91967.98304206277, + 28156.969675589895, + 547236.7988988012, + -374049.4180060154, + 565668.6981676611, + -785453.5126606135, + -532090.325297228, + 185154.70142665124, + -497283.4969205837, + 860027.8346385706, + -814959.3364254577, + -282139.9481285012, + 820268.1822956883, + 256237.40116499417, + -275552.67409980064, + 485113.3110041772, + -959288.5572765302, + -29150.728584728335, + -606306.4889926997, + 431974.4612779708, + -115658.87291454802, + -141340.8033040664, + -639476.1138294744, + -873604.5512851904, + 356698.278740061, + -922327.874832231, + -157176.03664447056, + 683041.7962712235, + -580535.0009915861, + -905786.7234813663, + 323574.0994880893, + 419768.9946689729, + -948491.9834279742, + 687938.8977342619, + 26380.444313031992, + 79963.71184017637, + 190785.54963623497, + -340201.3266911328, + 91426.61387893325, + 245229.65292556954, + -687731.9975273454, + 422619.73028283607, + 82640.69749756575, + 409409.64705632086, + 541844.3062241749, + 241268.21754474158, + -873262.8003619645, + 344162.29020153667, + 322244.7211868584, + 31269.583853828386, + 877970.1559976565, + 43613.1252557781, + -696935.8982222822, + -235858.8432603941, + -399988.58295613027, + -64152.80407367008, + 432237.3287891819, + 201644.68375252697, + -52105.695444468525, + 536949.0200655625, + -30057.02775410657, + 245155.6867537943, + -156326.66866772072, + -509475.2787714667, + -410466.1960566309, + -196989.70373274927, + 112978.40715750973, + 802669.2471139152, + -99956.64532868864, + -868964.024109765, + -420588.6028962258, + -988293.7621873369, + -661473.0315575114, + -19098.448603173558, + -885452.1533373225, + -546358.1912804205, + 905081.4248111472, + 459545.7111017087, + 246807.37620190406, + 329745.09348034876, + 929943.7776050983, + 145914.46635007087, + -614194.6682511497, + -9454.240677924774, + 412366.0488617531, + -707537.8309552954, + 803685.9727040591, + 687019.9141633249, + -55943.551977541974, + 817441.6620766443, + 412043.04027081974, + -852743.0058874162, + 620344.7129535171, + 262995.39292433404, + 4713.401427909769, + -109873.48881074932, + -877041.3220525215, + -371779.5231673671, + -588533.723513192, + 302563.74099995, + -839618.4403552366, + 509332.08212782064, + 118186.19450077206, + -295941.11791942647, + -751610.2740211206, + 838850.8886677693, + -680242.5560828301, + -529541.2451326133, + 910213.1889249687, + -335333.1016434902, + -968678.9895839087, + 271258.7525951278, + 162547.29342908724, + 91138.2414169597, + -916202.9862435139, + -297488.8215832743, + -188031.03752062246, + 492982.5007140298, + -987259.2489581831, + 518416.15780345496, + -713094.3552406557, + 853275.3857174022, + 418861.95206048526, + 916586.6606952572, + 167728.63143532324, + 532745.2118939633, + -520667.63225461997, + -504160.0284549923, + -904957.3092744924, + -260124.91458338237, + 510580.43232968386, + 528461.408536822, + 787801.8957278694, + 655661.7208644759, + 756042.0510962665, + 817517.6184635771, + -216897.53904829256, + -210776.7984364153, + 115189.32586343955, + -478824.9638186075, + -468807.7269477244, + -844258.0720995346, + 972414.3212990139, + 344833.1258162722, + -56113.64655117135, + -624188.6237682998, + 685277.6504690781, + 485920.86118686263, + -278312.632114432, + -75043.35641322468, + -906194.686836411, + 365577.9556860479, + 19524.356422792043, + 922216.6246370509, + 689391.3961049088, + 840927.0014726613, + 200331.60443690835, + -869431.3932861725, + 878422.5888265629, + 973432.5209783085, + -578674.823105952, + 294351.2971138873, + -690023.2138685087, + -962916.4945133477, + -857485.9930342253, + -832025.8563876976, + 974341.1500846075, + -396898.56550470815, + -668756.5633246308, + -360457.8358762485, + 331181.2894073336, + -311866.74036477105, + 242219.15211919253, + -943557.6307255606, + -375938.89714875387, + 22484.12914812681, + -575213.0918223544, + 82307.76394413941, + 153899.09959843685, + 594127.4211885713, + -159090.79238988232, + -450971.1288868068, + -507492.7913564229, + 467626.3560175302, + 957484.420567825, + -635565.4457632827, + 404504.59733543464, + -741242.8093463316, + 910929.0860177912, + -361367.1534870784, + 156410.9969402554, + 189214.3652513325, + -54.2568822701206, + 174232.51026043718, + -494773.24245352607, + -454723.27737979847, + 213984.13246461056, + 212063.2508260616, + 98546.0352022065, + 5378.334789895911, + 810093.3127857712, + 147997.73536322935, + 783102.3012779879, + 987880.7432751495, + -229434.9756673648, + 869493.7651605841, + -139076.3587987369, + -557161.2076048016, + 21155.026715105276, + -264766.361332601, + 618322.4255131544, + -816467.0925546531, + 556012.1707017187, + 88392.64235999744, + 197187.47226018296, + -283815.70254962816, + 553023.1095252107, + -945830.8209615549, + 238023.91201015905, + -480028.44922189624, + -17626.68976837234, + 252398.93652451606, + 484001.7828030414, + 741815.5580859713, + 390351.85620191856, + 685395.2527809612, + -906494.5300026286, + -276101.1173961465, + -17294.304320395026, + 557569.8153357534, + 609855.5595821952, + -943525.6187202075, + -906970.2892897038, + -431298.00250892347, + -842679.0553811144, + -562682.5666189257, + -637593.3515710594, + 284628.80755777564, + 797637.7142915607, + 257071.35954504667, + -598042.7588701511, + 479923.3402769547, + 28237.085443992837, + -319240.40852889733, + 445429.38310308644, + -143741.54132754912, + -913908.5084884344, + 224066.6061014116, + -409529.2008980156, + 77009.76021396478, + -393132.08359290817, + -842425.1254184563, + -980481.7983934435, + -109963.52214518002, + -596984.3194120133, + 421593.864468248, + -255769.34934627914, + -155143.96571447953, + -84665.76993441532, + 446213.02711451636, + -579121.0566209126, + -3228.701671307732, + 422613.975917554, + -233788.34968304684, + 698643.5599005307, + -856922.3159138297, + 873464.2431898396, + -473563.7949953864, + -947625.5678334567, + 532425.4066042482, + -911525.2637976729, + -916676.4657064084, + -676742.7713677248, + 14421.365019352317, + 367702.68646524154, + 808630.5937924972, + -982040.7794521189, + -535376.4961007346, + -316730.30129867507, + -727573.9994552474, + -279049.32792091276, + 62214.743431753704, + -868796.5174837488, + -543476.9883716386, + 230747.02239104948, + 930874.6640197869, + -934200.4703555017, + -563127.2950407254, + -160756.6281830879, + 636913.0432592356, + 404332.35672016774, + -400521.93774480396, + 424573.34137293044, + 188394.46814925777, + -561527.6895167028, + 987334.5055397842, + -917283.6942899865, + -931296.9096755133, + -84068.07931226678, + 329765.5710312666, + 990895.9715608172, + -179331.26887436467, + 274.18633228437625, + -534743.3847973393, + -780534.1698024244, + -482484.08376243623, + -216949.4434647421, + 748912.3287694999, + 986293.5598681071, + 232516.50339234597, + 50846.95541483297, + -175943.21991923524, + 791478.2809348404, + -681612.1072798342, + 58127.60924020877, + 42778.568602323205, + 234092.96390270052, + -261676.87664463822, + -636028.5534186077, + 562431.0076399741, + -411947.4321157499, + -597153.8200546785, + -916947.7880325463, + -705242.712674034, + -191469.61416820795, + -949088.1151979893, + -333822.0089222828, + -182133.5816642613, + -66015.35047639784, + 368087.1511835344, + -353697.4321993922, + -536604.9882410902, + 473884.56721989793, + 605658.9584223814, + -404709.8207523263, + -54742.5545743947, + 961215.176165372, + 115729.24020113629, + -414253.68741960253, + 752739.6761999896, + 666862.340182689, + 67661.06601563026, + 503951.37492533016, + -388621.97157925804, + -515275.23605421965, + -757491.9347915816, + 612555.9659177166, + 489261.3941316415, + -982996.6467930258, + 83626.01656723223, + 230434.85581427548, + -21114.28305604135, + -90428.70967066064, + 296478.7950444805, + -966846.883209967, + -780598.5460331015, + -967735.6926779113, + -461059.92481831735, + 786610.187710862, + 879140.1641903842, + 43314.5011843421, + 278136.2868301425, + 698183.1032720456, + 806349.2268740733, + -397630.8008376086, + -358879.3970287651, + 285684.8037062269, + 604605.5558427592, + -947059.649165231, + 158191.3515991018, + 485965.6338905141, + -158879.87491432432, + 129367.15688846845, + 198184.73217274746, + 978196.8533225895, + 713214.7743347823, + 468122.63845769176, + -381307.2731673779, + 615398.963360069, + -247645.52530044725, + -873048.7024753812, + -82438.67513839564, + -301517.9391769822, + 381569.32568402844, + -72564.69520485065, + -847974.8310260638, + -624372.4635593375, + -576730.2765561315, + -168577.86934006037, + -296564.50380124897, + -364361.71433323674, + -492597.56048871763, + 35296.47857337159, + 420021.4463546965, + 454944.5971178281, + -945800.6513390202, + -855620.7987899301, + -182147.10911050468, + -632719.2284925724, + 51871.86163710788, + 295433.30983351177, + 521813.52874387166, + -883109.8371806932, + 587329.6188037973, + 180684.47590905178, + -10809.982021956044, + -769038.096146106, + -534457.2735356829, + 505084.0013940303, + 919420.8622752513, + 123252.75945565072, + -349338.01725310687, + 28975.45331310436, + 133053.16122446588, + -200571.0906061211, + -468513.2612679026, + 309822.871813791, + -479063.14112764824, + 579875.3899708529, + 934442.9915052219, + 103074.37200741231, + 323347.94712743163, + 348004.32941321866, + -80993.48269999007, + -800860.1520748159, + -965068.5226402589, + 348004.553076968, + 702962.7869214141, + -271911.56605665025, + -415611.3770407321, + -267938.64974705374, + 940918.9806430914, + -884217.0166808323, + -112606.7555153969, + 844909.9028802278, + -708295.0091724356, + -634052.0019617239, + 367228.9420504924, + -327624.1032940919, + -305604.27895617834, + -90300.13158459483, + -520174.5447660726, + -569480.4406807517, + 94387.71254925072, + -386358.7164788742, + -954381.1545288572, + 299747.16771257494, + -559491.0604224965, + -542498.5120243762, + -139417.79463834924, + 688013.3415562162, + 348954.6036298228, + 205465.37858689384, + 213992.4096621415, + 82812.26538328546, + -915628.1553359362, + 316048.90945018484, + -640389.7847236581, + 738716.8665764598, + -161139.7085490225, + 106607.11054417393, + 921187.0400892184, + -922699.7788318148, + 48594.74153787469, + -559258.3662861967, + 254491.79811641076, + 33251.61082166583, + -179827.40244080508, + 195024.71952536894, + 566140.97336386, + 903381.1962119655, + -300273.9307739282, + 309648.1670935587, + -471111.2544004563, + 764523.5890097027, + 409624.55964518554, + -546981.8192781708, + -195992.2281424531, + -974830.3194987258, + -555914.7275795464, + -384676.9757273485, + -968027.7259005957, + 131087.03356579586, + -377491.11454555416, + -679827.2293925458, + 370173.70037625066, + -139886.43633667342, + 634398.7676863831, + 235017.74655142004, + -580102.0592951766, + 486322.3932047258, + -358908.16408815375, + -602593.546620462, + 636112.1519604072, + 264304.76402528334, + -654743.8559167729, + -913624.2327944491, + -742081.2395013996, + 760169.1365827494, + 465303.56751728075, + -885331.0880299909, + -791916.4137905741, + -666169.5161705825, + 541182.5300775139, + 366950.8470799496, + -380691.4509125823, + -527287.0321356482, + 387152.3805970955, + 922796.3082957211, + -641075.7681453216, + 95311.43163698363, + -252671.6832573741, + 882358.5801086217, + 105372.60614969513, + -989867.9563227106, + 626113.7243081916, + -923944.8699588646, + -765096.8396685073, + 522713.3475521484, + -47380.26051355648, + 95962.08383797004, + 95958.17194866823, + 96588.81767117835, + 95948.88284577774, + 95880.89608253656, + 96750.96023331824, + 96510.55405575983, + 95767.91624828705, + 96740.50167159707, + 97209.95143029183, + 97361.55787856234, + 96730.38048016379, + 96981.97292405601, + 97064.56846526945, + 96996.94863760758, + 95612.3798589922, + 97025.10002004895, + 97085.03905872672, + 97181.50823801635, + 97107.98327536366, + 96671.54609170722, + 96264.44273321965, + 97372.74334299575, + 97234.35747194423, + 97271.91592592461, + 97377.86830334815, + 97325.9129722734, + 97061.7840428774, + 97215.01978405566, + 97358.31856309062, + 97190.77820654793, + 96441.85290714615, + 97203.18137378134, + 96615.52267587048, + 97362.57990476971, + 96430.3182329276, + 97216.0877466562, + 97087.72560216134, + 96827.37265721356, + 97471.93322774443, + 96478.42530029602, + 97500.18404094946, + 96989.78155035034, + 98448.42923749553, + 97143.83269179585, + 97369.40146033755, + 97339.71103793576, + 96553.64509810388, + 97302.65739635656, + 97335.30821090189, + 96554.76711541406, + 97344.39094759998, + 98269.13543855402, + 97120.93183600294, + 97096.28494217026, + 96822.6506902651, + 97442.83746991267, + 96832.47969398995, + 97815.81719436, + 98066.53944077659, + 97949.99254977489, + 97258.58975162834, + 97072.87553268592, + 97177.44060503879, + 98940.06816975218, + 98016.83324711236, + 97830.47996234937, + 97767.76658830828, + 96641.47157063635, + 97299.95033359852, + 97365.44574077036, + 97290.08489077912, + 97322.93543564298, + 97060.5787311115, + 97049.53534278259, + 97242.69405553193, + 98081.17812602762, + 97249.66244594876, + 97854.52508088839, + 97955.02720756274, + 97077.71122197901, + 96385.16496434633, + 97510.89358759671, + 98459.92232309152, + 97615.68830856765, + 98138.33403478275, + 97827.98206777098, + 96467.8745823571, + 95886.51435711926, + 98461.45076976992, + 98367.57183739317, + 96854.14568860013, + 97266.32321649927, + 97363.0231077364, + 97395.40628065314, + 96172.41683035072, + 96250.45766620964, + 95520.1645763566, + 98448.70225290018, + 96321.45254240566, + 97264.50790734109, + 97236.52009824176, + 97339.43922054533, + 97243.18425457999, + 97315.50747893736, + 97215.05533166551, + 96750.67919465902, + 96758.2131173848, + 96298.09511180542, + 95861.24531062585, + 96714.78752865449, + 97410.9196281361, + 96859.54396498862, + 96181.25693811684, + 96930.48088011655, + 97770.14515646077, + 97490.27494702111, + 97286.18570891903, + 97389.10178705663, + 97331.16186692334, + 96488.13453110759, + 96074.87019613585, + 97074.27772427908, + 96074.67218939119, + 97117.04988156656, + 96276.76290288504, + 96138.27909570166, + 97145.57365835275, + 96646.8046235456, + 95954.7235059804, + 97344.23333565774, + 97312.16899856621, + 97226.77467613107, + 97363.94242415007, + 96602.40260405943, + 95405.95241141658, + 97026.79872519187, + 96882.48118360608, + 96170.99341163754, + 96129.26226123162, + 97352.31659100096, + 96609.21495158957, + 98432.06023611217, + 96466.10004162915, + 95721.84547331538, + 97171.80979185148, + 96673.26868148368, + 97242.36535343947, + 96662.13325458604, + 95361.48898776405, + 96723.71649615404, + 96577.78689065653, + 96304.89053116819, + 96020.02948032114, + 94721.83869654656, + 97298.65959230787, + 96640.12295334176, + 96271.64391619014, + 96408.13622599524, + 97309.18348925584, + 97289.56699193796, + 97270.2903153982, + 96874.40221688445, + 96746.46975225132, + 96348.29844805674, + 96668.17509388815, + 96090.94263214861, + 96360.12432055575, + 96792.48106870924, + 96829.16589823875, + 96813.03260829017, + 96852.64814433026, + 97324.36613168383, + 97379.06355223498, + 96719.96913872726, + 96565.3052812955, + 96062.65271303893, + 96318.63129865125, + 96775.11425416196, + 97357.37235340624, + 97277.72395289454, + 97289.76170017247, + 97321.48237207504, + 97227.68741107298, + 97204.20955384977, + 96229.06326601339, + 97325.19271104848, + 97617.21646735941, + 98449.27256362812, + 96581.33099308431, + 97228.58212383334, + 97299.24309043337, + 97252.41548140156, + 97357.81547028142, + 97236.43218292532, + 97305.00730192695, + 97195.88804075729, + 97218.59509104007, + 96261.3196088678, + 93808.41622785716, + 96850.96393927754, + 96537.12189876002, + 96361.20003453246, + 96470.92604424445, + 96487.89609305817, + 96645.9713144198, + 96399.42211136232, + 96412.58182949589, + 95545.86201701668, + 96748.01232561683, + 96556.53529112086, + 96657.04377656122, + 96611.79891677048, + 97214.1761793492, + 96131.39404043475, + 96721.96485809215, + 96569.72587527646, + 96176.22696258772, + 96122.91322426367, + 96198.64527732105, + 97964.68713880659, + 97183.30733835287, + 92882.88036181602, + 93947.1652778539, + 96330.25949972049, + 97170.81081425113, + 95845.43465437011, + 94883.17834351698, + 96709.27952791477, + 96667.2918950391, + 95837.80625601206, + 96820.63808370597, + 96806.18517489852, + 97280.51740997269, + 96714.28622859313, + 96088.28655554891, + 96842.71240942011, + 96636.80398752526, + 96814.47946325276, + 96686.4149689825, + 96733.90105315663, + 96744.78801527941, + 96492.3193299354, + 96406.73123341237, + 96335.82539154506, + 96082.8637414932, + 96567.91127200374, + 96501.22061638958, + 96231.57047597128, + 96447.73644124497, + 96907.51876847682, + 96140.78208609398, + 96791.93089613823, + 96773.1294794952, + 97215.55371993229, + 96989.24436251477, + 96715.92227964214, + 96692.76062085203, + 96896.91552525175, + 96737.85869639236, + 95444.01440252263, + 96447.8287589237, + 96639.08049903584, + 97213.58157620984, + 96349.45899615414, + 96911.82889073166, + 96584.25000074002, + 97638.83972944805, + 97141.32121371166, + 97589.68831697167, + 96754.87507754394, + 97436.04173144014, + 96829.7050884141, + 96707.30691234408, + 96535.511292164, + 96405.25838544288, + 96596.4969197861, + 96957.15143187257, + 98108.28736915902, + 97092.03590641617, + 95739.18477075809, + 95638.78273951489, + 96868.09370002619, + 96840.061255232, + 97740.36484145897, + 97228.17238280359, + 96287.81181504241, + 97306.68660394431, + 97519.14188663122, + 96800.95464898097, + 96931.14707892697, + 96653.93028602129, + 96612.17178282065, + 94019.39320785269, + 96918.79607718707, + 95778.09112358528, + 94801.82599832956, + 94998.66487738185, + 95681.96009977852, + 95501.99445714205, + 95451.74998648891, + 97377.6500584912, + 96959.17409848377, + 97453.56935622763, + 97492.36374902399, + 97452.67144706869, + 97467.97384514623, + 96643.07015445872, + 96616.28197124632, + 96611.07880435153, + 95591.49480913648, + 96743.02101349403, + 96450.68991158345, + 96877.98110658897, + 97082.82303991095, + 98237.07311872549, + 97435.85714721317, + 96347.73945345664, + 98753.0342330029, + 97389.05654094371, + 97350.06903114164, + 97254.23934987192, + 96919.826641072, + 97357.32608817489, + 97311.70614692672, + 96312.49145069612, + 97342.74090899815, + 97676.19241492003, + 97533.87560124022, + 96983.61207113188, + 97042.01258952515, + 97651.32746016643, + 97136.55546326986, + 97605.64203060168, + 97499.57548817585, + 97615.00090956, + 97672.92128722146, + 97634.83104178979, + 95512.48672079766, + 95520.58581704031, + 96295.26828740547, + 96282.43445699873, + 96568.35948892368, + 96305.70007753118, + 96281.6988740464, + 96634.97232577665, + 96658.50723704832, + 96327.25960947742, + 96412.87128274282, + 95612.05251687022, + 96308.17494820403, + 96460.09274444025, + 96049.36643690022, + 96412.62955632774, + 96616.7559403405, + 96519.5204681799, + 97093.69642855125, + 96679.99009179635, + 95633.12109295135, + 96619.3340165115, + 96150.03424362313, + 95937.7713444444, + 96585.71992460922, + 96491.68898578656, + 95350.83394336532, + 96134.20248253406, + 96072.38567279669, + 96772.82588738113, + 96977.58687203821, + 96304.58681365351, + 96251.19968281969, + 96108.91834438108, + 96778.70350523331, + 96382.02705846845, + 94634.35092199444, + 96601.97537172223, + 96473.43688595422, + 96422.64317562626, + 96431.47888012671, + 96636.83424445745, + 96056.19248735494, + 96515.11905526402, + 96660.38035113053, + 95774.24926109349, + 97585.87618383576, + 96583.5257472604, + 95122.89837108535, + 96605.90599322402, + 96038.36554774032, + 96031.4993704607, + 96675.71260270195, + 97049.512435505, + 96433.845799983, + 95897.07037264043, + 96960.27176327427, + 96307.85692216411, + 96242.35848519257, + 96819.81129369602, + 97249.8102467086, + 96108.87427334944, + 97349.66316971318, + 97012.3360267975, + 96330.17839103569, + 98400.16393508099, + 96728.43531848033, + 95819.22417527653, + 97357.92552252565, + 96299.78998071494, + 97385.46389592621, + 97411.8360170104, + 97204.89839977278, + 96463.30750173924, + 96598.60562028212, + 95896.43296916565, + 96091.45432140626, + 97311.35174306807, + 96200.70472225144, + 97500.53674710442, + 96082.33537164425, + 96477.12621197902, + 96347.4403938442, + 96763.1280194511, + 96773.35799206587, + 96670.27291581893, + 94870.7294183785, + 96530.4881400899, + 95996.08028297019, + 95648.0622321095, + 95765.59330845765, + 96347.57634764894, + 96313.51649151853, + 96240.89790514634, + 97253.59328958677, + 96585.02524485815, + 97110.64567914454, + 96401.05087142391, + 97634.16117706981, + 97632.23610323192, + 96476.9266197321, + 96143.59715704634, + 96442.3959926909, + 97173.67520609817, + 97452.54296459325, + 98764.71093073962, + 94675.58068459465, + 96584.45858311476, + 96074.51018899358, + 96941.3855747379, + 96481.93148257826, + 96194.20097196527, + 96410.63417003947, + 96268.58433157318, + 96844.08726268722, + 96732.61589548577, + 97054.54306076036, + 96736.36947326055, + 95950.87856285187, + 96058.5884161396, + 96074.46008448287, + 96373.61215631547, + 96774.68889401545, + 95954.6226953649, + 97375.91125894338, + 96762.60907180404, + 96892.63356474544, + 96499.75723381033, + 96294.09088720444, + 96966.39468034501, + 96109.50994722702, + 96088.99615148573, + 96447.29551553998, + 95819.44644735986, + 96218.35482989937, + 95899.18906383448, + 96769.01595020863, + 96274.30300397708, + 96042.0069575773, + 97385.79270355738, + 96229.39248836122, + 96126.32784334563, + 96635.17803046739, + 96526.03756640776, + 96032.39838433285, + 97463.6827927217, + 95854.85581067526, + 96404.04885412315, + 96940.5437378161, + 96906.44900909, + 96406.17290872385, + 97193.59098538685, + 97229.6312230193, + 96433.95166449582, + 97275.9101009866, + 96243.29294451735, + 97395.09075685765, + 96491.31294403854, + 96377.89286649457, + 96395.26906016511, + 97324.02537320471, + 97620.07637011069, + 96147.39169169297, + 97643.64988982778, + 97033.93508477152, + 97602.881367329, + 97155.50811563137, + 98171.17574764158, + 96541.43397278279, + 96167.45474416234, + 95870.52327035548, + 96926.74644690406, + 96878.0650637567, + 96356.62202527624, + 97610.48729478249, + 97375.10606040448, + 98168.55916640947, + 97401.99871940678, + 96722.2929728447, + 97054.36607374287, + 96603.25260090239, + 98932.31091884513, + 98926.20655583622, + 98881.20399257346, + 98873.6590998779, + 98776.08147395353, + 98916.08043593282, + 98775.64297666437, + 98833.5386160878, + 98779.4951496633, + 98769.87019965112, + 98763.69912444155, + 98715.38337956829, + 98838.01226486915, + 98731.25835265023, + 98794.9356782363, + 98875.12446310604, + 98845.6917714939, + 97598.41715003968, + 97191.15673842629, + 97554.49945784982, + 96994.3545714313, + 96415.73464421919, + 96234.84158094184, + 97792.47295206528, + 96462.81227754163, + 97852.29653105894, + 97497.28727853562, + 97343.57538035887, + 97366.39316478191, + 97781.84828947709, + 98514.4612858039, + 98281.43831840085, + 97921.70930511011, + 97902.18401137421, + 98983.632695647, + 99203.2809335762, + 98509.44614370928, + 96494.98600367835, + 98740.78608913493, + 99612.16066233935, + 100399.53610597138, + 99242.27473376936, + 97873.62352691275, + 98601.01896303026, + 97723.80989181406, + 98367.93488464183, + 98698.73643764145, + 98474.73668821216, + 97769.5225019777, + 98424.79828892439, + 98849.99134497087, + 97153.8202347327, + 97784.87511330319, + 98488.59232974793, + 97835.98880603131, + 98697.76296828069, + 98425.30418388022, + 97352.5478411118, + 99087.60514794616, + 99562.51936967154, + 97438.32392949228, + 99581.18821252153, + 98484.49246054886, + 98589.19418356709, + 99047.9458477898, + 97904.87372888521, + 98685.34030967425, + 97236.56543939441, + 98552.63522931661, + 97440.7506574999, + 96448.97691094204, + 97272.57643613985, + 96709.59744547942, + 98547.70620576198, + 97115.24870623546, + 96930.11819667481, + 97074.16623154836, + 96568.92366528956, + 98713.83774017166, + 98345.9554260893, + 97740.55752143663, + 97988.18684320113, + 99349.28939642792, + 96556.14889918086, + 99625.77747749203, + 98427.86290460796, + 97468.41119559384, + 97532.46968364714, + 97025.5243570638, + 97403.19800982128, + 99189.38105820611, + 99130.3078520612, + 98512.10297397664, + 98519.8177010953, + 99017.67985713482, + 97619.72683427205, + 98914.83209812317, + 98147.84267591721, + 97949.55637290105, + 99502.83924873942, + 98872.0205731119, + 98390.87404103394, + 99053.11429206465, + 102016.60254936705, + 98075.21405525423, + 99162.58751241713, + 99982.38307176298, + 98292.59127337417, + 100060.98457894419, + 99185.22072761349, + 97947.04358444022, + 97474.60738990385, + 99170.7047386012, + 98052.15218821482, + 98616.68136712202, + 99500.63364741569, + 98316.9751512879, + 99176.98993944687, + 99162.04598470115, + 97788.31675277463, + 100348.89954635833, + 99148.26930216937, + 100486.82668676783, + 99758.98817475478, + 96889.7794321626, + 99026.6226858807, + 99069.25619307961, + 101823.31476410347, + 98379.14339417113, + 101380.81652138675, + 99254.27452910501, + 99227.13583415966, + 98212.04884196128, + 99094.77135415385, + 98915.86627395742, + 98121.78812235915, + 99010.43098706538, + 99006.76819217965, + 98421.28339426052, + 98918.94691074, + 98809.12475691538, + 99070.331362437, + 97874.19535094783, + 98942.96036569965, + 98368.76399286573, + 97911.02555719024, + 98818.24534258251, + 99191.65795239966, + 99272.95214509276, + 98629.16309416488, + 98896.61825153053, + 97353.8831923671, + 98413.72450899602, + 99048.52954857876, + 99860.44427206193, + 99875.65907184825, + 98991.31426615387, + 98545.72335094343, + 99143.15955432564, + 97910.12779784399, + 98656.64266720755, + 98406.94597948619, + 97476.14534117641, + 97524.08090876219, + 99171.65872471192, + 99548.50572708945, + 97949.35571979226, + 99391.34679357102, + 98722.02495329459, + 99374.50165106604, + 97825.10446462789, + 97650.77807951198, + 99091.39852136569, + 98663.5728126574, + 98159.03165818081, + 99060.55516943279, + 99070.36691418258, + 94807.18741906618, + 99956.68584656977, + 99881.38194405592, + 99269.75421848508, + 98657.65560967932, + 99187.14420424569, + 99130.37213728795, + 98433.94367818839, + 98598.39852284717, + 99397.67295607875, + 100062.94026884029, + 99683.93197275087, + 98942.47918301482, + 98372.2920372052, + 99106.89445006047, + 99057.76069575727, + 98225.6719769043, + 98965.17216239334, + 99161.06627467804, + 100038.45200630881, + 99231.69745173643, + 99643.13410786055, + 99121.89628822553, + 98896.0953062042, + 98996.3949186886, + 99010.23040006083, + 99067.43224177675, + 98982.5538246546, + 99326.93888038411, + 97455.17599729972, + 98980.69875328755, + 99685.34161040152, + 100612.93716200726, + 99244.69832153102, + 99226.22079845401, + 99091.55472439228, + 99026.64548034257, + 98688.75667619119, + 99060.11730816362, + 99629.11999021804, + 99571.7539254891, + 99395.9830884571, + 99183.91384425001, + 99022.60912279715, + 98991.26055747598, + 99097.9010589485, + 98904.92041991555, + 98790.64444216965, + 98653.03461351694, + 98528.28228471124, + 96470.76012407262, + 98077.79681744472, + 99214.362436891, + 98581.61307739322, + 97662.82472168292, + 97762.19782518726, + 98322.0050156767, + 98186.65877994802, + 98241.1113495342, + 98809.36210538005, + 98799.40792106478, + 98692.54803294275, + 98857.10511058902, + 98818.13714193161, + 97358.46679886585, + 96071.64726551576, + 98184.18254674674, + 98420.51887894224, + 99085.54243090276, + 99105.27578480003, + 98161.02751086211, + 98705.71088691853, + 98721.31378803315, + 98128.91359559372, + 98293.07266113821, + 97827.63907828067, + 98054.0065827654, + 98251.89202247094, + 98211.55320628641, + 96475.17933169345, + 98568.00044350624, + 98364.36914082733, + 98331.41182590384, + 98163.10895570937, + 97554.9960699299, + 98038.14058948433, + 98858.81885856122, + 96255.92043157357, + 98120.00401419179, + 99907.08283776883, + 97770.11547186453, + 98260.97237711879, + 98649.88742805325, + 98112.09979592523, + 98728.80932783807, + 98743.18237840163, + 96497.28753916033, + 99041.0309662276, + 98538.18176070268, + 98404.5074674531, + 98168.58123872355, + 99485.28366531829, + 98727.3121423661, + 98706.38695246876, + 98212.5660722969, + 96338.9907537572, + 94647.79050717162, + 98994.41997788764, + 96237.3014003704, + 94688.11906145522, + 96639.48963731402, + 95635.79388111227, + 95971.63945756324, + 96148.36985614852, + 97265.23793720463, + 96888.812856475, + 96702.93382964614, + 96685.11446346446, + 96692.14973493623, + 97854.41540216467, + 96886.64740803099, + 96012.22372465217, + 95855.37346994528, + 96019.51490257688, + 95928.73602388412, + 95655.37022945724, + 96175.94057358746, + 98401.53156330762, + 95386.7915315098, + 95383.19508052658, + 92604.63107627998, + 95893.574265848, + 96026.40843242637, + 96114.05896419227, + 95834.93768300924, + 95619.17778565394, + 96108.40628370653, + 95731.71785167878, + 95777.00472574684, + 95353.54589236321, + 95800.17831353597, + 95203.24310226098, + 95930.34153333298, + 95903.12103009703, + 96914.4073833856, + 97103.69288164194, + 96898.52471952, + 96820.8105552239, + 96112.34947297389, + 96008.4744666249, + 96893.41939654587, + 96865.8409444725, + 97240.38028997074, + 96876.82259242256, + 96619.39742322621, + 96882.99940588712, + 96861.44317975816, + 96768.5817251259, + 96559.08563953191, + 96649.40356388739, + 96625.72014898527, + 97992.50506999153, + 97617.39505268811, + 96070.12571463303, + 95866.20481677107, + 95662.62644960554, + 96100.86678198376, + 95405.1846400074, + 98524.57731541038, + 98061.51654616423, + 98127.50014794023, + 98433.46713226559, + 98303.3954720316, + 96465.29272664362, + 96421.49499570957, + 95652.29809552783, + 95574.25352251745, + 94671.14162737239, + 97196.83695998523, + 97409.25368271414, + 97234.04346137235, + 97434.01515339047, + 97272.13864563021, + 95567.54268381129, + 97324.16299961129, + 97481.45108043253, + 95459.71080597503, + 95521.93192587548, + 96559.7026621268, + 96622.87666955806, + 96449.25631444062, + 94919.54440569754, + 94171.18973519026, + 98378.94284214679, + 94645.87712676502, + 96735.91203018947, + 97334.69528656456, + 95915.62243658677, + 94473.57318014126, + 96498.2979299931, + 97046.83129228091, + 96532.6646683294, + 96214.62212633847, + 96146.8337078855, + 95343.9410888273, + 95506.46666204746, + 95380.57975889063, + 95213.69401511893, + 94761.32003739124, + 96370.41426861439, + 96556.18686331193, + 96600.23269030724, + 95312.03621158424, + 95103.86724211255, + 94154.4683582202, + 96651.05281133259, + 95926.00835539421, + 95794.56902475153, + 95275.96542639584, + 92619.51334005372, + 95388.1231928088, + 96533.09552389133, + 96602.4666381394, + 95710.95963260993, + 96173.23715080458, + 96169.80106348639, + 96919.26178312073, + 96999.24006270662, + 96911.02758063171, + 96767.7608495193, + 95402.18303854323, + 95963.6655367038, + 96323.93164666534, + 96035.94449947504, + 95826.13450428299, + 95894.3821805092, + 95735.81320135522, + 96785.2273252981, + 96844.44949459478, + 96450.55318015978, + 96234.86536056163, + 95910.45905898156, + 97216.8097752767, + 95733.15082062641, + 97623.71573684271, + 96003.07301754713, + 95855.84606940606, + 90620.59321338178, + 94139.8012458913, + 94032.80335215264, + 93807.67468704915, + 94732.86002550159, + 96955.0168977828, + 96373.51181593174, + 96024.31193605777, + 96039.53114090665, + 96558.40139577903, + 96648.53242134354, + 96344.26723680123, + 96248.28034246547, + 96483.28090692386, + 96054.44520130524, + 96524.24227801626, + 96583.58536032659, + 95881.63940456003, + 95096.87780489783, + 94429.634403017, + 96769.24653086865, + 95885.77494615254, + 97401.66966851291, + 96529.94166735753, + 96400.6315649038, + 96701.50888855853, + 96563.36738665988, + 96663.0086169134, + 96404.13831153684, + 95923.70592479738, + 95540.24503251979, + 95920.065981809, + 96456.96747554903, + 96427.6516351581, + 96826.02448370877, + 95922.0581596575, + 95802.9629154136, + 95957.78104570328, + 96331.52105283472, + 96392.03219267243, + 95481.26094749449, + 96072.651127653, + 96107.71912624051, + 95682.31879557903, + 96011.6169628847, + 98745.28871415959, + 98737.9075507478, + 98260.19273313228, + 92403.72030892958, + 92552.59924319923, + 94130.55860663287, + 92453.32910364396, + 92636.97281790803, + 94694.68806398017, + 93639.94569899137, + 94259.03278558327, + 91080.58784143622, + 93850.41662442079, + 92357.81244688503, + 92015.08959235293, + 92793.59818111316, + 94015.54400806065, + 93415.0685794173, + 92661.92845541582, + 92700.30450697383, + 92811.56373493784, + 88980.87619367571, + 93666.16904241925, + 92727.31906879041, + 92625.18394918887, + 92710.21548334243, + 92730.67067426581, + 92599.58217260841, + 92761.81424118878, + 92651.26372829395, + 92548.69810217191, + 94753.5297564697, + 92642.4602856306, + 91676.43793576607, + 92695.15487336805, + 93155.38758721903, + 89305.71197876369, + 94890.65745591454, + 93887.36045593988, + 93682.44991506475, + 92689.24617566908, + 93904.56333636155, + 92764.63612228677, + 93226.39690794115, + 93143.11311426201, + 94983.58739011025, + 93345.5384733388, + 93475.56240329082, + 93855.61888073095, + 95749.39705457314, + 94465.17063363985, + 92913.17761014139, + 91312.64033973779, + 92365.60828492136, + 93034.01413382801, + 96232.6883024668, + 97197.31119879312, + 97345.58098981141, + 96319.04144083924, + 94787.68098338218, + 94304.28587484072, + 95375.71980775791, + 96010.91751038717, + 94846.74238052499, + 95360.36419013362, + 95443.67008227661, + 95781.4838692387, + 95621.74045129302, + 94709.05739456239, + 95069.66525755977, + 95628.14642198732, + 94459.15082891459, + 95527.20667464145, + 94762.37057915328, + 94658.19240918643, + 94716.98202491149, + 94759.00609204093, + 94646.88730549908, + 95292.52782742439, + 95093.22706462545, + 98085.07588417802, + 95163.75908553116, + 96006.77287976355, + 95274.60828290615, + 94773.27914431288, + 94843.32769305678, + 94756.04785280023, + 94693.04021624882, + 95274.55463163379, + 94205.42306946588, + 94740.62358451245, + 94914.46333674647, + 95731.94340542807, + 94554.58874211222, + 96091.204926268, + 95643.38624755875, + 95405.5970323345, + 94965.90340529142, + 94090.45690331612, + 92687.32405817328, + 94400.56846677243, + 94532.99011271482, + 94838.88278888688, + 94912.71843664766, + 94702.53619375687, + 94259.06712940332, + 95687.5583436565, + 94745.48610069028, + 94924.7628056497, + 94836.83100987966, + 94635.31494511566, + 95171.36460552194, + 94428.00833897035, + 91875.6118444357, + 94818.5478788063, + 94803.47505405096, + 94609.06856092627, + 95243.05174065192, + 94579.1668497888, + 94710.98077661607, + 94636.4031377064, + 95594.04154313843, + 94853.46116542409, + 95262.41295878915, + 94996.61867838957, + 95427.51893881544, + 95141.30835602302, + 95135.73958053072, + 94811.20964058898, + 95308.98963794683, + 95213.77887412795, + 94550.01100453151, + 94616.6585852082, + 94915.01791906256, + 94779.60175355068, + 95651.87929649846, + 94969.43121341393, + 94871.66004225804, + 94698.2564749882, + 98122.6370414771, + 94609.75573408123, + 95744.51531875192, + 95569.49080974681, + 94553.34862649688, + 94068.90013805934, + 94911.10914154527, + 93841.09081628201, + 95055.96301467503, + 94973.76103672285, + 93860.33853556491, + 94666.08189515283, + 94804.05777877627, + 95192.48874345585, + 94682.03972500942, + 94318.87336662205, + 98071.86657727559, + 95074.67859421566, + 95052.34933786246, + 94847.03071224976, + 94712.39449672872, + 94681.03509595625, + 94662.70335696908, + 94530.9667988148, + 94394.743184273, + 93236.21560331441, + 95228.59152965351, + 95599.18088294458, + 92172.3185204082, + 94730.79640190289, + 95015.49625623692, + 94674.89580671789, + 95460.7576657949, + 94694.88936601186, + 94637.44384110306, + 94023.65044193376, + 94711.8919185092, + 94639.7976547818, + 94969.34668009236, + 94867.71860626241, + 94499.29954296813, + 94412.16071475198, + 94500.6446202604, + 94316.72565507321, + 94747.77428662438, + 94831.09840327874, + 94872.79287174557, + 94598.10840219341, + 94789.93569354182, + 94645.92150016353, + 94772.43466967792, + 94783.49907630085, + 94624.56371474003, + 95782.49090316397, + 94352.71458049152, + 94039.43659745945, + 94724.12280359474, + 94549.95722461416, + 95172.62949097781, + 94748.03678735308, + 95142.30696566738, + 94079.97573473441, + 92867.65170326555, + 95137.86898625335, + 94657.09089040948, + 94592.18007251328, + 91386.79521336866, + 94302.9983659527, + 95035.60486780475, + 95213.0622434433, + 95306.71022996533, + 94700.77181220899, + 94617.81259757694, + 94535.68576734806, + 94750.88896059677, + 94470.20509490756, + 94511.66669647257, + 94490.98493329533, + 94846.70037648812, + 94034.72001872609, + 94559.50779408682, + 94466.7376842554, + 95513.58278963793, + 94305.51369188944, + 94851.28150629238, + 94772.25786639804, + 94518.72288699445, + 92600.87220891484, + 94385.63245566067, + 96765.01998356344, + 94624.67668233525, + 95320.26347648272, + 94187.4208589902, + 96407.8149457741, + 93866.57023587385, + 96732.86821624868, + 95848.64233101926, + 96229.66105626737, + 98178.17510730785, + 96273.17959649833, + 92820.89814897874, + 96599.13805686972, + 95659.94479562767, + 96357.58676902352, + 95689.95404916865, + 95858.68960868126, + 95814.95649081406, + 97069.64943071302, + 95560.28088297267, + 96806.8541605258, + 96947.40675273385, + 96920.50398772888, + 96767.50358245717, + 96817.66055571858, + 97237.89195347154, + 96888.97576383248, + 97141.56965571626, + 97272.16196531034, + 97095.49525391203, + 96704.00303777175, + 97189.19276118421, + 97208.55798356787, + 97237.84080032888, + 97406.36037264415, + 97126.32920940703, + 97194.39851002919, + 96183.9812972283, + 96795.31918949624, + 97051.71285679028, + 96645.4446535775, + 97016.89968225527, + 98970.15914526228, + 96164.31165177577, + 96955.80310269099, + 96766.57575414197, + 96880.45975619479, + 97320.49185837018, + 96510.18842656737, + 97003.43303968408, + 96660.51533943972, + 96966.02647052168, + 96859.70450714213, + 96932.30642163414, + 96852.77079415339, + 96081.2975453023, + 97015.25817987997, + 96839.05193444177, + 97817.707556705, + 96743.47300321168, + 96633.1960028662, + 96915.22190900354, + 96645.1229128067, + 97004.95986761729, + 96566.99750987656, + 96241.34047154605, + 96094.8508150237, + 96329.29923380495, + 96303.92041500923, + 95909.7739787418, + 96400.51278286969, + 95574.39534418302, + 95694.79665191291, + 96078.87408767999, + 96745.54904144225, + 96885.45509832901, + 96570.03585592323, + 96847.7893432129, + 96580.26314007488, + 96283.38222595652, + 96330.75641404516, + 96505.76788267054, + 95933.78130606312, + 95969.93628717288, + 96241.8368167467, + 96516.24082699847, + 96352.37619288662, + 95977.4908427389, + 96086.9490860762, + 96094.51833331272, + 96758.39095887466, + 96034.32749733706, + 96026.76816689323, + 96158.4488359556, + 96031.66005598055, + 96864.42186310086, + 96587.15552488458, + 96788.89525885877, + 97189.5131054329, + 97669.69791198618, + 97278.5656163335, + 96896.58750176255, + 97154.72425616732, + 96987.80225378742, + 96695.54475332797, + 96726.40817559678, + 96767.46602322998, + 96813.4343547639, + 96791.18101461837, + 95389.10664694483, + 95472.00274613315, + 95935.5419641612, + 96253.58305118927, + 96263.70637434645, + 96534.04849627241, + 96198.74714645866, + 96023.10216322435, + 97066.1566770924, + 96512.6439304231, + 96656.65493202257, + 98642.78682170947, + 98026.80584910973, + 97317.9470175812, + 97558.53189592143, + 97354.04987112107, + 98156.10361722215, + 97559.12810431966, + 98672.80035077463, + 97608.46722365031, + 97720.70350653208, + 97761.99442165645, + 96752.4665017377, + 97746.8391580485, + 97819.4972376039, + 97811.11864279254, + 97693.57749236286, + 97735.9507021614, + 97384.36803091576, + 97155.80752875579, + 97787.10318478926, + 96725.27797613826, + 96656.51605951994, + 96621.34244090467, + 96787.80852813035, + 97481.5752702023, + 96763.64967872995, + 98517.20808727229, + 97409.50882998393, + 96746.40104686156, + 96387.0378486012, + 96137.27428645456, + 96447.65576692639, + 96500.05485471405, + 96602.41413482858, + 96347.26384012886, + 96798.05259841571, + 97123.64353111561, + 98810.40128605721, + 98748.83379870633, + 98766.84037371344, + 98595.68155874425, + 95432.28216788654, + 95102.33265077158, + 96969.06747778888, + 98047.49514396398, + 97477.31474980435, + 97384.80366070305, + 98571.74309474658, + 95476.30474211962, + 96247.39210484998, + 95988.61012463992, + 97164.97647400496, + 97510.69098668513, + 98349.87077216271, + 98009.1006468227, + 96860.00354930486, + 97218.18359466371, + 96532.6513290047, + 96476.99449429182, + 96460.3440809962, + 93363.71919768747, + 93502.02146333765, + 93218.26568575818, + 96605.96850560357, + 96834.80703834713, + 95965.26838759349, + 94954.26355620637, + 96061.1094111204, + 98472.89573129527, + 98477.25442843478, + 96663.3347349886, + 97182.40630309808, + 98498.41434807747, + 96705.80879914662, + 96932.7889750408, + 96884.50148839512, + 96614.16469347998, + 96666.70966909935, + 96700.68589331902, + 96643.9005120101, + 96541.9681406362, + 97087.54671590365, + 96751.41823297429, + 97088.14880740178, + 96691.22132401943, + 96809.66561279182, + 96774.85380189044, + 96773.12113524246, + 96537.39245144221, + 96631.60109535737, + 96479.84660377468, + 96957.50399046045, + 96802.58799326436, + 97026.39229748285, + 97321.50714071444, + 96685.14736048535, + 96659.44539572205, + 96476.29445285945, + 98504.94937934296, + 96505.43473450017, + 96630.14481112546, + 97079.77003968997, + 97164.16435672548, + 96758.34868779706, + 96814.38545725966, + 97131.06442362265, + 96587.63072624992, + 96701.44181961339, + 96868.32753094017, + 96485.2623043036, + 96544.79575713704, + 96879.06539514555, + 96650.5251142157, + 97056.66087663827, + 97018.7876594228, + 96726.97841332003, + 96785.79342645025, + 96719.79877048176, + 96500.3647531615, + 96920.00376965974, + 96805.25180958064, + 96511.27388316976, + 97143.69979917424, + 96785.52822630318, + 96751.7242293975, + 98488.89658362548, + 96527.82964364873, + 96815.18595416151, + 96727.94539580634, + 96877.61190695128, + 96674.53853073626, + 96755.77967969238, + 97629.85915951653, + 96896.55417266351, + 96874.61155723894, + 96781.7373211774, + 96671.25152661269, + 96934.94898597764, + 97005.77074047142, + 96964.78110583073, + 96640.3915108683, + 96561.11544487227, + 96787.83212641206, + 97117.91370467145, + 96752.7630566314, + 97904.95870247688, + 97287.61876639193, + 96977.41506513029, + 96672.9812022687, + 96586.3268270632, + 96797.33031385214, + 96770.78381407568, + 96767.69056492882, + 96916.62444917303, + 96736.187248987, + 96497.40326486343, + 96981.69606403777, + 97757.99670975313, + 97360.13554374868, + 96792.24969134637, + 97386.8040364756, + 97041.45585776801, + 96624.01938254207, + 96974.28350714296, + 97156.22383491664, + 96954.62064886169, + 97046.79482101345, + 95844.28052724677, + 96795.23928720718, + 96772.56610132441, + 96821.18944890518, + 97037.54167528427, + 97304.17187437204, + 97045.7174310999, + 97031.3088470609, + 96973.7313647934, + 96827.27721865964, + 96836.63104835567, + 96915.11359133502, + 96603.10265344591, + 96572.35122948136, + 96562.71215702499, + 96669.45654037285, + 96608.97450213194, + 96780.12324046777, + 96759.8367076845, + 96729.07888575827, + 96451.36476325426, + 96426.58864894029, + 96654.61006042475, + 98502.39684963804, + 96710.20852553143, + 97529.59178857305, + 98492.45967203799, + 97097.47714912827, + 96949.62066620833, + 96872.36708461096, + 97572.7954448912, + 96534.13113359883, + 96670.03282167818, + 96915.56474058192, + 96690.79996780091, + 97081.73959470788, + 96645.28675952984, + 96845.49984264001, + 96791.42873166909, + 96848.6019348336, + 96653.33167046132, + 96798.09730894824, + 96830.20824198317, + 96974.68588435129, + 95329.09589374838, + 96625.20312840438, + 96583.08101942415, + 96848.58357963007, + 96685.21610856292, + 96647.86296497285, + 96749.19177745887, + 96667.27172199388, + 96915.00366898013, + 95683.09108910317, + 96463.21403142411, + 96884.74639022724, + 97951.06604016566, + 96603.17113805444, + 95950.60579597944, + 96582.65960470523, + 96864.74890763631, + 96899.74561231451, + 96767.43202743762, + 96984.0156607433, + 96697.59306293263, + 96742.76428952735, + 96935.54268135317, + 96991.60346683899, + 96580.8583468943, + 96480.30494028228, + 97026.73007218333, + 96873.58873560156, + 97214.28101702654, + 96962.13430709024, + 96445.14131578358, + 96952.0852964525, + 96485.30175383571, + 98188.17126174309, + 98087.3338631131, + 97264.08371499478, + 96567.84669526415, + 96692.64254266855, + 96954.5126568193, + 96442.24721615986, + 96675.1674827983, + 96911.71700742826, + 96559.09520602223, + 96964.90990095795, + 96368.1267297445, + 96354.29226248538, + 95704.0871202312, + 96138.82096969092, + 96702.30104154837, + 95863.078617055, + 96928.70418989572, + 96875.43456713467, + 96712.85163544948, + 96210.68445716402, + 97643.43217333438, + 96875.38177626212, + 97277.67379891923, + 97650.21348938807, + 97380.97035221593, + 95912.88033660327, + 96875.44858847588, + 97090.26472678532, + 96986.78948010856, + 96355.34401319342, + 98484.83314214389, + 96480.80058099459, + 96582.01402568171, + 96882.04031575473, + 96747.25944879792, + 96853.94619098958, + 95902.58151687872, + 98205.92395781298, + 97674.61704340234, + 96816.42131470822, + 96625.30102032366, + 96574.89605254125, + 97026.03297053343, + 96755.84845242432, + 96494.99482485962, + 96639.0949732792, + 96550.01108530164, + 96575.31613115326, + 96810.72873758491, + 96896.94014138209, + 96693.47055992209, + 96951.68482481911, + 97105.86446933058, + 96683.343489294, + 96700.50651493037, + 97613.5093531771, + 97632.10124528216, + 96831.69055597908, + 96828.99548296859, + 97813.18960016311, + 97805.18437428074, + 96640.17245945708, + 96731.09231285357, + 96542.83564645311, + 95421.91735289371, + 96934.21301456064, + 96053.80630400538, + 96579.76590487406, + 96621.95641731111, + 96695.15836873942, + 96467.60417095249, + 97510.01962082756, + 96836.22412942452, + 96686.3684942306, + 97774.42866113664, + 96427.1842433544, + 96602.9455448259, + 98341.41820230329, + 96759.39098466327, + 96654.14513994215, + 97094.20573290615, + 96534.89129183585, + 97845.68054608024, + 96714.32338601344, + 98362.46614454236, + 96555.05094020838, + 96417.4243506057, + 96624.55409529047, + 96913.27672047008, + 96613.64565810803, + 96882.63562796098, + 97785.31723795002, + 96921.65832155356, + 96574.44776110545, + 96722.32663398494, + 96695.61808666041, + 97113.91196565128, + 96976.68282643448, + 96054.400615084, + 96278.15788483768, + 96861.56370770434, + 97796.07080948977, + 96611.246762707, + 96530.79253993953, + 95901.82083235442, + 96962.41375364321, + 96900.49410984787, + 96440.3614255588, + 96738.66732022622, + 97200.14076518768, + 96926.75612600744, + 96651.84522301337, + 97627.58936686792, + 97563.98838997139, + 96560.8916778657, + 96729.69482051903, + 96715.7628390581, + 97379.01812972916, + 94485.92993817783, + 95302.46268343864, + 95505.88427993505, + 95182.96656441354, + 95083.07696160226, + 95260.63775038713, + 95343.04710668822, + 95077.9137547502, + 95200.52568374142, + 95457.42674465815, + 98692.43143064567, + 97571.51683328462, + 97573.23040616274, + 97722.41636121254, + 96711.97005754894, + 98202.27708314388, + 97820.56830441093, + 98259.11178546748, + 97235.2488696914, + 97297.7274926661, + 97293.5203062695, + 98708.3190257109, + 97802.97859779913, + 97828.5668503006, + 97770.18528248275, + 97622.16011647054, + 96887.45716809586, + 97090.03432996322, + 97697.42848707616, + 97701.66892815946, + 97585.79298176516, + 97486.26616142577, + 96505.5934631506, + 97579.4448614383, + 97691.63703682291, + 96515.60149309262, + 96526.16766938524, + 96542.88730412883, + 95826.70973681552, + 95195.45569059276, + 95229.32767677493, + 94971.08522590312, + 95259.91296974945, + 95151.27865865134, + 95457.42579193789, + 96625.91253011048, + 96650.26887770933, + 95953.43758977612, + 96414.9173008834, + 96657.44331032071, + 96774.09206013042, + 98370.08752364217, + 98185.39228188255, + 96866.57408532791, + 97930.86589331932, + 96177.19856058512, + 97176.04373508078, + 97153.25597882869, + 95838.54674259001, + 96532.8341303869, + 98997.74271020413, + 99362.59751327203, + 99276.9196152002, + 99226.83402346286, + 99522.14887276676, + 97465.09518672612, + 96648.9363700922, + 97362.29677323089, + 97352.27827718583, + 97314.13790026988, + 95480.79812433262, + 98668.36393861687, + 97838.4175081634, + 97754.15865943547, + 97387.10298484987, + 97017.6751012583, + 97715.03542524244, + 97428.2088550206, + 97045.79560002222, + 97717.63943455054, + 97512.25460842131, + 97068.03081922044, + 97443.46951981564, + 97329.89355877684, + 97519.79955646732, + 97844.94572301708, + 97678.1464428742, + 98526.54572504741, + 98430.07797759793, + 97500.16873207534, + 96981.97321773143, + 94617.5959694371, + 95301.3607194778, + 95227.77092314835, + 95402.52158220478, + 95276.97798041081, + 94853.13681242797, + 96019.73206058989, + 95949.12131101474, + 95997.16066474574, + 95427.65531943327, + 96645.63733017922, + 96622.44802724649, + 96637.20944908995, + 96402.067408069, + 96546.81074094832, + 96396.69753430235, + 96935.23882458691, + 96582.14749337402, + 96220.7703218342, + 96871.32320011256, + 96963.41552878823, + 96210.59439600962, + 96315.24613181091, + 96028.2888002032, + 95489.22963590887, + 95828.46924619444, + 95482.44304451962, + 95066.06523441382, + 95488.52095752831, + 95505.50501741502, + 95397.10356995185, + 95504.42605081353, + 95949.84954429526, + 95510.02889292239, + 96156.074298552, + 96344.83157727902, + 96192.16190696902, + 95914.16367038043, + 95991.06452640316, + 95745.4694082097, + 96072.76062132008, + 96296.57518040262, + 96237.23840449286, + 96100.16964314734, + 96577.18594978366, + 96564.47351993735, + 96768.15156923435, + 96405.88036665124, + 96370.19303826737, + 97545.38850460328, + 96249.72659060232, + 97705.70304050583, + 96647.32091240633, + 96573.99731256816, + 96536.36409486223, + 94888.48155674861, + 95501.8125864358, + 96398.60994140033, + 97087.09725827706, + 95858.67269394762, + 94889.58026607656, + 95744.0722676581, + 96539.2876843912, + 96488.71126504915, + 96574.07459048775, + 94476.68554039652, + 94952.05763640381, + 94960.14806309502, + 95868.93237525053, + 95844.61270594754, + 95987.03936165375, + 94066.51607848209, + 93976.18462674941, + 96358.25249911078, + 96321.80373689976, + 96114.11946368766, + 95768.86401324993, + 96245.67690227392, + 97449.2228277016, + 96919.80862750238, + 95714.35022151601, + 96636.93741201112, + 96668.40960032, + 96517.34543879435, + 97008.15894636505, + 96807.74423569046, + 95387.72814612064, + 95418.41077655359, + 95472.67938384521, + 98114.52152816013, + 98111.97280969669, + 97753.21078683695, + 98142.06219207752, + 97488.66800355395, + 98144.87686544789, + 96528.57510021586, + 96901.55938078823, + 94256.97992301545, + 94390.62485294472, + 94474.18506646619, + 96818.20189981317, + 96638.80405463175, + 95888.00973910451, + 95799.49717635973, + 95761.360020285, + 95802.05331128874, + 96973.49939574185, + 96633.26092124682, + 97052.8332660283, + 97011.81451068369, + 97113.70285257122, + 97210.3004088966, + 97188.26787866931, + 97056.56327204366, + 97626.44431224155, + 97350.90150160708, + 97162.69508453069, + 97817.20098235017, + 96022.18132064518, + 95680.02527851156, + 95894.41366117746, + 95794.3620644187, + 96845.07860198681, + 97276.29878619949, + 97481.0467852597, + 96200.64224390368, + 96069.95563247148, + 96759.80185472532, + 97151.48266936177, + 97525.66398682565, + 98129.8335044742, + 95869.4969027973, + 95947.6612354604, + 97219.2344849453, + 97524.9702327776, + 97462.76341227313, + 97570.78852224046, + 97965.90473223805, + 98426.11814680099, + 97400.88013760047, + 97830.50425286932, + 97563.51909740941, + 97959.05424320973, + 97250.30982328247, + 96876.62587606598, + 97177.84417040872, + 97044.98522321004, + 96890.44446357607, + 95746.74077759727, + 95514.38455692613, + 96085.91161839501, + 95540.81075134124, + 95161.64737314533, + 97743.37633435942, + 97368.18786729996, + 97400.16397729573, + 97615.97056569872, + 97788.7651245566, + 97923.16505107327, + 97749.77214743374, + 97737.47168433828, + 97643.42074759667, + 97749.29069670282, + 98137.79198213125, + 97782.44112987598, + 97566.10709216155, + 97247.41509419652, + 98703.6866543077, + 97300.96068285858, + 97415.93818773415, + 97789.92707115466, + 96750.40498635444, + 97809.32654645263, + 97809.59302628535, + 97788.58031988013, + 97768.46861576667, + 97504.52578621544, + 96578.02421964555, + 96409.96532967011, + 96325.12988946559, + 96767.96478692938, + 96753.02617057231, + 96869.39684947954, + 95763.40443589797, + 95719.63523794102, + 95771.1095203462, + 95203.1376507783, + 96270.15699232905, + 95244.0575474311, + 96476.2244248884, + 96533.83917036175, + 95627.6655653288, + 96487.74751288781, + 95709.93291907338, + 95658.32063821593, + 97536.70985088356, + 98229.18483310309, + 95989.76467211267, + 97600.72228126202, + 97959.01602952153, + 98371.01061870782, + 97789.64547242364, + 95737.0210501743, + 96247.5730261708, + 96716.89120782126, + 97052.70205106144, + 96826.71329736618, + 96991.17451689237, + 96760.3513556949, + 96464.55718535923, + 96534.278171482, + 96405.88296277358, + 97516.13365436997, + 94593.1532092616, + 94062.66633331862, + 93616.21500771031, + 96780.96571153034, + 96527.45528447787, + 95617.05222697879, + 96115.57754246322, + 96350.897783121, + 95713.33557938566, + 95448.68746731608, + 95293.92851935429, + 96424.48707246192, + 96049.17164979059, + 97200.7730276014, + 97446.90168966807, + 96440.9774229316, + 97474.17223906965, + 96627.09595023748, + 96508.0649915055, + 96252.73601927159, + 96912.8602518081, + 96640.9561634297, + 96548.78849614567, + 97092.6033555316, + 96137.93531003897, + 97681.82650463261, + 96900.36956234596, + 99054.93251049488, + 97621.5308801509, + 96840.81091989319, + 97398.68149419299, + 96052.90997742687, + 97140.91541633583, + 96883.35271778212, + 96961.63219735424, + 96593.15685874, + 96942.49668912489, + 97329.44637332104, + 97283.72077280736, + 96411.51796021752, + 96339.24938310328, + 97736.94813016456, + 97910.96993785165, + 96786.0414096176, + 99128.8683145138, + 96211.67174914089, + 95720.51419720666, + 96607.09318109117, + 95599.53684369884, + 97078.78573950223, + 95886.98258580548, + 96463.65900406071, + 96509.39820433313, + 96509.4296845907, + 96099.61138898744, + 97122.96681206446, + 95950.47769478709, + 98675.12932763455, + 97289.15046436754, + 97014.53523334138, + 97526.53767625983, + 97181.11827309501, + 98660.63217404629, + 98412.44821844941, + 97765.48056752425, + 97130.87354039263, + 97611.64317798252, + 96607.81846515763, + 97565.68134613338, + 97878.18936700777, + 98088.69457083048, + 102537.64337792993, + 97336.72314742803, + 97384.85502032931, + 97739.50461726454, + 97790.18756915494, + 98423.75905911079, + 92914.29701391104, + 94521.0965568673, + 96813.45598094136, + 96835.92874774396, + 96172.09176973494, + 96100.97014585767, + 95705.40993449507, + 96827.38300101372, + 96461.24693139427, + 96535.82894445845, + 96054.16110461712, + 96003.46856538253, + 96117.67522368413, + 96380.27321562011, + 96039.52555482746, + 96091.70581400175, + 96269.04428473447, + 97245.37390852053, + 96333.93226534751, + 96524.6669755778, + 96558.43883318681, + 97209.46385807885, + 96281.59320080571, + 97334.199382075, + 96164.9303846309, + 95667.80679021226, + 95658.32343165908, + 95648.34307354958, + 95901.87035986596, + 95796.6220412549, + 95732.4030502184, + 96335.57621806604, + 96407.22560594323, + 96440.07084499848, + 95514.95574487532, + 97442.1178182285, + 96871.98342831364, + 96189.19527054564, + 97753.78297929207, + 96341.35508815081, + 95819.77591622746, + 95836.41008943335, + 96259.9082581497, + 96624.18025269137, + 96595.38846744089, + 96273.9014736457, + 97698.15736668535, + 96237.38326345755, + 96272.62459980143, + 96297.69636707871, + 95372.37969661041, + 96464.1710890281, + 96300.0043841075, + 95976.46298115156, + 96423.89730001795, + 97225.12273154467, + 96380.40661308727, + 96196.257368652, + 97687.97327166176, + 97764.93718471118, + 97964.99194759796, + 97077.67459906588, + 96053.464316358, + 95950.13199504191, + 95847.60434582221, + 96119.17908740342, + 95905.42580827077, + 95919.99780721203, + 96185.37627813521, + 95946.3884071162, + 96244.27988515895, + 96196.74025182828, + 96174.10171537164, + 96538.8108213843, + 97589.77077865561, + 96255.53165206172, + 96989.12139942696, + 96386.3485642869, + 96209.17705200447, + 96404.94279951866, + 95582.13652811556, + 96075.92114230867, + 96933.47649225005, + 96208.32555016727, + 96486.76296481364, + 96310.8706914388, + 96156.77295171334, + 96208.35637264428, + 96987.0677801975, + 96412.81309344785, + 95605.5078529397, + 95576.46893477392, + 95889.53071914573, + 95560.7221366576, + 95552.49574202929, + 95550.8641318485, + 96405.3198620752, + 95915.425645233, + 96264.80700176922, + 96174.34018844058, + 95670.97648775595, + 95372.88665283406, + 95667.97156819428, + 96281.8187118494, + 96786.33551603762, + 95652.45140521994, + 96204.29166956923, + 96273.36385473177, + 96163.50814490586, + 96142.15372609507, + 96246.21706337249, + 95604.22358935632, + 96630.39978608028, + 96866.28592075064, + 96564.72992711587, + 95596.36627113551, + 96182.32358713142, + 96286.66809125463, + 95814.45750461605, + 97301.69481913165, + 96886.2262880243, + 96912.85156473947, + 97085.38663455553, + 97355.69179208958, + 97043.19055357405, + 97406.83103336953, + 97508.64091238416, + 97596.85822151981, + 97281.93703232154, + 97339.53315472855, + 97182.15385952276, + 98255.45010528169, + 96708.5597033612, + 97342.9103563253, + 97298.42341187966, + 98020.16838808233, + 97476.84212265511, + 97585.2552421273, + 97850.09960847285, + 97800.77052809988, + 97497.40137546581, + 97172.85679925286, + 97230.27471512488, + 97465.08902518246, + 97572.7293771363, + 97060.83487204376, + 97373.64682205649, + 97530.9950602946, + 97230.78206970361, + 97683.2450611929, + 97367.93418176113, + 97194.9145170215, + 98030.3922687115, + 98164.50513674611, + 97211.33338583425, + 97167.07602680264, + 98102.01760177093, + 97473.4025173577, + 96869.55087283194, + 98618.6314379455, + 97980.37305163042, + 98040.98610521741, + 97099.06003533595, + 98609.76983635421, + 97732.09002327014, + 97154.99065747266, + 97218.35146138504, + 97299.95816584109, + 97626.13132471772, + 97112.35613433391, + 97560.98718189307, + 97185.7097878747, + 97559.13458489727, + 97201.16002150408, + 97516.02947908005, + 97270.02110151788, + 97433.41068898393, + 97833.68675936971, + 97325.64609840355, + 97103.12815964877, + 97473.72704771126, + 96893.86441244776, + 95331.67170746473, + 96586.20076828018, + 96137.68930318531, + 96950.1808551135, + 96390.43113801478, + 96858.54175843939, + 97167.39841072715, + 97743.58448295263, + 97449.0985514171, + 97642.36452938811, + 97990.33956338989, + 98636.37989407925, + 97499.45757321935, + 97494.95806383107, + 96707.92401672102, + 97387.15964980441, + 96595.88973241366, + 96547.16032979287, + 96300.87116130441, + 96004.06807647034, + 97343.70893048414, + 98022.64385800273, + 97909.08890877801, + 97379.30529940335, + 97912.68866754905, + 97483.5508578201, + 97453.80616460227, + 97390.56459064402, + 97854.95892464767, + 97689.45585714692, + 96459.9064706218, + 98220.8617121839, + 97896.16988465277, + 97276.66123026267, + 97720.29522867472, + 97988.47049740942, + 98169.99665670788, + 97706.1575554865, + 97314.87265253808, + 97929.82001151697, + 97928.27341274354, + 97607.80752654132, + 97786.29869250092, + 97805.14139405916, + 98093.39526957169, + 97448.93124443709, + 97659.20648661858, + 97773.13707838414, + 97290.81332207196, + 97691.44923546405, + 98040.70809859729, + 97682.17810885303, + 97902.9875639131, + 98103.51583993803, + 97433.16878255778, + 98011.69742537098, + 97956.78235187841, + 97712.75424892707, + 97337.3673240496, + 96357.32745947987, + 96262.42166171632, + 95826.03997621946, + 98066.1726574899, + 97701.3804478227, + 98084.85055027793, + 97165.59160948182, + 97482.29772041427, + 98201.32974009505, + 98883.68742329624, + 98667.49767503393, + 97488.73626458432, + 96010.7115980084, + 96872.15210964113, + 96379.22200820879, + 96906.24888628504, + 96854.63537850163, + 97264.45498533218, + 98010.49563338193, + 97612.43902974202, + 97623.61756268641, + 97499.04801278567, + 97608.46277176453, + 95934.14872105536, + 97455.35219073194, + 97335.19348886795, + 98225.34302642361, + 98229.77888928792, + 97482.53862767345, + 97276.46828922024, + 97499.88151314572, + 96299.26984037684, + 96500.32458861038, + 96778.83528846483, + 96483.80491367223, + 100136.85344995526, + 99551.68465587133, + 100437.39062185503, + 99551.98543303015, + 99562.25712118535, + 99359.06703624275, + 98574.50972172228, + 98538.96596090084, + 99762.90131115422, + 98977.8256826855, + 97325.59157415244, + 100141.87894949828, + 99845.35414701192, + 98971.68304848456, + 99673.93123472382, + 99291.99320881635, + 99276.35931151945, + 99120.91791864607, + 99397.55134035554, + 99184.60882109228, + 99142.08519452307, + 99316.2243501031, + 98622.91972235353, + 98628.35943001318, + 96995.58808119217, + 96874.32517213062, + 96984.11595684849, + 97109.16179890749, + 97136.19437689305, + 97491.9260662067, + 96362.21507081333, + 96805.5627237504, + 98078.46725482005, + 97340.80449807804, + 97488.0322813689, + 96435.9592073502, + 97411.333447029, + 97430.46651931974, + 97362.69630546733, + 97147.4098591697, + 96935.63520473371, + 97289.22073553668, + 97850.12598200802, + 97597.36616865019, + 96412.37649005053, + 97375.63672739729, + 96830.34367432375, + 96727.0857416317, + 96968.7576874346, + 98028.98765417963, + 97254.19037202669, + 98343.20918176853, + 98178.54170307206, + 98199.86102071151, + 97744.85805549823, + 98056.94048479544, + 97951.56325025932, + 97888.06964139262, + 98115.52004533702, + 99023.4635169911, + 99401.61250638886, + 98987.744183523, + 99579.00966292991, + 98635.38198452107, + 100098.40192877872, + 98017.95961808166, + 99022.78768529206, + 96435.29713124092, + 96931.12324851674, + 96463.50079272543, + 96120.0822298696, + 96240.44430881485, + 96101.99869734746, + 96315.36819369205, + 95937.25203342551, + 96235.33414286007, + 96530.33748860421, + 96182.08723044166, + 96258.26403190757, + 98709.8651975024, + 99109.15521458666, + 100640.4787093486, + 100235.20982182995, + 102213.573130387, + 100665.20298807592, + 101380.72545035236, + 99856.27897972005, + 99786.36456658994, + 99683.00699846164, + 98812.91818171015, + 97843.27029212235, + 97728.72992702796, + 98904.72563619397, + 98942.09530630929, + 98891.2416273708, + 98417.88816057792, + 97988.12714007127, + 98185.14683392025, + 98502.26373555082, + 98563.51548863579, + 98515.43976060345, + 96994.13649214181, + 98899.25788886541, + 98911.1768536842, + 98350.05034462475, + 97442.5837413775, + 96877.27316989908, + 96504.96941037805, + 97237.72508581873, + 99586.27547231995, + 99232.31835984743, + 99900.79355708066, + 99953.84555270121, + 100010.22175620866, + 100488.19339995636, + 99050.91600599952, + 100300.1455608082, + 99125.08385354279, + 100865.26021198924, + 98730.97463170756, + 99515.36066611517, + 99419.17564342206, + 98962.18713370281, + 97366.57493092174, + 98539.96016607621, + 98539.20822724189, + 96191.69901840627, + 96265.19900264395, + 95997.27711720114, + 98500.0361551715, + 98246.11805337203, + 98850.07485794366, + 98011.22054926708, + 101377.60794729496, + 98957.24165577488, + 98961.50436798272, + 98935.5010496066, + 96824.95283232043, + 96894.77232507731, + 97119.02524363514, + 96134.33859468818, + 96133.66483574735, + 99362.4122499512, + 98980.06656171624, + 98577.91639424925, + 98301.5427103644, + 97911.65322441417, + 99947.23103246646, + 99525.32125049765, + 100615.97017651156, + 99091.59936505146, + 96193.09435285682, + 96209.32610496953, + 96157.43262757578, + 96039.16378214146, + 95666.6047695683, + 101027.38756222327, + 100491.07919538966, + 99965.07519503396, + 98540.85216934852, + 99052.2124935182, + 97895.64290700338, + 99076.34984414672, + 98336.60564073424, + 98674.7174457713, + 99271.76461161645, + 99265.99329452899, + 97961.22502344675, + 97330.30197024634, + 98153.0005023464, + 97996.06129807832, + 98230.51101716988, + 98279.26861206899, + 99626.79604297405, + 99000.02707953496, + 99142.62317278316, + 100188.52114244823, + 99265.28429092855, + 98832.24946054372, + 98597.7964869281, + 98557.67286605883, + 98374.27664176481, + 98475.73906360153, + 97731.41157443785, + 98308.24242195391, + 97840.92878276923, + 97886.2552796078, + 98672.42439807321, + 98993.730905672, + 99280.86800505298, + 102128.56689301181, + 105318.17245295613, + 101417.57039700724, + 102629.20595000873, + 100636.49150263055, + 102559.4749251737, + 98019.20026379389, + 99501.46206268593, + 98810.35406462688, + 100839.09741193936, + 98877.03574041717, + 99714.32506825263, + 99140.32285163709, + 101435.76546972904, + 100379.20660771398, + 100494.1604689617, + 100444.83349810736, + 100171.78786335049, + 99691.16026545654, + 98069.36909948081, + 98992.20989010415, + 99218.7411313723, + 99412.54200822763, + 99155.63016872654, + 98981.42825942171, + 98756.61116861763, + 98771.61564503152, + 98894.44972464189, + 99331.7744747594, + 97816.61219866003, + 102530.11405078055, + 100158.43034755554, + 98870.69224118859, + 99495.77993367877, + 98896.60676749866, + 99061.38220264099, + 99749.23255553393, + 99863.46008168485, + 101253.85143735835, + 101066.18080243433, + 100833.069541554, + 100216.65510336985, + 101097.55034226578, + 101618.20433424404, + 100357.48060133551, + 100059.12439104206, + 100338.86353601632, + 99586.51857910478, + 99951.0659012268, + 97856.81262960663, + 96575.13863198814, + 96162.4303606248, + 95209.07740315559, + 95825.30565065744, + 96286.13541218151, + 98427.35866005206, + 100540.34287442153, + 97698.73432565104, + 104834.05247099117, + 102345.37784253916, + 101736.15467046229, + 102333.66889929863, + 100557.2821983049, + 99212.64656167013, + 98977.62128580881, + 98312.73735572214, + 99304.290069593, + 101567.70440058614, + 101580.24476163396, + 101735.09643628406, + 101809.73928647002, + 101785.06810363055, + 101573.83309184245, + 102953.17211273103, + 104198.31260714601, + 106233.53305936579, + 102017.0341341957, + 99527.77886408713, + 101917.25635551335, + 101976.86435161783, + 100243.014205219, + 99932.49537425906, + 102190.88209432086, + 100124.12507747632, + 101885.99912176745, + 101697.96826814402, + 101829.23480550414, + 101522.08525588791, + 100597.08688634772, + 100353.70323921503, + 102178.3682577673, + 101779.84963144422, + 99852.88185831445, + 99990.35940967675, + 102063.12360975276, + 101781.56537819619, + 101749.04159536793, + 101634.82305426827, + 102437.23538334639, + 101962.97098059615, + 100466.67560792255, + 100113.74493313026, + 100858.32947002299, + 99975.85497357504, + 101430.14405480694, + 102278.80486131168, + 101812.8020162423, + 101588.15862456126, + 102563.3206054858, + 100748.96797238242, + 101678.99297077536, + 100750.28187529245, + 101454.990611554, + 100838.817421307, + 100730.67229205805, + 99990.30313700912, + 102022.7910616867, + 99646.19840781609, + 99629.49033305429, + 101905.45676874653, + 100837.07785367471, + 101545.97635361711, + 101489.69453765085, + 101743.09284030006, + 101836.64612097175, + 101856.42797018508, + 101839.95878378669, + 101729.67598101968, + 101661.94211903469, + 101780.85634799347, + 101558.64005120956, + 101330.36334771957, + 100698.24029410268, + 101614.75611960207, + 98644.28600268529, + 99737.09642278514, + 100879.74390370514, + 101077.31846050268, + 102156.91580320336, + 101765.97063868862, + 100219.71623880966, + 100725.71208858925, + 102143.24639139706, + 101792.06935951588, + 101942.69325653883, + 101650.40513567929, + 101988.60520862282, + 103450.9949418264, + 101511.31310826991, + 101648.40427836328, + 102018.88919342995, + 101741.66784545634, + 101581.9987428239, + 99468.2559944489, + 99601.83878035982, + 99603.45577850576, + 99040.76425546396, + 99172.24243406764, + 99528.31511285559, + 98769.65877246718, + 99287.60100382363, + 99475.57144267684, + 98297.39646140915, + 97418.97603097925, + 98936.37152899419, + 99182.20687722552, + 99227.14373040265, + 98821.68699083632, + 98717.22176373757, + 98584.01431051758, + 99272.0781529895, + 97965.80143681738, + 98982.5031332364, + 98027.13708713652, + 97615.38809747441, + 97503.33387121037, + 97752.58113868252, + 98136.58032128063, + 98061.10715277967, + 98614.1806245494, + 98136.20709255511, + 97999.91203126067, + 97958.47457130344, + 98009.09509648604, + 97850.60195378115, + 98005.5574452993, + 97776.72898296927, + 98631.78626191251, + 99140.68926056154, + 98536.86418508874, + 98910.03636312029, + 100242.68992519718, + 97891.04268537596, + 99023.62442100499, + 98951.56237964176, + 98742.84185261693, + 98636.11447862479, + 98715.24476448026, + 98700.92429371181, + 98641.93221348678, + 98583.13027911846, + 99072.54185715798, + 99135.47449879821, + 97232.70911561699, + 98615.37677009653, + 98917.96441057288, + 98434.35971075694, + 97681.16946907644, + 96856.72362255462, + 97895.28004870834, + 98831.79765712937, + 98438.58130728804, + 99371.02994235742, + 99231.0427929239, + 99676.63268184493, + 98900.44369968983, + 99700.42917263086, + 99577.40761315082, + 98426.5533743314, + 99776.94011289947, + 98899.60200925548, + 100154.96563673523, + 98520.33361422195, + 98367.5384870807, + 98334.70594223429, + 98691.85046989784, + 97255.41454495481, + 97352.47846420809, + 97313.7618367065, + 97296.61777493556, + 96665.07370474232, + 96859.96292458837, + 98321.87992748909, + 97182.47078555363, + 97884.83964830039, + 97540.60877193058, + 97276.55612119116, + 97459.95104458535, + 97893.0352520524, + 97962.17985493861, + 97344.09093533971, + 98205.86697164566, + 93644.68272986174, + 98101.62417688777, + 98271.36712487994, + 97452.24353701598, + 98361.52070775314, + 98166.8451977046, + 97487.35358808235, + 97647.87367032644, + 98497.56819029221, + 97393.78304664446, + 97502.76078478833, + 97564.08079360449, + 97516.18869947606, + 97435.17397362897, + 97736.81995700866, + 97446.32329700516, + 98582.527096305, + 97809.54483551205, + 98878.34647466309, + 99154.02606674639, + 99172.02697912694, + 100490.49130040826, + 100142.88953715774, + 99388.84212708821, + 100563.74448489815, + 100746.00755669444, + 97652.12794157442, + 97864.25906949551, + 99227.43848031209, + 99361.9255445475, + 99174.69010994876, + 98657.9373151273, + 98047.59460307116, + 98808.2037529869, + 98641.99704060325, + 98573.86688152544, + 98037.7546833775, + 98063.33951976198, + 98238.09327133199, + 98454.91999809204, + 98622.72131256308, + 99683.02342130439, + 98748.13851273438, + 98736.6487431001, + 98461.56188963, + 98591.3906492825, + 98735.88204679007, + 98760.83345788409, + 98669.98695044409, + 98554.81272175781, + 98551.32201482294, + 98537.48831459216, + 98994.10656357431, + 99119.57616554244, + 97344.39651735617, + 98722.34383571171, + 98882.4958894141, + 97303.13866203713, + 96302.24669832372, + 98647.5348287252, + 98608.5215316511, + 98222.80841969991, + 98819.65784093091, + 99036.66961313797, + 98624.20331564605, + 97819.31095483244, + 97721.18147869087, + 98271.70807917252, + 98519.86918764931, + 98606.63667538292, + 98519.39123710812, + 98765.77024442171, + 98568.58464013341, + 98724.09688274346, + 98551.33786774045, + 98642.19574069705, + 97931.34716549548, + 98666.49334653927, + 98631.64406060676, + 98838.9801057053, + 98827.92913925355, + 98790.2159527499, + 98181.72232625872, + 98063.19422735604, + 98475.91698744615, + 98570.43191653062, + 98455.4277807688, + 98813.72618994876, + 98846.89766234448, + 97228.42625405909, + 97394.11022522849, + 97532.22883965746, + 97344.33342659262, + 97272.0006070915, + 96925.47458412843, + 97092.16772009524, + 97209.90565041362, + 97856.84020013195, + 98009.61286792412, + 97211.79938472387, + 97045.9347960569, + 96871.14124722035, + 97372.91158673672, + 97023.36540561469, + 97191.67156979971, + 97414.64038417542, + 96885.06814180473, + 97914.23819876518, + 97340.71979094419, + 96805.4528033362, + 97391.61070686534, + 97277.04466695724, + 97953.10373989804, + 97109.44347958003, + 96731.40431617344, + 98037.69686647393, + 96844.05757802, + 98053.21280174737, + 97454.12338544696, + 97565.17353076243, + 96943.34146960913, + 97216.68390135047, + 97325.96467730298, + 97320.6256117, + 96737.12013794533, + 96149.9240314162, + 97714.7246102844, + 97723.43671189145, + 97537.88311195365, + 97408.99246023723, + 99182.43123350566, + 99265.87966805445, + 99944.07306174988, + 99900.64834271275, + 99812.21227412489, + 99420.92430477343, + 99177.62291174373, + 99488.52585196453, + 99587.48173322152, + 99937.87696465585, + 99591.60747183427, + 99048.9116417464, + 99607.88973258882, + 96915.07628650902, + 99990.2370091159, + 101343.89990262453, + 99709.43474110542, + 99222.80666593021, + 99744.15222602605, + 99679.73750040874, + 99788.15934489542, + 99889.87039027306, + 98529.60002690525, + 98918.42807769222, + 99077.64957318998, + 97845.28481450288, + 99041.95245865517, + 99058.18978821568, + 99443.36056428892, + 99938.9075507464, + 99123.1886578178, + 98975.4583568785, + 96764.93858259599, + 97558.91318648357, + 97906.28247623073, + 97718.55252171961, + 96152.1057643561, + 98062.51604299857, + 97964.38553712035, + 98023.44519196717, + 97561.8035357872, + 97762.95601633764, + 98326.83556515438, + 99016.5581620588, + 99240.9405426935, + 98641.53479851007, + 99095.8319111279, + 99642.41138351153, + 88590.85511713462, + 95956.16594891516, + 95103.80826824161, + 95849.92383113039, + 95705.12403974576, + 96150.57574768981, + 96295.31083736721, + 96244.53594836782, + 95503.21802046116, + 96107.21446370435, + 94297.22907899908, + 95769.18345824692, + 95854.58816461003, + 95472.03336553831, + 95497.96761435788, + 100266.60888331049, + 100515.1022038416, + 100780.13173749707, + 100275.49487326102, + 99308.59414610175, + 100993.81994431307, + 98998.48843958214, + 99497.63865967996, + 98414.55375540078, + 98275.0868761614, + 99287.0655957827, + 99168.38311213651, + 99294.3343501885, + 97827.76197200979, + 98414.55316263932, + 98257.85820299109, + 98418.17015609592, + 100175.0607969374, + 100123.4034196032, + 99203.1995445626, + 100259.94700165218, + 99150.71873965448, + 99176.45733464141, + 98536.71552534091, + 100486.68654940001, + 99798.83508838428, + 101233.72050294731, + 100304.51471837264, + 99369.55175238507, + 99459.89574901403, + 99497.65911985919, + 99334.08753749864, + 100439.05341443338, + 99891.87571608167, + 99787.73624613034, + 99837.0082125705, + 99338.62761306738, + 99398.32512040935, + 97937.7823995534, + 98960.49823630943, + 99134.05776587574, + 97772.18600703926, + 99187.00950581132, + 99076.17431450075, + 97063.32877705898, + 99009.06890021921, + 99244.62898283631, + 98895.86594871506, + 101287.53163759898, + 100667.31521747577, + 99440.37140141985, + 98829.92293140064, + 100008.8185640341, + 99630.27697060951, + 98199.99210205229, + 99364.76795754352, + 99587.45269788787, + 99204.80764182155, + 99472.18090796605, + 99584.74778173275, + 99446.27946308655, + 98780.33197584302, + 99746.53204017173, + 100408.86536513967, + 98968.71992266763, + 99390.22164459903, + 99420.43636760573, + 99004.39514221971, + 99328.58010501186, + 99704.67044515068, + 99356.71931442092, + 100275.50143084832, + 96938.66295867188, + 97964.63401886185, + 97535.23793520761, + 97420.7621020905, + 97390.08288766422, + 99574.3677856123, + 99273.85480193101, + 99615.64332690387, + 99572.0458167728, + 99982.59484908597, + 100442.43446705127, + 98917.55283849573, + 100405.62380636072, + 99264.01286919507, + 101880.18878218585, + 101201.13786259948, + 101261.17342969753, + 100802.37593631717, + 101061.65052979656, + 99928.46775743726, + 100746.53951262421, + 100868.33657813334, + 100812.8197399703, + 101531.87027489231, + 100295.24230126226, + 99417.48192028531, + 101239.75080883966, + 98930.33399893016, + 99586.53541170484, + 99162.91558583234, + 99368.70015947068, + 99328.89319402496, + 99358.76293373808, + 100016.85978108921, + 100664.31901839633, + 99767.26452719056, + 100029.98747600272, + 100412.32402265836, + 99065.72480630428, + 98156.27282406032, + 98227.70254427848, + 100038.33560601297, + 101143.74462846812, + 98467.10096591972, + 99388.04981308476, + 99160.28669960532, + 96279.30869943406, + 96388.18293816505, + 96692.27028903799, + 99054.46710922422, + 96793.04034680343, + 102477.24885418148, + 99962.03299582665, + 99408.87948140925, + 99568.49510955371, + 97652.86342630182, + 97627.2235694482, + 99106.21684464924, + 98595.84891148518, + 99156.63257376007, + 99241.701769924, + 98691.20212375972, + 97995.16766578473, + 97878.09063826728, + 98401.52424464934, + 99578.9140767699, + 99232.9372120856, + 99103.70219305377, + 98247.25370404207, + 99183.89896358912, + 99108.02772477719, + 99457.6410217742, + 97381.90305652776, + 97539.68362575934, + 97454.32557679321, + 95643.87509548519, + 98164.19533467619, + 98940.87869445772, + 99064.5138791314, + 99697.0870632984, + 99422.03795312622, + 99658.1811796683, + 99310.43005941642, + 99291.88291924677, + 99357.41168283236, + 99519.81617905492, + 99461.9154620648, + 99503.27823687728, + 99428.27940191151, + 97479.47272277385, + 97966.35131578807, + 99676.52384181802, + 99561.79056971268, + 99432.35372583236, + 99446.59225735396, + 99428.01341337721, + 99232.69699144822, + 99392.972033571, + 99460.35192451965, + 99250.82737975198, + 99528.08669879334, + 99236.5763742713, + 99339.81667170062, + 99356.35133098044, + 99311.28191822488, + 99347.20154555528, + 99326.09755068594, + 99398.38474298466, + 99425.06404185461, + 99459.37878349259, + 99293.81229317529, + 99329.49500884015, + 99294.94935916096, + 99397.89778849662, + 99370.73468447644, + 98364.9237598564, + 98314.28463324666, + 98297.57158816028, + 98299.16730691226, + 98488.44888265227, + 98341.92538182945, + 98498.18579690327, + 98221.26321802658, + 98440.65799241852, + 98505.26245324187, + 98273.63810369174, + 98449.01702979534, + 98458.30573058059, + 98435.56007553921, + 98828.88194167838, + 98734.89174003295, + 98753.36326823733, + 98738.05385712087, + 98806.68843808728, + 98927.51583449688, + 98809.76404802127, + 98831.44278769466, + 98721.32609049382, + 98611.23290157397, + 98554.33836951133, + 98662.26737231707, + 98569.50298295039, + 98444.26480191355, + 98440.84097603508, + 98388.22622587845, + 97562.5173703681, + 97659.90156596046, + 97539.18470334534, + 97562.28204297766, + 97628.5805035853, + 97532.78555592157, + 97521.31251635685, + 97457.12642131757, + 97469.56881373974, + 97463.881171705, + 97266.57307609903, + 97538.36994649333, + 97506.04706104075, + 97565.8070193732, + 97567.95672647221, + 97576.65796976959, + 97433.00403301486, + 97663.14027350585, + 97624.84001903216, + 97484.1141530828, + 97600.38916390667, + 97509.90124758272, + 98185.41172751482, + 99058.37892612514, + 99224.34320360345, + 96043.45140605627, + 96074.1773250052, + 98353.82046727034, + 100096.5789219651, + 100142.84366050502, + 100114.8346992164, + 100137.00458558447, + 100088.57204356979, + 100165.51947574422, + 100131.45217606793, + 100011.84304283973, + 97683.34960749114, + 97662.15750716739, + 98531.37287469098, + 98471.56463893122, + 98391.64714900294, + 98877.55812845338, + 99029.5519099041, + 99040.32401506804, + 98939.85298657045, + 99071.00654345889, + 98134.38177364993, + 99281.8124720996, + 99410.76891600141, + 99265.15415167905, + 99570.35524851363, + 98734.64536633549, + 98817.70091073363, + 98705.86338872745, + 98779.15100171715, + 98743.88825326356, + 98722.95539743864, + 98669.66450254756, + 98727.04413925752, + 98603.20304504342, + 98657.34511910615, + 98306.9719599773, + 98410.69904555679, + 98438.62268190562, + 96262.06027998815, + 94859.96864376472, + 96176.9141455721, + 94389.95972141267, + 94306.38229315246, + 94318.7006224086, + 94419.1947747694, + 94392.82814914087, + 94389.95371194034, + 94437.83155434212, + 94218.23975158927, + 94194.02296244045, + 94008.58638880895, + 94284.66655702308, + 94573.07039112478, + 94372.80806801579, + 94272.01261469895, + 94240.6896417481, + 94249.69397963368, + 94597.4481398317, + 94435.28319563705, + 94303.52270668159, + 94178.90319153182, + 94243.63550838632, + 94421.52405973361, + 94205.67563602903, + 94202.7117129383, + 94320.52454245155, + 94293.7942434875, + 94267.58695307715, + 94495.40317446586, + 94170.06170101493, + 94211.52030884504, + 94212.18498423915, + 94330.95096713639, + 94270.53763976666, + 94390.87449225048, + 94287.89529624995, + 94446.13153450796, + 94354.97654559696, + 94346.09109533348, + 94480.69700103143, + 94273.99317481946, + 94289.85535250117, + 94170.9041715765, + 94324.79195247918, + 94132.7057344337, + 94074.80621416663, + 94249.39377209143, + 94426.37056546453, + 99555.46875574846, + 99804.62331523834, + 99331.72440120617, + 96160.81025461864, + 96205.75452273182, + 96164.94304166912, + 96091.27355284609, + 96321.48275816297, + 94366.87186140705, + 94306.37066336245, + 94529.97922971226, + 94434.94919736736, + 94500.55053658024, + 97122.97557930264, + 97100.77454563488, + 97135.42971177665, + 95489.19345695784, + 95488.26419210226, + 96125.26064461117, + 95919.73918913995, + 96370.02373932622, + 96858.89753394539, + 96901.72588249666, + 96528.33303416053, + 98392.21001148615, + 96053.05650289368, + 95450.25417539202, + 95972.78915436483, + 95970.95308075754, + 95961.04765530549, + 95722.21440872799, + 95729.23859344584, + 95670.62443730164, + 95481.39560671317, + 95340.12961580537, + 95303.17115160594, + 96179.6045501681, + 96109.17619897892, + 98530.61451075874, + 99053.41371146425, + 98605.97144397798, + 98976.19477847009, + 99267.27734915515, + 98691.31264841248, + 99232.44990568829, + 95257.82795586446, + 95506.86434038139, + 95292.85212499998, + 95262.32950182882, + 95354.57773115158, + 95458.13438059368, + 95385.3428089936, + 95209.67552481889, + 95311.77032987887, + 95444.61330598006, + 95242.05024879698, + 95252.43928937333, + 95381.14361410459, + 95333.87765260295, + 95351.0489158062, + 95195.90565530288, + 95297.633034384, + 95303.90705774128, + 95447.04817351245, + 95285.61582132381, + 95322.42512021921, + 95176.15417191545, + 95381.0517074507, + 95282.61728466298, + 93231.70305331911, + 92347.74753772338, + 92216.72434555799, + 92252.47720808198, + 92256.07675212514, + 92324.31396892523, + 92415.17834135809, + 92206.14403308384, + 92211.31836481478, + 92294.74860434067, + 92140.90020542977, + 92009.28930966396, + 92188.30662763724, + 92240.06832701992, + 92136.26649392476, + 92061.4858642193, + 92117.94874151466, + 92301.20739485609, + 92270.44173942773, + 92476.04624218972, + 92274.0842380315, + 92200.11384624743, + 92129.61464772673, + 92107.99155216134, + 92264.89531600794, + 92190.23091480859, + 92280.17186758008, + 92407.87747716965, + 92369.8251914418, + 92374.2328896316, + 92478.78012790662, + 92448.86611308221, + 92122.39984355103, + 92167.2011910307, + 92206.32328236508, + 92300.72398965452, + 92070.91719750845, + 92186.0226881958, + 92274.32072505055, + 92248.01639772087, + 92251.44929818394, + 92394.22447395853, + 92291.97074429669, + 92316.73871688145, + 93059.16988490241, + 92393.6617867084, + 92300.0455267758, + 92200.82708603864, + 92217.13863978007, + 92191.01154073558, + 92088.59875338602, + 92096.45991653283, + 92152.5004987375, + 92189.78925848598, + 92182.36073816268, + 92079.45570088438, + 92255.84570257005, + 92107.85643126183, + 92402.8943849796, + 92140.52812030239, + 92230.18841609285, + 92240.46970884116, + 92092.02752181761, + 92122.01120625601, + 92515.26142917994, + 92299.43199008808, + 92191.80914221446, + 92289.3106433427, + 92278.89223268858, + 92314.80079542873, + 92239.59355543758, + 92214.87566884019, + 92350.96560856364, + 92319.24278973592, + 92120.59934842995, + 92402.46333965527, + 92395.55800703372, + 92407.26663431138, + 92170.76494797798, + 92149.3896272451, + 92149.07451227563, + 92362.9412919757, + 92072.22295952133, + 92165.8074200398, + 92264.4950612678, + 92321.76859128801, + 92243.35934066583, + 92240.73151292205, + 92351.74121802478, + 92212.58705155137, + 92261.77315785893, + 92272.0976249191, + 92458.16706063351, + 92337.92067785797, + 92369.46596237014, + 92309.11050830808, + 92348.91301035674, + 92158.63274311995, + 92359.01992750082, + 92422.06859334902, + 92294.31157988217, + 92285.98502461443, + 92247.55109256034, + 92072.40823846689, + 93217.65623676107, + 92298.84256798221, + 92143.44554872952, + 92114.55881212364, + 92388.34112005818, + 92104.1575179089, + 92178.4738757029, + 92211.68105250059, + 92417.7595950224, + 92171.84482602276, + 92237.57093869668, + 92088.96846171409, + 92070.41065231868, + 92187.36681509153, + 92370.404557384, + 92280.5187113803, + 92077.55009881165, + 92097.85089890493, + 92250.68960775186, + 92229.6510093099, + 92124.28625739494, + 92277.44419006346, + 92112.15601888165, + 92236.86729316006, + 92298.52245461594, + 92326.23605654163, + 92131.71539503698, + 92327.35935856824, + 92170.31098093353, + 92316.82956297412, + 92136.64050642017, + 92132.58089114129, + 92087.82568701153, + 93923.1020165203, + 92128.44388904206, + 92165.08700529874, + 92146.48937205561, + 92224.22667915009, + 92276.97318654209, + 92179.81064205624, + 92230.56984005714, + 92194.68123738615, + 92303.61592663793, + 92259.52032100408, + 93895.03036091999, + 93891.5498056317, + 92106.50574246883, + 92274.69795367589, + 94839.05921223038, + 93892.18559051274, + 92216.84531759286, + 92223.28407935618, + 92322.9398265956, + 92181.57577859817, + 92125.35754151737, + 93909.45243357617, + 92156.29947048516, + 92363.13694954333, + 92241.1538857497, + 92198.72093061345, + 92277.94262352257, + 92348.27216643172, + 92100.12237040915, + 92224.97120305183, + 92162.6663993115, + 92267.80885625147, + 92161.25150030805, + 92495.77534289319, + 92351.52551961424, + 92338.47796412221, + 92326.41795009529, + 92329.20324077769, + 92222.80917248885, + 92314.41985868117, + 92256.26836982086, + 92503.48875709479, + 92496.54476011512, + 92375.68912132124, + 92217.9630178079, + 92295.27871363045, + 92243.55514949372, + 92333.49401411432, + 92265.93497688345, + 92296.90882344653, + 92161.89029910951, + 92322.08469817725, + 92243.26218856651, + 92187.51445774999, + 92167.8995244472, + 92093.71003634819, + 92159.09530130218, + 92196.35201010661, + 92189.73775652013, + 92143.18325545135, + 92385.10208996975, + 92347.33566601481, + 92429.41868813094, + 92212.81898397961, + 92479.64231084207, + 92459.66524880938, + 92426.13656796042, + 92476.16358429435, + 92423.07228620039, + 92180.50690094149, + 92532.19153863966, + 93914.93502816484, + 95497.05276392102, + 95837.77507526969, + 95812.4154540912, + 95698.50564941308, + 95628.40799309613, + 95158.67040196666, + 96060.05473969401, + 95255.10891653616, + 94509.72194374804, + 96214.29567174465, + 94269.50089276706, + 95029.52467561196, + 94894.02889160464, + 94921.09641509663, + 97015.94024530961, + 96924.78320992363, + 97343.47929912621, + 96837.76873429003, + 96961.74738516554, + 95318.86888176948, + 96858.8259365058, + 96993.28565305514, + 96943.63194993603, + 96906.35772752426, + 97022.69247553179, + 96984.5487179883, + 96874.58922306824, + 97747.21900755091, + 97417.73753495087, + 96969.69441581002, + 96968.60153243598, + 96747.02345144031, + 96601.21280775112, + 96977.1650347663, + 95368.49227674282, + 96056.0944855474, + 95618.32230128575, + 95004.62236427962, + 95064.92563679993, + 98235.0876506272, + 96972.87752214319, + 98629.48902981033, + 96378.79458742414, + 95285.84544380629, + 95335.33394613424, + 95380.30317238574, + 94292.11046783296, + 94317.6587058325, + 94322.88661735097, + 97023.15247734636, + 96535.8616409643, + 96055.6245428955, + 97606.17229012403, + 97591.89461364681, + 97576.71628926601, + 97500.32823463708, + 95328.50872682448, + 95300.26526034814, + 95271.0473357906, + 95510.65824351287, + 95347.32880997096, + 95271.44501622175, + 95372.15228673177, + 95421.30035086887, + 95244.81624951023, + 95442.41664362849, + 95478.64369343246, + 96410.03307549134, + 96493.56633299332, + 97178.27508498696, + 96593.2717327048, + 96302.94937464621, + 94729.26537341278, + 93861.98590665219, + 93956.15973323683, + 93878.00338465307, + 93852.65938610463, + 93796.41706922535, + 93912.14907894815, + 93783.06450327153, + 93830.40835361417, + 93845.20569222173, + 93805.02916709852, + 93848.69468485197, + 93895.12691645266, + 93783.44722599696, + 94214.94588328559, + 94397.66514778201, + 96850.54600123651, + 97426.74158915173, + 98273.0404411526, + 95786.36719281576, + 96349.92934443918, + 96338.35038049635, + 97199.92290572009, + 97155.05669738412, + 95179.22795563574, + 95203.19322201304, + 95656.42468831391, + 95242.50683299675, + 95206.90394798008, + 94585.54283407258, + 94154.85813823475, + 94158.20929334633, + 96493.32238421563, + 96459.46741135049, + 95059.96146767413, + 94963.37886006157, + 95002.6752162217, + 94048.93199379041, + 94005.1775320185, + 96603.54230227087, + 96550.22153001573, + 95756.08622571501, + 95809.09217161969, + 95836.83724442031, + 95850.76938404588, + 95103.97227801211, + 95376.11147143133, + 94581.3224656246, + 95103.11342187891, + 95124.22218566947, + 92179.36209571654, + 92342.1647082602, + 92343.11266496578, + 92385.80051301901, + 92363.17729310234, + 92415.46817355568, + 92371.34679188945, + 92059.19945228689, + 92254.26120896422, + 92258.94206324218, + 92289.21560844104, + 92203.64139679476, + 92294.99886701563, + 92211.95592517799, + 92290.40010143537, + 92313.0809202976, + 92271.08130189306, + 92439.0785089486, + 92230.63025610495, + 92342.20159560516, + 95229.32911955088, + 95801.8797460325, + 96674.53315191732, + 95572.39553147889, + 95678.9898490588, + 95564.26772175558, + 95634.67560640232, + 95662.54958325467, + 95532.36565291665, + 95726.21465473025, + 95560.55284189491, + 95996.56462555612, + 96851.12729283779, + 97062.67817875755, + 97050.47210070032, + 96833.70570836318, + 96978.96277123882, + 94491.85479096157, + 95699.64251087462, + 95709.03021955737, + 95708.33665371903, + 95679.00902682092, + 95559.50076204128, + 95428.96196267167, + 95512.51691874191, + 95606.9735303453, + 95541.43426055746, + 95436.21133694542, + 95649.54902588758, + 95474.01595310215, + 96107.19415896157, + 95523.28532488653, + 97550.03779670106, + 97677.43610441216, + 97734.7750819923, + 95917.55516884955, + 95318.33825288666, + 90398.13563399928, + 90219.83557956429, + 91850.72333799597, + 89955.4720743023, + 90351.7003485438, + 90158.81527667675, + 90225.72064624407, + 89808.82616084766, + 90236.17206468161, + 90345.96414554433, + 90101.23951609244, + 90156.48155842807, + 90238.81562165567, + 90188.37121588881, + 90049.82466375276, + 90839.86000529061, + 91522.46011082169, + 90426.59718746592, + 90364.49650618425, + 90281.57249944574, + 90204.0364488624, + 90325.97959319454, + 90286.08327358324, + 90368.68853514639, + 90131.89700646249, + 90264.36843072166, + 90283.73132984444, + 90409.54204067939, + 90176.72383861212, + 90161.34034330312, + 90174.19097516667, + 90380.46228281433, + 90216.7935701221, + 90187.72273738508, + 90302.22760431943, + 90255.81325412332, + 90227.9318507897, + 90174.31006624116, + 90292.82642272265, + 90147.69829486302, + 90117.02379395122, + 91536.18144472227, + 90098.56959740954, + 89715.23360905857, + 90344.20893913148, + 89977.85792588338, + 90346.25928401393, + 93971.80265598431, + 93725.28554114306, + 94503.96161457393, + 95594.78680514084, + 94607.68459209791, + 94463.72063775688, + 96274.70146604127, + 95919.43239973261, + 95888.00363924424, + 96021.01935869602, + 96206.3567727413, + 96297.63544971858, + 96577.88292402872, + 96449.49416274708, + 96851.49702075154, + 96605.92981897558, + 96610.6899973968, + 95921.81597746578, + 95352.39749037023, + 95951.33594695487, + 96000.54859558669, + 96016.9478340095, + 95554.52104992175, + 95956.77118384998, + 95898.63188323451, + 94864.12017348492, + 94921.19423968834, + 94905.71651342275, + 96730.61407259232, + 96570.65933290092, + 96917.55039066126, + 96845.31383705071, + 96840.67852705196, + 95879.40264413109, + 98181.70136908787, + 97942.41927684227, + 96298.20404774172, + 96248.82270435392, + 95834.40863293177, + 95196.70952197771, + 95434.60009253638, + 95758.46272512361, + 96465.93766629184, + 96426.6308128287, + 96344.06072109731, + 95589.36755805337, + 95645.64475087512, + 96102.93297875019, + 96051.58400350752, + 95926.45987169421, + 95981.8380794005, + 95863.15308642662, + 92001.50766754647, + 92027.61116900106, + 92046.7336558993, + 92065.18747125892, + 92110.36261703623, + 91950.95461604063, + 91977.1495556531, + 92128.61766596325, + 91970.65586338179, + 92031.39064637528, + 91978.95777114196, + 92020.2457296412, + 92043.62147273764, + 92010.16427467186, + 92075.75618980045, + 91997.46138215279, + 92025.17432984301, + 92003.87296399754, + 92024.14688175863, + 91941.05744628322, + 92012.21830510841, + 91983.68058223181, + 92359.994086341, + 92252.86309783008, + 92240.9291961559, + 93601.82710520699, + 93704.10085908513, + 93676.77584347574, + 93661.20734278191, + 93572.23203515264, + 93625.70846719111, + 92241.75189417685, + 92167.78389298257, + 92172.4868795517, + 92131.47925758659, + 92080.57228640377, + 92106.30235506344, + 92074.75278618281, + 93012.08801458759, + 91759.60493933014, + 91728.37308978925, + 91695.65516466298, + 91789.34078452658, + 91675.77505537764, + 94374.02538445908, + 94284.29614613004, + 93859.39002647411, + 94016.84050671507, + 93290.35075837071, + 93239.54198428936, + 93194.79788029785, + 93167.29040070769, + 94178.18816955703, + 93974.14793620263, + 88433.87275134888, + 88488.9677441534, + 88681.03188674754, + 88416.20611550778, + 90542.60014879846, + 90633.14423891409, + 88780.30091689393, + 88617.30277926706, + 91035.5356559428, + 88448.45707614523, + 88512.19912209532, + 88538.9357978122, + 88341.69152456298, + 88232.54276009464, + 88526.83874423045, + 90308.66677680974, + 88752.36011236151, + 88666.7899021117, + 88403.96346659532, + 88409.88494323137, + 88454.76601265534, + 88505.90920258727, + 90506.38154973468, + 88392.5213902953, + 88735.10471964773, + 88700.42226535387, + 88681.6166974444, + 88832.50791438138, + 88374.23866379407, + 88371.18539682371, + 90426.63438770593, + 88802.81744936632, + 88762.5516918854, + 88642.14476996369, + 88687.33186073622, + 88594.12361541514, + 88718.94151298529, + 88689.16209595407, + 88481.38487480863, + 90301.01400148685, + 90255.91067155173, + 89890.53693961547, + 88646.405400081, + 88460.59624312277, + 88662.00249888693, + 88593.18598690111, + 88700.42324644516, + 88348.35258534538, + 88456.28864332136, + 88677.44885952266, + 88297.34186598746, + 88438.77445915592, + 88308.76253998597, + 88499.31790626561, + 88332.66197764105, + 88521.66032586683, + 88371.9394417322, + 88577.511326891, + 88386.19130325745, + 88432.37386953307, + 88378.7527447044, + 88382.83955964923, + 88546.40237874411, + 88021.3313163512, + 88493.2869392708, + 88405.61962417421, + 88454.34943629967, + 88566.55855702402, + 89972.49873713554, + 88550.03063889778, + 88419.76541763252, + 88378.89271930164, + 88237.63395624454, + 88472.27472068885, + 88737.91876166544, + 88302.25676877188, + 88514.96038148971, + 88472.68228221488, + 88493.61718394952, + 88309.7146296434, + 90148.49574146973, + 88287.05815100021, + 88319.4266756192, + 88282.5637571512, + 87989.01476337237, + 88484.61843123702, + 88385.38652624989, + 89987.53509523951, + 88505.4208955274, + 88485.92827793986, + 88584.32409483784, + 88536.5206651761, + 88256.36741000491, + 88339.50119407185, + 88456.82832726875, + 88530.42214878742, + 88406.3825486083, + 88387.08445144663, + 88396.28713695996, + 89893.44601705468, + 88517.61498493739, + 87977.76471736658, + 88722.83102403955, + 88558.76222645218, + 88306.03062874613, + 88420.84523966677, + 88344.8994181755, + 88449.00053664087, + 88336.30616370424, + 88363.98890529925, + 88362.60096382422, + 88443.99015417385, + 88757.2798999845, + 88351.58373475226, + 88368.07534914711, + 88419.7763521424, + 88717.98407653676, + 88510.42562080965, + 88333.83107669742, + 88626.58763266775, + 88575.9765857017, + 88462.28754139256, + 88836.0395482592, + 88772.68794489409, + 92326.05008512983, + 94654.22636982724, + 91425.09657158966, + 91464.44246274077, + 93586.60219175594, + 93589.13427337709, + 93025.56253717483, + 93034.93635287281, + 93553.88735328836, + 93542.87285605638, + 88968.22841893525, + 89006.03684621748, + 88902.85749665603, + 88694.73273373555, + 88770.11669048374, + 88998.95831050201, + 88813.18253923993, + 88807.29535139979, + 88862.87020210146, + 88940.35813020635, + 88719.986854473, + 88711.95391512648, + 88913.67134750067, + 88905.29290337257, + 88873.49606990181, + 88916.1146409448, + 88887.42693829109, + 88900.39227011942, + 88819.47647571407, + 88841.7144230516, + 88731.15785205181, + 88785.30435031383, + 88873.64041918014, + 88933.35245799503, + 88955.37715307146, + 88808.07844121536, + 88809.71225972423, + 88863.25925664409, + 94860.41464315419, + 94809.74353848188, + 94777.2045280774, + 96939.7130296957, + 94790.8883359463, + 93872.05455515652, + 92974.08923397369, + 92975.62503977149, + 93543.4657580988, + 93550.85862261364, + 95158.97987464583, + 96139.27193844452, + 95170.22302051753, + 93012.70424918424, + 93101.41065007175, + 93188.73658225981, + 93292.01518114925, + 93186.47665709791, + 93249.55171832144, + 93230.54525820872, + 93293.69529485346, + 93607.57338921969, + 93661.48037279883, + 93725.33213726954, + 96597.50409519735, + 95126.694711038, + 92466.47847824058, + 92535.67420110614, + 92479.67380046048, + 92541.5954277938, + 90840.63104534974, + 90788.74294845924, + 90875.6428904946, + 90812.108525863, + 92149.08818936435, + 92087.71439256778, + 92108.66912483661, + 92681.49462860484, + 92747.5621721967, + 92691.1433270897, + 92791.81273491016, + 92719.98650968332, + 94573.11174744362, + 95371.14507899206, + 95269.93601523693, + 95369.79664452869, + 95330.20659727942, + 95325.98290048962, + 95235.74548951366, + 96013.28219965815, + 95978.47329230273, + 94947.27988796636, + 94782.50222163898, + 95039.5427914881, + 95219.10848713045, + 95358.80808645669, + 95508.54286055514, + 96315.39006631782, + 96299.4257154321, + 96324.02566311863, + 96341.18862444937, + 95444.91699836003, + 95430.31650863758, + 95963.35252743993, + 95950.12484352986, + 94323.88976489022, + 94155.83031897117, + 94968.90121085287, + 95036.54824379871, + 94992.26340793457, + 97076.61983324688, + 96380.28781055969, + 96092.05767088226, + 95100.65954684408, + 94781.2730137387, + 94831.67940813194, + 94764.71974508195, + 95259.89220700655, + 95156.78944128797, + 95163.15549537959, + 94170.72543593975, + 94320.5506287159, + 96375.81406263121, + 95990.14658034967, + 96033.27978527645, + 96375.08693072088, + 95820.50112482975, + 96395.33356184303, + 96133.76841832312, + 96101.04541256488, + 96184.81566043793, + 96417.56965551627, + 96292.33937952145, + 95321.40374411321, + 95359.2518454773, + 95235.15461115303, + 95490.83892107032, + 95403.87461645668, + 95434.7813506805, + 96371.23865707997, + 95702.34904687658, + 95689.63925251232, + 95363.8470448223, + 95438.12140415871, + 95345.12725289499, + 95719.3642560631, + 95438.74775398536, + 95393.95134463186, + 93915.67461247394, + 93732.40501876744, + 93831.28229164788, + 93834.4304251869, + 93865.36020794926, + 93949.04960582733, + 93901.58796403631, + 93754.51928787447, + 92474.5549875663, + 92541.10114222545, + 92446.28882658892, + 92510.9837965274, + 94168.00712644817, + 94172.93686658355, + 94268.51034477568, + 94227.88799197409, + 94355.93471701951, + 94060.02601500099, + 94116.26661644941, + 93924.85503905709, + 93949.14419789072, + 93974.50929033541, + 94022.64738997868, + 94312.32437986055, + 94051.66774220605, + 94303.31563802196, + 94003.54982743006, + 94114.32655875513, + 94224.29742863894, + 94131.8182179843, + 93936.37370318927, + 93915.56085404499, + 94104.85477585437, + 94222.09750375483, + 94080.12193720396, + 94175.05303484979, + 94204.20735933605, + 94013.74433073374, + 94149.10075483979, + 94062.23950461214, + 95192.18878450526, + 93981.06452822298, + 95563.33831763349, + 95618.71418981701, + 94626.96443060684, + 94961.9962390448, + 95076.82444005845, + 95302.82737421893, + 94608.169715756, + 94206.32696510479, + 94702.36469871723, + 94705.08946322266, + 94658.895114909, + 94569.80280676277, + 94562.66790889218, + 95304.43340131296, + 94531.31783311481, + 95269.88551286564, + 94541.46811159214, + 95149.74263120122, + 94634.25352044987, + 94697.40319410026, + 95091.92395340849, + 95319.99368080994, + 95301.58079947837, + 94630.39551651504, + 94671.14260908996, + 95089.3896773708, + 95119.73813153236, + 94738.65685272905, + 95068.25673894, + 94781.31937846432, + 95154.3406437858, + 94802.3325423315, + 95105.70316558772, + 94684.28311529913, + 94632.70398735556, + 94708.44547790081, + 94740.06561864995, + 94763.51786066609, + 95220.63167603598, + 95125.54875547701, + 95496.13470559087, + 94594.42687159672, + 94583.94583527962, + 94651.10560516508, + 95257.08556364443, + 94233.59693590023, + 91689.9156042627, + 91738.548395977, + 91731.93216887595, + 94346.78033378352, + 94509.829510502, + 94528.48663855526, + 95506.25933017024, + 95430.9598185061, + 95449.77751377337, + 95494.87912905395, + 95513.21245708983, + 95579.25511783695, + 94746.96208609876, + 95141.50071030506, + 95088.00070197124, + 94796.34837723445, + 95207.54728400431, + 95025.28048977467, + 94994.04487668724, + 94992.0641380479, + 95157.97425899161, + 95210.51266443045, + 95112.69654287952, + 95348.00113621198, + 95311.6100058997, + 95220.35730467142, + 94453.87661400346, + 94459.76663652401, + 94569.99639898865, + 94696.38127915138, + 98503.89968845964, + 98983.70522113536, + 99185.65099595927, + 94437.58770435351, + 96186.25940182169, + 95520.96662625948, + 95395.53490697088, + 94387.90834024789, + 94410.44611369238, + 93880.06664422291, + 93794.95552713104, + 93814.6764577686, + 93852.0802165827, + 93786.27794848467, + 93980.98038158142, + 93927.0380831745, + 93831.83215691491, + 93816.85717412099, + 93831.55273890407, + 93936.66881951372, + 93733.53483031287, + 93809.10347709683, + 93678.44099698958, + 93545.624365582, + 93583.48935321181, + 93682.62756255489, + 93720.49376390997, + 93726.85416195451, + 93591.16938927768, + 93615.88912627882, + 93645.7254103945, + 93599.67154470751, + 93654.30749236245, + 93605.45062289166, + 93708.17232055379, + 93763.43794093031, + 93657.34150918727, + 93697.51676275049, + 95064.46859551649, + 95028.79614965661, + 94844.43317012727, + 94937.32394773186, + 94924.00711887507, + 93657.58783554945, + 95006.34673042681, + 95224.50298112346, + 95223.99348673313, + 95299.88393052109, + 94552.30907971856, + 94023.50845498776, + 94125.37702876132, + 94255.77571819822, + 94147.09026993293, + 94169.13660636239, + 94222.65689644325, + 94957.93426395227, + 94472.20709603677, + 94381.42463040476, + 94416.07502472983, + 94281.54409115564, + 94178.83279139998, + 94123.58147436914, + 94169.09157518268, + 93015.76333927791, + 92980.63941319492, + 93190.70549325118, + 93064.87393138207, + 93000.29090602277, + 92946.26333688904, + 93038.8296421908, + 92995.61564696342, + 93144.43447376601, + 93078.77497255687, + 93051.16869735178, + 95258.80445753322, + 95466.86915914767, + 95404.96015034568, + 95494.47921018649, + 95449.45774232612, + 95522.29842584215, + 95456.8754665219, + 91949.46390404372, + 91994.60911809147, + 91936.03318656498, + 91983.70759391226, + 93839.98245358566, + 93844.24306124111, + 94547.62330964052, + 94952.15918284946, + 94890.1592037714, + 94345.9720338772, + 94362.73267824408, + 94269.5283596859, + 94207.67763929271, + 94157.53706668493, + 94258.38524216403, + 94301.50601815798, + 94011.00694174618, + 94125.6503238661, + 94227.34616572867, + 94084.08394396056, + 94070.50563286559, + 94443.56661107884, + 94660.23703662696, + 94668.42135385043, + 94046.68004288743, + 94235.41587667502, + 94273.344864104, + 94123.19936245674, + 94159.63225677669, + 93803.9261679241, + 94011.724964968, + 93912.59330061535, + 93887.16917253478, + 93760.95419201358, + 93925.82530456611, + 93850.32814637737, + 93675.33911678942, + 93883.462303006, + 93742.14334667072, + 93961.40036485184, + 93887.34458601507, + 93903.3407406927, + 93734.96333262778, + 93941.18935024734, + 94636.41241915552, + 94424.21404328254, + 94373.86923886793, + 95545.38485611489, + 95182.95535517084, + 95071.09472843911, + 95167.69616974294, + 95087.78815059502, + 95126.89613229115, + 95523.23375784527, + 95227.46258123794, + 93916.134535691, + 93951.52721964949, + 93984.68193482122, + 93969.89886979104, + 93882.34010171027, + 93865.27925415388, + 93881.61720809246, + 93830.32747505195, + 93936.57704354505, + 95276.48776626095, + 91231.8196566484, + 91261.04328066683, + 91175.1502515188, + 91142.8260071247, + 94013.0077053391, + 94164.54504032315, + 94054.4416632055, + 94131.90713162518, + 94172.7395942074, + 94893.15089322784, + 94968.92914391636, + 95030.19357548543, + 94320.32001232714, + 94336.05564681457, + 94380.74487902022, + 93805.49685278744, + 93892.59177818336, + 94412.0451565415, + 94426.17357284379, + 94263.86673325008, + 94213.89118970706, + 95385.88848111703, + 96063.61237925281, + 95341.12102532042, + 96073.62002048118, + 94137.00646966182, + 94156.0229058292, + 94202.4207189329, + 94092.44030875542, + 94059.33759986472, + 94176.47708516316, + 94052.49870231381, + 94927.69438379064, + 94849.39986806002, + 94784.33169676425, + 94810.54708687005, + 94919.62429869157, + 94869.35010821253, + 94919.67840200933, + 94717.01718778357, + 94734.90055663262, + 94806.90127093442, + 94767.73807259565, + 94857.13685431078, + 94793.2995046325, + 94413.67065318272, + 94351.82055805538, + 92287.18461593246, + 92344.79587415236, + 92395.50229122411, + 94066.70664866947, + 96912.3840775932, + 96822.83077029923, + 93971.70006909678, + 94000.24913714765, + 94065.67460043577, + 96311.95742018387, + 96345.35938061375, + 97943.74694094929, + 93715.32177876253, + 93690.44395530979, + 93623.24293961626, + 93777.92905171037, + 93416.58217755376, + 93808.8134274846, + 93712.4167533155, + 93499.49299289202, + 93651.07722955113, + 93712.05135609517, + 93668.71539308506, + 93703.36126922605, + 93717.46592200446, + 93805.61396749513, + 93587.67456189399, + 93667.50755458296, + 93740.32595024593, + 93621.50782413344, + 93609.40652498248, + 96149.34956899607, + 96056.31431413464, + 96243.90733864102, + 92712.65686256441, + 92665.20903578005, + 92658.25067258794, + 92707.16684414347, + 92610.96365711992, + 92772.00915250067, + 96880.93597578706, + 96861.82056450349, + 97158.96712629191, + 96665.38767001704, + 95475.64319973848, + 95529.20616248925, + 95568.54842738589, + 97014.70310115164, + 96807.5317976019, + 97177.016571983, + 97043.85947589722, + 96885.77229318066, + 96885.52179751407, + 96955.75725837208, + 97336.92046433868, + 97244.56993259059, + 97323.01083840418, + 96979.26259545963, + 97024.96763850165, + 96443.17666872074, + 96501.2797849095, + 96503.74204473906, + 96486.96356375985, + 96704.94482097548, + 96472.26194887214, + 96638.11644218583, + 96454.7200242486, + 95987.50726261239, + 95892.9268070378, + 96698.7455890938, + 96584.96543692259, + 96541.61840316036, + 96569.40565837403, + 96528.49682707139, + 96911.19010484591, + 96928.75219227053, + 96932.45750407256, + 96934.56900248305, + 96988.3651054402, + 97049.75371645692, + 96844.52551619314, + 96923.19048697427, + 98895.54995718307, + 96026.0226178126, + 96082.0679626181, + 96060.02477735966, + 96033.20740157629, + 97122.38900206238, + 97074.57158975213, + 97089.55029562055, + 96838.02950949712, + 96554.83252774995, + 96908.33001617734, + 96940.36894513863, + 96466.54820005891, + 96499.21194873397, + 96432.75800775865, + 96421.56170751022, + 96450.86417398539, + 97074.17942076073, + 97074.3618961545, + 97006.12101036114, + 96754.00401323636, + 96547.77228387182, + 96966.40149118089, + 96956.51991520695, + 97028.21718236667, + 96923.14998898802, + 96935.43558121054, + 96876.0341655546, + 96947.56185065248, + 96938.83304086134, + 96132.13052901684, + 97396.83809185523, + 96999.23563465345, + 97965.099770708, + 97692.94173735469, + 97983.33638334284, + 98032.72187246279, + 97974.18271627268, + 97786.09247887084, + 97800.2100526241, + 97912.58577131401, + 98515.60094273857, + 97929.92102411941, + 97928.06662872367, + 97948.71845683189, + 97997.23955341357, + 97779.57776729457, + 97918.30088266732, + 97818.95994583191, + 97874.39129412937, + 97831.22264416635, + 97848.66298321466, + 98306.18967874342, + 97716.14241780146, + 97464.08055310673, + 97903.94501359884, + 98510.79621330468, + 97977.63973942658, + 97986.11769113112, + 97783.36471560711, + 97712.53971897205, + 97869.88999145458, + 97745.05257238295, + 97779.36469026067, + 97598.49065794118, + 97644.2460325755, + 97956.81212995679, + 97838.89167622174, + 97665.19276415366, + 97740.7761235048, + 97977.43561497079, + 97910.00226982501, + 97981.26497740846, + 97934.15325168573, + 97661.65075316017, + 97708.59760735968, + 97635.85467905481, + 97877.97127912445, + 97888.45567349828, + 97743.32967370604, + 97847.28715211149, + 97808.1138347589, + 97882.99271670789, + 97867.45670191568, + 97843.74040890497, + 97742.09038719474, + 97907.24259090831, + 97869.84628046093, + 97773.10518246032, + 97710.26128355986, + 97439.77285801106, + 96847.44273347312, + 96871.44532957648, + 96899.7444137054, + 96601.40636551428, + 96719.79711549218, + 96691.0320269905, + 97006.08190547314, + 96441.73368686778, + 96767.40239764423, + 96685.375037542, + 97209.09899176516, + 97154.83922451224, + 96484.01880503709, + 96107.67988071588, + 96231.62891327246, + 95866.80224811046, + 96548.20028247405, + 96288.80898149563, + 95833.69324629745, + 95973.3902004487, + 95936.55609673416, + 95846.59752469542, + 95876.33619274442, + 95823.68246341804, + 95783.98807985516, + 95969.8648337016, + 95894.43298604249, + 95929.05645624285, + 95983.62730236512, + 95795.10468007735, + 95861.17559180611, + 95802.80525539977, + 95825.95151868842, + 95869.97131479219, + 95913.086499376, + 95910.99064717419, + 95937.64989335113, + 95891.91884422916, + 95809.52074514219, + 95871.0650098643, + 95938.4418636119, + 95885.02089259116, + 95946.77940587135, + 96463.23121061604, + 95491.37487357768, + 95374.51754883812, + 95346.23309636129, + 95585.24481960548, + 95616.19801730258, + 96091.30297494435, + 96130.11178472488, + 96018.67970797754, + 96092.81017505692, + 96029.80815869398, + 96045.61522024043, + 96041.3107438129, + 96123.66684769333, + 96012.26588549778, + 96745.93142676732, + 96767.6667165417, + 96765.36884569783, + 97327.29514577452, + 96950.00862634687, + 96839.1737376899, + 96614.39435499303, + 96337.84299855285, + 96363.40943473825, + 96199.08353982247, + 96210.67360754788, + 96379.20593323221, + 96158.6409534142, + 95809.38081404867, + 95830.62061346209, + 95892.9781546145, + 96251.50221250225, + 96480.34466709888, + 96507.82112088494, + 96463.20514033035, + 96341.40385775307, + 96010.78631802801, + 96023.45133971501, + 96002.90560331904, + 95966.166341996, + 96106.27906720324, + 95807.67280945969, + 96395.43569347766, + 96344.44312350763, + 96138.17632150596, + 96013.09656267504, + 96303.38543537387, + 95894.19050089734, + 96982.27860412037, + 96803.66959486734, + 96947.0577205457, + 96600.41453955312, + 96568.01566290409, + 96593.52949252554, + 96954.2291584623, + 96858.60884095871, + 97317.61147548359, + 97800.71562505228, + 97965.28083636134, + 97889.61604333931, + 97866.41918264618, + 96409.68164770227, + 97206.50614037958, + 97172.59542951442, + 97072.76067775434, + 96537.27883527981, + 96711.59348660789, + 96724.52250491997, + 96763.88111565771, + 96763.6034842352, + 96974.48285660804, + 96961.18408244224, + 96795.80972533752, + 96829.80108971853, + 95448.9319500581, + 95427.81805651919, + 95349.78105291045, + 96420.91570369813, + 95853.47014194234, + 96132.08577076395, + 96214.23708082634, + 96076.5874277015, + 95735.4846520663, + 96051.52523546964, + 97068.07558913079, + 97179.42918462172, + 97139.53818571626, + 97016.58216276058, + 97038.98862670796, + 97678.54460695155, + 97173.72709588033, + 97217.85077478534, + 97186.76808718561, + 97395.26641208559, + 97417.15574620935, + 97295.81122049606, + 97315.37804363752, + 97253.70170188205, + 97259.73605669996, + 97279.28897112967, + 97664.79092225397, + 97273.1165047572, + 97433.88051161826, + 98311.21608497082, + 97635.0392809572, + 97598.2216287689, + 97709.20997216344, + 97594.02550440448, + 97671.76762343859, + 97714.52375615494, + 97630.64426674997, + 97630.27163188967, + 97681.43345802989, + 97643.84165540582, + 97620.62074300427, + 97592.75683781573, + 97567.9839306081, + 97915.08026442358, + 97666.16284196392, + 97636.2185941283, + 97938.20290569965, + 97529.40911807289, + 96570.60229277262, + 97853.50880407833, + 97921.9922589436, + 97776.59221266376, + 97836.39549321984, + 97975.90235149172, + 97774.09837247997, + 97885.48780049814, + 97307.21202722845, + 97121.93628053812, + 97121.55585614218, + 97140.73149429487, + 97150.90263007056, + 97060.39526332059, + 97030.8631274604, + 97192.97755496252, + 97069.80879175542, + 97093.05262002055, + 97052.29009434805, + 97170.58382246458, + 97179.82576003372, + 97082.68825227836, + 97144.30771257113, + 97121.76766377356, + 97118.1717151702, + 97157.3153393121, + 97050.33862467408, + 97089.79100594205, + 97119.19599796484, + 97192.94699549448, + 97012.5425356616, + 97224.20831847242, + 97187.0630187911, + 97163.31890311823, + 97219.79709559798, + 97908.54958943304, + 96700.81684331024, + 96523.60268508628, + 96536.9589902775, + 96843.7034070459, + 97444.83065967944, + 98860.0592368339, + 96799.07382149246, + 96769.12236389377, + 96283.05593791128, + 95873.06749071793, + 96306.41541740084, + 96364.42892209158, + 96883.54640512177, + 96712.7933388927, + 97193.71178642656, + 98946.53758317565, + 98999.3555672314, + 99135.63249379155, + 99025.96218669585, + 99101.35715048546, + 98889.17100958912, + 99046.37042367825, + 98893.51043752216, + 98892.5809756726, + 98837.61105136099, + 95302.53383954187, + 94943.81309137406, + 94902.98810497618, + 94869.28850625391, + 94852.59422578581, + 97020.50549542202, + 96986.83239293261, + 97094.066664134, + 98260.94835930769, + 98082.85901569464, + 95264.5613351477, + 95224.54314081938, + 95147.05653917076, + 95210.90866045954, + 95835.68963088898, + 99148.01739523798, + 98385.07485641103, + 98068.59743234728, + 96845.55844426356, + 97243.43268804229, + 96262.47034418354, + 93028.7413036078, + 93186.25366672484, + 92977.72507249404, + 92967.15683152963, + 96460.11226065892, + 96803.5646686902, + 95788.68637466984, + 95594.81419372423, + 96001.25876488656, + 96014.43994346815, + 96063.34010957202, + 95815.74790477773, + 95887.24825329146, + 95898.24021797186, + 95800.38688365607, + 95888.21662057075, + 95858.74283800049, + 95794.28661051509, + 95859.12821844933, + 96082.30693369107, + 95925.95600315143, + 95766.1829793558, + 95895.34584537416, + 95924.27915490832, + 95788.73920911511, + 95879.84007489719, + 95750.612045373, + 95776.9903894864, + 95885.74462050153, + 95921.1715910264, + 95781.69527505395, + 95962.10736111771, + 95808.00418231983, + 95865.57200803333, + 95863.63939621505, + 95774.27234822566, + 95853.77680046998, + 95910.88556421259, + 96030.4428217032, + 96042.10223037108, + 95793.92940460428, + 95817.54264444362, + 95900.49165315344, + 95954.14624176064, + 95906.63393497696, + 95798.73471721575, + 95745.01102164591, + 95961.3303111423, + 95851.78152974402, + 95820.22984781419, + 95983.45394155434, + 95944.3474958281, + 95805.59370462758, + 95833.09723097256, + 95882.46806050198, + 96082.40454432127, + 95995.73359705324, + 95991.11497192552, + 98649.67528264625, + 97117.49595890373, + 97197.27249529856, + 96987.99039298572, + 96471.15884437542, + 96401.1275917856, + 96519.89986547377, + 96340.059287469, + 96410.37135011521, + 97292.93398642252, + 97219.50145431058, + 96758.83817622448, + 96555.4285949727, + 96557.90997067219, + 97163.04215667228, + 96997.88918754808, + 96566.86592637633, + 96741.71992541496, + 96654.07142456822, + 96673.03202241314, + 96381.8808988381, + 96466.11337870629, + 96184.16322498767, + 96380.49868274544, + 96326.5027952699, + 96296.73893583009, + 96375.2552069928, + 96357.78292133319, + 96286.9291927851, + 96246.68502634903, + 97048.72682453197, + 96800.12747201516, + 96669.10745909809, + 96746.57388650633, + 97343.90785178638, + 96482.93915699786, + 96579.15695246731, + 96449.674325555, + 96511.37611718207, + 96563.68467824848, + 96603.53985991675, + 96576.16422373797, + 96559.07462697028, + 96667.1457439772, + 96707.43842318884, + 98866.40507525875, + 96294.38155504024, + 96331.3818016878, + 96244.46002266672, + 96510.0142862338, + 96649.72165456243, + 96692.3996161877, + 96547.35184122685, + 96418.39905249886, + 96399.6880630568, + 96636.52368680722, + 96516.19638795867, + 96653.81040415911, + 96751.98122261248, + 96227.75935192012, + 96249.42668704614, + 96407.06818233056, + 96417.2575216783, + 96467.9741020259, + 96563.98031394236, + 96340.90830816297, + 96517.5416974432, + 96293.66797750315, + 96385.24672593034, + 96452.35418290344, + 96477.54492869324, + 96558.94098791521, + 96519.48340383028, + 96940.61921871464, + 96866.34077155108, + 96843.3061731239, + 96585.22828871832, + 96565.27947982831, + 97072.10533498741, + 96625.08705431149, + 96853.9052170461, + 96531.63874364064, + 96745.38836951589, + 96709.64199598243, + 96775.56196087823, + 96495.57184522109, + 96306.57092112032, + 96275.78388021147, + 96370.03794746965, + 96292.10169388607, + 96294.95527136317, + 96846.80544199326, + 96851.66207692302, + 96702.97319735656, + 96349.6190768548, + 96258.48571134004, + 97252.59719313495, + 96460.1939559876, + 96376.62703671993, + 96703.80801170786, + 96662.28905885534, + 96942.23050900064, + 96810.581309827, + 96507.31968996138, + 98302.08638915663, + 97699.99862934169, + 96842.11261185446, + 96826.8605851453, + 96682.42592128347, + 96691.51413998567, + 96632.26025311099, + 97030.17159452607, + 96947.06423913098, + 96998.45637942558, + 96508.82058759003, + 96365.36880602528, + 96443.84614856978, + 96381.30359501102, + 96415.57824478621, + 96616.32530084581, + 96464.2147426376, + 96504.26771421164, + 96540.14681438672, + 96400.02414032049, + 96445.40242258714, + 96762.63831109481, + 97455.00830613056, + 97021.7617808701, + 96774.3551833301, + 97926.52813372754, + 97262.5053951968, + 96894.29567379835, + 96367.91849148819, + 96296.49819133696, + 96702.411898372, + 96728.37168468689, + 96615.69330291961, + 96726.2537056596, + 96563.22587738044, + 96907.9005061301, + 96708.36771981973, + 96698.93064682311, + 96960.32727627664, + 96980.06357552174, + 97802.4735093547, + 97757.03382286149, + 97770.91510749719, + 97871.68952338253, + 96422.93764887511, + 96974.71298464685, + 96921.55152222289, + 96619.58665232721, + 96627.8685334852, + 96596.30039366569, + 97133.53939254158, + 97004.26608294796, + 96682.55990265342, + 96629.03830283, + 96352.69265795489, + 96451.83502848627, + 96388.62115022908, + 96506.360585659, + 96426.21771977462, + 96407.47366494461, + 96743.50898743446, + 96633.1194771479, + 96635.14748627754, + 96230.63804023997, + 96214.45179065752, + 96326.17101723391, + 96264.4633906848, + 96326.03203539555, + 96597.34646395275, + 96480.32372855049, + 97264.75648080865, + 97257.64186751444, + 96991.85166421087, + 96282.02445261383, + 96359.59055510542, + 96566.85044926865, + 96473.19788319884, + 97154.5299795744, + 96490.39362234698, + 96550.42568876117, + 96419.62931704587, + 96999.63956845234, + 96751.08674126698, + 96697.972959275, + 96786.71030341781, + 96839.30379383995, + 96483.84977258719, + 96630.67704789808, + 96741.70102760034, + 96764.80067828426, + 96850.49988985712, + 96831.87898093375, + 97251.29570214036, + 95113.59086581854, + 95755.97930162637, + 95090.31969622265, + 94651.26562740092, + 95107.1092473078, + 95161.92092814026, + 95269.77791673102, + 95130.88387122283, + 94666.81011124076, + 95191.5612620277, + 94632.1940988171, + 95137.02904450543, + 95043.44752242198, + 95149.33302637907, + 95332.0281496231, + 95051.6652616009, + 94894.8557690638, + 95076.64600235653, + 95203.48852639197, + 96425.8921864831, + 96459.65196670996, + 96496.92588523787, + 96811.1950275651, + 96617.12965504579, + 96426.74328504282, + 96419.78444368274, + 96390.50907439676, + 96459.36232519409, + 96916.32646882013, + 95563.48042896115, + 95896.24687835442, + 95420.08235331165, + 95488.16296761732, + 95383.02891986139, + 96008.8630213765, + 95350.61927221605, + 94956.26073389688, + 95518.54082292983, + 95469.88782918702, + 95566.89754228467, + 95612.32634584681, + 95478.11245689954, + 95445.99882292173, + 95589.15203844642, + 95493.91450694384, + 95549.1482381842, + 95521.79485298232, + 95556.00537198065, + 95508.91601184626, + 96320.6147981449, + 96280.13460877546, + 96364.24649076725, + 96287.69376743624, + 98121.99524766194, + 98541.0584592708, + 98192.76039404483, + 98166.22543913256, + 96353.00819301896, + 96521.41109040649, + 95891.16448274408, + 95763.46923048091, + 96520.96063954935, + 96403.02771334902, + 96412.24011894669, + 96917.0504390173, + 96852.02764313435, + 96819.88884441124, + 96856.08674797573, + 96637.07411913297, + 96814.95159931354, + 96595.76290712562, + 96573.87616748073, + 96669.5411390961, + 97051.91473217483, + 96975.78810501436, + 96516.89264409817, + 96297.57838530713, + 96880.24502229964, + 96813.11555393686, + 97327.92623575436, + 97390.38924442463, + 97217.68695204523, + 97256.87195236332, + 97480.31551961288, + 97371.5537889121, + 97455.46534428223, + 96178.32783293263, + 96288.25558674558, + 96312.40887120423, + 98206.17346571821, + 98174.05663849172, + 98324.36922376543, + 97173.60699000407, + 97332.19078180875, + 97130.93518291095, + 97156.34417751052, + 97609.3784728033, + 97117.46051610255, + 97241.77508500633, + 97226.72413865545, + 97196.29476853299, + 97724.67813450533, + 97276.15490972344, + 97701.28948749202, + 97457.63289470712, + 96442.07780488765, + 96319.50737816031, + 96415.56866223014, + 96651.65284073511, + 96232.86087179637, + 96606.10302187508, + 97019.00700298675, + 96368.48020052267, + 96333.02852864751, + 97033.84918681574, + 96098.29554204186, + 96303.35813014845, + 96273.10836010888, + 96182.82288333018, + 96357.43491363594, + 95811.10727705582, + 95544.22235669453, + 95595.09996121706, + 95480.30012594952, + 95630.32606664213, + 95635.66118562045, + 95477.04217425716, + 95526.6492594866, + 95677.11645382897, + 95633.84325508482, + 95639.12017602292, + 95440.45450474763, + 96496.37422061864, + 96582.20480650054, + 95660.56955803781, + 95677.28372527665, + 95433.91832923502, + 95662.78785902, + 95394.9696974827, + 95584.7247328939, + 95655.13837228577, + 96577.59886148201, + 95827.30190509118, + 95996.87226871056, + 96067.66573265979, + 97669.8057337455, + 97462.8360510825, + 97686.73198942652, + 97200.78870621523, + 97347.83353013977, + 95523.31266376271, + 95587.1461297883, + 95686.28768720085, + 95449.79737749403, + 95756.18992749622, + 97086.01387112806, + 97178.8195800679, + 96779.52312444507, + 96696.75499455728, + 96245.55891904428, + 96123.0994416502, + 96240.73074210918, + 96194.04975573476, + 96319.13173343345, + 96089.44566542986, + 96232.75989347267, + 96158.38431777383, + 96136.68738677424, + 96145.58360721846, + 96316.94696925921, + 96211.57352484837, + 96211.6334262142, + 96123.06440631351, + 96134.85280188615, + 96182.97559382278, + 96287.01295744094, + 96338.51191040609, + 96403.5050298606, + 96875.59396292178, + 96704.33088316167, + 96496.97484619204, + 95797.50684788941, + 95312.43543057372, + 95287.49345178728, + 98395.83998663595, + 97750.79463862568, + 97657.87281536582, + 96840.11576563944, + 96376.43948973017, + 96495.3723510915, + 96497.74165956042, + 96558.50289816254, + 96382.03130978186, + 96234.20343302292, + 96326.90714764067, + 96357.04479517954, + 96281.48297221736, + 96446.30797136255, + 96225.19846793341, + 96371.17820751171, + 96569.07380883017, + 97280.91341371622, + 97218.93574565095, + 96565.89355648131, + 96608.2925808813, + 96716.35557903055, + 97810.76745979962, + 97231.17400973858, + 96987.0388482267, + 96774.76905790945, + 97556.9433582567, + 99045.69549244376, + 97931.99436757823, + 97949.65290238698, + 96437.8955859198, + 96465.63670795687, + 96585.25834546462, + 96706.89991097018, + 96628.1569422172, + 96318.02244651552, + 96427.64493117196, + 94720.26653909442, + 95165.60765656806, + 94940.55038345407, + 95179.98869710567, + 94980.51218130976, + 95061.79356597684, + 94945.25304730092, + 95218.24789975998, + 96299.29312064001, + 95092.07362612062, + 95174.19946651293, + 95245.56999040095, + 95253.853946145, + 95135.57488677127, + 95102.64566147253, + 95119.56649114176, + 95785.50464150192, + 95930.64975742831, + 95820.45227237958, + 95892.37091878834, + 96174.00550679922, + 95798.21104623494, + 95825.84470023373, + 95872.20122936343, + 95844.9614653563, + 96340.55814080912, + 96480.38866600777, + 96597.4329122248, + 96454.60099367701, + 96506.66704797432, + 96263.45212900022, + 96207.88317037163, + 96239.24501049277, + 97502.79670139607, + 97646.15538785749, + 97931.6145145542, + 97940.34990023683, + 97378.81936381076, + 96721.91479976212, + 96641.41744060135, + 96599.08173979487, + 96422.81562140894, + 96187.153632889, + 96392.32036753843, + 98307.31494297627, + 98369.87703318744, + 98339.77818469383, + 98427.93641245601, + 98341.62446619211, + 98369.9982167125, + 98268.48803241228, + 98448.94646022301, + 96731.3904431557, + 98352.28433632314, + 96621.16848786185, + 96612.95877130973, + 96625.94037806959, + 96825.0533209765, + 96787.91853941279, + 96725.21853912911, + 96716.1939460555, + 96655.75488131844, + 96648.99550677605, + 96506.56055945194, + 97090.90147876457, + 97384.010881173, + 96271.12157331877, + 96358.9276402708, + 99009.30827088827, + 98968.59244384883, + 98993.06721654031, + 99007.66770283102, + 98982.44152343833, + 96558.77218868272, + 96190.10973020262, + 96250.37299645566, + 96247.07790109511, + 96302.24175317744, + 96250.83240914228, + 96351.475287113, + 96280.03121427099, + 96392.52396079557, + 96324.87273668234, + 96241.51104963907, + 96413.63133191726, + 96408.68879235374, + 96797.9408935972, + 96891.75413899266, + 97872.05462730178, + 98368.3157961383, + 98341.32886938391, + 97051.32161185639, + 96393.24636570562, + 96769.40892205865, + 96722.44044323963, + 96646.47732164423, + 96507.62309485405, + 96702.3442322927, + 96787.53069444415, + 96722.57467608203, + 96485.20563873606, + 97263.68940530941, + 97278.01659724039, + 95723.36890130429, + 96034.81351488702, + 96933.61776383803, + 98051.83495872519, + 98282.75113269164, + 98323.4492928728, + 96597.00315049812, + 96393.29657255062, + 96290.54005636094, + 96374.06870812083, + 95604.78437746258, + 95750.88589559712, + 97174.68042421268, + 96780.36553825779, + 96348.04132276963, + 96507.5533367388, + 96316.94089233372, + 96406.34759988818, + 96363.44874937553, + 96158.53654821051, + 96216.07768368315, + 97174.090292395, + 97423.83529752935, + 97375.40849798809, + 97387.39945246921, + 97357.55932487166, + 97219.12677975238, + 97360.80913412399, + 96928.39803287762, + 96246.46103177394, + 96334.44832490938, + 96384.7612066812, + 96687.66890433879, + 96514.01373575524, + 96559.36666294347, + 97476.66833626306, + 97373.24159478948, + 97399.87460150667, + 97562.28816473442, + 97327.25600335708, + 97433.19547536578, + 97363.08021092854, + 97362.61765653682, + 97499.4469867388, + 97347.82046104649, + 97543.28758222131, + 97469.73246031212, + 97415.07468682253, + 97598.37960952554, + 97397.52997943097, + 97425.84737468093, + 97442.60346559418, + 97329.7050864847, + 97478.52336595049, + 97523.48067645995, + 97395.43776515307, + 94173.98426701757, + 94998.21891939109, + 95779.10418991868, + 95221.76445761636, + 95563.21593931832, + 94927.01228813837, + 94813.05089936001, + 95049.81398051501, + 94831.6216521726, + 95106.99733425377, + 95200.37789406479, + 95234.04044483494, + 95174.54016347298, + 94998.56050464817, + 95358.6847925196, + 95209.7640142139, + 95181.22582686505, + 95039.32892818669, + 95161.43568020596, + 95230.15753292643, + 95205.08422479422, + 95169.67825607181, + 95260.99071858512, + 95077.42775615962, + 95115.87710930793, + 94984.96709079483, + 95249.41713009618, + 95383.8578284938, + 95171.9930292263, + 98974.75635141051, + 97495.42818133085, + 97573.7137546718, + 97879.1667547636, + 97752.0332341938, + 97924.88876319247, + 96286.84995846129, + 96816.00002137569, + 97159.9719032367, + 96602.25381360695, + 96541.22800334581, + 96580.09282569413, + 96262.58755908567, + 96477.68388301556, + 96520.83266213229, + 96593.26452848932, + 96652.32078447807, + 96275.60911911029, + 98131.84060703998, + 98116.51550369726, + 98310.25317294084, + 98307.49097620593, + 97884.20567526405, + 99127.37165225792, + 99097.36317848787, + 99210.74174635496, + 98849.06017740154, + 98931.42109207704, + 98929.66878863417, + 98951.6481871395, + 97956.99862073422, + 97903.59153920232, + 97860.23120298976, + 98057.19172951505, + 98025.37844863573, + 97995.64472124574, + 97685.86516354248, + 97728.43536218064, + 97765.6532261492, + 97803.44920114131, + 97788.58947764522, + 96763.14768007296, + 96915.00173927705, + 97836.10518643745, + 97688.00073934876, + 97727.63593382601, + 96406.38208067756, + 97708.14663611, + 97718.08452896669, + 96686.05597598436, + 96547.64348049424, + 96672.85908683737, + 96601.66672785666, + 96337.24183924371, + 96471.83044519875, + 96356.6894447284, + 96509.91978677841, + 96367.48296617898, + 96432.49913903954, + 96517.06841258459, + 96452.70654576157, + 96355.89866425129, + 96476.90982705473, + 96614.76664132059, + 96331.56711893888, + 96422.76850011421, + 96487.64826356656, + 96648.68948995211, + 96506.86847470027, + 96641.51720485609, + 96602.56608801859, + 96362.82663265921, + 96444.06436374444, + 96569.70648172167, + 96487.07322596954, + 95643.58976360751, + 95590.93383746725, + 95607.44304430792, + 94997.80525697407, + 94969.456558474, + 94753.18278928977, + 94684.56361039644, + 94746.05696180757, + 94740.64356322309, + 94928.47293991121, + 95041.75112957697, + 94749.29729931387, + 94787.770570493, + 94862.61137248392, + 94765.37085488303, + 95769.4273404822, + 94928.36583728541, + 94632.31889352873, + 94848.32260879887, + 94909.4801901364, + 94822.21338392912, + 94772.02659537169, + 94744.73198904234, + 94799.15550751943, + 95331.3487126772, + 94775.49929541259, + 94819.89007159689, + 94833.73793561508, + 94887.7091277814, + 94811.2932859593, + 95165.44960730286, + 94879.54696254854, + 94815.49520473366, + 95002.99557299165, + 94871.39332069001, + 94881.5729079285, + 94903.21119163149, + 94804.50966103506, + 94769.12513718361, + 95634.67329415417, + 94756.36115087039, + 94725.74020589143, + 94908.2961139866, + 95587.21671942728, + 94731.62379447502, + 94928.27605842218, + 94873.87443292578, + 94827.75783125078, + 95776.62332951289, + 94861.48746533257, + 94778.80690072749, + 94847.18021121435, + 94681.21667693715, + 94686.68850821337, + 94859.03733117373, + 94833.66567461635, + 94865.96693864682, + 94825.48265916525, + 94928.14149642424, + 95120.7974751264, + 94943.54808386687, + 94808.9434265245, + 96695.73403401808, + 96735.6625162933, + 96720.60531021802, + 96564.020422332, + 96823.59189171705, + 96630.43975177128, + 96563.44435641338, + 96615.96874056084, + 96465.01599917706, + 96009.67472811212, + 95630.2045767319, + 96089.02815632267, + 96067.89889393673, + 95766.15219288901, + 95729.41349529594, + 95620.76960465858, + 95734.53772507152, + 96217.61152393422, + 96518.38805351868, + 96495.48054519108, + 96432.90834803335, + 96413.40389535019, + 96609.85637492496, + 98132.66739592743, + 98184.11582898955, + 96737.38123752185, + 96331.92386954006, + 97054.61849023897, + 96988.38709557017, + 95651.72246340426, + 95685.44647783595, + 95599.68294597721, + 95603.36657863882, + 99482.36791712252, + 99652.18317202266, + 99507.27055929118, + 99448.66639839622, + 99444.04255201604, + 99707.96750950199, + 99813.91502764664, + 99805.25726658729, + 97523.91805244905, + 97387.44466697019, + 97325.35357186201, + 97349.58185053393, + 97397.94499439833, + 97295.9111719528, + 95312.95855588862, + 95249.43208736234, + 95249.13612521146, + 97909.5256296521, + 97671.5271836395, + 97320.9751458158, + 97288.32585044665, + 97287.42371834854, + 97331.31191752062, + 97753.86362578296, + 97544.31371711488, + 97269.95524537595, + 97136.05458186644, + 97836.10112215702, + 97912.74332734982, + 98032.12952113833, + 97812.02122999499, + 97676.13557284081, + 97867.82302155967, + 99050.31283061483, + 98655.12240236765, + 97608.77421579452, + 97544.46873198576, + 97555.47422544137, + 97628.07066642634, + 97445.71186335788, + 94535.23441251172, + 94453.30770379661, + 94555.46811316232, + 95173.1058684115, + 95061.07101043357, + 95125.54161959406, + 94642.13333896926, + 94577.33860504878, + 94677.93437523032, + 94598.57761381929, + 94704.25329936552, + 95898.80369104634, + 95859.76101831674, + 95812.8085668192, + 95924.0510925754, + 95896.15100446602, + 95824.9408665822, + 95758.1497186825, + 95253.24133716796, + 95156.66415912467, + 95285.10107414321, + 95193.57186281015, + 95101.30623358215, + 95288.3668867181, + 95214.81168632788, + 95178.04877880761, + 95238.4612240695, + 96585.10907993346, + 96390.6462111492, + 96213.5014235769, + 96884.94841533682, + 96843.19044479831, + 96976.72186679111, + 96668.19262520867, + 96527.43586088887, + 96519.96662272481, + 96553.27398847301, + 96957.88158177114, + 96076.39327665615, + 96254.52857694228, + 96282.33518668677, + 96286.57370428348, + 95362.96257854867, + 95762.442921347, + 95381.11813749094, + 94883.10635112034, + 95025.3184603646, + 94949.60061790438, + 94776.97725616019, + 94991.55991969479, + 94952.53942297342, + 94891.32234489628, + 94826.4909333284, + 95394.6894172284, + 95529.53434892082, + 95613.36862572782, + 95440.45332612093, + 95428.17340896445, + 95290.12180962758, + 95617.83943211543, + 95509.51889809627, + 95991.33991024262, + 96055.57318060596, + 96097.44273427612, + 95848.90900012582, + 95668.59789817403, + 95969.73089143247, + 96307.29746684979, + 96110.446524941, + 96018.1989928102, + 95916.88717086082, + 96259.9088278092, + 96265.8396473732, + 96425.09656179631, + 98146.26357853966, + 96740.13124735563, + 96595.41352686423, + 96654.64167636221, + 96513.8684829462, + 96544.75552813962, + 96711.99932746214, + 96702.77287733635, + 96622.89110754011, + 96650.8577845288, + 96660.99210432713, + 96495.89435277808, + 94583.67896061894, + 94658.26682954257, + 94620.28434976013, + 94669.0910072042, + 96251.15095739174, + 96304.23939903782, + 96226.01518961282, + 96320.65693732718, + 96277.56204314627, + 95674.83501563323, + 95736.15092677393, + 95786.53743239374, + 94663.42415631165, + 94690.05816224274, + 94529.54887138213, + 94573.33511403036, + 94595.57719945294, + 94607.51235993573, + 94666.84271139963, + 94624.39247192521, + 94549.16204838405, + 94491.8662499373, + 94952.55129948242, + 94615.64321919113, + 94522.78269468108, + 94562.82084434494, + 94593.73117840412, + 94579.78144755292, + 95571.72373244617, + 96621.22573818848, + 96470.6891870684, + 94228.39378501002, + 94061.36529939531, + 94022.25691774377, + 94052.96379103974, + 94285.83388955456, + 94165.01695821773, + 94230.32019308097, + 94662.60718160463, + 94700.17153728654, + 95735.32005357998, + 95692.66532182253, + 95665.0896772998, + 95717.17249319649, + 93771.64901934502, + 93792.45591967623, + 93697.6920875846, + 93762.18661659818, + 96281.32850564222, + 96253.68359021118, + 96325.10446742897, + 96337.60461817843, + 96325.43171609768, + 96171.94045814378, + 96236.30172944344, + 96372.84433195303, + 96416.50330670876, + 96461.59608065485, + 96187.06552247319, + 96046.32402735324, + 96093.98837699907, + 95954.38507019526, + 96049.50535520805, + 95998.29219547354, + 95970.68481188625, + 95908.75378900667, + 96010.59585795696, + 95963.09163288568, + 95614.9761433545, + 95473.6830691956, + 95625.48730067638, + 95504.31384644122, + 95585.85264252442, + 95698.5799699456, + 95371.62884591159, + 95361.67422421975, + 95619.42230416782, + 95663.18864254322, + 96284.55056147317, + 95559.6425612621, + 95412.5939248789, + 95399.43047732508, + 96134.90709775368, + 96196.76537660908, + 96165.55211580031, + 96220.62136154641, + 96083.77668077107, + 96256.84714815787, + 96145.48967947123, + 96140.70858890428, + 97018.01929554026, + 96848.85035393931, + 96886.03757990844, + 95472.53473339273, + 95592.3590579154, + 95577.60998891103, + 96402.25288687303, + 96931.73639236027, + 95307.82377822268, + 95312.76274987488, + 95246.617811933, + 95202.42610294092, + 95189.33791646003, + 95279.44711489225, + 95246.69781047499, + 95324.53269217705, + 98252.20125651163, + 98157.37070871185, + 98357.10377182142, + 98324.73469132032, + 98295.76754954316, + 97105.86251341687, + 98258.1504517649, + 98246.01088839823, + 97429.76144404312, + 98240.64626714814, + 98321.03221855451, + 98271.68050762633, + 93752.3312236433, + 93756.90772025482, + 93953.20323974107, + 94091.98744666459, + 94124.10076790105, + 94087.37147599955, + 94126.81383111597, + 94013.12054823448, + 94172.54386589286, + 94029.39526780658, + 94131.47438278008, + 93941.60029047483, + 94051.09597981113, + 96692.12311657275, + 95777.45510873004, + 95708.6636061905, + 95660.79157564534, + 95632.78201832197, + 95733.23099723773, + 95625.2334428732, + 96690.8587748414, + 96662.49126502928, + 96745.05165244982, + 97124.39568027973, + 97095.89811358032, + 97112.51508375412, + 97438.94706894625, + 97298.1281701925, + 97162.94378004716, + 97368.28761209213, + 97145.35276682033, + 97198.43320497262, + 97245.58511308912, + 97404.46242057864, + 97240.73904594999, + 97394.17633422943, + 97150.0365297859, + 96980.44928277681, + 98203.0854152399, + 97903.23099241641, + 97820.00767848469, + 97165.28391525596, + 97121.42521929949, + 99200.76991821163, + 97730.10289313177, + 97679.4016292501, + 95973.2616830581, + 96015.96776704377, + 95591.27380732736, + 95648.05875995208, + 95602.29812834255, + 95765.18576710457, + 95710.673787455, + 96760.92857071379, + 98107.98397593139, + 97143.57757258782, + 97117.76259346868, + 97199.548737579, + 97244.54058788632, + 97151.98882224852, + 97119.08649562852, + 97228.8586541166, + 97278.2734802375, + 97971.15353949438, + 97948.15175790482, + 97981.75949850792, + 96126.7346762115, + 95933.5287680958, + 95988.09830570368, + 96776.65072818978, + 97174.4902451007, + 97535.24128889033, + 97857.0437324069, + 98441.4708798117, + 98378.02420745678, + 95765.99579339992, + 95805.27848287535, + 97459.28505940326, + 97675.57302296757, + 97657.0685191219, + 97609.83906118742, + 98605.62696637101, + 98594.57251546823, + 97292.27504024247, + 97208.17700488467, + 97153.8030933662, + 97461.83260827704, + 97099.70079043217, + 97067.465012111, + 97404.7469494071, + 97118.95086045063, + 97039.56267630485, + 97100.65924565001, + 97324.6914900351, + 97043.84788523692, + 97481.10824091855, + 97510.25838188223, + 97122.99450066582, + 97151.83752746668, + 97116.3702029372, + 97317.08656207834, + 97297.57988152267, + 97399.26667465223, + 97110.35476659756, + 97245.9845655978, + 97338.6794096304, + 97304.16071013291, + 97221.2851500303, + 97218.18204837828, + 97028.63638755542, + 96793.83633777838, + 96860.75623904701, + 96803.46095891818, + 95603.43349316179, + 95538.75882410601, + 95403.35995732812, + 94982.11885713646, + 95091.65908345411, + 95006.98525443788, + 94961.43165547009, + 94945.53507458087, + 94903.43608338811, + 95065.55850772645, + 95011.65811258498, + 94939.05144867142, + 97851.96545124071, + 97776.20823036006, + 97951.79743510587, + 97678.34155724986, + 98068.90809649408, + 97644.57598419554, + 97840.23347415248, + 97858.72921784101, + 97998.55969379349, + 97900.61279437604, + 97911.67531684053, + 97775.50314469819, + 97890.9310548109, + 97940.44104273879, + 97891.33496893896, + 97867.3221662809, + 97936.31670167827, + 97945.53098688826, + 98007.87228599943, + 97872.15207962286, + 97671.66130484144, + 97137.2003252543, + 97176.99512205806, + 97178.02769187269, + 99234.6345322715, + 99167.15507702739, + 99196.99137747717, + 99345.95077259775, + 99298.94031897592, + 97434.89728860323, + 97758.09088007455, + 97717.66882748203, + 97692.05204438251, + 97864.44960459028, + 97856.92589348364, + 97646.7315802885, + 97518.4690028683, + 96568.3757200578, + 96360.79423069155, + 96201.11846761782, + 96147.12728695886, + 96712.80076694199, + 95593.06297803868, + 95019.76951112322, + 95102.28517788525, + 94975.72901611873, + 95116.68898388208, + 94867.64816679416, + 94984.22203293043, + 94919.08305377813, + 96508.73199069055, + 96791.11917374496, + 94924.30340248237, + 95102.2093582555, + 95018.57997559619, + 95013.28433948402, + 95084.45208789824, + 95044.35313290669, + 94991.32690242348, + 96292.96228716835, + 95396.31854026583, + 95370.67728844626, + 96457.41148009703, + 96281.24470025112, + 96370.77101982675, + 95464.53667424759, + 95403.07991812484, + 95460.77332334426, + 97713.34748462857, + 97678.75741357544, + 98480.18557061398, + 98344.96213348431, + 98429.70413093227, + 98511.79293987446, + 98434.76946955148, + 98467.42435958885, + 98524.49222600524, + 98559.46645536512, + 95959.85383984294, + 98087.31445184478, + 98071.68595187098, + 98629.22677301739, + 98588.84201485832, + 97955.36336549766, + 97936.09237213417, + 96198.27647513033, + 96152.66864658507, + 96586.95927925126, + 97158.89221586598, + 97020.82930599325, + 97021.39491967497, + 96979.82022752479, + 97016.71696412006, + 96721.31987028342, + 96644.41975002215, + 96671.14731805214, + 96322.43872730463, + 96408.99138701527, + 96380.36068124554, + 96410.01535381378, + 96545.67249216154, + 96337.69690409732, + 96379.29684177249, + 96256.40262368404, + 98094.94144871847, + 98102.66578906662, + 94425.17698527497, + 93711.5032857345, + 93766.13514013491, + 93794.37719324508, + 93725.48220687856, + 93282.32117482684, + 93221.73955457543, + 93208.18303346328, + 93325.79765311313, + 93214.11532235434, + 93315.33872157881, + 93266.84118076335, + 93260.96297517662, + 96468.45059842155, + 95419.01295011838, + 95522.29690782333, + 95434.63162470613, + 95522.59347807155, + 96419.20807083481, + 96121.69831110585, + 97051.56980439604, + 95549.4392720819, + 95516.47032069488, + 95289.99947728145, + 95545.42707969059, + 95587.50972921033, + 95085.7358614468, + 95766.82836995482, + 95105.9704756148, + 95815.83892952197, + 95191.15728912293, + 95512.73349904499, + 95626.14363249643, + 95032.40110092318, + 95631.07394328593, + 95590.81174307152, + 95912.25682425735, + 95597.7906661159, + 95579.93831216634, + 95715.19253104036, + 95126.23354130394, + 96534.17654783507, + 95015.33918715396, + 95796.61373078152, + 95643.13524318043, + 95746.24059541902, + 95559.2112095161, + 95766.4420442681, + 96526.79557731359, + 95131.5941183471, + 95018.48362985617, + 96065.14768742399, + 95634.93267958445, + 95527.42462717323, + 95194.44309703742, + 95813.90918667779, + 95726.95869510453, + 95954.92061138574, + 95112.53926171671, + 95049.89107673854, + 95733.5582374262, + 95852.81047544103, + 95167.71564066921, + 95788.6686934094, + 95156.93526218369, + 95503.24905229843, + 95227.31453053986, + 95256.82853161849, + 95777.06593763633, + 95778.11133873799, + 95841.15444703231, + 95545.63612104181, + 95535.85549573906, + 95111.693114726, + 95161.29561184804, + 95751.83804119815, + 95154.35913268666, + 95743.57295726631, + 95566.08096854025, + 95071.67988020071, + 95320.52292032006, + 95795.05422834658, + 95080.07065852977, + 95078.64341067748, + 95009.57828432537, + 95204.47944062315, + 95257.49256519784, + 96576.33824877361, + 96378.93466044324, + 96299.85768372391, + 96612.8462594204, + 96619.36075421462, + 96050.51896679334, + 97096.25480847151, + 97461.17357839017, + 97113.68749649214, + 97070.65467482769, + 97085.84775973822, + 97511.27320539985, + 97471.4065804253, + 96172.51733633167, + 96596.14681899169, + 96432.47446387983, + 96730.72662363359, + 96815.74842835017, + 96432.60634695792, + 97017.1669084225, + 97173.35179768581, + 96929.96417980653, + 96895.32993115457, + 95960.83337961102, + 95973.18677822626, + 96185.91987135717, + 98053.0642172455, + 98274.51626017109, + 98416.67608487829, + 96833.09629477594, + 96389.15700605555, + 96728.86287279802, + 99228.92028443553, + 99212.70100378105, + 99232.68405354682, + 99103.44876993205, + 97711.83186455314, + 97603.39364622922, + 96767.66900065186, + 95740.22395410195, + 95874.51064937194, + 97094.08230838644, + 96858.31183832121, + 97019.63624773566, + 96947.97323662853, + 96831.27749069908, + 96392.74500653436, + 96436.86822188261, + 96376.91690518416, + 96350.55565716545, + 96321.15146800532, + 96524.80040507406, + 96860.6503292752, + 96680.86127426095, + 96398.83615088987, + 96391.62172387257, + 96272.74969865312, + 97698.46004125582, + 98150.22448558552, + 98046.56042319539, + 96091.68950774056, + 99340.31910283645, + 99313.20979173463, + 96470.73828277734, + 96565.0881456934, + 97185.1808281155, + 95500.49413841194, + 97254.60654731093, + 97228.53082661908, + 97457.80305691704, + 97262.678362189, + 96245.81287553936, + 96314.41375523742, + 96401.76747586693, + 96355.90615678827, + 96369.69059048773, + 97186.3132997967, + 97064.47646579129, + 97158.96990923911, + 95870.52884118582, + 95840.07213390034, + 95680.1096833134, + 98796.43807365598, + 97288.66317264974, + 97400.5708421359, + 96733.77607604802, + 96760.86563639867, + 96753.76496796569, + 97632.01085607987, + 97563.26458780964, + 97588.76856320181, + 99361.59793953648, + 97903.46526431757, + 97873.51796335696, + 97948.39404069813, + 96889.0306429424, + 96907.48571010484, + 97191.09182635164, + 96942.59821550541, + 97747.44748826537, + 96387.01730151517, + 96598.19218239089, + 96473.28103194672, + 96658.84703021134, + 96494.81661435854, + 96672.20067299905, + 96598.19772505444, + 96510.46443991837, + 96701.69552746598, + 96539.74460144996, + 98226.84081787949, + 98241.35583628787, + 103012.50040913292, + 103050.16207521364, + 102935.46730939098, + 102950.02495500898, + 103115.61980314259, + 102981.6591476348, + 102970.32847474286, + 103050.37577267221, + 103039.45476144501, + 103145.40971868698, + 102881.9871404351, + 102896.31427168078, + 102743.93553159607, + 103003.97003289565, + 103071.21323586704, + 102958.121892692, + 102990.59814603475, + 102955.94479850777, + 103041.38776247326, + 103006.17533551028, + 103097.54858465325, + 103093.03210077138, + 102849.4521539362, + 102929.61114879283, + 102836.82326066242, + 102850.0467744593, + 102710.33828378592, + 103171.58738973808, + 103039.75462604016, + 102822.41041165365, + 103145.40299178564, + 102893.70015633377, + 103068.00837449041, + 102885.78859789654, + 103053.80194217195, + 103120.61740341707, + 103353.3242908138, + 103044.72318410393, + 102885.22782431466, + 102934.2236077041, + 102936.50978128517, + 102797.13886249666, + 103138.73232130763, + 102970.44843874604, + 102673.92982323217, + 103391.80690165356, + 102918.21735494805, + 103087.20566196111, + 102940.683338319, + 102799.74205444116, + 103183.68169934869, + 102917.88714022035, + 103082.19417204797, + 103013.92678419144, + 103079.13759889861, + 102796.76557690598, + 103008.94428849094, + 102914.14727498162, + 103097.33141408257, + 102984.59817230792, + 102999.242153458, + 102825.0800232946, + 102943.62442164868, + 102996.76586737529, + 103056.99415971928, + 103067.37440468137, + 102735.70852544352, + 102977.56662627251, + 103052.37715191457, + 102856.38596651099, + 103162.96543297928, + 103029.09037497792, + 103086.18250158385, + 103144.62346271172, + 102857.39568352004, + 103018.48102906163, + 102846.81397282002, + 102959.24234304379, + 102860.97984399927, + 103204.38427585832, + 103037.63504006495, + 102976.99922262576, + 102915.13967065407, + 102948.12263359, + 102905.30463146325, + 102775.59654509142, + 103064.59068768269, + 103127.2944683463, + 103034.67848377136, + 103118.71870989143, + 103071.00150506526, + 102791.07795037152, + 103141.91696005758, + 102900.66287637541, + 103159.2274797242, + 102953.45731484497, + 103076.07764829494, + 103180.222746918, + 102929.58826717759, + 103023.01993823654, + 102806.18146902687, + 102815.61399877533, + 103103.79792250128, + 103062.08365221192, + 103127.22842256306, + 102987.13535610563, + 103015.066909508, + 103003.68988635896, + 103019.86716613526, + 103015.5953490687, + 102965.30578971672, + 102846.40082320553, + 103043.9117792615, + 102956.1297050231, + 103183.26568270578, + 103076.71371945935, + 102839.27781745781, + 103195.814589243, + 102844.52372308212, + 103048.07930443641, + 103116.44549536241, + 102887.65778558908, + 102787.7592041423, + 102878.33658342516, + 102975.28613555466, + 102777.14875199659, + 102784.83487471334, + 103055.67082885235, + 102922.95094014877, + 103018.59506549768, + 103099.08631775716, + 103074.18589615662, + 102895.43270597128, + 102761.9969007521, + 103040.86211690954, + 103078.14916824212, + 103141.03868202487, + 103220.7702303365, + 103039.71918145288, + 103000.09208703019, + 103093.18540186799, + 102886.24823604496, + 102734.2330280844, + 103124.81756865612, + 103116.45746689758, + 103116.44206372628, + 102905.47635113973, + 102876.54018840358, + 102995.30845949444, + 103461.52053531604, + 103109.24014121846, + 102639.10208368214, + 103127.93620264718, + 97816.11957295614, + 97744.13754822216, + 97875.02824277256, + 97875.23810233118, + 97860.97988843071, + 97874.20140366515, + 97813.77444698993, + 97295.41993443215, + 98504.0608151538, + 98563.09341475698, + 92714.11963007496, + 92747.05003046816, + 92736.93813690646, + 92758.02599424361, + 92772.32573698397, + 92875.48053840011, + 92643.21127411565, + 92635.69548630752, + 92662.91635122887, + 92806.5752589732, + 92672.51828517085, + 92780.45361230415, + 92910.85152531487, + 92750.21944483303, + 92929.03768547083, + 92695.48300652891, + 92763.33740890355, + 92746.60202937137, + 92804.83283425898, + 92656.75321387713, + 92720.63886172147, + 92781.03766208091, + 92955.99148324825, + 92819.90574053729, + 92863.93843996643, + 92762.18406665193, + 92731.96951288165, + 92829.5244158295, + 92829.06364513682, + 92964.21376697725, + 92797.61369683825, + 92899.57389546379, + 92689.95383378031, + 92879.10271586856, + 92918.23986331817, + 92770.44632801176, + 92826.16653182537, + 92776.46176010194, + 92799.3624177929, + 92744.89756492016, + 92788.55500541464, + 92743.6893037566, + 92755.14253033418, + 92674.50485570161, + 92778.98325152327, + 92823.64619231266, + 92845.58188637684, + 92870.93404835771, + 92855.1291239748, + 92698.77859603205, + 92802.31863144008, + 92892.72049598476, + 92868.7121626449, + 92915.20617790846, + 92928.39381493034, + 92847.40821100175, + 92864.43936845861, + 92876.39180829469, + 92838.77007893879, + 92968.71300952189, + 92759.73292583875, + 92887.42259766499, + 92908.28155211873, + 92748.72130275492, + 92958.5054330462, + 92972.27137717552, + 92886.64791972426, + 92932.43400044982, + 92868.65401523824, + 92789.25845787131, + 92871.2505752866, + 92915.12458208142, + 92741.2233382749, + 92825.6682181709, + 92937.13338499848, + 92714.19169562703, + 92710.4092859258, + 92715.643325396, + 92693.19807508035, + 92785.66175398401, + 92762.37604498131, + 92898.36187164378, + 92816.23744248544, + 92846.47331272127, + 92805.50156317676, + 92908.05512282117, + 92780.10459702351, + 92735.8872940194, + 92809.1992299666, + 92734.73602492957, + 92822.90992394777, + 92792.15515640823, + 92768.14688762419, + 92907.89027775265, + 92803.08916804337, + 92805.67467569452, + 92674.69300068788, + 92860.77077420008, + 92652.28269502005, + 92931.03691748106, + 92786.45165805808, + 92690.068927953, + 92654.04075146845, + 92770.35188046416, + 92806.45226779237, + 92678.6570565419, + 92789.38337680516, + 92816.16939505044, + 92681.04409740334, + 92791.67829836892, + 92670.95905256645, + 92718.19280810321, + 92931.93535013939, + 92832.21310659085, + 92970.07983820014, + 92785.25516080103, + 92703.7009482962, + 92743.15309026223, + 92832.99190630158, + 92848.17018472671, + 92856.6758347593, + 92700.80017637742, + 92811.6659175343, + 92820.39777410144, + 92637.22500048368, + 92724.95781401754, + 92918.12000715463, + 92764.62782096473, + 92834.87795946051, + 92716.36551030405, + 92688.16204123068, + 92769.98293309148, + 92747.11480769856, + 92830.97365426456, + 92956.88845743412, + 92667.03163689894, + 92773.97104867987, + 92765.97352504909, + 92817.15251278403, + 92839.25105015197, + 92684.27446517262, + 92738.68503255733, + 92928.56873551727, + 92951.93214721176, + 92840.23927959817, + 92837.4325323441, + 92773.24336533085, + 92707.69711555765, + 92894.12452528065, + 92795.44137357986, + 92872.08606858594, + 92908.58904558522, + 92895.13083815288, + 92968.34537712067, + 92933.32350347849, + 92817.07788508855, + 92708.3826511513, + 92633.09806031307, + 92724.69669127463, + 92801.33010757218, + 92859.73470884244, + 92850.4893758, + 92796.35612079636, + 92724.80064222643, + 92763.48617614119, + 92691.12432749973, + 92832.2455281412, + 92821.6970235056, + 92851.82952662438, + 92739.55758843302, + 92845.21219008189, + 92889.60537235835, + 92834.7670703216, + 92733.8821803168, + 92986.54378267881, + 92947.59593567792, + 92856.64253156737, + 92846.37780126568, + 92929.57342431239, + 92694.65154614455, + 92725.73648513126, + 92909.37864471917, + 92805.98275581197, + 92737.17105520054, + 92878.3665763355, + 92802.85003718645, + 92856.84754805104, + 92888.32012726701, + 92898.5423456085, + 92936.9208329952, + 92705.6426947887, + 92802.4910911643, + 92703.75887355224, + 92720.32907766118, + 92776.69738221027, + 92670.03570964884, + 92863.90985342726, + 92783.24992765753, + 92630.81613535142, + 92650.60838023956, + 92761.85914886044, + 92892.90945921653, + 92872.33464950968, + 92900.15446475662, + 92870.6477486372, + 92933.1992941243, + 92851.02442957304, + 92751.17943703893, + 92823.51293857984, + 92945.57764957601, + 92729.4609843271, + 92890.45354067329, + 92861.71457971018, + 92758.15563703989, + 92954.24674729079, + 92684.86692219344, + 92867.89952269728, + 92753.36839914953, + 92815.38400026898, + 92641.38065955654, + 92913.90088716414, + 92828.71624935322, + 92789.6538543949, + 92893.38018644902, + 92846.85628511268, + 92874.80861019567, + 94389.82268512787, + 94473.83901464478, + 96726.85001938077, + 96856.75307244163, + 96887.63327582092, + 96757.24745508902, + 95941.37906805627, + 95883.81802686673, + 97300.31066052879, + 97227.48630235011, + 96107.43914118575, + 96267.78319342206, + 96223.35433626908, + 96431.48255781003, + 96906.24469590047, + 96456.6197756494, + 96621.2306651311, + 96103.35761667813, + 96135.79066248288, + 96066.03066201929, + 96124.46503141584, + 96209.36237781073, + 96049.12329461102, + 96234.19587815474, + 96182.34124187389, + 96069.25402929624, + 96110.12517865465, + 96104.37397737885, + 95473.87175752441, + 95529.50498627951, + 95559.19394644504, + 95475.06861200492, + 95576.43864239694, + 95675.56715847473, + 95652.38718337071, + 95529.44060928901, + 96463.32828761848, + 96332.28386414018, + 96704.88510542022, + 95403.82629332301, + 95414.5198416682, + 95428.74452499427, + 96837.5234314195, + 95981.4289276959, + 96091.23112460926, + 97608.10402017404, + 97884.05250852642, + 97883.03260448822, + 97729.09348492567, + 97618.47312684309, + 97807.37725707618, + 97782.00465249535, + 97819.38169053383, + 97944.82949518417, + 97765.78400893019, + 97793.209213772, + 97914.72098171483, + 97738.23489846344, + 97952.48333090381, + 97679.97545734418, + 97907.07772482715, + 97692.3701015755, + 97854.94207901634, + 97911.10388910468, + 97721.07590051215, + 97836.27828454283, + 97690.94002689296, + 97837.0291488112, + 97866.5629916667, + 97641.92112939028, + 97668.29733496392, + 97745.78152964913, + 97791.99447045982, + 97799.84504107031, + 97895.17566291973, + 97556.46186289481, + 97842.08313682882, + 97646.58785246593, + 97955.37870272386, + 97569.3314865344, + 97686.2269103041, + 97716.19446453296, + 97566.32146451849, + 97749.43723227644, + 97817.99605739959, + 97770.29128264848, + 97837.88980822326, + 97659.10882033668, + 97944.48848345084, + 97724.71001358965, + 97840.4488438348, + 97682.13216992372, + 96182.13562718286, + 95658.74013915077, + 95679.24097287183, + 96253.47998191483, + 97834.98736896088, + 96049.63837547174, + 96089.25686352311, + 96121.88887235317, + 96094.58974753537, + 96176.81124765753, + 96239.21475237247, + 96187.2673674574, + 96332.65419596537, + 96233.66033300763, + 96233.30699052043, + 96134.36234317473, + 96297.38515154971, + 96151.41022304098, + 96082.6862769373, + 96223.09032145453, + 96262.14436611164, + 96180.26927345316, + 96170.58043821786, + 96141.79495419456, + 96226.17274284131, + 95879.78023428856, + 96318.37473253458, + 96032.14228891094, + 98052.01818030688, + 98000.89472177274, + 98030.63733564413, + 98149.10712130788, + 98216.62724920495, + 98213.69694156857, + 98136.52770175759, + 95844.27494216182, + 95882.75653309235, + 95858.11291681843, + 95873.13670582481, + 95915.45945457155, + 96661.15501811591, + 95780.44924539157, + 95886.06286226807, + 95746.45351481336, + 95768.15206604342, + 95691.04939234379, + 95836.51390847687, + 95934.77941414388, + 95816.16075862515, + 95721.1118486502, + 95900.55166557113, + 95799.86698698705, + 96081.51773116515, + 95846.27746233897, + 95973.08240383722, + 95929.56949551513, + 95856.24184208568, + 95962.648951747, + 95937.40790539984, + 95824.43387327349, + 95733.48913760284, + 95793.6820658207, + 95772.40764226652, + 95922.24975383069, + 95914.52764200403, + 95878.63974632234, + 95810.1892282629, + 95986.87215922702, + 95854.36203630836, + 95751.93219087191, + 95948.29108104784, + 95933.10890391868, + 95771.1520841971, + 96026.31169836612, + 95774.14507709046, + 95990.44398072414, + 96644.71742174745, + 95797.38464544155, + 95759.28364262846, + 95879.32488590298, + 96007.02552024368, + 95799.71339132743, + 95986.9049325351, + 95945.23705564445, + 96030.33284891481, + 95810.60492377383, + 95867.72485103867, + 95904.66765956307, + 96033.15612682415, + 95749.64560857885, + 95740.81234286937, + 95693.87231896988, + 95747.4548018069, + 95791.04080191755, + 95786.72480025757, + 96004.96794127276, + 96069.3698993026, + 95936.80461170511, + 98391.3654527381, + 97562.46612950841, + 98382.73052405847, + 97552.51833446544, + 96247.06477880469, + 96115.75097550079, + 96236.82264330242, + 96287.68799404218, + 96341.9584726013, + 96334.04844919537, + 96189.50164004327, + 96129.95296040154, + 96686.53014972531, + 96666.27787163145, + 96682.58310310973, + 96315.1576937446, + 96403.18675110892, + 96432.7187319126, + 96338.47765596065, + 96273.99014457836, + 96495.87133068114, + 95869.20236478248, + 95912.008333997, + 95949.1600784945, + 96105.10042717274, + 96613.09529056762, + 96555.82518831582, + 96352.76136627332, + 96129.08577941864, + 96147.46587683262, + 96112.49719695996, + 95965.43289062445, + 96033.98990398803, + 96932.98205381237, + 96212.6841921486, + 95445.50029813193, + 95395.99414455838, + 96309.88478423315, + 95773.4170104861, + 96109.23688977351, + 96096.91431835426, + 96011.82130088062, + 96061.42099266543, + 96074.03549605754, + 96088.75199644471, + 96118.24342476773, + 96861.46033115732, + 96640.5620202917, + 96557.59659352103, + 96588.30967872712, + 96008.88833191514, + 96027.13384085294, + 95883.83699885607, + 95975.06514142088, + 96004.72927759534, + 95950.19346715305, + 96051.95003272599, + 95893.51889181437, + 96144.89367540594, + 96101.32030537611, + 95923.907758798, + 96043.19356552222, + 96087.111627038, + 95969.29263186545, + 96043.87770069051, + 95992.08890608055, + 95999.96496058637, + 96012.29670587514, + 95384.71934393427, + 95319.53976511759, + 95500.60372435469, + 95386.86547266938, + 95393.91431790583, + 95496.27699337724, + 96569.52588876095, + 96682.8032109078, + 96505.5768828933, + 96561.1289662077, + 96679.55975867888, + 95351.97758507192, + 97189.57952601701, + 96943.5826191979, + 97250.13277358422, + 96935.82800306576, + 97299.19607449145, + 97525.78803979425, + 97178.4335252593, + 97235.96464026743, + 97343.6823481417, + 97223.42280780959, + 96962.82978313397, + 98366.5317572711, + 98294.15306017191, + 98141.6380062112, + 97298.22480265996, + 97263.87438890443, + 97405.45190185368, + 97265.26688568054, + 97143.09835047876, + 97129.06878847051, + 97235.87959368073, + 98296.91832297333, + 98283.52624727061, + 97321.80845451674, + 97570.19222318186, + 97592.15333958538, + 97634.27256841559, + 97731.86232399511, + 98027.23840369366, + 98014.4662099854, + 98070.63175874326, + 97912.42274945986, + 97847.58279285853, + 97961.59489284047, + 97668.12360152378, + 97354.44949091639, + 97438.11718141663, + 97123.22683661472, + 97010.00916339061, + 97003.53337889878, + 97130.84549007515, + 97126.32749050998, + 97031.44944641803, + 97089.4267597361, + 97004.45699478449, + 97072.86333942694, + 97161.1662180509, + 97054.70302158214, + 96956.32059970194, + 97023.40738180937, + 97117.40589499525, + 97029.66141271086, + 97109.4740304231, + 97150.9713187897, + 97384.12423704745, + 97261.41344047216, + 97058.39697873502, + 96637.24626095728, + 97326.30387106475, + 97762.94327311365, + 97434.17271064689, + 97043.03097313532, + 97243.08337739702, + 97145.76310622979, + 97095.05235018766, + 97256.31857012321, + 97209.354903683, + 97275.21589329709, + 98126.72194186601, + 98029.23649616924, + 98218.18612787206, + 98173.49799372526, + 98243.20668277878, + 97942.74096463536, + 98086.92377545155, + 98136.26463837818, + 98032.10914792269, + 98164.7191831383, + 98177.75893148144, + 98048.7976669239, + 98085.14677152337, + 98137.73454611025, + 98087.89687269753, + 98058.3882260423, + 98196.25269400347, + 98165.00907916101, + 98038.87796969373, + 98047.80561487027, + 98214.51331152665, + 98221.44438791503, + 98250.33407362783, + 98175.28356611886, + 98086.64316477746, + 98153.95335586341, + 98453.38379434445, + 97072.80267951578, + 97051.94872116366, + 98217.55465375583, + 98311.68272827691, + 98378.07785934748, + 98246.37587520153, + 98230.17666779128, + 98046.28708608718, + 98251.18088487917, + 98319.10302793559, + 98197.145671496, + 98233.44659529526, + 98348.03221156073, + 98248.99486452407, + 98266.98788422802, + 98381.35948380831, + 98387.01183578208, + 96930.45087312897, + 96711.39206785646, + 97730.67186086356, + 97737.3791540576, + 97760.05643502806, + 97812.77410308796, + 97846.09235022662, + 97844.89671201118, + 97790.3443567589, + 97780.88601719037, + 97793.6389519722, + 97822.87456305856, + 97756.11969829707, + 97714.25738805142, + 97797.73998808523, + 97059.65093863031, + 97074.06837654435, + 97267.94399725233, + 97420.50106316275, + 97625.9522204539, + 97641.00229908383, + 97516.38998854977, + 97567.99530773342, + 97610.07987633217, + 97071.63031530446, + 96996.84956326048, + 96993.23426998722, + 97019.97811091317, + 96980.83698822696, + 97085.24353199765, + 96992.79396284865, + 97154.35896812822, + 97382.12160605498, + 97967.22245570888, + 97293.33443899159, + 96764.02037724445, + 97500.29116980988, + 95123.75313616887, + 96504.0113092561, + 96749.74084841611, + 96786.69954014356, + 96590.63286272458, + 96722.33353227373, + 97030.2520829105, + 96829.08746262993, + 96842.27837158077, + 96405.86324838473, + 96795.14077544119, + 96809.16183135839, + 97296.74368922459, + 97952.9294243462, + 97955.84289253918, + 97937.84650883084, + 97926.20155611816, + 97921.57888470891, + 97447.89786565928, + 97584.54867327097, + 97440.19299843578, + 97537.69416462189, + 97557.92783029494, + 97520.47130796686, + 97420.5839825796, + 97406.49600346612, + 97524.95581496398, + 97470.45712281887, + 97550.40349062327, + 97402.25470761966, + 97501.53966637526, + 97456.21491158627, + 97486.11011137227, + 97490.76512311144, + 97473.15345637558, + 97380.45145645179, + 97364.93794419584, + 97493.31139326544, + 97642.23998100052, + 97733.12248701614, + 98266.1684006728, + 99212.51030616327, + 99089.64531938844, + 97568.18928030234, + 97664.13121209273, + 97608.50198699025, + 97516.32843180199, + 97295.1480213509, + 97527.7722333421, + 98354.2021118834, + 97981.00694860649, + 98133.35294956547, + 97482.43177391349, + 97424.13306252814, + 97531.13306710056, + 97491.69682662486, + 97607.29756739261, + 97402.21565975588, + 97409.51267743493, + 97935.18971112657, + 97745.13254705475, + 97717.30182307873, + 97839.00962931263, + 97707.07960783267, + 96382.50314982572, + 98949.18912879386, + 98010.42769601001, + 97998.11890191796, + 98181.21611959832, + 98121.44337304786, + 98071.41054108432, + 98381.74787497967, + 98290.95288923327, + 97150.45925062025, + 97261.7617408887, + 97156.92705815511, + 96809.13802091916, + 97271.69810632353, + 98135.44809761492, + 97975.85969435751, + 98087.74110527057, + 98131.02182023783, + 97842.3191241412, + 97897.19574531108, + 97740.11577656561, + 97901.20186675964, + 97932.13537150175, + 97364.53654526435, + 97596.51200593878, + 97466.27266862227, + 97591.70446658987, + 97559.74444341238, + 97556.34242910771, + 97568.50082889231, + 97504.15192908207, + 96925.02449761663, + 97281.94651476617, + 97754.87037614986, + 97816.8011205971, + 97889.86492800197, + 98299.94934348867, + 98291.09947188398, + 98218.1665266749, + 97646.77543914225, + 98092.4725283489, + 98095.24070406985, + 98265.74336042402, + 98380.98621041664, + 97453.59900556323, + 98175.83270961333, + 98068.84935339227, + 98076.53351725111, + 97321.33667852162, + 97256.20849471942, + 97375.35204686232, + 96085.62481953611, + 96480.10013682928, + 95635.4952582386, + 95660.99083576904, + 98301.13718378269, + 98344.85074410372, + 98394.3083189937, + 98310.53063600973, + 97346.1892401973, + 98480.40348207085, + 98370.04229097803, + 98451.12892657102, + 98596.80481606587, + 98320.60384126543, + 98702.60040244272, + 98398.75524090877, + 98445.66094374743, + 98732.37072864667, + 98369.26821419236, + 98345.90054955689, + 98310.13941730415, + 98350.13090091896, + 98367.03708190138, + 98981.74509741156, + 99115.95103184906, + 99044.69297651587, + 99139.70935255074, + 98942.63618668188, + 99068.30285214641, + 98837.87215098692, + 98941.98492686346, + 95925.51936102928, + 95836.86051364095, + 95841.63723542419, + 95807.55730759914, + 96714.19926904603, + 96823.46958884488, + 96172.1853849051, + 96001.11875324031, + 96153.74670381845, + 96814.77969019499, + 98464.03856830075, + 98189.86043944341, + 98307.69673094383, + 98237.26193514904, + 98624.79723960246, + 98285.95990732293, + 97698.11772956593, + 97385.0681494814, + 95837.99483341178, + 98228.7849099925, + 98375.74582118145, + 98182.14007435848, + 98140.23039610147, + 98269.97101414308, + 98274.18301520034, + 98261.35090991932, + 98152.55259488344, + 98222.89012213812, + 98101.23332558201, + 98175.87245687013, + 97595.5487286106, + 96279.56542526848, + 96530.07073939945, + 96589.42762961413, + 96756.45377519565, + 96827.37038036223, + 96930.8467707688, + 96494.91179403212, + 100553.61137409393, + 100444.89520239284, + 100530.44923311533, + 100626.79397543533, + 100504.09236604944, + 100461.50336537426, + 99852.28352799846, + 99808.93365789295, + 100898.1530317686, + 100848.69931219713, + 100857.84354867911, + 100797.99961855274, + 100682.51103448716, + 100956.3356976481, + 100820.29890680054, + 100757.83911726538, + 100777.06863317556, + 100805.1278220788, + 99897.00034100206, + 99885.53367261976, + 99733.89269403598, + 99931.09159473867, + 99989.17577184312, + 99402.69167743201, + 99914.41548040505, + 99949.71858455199, + 100007.300600629, + 99941.71936800965, + 98696.20977067878, + 100481.51513057065, + 100403.30601497291, + 100529.91253667448, + 100568.23920670286, + 100728.97795077493, + 100437.50150850076, + 100194.52138415762, + 100103.23446886911, + 100329.56908981693, + 100165.50473225, + 100010.5721553044, + 100048.20827001765, + 99552.26651483987, + 99539.09821540986, + 99569.29443472087, + 99712.43812317886, + 99401.76593393642, + 99546.359302407, + 99547.70287765094, + 96768.76253347314, + 96838.7838623563, + 96789.33376936015, + 96920.93490684904, + 96831.01533371997, + 96946.95627384465, + 96923.16983244233, + 96808.41765699841, + 96809.07917067675, + 96856.67588119206, + 96847.17765287637, + 97506.82580701464, + 96734.42347125604, + 96749.37391939254, + 96816.89633164286, + 96732.82218142171, + 96918.79091209936, + 96977.91016252428, + 97203.10489846802, + 97148.42701927797, + 97394.5768705934, + 97321.6102346845, + 97391.15136417256, + 97421.55628560655, + 96572.70915846486, + 96569.37282584612, + 96634.02973485782, + 96641.9954973643, + 98259.271845129, + 98168.9231416876, + 97204.8783368979, + 97506.64122277842, + 97518.73388739799, + 97294.3314821682, + 97388.71359159944, + 97460.1220450078, + 97527.0381829492, + 97574.84489035908, + 97403.49233740254, + 97313.23942986008, + 97470.12592517314, + 97339.79753757949, + 97554.5235551415, + 97533.81519896755, + 97334.74101129781, + 97489.70814217188, + 97472.39269986044, + 97387.12778874076, + 97437.62011604731, + 97457.91304211157, + 97317.43805248154, + 97410.58779561223, + 97539.58464921622, + 97342.03150148301, + 97306.54238286208, + 97368.47508508009, + 97462.35402312716, + 97362.09100683562, + 97468.63463640668, + 97407.10414666461, + 97427.0423299996, + 97445.06134182603, + 97384.33030394555, + 97418.50090063574, + 97329.77520403042, + 97501.86106879357, + 97589.09322622273, + 97365.55201336363, + 97496.03917907522, + 97578.21965017916, + 97621.96108195561, + 97597.5695956047, + 97551.12577735574, + 97566.33074345869, + 97316.24496342393, + 96793.86442373705, + 96685.18396788204, + 97191.87480429292, + 97945.10387365565, + 97813.17651623696, + 96192.36516650372, + 96166.65134798315, + 96151.18947802766, + 96219.49280554311, + 96321.49613399363, + 96348.27089895145, + 96312.11948904546, + 96413.07673363906, + 96067.23210924766, + 96241.04212507296, + 96371.39408635684, + 96469.32529389091, + 96158.31542657371, + 96334.94354943845, + 96152.51660612367, + 96247.31090145207, + 96236.22052335802, + 96303.25217664873, + 96187.17079366487, + 96348.83043260756, + 96308.4379961576, + 96338.25209207543, + 96260.73617752134, + 96268.88889721669, + 96157.96193062943, + 96588.03419761182, + 96527.41286019633, + 96551.83742032673, + 96521.94024587476, + 96905.2605934214, + 97009.34087073864, + 96820.7830898844, + 98073.30353618528, + 98153.01073729256, + 97890.19215830484, + 98289.64738099596, + 99350.28536017142, + 99507.3720181478, + 99388.57352758666, + 99720.51276602945, + 99470.76221817326, + 99983.69630418211, + 99864.71563941333, + 100490.87413901878, + 100512.67904571105, + 100462.96804014868, + 98174.24014304766, + 99182.5898053717, + 99297.47748745349, + 99173.09577075086, + 97018.10490746981, + 96024.40112653765, + 95977.23359820171, + 95944.20879009437, + 95957.04000819045, + 96118.28040336892, + 96136.85927600949, + 96010.1549176, + 96088.19892270163, + 95907.0760779808, + 96018.50845340571, + 95951.03051542168, + 95976.84004061195, + 96193.58532347402, + 95724.82667612792, + 95782.3253503642, + 95763.58006546515, + 95802.71249287276, + 95794.74480692008, + 95773.72799782119, + 95705.64201223625, + 95854.84350284688, + 95750.69476013878, + 96100.74371648408, + 96096.27034812108, + 96200.85680540389, + 96373.49619860556, + 96029.76428620814, + 96057.67371904092, + 96137.52117336927, + 98923.84604161337, + 99330.7962680329, + 101107.14331554841, + 101171.88975233596, + 101142.357752018, + 100568.55851595142, + 102954.7692368723, + 102875.47592578827, + 102873.44929349524, + 102973.29006079929, + 101911.83591220567, + 101946.02963869514, + 100215.14271741606, + 100200.76545872116, + 100059.60994106538, + 100079.51571516019, + 99936.15523064065, + 99181.95152123351, + 99195.28356015346, + 99211.69144249897, + 97980.22062912158, + 99073.87694250268, + 99151.86765374598, + 99168.96378888712, + 99046.5441793224, + 98976.05727895776, + 99081.16187921172, + 99148.53901882828, + 99113.76487179766, + 98959.06003485763, + 99169.54346949601, + 98982.98037771537, + 98937.48844781533, + 99208.54851849852, + 99061.3646667225, + 98987.32425560945, + 99071.96756131454, + 99131.82143847682, + 98613.13814771906, + 97220.44655452287, + 97196.75706828712, + 97125.53941725435, + 99718.2462926422, + 99803.36721250159, + 99813.23079232925, + 100208.03450922729, + 100291.24785455817, + 100818.8068736159, + 100710.17332989187, + 100756.53431442664, + 100742.58004892079, + 100816.52170155974, + 100535.41769180611, + 100588.8078125849, + 100684.1289854207, + 99355.4318094893, + 99283.37793193322, + 98884.47395865238, + 98702.11362056104, + 99212.19665290292, + 99294.92357045293, + 99409.68747127595, + 99366.21868458806, + 101293.34932264523, + 101281.5327958176, + 101334.14824704995, + 101367.06730180504, + 101344.2365303306, + 99029.78237454424, + 99954.82959672711, + 99643.0795719138, + 99636.85899020171, + 99574.3917835105, + 99512.35272587591, + 99507.38002680989, + 99709.87237972025, + 99618.5853241082, + 99492.14181196287, + 99538.7844648259, + 99586.24804608843, + 99142.8207100815, + 97428.68780199539, + 98467.69979749717, + 95501.56943956636, + 98020.27360911023, + 98145.87350225112, + 98050.34194011665, + 98168.00603776949, + 98149.26582746887, + 99101.32720644573, + 97907.77536328329, + 97901.03417870511, + 97823.51772352493, + 97887.71552031132, + 97844.34590883499, + 97875.84098174631, + 97972.61225798044, + 97778.61977575067, + 97733.80999706348, + 102294.46222470059, + 101611.36177265896, + 101415.64667156886, + 101663.47791347724, + 101670.89096728647, + 101489.91040062429, + 101683.85992837578, + 101627.82156718601, + 101614.52685921428, + 101670.00019402351, + 101564.26236712594, + 101677.59144852104, + 101503.11750353694, + 101566.44477254337, + 101556.6713244582, + 101576.23104104938, + 101501.37291680236, + 102258.94880965956, + 102241.50007551156, + 101505.40062337223, + 102236.92013567835, + 102271.38430452191, + 101620.62748966913, + 101705.56691766535, + 101616.40249009931, + 102275.28365277304, + 101546.7676820338, + 101530.92806958249, + 101440.57017023579, + 102061.11808554111, + 102273.20050188246, + 99104.38829532635, + 96790.03152514201, + 96103.40886384947, + 96132.92147820993, + 95931.69453685306, + 95990.48196120898, + 95956.60429664124, + 95934.42168851243, + 95911.93174621023, + 99852.8334694923, + 99109.0663166796, + 99132.2467544649, + 98630.80803171467, + 98689.92719517139, + 98600.23627742211, + 97899.34691313219, + 100183.97700610255, + 100698.78901867794, + 101020.07401227095, + 100753.17948613792, + 100929.37102861726, + 101049.77169559221, + 101042.64163339522, + 100956.6831535797, + 95941.76966348794, + 96031.13533407368, + 96019.14956732029, + 96068.74269110095, + 96041.31540570507, + 95956.81382376744, + 95973.72556328609, + 95919.35469646247, + 95869.3259308094, + 95890.9852158734, + 95627.49229889535, + 95439.686001942, + 95462.46659073206, + 95350.06247732986, + 95352.85380484689, + 101563.87691551438, + 101274.0689543692, + 101168.10653818438, + 101300.33166744621, + 101234.34457208082, + 101601.26872970493, + 101585.65958301134, + 101602.23613881375, + 100811.46618206523, + 100829.32986696697, + 100126.81551866842, + 100132.13706504772, + 99693.89632500503, + 99710.17309703058, + 97773.05134874712, + 100036.94123600336, + 99063.1409527306, + 99169.33340406543, + 100018.92157433346, + 99407.78802846867, + 99754.96532026985, + 99736.98260295848, + 97304.55664375074, + 98194.2498880113, + 98162.43586684139, + 98039.41022287405, + 98449.82609230773, + 98405.07060129187, + 98476.86717384406, + 99709.78133773808, + 100811.29454032266, + 100799.25439064918, + 100677.38582400509, + 101079.62659732827, + 100722.31731806434, + 100834.06910339087, + 100697.5591835894, + 100714.08462751635, + 100770.01044896716, + 100791.5569642883, + 99447.65502558881, + 99376.7135123605, + 99310.39242009577, + 99409.34911582587, + 99415.06017255128, + 99369.62794905218, + 98879.98498514206, + 98842.26136432061, + 98989.84252043573, + 98812.04332174487, + 99055.69525843728, + 98951.35380331521, + 98884.65639907506, + 99012.5910040835, + 98920.55399183184, + 98986.64830287533, + 98697.12172626315, + 98620.91786909541, + 98579.78840613288, + 98665.66923677477, + 98676.9556260032, + 98666.27593048109, + 98466.22795573567, + 98327.10502264924, + 97761.06111769819, + 97778.59716574609, + 97828.84470887261, + 97887.6803134344, + 98415.58884975722, + 97970.80486236633, + 97853.15094800435, + 99142.00061841276, + 99019.66226194054, + 99192.84066023113, + 99195.67384174546, + 105702.70779626064, + 105720.74472153532, + 105597.88258663817, + 105537.04043110306, + 105659.02741920555, + 105571.73128079504, + 105609.73144478192, + 105534.28021291584, + 105564.00159757282, + 105754.22947200622, + 105456.10991948233, + 105491.33714438768, + 105716.4703499383, + 105543.42915303927, + 105630.69769986445, + 105645.64612103258, + 105497.54551993767, + 105503.81836976812, + 105623.1784153991, + 105624.09575786174, + 105424.31086366, + 105638.02562345852, + 105639.8016154403, + 105447.54534695485, + 104529.0077171011, + 105513.51897047486, + 105541.31168826211, + 105662.21818670053, + 105536.89658786391, + 105587.63908464299, + 105551.30533148885, + 105472.97873689594, + 105562.15649703948, + 105614.445608318, + 105605.58224577091, + 105646.15356609257, + 105649.11294797633, + 105639.1427377219, + 105591.38016161196, + 105695.7244338854, + 105501.26262445355, + 105440.08994178778, + 105533.16243882055, + 105517.55400168929, + 105575.97003898642, + 105641.5542752146, + 105618.39256775245, + 105687.63777874172, + 105739.36521479895, + 105637.2752229223, + 105623.86195710463, + 105519.4049907799, + 105536.43145628818, + 105538.19528796947, + 105565.0341187142, + 105726.80316226129, + 105472.67496843007, + 105565.60861014514, + 105721.03776835771, + 104505.46224372448, + 105695.48735109183, + 105519.56230898018, + 104517.04252285708, + 105504.7638572277, + 105675.47517143977, + 105708.26806277981, + 105447.26852737083, + 105720.82332476201, + 105692.74199201462, + 105472.93529743854, + 105505.51038627926, + 105702.65367969817, + 105617.41036553025, + 105463.66708114756, + 105513.42888557282, + 105587.24021536975, + 105666.60642497567, + 105525.56918281784, + 105595.04010791137, + 105444.17622828389, + 105593.64617351997, + 105820.99262817558, + 105488.11414785475, + 105581.60321262159, + 105479.62020612431, + 105674.17917521868, + 105668.80576224392, + 105736.3108427153, + 105672.44716304717, + 105752.73162429658, + 105584.94006434933, + 105569.52484353032, + 105589.43123760885, + 105670.77428807763, + 105553.56081415866, + 105747.65391754272, + 105495.33426700001, + 105680.3612644293, + 105560.48340758316, + 105445.55876504377, + 105629.84276764742, + 105648.70327510666, + 105655.30686287093, + 105565.4869750369, + 105481.75828279473, + 105442.67875268511, + 105526.1879944992, + 105656.64322979332, + 105594.35386643908, + 105612.48488332644, + 105555.6768617231, + 105466.87188407933, + 105686.90580509568, + 105612.92245493767, + 105586.46190778396, + 105553.22245719808, + 105602.79629216735, + 105675.06158554988, + 105749.4487101587, + 105544.46883093425, + 105500.52522474098, + 105559.27154028906, + 105610.83844839808, + 105474.40094419045, + 102845.67951808334, + 102881.05506671254, + 102758.92562444904, + 102845.59991174893, + 102770.39328667689, + 102791.21393627733, + 100735.89049163861, + 102786.91065751955, + 102696.68521353304, + 102794.83285276036, + 102711.83752916791, + 102702.49380949287, + 97921.57016446197, + 97927.66577067936, + 99516.12138979742, + 99602.96430557796, + 98688.38398683874, + 98595.29230202979, + 98630.36630678174, + 101440.91242559247, + 99888.7474021685, + 99314.8551296866, + 99358.88038956131, + 101577.95064257612, + 101653.48509896647, + 101618.87726680218, + 101696.33854508724, + 101693.9514589707, + 101705.56128660376, + 102075.73811485003, + 101584.20875166706, + 101745.0284195526, + 101750.29136937985, + 101723.50378938632, + 101638.07400466492, + 101710.07571479805, + 101605.94890163437, + 101663.21104220499, + 101571.93741097451, + 101537.33961984668, + 101661.32861456498, + 101809.28157252, + 100562.85875895302, + 100691.28122991591, + 100703.91892473621, + 100643.93297622279, + 100629.31140834546, + 100618.80971613749, + 99820.63295952792, + 99750.92672342333, + 99919.27050152971, + 99838.29242204245, + 99861.68642531082, + 99828.61773977215, + 99861.59601408201, + 98068.53195038276, + 99008.51573252691, + 99889.43749238121, + 99109.3220921073, + 99431.23960563343, + 99477.79155051857, + 99931.61590707452, + 99557.42983475236, + 99679.01460310047, + 99781.31591692459, + 99487.32292325515, + 99933.44815741768, + 99734.55623427365, + 99678.11644301329, + 100044.6384196381, + 99648.52514943464, + 99734.73651507167, + 100160.85356023969, + 99769.13322520467, + 99078.52085760598, + 99013.75011741492, + 98983.9846827361, + 99369.7372803506, + 97811.37205660775, + 102770.45633988047, + 102899.28079331243, + 102845.04247001756, + 102895.70055079371, + 103861.85953601846, + 102846.78158593367, + 102811.8399410256, + 102916.2536478733, + 102974.00749621436, + 102909.81065957414, + 102971.72070191367, + 102961.37499772165, + 102754.28742449006, + 102739.48839184036, + 102898.81474529942, + 102794.85431909138, + 102866.1985748635, + 102844.89185582798, + 98778.26008769598, + 98708.14130337609, + 98895.84249312858, + 98969.34698883492, + 99955.92746291363, + 99956.03049514619, + 101816.88311248944, + 101202.62539612001, + 101391.8218569706, + 101174.63066983833, + 101048.57144304692, + 101000.89468833616, + 101246.78776875495, + 101329.93994851012, + 101396.92720550015, + 101206.60928117258, + 101239.2275985487, + 101425.18089836829, + 101374.23433910658, + 101302.72499833946, + 101341.02872417537, + 101903.18715956158, + 101756.92345298977, + 101849.86400158559, + 101917.07900434479, + 101771.88883756689, + 101878.49188290893, + 101859.9833131921, + 101768.71035459545, + 101957.66008863025, + 101925.93381925664, + 101802.09502770085, + 101941.68698389355, + 101820.5319393799, + 101816.23817021484, + 101810.24091218987, + 101956.52492095728, + 101818.97161414391, + 101875.49783721726, + 101811.52595774685, + 100461.69417982163, + 100490.95507089696, + 100584.23507339627, + 100530.62814033258, + 100598.89273700629, + 100590.7203286694, + 100253.45508330212, + 100686.6864121916, + 100490.75991207774, + 100668.95104477237, + 100709.49045972321, + 96029.34704917161, + 95132.0182590058, + 95656.09312934356, + 96141.31999881029, + 97742.89093696582, + 105073.0459310981, + 105250.393807277, + 105140.76660493574, + 105754.80884174582, + 105296.44944531913, + 105728.57517210917, + 105331.49139983783, + 105780.27159862246, + 105172.1807521991, + 105292.49635223951, + 105249.47644010253, + 105196.48958054805, + 105286.83303054038, + 105160.24999280086, + 105237.16293164933, + 105751.46313263659, + 105219.5540524566, + 105122.87025665042, + 105134.50465352352, + 105245.56495725964, + 105329.65312133559, + 105255.04680668082, + 105776.90488419207, + 105296.69162847476, + 105290.15459453787, + 105187.03177049119, + 105068.00604745663, + 105210.64546245524, + 105172.11220199827, + 105147.22240577158, + 105110.21176335553, + 105205.98079610139, + 105213.94812081721, + 102632.01767983723, + 102581.27782990142, + 102038.80831194275, + 102529.36033743144, + 99348.7447313686, + 99133.91865058728, + 98285.28494219562, + 98238.1997657076, + 101317.04585495421, + 102019.01183458454, + 101995.52746789972, + 101916.08163925847, + 103456.08986793383, + 103457.02108909264, + 103373.99913840227, + 103524.19866889584, + 103286.55890268029, + 103435.72798991972, + 103264.17278986354, + 103477.47262815104, + 103380.67928748445, + 103389.520733978, + 103504.33007253749, + 102974.21228920032, + 104503.28348820597, + 104496.15652465288, + 105460.45902230869, + 104559.40416265023, + 105434.4203361631, + 105455.89490134627, + 105431.26932589978, + 104574.61351811924, + 106561.87872816344, + 106776.02255939199, + 106635.16178182501, + 106732.15504561804, + 106601.29107885293, + 106731.17359497877, + 106602.14819754453, + 106862.10792861404, + 106755.693741068, + 106532.5203665794, + 106759.61558299915, + 106609.41327421999, + 106706.91607713986, + 106650.15180578313, + 106592.85557378664, + 106665.85308371624, + 106765.76699810462, + 106644.63224566527, + 106727.0636283268, + 106691.8254125457, + 106658.42952704415, + 106573.8359684691, + 106946.77846067028, + 106678.2647647673, + 106679.82621071998, + 106820.76911869101, + 106821.27699738681, + 106812.8337418669, + 106685.34842842711, + 106551.31500165496, + 106823.52842568823, + 106749.18607248642, + 106842.31888496643, + 106742.34691528913, + 107048.685062726, + 106675.50133822637, + 106715.18848661716, + 106770.8177499561, + 106682.09481440886, + 106619.69654244954, + 106719.62851343823, + 106712.21093307452, + 106792.36538370406, + 106716.43322221242, + 106722.43473218425, + 106613.4142948, + 107200.47939503906, + 106762.13888084773, + 106837.53679908288, + 106790.73048520643, + 106553.37983249659, + 106791.48424114, + 106579.14641755563, + 106666.6595550612, + 106598.67730765055, + 106632.97128548277, + 106678.59034848932, + 106794.65299645755, + 106647.08307701974, + 106681.56976180268, + 106745.56797317222, + 106837.31654858893, + 106708.68509258526, + 106808.31653286635, + 106707.63399406707, + 106778.70466327264, + 106852.09016633748, + 106796.85298801294, + 106725.95900633195, + 106609.89058123871, + 106643.67855764981, + 102302.54250042449, + 102273.51637285373, + 102327.68714141687, + 102134.67476412581, + 102190.75502881849, + 102192.64407157355, + 102251.95358990936, + 102251.26335777057, + 102191.2547206348, + 100276.21812349626, + 100133.57556468557, + 100169.9290565621, + 100231.58588411789, + 100459.64579783555, + 100437.37357383645, + 101085.99598431727, + 100418.44291308156, + 100217.0931850488, + 100166.28518205784, + 100196.8580268146, + 102472.09396205097, + 102510.40110102798, + 102426.07836071348, + 102493.70912809666, + 100370.73279250569, + 100263.99606202378, + 102185.54162184449, + 102105.35380535477, + 101884.12289507367, + 102089.16961632067, + 100813.5137450206, + 100679.36722813868, + 100865.96671772173, + 100360.08398611244, + 100417.8409414628, + 102503.96297081048, + 102361.26354264608, + 102361.61563848036, + 102447.4628204767, + 102089.33611078521, + 100199.38989250545, + 100378.98935340745, + 100003.95047136398, + 99967.22110128611, + 100086.45963356196, + 99878.95454371617, + 100123.24005124219, + 100049.4088958235, + 100174.70969881222, + 99963.18628188736, + 100072.569476962, + 100052.61467437836, + 100107.50881085078, + 100081.03971028964, + 100062.94225538117, + 100062.83649537648, + 100016.80639456735, + 100176.00446974729, + 100061.81776244742, + 100094.30522647932, + 99925.05483366393, + 100241.64041136006, + 102374.89899726883, + 102326.17920087215, + 102040.19185746327, + 102044.87477390302, + 102681.04976482222, + 102708.80667103664, + 102746.23300112753, + 102779.2332887374, + 102769.97593312086, + 102646.19294310108, + 102704.66675675161, + 102237.36466432676, + 100342.08799841997, + 100335.85997077923, + 100223.83301915645, + 102692.31405608842, + 102579.10480518742, + 102525.51969078122, + 102647.6977664583, + 102438.98054800251, + 102109.63915621935, + 100927.9651385238, + 100680.80099572752, + 100800.39718183145, + 101086.82262158477, + 100998.98327044309, + 100845.09419351183, + 101033.30132867355, + 101097.27054992382, + 100893.79932863965, + 100948.55715984435, + 100972.4639411515, + 101060.94351000125, + 100955.43618464691, + 101021.96758872966, + 100931.19533174056, + 101026.39648026331, + 100960.26564636652, + 100884.82814455178, + 101056.54576635997, + 101004.07943332818, + 101086.33472233359, + 101074.00311444225, + 100955.59770470153, + 100985.08882280662, + 102345.30775637389, + 102360.48782179103, + 102158.60557313335, + 102239.22675177707, + 101086.89222661091, + 101038.90054617883, + 101062.66465869642, + 101114.80968133733, + 101978.09520389797, + 102012.27612347057, + 102119.8001668184, + 102146.32891249588, + 102110.89458927693, + 102012.93262592147, + 102027.32069496305, + 101009.39541248594, + 101005.45701984284, + 101317.20118670381, + 102472.85417684923, + 102486.73414419277, + 102441.4595203972, + 101991.62025209401, + 100903.69339707514, + 102484.69136668938, + 102403.0980081417, + 102427.6128384684, + 102361.88691559348, + 101909.83952413945, + 102131.74303744955, + 102301.49116759682, + 101794.82512531827, + 102311.66790009006, + 102102.30008742088, + 103679.83752006112, + 103691.81173829258, + 103615.98109999106, + 102175.9296900868, + 102319.2367968909, + 101910.31769046403, + 99855.59269539596, + 98518.94253675062, + 98978.20058631645, + 98608.15016492098, + 99439.56645918118, + 99766.19705816366, + 99793.00774291946, + 99544.7067431413, + 99597.22180864953, + 99652.00107522465, + 98629.06194375621, + 97236.38714706122, + 96774.27151536841, + 97373.43174560844, + 97337.73716817379, + 97270.4959860881, + 96778.97067219901, + 97280.19761067317, + 97564.18875675717, + 97262.69730354023, + 97291.68899181754, + 97322.34378993233, + 97384.02435958975, + 97411.59609787649, + 98328.13162079666, + 99088.98463223837, + 99275.53523335142, + 99323.60015745301, + 99346.175304721, + 98634.55621819719, + 98380.41809928608, + 98866.71537147863, + 98448.21242713043, + 99378.38433540135, + 99352.75585645964, + 99225.4877064742, + 99418.16866483733, + 99430.27884390537, + 99480.31439861133, + 99349.43583085632, + 99353.08989464479, + 98534.36395672044, + 99310.86447736768, + 99249.28903447703, + 99379.08345923015, + 99418.72251871403, + 99307.44341004237, + 99467.36470738356, + 99358.52710365926, + 99463.08823462212, + 99265.10686255786, + 99533.1090051132, + 99430.735616467, + 99412.77834028199, + 99265.42166951722, + 99397.0822658798, + 99359.96988171423, + 99232.57690378158, + 99357.18200421888, + 99521.77955609749, + 99312.31898186129, + 99329.83088819458, + 99324.19866222715, + 99203.5119953795, + 99449.90457211129, + 99463.59916379068, + 99336.20831706232, + 99349.75794681006, + 99502.02039728625, + 99393.14025308313, + 99317.14667566899, + 99213.54020433339, + 99272.36238573091, + 99503.60977650297, + 99272.71339872474, + 99184.35722457996, + 99448.69160046501, + 99474.5870906059, + 99434.97853800446, + 99483.7099392884, + 99270.32006106859, + 99471.18560763983, + 99306.12541877851, + 99551.20671595355, + 99406.92829413555, + 99291.30004253573, + 99374.96501653186, + 99442.85276686755, + 99315.38055521878, + 99276.09987661881, + 99390.52362469089, + 99423.5922830648, + 99354.83844456464, + 99215.2926091783, + 99386.53496947915, + 99528.67144569101, + 99269.65052503442, + 99369.25845492617, + 99387.60981991838, + 99477.98145048507, + 99245.2361239818, + 99213.53053314565, + 99215.12918935942, + 99319.8835983256, + 99540.71579349438, + 99410.73623499194, + 99410.99468459656, + 99314.44014947582, + 99403.7799505777, + 99190.33807993686, + 99451.07278195309, + 99497.45055468047, + 97941.62052389975, + 98042.89559128795, + 97252.23165797428, + 97256.71452773576, + 97717.6450930688, + 98999.07214531254, + 98973.05295831346, + 99054.82425526633, + 98044.04752415298, + 97958.60518554217, + 97684.02089780879, + 97530.79165170861, + 97661.53871495918, + 97082.40295944159, + 97355.44513416784, + 97152.47967070663, + 97551.97133100245, + 97406.15468225554, + 96899.77531401117, + 97488.50879118062, + 97695.66405931095, + 97133.66523509301, + 97654.87379319927, + 97567.76393513489, + 97515.78251525074, + 98015.71454165311, + 98011.00513967639, + 97926.2588824606, + 98011.29610271553, + 98685.42661265582, + 98569.01114962301, + 98455.53829158633, + 98168.86432508277, + 98182.35396401546, + 98033.33645324146, + 98122.06197821422, + 98145.7408507303, + 97958.45417367462, + 97944.8447446344, + 97976.78427151311, + 98064.3325515416, + 98166.05557341201, + 98143.58155422434, + 98079.41947586637, + 97816.29128765412, + 97891.037149568, + 99467.37211095681, + 99465.10355574, + 99274.13613058651, + 98616.56911567338, + 98560.90805367962, + 98558.38609458414, + 98880.98424546431, + 100397.5383419908, + 100402.68978541685, + 100405.17286216993, + 100061.66712015377, + 100531.61939659539, + 100404.30916741672, + 100319.7606909308, + 100407.52446892252, + 100377.95870123856, + 100091.88539430087, + 100272.25022775182, + 100099.74666749846, + 100436.44960338628, + 100341.95706435903, + 100063.71730651654, + 97038.13042712578, + 99128.65672613026, + 99086.92050953522, + 98854.21422872371, + 98753.69995678449, + 98539.2421167469, + 98549.21922950738, + 98660.85685852663, + 98707.72105670594, + 98674.46581814122, + 98338.92014174488, + 98777.20226620481, + 98593.35045327418, + 98858.43542229797, + 99194.76613677801, + 99238.598665245, + 99141.45631430278, + 99134.6825716299, + 99094.27600200707, + 98811.10588893853, + 98843.48167264217, + 98657.83374209405, + 98842.07415652029, + 98808.61446596768, + 98331.12197959317, + 96974.21051137756, + 97630.01658930292, + 96729.15577103519, + 96683.62819879764, + 96749.40914201127, + 96427.63029291548, + 96556.50208945356, + 96476.47729265835, + 96690.58990713069, + 96682.63202971622, + 96653.2046434958, + 96758.39730707722, + 96298.39834593558, + 96619.23739357965, + 96582.497731417, + 96823.69736253725, + 98838.92697965828, + 98813.35123913873, + 98939.02464143044, + 99680.868715288, + 99638.52780788013, + 99963.33470263422, + 98861.65395145089, + 98776.13812199206, + 99095.76812778092, + 100018.2529981147, + 99900.62820788269, + 98521.7351726817, + 98519.99346824022, + 98584.58084122544, + 100138.75423323698, + 100090.19575634002, + 98926.99585752713, + 99231.54971618211, + 98725.93395914823, + 99114.81760073986, + 99045.63820710068, + 99468.37618059154, + 99177.3613555299, + 98988.53553480796, + 100522.9307233778, + 100464.55461316847, + 100449.40777875896, + 100495.63241925946, + 100576.36749710432, + 100455.6413624251, + 100525.73188351096, + 100351.79368494135, + 100476.8920067561, + 100427.28950578252, + 98769.78629555774, + 98770.78359572044, + 98068.38917637721, + 98746.9346100943, + 98699.80357689559, + 98826.116121155, + 98799.14209262622, + 98725.28103778043, + 98787.95269882937, + 98129.7525732422, + 98403.21551613676, + 98151.80634944019, + 97189.75008136328, + 97327.96341535875, + 97292.96960541717, + 97276.7637530654, + 96579.02120154037, + 96667.30159934703, + 96523.83444580324, + 96601.08098118886, + 96236.40087597791, + 96907.29475216444, + 96790.16254788224, + 96760.16114880143, + 96793.1547839298, + 96842.40378280648, + 96818.91536222614, + 98461.43619215692, + 98969.8900532446, + 98952.25912959375, + 98580.65213422495, + 97141.36470938755, + 98095.02656369311, + 97617.95626612005, + 97665.4420007734, + 97481.78136987441, + 97127.93819900935, + 97221.84975595506, + 97516.68785216649, + 97585.7108158271, + 97957.26827753473, + 97968.93352559829, + 97264.96842755843, + 98299.92048938914, + 99305.95497196195, + 93512.0665150006, + 93468.51530246586, + 91029.6718792886, + 93426.45832585903, + 91037.1098997176, + 98242.79590727984, + 97462.89725909327, + 97456.2056098314, + 98433.14621035084, + 98477.429727746, + 98538.82780358141, + 98375.01487679547, + 98416.20709657238, + 98325.44484999502, + 98375.97684548568, + 98682.66165069364, + 98525.56000149965, + 98534.19792713977, + 98503.47469608205, + 98474.2557014724, + 98279.5985168257, + 97624.27677318298, + 97802.02757327574, + 97742.78747464505, + 97756.40467231974, + 97757.15441742557, + 97763.11112414948, + 97632.86870117598, + 97548.50753261574, + 97550.14905081774, + 97702.15796126818, + 97668.33495977538, + 97591.06376324758, + 97578.69930046126, + 97852.61077277781, + 97880.34737144559, + 97861.94027265099, + 97853.43014004357, + 97905.97332804937, + 97511.90340028529, + 97451.31724560489, + 99037.5226338215, + 100727.75513265263, + 100750.1025781271, + 100687.04963334247, + 100602.82413484645, + 100640.07222561758, + 100255.5576926834, + 99740.00115531619, + 100701.21851963115, + 100775.90866047998, + 100801.37971775861, + 100846.7632036239, + 100839.18720467621, + 100901.78826113316, + 97229.1829487141, + 97839.59876865869, + 97910.66450289705, + 98039.3188920253, + 97934.20656019785, + 97891.53141790035, + 98026.30394341591, + 98087.87224633229, + 97950.34128723628, + 98003.43954283377, + 97956.48157305346, + 98065.65357283973, + 98003.37029682676, + 98058.47170369046, + 98005.49620436512, + 99320.77326235635, + 98557.66658610443, + 98082.7411356652, + 98154.79026285015, + 98056.63600860414, + 98887.5178660438, + 98858.33028971287, + 98814.80490784877, + 98801.02414722591, + 98561.74883562999, + 98550.27263705501, + 98534.96076552787, + 98475.56960112561, + 98680.67319796431, + 98762.74855690046, + 99810.55530468805, + 98806.04554028373, + 98848.42698144261, + 98857.8438649981, + 98852.46109769984, + 98865.24822179487, + 98812.89064703413, + 98862.90020767787, + 98912.2032568487, + 98848.37039474472, + 98927.63991134016, + 98871.604415136, + 98590.82216815953, + 98580.43638270833, + 98576.02995710363, + 99183.69321269826, + 99184.45845454505, + 99203.41993384891, + 99138.15878651995, + 99087.05635140055, + 99077.1384967604, + 99232.24004132024, + 99125.68851110415, + 99251.01558609436, + 99179.65212891849, + 99256.69258645491, + 99310.08167305635, + 99356.00094070661, + 99276.65181129325, + 99384.78207485296, + 99335.96076485507, + 99296.20265730387, + 99213.97061960657, + 98964.38050539838, + 98965.82200587254, + 99044.8950183139, + 99100.15481263316, + 99075.39447626255, + 99003.3483507825, + 98925.76540962922, + 99020.01817893048, + 97407.28894967055, + 96098.29296669562, + 95976.09403074846, + 96042.6556096919, + 98812.20854097081, + 98743.59086221435, + 98698.0390158326, + 98395.64092112977, + 99111.66394753019, + 99274.85653841426, + 98707.12897134296, + 98672.40559262648, + 98740.33441798067, + 97915.07564498202, + 97854.3706268973, + 97779.51858962477, + 98580.6830473668, + 98706.46663611768, + 98640.08887323189, + 98958.9528701298, + 98946.07821880339, + 98660.70375119649, + 98701.649867651, + 98748.18261153143, + 98769.34553580024, + 98811.9140649854, + 98763.92551654496, + 98943.77117264194, + 98920.62609439224, + 98965.91211265045, + 99052.24477125063, + 99044.50329098791, + 99032.0128001208, + 99017.68748657264, + 98920.27979214246, + 98997.79724083436, + 98048.50795422566, + 98136.90529710805, + 98100.62435260214, + 98171.72774331711, + 98063.40476674002, + 97962.8529627224, + 97088.36103582702, + 97132.34495519406, + 97104.45756857881, + 96664.92235510008, + 96821.97556877533, + 96897.6332798164, + 96990.68878793032, + 97838.15687650762, + 97840.98673438343, + 97860.03824334558, + 98113.9638494234, + 97039.67013502431, + 96492.5609236822, + 96615.15999672425, + 96528.33063667924, + 96614.04896619167, + 96775.60254599106, + 96785.05589602233, + 96813.96810061809, + 97041.31823044339, + 96562.25821519687, + 96460.68693276949, + 96650.20758230845, + 96694.63413088757, + 97825.46025079563, + 97882.40005223262, + 96674.56656020731, + 96567.52080584335, + 96473.61402662427, + 96563.17797498858, + 96487.03219794935, + 96606.19908924971, + 96745.48639039516, + 96395.4047179211, + 97145.64717006857, + 97826.8631013778, + 96850.70696827324, + 96914.37666890645, + 96353.01468538467, + 96501.80370280289, + 96513.42435181382, + 96529.07020886255, + 97870.69758646561, + 97980.44692218993, + 96494.53387742698, + 96671.430711433, + 96761.68518269938, + 96719.41280916671, + 96550.26834448069, + 97918.02611502612, + 98643.83720148244, + 97960.90157310556, + 98153.28211258577, + 98122.79057084915, + 98078.02055378513, + 97988.49066071308, + 98115.16651510971, + 98104.82634322677, + 98205.6244883252, + 98133.92087625408, + 98052.39180433995, + 98186.92871996413, + 98222.49612544493, + 98264.92512138016, + 98221.83205647097, + 98066.64128360373, + 98155.19067500987, + 98034.10447834089, + 98200.28996843542, + 98087.54079911893, + 97990.12664870804, + 98120.04312787396, + 98163.7446629629, + 97974.17413359083, + 98088.95408705338, + 98156.57677246204, + 98080.18500654254, + 97487.01075638118, + 96789.66261350742, + 96730.73981449436, + 96669.89538879196, + 97293.59562630084, + 97174.16332095799, + 96017.05902387391, + 95880.10041446517, + 96042.6924533272, + 95941.86961688883, + 95961.65877852618, + 97833.49395811494, + 97769.6545141948, + 97689.04199438865, + 97742.3298744743, + 97690.73748476274, + 97719.11017016157, + 97819.75167904481, + 97794.19742949636, + 97784.48324520058, + 97674.59282702129, + 97879.59554121646, + 97385.40579970718, + 97307.86343808395, + 97387.94072486232, + 99393.56887338916, + 99259.21726110313, + 99247.96158297804, + 100188.32724919924, + 100135.68904443846, + 100098.24757711026, + 100206.52451144153, + 100008.5242363836, + 100023.04349004387, + 99915.71669982743, + 99634.45747805986, + 99276.13363968547, + 99418.78774585869, + 99721.65602004208, + 99821.52193102303, + 99782.84167263377, + 100072.59807186079, + 100035.70914567317, + 100138.27133994643, + 100117.7864666539, + 100090.44891664409, + 100148.86556864316, + 99244.03843365682, + 99283.19337789025, + 99220.99777236252, + 99230.95664968503, + 99169.12469268014, + 99164.44549248519, + 100358.34371105966, + 100290.3042284984, + 100340.75858714842, + 101792.84162073708, + 101761.83228399587, + 101728.54900723274, + 101863.51123341605, + 101791.94014384845, + 101799.15202304373, + 101713.12879362177, + 101785.2180011013, + 101729.0076770661, + 101836.91173085483, + 101818.8515335007, + 100033.99626853142, + 100056.8272847258, + 100210.20674841575, + 99041.75843858132, + 98943.79559667868, + 99197.38567357122, + 99167.98965627975, + 99277.40202349014, + 99119.8302296543, + 99163.87627855373, + 99243.18112052011, + 100381.5590275909, + 100259.89095200166, + 100662.41576920166, + 100337.12642639093, + 100250.649651169, + 100190.16929326992, + 100223.74470405089, + 100340.9819908014, + 100273.38677134522, + 100527.79988951613, + 100245.97642650244, + 100375.27221342435, + 100149.25456405795, + 100360.87356998086, + 100194.58359036756, + 100264.94556360798, + 100306.31112448443, + 100355.36974381156, + 100212.88630816322, + 100290.39422073738, + 100350.59535010663, + 100165.59976549802, + 100315.7960592362, + 100567.69227692556, + 100536.39347136863, + 100383.79630149792, + 100199.17691599797, + 100338.69278423514, + 100271.61413440437, + 100247.40805045809, + 100338.62291364912, + 100211.53726164077, + 100322.38298891425, + 100100.20675579492, + 100315.47955652213, + 100216.33192664117, + 100305.27486562256, + 96639.67658830492, + 96484.06922913101, + 96407.77425144732, + 96477.97537890695, + 96615.45058048039, + 96637.18040938227, + 96445.97001463277, + 96442.19223447616, + 96513.66255512048, + 96476.07063939855, + 96494.88439651101, + 96530.70788196326, + 96552.93796653328, + 96499.0101680733, + 97430.88450662757, + 97388.70330978224, + 97514.10936096587, + 96153.0643515696, + 95992.76643803087, + 98037.94363845246, + 97758.7792343351, + 97924.22096734567, + 97869.90224058629, + 97598.62515358592, + 97513.94954233654, + 97646.31748849346, + 97641.97081789764, + 97666.59449828726, + 97602.85068296298, + 97598.68612452112, + 97507.23992229323, + 97525.14675514927, + 97666.02806304352, + 97650.998850365, + 97694.2160645586, + 97526.99989056711, + 97615.33596390781, + 97568.00795796615, + 97487.47775279515, + 97609.02859822716, + 97572.83663061078, + 99592.54688001878, + 99517.07966370584, + 99448.41927271156, + 99589.72130527606, + 99486.45689499842, + 99633.35691037332, + 98792.27822179062, + 99298.84335251687, + 99373.75997603334, + 99966.96381501803, + 99846.93713129792, + 88005.39501412887, + 88221.67985851956, + 88072.43363114585, + 88237.96933675258, + 88133.87820323496, + 87861.16765307833, + 88044.20014226538, + 88015.28821551744, + 87995.2188458752, + 87896.16014075337, + 88048.98798497369, + 87911.3761076322, + 88036.32356842181, + 88065.09753717842, + 88214.29095123295, + 87975.3434675614, + 87949.43781862337, + 88083.67915939626, + 88158.44431618885, + 87948.66838341518, + 87939.92779797339, + 88143.70730471626, + 87928.63944883185, + 87987.0677224219, + 88052.04997633191, + 88073.48466074695, + 88174.19889504618, + 88032.3701422123, + 88091.77158766096, + 88010.18942416027, + 88115.8447964154, + 87883.47843097824, + 88004.3574220565, + 87867.93517461464, + 87061.20940616545, + 88117.88520562027, + 87891.6635003915, + 88163.4850022418, + 88041.55582208642, + 87995.77155911438, + 88256.28979169391, + 87931.70512781639, + 88089.06754806396, + 87920.82827675848, + 88062.01682071644, + 87950.93430502362, + 88039.48618979446, + 87917.14077060764, + 87875.51543171445, + 87920.69502777123, + 88037.67214329758, + 88053.62636213166, + 87994.84521056418, + 88204.37990451731, + 88198.16168147081, + 87899.36719419197, + 87868.04422265603, + 87756.60468171052, + 87977.89446006849, + 88018.06263107814, + 88175.87859466553, + 87908.9091473079, + 88066.92995974339, + 87947.19715900774, + 88139.6579294049, + 87959.87525816729, + 87893.19707276371, + 88152.20646040382, + 88083.14494732753, + 88230.25871974292, + 87950.88841137299, + 88089.31618178032, + 88005.21804614809, + 87945.58722002029, + 88191.87494491128, + 87898.24283727448, + 88093.20221250107, + 88014.37416969781, + 88132.49377530353, + 88274.88910994626, + 88020.02004119602, + 87977.21260381762, + 88071.22783884605, + 87979.30536450844, + 88132.99064196317, + 88075.30778368968, + 87515.23612648762, + 88112.44158066339, + 87997.31100720952, + 88205.36796568194, + 88244.89577094054, + 88118.88901387733, + 88170.02127686414, + 88122.48677544181, + 87836.350717135, + 88188.31541444028, + 88181.35353825515, + 88029.75270585327, + 88055.3210429841, + 87486.18502347278, + 88169.49888342613, + 87912.05340361188, + 88114.60799674282, + 88030.32446441583, + 87988.09892554887, + 87936.39332619171, + 88114.46908342814, + 88116.38592969814, + 87831.96710060169, + 87973.10937146156, + 87997.70702987113, + 88086.23100935988, + 87992.90727468063, + 87971.16697325518, + 87985.41310963874, + 88090.43562993355, + 88143.62371120854, + 88035.58336234222, + 88075.61019283785, + 94943.83700356272, + 95818.53001808233, + 96045.66684685949, + 95969.1256184073, + 96013.81260119048, + 96042.74026637044, + 95968.80222215265, + 95912.47979836861, + 95925.66592354236, + 95936.78246887373, + 95889.97314488533, + 95978.73409728472, + 95867.87958002836, + 96017.35327396306, + 96248.76337904352, + 96135.22740085266, + 95288.7583767709, + 95940.42592069102, + 96031.3795211209, + 94069.03735918325, + 94009.56158523318, + 94130.04763539109, + 95731.12015912194, + 95616.0407219737, + 95659.6018735391, + 95678.62819334009, + 95781.78664237607, + 95577.34405122125, + 95655.75208549788, + 95710.76531338083, + 95799.27305372994, + 95306.53646843051, + 95339.84556579817, + 100452.52175447682, + 100508.74664244991, + 99417.06942940914, + 99490.48077246742, + 101263.5858464501, + 101294.76632948937, + 101162.83347248544, + 101321.38820055868, + 101189.73696638984, + 101276.19421116, + 101215.22740740502, + 101132.68859257287, + 101231.96182220083, + 101113.69616196322, + 101202.08234411357, + 101323.03686175268, + 101302.71586201976, + 101208.71003175106, + 101165.55850365866, + 101249.63872563199, + 101225.01239942892, + 101148.34414742448, + 99696.20174737588, + 99613.57523791396, + 99631.65790217281, + 99680.51394878581, + 99522.55089557452, + 99666.63776945528, + 99713.66464718881, + 99549.22834567956, + 99527.88570730339, + 97989.10101650721, + 97708.58185165055, + 98480.26982394698, + 98370.33853712298, + 98255.74444021816, + 98408.56530732088, + 98320.44328914571, + 100450.95558034207, + 100480.82034926659, + 100480.49092912518, + 100580.56121342597, + 100380.95102466598, + 100498.70305671386, + 100425.06940729756, + 100647.00721589438, + 100589.5479287922, + 100585.4129716198, + 100545.35934978107, + 99316.61246387733, + 99215.94068343456, + 100901.46988766377, + 100967.34161974456, + 101607.11660507972, + 101488.02083832397, + 101538.43241360724, + 101571.4209728939, + 101614.60294862564, + 101543.98807230422, + 100140.2110009592, + 99781.65659298775, + 99630.32221252672, + 99736.34284897555, + 99939.68816469236, + 99738.68447975624, + 100756.1343307411, + 100435.24947529356, + 100910.8664332588, + 100677.72714984877, + 100735.90159757144, + 100826.9420164402, + 100347.59604666795, + 100724.62664190622, + 100800.28375220715, + 99958.28802683057, + 100223.51578710719, + 100030.03728774759, + 100255.25301069795, + 100097.64817745179, + 100070.27980833458, + 99496.54217956355, + 99834.26311033826, + 99649.46419121683, + 99704.24505410295, + 98099.14976704735, + 97992.47106040179, + 99172.12620844663, + 99263.51330746185, + 99164.85920947728, + 99302.85767182164, + 99237.92705301281, + 99353.20063443409, + 99422.72710447569, + 99530.40062035782, + 99623.09686400622, + 102262.73637918029, + 101096.52251097043, + 100900.72710750607, + 100854.58788568957, + 100930.54410580952, + 100881.30772525753, + 101046.55638829275, + 100950.10071476863, + 100905.34579135245, + 101004.70055184087, + 100970.51780212278, + 99071.91798559703, + 100230.94866376575, + 100247.6955386029, + 100336.54641164783, + 100286.23206476576, + 100288.19672372109, + 99946.65854951633, + 98382.05092138954, + 98149.46450257779, + 98195.77272004819, + 98469.92455216771, + 99851.71491845028, + 100095.6614984881, + 99692.3706968398, + 100082.91108254869, + 99804.15557625018, + 99448.71921839722, + 99060.25043722533, + 99023.27650875496, + 99297.5702546631, + 99294.36932291552, + 99179.30995275112, + 100045.4718399428, + 99991.84217198574, + 100144.94289097113, + 100186.88672513781, + 99999.259001288, + 100029.53100660541, + 99983.89846345481, + 100070.04335012313, + 99963.84228945826, + 100154.95560200007, + 100126.49383112307, + 100184.79366257432, + 100095.9453059413, + 99972.532450601, + 99935.32617481564, + 100054.72761578535, + 100167.54861806809, + 100268.01014641963, + 100065.78360368013, + 99954.27857977797, + 100300.23650300906, + 100047.57660412931, + 99960.71023235824, + 99469.40839036046, + 99742.61436390011, + 99787.61466225835, + 99752.65287057367, + 99667.34686788224, + 99662.1015345583, + 99902.68854543792, + 99569.89208691959, + 99820.02624163267, + 99638.83452551358, + 99711.04801908563, + 99637.2394192473, + 99670.90654530568, + 99871.95762795635, + 99867.06009800416, + 99773.13365021958, + 99788.04993321348, + 100886.59644421024, + 100617.57692160354, + 97354.40959148448, + 97308.04795724564, + 99946.82760551533, + 99861.30129865861, + 99854.73519886057, + 99876.79834798473, + 99825.5809352925, + 99696.4776935133, + 99449.32982858743, + 100146.45911618347, + 100194.34609094857, + 100236.08045057741, + 100318.10888305007, + 100414.29908033357, + 100954.21212780282, + 100854.71599889648, + 100715.77423406432, + 100938.47273980454, + 100740.51816279993, + 100647.85842417844, + 100675.59804321895, + 100680.18671105271, + 100609.66249449608, + 102544.79556060483, + 102217.36666847287, + 102521.74551958093, + 101588.4570754577, + 101596.86944416925, + 101518.34662372227, + 101870.12225865177, + 101800.1352857561, + 101817.25828775382, + 101888.27034944776, + 100627.40352162097, + 100568.88671127104, + 100529.03073101211, + 101462.26776524783, + 101562.10256227688, + 99808.65192178015, + 99595.46430131905, + 99627.98538427509, + 99554.67141647628, + 99753.56979486135, + 99620.77161459692, + 100288.64924019997, + 100073.37253120718, + 100257.14036743405, + 98443.42888803613, + 98504.51157473968, + 98381.06197054817, + 100277.45944226006, + 102041.9705971981, + 102065.42302869826, + 96140.80721502517, + 96732.12162014724, + 96807.24936764163, + 98966.24498506205, + 99285.4906673645, + 96696.72791352752, + 102774.85126684737, + 102763.62240036845, + 102753.86799097287, + 102900.43476422675, + 102939.9486939862, + 102869.11973290454, + 102835.06492486139, + 102797.26240935021, + 102983.62389345889, + 102888.1607695238, + 102858.79048659823, + 102803.82818927991, + 102610.83531896502, + 102890.71599205933, + 102924.12080650972, + 102738.0755445841, + 102859.05034614111, + 102829.27652840661, + 102718.75129913565, + 102904.49581769775, + 102836.15547996153, + 102865.36924499608, + 102930.443259606, + 102806.54367917038, + 102659.10548567928, + 102970.78003743586, + 102763.33394570912, + 102977.66845606956, + 102860.55045390091, + 102980.65396752457, + 102843.42070993401, + 102828.80242806238, + 102785.4793679961, + 102950.45484180044, + 102881.80029360467, + 102698.37186316603, + 103114.51441301465, + 102907.02355996634, + 102915.12131220687, + 102757.81028208174, + 102903.34874311111, + 102698.37513516098, + 102803.12747255337, + 102698.7329379008, + 102785.12283960356, + 103114.84536767862, + 103015.27081336587, + 102767.34552296864, + 102676.11743571368, + 102768.67006444198, + 102732.01298329032, + 102964.4387673357, + 102978.49762423344, + 102709.19849968472, + 102871.27974551258, + 102802.73046718207, + 102833.28125282656, + 102912.49881841196, + 102824.49834513121, + 102850.44795050252, + 102910.71632423713, + 100168.92190700649, + 100060.87608646908, + 100195.98005392331, + 100232.07739882938, + 100140.5345373613, + 100231.8212248547, + 100120.00974518096, + 99706.26075690931, + 99648.48429705722, + 98999.90695568817, + 99298.58296128808, + 99345.00160357062, + 98979.39440657692, + 98865.98020761501, + 98836.74859736628, + 98848.63298920334, + 98970.52960408649, + 99411.64293529403, + 99438.0742810684, + 98215.40985722737, + 99972.74540205879, + 99931.27630633158, + 99804.55441106777, + 99656.82244812195, + 97650.23041136506, + 97618.76347699384, + 97524.30567878918, + 97579.76275824622, + 97515.47048470171, + 95421.28692426691, + 95460.4484609827, + 95525.97848344142, + 99961.60534852691, + 99989.35584080167, + 99903.53901231757, + 99773.8565122577, + 99636.19206865072, + 99784.77259622097, + 99779.47732732524, + 99727.4746257999 + ], + "y": [ + -841989.31294275, + -775095.2833023075, + -623621.8672748602, + -508933.80539782916, + -561971.2488781825, + -785168.8110406864, + 438056.862237691, + -427115.71569997055, + -459779.53796019853, + 796480.9210348161, + 16228.446847255995, + -10117.113578631543, + -53631.432702805796, + 831976.0985445925, + 774172.9920404115, + 159844.88204567993, + -6243.166011681511, + -521021.30094780907, + 694713.1899190526, + -910162.6660223072, + -774909.9996208384, + 320117.776495078, + -547323.1177429256, + 654473.3768154809, + -554026.6105989073, + 40335.22057385208, + 135508.08662869086, + -279877.61613975046, + 585072.4377650085, + 405049.85986093513, + 232440.3037218077, + -25362.31872866912, + -248481.98492127337, + -560953.9048498886, + 485941.3956374863, + -519433.26064300345, + 184701.89774695545, + 893827.7421553927, + -828817.328114863, + 750487.891196061, + 508993.2816321345, + 540210.7149106248, + -373173.5110220982, + -303596.317152965, + 522818.3144789189, + 414595.30767788057, + 19484.603545775193, + -461024.5494484895, + -47611.78987915504, + 88180.55865862906, + 988228.6950640721, + 357677.7559037796, + 121526.15548473045, + 698793.2608907002, + -487152.4830132172, + -955940.2429958172, + -701703.5223337576, + 229654.94053449653, + 513842.68831132515, + -395110.0598072463, + 257602.165830513, + 121612.0765485973, + 406139.1365539877, + 873399.66086256, + 948537.932093139, + 925076.9258288649, + -94842.01072127352, + -172396.12733221232, + 160389.7146379405, + -373730.5674296345, + 505960.80348878325, + -62591.644013108904, + 722670.2405123094, + -729278.0097360006, + -884989.3737237633, + 5179.2626380713355, + 701035.689142802, + 499722.50452963763, + 106126.88316707186, + -820824.4388997552, + 928534.9602815487, + 218781.86384893983, + 11373.293613078373, + 41947.26905584045, + 425564.55518506933, + -285905.4255897964, + -144410.63028630795, + -740040.9963485603, + -492289.95560486434, + -191699.3365552453, + 970316.6821376963, + -838140.8058459905, + -466086.6372245687, + 786495.8184204455, + -136641.84111491195, + 551026.796179372, + -118245.65945172361, + -429303.758173051, + 289274.8799673728, + 370829.5671062389, + 112566.34725016635, + 938564.7538542207, + -458932.0946854003, + -112653.8955686256, + 887022.3671904237, + -979024.3953836804, + 935855.7791733175, + 392777.02472150634, + -634539.2530658016, + -733324.4431803057, + -721643.7739481903, + 227876.3792840539, + -232102.3256213983, + -971248.6088668206, + 715376.7179565134, + 959367.4194005737, + -373546.1317002338, + -700231.0711965273, + -963576.0897303212, + -278579.9440264758, + 100376.22156342186, + -326112.20207237767, + 981521.6684350774, + -482595.47826915927, + 648660.3447864088, + 843644.3832424028, + 732209.4835010477, + -153041.8691462083, + -599028.9563257105, + -296776.4651412641, + 859557.5830612996, + 965780.9909117548, + -63516.7902884326, + 477161.9168648309, + -940358.2636980952, + -632418.384718779, + -365382.38695398584, + -239563.19322688025, + -239304.6913621528, + 432969.83003249887, + -615440.0230895698, + -554931.4032421844, + 896897.3146678181, + -346647.9730130474, + 64189.91681325048, + -38732.925036637054, + -537662.0371003775, + 966495.4235025916, + 969717.6194514378, + 783870.0048633596, + -74587.61620013266, + 831651.3050455592, + -34707.954877353455, + 132464.72896881544, + 244292.06611394117, + -723699.6589583688, + -289391.2403450825, + 382873.505401377, + -182000.41286751878, + 714299.0223519965, + 26156.182082637035, + 294215.4611805308, + 200268.81118485073, + -640258.5646004735, + -807273.5584057267, + 45655.76911556612, + -792789.8279053174, + 101492.81294258627, + -146176.85529026692, + -30810.42899432007, + 435382.93784721714, + -322459.2340622958, + -174970.74177023242, + 26905.66458774213, + -947156.7174291624, + 548994.2918747881, + -830265.2484131423, + -80771.06041622107, + 933396.9389264802, + -298576.4863351168, + 981905.2432800552, + -386181.65959297324, + 672698.2694803685, + 269049.57331865886, + 82853.81087077859, + 867446.6458449088, + 730782.4794822566, + -730793.4428424267, + 636929.57350753, + 529693.9688298834, + -258215.03400263525, + -697221.9707553786, + 508239.4434232529, + -22932.213957937318, + -441964.9317826, + -487813.6298938742, + -354283.3441196564, + 596646.8317409, + 173346.7010389238, + -532732.7823888039, + 922786.3563789611, + -644701.2051098609, + 94435.49249267735, + -347927.73612048425, + -590558.1079634632, + 436659.297220233, + -123683.88473853997, + -688526.3661659575, + 316655.25208180136, + 916492.8733069033, + -384164.92908829, + 320792.0802057198, + 779329.0476945671, + 45889.27917682817, + -253784.5924087889, + -934164.0465042376, + -656028.3240911526, + 248447.30831388495, + -189224.20790707073, + 822378.6475941191, + -411076.1745670002, + 632391.1711196257, + 736518.2931963585, + -234070.1943759147, + -988385.3949405677, + -256534.5830081587, + -581501.1925851901, + 101762.26026891544, + -640495.1551968363, + -204040.0324043048, + 267036.07940844476, + 577995.7473875738, + -176993.74511697164, + 327564.2604767903, + 376214.41089156637, + -262351.8632592727, + 303277.8993777547, + 549892.402684508, + -44412.02884230089, + 541172.2541876618, + -871317.3856770733, + 569631.0496447363, + 576377.5612561785, + -957608.7704076947, + -773571.3315946127, + 79467.55808399919, + -592926.183109103, + -511913.7106276921, + -363660.75017817743, + 258840.60215001003, + 774502.1446493892, + 281063.3683157227, + 74526.5651385103, + -44382.38128250083, + 444682.40044604125, + 728585.773056967, + -299820.94540707394, + -852890.6146932214, + 163635.05716330896, + 910905.3678832464, + 648026.9528531422, + -257961.92877510114, + -19486.05532677794, + 140476.45945029764, + -303089.9316090217, + 702957.956639624, + 535360.6304546237, + -582178.1698576073, + -122981.7689829138, + 975052.8974165997, + -580163.7149676814, + -763095.0042941425, + -24819.552881023334, + -173346.57451710323, + -417201.7659561833, + 440051.72985487495, + 167007.07363240785, + 844123.2156411576, + -259445.79781511502, + -441582.8475081609, + -202506.6013903658, + -716399.6943027051, + 256931.79497122642, + 666829.5187873732, + -149172.65446396644, + 227772.45012929238, + -598982.9203597307, + 894017.2524725694, + 826749.0806877838, + 98101.3374158497, + -149638.04410942073, + 892984.7573596186, + -446380.38475321437, + 348686.85801109846, + 555197.2759476387, + 858631.2968465331, + -535266.8793977569, + 347729.6376490493, + 155824.0474256294, + 289323.7154408901, + 229215.98538537679, + -118967.65056689085, + 710262.5151851682, + -838054.4841425869, + -896069.0167068348, + 980573.850637422, + -951730.5169718482, + -972626.8602657677, + -540573.4524308392, + 362491.91229326796, + 739083.9627370343, + -875175.6763282787, + 761101.2880335036, + -542593.2626462264, + 653538.7381658673, + -41310.81616053112, + -140734.16671022752, + -276889.34631344833, + -789429.4666513097, + -969264.7181389591, + -199631.75714235005, + -899703.0741891128, + 767753.8548466698, + 11381.849727401639, + -597056.648969767, + -147378.84394593493, + -998483.13613964, + -634279.3874322197, + 471549.12624123367, + 37895.3198298011, + -521723.8195950371, + -436016.97311427223, + 833605.513880483, + 353085.1610704648, + -183570.00335379926, + -107725.31857915646, + 899733.8398479873, + -582787.3823669469, + -494752.4029342287, + 951061.619790907, + 892548.3513514869, + 943135.0387208643, + -392684.0079784355, + 277405.723798744, + 852722.9520124804, + -9577.618462380588, + -196380.71636330645, + -843456.7971308902, + 984973.4491142076, + -385401.5701649929, + 168756.03714719633, + -941058.7217523911, + 173992.82715078935, + -928462.3937940064, + -650586.8280954399, + -316288.188440164, + 424294.7417604994, + -138.98425530056713, + -488546.23140684003, + 718066.3755134307, + -329842.4340128823, + 859589.5780032114, + 900770.1960220302, + 325060.2886201035, + 848396.560279614, + 888292.8972825181, + 621808.7016435225, + -427243.4059970509, + 681698.0658289792, + -544882.6051615201, + -238668.58589913577, + 168749.41483386618, + -89607.81465368229, + -702869.8868079968, + 800160.8210043467, + -8911.961060123818, + 622638.0385672044, + -929952.2855720208, + -800941.8133173318, + 564903.2666182425, + -845799.5709180704, + 902372.4385321912, + -403349.64446440444, + 479812.5750510687, + 687313.4145299001, + 891543.560257879, + 309357.5824183621, + 875070.4434268685, + -851332.7030446829, + -152933.8315019162, + 94206.78527900539, + 349569.01094111404, + -533399.1458938323, + -397745.37628812244, + -484725.09919369535, + 144159.2999215613, + 694026.5122361657, + -882195.7653029837, + -254949.26705717092, + -462491.0589268401, + -430007.8911960938, + -536448.641531344, + -564353.4323777468, + 349059.9686039351, + -514225.7770431149, + 757689.3317536355, + 444122.59639426676, + -430408.69367142377, + 86268.5009564601, + -156068.9752368236, + -52730.798036135115, + -246207.73709491672, + 478973.0794877556, + 119281.5836990242, + 388189.0314436558, + -548820.6798487583, + -524230.97112853, + -17390.03349064716, + -791736.2387877613, + -249018.1239022182, + 425687.551390582, + 541551.3039466413, + 777474.9590574694, + -308779.8303713793, + -585205.0374690447, + -109038.59249090897, + -476955.21757166047, + 89599.82920407894, + 961579.467886285, + -202663.00039897067, + 40745.30815238342, + -984531.7167255103, + -972130.0647174548, + 273270.0597006592, + -599291.6704083991, + 750002.6005460201, + 756890.1641414585, + 264180.56110761315, + 804859.604823416, + -178356.25676065582, + 707865.61845407, + -119638.06642065445, + 896088.1357434693, + 764306.5082644378, + 738347.6293918168, + 676240.9125848004, + 298009.30941031687, + 735881.3147751786, + 876862.1278722695, + -996033.6480989374, + 960523.7131412292, + -380830.05584140925, + 166563.21910749128, + 534859.9422349943, + -132114.9342579806, + 80900.4134705249, + -579394.7183499117, + 819699.6980095763, + 386546.83880120324, + 821573.6475867204, + 981695.7421767967, + 614305.8973532458, + 77534.99257079021, + 626708.9342158604, + 952690.7658094943, + 116504.86283671646, + -420122.1368730317, + -538892.5293056685, + 171879.1916242357, + -584452.5975392128, + 573054.9331839461, + 884904.7618596369, + 72455.83117650512, + 829740.9884726934, + -331959.35190203565, + -428399.58301674377, + -679954.6677934721, + 84986.55436247282, + -490268.42281844106, + -763867.361534357, + -223739.6026945686, + 406002.0457023177, + 665655.8201887235, + -527494.4459784911, + 982085.9587471285, + -488694.0909168389, + -583140.1465101166, + 354225.66150667076, + 216506.6744153916, + 154619.27963724674, + 25136.598539379218, + 492489.28452569584, + -433884.56447279954, + 234279.8583667003, + -703929.9198451278, + 441346.21397511364, + 943963.3176441911, + -325456.00848321256, + 172395.02771845582, + 749192.7196467996, + 624359.6727765179, + 480229.27434392227, + -696677.5803865421, + 293712.9911647245, + 387741.5291431936, + -393729.73948702647, + 21266.019672495862, + 723937.979277689, + -232458.25080596138, + -387304.96830664296, + 2464.0321624218586, + -122681.34997729407, + -546694.4807160796, + -919715.6513476778, + -18247.514801625897, + 194804.46059409328, + 772791.1447093579, + 235715.32964076058, + -491094.78861466685, + 4389.73784561969, + 833497.7104795736, + 408212.97885851806, + 60087.40868944673, + -603153.4418319811, + 49207.25516157076, + -33771.355710310316, + 496911.4186762655, + 154504.9866469945, + -912578.2146259764, + -452817.84163980297, + -823375.6845463197, + -220228.04861147137, + -19009.048525427508, + 887978.6196577046, + -661416.3336804246, + -428227.62305677007, + -98018.59328603357, + 661880.6475154626, + -117998.84324321552, + -483940.39773233776, + 945279.7207307717, + 493187.76874040184, + -998343.7313215322, + 213652.26322442287, + 392420.49640112574, + -399813.58192147256, + 847862.16445857, + 252398.00249854306, + -684115.2014550567, + 764290.832324826, + -965373.510477915, + 366595.0386351318, + 549108.2103193712, + 478391.1169981494, + -477039.16144049476, + -66359.28264260315, + -666477.8792067101, + 927578.3245770739, + 223346.97203642075, + 417199.34494340996, + -588673.8683068216, + -579415.6741968989, + -326642.1044466499, + -650987.8956618933, + 7794.401001574247, + -692135.5560318063, + 862693.8081331758, + -737450.0551246805, + -475462.72028761625, + -878946.7812968763, + -960923.7018518934, + -309835.924111922, + -581931.2077126874, + -193151.43113910628, + -320810.1968006805, + 500517.2008975121, + 735584.2491990248, + 869357.6704794308, + 571406.0633091565, + -31191.862881997156, + -482301.2879788475, + -273644.2666449306, + -564572.1511337791, + -879096.8240374251, + 379673.6622571082, + 793099.5767054925, + -952798.8971456996, + -149710.44541620172, + 889595.896146304, + -102568.09583422144, + 762500.2191414066, + -22716.52292029125, + 136389.57166886012, + 266170.89144465566, + -826419.6040586666, + 646550.0102152668, + 84316.47222800476, + 380558.86255500093, + -66295.78751266396, + -320680.4303555664, + -161087.1510793015, + -245428.7859749458, + 863696.1061838248, + 418532.5789514507, + -361290.0378441568, + -819539.6921890886, + 192046.37210451692, + -751367.5420591463, + -735759.1562203469, + 724722.810501609, + -207066.86437837928, + -795145.3172717491, + -498759.0724904585, + 928584.7087924086, + 81570.77897059928, + 886515.2558534868, + 703933.813051105, + -759838.0592273521, + -922081.8135161714, + -132416.60859760086, + -218972.67346888926, + 13818.849598194349, + -913806.807334844, + 79464.11354751293, + 122637.11055587168, + 97597.4683300218, + -174625.63217878868, + 373394.38677931833, + -714996.4838749898, + 10252.349704644947, + -660680.6145188995, + -462110.3608096893, + 455892.6217447536, + -535112.677073226, + 3911.094098997037, + 72292.76301260934, + -90507.11688419111, + 378102.4269270648, + 966152.9417313348, + 79337.08644471959, + -50237.45464432694, + 564623.901389222, + 623939.0339062072, + 506867.44054355135, + -192296.55248183585, + -777596.2486685179, + 72739.48121619588, + -954970.2603642094, + -620853.2682690438, + 551182.2412351213, + -674019.7569945076, + 54784.03969693768, + -720095.8036049366, + 822138.64566469, + -47346.06044089551, + 62391.96068110253, + -875201.8303563707, + 967445.2806940004, + 958787.536150757, + -382108.9823580639, + 919189.2935045864, + -992345.9364680276, + 404723.2180889369, + 997213.669409986, + 952840.433231553, + 550710.7702603323, + 933319.8270814269, + -523305.0171275595, + 509566.2861527783, + 316096.2532068496, + -897669.6856093955, + -67566.3739176584, + -218590.26375370118, + 629055.0600847739, + -476273.1276913652, + -355544.32129848766, + -75823.76965706561, + -79758.51347698936, + -318771.349164201, + -625215.1530637145, + 375014.63923092704, + -338049.83702911227, + -244798.270919373, + -553806.0605058732, + -491426.49649520864, + -220221.85793093784, + 229679.68777632585, + -203202.8496723799, + 727580.7571288531, + 471484.1313835601, + 538581.6812406041, + 889486.0527244122, + -627652.7624554386, + 678974.6430273592, + 604703.2521112361, + 966498.0231884173, + 646535.0494848475, + 850385.1823211137, + -30617.184481109172, + 573036.1843657114, + -780642.6791009626, + -692731.8407902428, + -253511.70198395633, + -63923.52194272921, + 489281.1246976911, + 71974.61310020725, + 553815.2987792586, + -323135.21116795397, + 813510.8955703874, + -979571.5908281115, + 220563.890526426, + -134102.19614022932, + 479796.9444313115, + -864641.2507939684, + -470994.50507539365, + 732140.4368222537, + -992301.8822729974, + -419704.208904025, + -580527.2293163982, + 24394.25363660064, + 98269.37060043894, + -970829.4887846556, + -515101.155136761, + 693334.1676186498, + -532837.1019315652, + 312690.9817721462, + 94496.24908857013, + 789083.0129621236, + -871114.3760307438, + -779501.7598786278, + -114068.46116910873, + -53451.68392937527, + -589758.1704130357, + 192869.30876058683, + -42924.75634887327, + -794708.5843885579, + -924153.0319926756, + -288908.0632793164, + 376858.4882169239, + 249702.09713593672, + 8818.411749580424, + -805272.5958235402, + 572325.2596580883, + 128904.54596308776, + -188192.19126370922, + 806270.5669295674, + 136502.6693726241, + 127116.18728415664, + -351135.5082606136, + -929243.6389838627, + 190817.3862176308, + -45942.83334304072, + 380993.60744429234, + 963973.7162607927, + 476074.24726750236, + -288308.5317146299, + 416475.59817846667, + -462162.1689652695, + -689547.3493082294, + 843027.1883691631, + -794403.9911178367, + 612150.1382190977, + 3836.93751836911, + 60461.02823090482, + -75822.35864524622, + 383273.06434668775, + 549682.6323680055, + -595157.3190656254, + -304226.8823228318, + 358382.03894130484, + 292554.6723110448, + -386798.3329973039, + -214146.76381866448, + -338326.6163107801, + 137583.62112648715, + -582636.258864279, + 139482.7059297896, + -35828.56855087835, + -268700.5869158339, + -733697.972407694, + -215813.43397299357, + 497715.8718366275, + -915396.8586483792, + 871283.7193049146, + 142223.9800062537, + -101145.03213600123, + -630486.3814454532, + -79474.85355562934, + 209782.39493010787, + 575.8668680553303, + 68151.39254053793, + -78095.17976986169, + -606653.173591252, + -136104.99555572896, + -561597.6192656367, + 217095.92044642134, + 873519.5874235153, + 628121.1916257495, + -367435.62853026245, + -336578.15586134186, + -830638.2862848014, + 857514.673338029, + 884458.6595319561, + -76985.75595470514, + 519901.9790160115, + 66670.82624645438, + 135488.6983138013, + 247187.5887809003, + 88801.42731279906, + -513465.205472746, + -101600.36970390851, + 232499.70550344078, + -819006.6344866324, + -502993.3709036374, + -603505.0550010825, + 502142.0191154666, + 414102.7616245319, + 852085.2891045103, + -468848.57129865675, + 16074.100333912655, + -556220.9989995821, + -892515.2876406967, + 446442.5022736762, + 622077.8967108367, + -874813.7811802271, + -898474.4290936495, + 762531.2292543738, + 627776.660442612, + -256340.4034917387, + 664982.6383284642, + -783291.1862152896, + 127937.02638926497, + 541807.9999676651, + 484705.37470108276, + -765900.6841113974, + -146430.8193315389, + -960876.8746968672, + -383679.5085456639, + -305318.21105346514, + -19338.677839469077, + -84479.25940606504, + 128190.18375011181, + -518113.7384506194, + 797067.1024426548, + -563760.468537992, + -452303.6428948102, + -191374.50010450598, + -121011.8964476985, + 703094.1992824653, + -686072.8482771723, + 888625.1190525909, + 292569.08828272833, + -871313.1841874028, + 319555.00694304326, + 1424.04536477736, + -129236.77030937442, + -90110.53247666068, + -24313.27562736585, + 931112.5011514312, + -134838.0775581628, + -184149.876436303, + 268853.4083945595, + -22519.486652571974, + -403559.0498918922, + 825087.6995604406, + 933249.8778389026, + -449391.02156814584, + 673970.6854957517, + 613858.0967166929, + 671492.5465389483, + -215212.36870023963, + 292257.18803351343, + 151640.87530193425, + 204777.29563670533, + 692705.8729247755, + 266932.96340006567, + -755674.8847893564, + -298779.0390392642, + 172776.39778918587, + 678004.0310460662, + -125961.78769924004, + -560548.0086359909, + -271848.2326017628, + 300907.48855033977, + 550333.8640074043, + -841411.7446565034, + -381686.69805748604, + 480024.8836847267, + 848296.4146114427, + -613085.5754542606, + -177165.35287526748, + 967221.0614340424, + 28124.84738651744, + -980550.0423792796, + -141861.18531139157, + -327525.2377763698, + 544148.3491250776, + 231020.33848242476, + -650884.1248669295, + -579992.0208613314, + -310269.1411414409, + 366041.96609572903, + 174502.5657355064, + -960820.0535281613, + 725984.1323569188, + -81445.73796501686, + 859211.7646863435, + 808268.4572660825, + 937245.51693087, + 339621.7175567653, + 253007.03606810738, + 901305.5534958246, + -281861.2816452772, + 136222.14212906436, + 959131.602846453, + -132466.62475941994, + 899676.7881677743, + -915799.5750366243, + -549111.3284440929, + -724694.0778011659, + 857546.9650280003, + 437941.08743882074, + -652590.1100167118, + 712363.3543888695, + -413975.42633119476, + -245781.28787741528, + 320909.72118435655, + 946066.9131307018, + -172189.2714204001, + -383445.2583876535, + -323113.58246088726, + 442172.937764985, + 254753.27629518163, + -36564.652562478535, + 740760.0470586661, + -940155.2562409498, + 199354.43155930942, + 977200.1263900738, + 438382.6024387276, + 974268.9863897339, + -939521.6065702572, + 187754.78403474975, + 834173.6718428055, + -652192.8989637223, + 102961.5788348115, + 266050.5058661415, + -552066.0398650034, + 880639.5810816756, + -198878.95025185842, + -493093.87531766033, + 840013.3947613569, + 321542.4574105814, + -37136.79364762767, + -428325.0850813558, + 491600.42273094493, + 908956.388232641, + 484361.0181471585, + -301558.8723111855, + -453672.98578462045, + -510390.8927654517, + 857925.4332927195, + 956071.4113171669, + -648244.991695707, + 952426.1295610137, + 822736.0575970106, + 574679.1810264156, + 865706.3551566248, + 23807.509457727916, + 224836.1004435684, + -728553.4342004756, + -722571.7068587577, + 913429.841837456, + -511835.10056549683, + 260741.21551704343, + -784861.3787511815, + 749134.5679189034, + 120993.43216715397, + 562648.8493792063, + 973414.7171401097, + 447557.6300054158, + -932327.2246133625, + 843234.2942952029, + -543941.1366439497, + -60508.439142465286, + 341146.0634225707, + 781903.2576086764, + -118092.75045200462, + -284296.4366729572, + -344354.6868694591, + -387874.15356474096, + 830512.8542510525, + -823888.9510353649, + 94873.53493206397, + -289167.7009437907, + -834932.9188757506, + 656668.1397421645, + -406149.3184089657, + -327830.46824779507, + 352822.69366063137, + 853979.6219467405, + 247555.24983851163, + -836313.5130040584, + -757911.1218427268, + -966219.6706865311, + 19522.633023092872, + -639305.3749117295, + 93923.50386986781, + -397325.79993978015, + 747393.3392633463, + -581374.6737350507, + -455152.81498195435, + 845274.0830091678, + 485606.01256713085, + -959671.4299609079, + 107535.74130592613, + 283553.45440684387, + -332697.2613470871, + 342276.9805058741, + 442757.68484231894, + -281876.8290873008, + -101908.16367861743, + -796663.8820716641, + 555486.2492075114, + 59490.81845283599, + 134934.53742226126, + -570501.502856549, + 512418.37301278405, + -65291.32830599527, + -711912.2875698687, + 838336.938930091, + 214188.2986562089, + -154009.85026286574, + -376327.766113145, + 870215.2245688253, + 387300.6773259897, + 435675.9543220927, + 912041.9573953251, + -799736.3030984818, + -624532.9673721221, + 231374.89672372237, + -210574.73860159615, + 183436.9666462683, + -577322.6600181434, + -829625.6193241415, + -366075.9996291276, + -310614.24844851147, + -130555.42373303797, + 220644.76755980577, + 698418.5056545942, + -912718.1510051532, + 109317.84347090745, + 818606.8272731304, + 421477.352429507, + 506889.9266023268, + -802261.2450242597, + -653765.8448555958, + 545516.0128226359, + 25678.158926161654, + -219395.20648038146, + 657999.7938922734, + -467747.56417511945, + -392765.2344766095, + -924492.6775443134, + 95349.34911518356, + -760413.5928514852, + 758420.5201432063, + 620765.0222902297, + -140825.24586075306, + 916884.1682795306, + -113298.15784897534, + -208402.89834646165, + 659244.5748592799, + -310478.54345557524, + -785865.0095857626, + 293930.06716588844, + 838674.96759672, + 650248.1538546915, + -666473.7360947039, + -90280.97580804983, + 413803.4222025198, + -31146.021709068882, + 882947.452932908, + 774958.776786431, + -589152.4602179294, + -233621.28006460404, + 803746.361269374, + -74368.39836164122, + 677463.3047772581, + -251685.18929949467, + 678466.7520823777, + -8648.759734667166, + 909171.3263044639, + -196716.7221214079, + -954409.3123139339, + 613176.8523483612, + -363283.9762819693, + 684712.2143138787, + 666379.2225509048, + -309319.07085461717, + 430180.92259001796, + 466185.5428740693, + 702824.6129750293, + -98629.10623629561, + 101744.15727309017, + -502378.70341935765, + 43199.25500628297, + 386200.5625216758, + -296827.8058275355, + 748596.7069872333, + 941268.757939586, + 408134.9017570932, + 270725.0578564309, + 297280.7498650554, + -426006.3258049323, + -84621.92258431122, + -588391.8530006724, + -510801.6717335797, + 683750.181706735, + 17153.320272977668, + -936957.2324216786, + -522030.80812948424, + 500517.7634105318, + -421230.6879023977, + 607624.9161345457, + 347841.0080592684, + 272940.83481633133, + 350008.61990598484, + 162042.82434157014, + 414781.51858094917, + 531596.7078054, + -453561.11218037776, + -197984.2200390063, + -513137.2306663264, + 70997.7278172833, + 109497.47980675429, + -224363.60706957182, + -627941.7089981949, + -769026.7762885543, + 997568.5634025513, + 603112.8272869086, + -30638.4478799393, + -975396.1203003096, + 554909.908468568, + 292661.9114359159, + 863126.8405000392, + -839572.1651004707, + -501399.5057806011, + 779704.0847932189, + 758973.3167365722, + 721811.2719822265, + 319500.8404837876, + -645030.7083339719, + -653595.4715169637, + -874956.6896985277, + 650641.4543708412, + 915010.2254520352, + 137675.70726929267, + 40270.85110940454, + 596288.2648833905, + -986806.826001901, + 140591.72348361136, + -246803.87626276334, + -847609.7351244596, + 599860.9598946855, + 318745.418627697, + -355481.36179190635, + 342215.9767921329, + -714442.3601567178, + -928988.2919660928, + 51580.304142182955, + -413556.5515011554, + 455840.6126544421, + -882679.9161115387, + 65147.734505308195, + 230819.71521598144, + 351698.6855914275, + 567773.0140704353, + -540660.3535253434, + 699643.3008171428, + -304466.032980671, + -710978.3471097426, + 463497.44530656055, + 489699.4114248838, + 193658.34138873962, + 731333.7640762463, + 796680.2599351093, + -672391.9749307974, + -801460.5173520414, + -679272.8628710771, + -444069.51839433506, + 247118.8111931879, + 640988.3770942535, + 414385.6458062591, + 695694.3671672498, + -604255.4496560888, + -315271.42525554553, + -945452.0958848412, + -932199.0060099425, + -975542.6918392427, + -577172.4812160785, + 314223.9036003482, + 683488.1063427635, + -250634.23417695984, + 43887.28158708321, + 649195.0729432589, + -844321.5682371721, + -27105.320221544327, + -603944.8929317786, + -797742.5961456918, + 729024.8063747798, + 875687.0414890216, + 41641.151139011345, + 475881.5475176148, + -216300.48508606592, + 75401.25466241987, + 329360.6656545258, + 764829.9319246195, + 167948.69104019218, + -438161.0781283405, + -15630.980615955803, + -760686.0449235209, + 995551.9902090093, + 354402.7904876312, + -209509.89970261103, + -108126.05066147652, + -931759.0623611843, + 321159.96306917793, + 396806.3164396791, + -767352.3357087842, + -679587.6662188853, + -621983.6116557595, + 433099.3009053603, + -203213.93538844123, + 366920.97539637156, + -242258.15629503745, + -145531.0621780288, + 634378.457943556, + 340582.6030686423, + -232491.90823941212, + 374674.25598944357, + -514055.07099646307, + -259426.3160916983, + 728291.2871302987, + -737198.0039603662, + 50713.016569662315, + -444255.4196952413, + -306661.8202763516, + 639610.3292748012, + -334406.0414485144, + 920800.0918776382, + -276564.13162570324, + 860254.5911322159, + -806828.2551321511, + 924809.5387281177, + 286321.1706357509, + -478278.68657509895, + -515462.8047398662, + -233063.26254950615, + -43590.24737013506, + 740071.0560837049, + 472065.97600446566, + 436639.42526444455, + -970824.1073798132, + -345163.6333388848, + 610331.9836901133, + 857544.0572051647, + -779687.2793674718, + -838708.5879016098, + -324611.83470549074, + -595244.3325915864, + -542884.34456587, + 466249.3426644711, + 95900.24312155254, + 156599.56808004272, + 165133.00164725963, + -846570.4633197617, + 348333.45096258505, + -771546.1556484185, + -855146.2721229801, + 986489.6906019467, + 603863.5539849293, + 610252.5358888202, + 140011.1809209714, + -95033.6351602028, + -84524.83828230939, + 262573.53623278876, + -840038.0061571873, + -197890.95535939062, + -479564.35747890925, + 728995.5095796643, + -31112.6298263551, + -284214.27169543836, + 516645.18594375707, + 918483.1057696905, + -574633.8720491563, + 852055.4752580493, + -92538.64743070416, + -472477.1206077489, + 288871.9954343542, + -223881.87161972374, + -699004.9477200075, + 769529.5288868764, + 756073.0489544501, + 168555.33314674086, + -1880.8949058986002, + 148976.32960702566, + -853583.6814727968, + 634403.7393172119, + 142257.15154682894, + 30586.908304849338, + 781718.6248935732, + 894335.8287506866, + 548608.0329402523, + 598875.8360151552, + -903604.6934704852, + -88900.08985195874, + -366527.8803815715, + -174420.44282620682, + -629355.8199032496, + -553927.1684126186, + -428173.7897695694, + -252301.87898084754, + 313245.34172328963, + 366030.307913177, + -474347.61995963927, + -154325.02170322902, + 731177.2570996343, + 436945.6847641666, + 498296.7288118161, + 793027.1812014345, + 312655.433136634, + 183653.72642319743, + -851873.463671051, + -437404.8582437142, + 646454.6060582794, + 823004.9339651726, + -751952.5217245396, + 97531.28218776696, + -895882.3753819929, + 805815.2186982868, + -95428.18565364386, + -703347.6564091174, + -359517.17154064757, + -95759.15574261452, + 550323.1997206839, + 842099.8382991485, + 551252.8146404718, + 941472.1784700857, + -680551.2487416336, + -518736.24636695336, + -491167.2773408815, + 834480.5155909725, + 771970.2137992999, + -998826.9548514923, + -224268.6747803544, + -129079.36143563958, + -409060.8608443083, + 119498.78235309663, + -669221.2864820848, + 74032.02254632647, + 686187.6314717144, + 336999.1951496174, + -181928.604992045, + -941902.1765725806, + 148481.05912251852, + -357608.0204913703, + -125199.30365065268, + 507312.85928665823, + 410683.2206831499, + 207584.0871651611, + 738220.2672021105, + -866986.0214052041, + -734681.8392605066, + -152474.62674095668, + 111597.88902606205, + -53049.65260569516, + -616518.3855797068, + -377964.17195417086, + -398970.95834330964, + 472498.884107279, + -630291.2896075221, + -977507.7794531077, + 104785.02517838529, + -894456.4907495503, + -577531.3099235204, + -868352.1091554569, + -664598.1969277215, + -872467.031419987, + -848793.7889502881, + -150996.5685952206, + 880565.8085885945, + -753356.7470928162, + 670522.2159651503, + -591695.5540900438, + 703707.629045234, + -32467.379151202014, + 158082.23444922164, + -13109.78059693646, + 333126.0673578338, + 152265.36739361496, + -235259.18422654324, + -377292.3568701216, + 865059.0151271991, + -560746.0258996962, + 784763.8331658464, + 282283.9461677047, + -401736.4576638147, + -580763.4995592819, + 830447.5868304016, + 174784.16232451587, + 488938.878118701, + -157609.0002382695, + -689920.4462558852, + -307136.97078122926, + 442465.0286733711, + -83118.03664461049, + 735881.3698394555, + -454696.33022476465, + -338128.1989951814, + 756738.0367657318, + -292074.8922043432, + 130607.54613930082, + -169797.0939182838, + 178546.58044182113, + -732269.5048050025, + -996776.3899438271, + 862390.8184633066, + 795479.1857620578, + -757854.0561086511, + -820510.7975162807, + -121152.52714987613, + -518664.6106508654, + 596643.6455388488, + -461956.5983016678, + 848803.1738579615, + 489998.48093460005, + 698751.5051396186, + 465682.3850358889, + 816455.702057093, + 844750.2218133402, + -240980.06123384243, + -176984.32577647205, + -242509.45372394362, + -419118.9608432577, + -655325.8309618591, + -442098.36472090916, + 836392.4587400098, + 483952.37676486524, + -154547.57874865277, + -735282.9353248354, + -40942.95824396909, + 348517.6876881515, + -232731.8953144042, + 261680.09555965144, + -892336.6355854166, + -445685.5096079706, + 789427.2454475953, + -322362.6205055701, + 395049.55154209863, + -689821.0650496801, + -550820.1754531395, + -336561.8233300327, + -949166.7854389496, + -658825.2281227594, + -764190.0773305794, + 446542.65288409765, + 657361.9528847854, + 834948.3959982314, + -537561.5643833827, + 60489.98701520203, + -778719.5295647866, + -865442.9888989801, + -946784.9582334957, + 699606.6979539392, + -808662.7823848294, + -886374.0222182613, + 143445.50592646166, + 717122.7283950439, + -189959.3157990438, + -294612.8855194881, + 225655.51302383802, + -932057.8489668514, + 617398.8332351065, + -788404.1067635256, + -582293.9717377771, + 511902.40143023914, + -732371.5710033076, + 148300.96025899908, + 111516.48396057267, + -686750.1936856447, + 816027.4322492258, + -277181.2146530834, + -650354.5495611209, + 52583.00219727241, + 549407.6083453385, + -603906.0618509586, + 677030.0873836093, + 775498.3056201561, + 819283.9668034418, + 929319.730744125, + -911811.2245158883, + -877535.7425372708, + 485565.4253061228, + -209583.60273924214, + -431242.7768930298, + -379811.79012542387, + -152840.43600500975, + 370267.603869475, + 161781.35858539667, + -356600.38477580127, + -215931.34886113452, + -810019.2761558522, + -575583.2200346614, + 805375.0664091872, + -839320.5411553384, + -317849.9585191015, + 966880.140237979, + -998021.5723692257, + -286323.65232082235, + 59289.81596642169, + 81757.63874707754, + 740677.9698150854, + 47452.42070068389, + -699687.4008961509, + 396050.1530931395, + -217496.56425047625, + 381615.33921536314, + -380574.2408321684, + 546470.1528018337, + -927552.671774267, + 372473.6258653911, + -351816.8698252324, + 876326.4205485648, + 856031.4368242417, + -742427.5389398369, + 912983.8340727295, + 989995.2788715458, + 923331.1010417473, + -358187.39609211823, + -284437.81619076483, + 765944.7318797669, + -243705.17765533295, + 418100.3885747867, + -426249.84344446124, + -168035.18639889493, + -164721.8119388929, + -328187.87404652004, + -974685.7749259599, + 415316.73564771056, + -53696.519706066145, + -767183.6569094082, + 602078.4762886771, + -49070.491632454025, + -762804.2714178236, + 288349.8604819221, + 507209.4891702097, + -369510.7035062415, + 286868.6018142987, + 374168.31954809715, + -627037.0604927718, + 373946.061906882, + -515368.61785647226, + 303500.1739670362, + -299412.9414421751, + -221631.96688117724, + 11248.774428656905, + -238717.63511473866, + -946821.9131313665, + 198154.0287545416, + -751849.211181693, + 683315.5816703807, + 202934.74039581793, + -236603.71256760904, + 36408.8020560569, + -362994.0593956116, + -598763.9544661037, + 792317.1504136241, + 158018.6288753369, + -69469.41685494123, + 800665.2979139157, + 734952.9037321925, + -494621.1823249269, + -272169.0607458098, + 977246.3289523004, + 542741.2172675028, + -58308.21822495414, + 56779.25919522075, + 599370.9956578608, + -240496.21047430957, + -557338.875464903, + -264925.39578065986, + 611297.9576772155, + 516108.10813642474, + 780473.511102833, + 281070.6682159227, + 792808.1007920295, + 823971.8142868538, + 528578.5969288304, + -573985.4043063368, + 889666.0962224933, + 834267.7229605693, + -373293.73769750894, + 776361.0253164197, + 255919.22204453876, + -927728.9869023431, + -224297.45639048028, + 744081.0099810675, + -98598.89577669834, + -955453.1900511223, + -639064.0003676105, + 485143.6431168461, + 860108.424798722, + -852964.868720755, + -492521.2859908892, + 363692.67162079224, + -236750.07882047127, + 998273.3642931383, + -906820.7500754176, + 337655.85349100234, + 194860.98403774376, + 751987.7741559888, + -796313.746522699, + -789651.5713798298, + -577385.8632610905, + -673572.2445082628, + -264689.8509489843, + -704619.0310263032, + 377958.8558851479, + -882278.6701103802, + -789057.4462423074, + 573823.2357526305, + -651094.5599219921, + -340574.61258254707, + 570143.284222858, + -501096.76291175996, + 913601.0077770718, + -177247.68046096506, + 85369.60815294848, + -379461.71527349716, + -294354.25914785516, + -487902.85752242536, + 906121.3876679564, + 213963.33845066495, + 136486.19753145796, + -322460.16978844104, + 110115.53470343571, + -76940.04934945142, + -709594.0750426356, + 127416.82008068355, + 873827.8648224331, + 569426.2010368409, + -315978.7563100804, + -344096.31277788646, + 467024.203364437, + 972404.7415354928, + 734257.7118133808, + -884979.6716525995, + -644284.6772222108, + 351292.39595967345, + -805530.2155011293, + 157126.94414015303, + 531672.8204095991, + 313879.38597633113, + -669750.0200522619, + -928069.3183483853, + 120533.10990977817, + 611253.3017903763, + -370018.15223551524, + -942237.9914748644, + 29094.702913485147, + 456638.2703999801, + 498889.0433708926, + 650595.4471786204, + 948552.6966291937, + -44361.25266287183, + 269488.26230879617, + 711084.0809312062, + 301743.96901413146, + 678513.3711636302, + 74974.79250578131, + 409828.0535749066, + 876923.1848843993, + 119299.04595912255, + -813618.8294160923, + 873610.259105017, + 509167.0649891251, + -901544.5432644939, + -699412.6159477539, + -709837.0488870345, + -319564.47245621856, + -761353.3296419324, + -739339.2768077732, + 261103.5971783753, + 515860.3188855304, + 714563.8411949562, + 952556.4851485806, + -780781.6397329741, + 937465.6825038469, + -803178.7938823747, + 581333.6039827648, + 839809.9332398885, + -913740.6460254149, + 449965.08249840606, + 658170.6193614552, + -704356.956066998, + 295231.45466173405, + 517998.0410790452, + 118317.46762684148, + -148474.97347387817, + 650507.6796735725, + 660995.5173192346, + -746639.7855100826, + -671458.6684294994, + 125954.79310564039, + 299312.16857639066, + -331983.8634966854, + -690698.4084337917, + -484313.6484722672, + -402702.14202527056, + -963336.6658876128, + -477159.1464606759, + 462407.16931254667, + 154823.87797654007, + 410855.58359993744, + 238456.91042636207, + -716791.7994726019, + 767524.2517304522, + -187317.4150911252, + -577768.8469843285, + 769829.8963626355, + 580744.6310600439, + -66295.44301636248, + -623149.4310074068, + -966750.4701256802, + 60030.82193173204, + 889111.7196432959, + -772605.5623288198, + -398966.9055641287, + -173813.66418468236, + 573297.0105229771, + 544971.4421925842, + 181622.0054271791, + -298137.6711303969, + 483968.4326952378, + 902426.8942792382, + -346178.9411309759, + -327693.93233395205, + 250849.45875833053, + 965903.1348087577, + -437336.5666268163, + -99917.64837306038, + -333329.424926774, + 302022.53350511345, + 588812.9221087539, + 455922.0597099005, + 284910.8960690885, + 451817.43569772557, + -934437.2704777415, + -949314.0955752035, + -628291.5742878261, + -567056.6420176353, + -553334.3038154889, + 34459.1673726824, + -170319.34577101283, + -397338.3358545259, + -433213.56688659417, + -121097.83481917735, + -594130.4823077797, + -742846.4822017557, + -254740.26899740277, + 236335.85621669862, + -448151.80118110985, + -639964.1950726409, + 760944.3599253844, + -544053.0926553826, + 328794.91046241194, + -298109.89953366265, + -597620.5523672891, + -589346.3961094103, + 5083.626322929913, + -719700.2996779762, + 820706.8041417582, + 304143.8322525611, + 820671.3921052602, + -713140.5043605723, + 519512.47056427976, + 915710.5015427669, + -284044.9823208684, + -407308.96062071744, + -807753.3321592043, + -895212.9018650372, + 831622.9627949215, + -21822.849019256242, + -47369.454295688614, + 658717.0317048321, + 33906.610152312, + -275211.2261045234, + 968259.6440143192, + 835136.0668277784, + 484134.21860388597, + -754957.0583677647, + -468251.9595479606, + 480112.5758800815, + 504764.67328162934, + 72859.90429030487, + -822308.6965159456, + 199914.8599883669, + -796323.3217591847, + -970006.6669622916, + -995864.6395551743, + -784552.3041507332, + -893058.5320538153, + 735476.3387120038, + 190460.07572083035, + 285623.10212868435, + -731081.2798080504, + 989908.6480350614, + 447666.11805934244, + 251113.04515835896, + -535004.0450121616, + 933808.4401420316, + 660013.812155916, + 688871.7650333842, + 647276.643477577, + -508186.5495762881, + 435115.7196843101, + 403971.4732690698, + -629085.7574144776, + 285420.35348792427, + 441558.3182356082, + -249967.74442184644, + 983833.889543259, + -766680.0445626559, + -887114.8502687125, + 117349.01599864812, + 977760.9485467655, + 13346.937350257493, + -335131.7746287854, + 8798.389445823896, + 547533.0917250862, + -787491.8742771259, + 947228.8200541938, + 529516.5063822762, + -943421.065859572, + 963308.8941907522, + -921631.2863583902, + 329841.6101123851, + -653642.8870488249, + 482531.9781019357, + -325047.43107249844, + -113626.03578299191, + 763063.5826122563, + -559481.1363294352, + -821808.7488555277, + -859935.5712430583, + 680840.6182936446, + -322080.8295212627, + -313404.86650861445, + -55687.2200791303, + -936524.2344424634, + -883576.624901446, + -769953.5282208321, + -190553.45310046757, + -785223.3313241292, + -737077.4683679981, + -414734.1141206713, + -672342.4549689328, + 945205.042025586, + -427203.3246298399, + 822662.4299963674, + -18707.672116918595, + 756385.0249515868, + -516567.4010384933, + -849704.0016547204, + 572320.8428699595, + -671618.5881212282, + 277843.63690074533, + 911483.0590294146, + -804013.6284772945, + 478395.24314106494, + -811029.0018434132, + -262800.2394146558, + 327407.6902258893, + -583997.4980967278, + -132798.82766355676, + 686682.9246791515, + 881433.7867519683, + -798423.059573356, + 686503.780660142, + 353142.65775506914, + 162917.21209013386, + -199528.66333103247, + -634451.3586160667, + 306476.69254405075, + -768139.0297084656, + 361673.2606361384, + -501626.78964226146, + -772553.4183609884, + 815548.3840356627, + 359494.7123972616, + 627949.1086363485, + 446744.234024286, + 842828.5032186918, + -23824.039308904645, + -552997.0419693318, + 825926.8853153714, + 689581.9221533792, + -700041.574958739, + 646508.2778071713, + -798353.948987244, + 124715.51371617772, + -114574.81299207517, + 515243.0958648966, + -311938.85143241484, + -216056.05943976957, + 811550.3917825834, + 44372.16707737912, + 710621.462635788, + -157386.44279620706, + 71666.34815168793, + -684483.5026680101, + 614094.6530508824, + 471804.0876488623, + -725149.545740764, + -351956.7330889226, + 188128.43718252136, + -866514.3614885394, + -630117.1074336501, + 294602.1335758904, + -995604.5266617624, + 770640.9057752877, + -262331.95853938593, + 391952.0217685493, + 634766.34154365, + 587585.9178245267, + -89436.05632266593, + 898976.4466029222, + -466342.9318166086, + -105816.72333048165, + 687323.5626654901, + 894519.3453401669, + -481307.03273023135, + -813416.9652355734, + 592300.3179471269, + 875726.1590746323, + -722596.0243192979, + 644837.9977576598, + 421167.2155853159, + 701559.9779968335, + 485971.59148750425, + 302647.944265386, + -724397.206895517, + -70322.04924529139, + -614623.6409889816, + -453457.31822680426, + -522797.78178239014, + 365295.4622661484, + 337825.2395308705, + 507377.45493051835, + -270807.8192827681, + -190347.71864474888, + -755164.0160033961, + -553684.2499992875, + 839161.0429270562, + -716880.9093409365, + -668018.2719246101, + -917394.7814196957, + -69024.52566176032, + -834815.7310607014, + 4350.687905292805, + -991261.5008008269, + -661537.053660477, + -759530.4932528293, + 647709.274558641, + -546822.917316347, + -502705.02418117615, + -343567.90440601157, + -486064.244873063, + -42071.592649032485, + 121972.1823623685, + 999897.6670972623, + 338340.5416757388, + -344873.2929242737, + 9448.143559748212, + -305152.41467422683, + -247291.40289358466, + 263262.65327425057, + -264903.34007845505, + 679573.7148579349, + -914576.5272579557, + 236067.89188540712, + -569584.4355122246, + 537152.8490186827, + 796447.3075263916, + -884217.1484318104, + -859982.534647588, + 68689.99080125948, + 403167.7242535845, + -812009.2621897155, + -10517.666407116045, + -470159.9464817261, + -234897.76073823342, + 906262.1963999255, + -125520.06373675306, + 156747.9630301749, + -215233.83876435796, + -846488.4087327451, + -358278.1071324539, + -124201.84824884584, + 64533.46222676193, + -516532.4346334024, + -601925.180863301, + 76267.47379551646, + 879237.306230467, + 587178.3124311878, + -110891.19005942516, + -992505.0080537414, + -347573.6906266138, + -249762.4005705108, + 581608.9138414848, + -673449.0473919732, + -583388.5461944022, + -398770.7661075126, + -682971.5566636538, + 75045.7278098271, + 733293.9663070794, + -172173.40924431678, + -859801.2276585189, + -39699.752065404995, + -528541.0184098254, + 396547.85146663676, + -859019.3411548728, + 66115.61697118229, + 485462.12887555675, + 875453.3860975011, + 261969.46205185045, + -832074.4771624613, + -329380.4874791255, + 634752.2479267404, + 816231.5974027463, + 391026.096153821, + 622783.2295132176, + 833688.2097718827, + -280470.3948263092, + -643016.9490523296, + -814663.8308455332, + -278635.94826224336, + -847529.4094604702, + 156230.57247712513, + -185189.46272013735, + 360501.5741433544, + 247676.40367115295, + -609034.0689518001, + 475632.1974685982, + 617692.8317964126, + 738342.9123406038, + 12344.534517868544, + 443615.7707014767, + -801414.7210330585, + -77607.2675421009, + 791949.2743768111, + 514630.5911500952, + 509601.1149630109, + -137730.35026066683, + -431269.4059996236, + -461322.83010281896, + -230376.6095375437, + 762857.2261425807, + -695106.36332362, + -978780.3284945971, + 618291.6678365247, + -482784.08950718644, + -957174.4361632362, + -503122.43016750214, + 776859.7362429261, + -36874.44108803395, + -784412.370957266, + 572637.8357205411, + 141095.33374262418, + -469765.18773476436, + 467427.5361281046, + 872029.1293564575, + -166705.29505833786, + -603842.6884476498, + -354912.0221829971, + -410780.0013696317, + -686316.29631507, + 549729.2280166266, + -489027.0382248907, + -46719.77261728788, + 786271.565680674, + -168409.56876262836, + 157813.52760825484, + -267618.4977445102, + 172402.89748255865, + -838650.7902619013, + 461796.1306292808, + -529231.4892591364, + -336522.1500353555, + -320880.23612436233, + -544265.8592832119, + -523785.3568719608, + -733047.0406079699, + 448874.760253114, + 479484.3428275586, + 216532.24708716245, + -780875.0823880362, + -723940.1258097029, + 888909.7011801832, + 744827.109608174, + -617037.075316593, + -912028.3900739019, + 29385.88676009113, + 586949.343676858, + -622095.8867204549, + 614147.55875165, + -992218.6521357324, + 989434.9253573411, + -724120.8482295065, + -531590.0589222254, + -517539.6093437106, + -832600.8520342072, + 960657.0863384738, + -403313.3561328359, + 87057.397775818, + 473844.1775961697, + -932896.1480319446, + -284687.2146843804, + 762744.0281450697, + 255781.5076003691, + -715732.0726698671, + 219944.192367312, + -652702.3833335503, + -843879.8580154654, + -254283.220152955, + -835309.4386230248, + 379080.1014418121, + 954466.6890934415, + 617442.6579088056, + -169468.39691167593, + 901418.6408841481, + -150703.16303114616, + -764170.0293921556, + -640758.4138955986, + 824527.8530807551, + -222694.5693989979, + 619981.793830797, + 279966.3557332164, + -914673.3685312772, + -791770.6571829433, + -313272.6240859962, + 972029.7401187477, + -251228.87390526992, + -633038.7243176452, + -384675.07445503556, + -522086.82581271295, + 11832.718016612009, + 179371.645326152, + 636092.5386892926, + 609483.8675344911, + 366688.05597804586, + -48063.084374938335, + 762698.081509219, + -26080.976877237204, + 502711.74062719924, + 844788.3121640276, + -142850.86605370956, + -771220.5894601896, + 132802.6613966191, + -174406.65199651616, + 628578.5710833605, + 259264.65565098057, + 246518.6521715306, + -541891.5181151051, + -80035.79353996515, + 52799.93731020172, + 733975.4046907515, + 314832.61957444774, + 148996.70697011813, + -144786.70996532906, + -882340.5246306022, + -752028.669463045, + -745732.6219238873, + 361752.31905428396, + 798734.7303217083, + -415442.9643692379, + -777165.9702765666, + -884738.9864203825, + -277182.4185244145, + -457645.9664899786, + 550292.6909928769, + 724108.3396727841, + 923589.1589958405, + -293866.91262378695, + -433026.9609451467, + -573110.3335846213, + -59698.049883428306, + 363536.6080183029, + 900826.1743858807, + -976423.1859303191, + -859410.1442000796, + -760084.8701635192, + -842143.6918360303, + 20139.574385072745, + -826095.3877290103, + -799011.3258797685, + 812835.5056128355, + -447067.87029947614, + 511252.9117934932, + 55632.74931077089, + 19535.79334010014, + 502546.1747023512, + 705980.3444020525, + -394587.71773398516, + -948217.241158128, + 474913.6801791001, + 261298.26907160637, + -30805.978761354603, + 770284.6974537217, + 357752.60761996574, + -659173.8471420365, + -607142.0939847548, + 756989.76902336, + -183734.46821322138, + -226462.21423056055, + 814564.2739968564, + 436022.5666919102, + 980550.6513249411, + 733890.3528976466, + -857210.6008207247, + -280459.9112554971, + 72859.50574240019, + 811549.3468269572, + 43966.68862290909, + -652547.7636939208, + -770159.5710452267, + -585083.3333271506, + -391618.4376336367, + 140529.45087793624, + -487443.5497208198, + 35108.89198067102, + -482918.9907786271, + -846680.9229505205, + -852794.1473676561, + 39601.71120246314, + 968483.4972324665, + 731551.6008894293, + 931716.0405018902, + -434113.91021663113, + 767140.0943679847, + -661499.3217699834, + -347514.7059202179, + -899428.5669430122, + -657067.1260960137, + -57594.343926136826, + -419449.09347852156, + 395764.47480919043, + 972847.21586345, + -452068.9759557437, + 642975.4186289314, + -489219.00989599497, + 71612.73869665319, + 644562.9847490258, + -724018.0838348367, + 711232.3954089215, + 649724.0495641192, + -657294.9622241316, + -842501.5882254431, + 649048.0069551194, + -367437.6788716265, + -71177.65862594072, + -230178.665734591, + -599737.6381537707, + -362731.3319319623, + 593164.9777333252, + -916458.8033821614, + 708074.4627284872, + -951269.9169275134, + -767390.0800439158, + -54233.57042392984, + 112384.06148844416, + -676940.6075903261, + -343585.79410295165, + 380622.1951797597, + -666028.1096000503, + 18210.50005219149, + 403988.55034623813, + 49131.36946225971, + 581717.9326907796, + -391624.7702485367, + -121953.9898486115, + 859.4224751392599, + -927510.8238268774, + -402763.3932162509, + -922274.2110410016, + -363559.17552459304, + 443600.81590450194, + 876804.5751917672, + -644913.9091309493, + 645181.1008316732, + -744999.9975197095, + 711200.1155450429, + -718802.6131773075, + -589628.3293142844, + -894528.010753233, + 720543.1219287761, + -713261.4345312329, + 901661.4551144018, + -717615.8912460882, + 267533.919953002, + -633358.5379277682, + 419377.253912127, + -177647.96475387624, + -516920.72330550285, + 327583.7853509598, + 520819.1797847843, + 350300.77329405886, + -988112.5284260073, + 710588.3397859995, + 981568.7111589207, + -665552.294781591, + -793009.9464237521, + 414451.74655842787, + -25397.666070078983, + -853894.7347639932, + 895106.4409199255, + 874899.8829013575, + -762397.6890746496, + 944744.2742735195, + -98837.54922764609, + -664586.3797982429, + -603809.8066668194, + -232917.36539511156, + -491465.765949666, + -451261.8660916994, + -33288.69234465115, + 852952.552650305, + 577002.2922082945, + -560907.084419437, + -933706.2391850161, + -145745.15460832504, + 1938.6771421989745, + -960149.4011226915, + -170562.29233685217, + -794180.2774817024, + 15332.272683221016, + -422457.7351126812, + 147525.3688103151, + 563571.2037184937, + 843537.6298581809, + -593892.9974055766, + 839879.5367851306, + 269579.3687983612, + -744255.6475110647, + -583637.7633800403, + 46654.21494484701, + -938189.4735793832, + 197523.79915031936, + 626100.1524561009, + -326881.78359177813, + 261730.41322840817, + 953940.1852560709, + 725392.1070335926, + -40816.19360819411, + 781691.1883219513, + 376257.19351697294, + 486573.73041888373, + 657365.6271911011, + 725064.5635545201, + -190529.09336950275, + 547085.6629513345, + 639871.2131202575, + -97755.5419205729, + -793736.0839922765, + -19243.173219408938, + 623149.3488257058, + 173524.2846866225, + 427642.3792832327, + 609165.9469071773, + -247226.5888012395, + 931755.2990700259, + -291397.89419018046, + -286954.5439037293, + 477530.9380740094, + -481614.238657514, + 940375.9347545557, + -580124.6294640541, + -399243.91364627663, + 96591.05548042878, + 566053.544113681, + 47356.756173632995, + 505225.1470925639, + -417203.4697296623, + 923865.7641213705, + 621154.761918006, + 588640.7653873737, + 344544.86669026373, + 859483.3846366437, + 660873.4936120859, + 251603.31935460123, + -192795.72125363487, + -520570.2923372526, + -414535.4131803336, + 481073.6871555208, + -174678.51560619674, + -560003.9311959768, + -538167.5108347839, + 13672.764967209927, + 716978.4937935866, + 162207.48993686552, + -80303.8085281187, + 973923.865699531, + 568283.3247184058, + 376498.38097867725, + -286797.8761373708, + 938768.5079328278, + 961565.4936674045, + -181547.56032793727, + 728138.6112311399, + -517616.55068056524, + 208964.39088211505, + -911472.1705976703, + 475539.1936354372, + 932828.4950779648, + -41484.59441157515, + -292785.1467195832, + -208235.12011670187, + 529866.5661184035, + -126066.11356799724, + -714976.481596677, + -722173.4700041352, + 669967.4397389148, + -266975.0828028985, + 242770.36301391176, + 853999.189949245, + -639181.6756478499, + 953286.4661460969, + -163004.20189170993, + 117436.916022011, + -520854.41586435447, + -925407.45800769, + 976421.9711462008, + 621248.0563987199, + -946404.4164239902, + -166596.28416809902, + 799547.4470635839, + -518919.559648898, + -437763.71614300436, + 338060.38912244386, + 85558.24486552832, + -102620.39420632063, + -856130.2587879092, + 465493.9134888114, + 754820.6144688388, + 21149.414609380023, + 670562.580638201, + 114617.33030475196, + 908835.9212057517, + 811454.0545861686, + 608252.4483112211, + 16846.093687938213, + 124689.37349683506, + -719120.2540195603, + -185967.00629360985, + 251276.7288205573, + 345322.7548513471, + 175654.55575578203, + -184925.6289728385, + 208014.14493150782, + -596190.3623041562, + 847244.947215345, + 965924.0629816033, + 849192.1518362842, + -218792.4808529762, + 474560.8713147029, + -353802.3690026599, + 882542.3876617637, + -830367.7983778841, + -856967.643465035, + 594035.3427447336, + 577005.0155212749, + -981236.3021448804, + 391432.8582566971, + 467585.50844156963, + 186281.10617004, + -889204.8750537693, + 642302.539452164, + -851656.9539887982, + 630311.1215989785, + 709202.9972589033, + -984443.754792288, + -926492.4763239211, + -142908.3601240049, + 238526.66936074442, + 242861.37442372713, + 939021.8107404687, + 484043.0763757415, + 412828.91489878536, + -316041.1193335713, + -289249.35773951386, + -502211.641743636, + 588781.0390879728, + -62403.741817278926, + 96259.00147687094, + -469011.4100421072, + -896851.449704493, + -674882.3298679556, + -781400.8241404402, + -420226.37046262925, + 369217.6840910224, + 33970.114188952124, + 395338.8679812806, + 748710.6674800661, + -435287.268844972, + -865376.4197376512, + 13670.049556162134, + 680624.4733972524, + 581152.7634022386, + -77663.05117718808, + 779032.0051422941, + 769677.0959349022, + 377602.8953901793, + -505216.3400228422, + 472490.8127912777, + 741362.340338394, + 668437.3542852009, + -872142.6696618686, + 97799.5080948848, + -535402.1726515543, + 914518.5026417575, + 582408.612480416, + -625162.2955819138, + 359600.8996375646, + -77689.02431914392, + 777464.8291627526, + 803162.7979981209, + -38513.65021055542, + -709908.5384347928, + 462794.34181832644, + 96575.3459309424, + 199373.09183552544, + 440095.9144918901, + -762503.5863252002, + -415631.97884143685, + -254411.09377694948, + 649189.4635545341, + -858059.900750348, + -164605.596558983, + -201077.28893387367, + -818182.9581517259, + 654105.9168274747, + -337660.3714587161, + 881905.5805816231, + -859643.0888836095, + -388784.2862025195, + -21930.679526495966, + -810146.7985419923, + 886485.6278713045, + 110277.74298156422, + -564123.1406095624, + 290387.64113112923, + -686264.0680444405, + 867403.4583285084, + -566920.8575921854, + 972996.8672718583, + -21521.297983716493, + 24312.166688685633, + 113749.21988860809, + 457473.2055230315, + 777227.6485370373, + -438738.9201148422, + -233676.8901925197, + 882819.5976580817, + -921449.5136107212, + -738250.8289512641, + -354129.5147390149, + -402408.7478065912, + -385424.31273816514, + -838993.4959292777, + 507378.02590130677, + 646170.6406003737, + 784761.7050422058, + 830485.6108744567, + 262852.5569912026, + -700201.7741508895, + 530262.3749639206, + -737700.4080162377, + -932914.7869766891, + 888629.0454641348, + 296927.8049937179, + -136967.12925162812, + 716165.8203689172, + 256073.36007168845, + -711707.8120755384, + 124439.40015480792, + -268805.31342992355, + 283288.817844483, + -519489.6134254383, + 653341.1729396186, + -620946.1527198094, + -234994.1008880867, + -806931.8481202696, + -4976.705928132929, + -407488.15567177755, + -904761.7440831801, + 826838.430149214, + -415880.93938508665, + -926118.3904840451, + 850990.9068012859, + -310084.4261053883, + -509161.19873339485, + -479407.23628669925, + 643840.22925911, + 496815.64558863454, + 934633.8751740366, + 331258.51466960856, + -741368.0881708044, + -410120.8163161709, + -82229.01262198134, + -808842.7489688051, + -75534.16139719138, + -715769.8613540266, + -826577.6302597478, + -931565.7291341546, + -606702.0857310273, + 131661.61168409584, + 488348.07006892335, + -354116.92921856616, + -218247.22728333468, + -802010.5200497974, + 9184.204864025825, + -581160.2834020411, + -603074.508616982, + 341170.63919401926, + -800837.6617120674, + -83680.22099230177, + -137244.66114671397, + 538141.078381243, + -826110.2473572615, + 986406.3465074698, + 348890.6842165733, + -57940.58857880402, + -300232.6904947266, + 221805.89972327836, + 983373.6232215092, + -201155.26620201574, + -745592.3007043626, + -712099.4135573988, + 172114.88332742974, + 103155.53849642423, + 61420.38844754105, + 440011.11677464744, + -308332.6421673376, + -877320.0060132788, + -736998.4731007031, + 964441.4853303196, + 908876.6390714764, + 775052.8029047525, + -621549.2270214213, + -91362.21869818706, + -315118.1681512076, + 399299.81825602544, + -641075.3967708645, + 576023.9557127396, + -124297.29107141796, + 931461.8027367103, + -817190.3837038144, + 840771.9919093266, + 378069.3632749952, + 599252.30687665, + -852208.751482923, + -540542.6400731581, + -680520.4512217782, + 398541.8875847939, + 761319.1116145841, + 405766.8310312914, + 976910.9262818396, + -832881.8174814439, + -982994.0183115755, + -821159.0402301083, + -484973.5855545574, + 213425.38409035193, + 279232.43458775105, + 467720.5003638012, + -132428.6571244011, + 47709.33066836736, + 778862.7287934438, + -979433.8046944189, + 851841.9414116873, + 358624.547645054, + 436948.97429062915, + -670891.9752106941, + 461153.4304324787, + -351061.2898070766, + 724373.0706768062, + 620508.4366388454, + -40653.77880764709, + 813753.4664497739, + -63686.52939129737, + -12346.95449959089, + 466494.25602173846, + -49348.148369764865, + 481303.76852291176, + 133172.07709387023, + 623247.4671390118, + -590724.2040751552, + 40410.314155049586, + 912953.7619585326, + 950198.0908976065, + -250075.1615211585, + 355350.20461515774, + 182544.54816455534, + 454206.2174427357, + -978933.0168164918, + 723078.0152313494, + -790220.7334142552, + -656209.2681317817, + 600555.6653247031, + -383421.7496351753, + 105241.21352496452, + 8892.875564424196, + 249114.6831977078, + -572481.8459122027, + 330099.73042332043, + 391008.8021984532, + -785159.3608965493, + -115632.45672334133, + -929889.7998569495, + -411442.6588002102, + 392250.3372571382, + 204119.26274795333, + -892387.6203992722, + -129834.85944242057, + -290728.7227344462, + 47703.38567113508, + -379841.2204523918, + 515004.6609351537, + 401359.5327105304, + -623879.0242070497, + -198235.10558341196, + 171407.97345287018, + -665530.4115471472, + -221969.43917431787, + 637454.6364377964, + 746263.1207972703, + -226085.59164477192, + -643394.4476332346, + -164772.54528390904, + 911751.1883955674, + 80637.57086429212, + -769697.7001177241, + -634213.2428996119, + -171461.6177613406, + 419074.7867421041, + 563669.531549778, + -5806.101008093423, + -694365.3254648447, + -591110.0236427236, + -351263.2208071609, + -861922.3330318397, + 582272.8815668636, + -464040.1906666423, + 304839.71822132316, + 155209.55773237822, + 146151.69875515942, + 939387.8814044792, + 89392.0010538074, + 88504.46521250955, + -551569.2383591364, + 382275.0290451855, + 130807.69262596847, + 574965.3108112316, + 144588.25855479616, + -695930.1670214523, + -809505.2563139173, + 167778.28909679648, + 132798.95607938318, + 232760.82477561454, + 834353.4599736367, + 961407.8641807245, + -191264.664644198, + 812631.2353458247, + -809537.1679288428, + -565486.3616008074, + 676120.1647257245, + 312714.7132557424, + -721774.2162854061, + 919696.3084822039, + -458472.05661537574, + -88416.98227460726, + -859192.8248415752, + -930718.7800558052, + 533098.7816619514, + 967775.075928561, + 731919.7897291412, + -713492.3095151149, + -74506.2387431672, + -714189.0828118752, + 833575.2523278559, + -348161.0746322301, + -398455.2386472033, + 902504.6875094931, + -144692.3498769983, + 606489.5048804722, + -399282.10217610595, + 266736.25648825493, + 459354.45504684956, + 91931.06655805062, + 936215.0867877726, + -53560.8475211351, + -630462.6412781388, + -700482.1367019257, + 13524.709942484225, + 122037.62369447513, + -61382.04524773561, + -758687.0591673969, + -510685.7518910386, + 166769.98989532853, + -726548.2972093573, + 421500.75917593564, + 82656.04473228261, + 699626.086429872, + 438607.9337618587, + 907527.3296872355, + -884580.1316959251, + -18212.394740603875, + -661254.2635482625, + -951507.0350719219, + 958907.2573543316, + 248561.20845968378, + 98126.38844718169, + -443928.09909167094, + -585180.5770447358, + -402754.9519062004, + -371587.9002042368, + 794855.0392209099, + 985536.8801980193, + -304225.6591469479, + 330204.2688496827, + 381208.5054556966, + 40248.517964020844, + -301253.76670295536, + 265011.59239499096, + 854594.3107089731, + 450711.3220843908, + -420250.475265294, + 543096.7968595752, + 806773.8181366586, + 330472.70884639455, + 780219.056294958, + 552869.4717635097, + 560429.3115116293, + -538351.9093926519, + -719436.4380447371, + 537632.8057280607, + -320281.2658976477, + -825066.7708782809, + 468273.61513134534, + -699651.3324599189, + -217631.09935391034, + 955421.6910545222, + -37234.99369478933, + 671668.4960131556, + 799156.2998690367, + 35552.25106564253, + 609125.4597263669, + -97412.82818523067, + 461608.2594798423, + -678832.8511908093, + -230250.13056481746, + -333345.3961773145, + -819524.2473664981, + -791670.9977404197, + 665081.539322953, + -287081.77178865136, + 327420.21049277525, + 433046.90950860403, + -243241.49311669442, + 253694.2167738676, + 789575.2428913856, + -632689.3766926593, + -382301.55323161255, + -389371.1165283773, + -276951.33679181593, + 300489.61733938253, + -143017.60599759428, + -108483.88662385577, + 882861.9230177786, + -790078.3016030424, + 401098.0585440047, + 58081.404704023895, + -503229.49347082415, + -516166.86088075256, + 451346.79566602444, + 903728.271659594, + 797287.4867424826, + -294160.9967236554, + 980122.8557217953, + -906551.3941280053, + -92182.90756983793, + -860137.3572249926, + 867420.3304084598, + 292496.15142819076, + -579047.2424306716, + 617844.2015491157, + -221022.5224701168, + 467074.80832512974, + -608446.069910384, + 488928.88524644286, + -198644.54249264507, + 911352.5813257177, + -137953.9645391652, + -733520.2290329352, + 103265.52651505772, + 598693.5131562235, + -319558.55418052815, + -660231.0883890716, + 556010.7216273776, + -118091.56975420288, + 974369.1884044865, + 314475.51255708595, + -541821.0095913267, + -561929.4027061852, + 788146.8262313139, + -244721.49285771616, + -542258.2071940432, + -114659.49664475494, + -529158.4997269838, + 800176.1648421335, + -594466.1741608985, + 839230.0626320523, + 472077.23961767467, + 195000.09877010572, + -222791.0167788476, + 889536.5810561178, + -925408.5950043334, + 869230.0455926161, + -215464.5704450986, + -313501.00551293505, + -606904.34134762, + 703609.1234092067, + -275361.9095670772, + -959584.1221476196, + -408199.66874220624, + -539735.3471405284, + 892664.0282068334, + -18869.465932070285, + 180349.67474503905, + -762158.4317981976, + -207687.9957212705, + -890945.354502799, + 361870.09642792447, + -334036.1646177474, + -409583.36704583245, + 884800.9847202292, + -326387.8974587404, + 890228.5196394926, + -876598.2964159332, + 333447.2130126558, + -312114.94122071646, + -108137.38481648905, + 432137.1407241159, + -574066.2570546287, + -141079.84721057786, + -256354.4513338414, + -835033.0048714681, + -134699.36722514287, + 842730.9756153929, + -238053.5735034419, + 973048.6883565593, + -106885.47174873154, + 284769.34556681453, + -742214.1563278204, + 249682.13885541135, + 47520.98024428397, + -800570.2489250514, + -601419.2479553013, + 125194.82913864266, + -979634.5067537284, + 246355.29399315393, + 642754.3630776387, + -781166.1587707603, + 741123.9832342, + 698264.5800532494, + -882673.1103672587, + 917973.3102436778, + 439632.11805041705, + 583310.6403040404, + 3248.862588606238, + 152657.6155992363, + 771190.5433660143, + -909712.5038274741, + -924725.4666325129, + 31695.4348391707, + 581207.6723088049, + -303737.7752301655, + 718803.2194755813, + 407747.7319779439, + 302223.85721211275, + 626975.8618097032, + -555577.0776657347, + -372538.1768851792, + 393761.97459584585, + -120274.37850419265, + -78058.97834357456, + 758868.1953611489, + 32541.26034559768, + 325532.0490863307, + 121838.7832995862, + 673690.111951591, + -270019.43797918403, + 40992.187396631685, + 703641.656901796, + 546801.7210152452, + -647437.8739925013, + 624866.3640141645, + 984541.540488832, + -872584.0010188981, + -842044.9763167446, + 999523.6971017229, + 451061.4026367941, + -783714.1538043644, + 913517.9097674524, + 921122.4288276345, + -436971.9280807165, + 423913.7363855321, + 412823.53685668524, + 642847.0387226039, + -854210.4399346987, + 969373.1855498615, + -912793.8211064308, + -675544.39536996, + -104704.25963279163, + 361050.779728199, + -48784.054381242335, + 271366.43278342934, + 946204.5724373694, + -908705.5713468881, + -946075.1316669954, + -685954.4456943838, + 28113.428232126036, + 300937.7278295571, + 645758.2149665427, + 978712.3751622173, + -133869.6936606516, + -612230.7435148311, + 678016.0743584111, + -600373.0473810056, + -864140.0676472915, + -566282.5537314933, + 749796.7623490723, + 604037.0030399809, + -509640.7415089887, + -216706.73802920227, + 549882.9129817148, + 16726.018219827667, + -638205.7306452933, + -855512.2221158913, + 808622.5623023391, + -390721.48305335874, + 212475.90960610195, + -928689.3966780811, + 214183.55257498223, + -820164.5975064138, + 251932.14804251696, + 460553.05239914946, + 110511.34103057093, + -186845.44473889188, + -660448.9107881075, + 707538.2163043232, + -736062.2053512099, + -63311.286504623255, + -836698.577788465, + -329243.70121681655, + -365312.7924887023, + 951306.2097244962, + -783341.6135948261, + 916474.6722630681, + -604876.4661773534, + -727436.4036086585, + 362136.9669187524, + -349079.1710379566, + -867116.7023433555, + 767518.2495107739, + -777689.0489512988, + -44659.937128784135, + 372870.847969698, + -286460.2217828114, + -742281.4632809429, + -580871.8623989486, + -234950.24425660828, + -135134.21473901777, + 385173.54088815517, + 47727.774492929195, + 523663.9864736594, + -783889.916719223, + -738001.6384320635, + -598964.6551841439, + -212071.8731585296, + -220125.595222187, + -150204.22749384755, + 221274.26456686706, + -685375.4367931215, + 937112.5241186297, + -90098.76840059672, + -294044.6431997588, + 32838.698558043776, + -925735.9463018979, + -410925.7297657842, + -26736.47282568403, + -571589.3988285122, + 215807.38837979842, + 657339.9182578097, + -157946.2963706557, + -53642.54056548501, + 505808.866275802, + 95554.43324296719, + 512939.618519509, + -567938.9299301436, + -212600.76390527427, + 644897.4747924516, + -463838.0100479056, + 381893.68662886, + 935612.7734646391, + -996789.163573987, + -508841.12739114685, + 681081.6694636388, + -937461.1972945685, + 116412.45005795131, + 988005.4977559051, + 622222.8734993594, + -881302.7481469609, + -385207.44806337, + 305693.03914191906, + -405045.1338857135, + -429534.3235379718, + 68673.63805819892, + 651663.9434072415, + -325930.39784147893, + 216382.66624430314, + -291561.60560353595, + -301302.61834368424, + 833760.6881373913, + -873491.3768074213, + -39987.05909251843, + -317024.3234668078, + -188630.5751925975, + -188333.01761814565, + -188120.26418891654, + -188484.3860102188, + -188495.23201231525, + -188320.30928268767, + -188483.56766699257, + -187939.12845477546, + -187818.23537279075, + -187946.7603080632, + -188197.8301536245, + -188683.2303206299, + -188503.10517806208, + -188860.7645077761, + -188943.16984077886, + -189195.75127467563, + -188593.0213982362, + -188664.20873805106, + -188389.7264047301, + -188531.62632111614, + -188870.3516127079, + -188193.26327558464, + -187318.35447427825, + -189806.69206404962, + -188090.2894991313, + -188100.01616886404, + -188174.55996141888, + -188463.2031115645, + -188363.74532847013, + -187605.6195439504, + -188732.3518539843, + -184365.92318507173, + -188187.27869729063, + -188342.5253574899, + -187588.75004952576, + -189081.41342393393, + -188060.79254294612, + -188845.78996045736, + -188800.35117287276, + -188205.98013851763, + -188992.01175242575, + -188221.79324811854, + -188559.27230275373, + -188136.72692104083, + -187550.377833089, + -188302.59803287973, + -187581.63192013613, + -187717.56726598475, + -188480.64988687172, + -188160.1723451082, + -188798.2366179604, + -188090.79273053954, + -187779.636684694, + -188782.71424431694, + -187419.76550716007, + -188621.19074517605, + -187478.37592567242, + -187971.61344319995, + -187778.30145997382, + -187625.15506672708, + -186611.5059282818, + -188003.31924616438, + -188139.1086900214, + -188172.13924848195, + -187348.161691788, + -188223.82733587097, + -188730.91358476676, + -187886.4063756375, + -188597.83399210958, + -188057.1917578529, + -188218.10363143042, + -188210.32065825685, + -188129.95134955403, + -188196.78625864437, + -188493.78120901805, + -188034.45615562776, + -188161.6224994722, + -188173.13991697345, + -188249.23314484346, + -188327.77303545873, + -188516.92372013946, + -189362.5154690305, + -188432.70004235505, + -188115.43097167817, + -188400.87592482337, + -188482.24258789566, + -188788.26218175198, + -189293.36061735288, + -189227.5443430391, + -188131.32433438205, + -188109.2701383384, + -188095.6269492578, + -188368.0469139002, + -188160.44816852582, + -188198.66663852846, + -188806.49024330094, + -189163.69044909158, + -185208.78508001886, + -188125.1114877186, + -188534.0512551924, + -188177.51543305253, + -188133.61205856866, + -188047.21116345978, + -188112.59605802642, + -188194.2363318084, + -188117.56111774204, + -188690.07025037165, + -188656.54845148328, + -188969.58942661897, + -188902.73804542943, + -189437.10887228855, + -188334.74393636227, + -189186.06009143573, + -188965.52824986106, + -188960.47562263405, + -188470.92069224652, + -188476.5108117482, + -188140.7416293255, + -188146.4029455515, + -188071.56456675925, + -188736.90081401754, + -188963.01391432688, + -188834.10272951444, + -189003.73857407318, + -187984.04010321392, + -188504.82116380852, + -188905.6100788483, + -188469.95350641874, + -188517.84736046946, + -188304.5177743197, + -188106.72693407602, + -188224.97547898805, + -188062.4324835948, + -188068.27323340887, + -188836.55324492624, + -189360.7972441431, + -188481.55600240765, + -188657.5093365336, + -188989.48748180468, + -186433.20819659182, + -187618.5955755901, + -188608.14004422975, + -188103.543164194, + -188244.1581110861, + -189169.82807631438, + -187562.6954412684, + -188597.59464444526, + -188094.93147997395, + -188497.24015716757, + -186541.63161815086, + -189066.48960328338, + -188746.57951263554, + -188974.92632111761, + -188911.8607199644, + -188919.7029759385, + -188102.7775258803, + -188377.38150042814, + -188087.26616295817, + -188979.0014231341, + -188075.4320336564, + -188078.45265644975, + -188154.95367904997, + -189231.2675484738, + -188515.5389473062, + -188291.51205377275, + -188851.13864683165, + -187819.11455949367, + -189285.9657250609, + -188590.74143741513, + -188592.58854995444, + -188149.64184463344, + -188010.31234546934, + -188060.2135347956, + -188203.78076926843, + -188646.02879834978, + -188429.88264305083, + -188690.19852216193, + -189267.9620036595, + -188566.821774848, + -188252.50921945827, + -188121.3122975104, + -188198.51232125357, + -188108.59779207408, + -188127.2678753391, + -188081.2142320706, + -188533.7358044206, + -187599.9393852977, + -188530.48273097305, + -188098.39897942072, + -188674.40626418887, + -188083.60697520856, + -188148.15947986252, + -188022.57383190584, + -188130.72283528827, + -188048.00492761855, + -188170.03703741357, + -188251.20192635697, + -188251.14135969765, + -189072.52109977874, + -189421.3965259288, + -188487.8442985911, + -188909.27353199496, + -188597.87223608652, + -187913.85881532487, + -188652.52674561567, + -188835.22735785999, + -188894.10833929706, + -189390.9934105709, + -189304.65399711, + -188772.49683122957, + -187066.75929757126, + -188572.61534136938, + -188424.95815413288, + -188285.79535372727, + -186683.14575150548, + -188557.7500853805, + -189297.14028084598, + -189158.03047828437, + -188273.612045506, + -187641.16543157026, + -188244.37359244894, + -188328.36296298457, + -186973.0577066971, + -188676.80334905128, + -188706.18078984448, + -188123.2736693611, + -188699.20817216582, + -188902.71776057317, + -188705.66239081704, + -188651.89978288996, + -188031.4228654602, + -188507.5871274623, + -188473.15080842157, + -187558.11023642388, + -189344.7791897772, + -188568.03135249048, + -189006.15667271154, + -188907.33441810505, + -188872.08380899028, + -189090.95733044946, + -188466.8921120741, + -188916.39990961482, + -188890.76276156757, + -189031.25167023003, + -190718.20336678185, + -188924.92880801545, + -189611.13910755786, + -189371.07705115504, + -187862.73468047418, + -188350.84668912945, + -188435.49777233123, + -189286.4104808909, + -189329.86947105004, + -188827.20853608186, + -188656.4246604865, + -188224.81397464138, + -188371.826375027, + -188530.07168880716, + -188684.380536833, + -188809.10200272722, + -189064.02055466248, + -188910.5188593822, + -187504.5939470865, + -188238.2747120987, + -189055.06434900622, + -188985.5661371472, + -188817.42461554098, + -188328.4992507085, + -188032.35686812358, + -188989.35923942667, + -188537.1492944953, + -188332.10285588854, + -188224.61386277262, + -188398.43069892912, + -188690.45660123866, + -188764.5244681029, + -188476.21098523034, + -188906.10027535562, + -188598.92292480564, + -188338.53308343157, + -188035.09619434597, + -187471.21704082517, + -187485.8021358164, + -187835.19770223383, + -187808.73897039745, + -188471.24794147993, + -188922.89599843553, + -189190.69568859632, + -188648.39727075843, + -188995.8386599755, + -188818.68200287974, + -189419.4844744169, + -188681.37081393888, + -190034.5154898649, + -189093.07196799477, + -188332.3887565364, + -189148.08464521947, + -189778.0564884073, + -188895.1305372902, + -189361.39928674913, + -189514.26395840745, + -188424.82223649055, + -188154.87099078548, + -188823.15900221813, + -188236.33672313037, + -188290.4882788216, + -188591.75199645569, + -188345.75062919507, + -189486.94419473826, + -189045.68105489522, + -188680.97177115767, + -187854.13914095613, + -187620.89247314315, + -187749.7848825597, + -187628.5971893858, + -186283.60700347682, + -186870.78214397354, + -189075.78000835242, + -189556.635346552, + -190524.42466711518, + -189972.3782485477, + -190110.09263707226, + -189723.06164490216, + -190104.18934124312, + -191447.36757318178, + -189487.1728230268, + -188337.61728350184, + -188634.22396120222, + -188577.10958302955, + -188609.33112603877, + -187678.114505735, + -187393.45287008572, + -187444.98398375107, + -187212.75750088846, + -187430.50547179487, + -187206.375494998, + -187142.3027271855, + -189125.41464985392, + -185759.04101010459, + -184987.91450924633, + -186636.99979215744, + -187026.07843949736, + -186362.3442443084, + -184641.7612714999, + -186631.89998789044, + -185684.77267411654, + -185952.0045384303, + -184904.78554636845, + -184466.17568020654, + -187733.16720291993, + -186005.44685669165, + -185619.78884854354, + -185702.8268145955, + -186641.42486820777, + -186086.34378531418, + -186293.45287911844, + -186774.72272855093, + -186590.54840473336, + -185178.65674855074, + -185915.41451703524, + -185024.2525256191, + -187101.25689315388, + -186246.8336915767, + -185785.58597568647, + -186910.03493563386, + -184853.0590167661, + -186226.79838547923, + -186901.84865346336, + -186721.96101630855, + -184537.33337450697, + -185045.17257071825, + -185015.8206856978, + -186804.32931589548, + -184581.5176270497, + -185481.01398954104, + -186732.67988941015, + -184625.82608792314, + -186816.72669112886, + -184583.06480907716, + -185882.0659107163, + -185038.89476309827, + -185605.49639890593, + -186050.83831655356, + -185545.91429343188, + -185541.4531936617, + -186168.82581792577, + -186748.98809619094, + -186212.79235782122, + -185138.3043013017, + -185886.66303952422, + -185943.81351701595, + -187223.2607479505, + -186155.98693221714, + -186745.5325164879, + -185873.2153007946, + -184956.02375735843, + -184916.01122916443, + -187298.0167096983, + -186400.0437673064, + -186436.31884006507, + -186909.73673779095, + -185995.1502748551, + -184615.0971850325, + -187360.11530786066, + -185731.06588292573, + -185203.40536363234, + -186738.0081330498, + -184452.34215766398, + -186427.8924649136, + -185642.1433378504, + -186666.6053800214, + -185815.18416524283, + -186758.5541269017, + -187178.7309685011, + -185344.84167674318, + -186299.91453282413, + -184913.47542316676, + -186120.90133707918, + -186355.57333992186, + -186189.16120161928, + -184489.52291589003, + -186020.49632337195, + -185978.46454360176, + -186423.1890183184, + -186357.39136631842, + -186197.9689961989, + -185022.86408063665, + -187501.80648056217, + -184448.27042316197, + -185456.1454266718, + -186332.64294302047, + -184782.3347015735, + -186335.73632380622, + -186471.46349538234, + -186139.010172475, + -186316.0422884422, + -185427.96582922543, + -185447.0419864294, + -184490.70631354378, + -184939.12159409848, + -185499.81083646082, + -185420.27932112452, + -186178.47202606747, + -185579.11398649425, + -162543.04429998007, + -185402.97734600544, + -184648.39875714693, + -185873.0454380232, + -185520.70192438262, + -185045.13302486815, + -184686.93743150224, + -184749.34739859024, + -184975.0257556787, + -186494.74258418888, + -186002.60660400984, + -185421.69274864852, + -184586.8813999643, + -185681.38668976224, + -186353.07679074036, + -185564.40303426507, + -186002.1139085686, + -185305.14466217102, + -185778.17229121647, + -186985.55167581502, + -186263.96942212473, + -185857.1772490468, + -185285.2393191878, + -187056.932365551, + -184676.4950788661, + -184930.69103318956, + -185654.1953572347, + -184539.2197937198, + -185426.67525594652, + -185125.95912239008, + -186228.52516030474, + -185197.58467855424, + -184440.56367975674, + -185759.1915587864, + -185972.1252497052, + -186192.2420612465, + -185572.22568055146, + -184521.98992331282, + -184716.55236438496, + -187315.42788165333, + -186517.17238975927, + -185020.17742510125, + -186047.50278945875, + -186067.006560711, + -185935.95217366592, + -187267.3268205127, + -186480.07163780744, + -185251.66599737256, + -186588.42377164616, + -185212.56249281162, + -185768.74376793872, + -184566.5211927391, + -184641.3699119499, + -184521.26817218866, + -187072.0455521363, + -187795.37604648358, + -189725.6419856943, + -187757.4125399983, + -187976.81833544138, + -187648.12160933763, + -188696.13322752403, + -188070.50402783387, + -189274.10474049454, + -189265.0331807753, + -189023.51159242663, + -189150.0722038921, + -188785.27223021127, + -189202.4647666379, + -188283.2622476873, + -188647.58850257998, + -187775.4606762898, + -189047.84983436737, + -188214.95290711892, + -187829.60079496383, + -188860.81131323622, + -187594.8777657927, + -188109.5947916895, + -188135.7951117508, + -188126.67429510137, + -188068.89540782082, + -188138.17806449422, + -188113.8147030654, + -188119.49823623613, + -188123.9780570342, + -188121.51859750494, + -188082.81454332572, + -188023.85098966694, + -188038.4334288893, + -188097.6602407291, + -188124.65543545736, + -188079.8329504583, + -188129.3743830729, + -187109.55145493208, + -186870.85476427, + -188380.61838572615, + -187896.4403547719, + -186832.87175251383, + -188228.79178433472, + -188560.0382335581, + -189116.42239682464, + -187271.2309208508, + -188311.63055655325, + -187739.67693354897, + -187063.92444055318, + -187917.59257197715, + -187718.91875175654, + -187835.8854861633, + -186803.90033266746, + -186803.59234443662, + -187788.5747429511, + -187893.88302668915, + -187975.0076209473, + -188925.1717325238, + -188021.2228785292, + -187932.34492398132, + -188182.1801783731, + -187688.50752132258, + -188117.50710319917, + -187793.53772320974, + -188261.16935105162, + -187834.80609488173, + -188539.05431916684, + -187997.42121583116, + -187612.6161505803, + -187887.72467534128, + -187994.01573117293, + -186612.36184898173, + -187574.2721654691, + -188185.43487919736, + -187645.64505814915, + -187791.77040384425, + -187981.65234561847, + -188328.62880040111, + -186953.31740903624, + -188465.46750448947, + -187228.86858406416, + -187937.28779075225, + -187728.251997722, + -187741.77573005384, + -187158.59874792627, + -187975.58965748092, + -187927.83620065072, + -186563.98191544128, + -187904.33904992894, + -186517.6751626997, + -188788.84774377767, + -187457.0743764612, + -187427.58017047317, + -186780.2984968334, + -187516.61720349116, + -188036.28044668204, + -187566.1094978599, + -187881.7928789883, + -187307.95076337553, + -187950.03622824297, + -187244.0460795401, + -187306.8260455551, + -186941.09836380862, + -187281.55271362027, + -184627.2559353374, + -187265.23927959087, + -187879.37136154508, + -187821.3765527352, + -188384.35926426292, + -187883.60479267285, + -187489.15417484118, + -186717.18778761072, + -186287.99929102132, + -187805.10710923118, + -187648.9973224916, + -186146.62535800086, + -187493.66055654176, + -187627.45216360627, + -187246.44784323307, + -186544.6994452667, + -188210.8583614681, + -187744.5423702615, + -188036.86055892534, + -179133.13735543872, + -187953.2923392146, + -187258.52951028265, + -186551.5718918603, + -186296.09077217794, + -185926.73089974615, + -185395.93395849012, + -185879.15090298475, + -186605.81963314634, + -186705.75237789055, + -186345.44096085647, + -186875.28527664224, + -187527.73357511935, + -187567.52052119686, + -187774.1615382006, + -187413.64255787656, + -186699.2701887279, + -185739.58717722545, + -187270.5390270905, + -185576.15263923115, + -186350.72668639437, + -185754.93903104283, + -187305.67084880813, + -187046.43325413764, + -184234.61115541728, + -186972.57418070477, + -183824.5305223081, + -188073.66592800152, + -187728.06688195525, + -188874.14340416354, + -188459.36009707808, + -190374.15560172813, + -189063.428793386, + -188003.3208638465, + -187986.19049612174, + -189149.42833616625, + -188614.21318785282, + -188591.14091919875, + -187899.4374158756, + -187973.27776270141, + -188306.96972666128, + -188623.6166852075, + -188689.9069400571, + -188243.41945504982, + -187366.96961790608, + -188433.4935194492, + -188344.57017201104, + -188096.6720864056, + -190042.38359170523, + -187776.081074906, + -188131.29016873462, + -188443.1461449862, + -186553.62133220496, + -188002.51793235893, + -187969.50621106548, + -187790.99540247666, + -187346.30214189566, + -188420.23770977926, + -189713.61547225437, + -189579.9504364677, + -189111.4078263055, + -187949.63698018505, + -188522.7223023232, + -187937.26783141587, + -188130.4537181713, + -187934.23814137233, + -188172.74538859082, + -188739.05313596342, + -188776.96293003074, + -187409.36259250416, + -188147.54710943915, + -188912.98663177204, + -187872.6633840466, + -187983.6774823736, + -191242.41426244462, + -186152.69967393065, + -189386.63393714104, + -187511.94987432053, + -188311.50521847996, + -187429.57924484243, + -188069.86804999335, + -187683.73338858323, + -188441.93108825223, + -188229.31889099232, + -187736.63135462272, + -187992.83317437719, + -188118.8223297085, + -187582.59747798453, + -187476.39314391202, + -187234.4612318493, + -188221.49233807725, + -188309.63351146277, + -187764.81958165232, + -188226.41949047343, + -188297.22695862473, + -186800.93628583517, + -188080.7633837035, + -187297.44363830626, + -187963.97664086308, + -187969.50842343477, + -188021.3687563727, + -187972.53307352384, + -188078.52295971283, + -188978.81025809547, + -188226.32844361593, + -187679.47433074287, + -188763.44516650846, + -187724.4325574573, + -187610.1377688772, + -187354.91901122752, + -187993.51411086737, + -187185.02879405092, + -188028.29034553113, + -188188.52643226265, + -187803.06549553943, + -188463.31349680066, + -187834.08698576453, + -187975.40467572561, + -187987.12541376214, + -187517.9128709205, + -188097.1885506176, + -188083.10255481664, + -188183.12236589222, + -188158.79572465117, + -189953.43285506195, + -187785.39966082262, + -188776.05672438274, + -187556.7890851402, + -187788.15822833957, + -187203.12559746174, + -188208.85344747134, + -188387.13883004195, + -187775.03036984504, + -188034.61082553468, + -188046.35626590863, + -188101.37584040826, + -188094.00217598723, + -188407.58725157817, + -188482.5310615353, + -190270.05275175368, + -188517.9738436573, + -188362.35931727977, + -188526.0290014248, + -188562.5678949605, + -188777.68796030607, + -188198.9950582187, + -188204.97639419296, + -188894.20780772806, + -188877.75447919974, + -189462.90626881117, + -188932.21737437064, + -188795.16991496552, + -188977.4576085, + -190074.33054887285, + -188697.3813039972, + -188898.08155878072, + -189113.8715419739, + -188845.84495555653, + -189204.34458726516, + -189029.22851713432, + -188216.02236323402, + -190233.5032244461, + -188846.81963719826, + -186096.45797461583, + -189624.14425346788, + -188972.66635322545, + -188756.88925757885, + -188954.19885795217, + -188231.47750730137, + -188228.14569705023, + -190039.66227026214, + -188955.70075548417, + -188817.15343371764, + -188911.31765919903, + -188817.64018552104, + -188387.0195355698, + -188217.19279192775, + -188215.48726479657, + -188940.66433230025, + -189435.39611651178, + -190181.63074577937, + -188605.13434911743, + -190160.9077330154, + -189966.56620810815, + -189999.31667014628, + -188266.23380139962, + -189466.79866331397, + -188990.40385466997, + -188104.07716877718, + -188549.88759442163, + -188275.44850877777, + -188155.0331583998, + -188220.5960329952, + -188295.15735575298, + -188327.76182227116, + -189229.17376885633, + -188397.25088022946, + -188984.20542329797, + -189302.6007381189, + -189570.55632521573, + -189768.79952321426, + -187278.70253330644, + -186223.42382426502, + -185538.47106454833, + -181316.88675453834, + -188577.68911072935, + -189429.78822251226, + -189243.0403538959, + -189251.3089257868, + -188563.19407494835, + -188854.39170410443, + -189260.15851219348, + -189231.4279713372, + -188786.31293626514, + -189104.52316957942, + -189182.68148483842, + -189072.0465506361, + -188705.65600489438, + -189967.28432425318, + -189454.98816233617, + -189757.15706957557, + -189951.737106575, + -188991.42081728007, + -189636.0078208734, + -190209.4983373492, + -190012.9068404736, + -189864.05117757033, + -190050.28712576124, + -188866.95996207467, + -189208.00816211943, + -189099.37048930768, + -188483.7955207067, + -188865.2383597738, + -188899.90215259913, + -188841.91500915465, + -188310.94209393, + -189567.91347630875, + -189475.84370340698, + -189256.76102591655, + -189118.55548115997, + -189287.09541988553, + -189836.02265256474, + -188267.79946330914, + -188734.64348648756, + -188499.89103916325, + -188424.26831552497, + -188471.16226267573, + -188555.01680973297, + -189062.6660397884, + -189368.04321790536, + -189207.12335782725, + -189901.5373675402, + -187627.1081749794, + -187857.75124697632, + -187760.40303329699, + -187858.44732430877, + -187957.10022871735, + -188486.6627500266, + -188672.58677714274, + -188275.58704858087, + -187965.95478834442, + -189024.27048204138, + -188563.84477598095, + -189010.6567271695, + -189191.62724059867, + -189723.8971601925, + -190283.4150628221, + -188285.74392279977, + -190048.63972499638, + -186790.41009242184, + -187248.01430917686, + -186364.1134175767, + -184046.07233791953, + -187468.17123172226, + -187004.07979892765, + -188726.61235021544, + -188040.02763009068, + -188376.78890401422, + -189797.29543539853, + -188727.56930522466, + -189767.66077987218, + -189402.54379102314, + -189855.4536758818, + -188921.83564302602, + -188744.70646205018, + -188570.19383203107, + -187452.2953444194, + -186432.95981047777, + -184493.4638333277, + -189681.03829755695, + -189180.69142051495, + -189494.99190465917, + -189418.3150618224, + -189406.1804548177, + -188956.60901643464, + -188286.47377093224, + -187847.91597445504, + -187772.9366644242, + -189454.44287559506, + -189336.90265698743, + -189688.38226235847, + -189642.32271672558, + -189773.80511431769, + -188623.37539469652, + -188059.06910793387, + -186490.92481183048, + -188035.43847485105, + -187899.97545537198, + -188759.4892448286, + -189867.76456386773, + -189966.51788839934, + -187864.57873495863, + -188459.5042273985, + -188339.61248515616, + -188482.4680775093, + -190059.0897295911, + -188449.63396273268, + -188564.80121031718, + -188934.75013167982, + -189407.17407776418, + -189594.04877099616, + -189928.77888545024, + -190063.494640501, + -190324.0838511919, + -190002.50380021115, + -189351.62227285848, + -188667.17352392792, + -189386.891690723, + -188871.73421564943, + -187862.98846391006, + -187369.8494239768, + -188047.51511369456, + -188898.55180012845, + -189023.57039513884, + -189300.64988114213, + -189304.23943329643, + -189802.91324633866, + -189198.96904724132, + -190149.611876793, + -189688.97127087243, + -190162.42457619242, + -189121.32206798793, + -185673.72485317432, + -187602.98284577316, + -187118.0943589478, + -187049.29511418982, + -188760.63914555783, + -188352.16461745944, + -188788.10931841948, + -188307.55943122407, + -185447.3982690385, + -185647.43874032347, + -186600.68816277097, + -190030.77698961753, + -189844.44305599996, + -189312.96716657415, + -188863.83470003767, + -190030.6059389626, + -188831.9884617397, + -188800.5645587159, + -188270.16098356986, + -188288.73056814942, + -188325.90735821644, + -187036.11661907207, + -187430.4310402768, + -187168.63791618857, + -188085.78649439852, + -188069.8757916443, + -188377.16521032414, + -181388.6636291559, + -186958.0626639662, + -187792.11829844635, + -186964.88142731908, + -186890.040734751, + -187516.96845806637, + -187371.3989655883, + -187673.56257634406, + -188468.66418560426, + -187827.28797163125, + -188015.37292595976, + -186963.61210988168, + -186909.75756834846, + -188500.0586157652, + -187625.4001681701, + -186957.07730695538, + -187126.5717021234, + -187092.89589648045, + -187547.0278070721, + -186215.06335089865, + -186961.92845610308, + -187072.4040574778, + -186908.50557712573, + -187018.58994966594, + -186937.57642460006, + -187082.89602712472, + -186995.12405826268, + -187033.26399727527, + -187917.0637720583, + -187031.77413979647, + -188265.26483815484, + -186858.39035521806, + -188079.2339962156, + -187486.7108342232, + -187583.99768382817, + -187642.49697600745, + -186233.90314590227, + -187072.79060259266, + -187621.1473503119, + -187006.72435799113, + -187790.78028682835, + -187892.14861530808, + -188892.18297269146, + -188905.7409194041, + -189138.7526208499, + -189186.7934963984, + -188827.6268164547, + -188634.27361204935, + -188976.67306946605, + -188450.6558889738, + -188410.6730522339, + -188982.28023135234, + -188901.95839418104, + -188293.05528383492, + -188304.60597921925, + -189027.32662829437, + -188703.02110051003, + -189670.30367153513, + -187994.90708299744, + -188227.91479363065, + -188959.37304124728, + -188384.46387554856, + -188423.99184216498, + -188238.2147196666, + -189253.3339606655, + -189185.39353573837, + -189354.40611590687, + -189275.31015895875, + -189331.45564091532, + -188567.58941515462, + -189030.19349696804, + -189196.05341570152, + -189004.60313990066, + -189177.62541549082, + -189238.99357410418, + -188534.02363205954, + -189103.72355039057, + -188253.45353298465, + -188413.92210597807, + -188679.23184501874, + -188187.00891794523, + -189002.36578898947, + -189314.34425935848, + -189077.88806110198, + -189112.1678726178, + -188644.9068178371, + -188854.15596558747, + -189111.59184893724, + -188992.06395225637, + -189040.44316666905, + -189146.26340260505, + -188960.36420407722, + -188977.27182089942, + -190700.1111637919, + -189013.04796735963, + -189379.49234130658, + -188621.49299553412, + -189304.65394903507, + -189125.53360787733, + -189135.01597268603, + -189115.81575099364, + -189157.19198902682, + -188738.48340001726, + -188921.90699962387, + -189360.31796682146, + -189070.91343901315, + -190093.18905705298, + -189047.08598048709, + -189299.65616548483, + -189095.541722688, + -188344.0930836277, + -189171.19029766714, + -189042.28405360697, + -189119.99497062556, + -188237.25251034857, + -189195.42176761568, + -189062.39520516488, + -189376.82012229282, + -188752.9247450727, + -189405.91331066622, + -189552.3086334869, + -189502.59770853355, + -189170.9678004025, + -189264.0420911513, + -189503.85032749924, + -189204.769419827, + -188590.4523846817, + -188232.11752967277, + -189226.9114919114, + -189164.54245151358, + -189027.77132385422, + -189230.86162244383, + -189066.13649801663, + -188975.60125457792, + -189062.5039727102, + -189350.8806358681, + -188269.15616936548, + -188968.20482936336, + -188815.02865766146, + -189043.76513096062, + -189256.66974275385, + -189395.66537570828, + -189168.39200200443, + -189180.9410564133, + -189294.69067324145, + -189527.4692278551, + -188818.7674323714, + -189257.13683550936, + -189100.23306250124, + -189550.2287127826, + -189290.7525839601, + -189267.28726523466, + -188239.65910895087, + -187509.8701143695, + -187500.4930551508, + -189204.5507592727, + -189093.8532022557, + -189171.2221999843, + -189071.60158787234, + -189093.08976506037, + -189407.5843037053, + -189481.84477904785, + -188480.6248001793, + -187643.83786716606, + -188410.19015950867, + -189244.75125275418, + -189322.13919379382, + -189036.37157464225, + -188851.6819268115, + -189227.67375761928, + -189075.98850339456, + -188744.13909734573, + -189286.49138647597, + -189153.23345672205, + -187858.47857020143, + -189295.42475244775, + -189309.40406356056, + -189446.06561523385, + -189270.95690073894, + -189371.36833568558, + -189045.81476778517, + -189090.02633489924, + -189167.51060793153, + -188997.7891351952, + -189166.2520355059, + -189128.02287472552, + -189377.71392390993, + -189261.63282785052, + -189189.44204252012, + -188832.0659363745, + -189372.78444553076, + -189522.90111062877, + -189215.01194453132, + -189188.26284097042, + -190170.23694941032, + -189137.65822856384, + -189532.13206147918, + -189244.33702691298, + -189342.90886317022, + -189601.42301397282, + -189001.4148694418, + -189031.42372914587, + -188346.60400362083, + -189432.19725203505, + -189383.60172976655, + -188396.23465801778, + -188159.4341766519, + -188977.16363192897, + -188924.8418972556, + -189025.99171597915, + -189271.29959663784, + -188897.62049298765, + -188978.69804431516, + -188947.4139822555, + -189026.34351702797, + -188711.72538129365, + -189104.3400123642, + -189226.8573059561, + -188884.40182536017, + -189212.70822393885, + -189665.23911238607, + -188941.9994408223, + -189434.8299251847, + -188586.70146604645, + -189292.63817566453, + -188468.64488827685, + -188955.28240884622, + -188530.70142542297, + -188888.66487646574, + -189282.2219107152, + -189684.28770806687, + -188955.7460585158, + -188128.57240646365, + -187792.9688123335, + -187942.22047264426, + -188476.1018531056, + -187953.14158568936, + -188243.55188231324, + -188224.56475781766, + -187566.37581145845, + -188187.95018705592, + -188277.6495023525, + -188172.14856838898, + -187507.9968975285, + -188728.81774535606, + -188290.08218015765, + -188107.46199151454, + -188848.55062442037, + -188717.3203540903, + -187899.4158525461, + -187856.58036489805, + -188204.3724056574, + -188169.14538504407, + -187899.237151973, + -188069.92329870115, + -188430.55900018988, + -187701.5703586604, + -187761.59383487626, + -187872.25388739264, + -187753.2084302758, + -187765.59237745742, + -187809.27238686706, + -188024.30685571092, + -188424.35361027447, + -187977.63799550864, + -188680.41340104947, + -188480.5260935519, + -184929.26330034356, + -191630.47589507297, + -189739.38463051288, + -189873.68737482626, + -189708.2272477365, + -187892.65214688177, + -187863.91165705194, + -189505.58704021748, + -189880.0757312348, + -189842.1324431489, + -188854.43713783327, + -189536.13208955494, + -188299.83165938678, + -189105.21478588888, + -189296.96733505363, + -189498.98953316532, + -188836.9731938192, + -189477.9687240938, + -189686.82438527062, + -189266.72814157297, + -189703.45302802385, + -189135.00336817247, + -189278.65997138573, + -189241.36313499292, + -189561.96308897558, + -189390.3446237331, + -191279.9278832995, + -193001.23653771952, + -187859.86995225446, + -189738.0525135467, + -189517.96720841108, + -190973.23484101656, + -189777.8358685715, + -188921.5431373296, + -190144.75403043907, + -188947.86956916028, + -189742.155668336, + -189692.5200326185, + -190156.38084035812, + -189713.56303116062, + -187405.71770728158, + -187389.66797592156, + -188640.45100665794, + -187622.41354491585, + -188826.8178670996, + -189837.0067281555, + -189774.66595851514, + -189615.88052612924, + -189272.23379027276, + -190029.28538193705, + -189844.7798702007, + -189790.5959091938, + -189991.2311607774, + -189682.05578414822, + -189987.64885100897, + -189360.52446627786, + -188528.04369924997, + -188875.90551008, + -188016.10442522762, + -188167.02460559944, + -188123.19483452023, + -189105.2816803546, + -188987.74156072343, + -189303.08944739285, + -189317.7229192206, + -189250.6861714318, + -188349.47236547497, + -189577.61389462257, + -188477.95331527485, + -189378.03325846698, + -189231.051408616, + -189290.40865383588, + -186632.56137489137, + -189396.51935593525, + -189490.2551625836, + -189589.28553677927, + -189048.4956879801, + -189131.92422966988, + -188104.6983502157, + -187704.763876957, + -189015.4951605007, + -188563.3727238801, + -188868.86823729656, + -188185.3569399699, + -187448.3572804437, + -188272.94824742872, + -189247.54195982916, + -189033.53333615928, + -189071.23203874825, + -188876.74592565937, + -189238.02623730994, + -189115.05770210535, + -189231.03855465443, + -189259.5246750294, + -189305.01453652733, + -189185.22678595383, + -189778.15834495376, + -189298.76112672515, + -188757.12524904165, + -188126.8200295349, + -188760.00770833693, + -188933.22539579918, + -188674.7471497121, + -188336.20643323814, + -188180.73220770183, + -188519.90581438286, + -187932.28950243027, + -188952.85593883562, + -189097.48187960163, + -188308.2995444295, + -188124.98331170535, + -188393.99052171747, + -188347.58050575748, + -188876.59928470026, + -189345.9124851909, + -188180.15644195993, + -189045.54815632163, + -188937.80405805522, + -188767.47226676266, + -187601.13526565803, + -187830.46815133246, + -186931.52009524958, + -187722.01964145992, + -188625.28745242656, + -188602.07939852623, + -188156.60345261396, + -189331.9915999827, + -188984.34951568441, + -189094.7454633695, + -189479.30333773256, + -188834.4604537936, + -187923.30486023927, + -188635.053643839, + -188696.782377594, + -189006.25883621728, + -189387.78435538372, + -189801.49095297614, + -189489.71907673345, + -190382.19427593888, + -190294.21864983928, + -190368.25817851265, + -189554.68072761627, + -189522.66677498195, + -189623.56254580448, + -188251.55613681383, + -189916.311805951, + -188292.3869375497, + -188271.77595069932, + -189041.9225197264, + -189199.17908190106, + -188285.76996994668, + -189537.7817031003, + -189352.73404518928, + -189471.04120599278, + -189679.53787245677, + -189408.21023611428, + -188999.3408802612, + -189645.5000292996, + -189431.51059923717, + -189615.4869081341, + -189750.14044068835, + -189801.76573120884, + -189558.55733558614, + -189504.89278882294, + -189522.26639614848, + -189536.3625339415, + -189750.30848512865, + -189442.69507087598, + -190034.61897906184, + -188801.60294815066, + -189834.3163791867, + -189257.69084732296, + -188954.66274327494, + -189640.1945004268, + -190115.39552164622, + -188306.66890581805, + -188312.41502651962, + -189659.46917226465, + -189317.8406785239, + -189302.72898643688, + -189169.03781422778, + -189731.85447908618, + -189446.80721719595, + -189275.603776678, + -189693.2055888678, + -189753.59627716336, + -189523.92981689292, + -189582.96181379963, + -190328.62833538937, + -189786.84207760714, + -189751.89635663538, + -188815.1944085261, + -189224.11613190582, + -189796.11674781732, + -189932.6237612485, + -189552.86218391886, + -189830.91246389045, + -189498.42730696275, + -189646.04277723422, + -189493.25493438917, + -188868.21171990343, + -189430.8749071048, + -189418.3979333305, + -188294.41257727327, + -188804.39291762855, + -189383.2134141077, + -189408.30108345978, + -189622.2992613024, + -189336.00050606855, + -189494.18089072162, + -189346.3496150686, + -189517.63745548116, + -189562.47650992335, + -189732.76841517194, + -189536.8343224868, + -189457.759153216, + -189532.57203367492, + -189507.00155087592, + -189055.85878078622, + -190253.9554374968, + -189453.52787322368, + -189199.04942802034, + -189518.1963457777, + -188415.7452673843, + -188922.00741313785, + -189565.95036095765, + -189599.43976925078, + -189447.3213721349, + -189592.0253847243, + -189704.67210231442, + -189429.51527102874, + -189549.2248295347, + -189732.63425983736, + -189156.18143433816, + -189593.73394135686, + -189255.76286114688, + -188480.57065962657, + -189396.15620173485, + -189119.4502426223, + -189099.2895300957, + -189372.92718386388, + -189530.79236599515, + -189323.80480814414, + -189638.78145869536, + -189285.81117966407, + -189920.08786925004, + -189568.58179882303, + -189490.09496069627, + -189529.25512316148, + -189325.65832119124, + -188851.56730320977, + -189408.06502858872, + -189515.4108281232, + -189356.0500464047, + -188887.3973668111, + -189225.07031019146, + -188770.14684657753, + -189474.47554588024, + -189774.7476661943, + -189656.34211244347, + -189485.92172726392, + -189381.9654969643, + -189641.00924985827, + -189677.82690449522, + -189393.09189406977, + -189725.99119278492, + -187911.2710909405, + -189560.62472315767, + -188296.21414801962, + -189686.30027570974, + -189068.82122443494, + -188278.08712796614, + -189634.1669562323, + -189557.7983769141, + -189363.34000394432, + -187689.0483805537, + -189640.61261352964, + -189583.51700064118, + -189321.36395637903, + -189328.29367726677, + -188925.91974127013, + -189730.37815090845, + -188921.42443902968, + -189511.2209653839, + -189692.25637540634, + -189322.72491470815, + -189703.6139847984, + -189590.25078595642, + -188547.46824695042, + -189621.15970611246, + -189554.07262256934, + -188935.33612228493, + -189468.52121776558, + -189726.9839142311, + -189604.051822791, + -189172.60980398947, + -189516.1723814726, + -189606.13981497308, + -189818.32592583625, + -189832.11385822124, + -188799.02956322636, + -189141.57950872142, + -189643.42341201042, + -189659.6677604097, + -189525.22410298133, + -189794.1589935236, + -189493.67651902192, + -189257.11848075397, + -189190.8420644383, + -189427.21294576538, + -189688.7712261936, + -189402.41667130496, + -188695.04808894158, + -189566.4665127886, + -187695.57614406702, + -188758.55641030593, + -189744.39363754724, + -188470.03479631987, + -189424.87314537496, + -189689.52817768222, + -189447.98748217383, + -189736.91566883595, + -187803.1415402722, + -188615.64024283146, + -188516.52943830803, + -189681.64351749184, + -189583.2115684275, + -188560.8123839254, + -188808.58568177576, + -189710.93255919393, + -189406.02024615998, + -189499.59645998385, + -189483.72175297773, + -189357.24837546385, + -189474.95530109046, + -189782.36536876537, + -189258.09496306165, + -189596.714753665, + -188890.3664574394, + -188764.91305512202, + -189282.2159957167, + -188923.44433292217, + -188971.43179267063, + -188253.40886764217, + -189394.1110529634, + -188553.8667206884, + -188247.0553738609, + -188500.12824679536, + -188900.62386161956, + -188881.29006931305, + -189122.419390301, + -189049.75416535302, + -190290.13307072833, + -188263.30442852018, + -189655.53739052103, + -189593.4766049247, + -189658.27998301366, + -189608.43740396632, + -189240.7395503507, + -189401.6122354161, + -187798.89120280318, + -189230.37339317877, + -189545.16625437708, + -189612.82599109344, + -189466.51428955715, + -189424.6200709084, + -189622.41040500058, + -189883.7142335665, + -189350.129160721, + -189397.67019498325, + -189374.36013442566, + -189312.9879746982, + -189387.4220162738, + -189456.31330892164, + -188757.97295287042, + -189874.7197630853, + -188938.53921387976, + -189174.94373042753, + -188249.57030670525, + -188260.60515116138, + -188336.6986691293, + -187680.87764689644, + -187251.2510294042, + -187262.66438443118, + -189570.2833336003, + -189763.14706397685, + -189566.8655000776, + -189779.29013892455, + -189298.26902639432, + -189143.0578281467, + -189430.35956357492, + -189539.6584614828, + -189404.9591139528, + -189661.95294361803, + -188758.00763305573, + -189602.10511057184, + -189832.73284060266, + -187986.2925046758, + -189638.5204736213, + -189307.41763655184, + -187325.8474831565, + -188953.73820219914, + -189477.09111556568, + -188608.7669540309, + -189663.5967077643, + -187902.1950427761, + -189204.27918840424, + -187963.18284034188, + -189589.51983073587, + -190125.8549583156, + -189597.31022038838, + -189659.42206924004, + -187522.90987740675, + -189314.3318274669, + -189123.09886013696, + -189438.33583540513, + -189190.64141113937, + -189506.4879067685, + -189996.88173583825, + -189506.9208114558, + -188577.0164252054, + -189355.94588633478, + -189514.97306091062, + -189411.36286505614, + -188802.23079391493, + -189518.63063531838, + -189595.0859664761, + -188849.11552920155, + -188741.18667656466, + -189712.08090202446, + -190133.98681796715, + -189423.36465952417, + -190181.23310247317, + -188309.38290130332, + -189261.45093796574, + -188229.01322122104, + -188225.00588929723, + -187746.04762354173, + -189649.05343454154, + -189292.69033396387, + -190439.80952772064, + -190167.4618217757, + -189777.63112573957, + -188400.0367418278, + -189502.7870754483, + -189631.87542889913, + -189379.6564968773, + -189825.04437502267, + -189697.85110122422, + -189730.2105260354, + -188642.19864755738, + -186804.33417873908, + -189138.6052683931, + -189186.61889509932, + -189212.86844851545, + -188462.65509945378, + -188255.37224721114, + -188039.00270855022, + -188214.46720173355, + -188543.17964185297, + -188551.65872850412, + -187924.76781139948, + -188265.91476313816, + -188620.13710179558, + -188797.5960817814, + -188675.01145983627, + -189585.23416607562, + -189073.2131275974, + -187778.6034982877, + -188715.31186791277, + -188783.67793234484, + -188686.17124409127, + -188717.35827303602, + -189175.1779532503, + -188752.45189673398, + -188617.7522841282, + -187330.48424043634, + -190049.08294096706, + -190134.12788602014, + -189436.51072175297, + -188825.24595688403, + -188748.41080724396, + -188632.32322923772, + -188755.87124533966, + -188739.89476481508, + -188763.09490078397, + -187046.38487493325, + -187967.45205088542, + -188236.06352852797, + -187916.56938459937, + -188277.7110845498, + -187856.57507774787, + -186309.0004789828, + -186448.0761262461, + -187372.14693328072, + -186713.31626898306, + -188161.6300058421, + -187294.3067848806, + -187587.45047793945, + -189873.55077472897, + -187521.8824872184, + -188348.79948910305, + -189862.6413098155, + -189857.14185344288, + -189824.66753653612, + -189879.5254089133, + -190932.80865181403, + -189214.1812788162, + -192162.3269836861, + -192524.44290793836, + -192115.1138136991, + -188972.92135698648, + -188186.38974025362, + -189043.94703463372, + -188886.17592031375, + -189232.21457982747, + -187820.75210574528, + -187459.03461725367, + -188430.993490856, + -187553.03431553903, + -187734.42575994402, + -187621.21937398304, + -187659.66124892057, + -187626.4788257705, + -188263.86255790308, + -187368.52340470123, + -187348.7681817943, + -187682.18281394336, + -186584.2836090355, + -188630.62199919912, + -189687.1717524016, + -189392.44618215397, + -187036.08464524065, + -185139.07792481993, + -185139.72357748792, + -185172.0562297005, + -185223.1558109515, + -185302.5690199798, + -187760.736691232, + -187476.2628433151, + -187427.76982279553, + -187674.51102416526, + -188223.1502255291, + -188223.8025959115, + -188238.87170758605, + -187003.89280649187, + -186542.96075744857, + -186761.60951942398, + -187272.80604379578, + -187924.91100981052, + -184843.25042613945, + -186903.6585095412, + -187363.62555888496, + -185290.586235629, + -185165.9576632683, + -187636.6401471091, + -187838.56400906073, + -187819.29574656484, + -188059.9314632963, + -188290.363652496, + -187943.2258883462, + -188099.9720945511, + -187941.9237365848, + -188412.73187816486, + -188208.82409906888, + -187463.4585977219, + -186479.6446350026, + -187298.47957976593, + -186539.61527157956, + -186056.69045446397, + -185951.46023938467, + -186802.7182162248, + -185550.27627308652, + -187045.1102206911, + -187073.15041134102, + -187254.26535223567, + -187989.30944414838, + -188000.4487104779, + -187906.78280195483, + -186681.1635380391, + -186905.37079495806, + -187920.62374587829, + -187659.66132080328, + -187484.91206357404, + -186546.9811101811, + -187389.5387646811, + -186874.71930400067, + -185839.00663893652, + -185362.02426270678, + -186743.67631044146, + -186943.91875814958, + -185611.65728113687, + -189084.9074632962, + -187484.60913141377, + -186793.02846859442, + -186643.42136934042, + -187063.1911515589, + -188748.28453514946, + -188439.97049711825, + -187368.1489177038, + -185263.2297970409, + -185482.56088321618, + -185326.3459551552, + -185673.3450969795, + -185642.18789406322, + -186143.89671308498, + -186797.5306394901, + -186312.18585102723, + -185867.34727359438, + -186375.3612237879, + -187561.3991996525, + -187194.3312948634, + -185589.1946310685, + -186662.39995437322, + -186235.288447879, + -186405.03105329376, + -186892.55000415185, + -187294.12286925653, + -186270.0295100747, + -186078.48063323216, + -186075.9211697261, + -185912.47186195152, + -185961.2957648515, + -186232.2255226064, + -185912.22434019603, + -185580.70430677492, + -185946.11501890482, + -187393.59499414876, + -187309.87049034002, + -187472.30498547002, + -188817.03562402542, + -187333.3919005783, + -187868.89767386837, + -186633.25689314547, + -185460.96898446843, + -185628.17632635156, + -186311.45221873518, + -187196.24604930566, + -187276.60266658547, + -186565.47062728266, + -187852.313928534, + -187557.78543535888, + -187719.1913994157, + -187972.83650257328, + -187960.29676871523, + -187911.10264278692, + -188630.8453506235, + -187496.3832271789, + -188349.65680053786, + -185809.88961724282, + -186934.3360415499, + -187629.56098631225, + -187007.5772303797, + -187291.49824795782, + -186121.19306263936, + -187012.46365318543, + -186679.30936474973, + -185419.46969980895, + -185379.2656174194, + -186901.45563588393, + -187807.15683063408, + -187994.28122602464, + -187308.64998441696, + -188350.75252464804, + -186863.31396841115, + -187720.11017674877, + -187287.84841348106, + -187014.84911061524, + -187234.71318697152, + -187204.27240844848, + -187291.09671769937, + -187094.25690049428, + -187609.4187582251, + -187718.59193484212, + -186509.34289278075, + -188147.50652534553, + -186342.25549461835, + -186442.0690847481, + -186558.77337581848, + -186655.24842534095, + -185972.4842459763, + -185153.37826635112, + -185765.32519087984, + -185186.70637920234, + -185070.59019309614, + -187673.30496193952, + -187761.64483234545, + -187256.5867709403, + -187366.18291352072, + -187524.54517428228, + -187510.56934074408, + -187529.40680193529, + -187454.64105987392, + -187519.31181360115, + -187123.06288107514, + -187477.63157623674, + -187257.24688779732, + -186882.32732606877, + -185744.03743667188, + -185647.84002902228, + -186969.98767638186, + -185902.72286645, + -187303.182190925, + -188126.80564361744, + -187360.58931040493, + -186921.38953855107, + -186929.557108324, + -187311.67435395776, + -187395.2983959365, + -187080.93819916193, + -186222.8395883536, + -187442.89148744586, + -188140.00051928166, + -188151.46145141035, + -187564.53232755137, + -188215.09477527425, + -187376.35249447948, + -188189.81482384, + -188034.83047066652, + -187747.06924668472, + -188800.80256482895, + -187102.12973368363, + -187917.99657074743, + -185057.76047148168, + -186486.71688355424, + -185130.529001914, + -185147.71919034136, + -187135.60577403157, + -187646.46474410285, + -185284.9406615433, + -186286.42140426437, + -186595.59491334032, + -187638.170551301, + -186478.24245183423, + -187993.35866484616, + -187229.13331112568, + -187938.08243107222, + -186825.88912431858, + -186708.8994492446, + -187164.0688469574, + -187461.08290298193, + -187221.3523749667, + -186992.1811585919, + -187142.28778417234, + -187056.31471454934, + -186746.17776224224, + -187434.38846414318, + -187826.61084050385, + -187003.93902302586, + -187742.596093895, + -185540.26300420432, + -185199.27035351453, + -186980.8144633269, + -186369.47424236263, + -184908.1166309739, + -184198.70078145587, + -186439.9649841702, + -185019.88314560454, + -187639.15760068822, + -186765.58714734673, + -187686.9419411423, + -187048.28032769196, + -186794.89125618731, + -186822.41511138683, + -187563.39014736656, + -187385.0923661435, + -186888.21059285887, + -185829.80948671233, + -187041.9723647092, + -185125.23152722794, + -187095.6197581376, + -185897.53117830772, + -185769.0972955552, + -186826.48542049516, + -185756.5836062822, + -186973.73232271746, + -185101.1509899331, + -186015.29034764567, + -186628.54466062496, + -185868.99053592625, + -185892.3867642372, + -185982.92772953527, + -186563.35158898422, + -186333.64344871804, + -188137.57555694113, + -186649.44372244837, + -185398.36138060363, + -186628.42409363462, + -185328.69791728977, + -185645.35316113118, + -185190.4973312962, + -184810.0609463012, + -185673.16887228226, + -184555.20493347468, + -186603.54049738206, + -185000.47819436324, + -185769.4575393162, + -185778.33475206984, + -185864.6939073649, + -185242.38515533158, + -185902.13729941534, + -184710.20690531647, + -186336.77161351635, + -186119.94401614703, + -185893.69281000222, + -187563.04088038372, + -186983.54442722624, + -187703.92647279546, + -185743.6029551579, + -185968.90039689335, + -186108.22088459652, + -186089.89882082163, + -185308.25354167318, + -186216.4074492947, + -186691.95573974657, + -186418.54900034756, + -184684.6304903929, + -186003.21438929535, + -186109.56426562366, + -186120.97182205616, + -186324.3395864327, + -186722.7974234636, + -140718.26168474945, + -162271.2627223581, + -186085.13248614842, + -186068.28536481576, + -185427.49168366197, + -184985.73631769797, + -184766.12089212818, + -185693.59243815514, + -186460.20786475393, + -186037.59716773787, + -185450.5833065486, + -185396.0966615638, + -185276.4054007422, + -184847.09039631113, + -184823.61753243406, + -184778.45025064657, + -185109.39166642443, + -185556.4843562863, + -186719.88216859457, + -186773.59087394056, + -186505.48261010222, + -187516.20202739417, + -188001.86892294977, + -186684.80121130878, + -184705.8070100957, + -184864.84138353547, + -184566.07730183762, + -186337.80196089507, + -185906.65861356055, + -186150.906960568, + -186089.31929989046, + -186474.6235265719, + -186468.51753357225, + -186122.9165758566, + -186174.69969704037, + -187820.43378501857, + -186775.64544110073, + -185619.5302422243, + -185704.2175677414, + -185937.20459336432, + -185523.5880471388, + -185073.60125989263, + -185681.62401491503, + -185755.25804511458, + -185742.32278142963, + -185812.36978806616, + -186839.17366214117, + -185460.24572993352, + -185767.89203574616, + -185411.53656573629, + -186079.66390792772, + -185233.48683497915, + -184948.90466462815, + -185247.7806087925, + -186549.85209355422, + -186917.39214776302, + -186657.063249416, + -186137.98831876533, + -187630.12975349987, + -187687.3081902085, + -187525.68775441864, + -187326.55715253745, + -189245.3547860996, + -184795.0131029055, + -184934.10299478343, + -184595.03593603414, + -185557.18603881687, + -184826.82895671725, + -185703.95718490216, + -185294.42224015918, + -185575.41563245628, + -185794.81985080332, + -186172.60986329245, + -185661.8516968439, + -185638.24577050543, + -185965.40347835567, + -186004.1374210784, + -185781.3584731582, + -185664.76866772544, + -185815.6127283012, + -184723.17471127305, + -186009.95200031195, + -186195.38531040744, + -185753.05619845918, + -185703.19314166557, + -186594.9114183287, + -185580.15593113314, + -185541.68129385356, + -186549.16628896404, + -185479.2357860194, + -184578.21753488245, + -184618.35740420443, + -184441.46870504398, + -184568.61994464282, + -184661.85928366336, + -184523.38966404533, + -185717.16624584142, + -185483.3295420938, + -186417.94305405728, + -186246.51492087843, + -184845.9682979859, + -184540.75647463603, + -184666.37763325783, + -185185.18619115572, + -186199.38823877013, + -184507.9099237428, + -187003.43820973596, + -186545.16136884323, + -186951.0722009215, + -186588.34259437467, + -185936.8747686248, + -186443.85498753583, + -186141.55895141896, + -186647.18276851127, + -185889.87833542484, + -184523.06400318502, + -185073.57268297486, + -185077.8905521608, + -184685.0000328583, + -187192.2975120381, + -187002.80523749278, + -187003.69318072736, + -186907.3329708996, + -187388.2617066739, + -186950.9060841143, + -187426.40772893745, + -188015.87833895627, + -187456.03533027926, + -186718.14847004472, + -187192.52823779927, + -187430.84477593255, + -188090.9736323963, + -187057.4226896695, + -187299.00679136443, + -187898.09108993356, + -187800.71024494842, + -187578.7945424208, + -187852.2157456399, + -188445.4527261622, + -187821.0464781729, + -187538.8698057885, + -187904.2446480533, + -187707.84632557898, + -187515.5351218408, + -187294.31909113945, + -188304.55925484645, + -186927.86579355603, + -187675.71540639747, + -187132.18270199542, + -186661.11383538053, + -187238.4395913106, + -186711.99171266862, + -187274.8884360902, + -187605.70324073057, + -187459.62733920277, + -187350.64454981094, + -187987.25877007708, + -187340.14536462337, + -188133.99953381368, + -187908.8502698971, + -187974.06713440962, + -188174.96094340537, + -187654.68501915902, + -187919.67545603745, + -188033.5893052449, + -187179.74870279036, + -187958.6837154068, + -187098.08472081405, + -187817.05963383534, + -187227.08326375764, + -187840.08914857774, + -187243.47707715337, + -187358.05164964797, + -187870.53601201336, + -187247.9917175175, + -187825.62181611278, + -187383.08957187168, + -186137.40837100832, + -187368.8604475479, + -186975.18042715648, + -187218.33649070092, + -187115.92005878876, + -188577.08388106618, + -185632.1535476023, + -185003.46048722725, + -186782.64173592345, + -187389.2021586, + -188364.15112362726, + -188088.5917691664, + -187984.06459012086, + -188713.3588507996, + -188624.00866552212, + -188363.5387691212, + -187634.18143546607, + -186777.46669602653, + -186820.56521939114, + -186867.77653250156, + -186618.4433734245, + -187699.43272561228, + -185956.04238149663, + -185637.3755433982, + -185160.1993215984, + -187466.71062113094, + -188115.28176793884, + -187716.48506167036, + -188144.50874112692, + -187644.81497540837, + -187452.13970792587, + -187779.38447152777, + -187503.58157137837, + -187819.7552003765, + -187727.83570354496, + -187950.17000928946, + -187918.25825739285, + -188059.71110303834, + -188071.01532488095, + -188007.70634351147, + -188127.41684105122, + -188138.2687240919, + -187963.5766486151, + -188544.97753253547, + -187850.79133717477, + -188029.4838038799, + -187927.5772533455, + -188053.78221453892, + -187985.91644521983, + -188319.77932730978, + -188058.86903379706, + -187950.90711760413, + -188156.86956179672, + -188229.6880717756, + -187953.60593885268, + -188484.82353855815, + -188095.58751833517, + -187872.1074932044, + -187955.31108521658, + -188110.34340208996, + -188020.26106810436, + -188084.40086565504, + -188071.6303022562, + -188480.56911294378, + -189671.69440695026, + -189769.90898797516, + -190284.9707253069, + -188031.62889293503, + -186743.00019037828, + -188003.55552109788, + -188363.56661918454, + -187746.85639765018, + -188346.87533387216, + -187903.51839239706, + -188043.9321563204, + -188112.71027176845, + -188550.03414205718, + -189449.1232264199, + -189768.43355961813, + -188740.94405652286, + -189567.65591494428, + -188309.81027713025, + -188392.79233416848, + -189319.79863515618, + -189378.6089809849, + -189178.14899455837, + -188386.42729721224, + -189445.19176040665, + -187087.48998708234, + -188826.42779028194, + -188553.87487120138, + -187941.06540326262, + -189771.93099297164, + -188529.93400312582, + -189358.06753687156, + -188609.42242236514, + -188787.1864357604, + -188843.1765843312, + -188754.528514879, + -188094.74107414478, + -188088.6155039975, + -188060.38234672905, + -188067.26794690712, + -187621.21847052537, + -188157.58246492682, + -188516.84498886167, + -187915.12744256484, + -188443.7578148925, + -188116.10771085072, + -187264.47609357847, + -188176.21031836848, + -188170.57903762278, + -188294.6644996429, + -188036.63953174325, + -188101.5543653428, + -188248.6764013949, + -188319.83415129757, + -188097.50692052435, + -188134.4762723594, + -188272.49029985358, + -188206.77019901376, + -188508.96860365788, + -188262.8988252888, + -187569.11179548127, + -186292.02017205243, + -187472.02889830602, + -187099.9147383517, + -186900.76235636437, + -188027.44881588852, + -188432.67762655424, + -188121.5471579039, + -188432.80628645205, + -187926.7782463939, + -189762.7876085155, + -189266.35842376057, + -186732.12278519588, + -188614.55061231283, + -188647.95316923055, + -187592.5524397363, + -188932.9501046265, + -188606.43169921683, + -188170.21924476055, + -188549.55255864532, + -187962.6323277363, + -187191.96052360526, + -186920.5220397891, + -186786.62616005604, + -186385.05781979268, + -188061.28832562154, + -187390.1456922822, + -188062.07603085358, + -188037.6869183598, + -188212.0229575658, + -187930.06229443732, + -188090.36866231312, + -188036.00538210757, + -188133.31477841723, + -188173.70843883988, + -187844.47640926004, + -187872.30401330232, + -187796.24083019167, + -187732.98575521674, + -187983.71489758827, + -188083.6875223691, + -187897.73274734168, + -188059.30925306716, + -189142.09064355088, + -188583.01081795827, + -187487.7635363833, + -189713.64541984547, + -189555.82412272718, + -189852.59554859076, + -189218.8087403817, + -190167.76777641778, + -189645.6152674434, + -188532.9554546275, + -189523.58352465904, + -189343.14144035138, + -188235.48072958956, + -188180.02447286362, + -188078.15933603563, + -187990.69685232927, + -188502.1043309098, + -188206.01901300566, + -188368.05619089317, + -187629.39631769145, + -187643.6924245978, + -187638.51851489613, + -187804.318709099, + -188499.9137700682, + -188417.0795439115, + -188684.44500197342, + -188616.47166411072, + -189238.12878373484, + -187745.42964825404, + -187642.84655158204, + -188287.79217814526, + -188549.32629648288, + -188250.077786393, + -188161.7726015361, + -187116.7595416007, + -187821.31284373655, + -187704.11156844525, + -188196.3093746599, + -188512.43706494468, + -188433.12753228875, + -188585.6524637753, + -188822.05132961101, + -186793.18125099468, + -186923.0724992906, + -186493.55860467892, + -188693.43620027843, + -188728.28837500748, + -188981.19486242285, + -188119.03297787975, + -188810.88834411, + -188363.9646618443, + -188079.80446299998, + -187735.6429592813, + -186579.71684840842, + -186734.72800259737, + -187909.24698119418, + -186382.6521426854, + -185961.70758748136, + -185946.98023837636, + -188918.83080252886, + -188826.34262922048, + -187359.95937813746, + -186689.23541046176, + -187016.51462670026, + -187205.7558130452, + -186884.1274436682, + -184253.32763020493, + -186104.54831179176, + -186046.42225495278, + -186037.93743685633, + -187612.97215401544, + -188052.32690400552, + -187910.51665730815, + -187778.44937962503, + -187882.8114859411, + -186814.5954261676, + -187233.7119709426, + -188083.10323281528, + -187171.2549893913, + -187396.43681444638, + -186753.4893091006, + -186948.59777146435, + -185706.60147189337, + -187916.63879302575, + -187328.97058315662, + -187271.98186820754, + -187263.8658911728, + -186657.7218807427, + -188362.04736375934, + -183620.7015398458, + -182951.77725421966, + -184276.46905717737, + -187376.8038531828, + -186841.4017466797, + -188158.73371046473, + -186840.44087714233, + -187625.99468709566, + -186431.27519216418, + -186083.5663938709, + -185755.0131330002, + -188153.623631181, + -187630.0455403068, + -188058.85243110455, + -187399.22964852274, + -187360.02800482418, + -187257.6129123713, + -186458.84249070814, + -187153.83483170177, + -186828.08396658566, + -185480.2185366004, + -188910.8076400013, + -188288.38165867908, + -188232.25279280051, + -187620.16897113936, + -188200.78220052563, + -187962.65268429814, + -187980.56614154446, + -187505.77792284868, + -187993.10500323906, + -188057.23331354433, + -186724.68573885344, + -188580.3548192478, + -188339.98244601142, + -179018.64596522425, + -170265.1251636849, + -180731.45597962325, + -178274.85226883533, + -182297.66613175042, + -178392.8789808, + -188316.36771212667, + -186656.42396019315, + -187822.9358747536, + -185715.21113775368, + -185841.86069840766, + -185606.18370621337, + -185745.05148061714, + -184765.73067528612, + -185826.80959253322, + -185805.15630328484, + -185880.6665128765, + -183430.55483779273, + -185519.05918496437, + -185720.05400911724, + -185249.63622188903, + -186055.02259865488, + -185753.54811495807, + -186091.85862784483, + -186095.0815121383, + -187638.04666398917, + -187894.2559948564, + -187763.07589632823, + -188155.95470557085, + -186739.78539095962, + -183895.39726926797, + -186077.7694141048, + -187374.96766820594, + -186600.31501724018, + -187746.2614260409, + -187575.0666518512, + -185615.21357472814, + -186386.17022089174, + -184792.31269895128, + -185297.15959925592, + -185376.32218916347, + -185934.3441057752, + -184719.8977207577, + -184203.63035864593, + -186271.3613223738, + -186024.0766929756, + -185603.29490146937, + -185753.06204734184, + -186330.77970776754, + -185276.91448933058, + -185442.92204935086, + -185153.81686134142, + -184350.70827119582, + -186324.1665531549, + -185279.59438908967, + -187693.57844067938, + -185737.7766019711, + -188111.50245778877, + -181117.95796056575, + -183944.29790406587, + -184501.03914673053, + -183887.24713882807, + -184797.30489013533, + -186552.6186504858, + -186153.74538117443, + -187278.66842823187, + -185447.3850337414, + -184333.46569932284, + -183618.1198729144, + -183609.28082124022, + -183737.2037660667, + -183570.56269982722, + -183835.50636600342, + -182851.40614782678, + -181143.13730185444, + -179062.95290375294, + -183428.15224553086, + -186400.055894199, + -183195.36094988632, + -183346.4258055763, + -184867.16628209932, + -185096.76662262852, + -183295.14885534026, + -184940.4396921724, + -183472.72321986, + -183555.20809289117, + -183534.65675936858, + -183713.93448839104, + -185048.94065281202, + -185379.95492149531, + -183230.4928305493, + -183537.31132500691, + -185199.55957149496, + -184996.35720146328, + -183484.0643545454, + -183661.7612554338, + -183634.66754273794, + -183672.80728055543, + -183149.3117717627, + -183600.97574435148, + -185172.1130263042, + -184941.27866808354, + -184423.14627603424, + -185137.9260259597, + -183681.7632839864, + -183495.9303439195, + -183638.59508131372, + -183662.0610230205, + -183150.43565294353, + -184959.75297709103, + -184282.8223254371, + -185050.17746824646, + -183755.61016671095, + -184855.78706899192, + -184961.07542385507, + -184981.84743495082, + -183572.02000817447, + -185847.7897940973, + -185845.0713146115, + -183567.13168373698, + -184953.50462711358, + -183585.55352579142, + -183654.70526979078, + -183740.6927330769, + -183447.3736804631, + -183638.5415461372, + -183693.8098700191, + -183506.43875629295, + -183780.55988949482, + -183465.92369980083, + -183773.85682847694, + -184713.8079921453, + -184948.11561273, + -183774.6590119035, + -186310.16860214635, + -186301.94278822944, + -186163.99974887632, + -184581.99228433802, + -183482.81197479606, + -183599.0223072427, + -185523.21586449863, + -184220.87408888803, + -183336.9655582326, + -183417.25501227446, + -183574.8313324696, + -183568.94114048648, + -183561.13969966708, + -177310.94056187524, + -183771.57094333868, + -183717.71809073846, + -183314.90524811472, + -183562.4655226862, + -183700.7208882565, + -187944.64808898602, + -188144.68088985563, + -188001.67609114133, + -188590.2656368338, + -188650.31700513716, + -188108.82660797954, + -187817.81523305984, + -188174.91579203284, + -188075.2636711698, + -188835.70345149824, + -190313.9575153106, + -189099.75049063095, + -189095.71887327847, + -188914.75145452813, + -190032.7652732372, + -189938.6241563695, + -189234.69869927395, + -193457.45865985725, + -190806.68303526114, + -190793.21217436218, + -189559.22608543184, + -189665.89556126, + -190343.14623174802, + -189609.91441884363, + -189229.82297158477, + -189294.14527588105, + -189496.41348015732, + -189577.41239445566, + -189744.80163897088, + -189717.16898665222, + -189771.05744312212, + -189288.86354766923, + -189791.60417761785, + -189410.9334851875, + -189116.88474309855, + -189175.60345293803, + -189586.963087114, + -189188.60469326557, + -188162.64085287615, + -189548.11338182713, + -189105.4292626352, + -188962.863330971, + -188860.5081701973, + -189022.6764695094, + -188934.8216489112, + -189023.35265461885, + -189224.35755215236, + -188984.99469066437, + -188693.81198834366, + -188415.0669334945, + -189349.87620961215, + -188810.17734219952, + -188944.92574917976, + -188941.78166669174, + -189742.2319582998, + -189965.4221631259, + -188669.11521163365, + -188707.0214085327, + -188855.1713664295, + -188374.52176348033, + -188046.43068903935, + -188584.11655148058, + -188921.07600126017, + -188465.50594804902, + -188569.56315973715, + -188491.91213643632, + -188423.88162786607, + -189249.9264656677, + -188453.23945302286, + -188248.20895894684, + -189083.05589016425, + -188881.18116724692, + -188752.26508317536, + -190353.63610682223, + -190199.30352442525, + -190284.40860835864, + -190512.74405530427, + -190567.27156873213, + -190521.19493654618, + -189462.78633118852, + -189495.0923323141, + -189822.36786467835, + -190528.4811711618, + -190459.28418449903, + -190549.83564310966, + -190108.53169201384, + -189701.9396398646, + -190261.65948142193, + -189812.65902349033, + -192729.44916755898, + -189998.17792497025, + -189950.47607682366, + -190422.55995988214, + -189475.00799780615, + -189539.44815716433, + -190286.8293532656, + -190510.04082654967, + -188268.17237905652, + -189701.77739699613, + -190449.5219220677, + -190479.13829348728, + -190341.1859679305, + -190214.86655576224, + -190470.3866958542, + -190475.05501335283, + -188662.78581283378, + -187110.75257883506, + -188712.68604789645, + -188167.60811296935, + -188373.3539402033, + -189054.24101899815, + -188703.7958482956, + -188700.76734194253, + -189058.78733204654, + -185748.77931932142, + -189240.3648502884, + -186570.1920070612, + -188094.559535361, + -188053.27718974993, + -187904.5551047629, + -188714.47848400145, + -188749.09654230482, + -189030.03347002508, + -188623.43984532243, + -188960.00928668556, + -189443.79748188236, + -189307.17775457742, + -189613.4274864384, + -189068.79735651254, + -190220.04026000245, + -189448.3993228098, + -190206.09219721612, + -190341.17256340745, + -189867.23809450684, + -189861.2742767397, + -190227.47044230253, + -190186.66872072185, + -190191.87720016416, + -190085.2874754612, + -190232.32595297435, + -190184.90518216093, + -190623.42617965583, + -190772.98680974997, + -189014.93254325056, + -190242.87904319484, + -190489.49488075302, + -189279.31349246096, + -189028.54304697987, + -189972.24185554104, + -190133.02174061345, + -190152.09510136288, + -189802.5411068607, + -189342.87589914515, + -190335.55788041826, + -190558.09229834663, + -190348.92129023964, + -189476.29985464577, + -190078.20561894446, + -189953.83628432205, + -190120.31875176344, + -190159.9606195649, + -190036.82480240372, + -190207.22081163406, + -189987.67952550904, + -190139.95443899676, + -188283.400572689, + -190271.7928245326, + -189841.04040744825, + -190391.556711525, + -190159.25461435507, + -190150.01777997345, + -190050.76105059695, + -190016.05202348984, + -189455.41921722554, + -189892.92226832564, + -189938.28533320257, + -189852.04204695, + -189837.30541417195, + -190073.05198879744, + -189679.96140830184, + -188518.20269654013, + -189732.0774427512, + -190060.64739146762, + -189906.78269750674, + -189977.09666591295, + -189869.86826830884, + -189967.10530352197, + -189429.90513536637, + -189921.33171368486, + -188696.9637922992, + -190157.63685626572, + -189800.8794266506, + -188719.43960811262, + -189850.42517754433, + -189820.92311716045, + -190176.96097381625, + -191159.10117676161, + -189695.89297456868, + -190189.18840931443, + -189757.3945082938, + -189995.43347064062, + -189420.0485446386, + -190029.46210824672, + -190125.23168976346, + -189369.10856700627, + -190229.02945436694, + -189495.16633347023, + -189698.1761276448, + -189295.9917839161, + -190114.3473213471, + -189727.13611083344, + -189783.65631678217, + -190368.81587279582, + -189901.64680176062, + -190316.76887405966, + -189011.07707289694, + -189795.9680877463, + -189399.04279996626, + -189460.44281266938, + -188004.39552825585, + -188391.67478690643, + -188975.4648828089, + -189027.84875586937, + -188894.1604885968, + -188258.98268007717, + -189054.1850300602, + -189173.28782093368, + -188857.1383443916, + -189144.62965207951, + -188904.83506058183, + -189366.89830297738, + -187142.83156573743, + -188470.49516960207, + -188152.2857732802, + -188538.57571479923, + -188128.65301616665, + -187927.6227750181, + -188172.07424796064, + -188187.0305086857, + -188198.6549685184, + -188215.8464237905, + -188334.1310395238, + -188242.85548355136, + -188084.27012681955, + -187513.15206802913, + -188318.52134241172, + -188494.86160857437, + -188963.12094415203, + -187905.26212099823, + -188527.56986848032, + -188265.23932553243, + -189971.44220929153, + -189133.4623975504, + -188909.62841382276, + -188807.4004644322, + -189821.2312186076, + -189278.69115591797, + -189451.86192620388, + -189265.49060988644, + -190349.61880493132, + -188273.88722517353, + -189167.452960464, + -188204.88501110626, + -188051.1449940405, + -187943.6909840044, + -188101.04549079717, + -187914.7483476306, + -196054.36698636063, + -190713.34611914298, + -190997.92481924436, + -190575.84463553302, + -190467.1990688694, + -190337.43065788288, + -190699.1670419356, + -190568.56008858563, + -190832.90541128814, + -190622.68743332793, + -191792.811774679, + -190689.0572112892, + -190554.549981457, + -190851.29303480033, + -190792.2009981391, + -185674.83275462306, + -185395.53641607144, + -185357.74506053058, + -186040.44887473437, + -186246.95216782618, + -191372.67854098132, + -188837.46529610577, + -187692.98713641445, + -188216.9357266321, + -189035.7518822911, + -188123.85049620818, + -188174.51164152424, + -188360.45872868263, + -187920.04303128363, + -187843.0478644709, + -189252.1261607356, + -188964.9295065745, + -188317.85419149252, + -188304.15480666218, + -188212.56287800474, + -188267.7210327238, + -188211.52410601077, + -188021.5412306319, + -187777.82929663642, + -188092.54169536094, + -187796.6542157994, + -187635.59468253268, + -188033.40789813793, + -188033.5726857013, + -188191.56577066958, + -188064.2405154846, + -187977.02349488987, + -188150.9408505529, + -188399.31508879495, + -188388.79423971399, + -188200.68466137044, + -188105.61118723254, + -188197.26080880096, + -187963.81710303735, + -188081.06831320774, + -188298.1446142359, + -187780.86450984897, + -187560.81205794794, + -187479.24127132312, + -188832.74568101848, + -188271.2574905656, + -188098.9031617914, + -187978.67714400974, + -189036.270514249, + -188358.16456153046, + -188322.21295005153, + -188793.71858353209, + -188463.8027867851, + -188420.56292882576, + -188527.54012336218, + -188470.12706697625, + -188237.94842374895, + -188152.7059567754, + -188376.19538272417, + -188383.6321563408, + -188362.64506112947, + -188229.32312055898, + -186682.89867719274, + -185974.23479730866, + -187407.3972483268, + -188267.12675957533, + -188060.29551175452, + -188704.9483600274, + -188229.5695177689, + -188060.74338207667, + -188009.8309550313, + -188016.12153162181, + -188409.31602683378, + -188494.15449793098, + -189216.5389337516, + -189096.8745649052, + -189395.759421411, + -188314.0618063977, + -188061.6228223648, + -188377.0181492975, + -188192.37099960947, + -187758.18487713882, + -187787.2879845593, + -187572.14078191516, + -187741.49763673818, + -187964.39443212652, + -189643.33025442102, + -189290.1565425291, + -188953.4021090192, + -188803.40271635444, + -188917.24105575786, + -188940.71322085857, + -188810.26221157002, + -188831.5695149495, + -188904.68010216823, + -189135.25543499572, + -189523.5420746396, + -188139.9439583329, + -189020.66022475137, + -187947.31400414582, + -187672.10042218023, + -188053.95244611433, + -187619.73016237066, + -187911.62808368597, + -187842.24023419546, + -188387.07160945956, + -189016.05459049373, + -188302.98266526288, + -188485.53190433834, + -187252.96696407747, + -188056.2157138019, + -188150.01873431922, + -188407.83621514795, + -188351.8861077988, + -189581.91550554175, + -187744.01854014478, + -187770.73014403923, + -188103.182578579, + -190304.48024467833, + -190260.53457260315, + -189251.39154025816, + -187845.25254911988, + -186176.69143772183, + -190605.68260414473, + -189416.02083849843, + -188966.40362309, + -189104.16659807847, + -187252.2711895733, + -188769.20753909196, + -187699.42874421572, + -187938.3617763031, + -187668.34843839586, + -187987.33055419096, + -188319.47292758749, + -187952.69828486128, + -187276.75570563087, + -187999.3435431426, + -188054.9089034451, + -188032.08428389157, + -188416.8042440556, + -188828.710009183, + -188269.90433919505, + -188242.81984720996, + -188483.53884869776, + -188770.96011071018, + -189749.7370829404, + -189155.7502287397, + -190823.13696070746, + -188948.92747001626, + -188207.51154255582, + -188151.91592219454, + -188673.74140925996, + -188660.2868009395, + -188503.80500650342, + -188559.77245373707, + -188683.6155536947, + -188559.65786072984, + -188703.13655352002, + -188678.94430401377, + -188594.7332906974, + -188597.86898873816, + -188784.85977225626, + -188110.75597498723, + -188436.68427228258, + -188666.33131441893, + -188697.64814490697, + -188522.7178033711, + -188633.79406085494, + -188704.29316380754, + -188768.03900527532, + -188625.4650503576, + -188663.50134786894, + -188576.25334950717, + -188546.52938657982, + -188680.8371036378, + -188805.0846516448, + -188653.17628520753, + -188615.03355433713, + -188576.64321319025, + -188543.81262086015, + -188746.69889344645, + -188557.72678403923, + -188622.1971911336, + -188724.273258034, + -188591.78355342403, + -188719.5694194747, + -188667.04054954412, + -188808.08020128132, + -188712.82334732497, + -188975.56691510486, + -188897.3534894631, + -189012.75722465824, + -188763.96608211353, + -188826.95475208154, + -189056.37183016262, + -188733.08499490118, + -188884.35784682204, + -188923.87712194747, + -188827.94721139214, + -188942.5889835721, + -189037.6870663065, + -188623.1088186007, + -188630.3623548485, + -188568.1259673801, + -188676.2507110918, + -188589.14408862978, + -188687.45937910295, + -188769.61503198964, + -188743.1925249904, + -188702.17631953134, + -188892.4296175113, + -188871.28023278288, + -188960.78352074078, + -188925.94534825796, + -189348.888529151, + -189134.70326334922, + -188803.00117738845, + -188400.57408980286, + -189494.27256320094, + -189494.669002662, + -188464.4232397707, + -189444.3391194114, + -188380.47926556104, + -189438.34123469607, + -189310.50792805894, + -189488.46596010172, + -189426.87979329927, + -189586.8077498066, + -189284.25409000844, + -189405.0179354977, + -189595.86153925897, + -189491.39036375418, + -189450.22093055537, + -189366.62556285493, + -189420.95028154456, + -189509.033593287, + -189381.96275634642, + -189358.25597996314, + -189494.6588455454, + -189194.10726443038, + -188271.78250397014, + -188273.26012712086, + -190521.2400356172, + -190413.05752745614, + -188862.76391626216, + -185957.65696246203, + -185990.46390386543, + -186100.70125635862, + -186136.39515892777, + -186063.24649127686, + -186158.66764463554, + -186027.24243721232, + -185969.5551713951, + -190174.9869209733, + -190118.41545021316, + -189010.31738089523, + -189096.92767447614, + -189088.20919571148, + -188643.99249474678, + -188789.6318585568, + -188728.21494301723, + -188798.92556122373, + -188681.77895953055, + -189106.93268454904, + -188985.67716669387, + -189083.74907014464, + -189034.3523839353, + -189070.57417476588, + -188944.9246191758, + -188715.9153769697, + -188792.5694624717, + -188829.59277746026, + -188787.0559469269, + -188832.644629355, + -188893.3636019686, + -189024.7196291646, + -188931.01739686544, + -188992.60798038464, + -188786.67166992926, + -188768.90565244108, + -188987.2406986813, + -189387.98129267173, + -190019.26883211517, + -189683.14190918353, + -190250.02249989784, + -190184.28794756005, + -190334.92104710214, + -190227.51000102313, + -190214.5507397167, + -190336.85293178275, + -190315.78757937052, + -190229.20612766882, + -190376.56365282947, + -190252.19031956058, + -190372.41721262314, + -190175.9980453131, + -190196.75542956498, + -190330.29195060174, + -190280.94568584106, + -190372.3529320626, + -190144.17286399158, + -190358.37515399588, + -190261.2951521144, + -190258.94393558401, + -190343.78487558663, + -190093.6069125597, + -190354.39138039862, + -190419.4463532059, + -190288.23089259406, + -190287.70189460894, + -190158.71584807578, + -190258.29925374908, + -190406.92526713447, + -190261.7743970526, + -190326.05142614365, + -190246.38834175895, + -190234.3407794005, + -190432.26490839137, + -190449.01554506307, + -190445.47329877305, + -190397.00213190346, + -190436.49551094466, + -190329.9090910193, + -190176.58844461074, + -190185.0129986195, + -190319.62726571024, + -190380.03821897434, + -190380.20377129066, + -190527.71254484492, + -190402.6065213973, + -190396.1507821608, + -188508.64502421487, + -188373.82014025023, + -188525.07051299908, + -190602.43193520122, + -190477.02262630573, + -190497.50243899124, + -190507.3624830313, + -190319.38168120995, + -190086.87822393788, + -190195.18659925292, + -190070.15156129468, + -190036.51444069666, + -190088.81970409834, + -190349.0282488827, + -190200.62285130544, + -190379.40568476502, + -188377.52767298502, + -187244.75892812965, + -189007.3182361304, + -189723.1780505297, + -188481.01875659585, + -188764.76002792385, + -188863.03271685718, + -188110.80230950654, + -188181.00690298795, + -189435.46040436602, + -188159.78667876072, + -187941.68434362026, + -189015.5867901485, + -189052.9801668156, + -189396.0871583986, + -189683.05697258093, + -189409.2260516907, + -189439.9733840662, + -189401.0210279784, + -189282.9730672559, + -190115.60913893284, + -190091.65704194506, + -187280.45758218758, + -187657.0868990739, + -187294.66785273908, + -187593.51605149044, + -187826.2030626212, + -187253.22086252828, + -187838.97430345853, + -186059.42223972696, + -187069.10866048117, + -186020.01516353776, + -186167.96323356603, + -185830.27369723277, + -186139.2890092994, + -186028.00291916684, + -186072.80462440735, + -186073.64805899287, + -186256.82357831844, + -186116.13245522184, + -186208.95519545348, + -185984.68461957408, + -185859.09413820013, + -186159.51025188196, + -186212.2138273194, + -186182.3557491331, + -186125.66409048735, + -186038.40488502107, + -186259.63674592567, + -185992.00901628408, + -186136.2932766661, + -186132.35139380593, + -185546.13442974273, + -182375.64393582716, + -180981.68034472206, + -181095.7750693586, + -180956.24287219153, + -181055.72889509232, + -180971.66262991235, + -181103.82390677792, + -180856.3444427169, + -181027.36139741706, + -181014.3774171897, + -181055.71069809987, + -180483.06895315493, + -181003.4669040212, + -180860.4464633114, + -180883.5634329601, + -180645.55305481135, + -181000.74178986548, + -180859.9033050692, + -181109.60549286046, + -180857.2624911139, + -180693.93543625306, + -180950.90008469622, + -180644.74425556677, + -180816.44841554252, + -180899.0659939188, + -180934.99464384676, + -180922.29353936965, + -180836.35446086427, + -180930.33913835726, + -180961.20970378348, + -180980.2431356487, + -180856.61342199767, + -180940.29061880347, + -180760.91174181836, + -180749.25128466066, + -181057.43394242367, + -180915.60853348157, + -181022.60295219658, + -180760.43292094907, + -180930.63629617327, + -180790.79912130247, + -180790.12967571538, + -180770.08680043777, + -180895.6079582836, + -182500.3541675079, + -180919.3086735656, + -181036.922135391, + -180965.05714948726, + -181005.31086173875, + -180833.16313540837, + -180865.4739387523, + -180941.22674653959, + -180796.98622865067, + -180982.980792712, + -180847.98245056724, + -180731.69982497985, + -180767.91322810465, + -180877.2467033272, + -180942.63023700894, + -181074.2378637336, + -180878.08804388047, + -180982.42159108724, + -180784.02805332895, + -180793.9452787914, + -180850.14722552363, + -180806.83721622013, + -180872.98920041963, + -181147.33042965268, + -180799.9448917058, + -181118.08832692527, + -181081.7854884219, + -180933.6802728505, + -180816.67641035892, + -181086.78490923072, + -181037.9608102749, + -180961.97956935398, + -181055.70113727966, + -181000.43335822207, + -180955.18824098646, + -180864.974251134, + -180816.74539395078, + -181017.48978564248, + -180815.58662766116, + -180979.2774002467, + -180817.95846380026, + -180951.85047681318, + -180998.6529277414, + -180818.362485989, + -180952.8305869637, + -181063.81311585428, + -180978.12741341253, + -181174.16068990272, + -180807.44752380773, + -181040.72061494735, + -181124.00797680276, + -180693.07367266295, + -180849.66492172444, + -181038.77982030425, + -180866.03192510043, + -180802.60512019158, + -180884.46822946193, + -181085.0475399574, + -180885.35410085504, + -180682.23348761175, + -182349.5203372696, + -180829.35338506385, + -180772.89414994261, + -180902.09446094595, + -181088.72622956135, + -180979.71642093264, + -180906.37555946645, + -180800.75053366087, + -181032.55784956415, + -180814.39982887727, + -181151.42664541173, + -180909.5080121125, + -180874.23530896136, + -181046.12498304193, + -180902.05740752866, + -180979.8305139395, + -180942.5656738371, + -181009.25962476918, + -180840.1924708878, + -180954.36046807666, + -180971.1592968529, + -180955.97843386928, + -180845.49734652886, + -180782.61663522222, + -180977.97821798053, + -180805.36420278228, + -181008.98951493762, + -180921.56836434823, + -180733.23203660635, + -180840.91362221594, + -180846.30159686066, + -180921.34721748272, + -180890.0599080562, + -182676.7358918651, + -180827.27270966407, + -181056.0199827383, + -180953.8962335581, + -180903.6230717887, + -180838.40407558414, + -181085.7272340573, + -180920.01237244508, + -180905.59164138784, + -180923.9778191495, + -180865.5820644942, + -182681.0939370604, + -182702.51404425295, + -180920.8157314833, + -181039.35587087716, + -183731.0180707013, + -182912.50270388843, + -180889.63746378856, + -180854.80162700024, + -181150.7372652002, + -180794.46154850945, + -180874.26283479307, + -182692.2164033097, + -180908.3417528071, + -181156.28215987323, + -181019.92164544453, + -180891.2196782332, + -180864.55024704066, + -181087.9224563914, + -180598.0324521481, + -180766.12844487367, + -180843.31390089897, + -181009.6469005663, + -180891.02760663966, + -180890.58763282228, + -181059.05318853393, + -180883.05522412164, + -180866.175526346, + -181013.26936406048, + -180831.20998369262, + -181000.12969199513, + -180663.24676979112, + -181001.3948196855, + -181066.46517229715, + -180986.56354695623, + -180982.7492550661, + -180904.92820655624, + -181047.36004751746, + -180826.66975384587, + -180933.08910412987, + -180947.11811288763, + -180927.51682069103, + -180788.40046317098, + -181125.4367547304, + -181111.51853973937, + -180866.26242476306, + -180845.77976677753, + -181012.6198653182, + -180816.30466392604, + -180776.81840438678, + -180983.91154391912, + -181029.40177410873, + -180924.33642821995, + -180888.00053592803, + -180784.3810535411, + -180940.07985755763, + -180912.97448882813, + -180774.27488770042, + -181155.23560476548, + -180850.22795461796, + -180665.2733775059, + -181084.78717029234, + -182664.5201322499, + -188488.99282933175, + -189758.00649856846, + -189586.79135574435, + -189302.4383048074, + -189374.42417451766, + -187982.45070004364, + -189089.35369326422, + -188925.52496602834, + -188370.88229638213, + -188729.27038410617, + -189191.95425247535, + -189211.766205052, + -189391.13611958042, + -189357.1682863563, + -190215.7200927027, + -190252.8451955415, + -189110.24543217203, + -190187.4679374674, + -190147.44410814112, + -189598.64690698453, + -190445.654871415, + -190457.27919916046, + -190458.9006702578, + -190418.83925539092, + -190623.3756107303, + -190222.22442778165, + -190308.76152925828, + -190090.6958227699, + -189967.96741669893, + -190301.12261888848, + -189341.87599347558, + -188837.66894077745, + -188806.57842336912, + -188808.00095179488, + -189519.04224358563, + -189512.23034253178, + -189194.5932670327, + -188987.2121565673, + -190034.38718702516, + -188886.19912193718, + -188422.8724618635, + -188573.66240306012, + -189304.51776225265, + -189225.2817407487, + -189263.00325982983, + -189205.2614891779, + -190017.75293635303, + -190076.61323075774, + -190047.0988279703, + -187765.20644688024, + -186613.3572771319, + -187732.08072021118, + -188072.6714608332, + -187993.50997306354, + -188006.68124746092, + -188446.68929684337, + -188193.71095951897, + -187981.29126473085, + -189080.87286406787, + -189159.68923024554, + -189299.45891005188, + -189152.4024345847, + -189091.09615257187, + -189307.52838490528, + -189202.98031500765, + -189253.1843586616, + -189271.38460107477, + -188700.71324391282, + -189006.7819687374, + -187905.2037860304, + -189018.02910981255, + -189330.11540368202, + -189848.0079827148, + -190443.65918131915, + -190427.55400195223, + -190483.02517647974, + -190362.86377164358, + -190395.61332685914, + -190394.52870872742, + -190479.97949248308, + -190467.0995479573, + -190406.09811304082, + -190511.58839861894, + -190520.1801424011, + -190515.9667556305, + -190427.82270662414, + -190294.00976637588, + -190278.39013209782, + -186826.21727392398, + -187247.81804804146, + -187880.4124846486, + -186245.36039779414, + -187524.29243165697, + -187442.40232060183, + -187439.63154257342, + -187466.21407558903, + -190111.04590202757, + -190144.84616993446, + -188777.33517669232, + -190099.61072582297, + -190079.43883652097, + -189090.7163018162, + -190153.29822813766, + -190123.88975192353, + -189037.89262428752, + -188864.07840297843, + -186331.33255991637, + -186353.41628003947, + -186460.97165208007, + -184320.71218592688, + -184395.50232088257, + -190089.0039060432, + -189971.33427513135, + -189768.2322727592, + -189820.9233690557, + -189897.344636401, + -189740.80754012152, + -189698.05320883947, + -189835.6886744365, + -189061.7492410639, + -189535.55716931316, + -189685.85676509794, + -189548.9614403094, + -189622.96977637283, + -189478.2853721356, + -189518.60810814277, + -189564.61474111862, + -189577.55489955656, + -189446.99616676653, + -188807.69589811168, + -189599.7221237243, + -189486.82239140675, + -189502.4117847279, + -189467.3133551171, + -189621.35658416804, + -189581.4535606255, + -189569.369029503, + -189528.73034473255, + -189413.92865996592, + -189475.14660232756, + -189489.37992040775, + -189408.59813112364, + -189279.9613839457, + -188417.6430208653, + -188058.3020889103, + -187978.0776449405, + -187874.45046373125, + -187882.51589978818, + -187829.42643730988, + -187992.9515668895, + -187863.06101100918, + -187894.49980053122, + -187929.7926774231, + -189759.31136422034, + -189921.34899766842, + -189822.27177816702, + -189779.94244991872, + -190028.2789147829, + -190071.21874390738, + -187737.30602605725, + -190145.79386936987, + -189946.1496095157, + -190113.21126750222, + -190096.24824068297, + -190178.52275598646, + -190105.41451731362, + -190284.38186976072, + -190225.26961028803, + -190097.9171060172, + -190057.625298676, + -190002.11943799697, + -190055.95770209175, + -190045.87754162127, + -190490.7591485024, + -189162.66377148678, + -189194.14908284522, + -188932.09554875613, + -189807.1070773043, + -189672.01066457023, + -189245.34760738516, + -190024.68852855908, + -189777.5439815788, + -190182.40049809497, + -189225.46009016156, + -190189.3974081339, + -190220.05389692725, + -190254.3411041133, + -190132.36336376893, + -189956.65780086425, + -190154.67648313136, + -190122.16497615812, + -190059.88487874487, + -190207.55774033137, + -190150.01581871975, + -189091.9085751124, + -189779.08713834564, + -190017.57547804448, + -189250.70667474633, + -190027.03974568783, + -190095.17697165735, + -190020.03316270863, + -190135.05256309436, + -190041.0525969543, + -190058.27232183088, + -190197.08787623307, + -190076.63864476516, + -190095.97638349127, + -189966.02900883183, + -190078.0323830136, + -190004.26574663463, + -189223.47061963478, + -190167.79185327527, + -190121.46768670232, + -190182.6044789875, + -190099.40338792902, + -189983.6388300622, + -190042.57666945577, + -189956.46858778447, + -190153.66675188259, + -190023.61680486205, + -189302.31324662734, + -190094.67168179897, + -190266.14844330985, + -190151.23057533684, + -190224.25521290538, + -190096.5349873898, + -190148.46719026144, + -190425.8188559662, + -189593.6092418684, + -188728.6455416676, + -189322.61920879708, + -189619.64292618987, + -189646.38589484352, + -188819.81976631144, + -189081.12058497823, + -188085.8534257374, + -189272.216549515, + -189544.71559777067, + -189907.45004942373, + -189432.3827588458, + -188557.4596234686, + -188701.5447475946, + -188971.72404492387, + -190528.79469771456, + -189877.9961805478, + -190367.54585730348, + -190595.64484921584, + -190479.65559568114, + -189963.1974196967, + -190535.52943206858, + -190445.05208792342, + -189858.34219583872, + -189897.34374014518, + -189854.93361949048, + -189248.82160598392, + -189147.5538365724, + -189201.19611016064, + -189038.7762684195, + -189178.77238216047, + -185229.03460210934, + -187748.69710114886, + -187717.19164324945, + -187132.2353526007, + -187136.09615416784, + -185288.1211137709, + -186751.49815383757, + -185601.47750316016, + -186530.5887430274, + -190429.1783080962, + -190446.3836146024, + -190097.01924026507, + -190360.80231637773, + -190372.90967518813, + -187296.17724049307, + -187407.35799002185, + -187502.90208840277, + -187473.06927463846, + -187499.10205366532, + -180851.9598007591, + -180929.25461929486, + -181104.5752803427, + -181069.63573433508, + -181129.5229125903, + -180944.42088931572, + -180972.37659385215, + -181158.81415754627, + -180872.920764452, + -180961.05798785033, + -181023.41494453436, + -181024.33482280368, + -181000.15483210448, + -180990.45101826618, + -181128.29075970198, + -180907.3847388372, + -181058.55471777607, + -180952.9436090207, + -180857.59442781372, + -180984.57332295837, + -180886.12180459496, + -180933.26117043925, + -186941.75754158312, + -186982.9722405875, + -186912.18608575975, + -187878.183966702, + -187769.73020592058, + -187918.5460535091, + -187770.35438355888, + -187823.1635403436, + -187949.6542449263, + -188004.68341807707, + -188039.39851966396, + -188108.55865321896, + -187970.6100541415, + -188061.4060260442, + -188117.78571594055, + -188004.34272146938, + -188496.86543053738, + -187011.0905548473, + -186895.31290305508, + -187001.81900673642, + -186938.28659058936, + -186935.24081614582, + -189018.82319591832, + -189254.42379562804, + -188587.22325699587, + -188768.57457960988, + -187700.16095939116, + -187710.29797933245, + -187777.95914919465, + -187680.76965174306, + -188055.04528261707, + -187389.64718967053, + -187484.65611512537, + -187604.7502873811, + -187527.49029823882, + -187339.39148460445, + -188039.52789187146, + -188177.8190559988, + -187411.0029043213, + -187394.22171404446, + -187938.76300956274, + -187522.70114031213, + -187489.84151505012, + -187504.45327247443, + -187576.1632075717, + -187542.71190908132, + -187426.28293339012, + -187968.02915792566, + -187395.85950368101, + -187426.43350693406, + -187555.9889074425, + -187644.45811102478, + -187609.15410432086, + -187306.4100947206, + -187738.23146269514, + -187346.23240056643, + -187363.15401524134, + -187370.93206676224, + -187356.5248650377, + -187527.29927831359, + -187506.17924088452, + -187395.57445450997, + -188041.02872487713, + -187547.86986085924, + -187502.88540065478, + -187444.350347627, + -187465.44357130295, + -187560.40108799638, + -187477.66643523375, + -187500.2979064186, + -187511.36321595448, + -187963.41642815567, + -187936.86069417314, + -187953.61378144295, + -187491.63111638057, + -187488.22817826015, + -187467.83739372162, + -187367.52856048927, + -187418.31867931513, + -187399.00999555364, + -187321.95776501435, + -187396.06612665168, + -187428.96199466274, + -187636.72358713855, + -187397.07408615857, + -187469.0864859035, + -187607.19069206796, + -187531.49942974385, + -187484.71694180465, + -187489.66230460946, + -187532.95309792383, + -187549.5655671346, + -187582.60902455857, + -187373.90495072122, + -187372.5855968998, + -187368.5041770015, + -187345.6302066342, + -187308.48511683661, + -187571.46069103773, + -187415.1090085491, + -188004.98964630163, + -187572.51645357502, + -187452.88025063608, + -187445.8659648042, + -187458.97796815026, + -187402.52801924205, + -187436.79165740727, + -187505.53159853804, + -187583.37443551747, + -187541.70319826694, + -187558.36181932772, + -187542.7333878534, + -187884.7889990308, + -187378.94226321694, + -187478.76495092368, + -187458.14513542585, + -187384.6156040888, + -187378.0518907277, + -187469.15587677137, + -188014.0323584892, + -187406.66886159603, + -187439.14612128361, + -187619.57224767804, + -187464.60152296402, + -187506.9208302256, + -187544.82729458922, + -187416.49256260804, + -187323.59112459634, + -187385.96741871574, + -187619.51489097482, + -187420.92650652543, + -187910.11580313428, + -187363.98471613, + -187419.29606089115, + -187398.2416118346, + -187453.5624250277, + -187577.77076012106, + -187593.5992766927, + -187359.14464430205, + -187374.3188761119, + -187463.65165413215, + -187421.33462251473, + -187499.42247689608, + -187435.47217575277, + -187547.81405866303, + -187443.10255224945, + -187330.4227778721, + -187513.21388004647, + -187443.89718925807, + -187635.7326994755, + -187512.523774074, + -187595.67973291225, + -187527.6958953857, + -187458.3337311642, + -187446.77474513915, + -187468.86769671776, + -187053.41384400596, + -187985.570484645, + -188376.47907997144, + -188271.49035221976, + -188543.55841322654, + -188513.22429321206, + -188054.3647786362, + -188147.7198031375, + -188545.07859362278, + -188570.02927650115, + -187478.03149545015, + -187439.05517074038, + -187509.49657466036, + -187554.3270244612, + -187308.12488365403, + -187380.04949640462, + -187483.37973117948, + -187338.094796927, + -187318.90099483271, + -187530.1038934612, + -187546.90658335353, + -187311.6337785027, + -187307.5064738424, + -187422.37468206487, + -187363.9005927213, + -187352.73763520038, + -187397.5651778647, + -187468.5900747166, + -187367.89500903618, + -187479.3279444399, + -187508.3265529081, + -187436.43826273832, + -187549.26862505978, + -187447.38477098837, + -187370.06008495143, + -187396.52727223214, + -187301.7505286326, + -187431.94850241748, + -187683.89461558757, + -187496.55637834425, + -187581.0873743829, + -188158.7950138316, + -187670.4526055669, + -188473.89517146355, + -187871.4556507872, + -187953.09635756293, + -188467.57731800413, + -188448.06867016124, + -189142.74138068696, + -188684.650541092, + -189116.46803518283, + -188958.36824273193, + -189029.22367856133, + -189230.61012847288, + -189224.07109513474, + -189171.628031147, + -189264.20801816296, + -189126.2504850369, + -189158.07282634798, + -189341.6173735007, + -189413.78079802296, + -189332.16941428275, + -188957.1549401508, + -188485.64839138108, + -189106.2220076251, + -189121.81270785842, + -189038.31273541637, + -189045.9625003559, + -188434.73763703258, + -188465.94841419312, + -188497.92002252254, + -188524.1099220463, + -188538.63489318447, + -188443.97131970103, + -188501.8606871864, + -189085.91052883075, + -189019.17316267703, + -189023.7170985733, + -189082.24653481366, + -189131.95237431457, + -188849.46401270016, + -188209.0810095614, + -188284.85460681713, + -188292.80489082073, + -188333.96865998456, + -188265.78863545498, + -188265.55048043604, + -188348.7664283297, + -188413.00617142994, + -188780.29440188574, + -188926.6658806248, + -188797.9391324806, + -188652.884000906, + -188634.8662816393, + -188767.71516075628, + -188655.21405929135, + -188665.65407218394, + -189096.27550826877, + -189137.79815942995, + -189431.09677577397, + -189460.51403827858, + -188924.01692765954, + -188955.90998005978, + -189557.00396968826, + -189473.60727785307, + -188826.8802112957, + -188695.52341180335, + -188650.73401087354, + -188727.8586654595, + -188814.71782739085, + -188805.0619419698, + -188364.40710545835, + -189458.84598976557, + -189509.89156290417, + -189505.54081387492, + -188870.79520430783, + -188973.39128024134, + -188931.2336154527, + -189075.3623107205, + -189165.40325349907, + -189055.29940898585, + -189187.86279493442, + -189204.81061669497, + -189118.706210659, + -189125.03476275213, + -189190.2132919713, + -189151.8546232845, + -189214.31218341843, + -189184.85831256816, + -188589.02383966983, + -188755.29130206196, + -189212.55154545035, + -189102.63305725515, + -189259.831518839, + -189187.73499960016, + -189250.62001598394, + -189206.6375973227, + -188630.3797399783, + -191950.76776520707, + -191966.13514771112, + -190967.5155771714, + -190981.85314904246, + -190904.54988965954, + -191961.7781913269, + -190933.31726890677, + -190884.9419731444, + -189676.3293626802, + -189499.13127883367, + -189520.43258956814, + -189367.95954881862, + -189602.67537553923, + -189572.96585282165, + -189452.19639778542, + -189450.76429825148, + -188760.92666197545, + -188739.25318416615, + -188695.8454305255, + -188642.94415728576, + -189497.53273612313, + -189436.17497376876, + -189465.12020137944, + -189459.6678228203, + -189182.45003880878, + -188614.0216532207, + -188862.78092360223, + -188688.21495284644, + -188802.33759008144, + -188875.01992304178, + -188878.47216792012, + -188833.15395284203, + -188663.7720230959, + -188895.23369487113, + -188697.66550976233, + -188677.42267415742, + -188835.53389301457, + -188755.91150152648, + -188779.18943551017, + -188765.55377816074, + -188789.33520208794, + -188656.38772186043, + -188876.0303235435, + -188750.15392367452, + -188936.51239900038, + -188834.86126886433, + -188636.7491669763, + -188745.53267934482, + -188392.790839642, + -188623.08273018873, + -189117.79942347232, + -189080.89445369857, + -189610.58855240213, + -189430.02118486408, + -189533.9883014909, + -190176.91030132608, + -190327.00650601689, + -190056.90557900956, + -190212.84524776228, + -190379.24513826738, + -190364.94417823173, + -190285.1007604136, + -190355.21433586793, + -190042.60625451073, + -190392.20043390873, + -190169.57831584476, + -190301.90487174553, + -190124.9999688799, + -190263.17840064035, + -190294.74524637056, + -190095.38374811987, + -190007.8802822811, + -190144.80345069803, + -190372.09773776418, + -190179.79769459536, + -190131.3738289751, + -190066.73961822983, + -190138.42407423924, + -190062.07748710833, + -190296.67992469142, + -190159.64175459897, + -190208.61438980376, + -190176.9209211548, + -190410.9097223642, + -190296.7065188192, + -190259.90894886025, + -190305.68653512688, + -190364.34558167926, + -189550.71352449455, + -190132.87489931766, + -189895.3596929185, + -190402.62004046032, + -190229.12172851086, + -190234.9684367843, + -189515.1110287197, + -189238.40345202928, + -188431.71697463252, + -188333.25419319226, + -188404.2364094815, + -189258.14718442407, + -189643.64597282023, + -189545.96793264223, + -189001.13958434798, + -189021.22993820359, + -189128.93571170678, + -189086.08559419253, + -189323.57130717806, + -188986.28736767554, + -189610.79451705402, + -189403.96852214064, + -189455.51690744262, + -189578.18167762924, + -189676.55452521317, + -189804.6846845527, + -189685.5062735283, + -189191.81129054422, + -189784.85244116923, + -189790.59660567288, + -189774.15782508685, + -189185.0056894647, + -188838.03543089947, + -188914.3271305451, + -189463.97410727615, + -189099.5308042423, + -189581.78969652124, + -189559.59363443762, + -188413.34106319828, + -188197.29564009517, + -188171.8323130677, + -189020.36303100712, + -188902.6341614655, + -189220.45711515305, + -189295.1989165057, + -189357.94160129366, + -189475.38802432298, + -189538.76966009964, + -189600.13047092306, + -189492.71937791887, + -189433.45797319178, + -189390.5473860872, + -189534.12800703215, + -189466.43930603622, + -189610.21419904652, + -189569.1170149383, + -189408.09333260934, + -189635.40978858646, + -189244.28470441038, + -189104.56426932674, + -189359.61236164405, + -189213.21322404998, + -189225.18187778912, + -189209.684180045, + -189187.41321420565, + -189058.75332777802, + -189283.28316506173, + -189237.05861530898, + -189271.45601136168, + -189171.22226688673, + -189320.9536658957, + -189116.84179436308, + -189269.2321511475, + -189132.12564859676, + -189134.94804509557, + -189131.89578832858, + -189503.0773230366, + -189763.56150893454, + -189760.2159286004, + -189719.0918707299, + -189779.78137748837, + -188939.57979180606, + -189786.4030590934, + -189726.6419321666, + -189906.72903141, + -189699.8057206231, + -189440.8450981969, + -189471.24343986003, + -189315.72626956273, + -189316.89167777615, + -189281.89181624498, + -189348.41372022274, + -189400.15278844733, + -187654.02171573124, + -189181.722180315, + -189241.2593596859, + -189537.49897748485, + -189577.87143369688, + -189553.76416751105, + -189511.77300350298, + -189590.21640715873, + -189590.12591003874, + -189538.08933140666, + -189576.29104717827, + -189658.8326002738, + -189652.78629907887, + -189625.6848290425, + -189556.70430922814, + -189492.97213968565, + -189604.8022327273, + -189590.56152422907, + -189697.46412324015, + -188785.51687088946, + -187995.86556328714, + -187829.67176628584, + -187719.83667300304, + -187755.15904329115, + -187969.5000521307, + -187810.21895933492, + -188502.68663988617, + -188527.26711107683, + -188439.5683820229, + -188400.24033030673, + -188941.54365172883, + -188872.16294958733, + -189349.372745954, + -188042.59562284162, + -189466.9672629071, + -189499.77105993647, + -189551.62846109323, + -189711.09679261735, + -189642.98880778134, + -189682.60080346372, + -189655.02049784194, + -189484.32524229362, + -189601.31793291916, + -189606.60594438546, + -189560.87324982125, + -189572.4833480093, + -189451.95526184243, + -189155.25778973437, + -189719.11336881894, + -189535.40777391606, + -189653.17828992414, + -189528.0714884979, + -189600.03913814086, + -189456.21906470374, + -189529.67807614632, + -189683.419552452, + -189706.35646586987, + -189566.73535772157, + -189663.45926956282, + -189644.09086083496, + -189753.4799871046, + -189515.74762313042, + -189575.1751271242, + -189715.39152002477, + -189677.10772575348, + -189763.0314858547, + -189750.63256559754, + -189623.64470779992, + -189555.93848452147, + -189516.65865324857, + -189332.90830424154, + -189335.40028172662, + -189390.99357965772, + -190788.04912055115, + -190432.64277937377, + -190429.14197236107, + -190324.69859443782, + -190357.26809546677, + -190463.3906674185, + -190804.5319977288, + -189752.39082629923, + -189233.70459704348, + -189381.97372271767, + -189274.94123611646, + -189344.52233503317, + -189330.49109124398, + -189292.62281836645, + -189382.74018184142, + -189283.81177846075, + -189189.62408053043, + -189881.05147717806, + -188418.2457536636, + -188334.16715397255, + -188316.96436541888, + -188393.31250959192, + -189449.70576624642, + -189643.99202381787, + -189621.55397281286, + -189584.60665973625, + -189708.35344832033, + -189545.99010444924, + -189640.61439605875, + -189647.60507520966, + -189090.94929104674, + -188949.56218808194, + -188970.90563415922, + -188778.30225349736, + -188877.02349292667, + -189187.23989760628, + -189228.16159599964, + -189371.9970513625, + -189354.5654109178, + -189119.10153963434, + -188553.4626397446, + -189034.6677846897, + -188582.1700977013, + -189344.76616863086, + -189387.8552421466, + -189190.0319375097, + -189272.67281759946, + -189335.77220952246, + -189246.25773864324, + -189282.36250191767, + -189851.525977397, + -189898.50682877458, + -189902.20292579886, + -190014.4432471374, + -189947.02621110433, + -189984.75176702105, + -189998.6850751129, + -189960.15611711724, + -189925.12486746212, + -189946.0012008412, + -189942.73770603698, + -189928.97374273633, + -189282.7001458068, + -189590.10878598897, + -189688.56378906994, + -188710.3709706175, + -188629.75667986035, + -188670.25366519665, + -189536.5844743295, + -188727.2902867739, + -188687.9977280287, + -188955.84294808432, + -188979.20255327725, + -188974.94610195557, + -189617.42703743948, + -189562.51140533126, + -189380.90819896417, + -189619.37247978424, + -189782.16983261594, + -189821.50652600272, + -189887.81381680508, + -189897.2491422674, + -189836.83355904545, + -189705.70407238055, + -189822.16051409193, + -189732.60148731066, + -189827.95292964636, + -189654.67760689667, + -189747.67582984507, + -189892.11024789204, + -189779.45626955442, + -189857.48519184976, + -189864.0957269925, + -189800.49653082312, + -189683.09851788307, + -189772.1017231966, + -188074.20351587667, + -188048.01374776612, + -188076.0410432971, + -187921.70754893584, + -187944.64016261857, + -188069.6471734618, + -188033.65890864775, + -187984.49376657544, + -188066.0584282789, + -187873.16679846472, + -187761.06000681227, + -187966.5095326889, + -188771.22071372272, + -188942.09885480377, + -188924.61120937933, + -188865.0310038266, + -188325.55852082116, + -188221.7491593263, + -188015.43710141958, + -187905.9131194616, + -188562.52238197235, + -188583.9863067021, + -188292.803831213, + -187973.74266490637, + -187980.7875448006, + -188006.8523079164, + -188196.46996764973, + -188266.2197375126, + -188656.73899805153, + -188701.21377091933, + -188539.53210781686, + -188624.18261098056, + -188587.54773051367, + -188671.20919887463, + -188643.8479868126, + -188585.12861631755, + -188119.47972230078, + -188206.78624151362, + -188825.28809191516, + -188789.93647026946, + -188595.929621033, + -188904.70828505783, + -188656.04075638522, + -188288.63591142182, + -188201.85617050852, + -189057.81546602, + -188669.6333716104, + -188732.5163680446, + -188637.09764701437, + -188758.95185635728, + -188640.11104820046, + -184975.02995836173, + -192653.7287946721, + -192658.9858084674, + -192643.9378977829, + -192624.1983817503, + -189827.35018753487, + -189853.90365825905, + -189755.076146139, + -190101.45817912888, + -189897.10993130127, + -189979.1871069332, + -189945.22708950468, + -187360.3181764521, + -187377.81473387225, + -187085.60542441468, + -187126.73472208405, + -187076.44109914085, + -189543.034315843, + -189163.53067750562, + -189694.32037712878, + -190001.34422844957, + -190121.17477858203, + -190109.7346041272, + -190215.29371707712, + -188502.3898432576, + -188505.68688054534, + -188469.82315365504, + -188505.51258337646, + -187548.06751765357, + -187526.72134379356, + -189502.79748963288, + -189162.7775371684, + -189864.69924589156, + -189091.23073030688, + -189098.729985849, + -188951.4483378136, + -189105.83893511366, + -188778.71886401522, + -188921.8575232467, + -189156.49544347025, + -189085.15446033492, + -187863.92820822977, + -188710.84136932285, + -188817.58476702461, + -188975.3355759559, + -188927.43096510798, + -189173.6846848957, + -189000.61821900296, + -189002.45745511763, + -188898.19947380063, + -189075.47551847165, + -188971.97905411114, + -187894.56703794212, + -188919.8056771276, + -189080.7550455894, + -188787.2704993271, + -187852.36526218464, + -188843.77638094558, + -189035.6991536637, + -188801.21894511217, + -189280.28143715774, + -188855.60943415618, + -189146.70967002175, + -189026.6393112517, + -189031.2455634038, + -188875.43440098123, + -188897.01172743316, + -188866.27150595438, + -189159.98308012512, + -188983.8191116055, + -188814.16702615508, + -189048.87915536104, + -188871.3639754638, + -188848.03815522493, + -189094.54492211857, + -189061.87467044228, + -188505.22634815276, + -189076.32527469256, + -189151.15283918366, + -189058.45726150705, + -188817.90158256877, + -188953.58974896904, + -188943.9313415137, + -188879.4638523478, + -189024.50651389456, + -189123.97882152276, + -188883.4842960677, + -189120.6792836771, + -189113.53599738402, + -188964.62717743742, + -188560.05311062792, + -189624.33377322988, + -189598.00166810045, + -189567.498505866, + -189951.57727285993, + -190038.81848945052, + -190032.9438813023, + -189607.8188208205, + -189902.3304396636, + -190013.260857581, + -189953.2875295655, + -189254.12345730932, + -189010.69702649902, + -189550.82926949437, + -189418.8305916361, + -189418.45132045657, + -189938.98847371674, + -189481.26125690035, + -191623.8931317123, + -193456.92593939666, + -193559.34465828937, + -193537.81960822793, + -193263.28722742767, + -193404.9270928785, + -193547.75923148528, + -193461.77865299906, + -193341.6948875634, + -193310.37387013956, + -193575.17645088313, + -193478.02172936473, + -193568.00528276377, + -193543.01968804744, + -193516.14453401812, + -193387.98513967678, + -193607.67536828865, + -193479.753757584, + -193355.90193244684, + -193406.9449645201, + -193564.96957959293, + -193332.8917695752, + -193469.2054070533, + -193221.83049125588, + -193512.81482243334, + -193452.62691900134, + -188742.25835635187, + -189868.5219289275, + -189969.1792616839, + -190045.9373963785, + -189670.68791407108, + -189734.63562969028, + -191377.50485578203, + -191222.35911275444, + -191243.0515390836, + -191271.9049596895, + -191379.93800357336, + -191175.45420477103, + -191656.98941584208, + -191319.54700031714, + -191297.4291378877, + -190086.10968265266, + -190096.79898858466, + -189133.8957997381, + -188769.7524320571, + -188482.3157020377, + -189373.57180557027, + -189782.7809279428, + -190474.0354770335, + -190371.1359257553, + -190321.52227194887, + -190344.32547762684, + -190497.0175391162, + -190465.26309402508, + -187529.8569288587, + -187417.65084470675, + -187595.0345184197, + -188793.50051869432, + -187896.9081911965, + -187950.47693488878, + -187852.12457066582, + -189030.72274047518, + -190122.4501330495, + -189948.1486313253, + -190453.08226687548, + -190335.2883217472, + -190188.87329426254, + -190066.86374923558, + -189690.21858696538, + -189771.49663237328, + -190086.7786046643, + -190011.98226594419, + -189857.30593465958, + -190479.28831624571, + -189915.0190236122, + -189092.11310182954, + -190009.95041416763, + -190288.40175925204, + -190208.68058270408, + -190223.2598854498, + -189596.71553589354, + -189532.60174471134, + -188278.1072223423, + -188990.4010166953, + -188932.35300179519, + -188987.5553701727, + -188980.99251783875, + -188399.1066065768, + -188547.48254971273, + -188445.99561197893, + -189408.1187962789, + -189194.96207121338, + -189618.59279905658, + -189596.4692696455, + -189591.8731843488, + -189563.21199104455, + -189247.56010120243, + -189228.67042631286, + -188686.11696233056, + -188643.2572033615, + -189785.7936062494, + -189832.1833617229, + -188724.28354291673, + -189000.49204416302, + -189681.60915599283, + -189405.59755569755, + -189460.84585110802, + -189640.6416367897, + -189759.73338347275, + -189666.2462641403, + -189877.80432977845, + -189698.4654076233, + -189872.54233829424, + -189934.48555254235, + -189825.34967911273, + -188339.00311775182, + -189089.71924361648, + -189140.07123628308, + -189246.3295914749, + -189261.93875597016, + -189164.02682145475, + -189243.80772386643, + -189146.8788231098, + -189161.1410087493, + -189249.8908024901, + -189187.70565578455, + -188240.28382077243, + -189121.58192836438, + -189178.79518399367, + -188415.4342752534, + -187704.1856572577, + -187679.05010809522, + -189393.24956273774, + -188883.37598759666, + -188958.043341557, + -189109.00672269435, + -189073.311932781, + -188907.77366622048, + -189162.88629233922, + -189191.27948312214, + -189044.13234691945, + -188955.4569509421, + -188930.1166276852, + -188981.61018574386, + -189060.53964369342, + -189006.8313798339, + -189073.19084259024, + -189161.52886389126, + -189110.20569245965, + -189375.341623621, + -189208.89107501428, + -189008.29312550844, + -189406.6961868914, + -189247.05285320058, + -189358.78761245878, + -189380.80686938798, + -188977.17868152083, + -190171.06683845687, + -190002.99170424696, + -189982.1293526866, + -189911.10633381322, + -189995.0356338526, + -189997.50324860663, + -190023.1519635282, + -190061.7421727275, + -190142.2612089221, + -189953.18482676084, + -189959.6292369299, + -190076.74672227495, + -190047.69919487005, + -189592.09389439234, + -190042.4332771142, + -190072.09887471944, + -190023.65707861382, + -190069.90387555773, + -189999.30668370787, + -189943.26942762276, + -190047.4304017866, + -190013.54687287952, + -189954.94326666972, + -189989.53954194966, + -189994.1273630411, + -189998.3802860646, + -189536.80725185145, + -188416.74513307065, + -188421.93878236535, + -188226.34945822318, + -189141.3441900047, + -188801.4006698127, + -188258.42142430766, + -187828.0449700697, + -187557.52973979575, + -189203.59341116896, + -189222.42477997518, + -188371.93455635058, + -188236.67057536307, + -189053.21654074607, + -188910.12449409856, + -189616.0770537085, + -189187.79390543632, + -189076.53981134578, + -189355.03813613064, + -189235.60204803146, + -189060.11793078348, + -189047.46005050762, + -189110.33805387263, + -189086.58762901634, + -188814.90499657913, + -188831.73310049425, + -187732.9738354657, + -187992.73283452474, + -187944.50330577596, + -188018.83061694138, + -187930.0200671109, + -186619.29365579388, + -186683.35602978745, + -186684.73039451445, + -187711.07272794982, + -187669.59759489246, + -189468.85739625, + -189487.9206905245, + -189474.07753045388, + -189538.19493991407, + -189174.537700806, + -187176.16775513362, + -187889.88915153715, + -188877.767245647, + -188875.60269456287, + -189320.8832616244, + -189701.74112496764, + -190570.05343242383, + -190456.94334113694, + -190425.7399763771, + -190488.92328356873, + -189848.3496053623, + -189767.82097975494, + -189836.98244016172, + -189360.94131929203, + -190187.96899881063, + -190075.78591642829, + -190102.6448901039, + -190082.51368391872, + -190277.35605871337, + -190108.85859934683, + -189982.98427097642, + -190247.19351608588, + -190000.47476074027, + -190015.63669208196, + -190176.02416169882, + -190196.77460129675, + -189948.9893928284, + -190051.48274480636, + -190309.79507444083, + -190266.7019462526, + -190160.6995683081, + -190048.14997909922, + -190138.61148006478, + -190201.3591599058, + -190220.61911344156, + -190108.87515133707, + -190235.60594223105, + -190243.27357438963, + -190140.1759802504, + -190142.06772604265, + -190106.0660399482, + -190032.54339045423, + -190078.30164515603, + -190140.8097984063, + -190239.66301388768, + -190204.91858076805, + -190104.49800215533, + -190222.0138580218, + -190176.5237960741, + -190284.59045692414, + -189989.61280394648, + -190188.0724671243, + -190304.79464037312, + -190151.1461472848, + -190245.7156611473, + -190354.1941259311, + -190063.91222684208, + -190215.5486804766, + -190266.6265029611, + -190135.90178565972, + -190390.4172704486, + -190225.16976200862, + -190233.24979261204, + -190271.6524928905, + -188255.49531115688, + -189431.19612052888, + -189406.98871430848, + -189405.89976436328, + -189556.0586895262, + -189975.8857865456, + -189962.64684681784, + -189606.58142448816, + -189620.0076205086, + -189829.45164674928, + -189806.80628290947, + -190055.23194051083, + -190099.1641087381, + -190009.77524916915, + -190123.61494626934, + -190327.86074333172, + -189881.85499270284, + -189877.7461051455, + -189785.98016496692, + -189801.74533007256, + -190150.7534213793, + -190083.45351184526, + -189958.9935821789, + -189640.46304525726, + -190369.8816348054, + -190355.11724425686, + -190322.80421544664, + -190263.3619893532, + -190417.86846340998, + -190129.3764744744, + -189044.47193388795, + -190141.27549069133, + -190192.09800997702, + -190228.05993463765, + -189166.174499402, + -189825.80985082992, + -189928.15648078072, + -190413.83573917582, + -190409.3455823219, + -190456.8050621169, + -190416.263701065, + -190423.7286388017, + -190504.68932044078, + -190351.8577571806, + -190430.28066369068, + -188357.7548173183, + -189963.01135006186, + -189867.35754044872, + -189885.2399857091, + -189540.83255167972, + -189971.6969367716, + -190014.13869723506, + -189625.3584162535, + -190033.94066848868, + -190014.96846085825, + -190047.33554382756, + -190021.89704585815, + -190095.05957379984, + -189823.33718928453, + -189807.44797915185, + -189856.9200899178, + -190683.3037257944, + -190622.24743598714, + -190636.57137215306, + -190577.10752327426, + -190615.79719227442, + -190597.41828734183, + -190563.36643259757, + -190570.68582678516, + -190689.22248026772, + -190604.4639800109, + -190649.86056976585, + -190660.25961607235, + -190080.6795551314, + -190063.6300792004, + -190056.3523664133, + -190081.37512168137, + -190053.65824576886, + -188982.54369054709, + -190254.69169143718, + -190270.88097794403, + -190324.85616092518, + -190316.4062083869, + -190233.7497864454, + -190309.93574469167, + -189865.68748950932, + -190158.38189934954, + -190002.0571816662, + -190032.13717515685, + -190219.2848547583, + -190106.5932816327, + -189776.73861947109, + -189892.40357004944, + -189933.6677233693, + -189787.4065735723, + -189622.95178168817, + -188401.64732672213, + -188363.39439349156, + -188369.21574915142, + -189654.05215583372, + -189657.41072030462, + -189885.08282564703, + -189897.7438511581, + -189344.53698081977, + -189371.6910585, + -189531.47570204202, + -189745.4244652022, + -189878.20826982777, + -190129.93090804346, + -189865.11180310862, + -190056.72426811626, + -189675.57223028474, + -189821.58209532077, + -189722.72727586702, + -190627.5336950345, + -190590.11724799534, + -190553.81046517758, + -190626.39202647426, + -190548.7352188638, + -190527.02557045876, + -190537.97620366924, + -190528.99247083525, + -190535.95331849967, + -190477.584911762, + -190590.01387789508, + -189689.98568985163, + -188767.31638590462, + -189380.99555358346, + -189820.34819052625, + -188597.77966632837, + -189046.7218577527, + -189929.7873353237, + -189827.14417308327, + -189610.45247642134, + -189721.2681245282, + -189841.32060363394, + -190133.0764252821, + -189994.26180196146, + -189552.0059179834, + -189865.34878964076, + -190128.70990411646, + -189980.2073353877, + -189911.87643199667, + -189862.09897817927, + -189582.52171704065, + -189512.73040835065, + -189560.4350602952, + -189685.13710829453, + -189440.16676991337, + -189792.41637375913, + -190046.7128963769, + -189884.18087312218, + -189803.42093549029, + -189609.67635842468, + -189566.49283217607, + -189766.99186632992, + -189187.37825301112, + -189153.77644796227, + -189720.57020872037, + -189942.3597703817, + -189936.04804907544, + -190138.50278243815, + -190147.93036115187, + -189473.60669290827, + -189934.81712935786, + -189920.5210867985, + -189880.48140888676, + -189777.5089787198, + -189991.22532635246, + -189902.6784533937, + -190014.2065216857, + -188181.21478088622, + -189993.3661745427, + -189725.42636923178, + -189845.95459293955, + -189913.25422408764, + -189815.88498965633, + -189816.0991606201, + -189914.6755130604, + -189851.85041363334, + -189412.0149135278, + -188595.05397402454, + -189964.75033073436, + -190076.95138041594, + -189948.34201305412, + -188287.7882146985, + -189201.20828713535, + -189794.53058512337, + -190036.43274504624, + -189993.46217733237, + -189516.2009930048, + -190083.22603296343, + -190015.1682753715, + -189863.4178539749, + -189865.29591063826, + -188013.20672022508, + -188285.55395057393, + -189942.62572521015, + -189716.3603225668, + -189754.81370781327, + -189479.04798828842, + -189831.82834825877, + -189846.60399545185, + -189891.63373559376, + -189756.3266971822, + -189470.92179911264, + -189881.5254498419, + -189474.05881109604, + -189860.46362732205, + -189895.8170527797, + -189901.08917131185, + -189172.6969553096, + -189942.76417361607, + -189249.40564514752, + -189864.87255623512, + -189829.0082900861, + -189527.37335576225, + -189706.09320869745, + -188333.69361629503, + -189812.79016112452, + -190011.10938298382, + -190012.59772626602, + -189821.5502203555, + -189827.98067667958, + -189752.06021142998, + -189849.57134155335, + -190103.95680880343, + -189645.7975453776, + -190161.70492528772, + -189002.53982306406, + -190098.90464646148, + -189880.14284702012, + -190275.281542361, + -189671.86798061224, + -189968.41624521738, + -190082.85660467256, + -190010.45363055408, + -190134.69000424945, + -190194.0337786028, + -190121.94782244563, + -189910.92703627306, + -190120.33137371222, + -190052.2392364327, + -190168.3448743449, + -189863.42332173933, + -190050.3134536251, + -190052.02798014958, + -190138.15984440758, + -190124.12260626277, + -190076.46943185962, + -189279.50841773278, + -189127.7614248225, + -189340.40098509513, + -189373.96438282065, + -189945.63900962495, + -189928.4903803872, + -189791.76613560726, + -189869.66751411214, + -189883.52375199503, + -189710.02260108996, + -189550.95837134798, + -190125.85650578202, + -190227.80055654832, + -189980.97976013072, + -189805.0174005274, + -188735.71532723514, + -189640.06108544476, + -189707.5300203365, + -189960.30966069215, + -190032.43816963732, + -188336.02952000388, + -188932.69835564663, + -189829.566589109, + -189766.6746070231, + -190087.43066860677, + -190041.987692598, + -188621.10935024044, + -187857.41211453432, + -188522.2186210146, + -188456.7527854188, + -188417.53740720224, + -187912.95191827603, + -188406.84414023338, + -189897.22955659946, + -189886.44474479667, + -189936.64132531104, + -187862.33462754218, + -188017.75898284867, + -188115.07214676208, + -188238.33374197048, + -188215.72460135946, + -188581.38902644193, + -188288.50808971204, + -188355.1199264169, + -188259.72638644718, + -188245.38363355384, + -188771.67321964315, + -188609.1528103252, + -188477.04377820794, + -188706.44086790056, + -188522.74551045886, + -188441.11342678487, + -190032.00715641747, + -190026.62201802526, + -189736.26297613457, + -189909.27787767662, + -189079.18498195667, + -189929.0210734705, + -189486.59669526652, + -189547.3793226872, + -189755.0992386357, + -189721.59190477236, + -189038.42168107076, + -189396.02766328072, + -189452.2648830305, + -189604.21381453943, + -189626.24769900975, + -189736.47627504388, + -189980.6924954303, + -190051.39788644988, + -189987.9388031262, + -190118.1878124256, + -189860.31740185065, + -190150.64554488976, + -190202.89670150276, + -190007.161320482, + -189941.38360680544, + -190040.3036151541, + -189981.57081345769, + -189783.57416826164, + -189796.5865472431, + -188676.66102464776, + -188680.00271065094, + -188735.25527640682, + -188691.9863820846, + -188883.2252506061, + -188594.7169153639, + -188657.22598614308, + -189329.07774713478, + -188268.3002336887, + -189249.25171750845, + -189266.88275029848, + -188041.43930099072, + -187803.3143579642, + -188052.40549977424, + -188904.57948655414, + -188769.16734820895, + -188621.68315608325, + -188716.07523902692, + -188977.8336529005, + -188876.96741627337, + -189023.2637372005, + -189446.34263308713, + -188663.34908135253, + -189338.63800307794, + -189272.46716609594, + -190475.87056057338, + -190363.26549123542, + -190644.9723379776, + -190462.08398884002, + -190574.05181437873, + -190391.15414305858, + -190504.12149903976, + -190541.7584943848, + -190394.25763746977, + -190593.80002470885, + -190549.81716892275, + -190394.54304903626, + -190586.99388908755, + -190511.55907674643, + -190443.4219741818, + -190434.752852087, + -189906.86664615953, + -189980.63646016494, + -189769.42690983845, + -189985.83720384885, + -189876.53310935257, + -189902.22536835464, + -189645.40122184544, + -189424.709689385, + -189369.65899546578, + -189022.30145293748, + -189476.28709892902, + -189342.46057276748, + -189669.7071682979, + -189861.2124974001, + -189924.49114468484, + -189695.61062811463, + -189732.4484183905, + -190206.17448188507, + -190206.0980025185, + -190218.3943863217, + -190076.2470556719, + -190052.52406760817, + -189560.67356089593, + -189632.94022368034, + -189586.8863832665, + -189750.83259052076, + -190228.63718259358, + -190321.80363929408, + -188592.69741300648, + -188530.56183519625, + -189564.82638307373, + -187892.99584382013, + -187812.29264323704, + -187981.42244477407, + -187975.52341851426, + -186877.613094899, + -185830.3568996049, + -186917.61345703408, + -186885.37838974773, + -189803.36151218376, + -189913.1497669444, + -190032.10280239128, + -190072.29161640667, + -190140.9626562465, + -189768.22843580108, + -189931.81691862512, + -189826.67274452065, + -189999.97773158897, + -190115.75191553755, + -189977.23103216087, + -189590.7531448757, + -189372.64547062907, + -189597.24984633556, + -190005.1924606107, + -189503.00303097212, + -190071.01808593702, + -190031.99421903666, + -189875.86523314627, + -190009.90432453758, + -190097.99478259103, + -189929.37601507976, + -190010.17147214644, + -188912.98164239828, + -189284.43743427604, + -188887.7173625151, + -188911.4706511093, + -189388.98309752173, + -188870.41996378027, + -188914.53959732346, + -188878.15425177375, + -188840.2951461584, + -189620.0244130199, + -189625.2583846318, + -189840.72948148553, + -189625.845364226, + -189465.20794132227, + -189921.45423136652, + -189889.22091888165, + -189946.08141655484, + -188504.64148423215, + -188412.44037557312, + -188781.8283257325, + -188740.4076299442, + -188935.6716361777, + -189902.9951481261, + -190199.11620196913, + -190331.88777793274, + -190083.6881451843, + -190036.6178459026, + -189493.53122157877, + -187414.1525286281, + -187417.08281845733, + -187304.57560440578, + -187206.64307347327, + -187494.37966247095, + -187468.07142045483, + -187405.1955167813, + -187467.3009883131, + -188046.39450204067, + -187380.41176077427, + -189268.7378156468, + -189214.5524927672, + -188447.52573377267, + -189332.07031262116, + -189228.9081982296, + -188627.0205662996, + -188656.50036120758, + -189175.41497594208, + -189375.19911536569, + -189761.69226405656, + -188055.34361729486, + -188355.8864917371, + -189842.32031122976, + -189868.9528304452, + -187411.8004731311, + -187384.85440843413, + -187397.49483843523, + -187389.06402282708, + -187408.57036686965, + -189809.44073601285, + -190293.08407689194, + -190311.90430715468, + -190388.85119682553, + -190445.93403431756, + -190435.89895740917, + -190449.3475640624, + -190483.5788748304, + -190439.36363401508, + -190402.03821597865, + -190354.2130714179, + -189878.35854182256, + -189831.7295560883, + -189980.4227549014, + -189894.38857136425, + -189234.79811111273, + -189044.42758006393, + -188982.13117658292, + -189655.64745270918, + -189272.83789102736, + -189047.49853952235, + -189062.21473259735, + -189834.68444061565, + -190332.5891857683, + -190311.74928116973, + -190268.37506034676, + -190352.22457202693, + -190264.02480158204, + -189703.3002225872, + -189741.9662685643, + -189653.50488966407, + -189759.5122753518, + -189628.80983628487, + -188401.70303736636, + -188550.56920449316, + -188650.65877533983, + -189816.1789486413, + -189665.07028830674, + -189725.06518663402, + -189952.97110248948, + -188707.19411003264, + -188725.43356871564, + -189536.60395080398, + -190118.58938534866, + -190422.2204975639, + -190454.36096552407, + -190477.12985416566, + -190273.79635232274, + -190386.17342693405, + -190290.92027654726, + -190285.11144322803, + -190500.8876053926, + -190492.82676087008, + -190384.46970978877, + -190577.94552562502, + -190476.58697762445, + -190424.5579371018, + -190515.7769230437, + -187440.6696185839, + -186735.62978625085, + -187834.27434140982, + -187215.37650594692, + -186950.25182405324, + -189983.49851289552, + -189914.44209007142, + -190739.9069385846, + -190703.46636216049, + -190823.64244110044, + -190142.2688152774, + -190703.40250229, + -190679.2845484287, + -190804.43682863933, + -190772.79528161397, + -190691.4249614036, + -190672.18419417052, + -190799.7370938617, + -190692.94467440082, + -190707.9815689889, + -190103.40849787297, + -190739.0849917317, + -190796.57720112224, + -190769.51019569216, + -190791.79343367968, + -190796.49073473035, + -190769.40469563488, + -190764.2657987776, + -190474.1084149691, + -189854.45943786003, + -189618.54146927196, + -189948.28950302518, + -187679.11051665375, + -189633.55364759974, + -189759.5887370702, + -189881.8820382768, + -189832.31199713287, + -188734.38474404474, + -188676.7512696058, + -188864.32027075288, + -188639.96835899813, + -188762.2940970673, + -188700.56167535784, + -188755.6479228247, + -188708.43066755641, + -188787.61591049863, + -188757.73158761932, + -188644.0921725751, + -188600.8117161074, + -188788.02038963212, + -188656.48788790172, + -188667.12691655773, + -188673.3512738554, + -188714.69366230932, + -188770.75855426944, + -188544.12377281216, + -188591.63738564984, + -186236.7034840598, + -189295.687458489, + -189387.7787664935, + -189483.5622333063, + -189397.8449691686, + -189313.9212201251, + -188203.37135887527, + -187995.83115505055, + -187882.34140060403, + -188654.9371244769, + -188652.52164832054, + -188316.35211209787, + -188437.44986870151, + -188505.6979547773, + -188730.1146005567, + -188626.47518371168, + -188714.48761648746, + -188407.52237097285, + -187878.91877906496, + -187863.0763505315, + -187889.46739959446, + -187982.20453415965, + -187796.48978933724, + -188215.89141412245, + -188203.05941331436, + -188146.49730992244, + -188353.95691062772, + -188399.5266737372, + -188228.87698216413, + -188298.52438193525, + -188578.58813759126, + -188544.9844182498, + -188601.63158519944, + -188847.38478974465, + -188862.40951645246, + -188755.79764277636, + -189802.89679241736, + -189993.52434262517, + -189715.1922047365, + -189733.53895609008, + -189775.83618502063, + -187142.91197584823, + -187290.77255972844, + -188686.42209622622, + -188898.14405130423, + -188708.29689676486, + -189354.12525608385, + -188852.3212319449, + -188580.35998296886, + -186997.42230628218, + -187201.35993908736, + -187014.687885825, + -187284.51386784925, + -187064.97682941234, + -187207.75294265902, + -187360.87681263685, + -187356.2702630445, + -187293.05247629643, + -187428.0603982613, + -187177.84871112878, + -187307.39001224304, + -187136.34909378062, + -186899.42802989998, + -186811.0259265327, + -187248.96487327036, + -187252.0636923649, + -187100.6777743965, + -187236.13957324318, + -187245.60588781812, + -187356.27166993468, + -187208.07756964676, + -187185.59605571016, + -187270.27839081976, + -190313.3433016634, + -190457.10477513168, + -189545.14535960605, + -189494.47629843102, + -189570.22630755027, + -188823.48915271257, + -188865.64963285843, + -188552.1363584385, + -188619.1510519812, + -188607.08239080833, + -188752.95402744415, + -188809.1513214061, + -188896.28428937343, + -188888.90122016604, + -188651.0311671839, + -188776.98081559045, + -188838.6412495665, + -188699.98510029077, + -188861.55098448345, + -188762.69707663247, + -188923.10925551094, + -188763.50010894032, + -188741.78613036394, + -188883.2552726653, + -188712.7041078951, + -188881.00360508487, + -188390.8105047042, + -188699.0734942116, + -188827.92401582585, + -188894.79960782512, + -188931.13202414938, + -188794.56392041262, + -188852.1069479377, + -188953.8661182334, + -188771.58744733158, + -188730.8485746518, + -188701.8704289315, + -188737.72953596013, + -188660.35107391197, + -188853.6550247938, + -188922.932948625, + -188957.68048442173, + -188799.11774294777, + -188847.64672820744, + -188887.03812416104, + -188451.27752479166, + -188795.36556420612, + -188747.6297643966, + -188640.27812372334, + -188696.12511807954, + -188675.42898269245, + -188834.95098552675, + -188763.50635195625, + -188857.6640882033, + -188869.67914135032, + -188948.13019580705, + -188881.2122130014, + -188804.45974852913, + -188807.0153833909, + -188992.52597648092, + -188691.38600189023, + -188948.31282661355, + -188943.01247223295, + -188666.8490319798, + -186755.8790869865, + -187055.96567581533, + -186938.30669909163, + -186939.5914131338, + -186968.9595965698, + -186973.58842409158, + -186996.0641120089, + -186927.14507917225, + -188126.36856649444, + -187989.0606507604, + -188345.30883986986, + -188024.0209446362, + -187981.19938609967, + -188370.6918408433, + -188372.59542666713, + -188290.10180168305, + -188180.75968110925, + -188032.18651155845, + -188456.66581593105, + -188411.54018031366, + -188603.7382084354, + -188526.96284229629, + -188044.24931373517, + -186594.78042197166, + -186557.0441814957, + -187450.78776177226, + -187654.4132413958, + -187298.15982685503, + -187654.50341685605, + -190240.44111720624, + -190204.69430696947, + -190247.32743206137, + -190116.23170855152, + -189822.41604996356, + -190052.50408411375, + -189978.73620741625, + -189991.84017777976, + -189927.37323736722, + -189963.82074388396, + -189953.3400875045, + -190023.03157957617, + -191196.78522172087, + -192597.09524694833, + -192895.82000379864, + -192937.6195482761, + -192963.4726938061, + -192528.2497704212, + -188998.86112254602, + -189079.51045495822, + -189030.98601303186, + -189281.1745312478, + -188992.39721257958, + -189440.84837420477, + -189362.363551564, + -189418.5635541344, + -189367.09601308653, + -187581.6603888008, + -187785.48520829526, + -187632.458215042, + -188155.6028932805, + -187435.4461049656, + -187231.93304935156, + -187435.52201434693, + -187501.4728511325, + -187668.08951668267, + -187708.40512644028, + -188147.31119030315, + -188675.0008515813, + -189810.78317731756, + -189794.89106257277, + -189717.23712618652, + -189900.2372679593, + -189825.69648692242, + -187226.894383661, + -187178.20205640906, + -187136.8960553202, + -185238.39783400472, + -185242.5030415149, + -185345.7950604921, + -185410.27123301756, + -185416.34499830386, + -185342.93001344596, + -185340.5244730282, + -185450.9592763067, + -188074.3879708484, + -188044.7241588103, + -188191.30626510383, + -188068.61579568117, + -187947.28406376718, + -187639.40616431175, + -187644.44181296264, + -187708.90496310382, + -187881.68699067866, + -187821.27637982904, + -187816.77484224085, + -187778.33799052887, + -187888.0480726681, + -187900.6198216651, + -187767.44388922982, + -187824.64761095232, + -186946.49920168173, + -186875.07184791236, + -186883.20867396414, + -187589.55648392823, + -187225.69080118512, + -187537.9427673691, + -188286.14667897578, + -188172.5591447211, + -188398.48892919585, + -188163.391662388, + -187804.12340613295, + -185577.83795216106, + -187501.71933425503, + -187587.08880175353, + -187521.54406894254, + -188028.0949108722, + -188061.22295862038, + -188256.72208444707, + -188476.10056489505, + -188485.98826566394, + -188518.84975849348, + -188518.25470222684, + -188453.06253164104, + -188396.41158598493, + -188345.5402286827, + -188383.97417014395, + -188397.65911864082, + -188327.75352780774, + -188011.48721764886, + -188302.3685863598, + -188359.7452217864, + -188067.38926369348, + -188501.6178230978, + -187567.7001615884, + -186675.79639052547, + -186707.68769738608, + -186889.37334551246, + -186291.1911451345, + -186989.15942660804, + -185853.3718166437, + -187271.08204112732, + -187348.63421752062, + -187554.30501214246, + -187649.85293612428, + -186879.65209386378, + -187244.61048096724, + -187154.04340592172, + -187692.31182614467, + -186640.3528644003, + -186681.88272520696, + -186350.56007629345, + -186557.0595740633, + -187487.54660540985, + -187371.21086043568, + -187303.41224789037, + -187411.98825159538, + -187463.35967468497, + -187318.19430842687, + -187437.8841669884, + -186033.67372700493, + -186008.7916507735, + -186078.14045517158, + -186108.63102585988, + -186939.9285527728, + -186936.38431708724, + -186972.09442050973, + -186879.7359633921, + -186984.41818152944, + -185969.2729297153, + -185798.58472768634, + -185870.23223539593, + -189292.95169776288, + -189494.6934112341, + -189326.24295138277, + -189480.1865117243, + -189446.34306059004, + -189358.18497589478, + -189404.17320247806, + -189265.0231138431, + -189372.33628926397, + -189458.1241264266, + -189129.6599752958, + -189426.05987348396, + -189409.23422673906, + -189286.6328264702, + -189389.49688049342, + -189313.74074668097, + -187751.72083891128, + -187076.09070858092, + -186912.38462175036, + -188965.47987347044, + -189069.16209137047, + -189102.77715540328, + -189135.83882498092, + -188978.2368169874, + -188961.64872165, + -189021.61764845366, + -188762.91719638073, + -187661.2072276682, + -185455.67429735223, + -185449.35314495498, + -185711.47020234595, + -185720.25737344744, + -185791.17667712452, + -185644.0000068018, + -185702.2403112886, + -185714.91162220383, + -185966.1274989558, + -186029.8168894544, + -185980.73022512393, + -185918.62006951767, + -186074.34110850515, + -185967.65473758016, + -185912.79278654896, + -185910.2529198803, + -186074.93122414872, + -186001.86051648084, + -186832.7195104887, + -186108.97183798853, + -186102.11742970758, + -186268.66597161358, + -186147.42151117936, + -186134.44552984045, + -186116.22553471103, + -186240.78791235245, + -186220.0874551632, + -186211.2465119336, + -185721.6361586473, + -185731.8584489242, + -185807.2781334582, + -185677.78297079756, + -185777.8946131462, + -185711.15775236682, + -185463.91840826042, + -185433.64652967916, + -185662.1639660892, + -185822.67958441644, + -186298.50636453225, + -185689.56644176925, + -185438.26027515047, + -185409.17303563593, + -186224.27135727915, + -186298.08317751426, + -186345.2599174619, + -186205.19783801437, + -186247.72530939055, + -186256.56822646176, + -186150.59933272027, + -186288.81160163097, + -187443.3928854305, + -187452.1772530611, + -187642.96896241207, + -185878.00221058106, + -185807.32743469166, + -185902.22732454303, + -186606.81926120326, + -187647.5690992496, + -186476.53578284683, + -186438.41734368665, + -186573.2937496868, + -186502.02138871377, + -186349.21861987398, + -186310.0223569153, + -186274.76857716416, + -186331.85276631886, + -185983.7434419839, + -185818.1346321836, + -186002.50966320807, + -186042.88912072591, + -186121.47925284848, + -186717.06241415057, + -185916.95262886243, + -185806.39721748504, + -185580.1522161938, + -185880.08983432362, + -185934.5985057661, + -186056.47685413636, + -187823.113834285, + -187877.20307305898, + -189116.18185272234, + -189150.4406044805, + -189062.64094765644, + -189084.98088599712, + -189112.29607800412, + -189029.52319166693, + -189143.4111983908, + -189055.97021726094, + -189166.74178145034, + -189245.6231883351, + -187672.05038897906, + -186892.24831707022, + -185501.22940075284, + -185887.9116084029, + -185852.81758394415, + -186551.7145795559, + -187426.84525135905, + -187378.69444328308, + -186788.20187772284, + -186763.38064184826, + -186701.82275168115, + -188314.138705119, + -187817.7468885494, + -188092.37659809837, + -188180.72176382353, + -188414.69558309155, + -188059.4601945175, + -188373.40505639598, + -188264.2195934443, + -188320.12878054316, + -188279.3082778884, + -188259.35815363447, + -188381.41438960162, + -188456.62670565912, + -188203.95744939387, + -188267.72042267103, + -189029.3114905367, + -189629.98277226143, + -189142.84215571234, + -188622.02436373147, + -188630.3315350438, + -185323.49054395297, + -185924.99338734476, + -185895.40664220214, + -187147.5761046197, + -187108.92789936063, + -187993.21676425092, + -187922.35810760508, + -187892.88679803116, + -187666.8726984889, + -187557.1706597231, + -186313.83578554614, + -188083.38799385336, + -187259.12778693333, + -187273.5342161505, + -187331.86667688502, + -187331.38102223023, + -187227.1136100382, + -187171.76294520684, + -187181.90006387417, + -187306.32934127536, + -187243.66628145642, + -187271.48480846945, + -187256.19230974244, + -185657.2917482269, + -185666.85028914805, + -185591.8222642259, + -187103.63428327104, + -188209.54055470478, + -188222.8670521776, + -188362.19832204955, + -187529.6417177125, + -187434.5731242961, + -188632.7958142112, + -187021.88931313905, + -187431.9043514244, + -187477.0269830232, + -187338.2293802138, + -187320.91315713827, + -187227.73220051124, + -187345.71837811806, + -188439.03343750766, + -188408.0615378219, + -188313.1182042166, + -188352.28480591113, + -188446.83179684373, + -188296.7781034227, + -188380.76386155013, + -188414.5214674675, + -188231.59919262267, + -188324.05487145262, + -188410.1995272695, + -188137.98152500016, + -188169.61385914954, + -188305.0884720353, + -188124.0392341609, + -188417.5878908665, + -188385.25230416303, + -188342.91289083599, + -188370.81252883916, + -188341.34483720383, + -188301.141957558, + -188351.53178116586, + -188385.78051688513, + -186621.86407557828, + -186437.83235122028, + -186648.74080964338, + -186693.89186781415, + -186609.15991015043, + -186541.94642658572, + -186694.5596479308, + -186029.39161897544, + -185985.24596467766, + -185111.35544820773, + -184878.2925505224, + -184900.92048438126, + -184980.95907930352, + -184830.82603230205, + -184985.15467209017, + -184866.84489150278, + -184971.35089743548, + -184817.5826812654, + -184926.39571750653, + -187944.50525826582, + -187830.56628117207, + -187777.7246566672, + -187860.09405448032, + -188340.82871420533, + -187565.0428723036, + -187698.48595699875, + -187787.3662495655, + -187844.7862156998, + -187744.18704166426, + -187702.7046883214, + -187652.86349496595, + -187596.90565444194, + -187363.10526503893, + -187316.0784152729, + -187391.86258957486, + -187448.2440636445, + -187532.07471562567, + -187466.55375368948, + -187455.6494347709, + -187150.13887341777, + -185776.61739803432, + -185680.40854732087, + -185830.5389118821, + -185650.36841039386, + -185677.2673627574, + -185485.39401094842, + -185469.22223657562, + -185206.36499600124, + -186018.1826105063, + -187401.52853024635, + -187570.49869336904, + -187541.9398725673, + -187030.8972838196, + -187083.4526611306, + -187603.82918211873, + -187647.28536999365, + -187308.42593291332, + -186478.90406636745, + -187768.17273301232, + -187767.25461447696, + -188326.21750175883, + -188576.2471463381, + -188259.41185450985, + -188247.40100032825, + -188286.73832435787, + -188135.24485311715, + -188421.00379537063, + -188338.0087478835, + -188259.29964565398, + -188174.46166792992, + -187733.72742661694, + -189209.24392154833, + -189128.66516890543, + -189089.44703730565, + -189062.26751784116, + -189006.18627960136, + -189111.3455266276, + -189183.16372887848, + -187208.4193053007, + -184875.45037648498, + -184932.71484965115, + -186360.36121976856, + -186390.50909656734, + -186320.02787605638, + -184958.27162066122, + -185033.19564760168, + -185026.3672666458, + -187316.7533220786, + -187314.78830484283, + -187883.4205209049, + -187808.0234352976, + -187776.47222745066, + -187832.17732583472, + -187638.8520412594, + -187656.30212836852, + -187855.14822512827, + -187775.23649809035, + -185541.74694908792, + -186776.31835431908, + -186729.0680799888, + -187779.0215989265, + -187810.13455863777, + -186667.31905664725, + -186561.9599579625, + -187383.1444426275, + -187447.61429908752, + -188454.13766259872, + -186964.5945298959, + -188063.1798418329, + -188001.539550981, + -187993.0192754519, + -188024.4130746416, + -187747.9444130807, + -187744.0116635731, + -187731.8432907234, + -187573.80466904546, + -187598.80645447352, + -187596.5046491663, + -187288.80200411892, + -187262.42396248772, + -187561.7118743889, + -187419.58663264677, + -187402.7377700646, + -187339.4240354632, + -187316.92185478634, + -186977.2543088253, + -187878.10399634237, + -187863.8697123179, + -187890.12675137995, + -187814.57497653816, + -188215.60907166445, + -188280.47213881285, + -188236.56312966373, + -188210.48406885206, + -188193.0718934871, + -188271.17600125467, + -188293.4502131511, + -188171.78614487077, + -188012.6788621272, + -185655.59341981533, + -185736.52136136606, + -185770.88788624728, + -185697.46901445196, + -185414.48586402094, + -185132.4642161289, + -186356.13856033777, + -186313.2958451689, + -186338.92011198975, + -184516.72003001926, + -184843.76024899518, + -184933.89129201812, + -184021.75602492446, + -184691.19229069614, + -184152.9240079309, + -184482.14613425103, + -183953.893675741, + -184469.7626795134, + -184344.23325082078, + -184103.1688565142, + -184685.21209432156, + -184415.6816187155, + -184632.38804639404, + -184375.86977942512, + -184332.48851433082, + -184723.2742356617, + -184005.75934572695, + -185281.13137164246, + -183999.60156087438, + -184625.9060468856, + -184466.14155302377, + -184542.5949496982, + -184302.81502155322, + -184560.35288850742, + -185118.94034561815, + -184086.80238717035, + -184046.9710787171, + -184809.0256036502, + -184399.0840219996, + -184391.88672906658, + -184053.19035581584, + -184512.93542301055, + -184548.98355077006, + -184938.66553901948, + -183986.1946205672, + -183956.9061762835, + -184572.61247797642, + -184674.4397575011, + -184157.5174739141, + -184478.13298193726, + -183878.92287719354, + -184826.67048045195, + -183926.29882842753, + -183984.95380032572, + -184517.13018578722, + -184534.56925160962, + -184964.8159797254, + -184359.2583782949, + -184454.54429874875, + -183922.4251984298, + -183983.12872461032, + -184448.92155459523, + -183926.65394185428, + -184483.14178490062, + -184459.0371071663, + -183908.0265364355, + -184093.90873268884, + -184448.99616662858, + -183772.9734046665, + -184052.96519921636, + -183918.1878761729, + -184098.43718922336, + -184056.83511514793, + -186797.6920016611, + -186764.78961016686, + -186606.74246421392, + -186814.08319625797, + -186841.85064924235, + -185229.98445879115, + -188223.46779498976, + -188109.9241793382, + -188213.9164635894, + -188205.49509758296, + -188211.13477789238, + -186979.2569175904, + -186921.99192275654, + -187768.56183739353, + -187794.3370978308, + -188356.18496868218, + -187548.05692883665, + -187406.00798270156, + -188336.9253777015, + -187323.43987749555, + -187120.4632982402, + -187105.4559362055, + -187186.98604338866, + -185016.98524079414, + -185085.52919270555, + -184987.4994595672, + -187742.4789028903, + -187594.73212482024, + -187526.96904194946, + -185580.45179848326, + -185344.8813752901, + -185852.06992264595, + -185836.92063664558, + -185725.27257533383, + -185784.19337082037, + -185614.49407683435, + -186964.24290234642, + -186779.89753024382, + -185624.99907570484, + -184719.94581504792, + -184726.23986392902, + -185955.71425621217, + -185838.49510347802, + -185787.33131372032, + -185765.99863251753, + -185817.8275685583, + -185963.7812395475, + -185746.10347257685, + -185842.28988354502, + -185790.03574118888, + -185826.68751853835, + -185733.232588588, + -185937.87729888412, + -189368.39644194843, + -188481.58842989343, + -188436.02662832712, + -188325.26049889467, + -186771.04894559522, + -186697.15984983026, + -186693.21655215652, + -184892.2726260721, + -185567.8690752443, + -185578.18959431755, + -185583.02070754246, + -185562.19137743715, + -186403.77082742343, + -184575.60851572294, + -186874.65690847478, + -186891.23996141268, + -186834.68317631911, + -186910.4333978544, + -185651.45994159847, + -185623.0827940337, + -185632.32875706351, + -185666.31528947095, + -185554.52363601752, + -186288.04758386785, + -185753.3971158193, + -186310.58059116386, + -184616.7688318368, + -184401.87544151273, + -184525.4736316065, + -186276.35195535765, + -185972.8434477619, + -186838.5032892438, + -185727.61304680264, + -185697.17376918934, + -185798.98620961388, + -187642.51836253164, + -187764.57816116777, + -187542.06987581123, + -185293.2187831642, + -185903.43875753888, + -185785.14838709997, + -185973.87764999818, + -186067.0862167175, + -186158.97877465814, + -185989.4316304029, + -186114.6936778866, + -186055.8109308676, + -185291.57756024352, + -185048.40507163212, + -185076.47558780372, + -185092.58870926997, + -185301.4444383572, + -185242.82400176267, + -185140.83648854677, + -185157.6814537348, + -185155.94466425403, + -185208.11002613642, + -186565.59087154226, + -186480.25347723064, + -184448.6407484703, + -184666.32580902395, + -184668.23630678613, + -184495.94596649605, + -184482.70184172114, + -184478.35050815623, + -184512.32520094118, + -184261.5465761945, + -184634.49566379888, + -184560.19984549735, + -184670.23840157985, + -184371.61625666966, + -184578.3021335712, + -184565.8562626501, + -184563.241697051, + -184561.60399324592, + -184436.1199384927, + -184432.395119436, + -184361.95124302662, + -184540.22533401122, + -184570.8246640068, + -184324.04454522333, + -184444.7061040916, + -184434.7383033702, + -184412.2399147937, + -184385.86924617414, + -184647.3278054887, + -184525.70918441145, + -184452.65560742965, + -184455.16677151565, + -184602.90357108583, + -184335.66035031216, + -184329.45753261627, + -184396.19705080253, + -184415.37550663672, + -184603.9470967293, + -184259.92373122973, + -184555.74403726184, + -184468.20206422772, + -184378.76424846865, + -184349.91600976678, + -184416.8796289699, + -184531.81137137485, + -184365.4363055658, + -184522.8186824892, + -184214.71754588166, + -184462.5055205388, + -184630.82440155972, + -184268.241804971, + -184387.83293723778, + -184263.5080821243, + -184299.18997492632, + -184595.47202338692, + -184367.0304015083, + -184503.80352402254, + -184699.5789652916, + -184396.12613862206, + -184558.88043573382, + -184443.74404577023, + -184532.7557788167, + -184485.79925380167, + -184585.6667816663, + -184535.5438101554, + -184312.79009042695, + -184469.3966283573, + -184380.98245245064, + -184529.99194847723, + -184415.93947968376, + -184490.68544655846, + -184353.56639420363, + -184403.17947942961, + -184239.7978809641, + -184472.87944490157, + -184437.15623543007, + -184323.3322352525, + -184343.2045702599, + -184626.3527931452, + -184462.3167709153, + -184533.35011545193, + -184436.2619308537, + -184431.31792950505, + -184608.74823234757, + -184525.2715713245, + -184325.9582852508, + -184428.10464539006, + -184371.6132084216, + -184211.15437910138, + -184572.96927713798, + -184583.2702726393, + -184430.24335061625, + -184403.36231750465, + -184453.03854239488, + -184385.02662899948, + -184588.89026853853, + -184470.32547589156, + -184590.07805586595, + -184541.99719453312, + -184491.53542994565, + -184482.47262135896, + -184411.4790215959, + -184521.32453058366, + -184314.30332101538, + -184366.10316420314, + -184303.13965177367, + -184460.4007301304, + -184666.42142408775, + -184598.78127871666, + -184634.43962006122, + -184510.82978744808, + -184295.7969173079, + -184270.03347038655, + -184562.56576027544, + -184335.1636910743, + -184393.67580475452, + -184415.05527906748, + -184359.19078144277, + -184517.4784958797, + -184361.13898158647, + -184483.3183891127, + -184530.67200001556, + -184319.54353745113, + -184442.3560432253, + -184343.06019309026, + -184499.12636936383, + -184309.25597490775, + -184609.18084080587, + -184650.4287460847, + -184514.18980174183, + -184624.57672919738, + -184479.1033492302, + -184519.87542979151, + -184441.9149540535, + -184632.72769793158, + -184497.03806767587, + -184384.12166117266, + -184280.1057777649, + -184496.8931498738, + -184398.13435960136, + -184297.99249258768, + -184338.27076041044, + -184415.7362226067, + -184546.95625114103, + -184457.04009611104, + -184372.91083005106, + -184347.8071741038, + -184518.7451596348, + -184406.7120236349, + -184293.26120611504, + -184266.78907644618, + -184209.51427339256, + -184398.74708779794, + -184614.44298991206, + -184632.3570707878, + -186007.6159161239, + -186163.37174399567, + -186107.7087016988, + -186053.46910530954, + -185967.29699299918, + -186292.72724037222, + -186455.910536921, + -186026.151084583, + -186855.24147507292, + -186711.62852341603, + -139341.949669956, + -139539.797746249, + -139146.21128232183, + -139565.22959641, + -139465.3572705693, + -139296.28092584724, + -139274.0018388218, + -139295.3614578835, + -139258.7541785887, + -139233.79058958867, + -139465.6696429816, + -139421.82453819446, + -139314.36540387178, + -139471.37099448388, + -139322.61723275625, + -139254.49879413686, + -139152.07069639352, + -139446.30071366948, + -139338.01794312976, + -139349.40202200913, + -139454.68894926444, + -139556.73393765689, + -139401.883376087, + -139542.7100989013, + -139525.78047562818, + -139405.61393328427, + -139426.94510950823, + -139521.39146743398, + -139421.50755701648, + -139349.08980886897, + -139525.91943066413, + -139272.999764756, + -139272.36405853787, + -139336.093312044, + -139246.6141244061, + -139523.06559060336, + -139247.63421479816, + -139207.23911923319, + -139476.1859444214, + -139329.5233097719, + -139294.17738416753, + -139215.67203308453, + -139343.36984284074, + -139356.00664369308, + -139261.90354299522, + -139184.40763990118, + -139349.4517755712, + -139476.30021379262, + -139542.46177825486, + -139219.37353035068, + -139431.9287754304, + -139403.71827377586, + -139622.15994571723, + -139284.25180573002, + -139218.83581593077, + -139644.58808539595, + -139222.4936281499, + -139420.3443880718, + -139486.84931904363, + -139275.2295283498, + -139592.2183367796, + -139230.0369023893, + -139470.57660551192, + -139300.0220610434, + -139449.34942189485, + -139256.2653134632, + -139514.16899338784, + -139255.36501145226, + -139347.38841428462, + -139398.2862961737, + -139186.35936738102, + -139422.8248009617, + -139371.6788113676, + -139225.554311968, + -139267.33349575038, + -139318.1970961605, + -139569.97881076875, + -139270.18681502272, + -139325.29900676035, + -139340.60702624888, + -139291.87542162067, + -139624.6153460218, + -139676.67233930697, + -139375.54836322943, + -139384.8347452151, + -139550.11749199033, + -139375.36967259427, + -139348.05547720563, + -139257.18421795493, + -139254.19065915552, + -139280.63467425137, + -139453.21013689402, + -139222.95188000842, + -139338.8615734688, + -139127.0662061807, + -139201.34117110627, + -139332.2127012205, + -139324.84427304813, + -139250.52794257455, + -139481.79335763532, + -139315.25978792255, + -139302.56149450256, + -139375.76431838053, + -139305.36694469122, + -139629.7013795666, + -139245.1631113287, + -139150.7296967715, + -139602.53344158875, + -139430.88631425935, + -139249.79431222109, + -139268.95938093786, + -139399.45535473176, + -139521.13313974865, + -139562.00160215882, + -139296.22896657095, + -139181.26970845836, + -139531.90105065668, + -139624.8964741382, + -139440.99814282567, + -139172.61805303066, + -139252.62835533492, + -139239.7146275747, + -139406.58475620614, + -139305.65388160577, + -139245.6143086338, + -139362.49801767562, + -139368.9630914053, + -139496.4003878001, + -139210.4343189794, + -139251.7462727586, + -137645.21150798537, + -139347.1583152886, + -139185.43947442787, + -139141.95977890037, + -139374.80029288903, + -139298.21212116178, + -139245.84191401702, + -139386.5195070693, + -139458.52947640378, + -139319.53739196222, + -139500.62502624292, + -139269.75368532154, + -139353.4017776092, + -139497.7060077906, + -139392.14969518423, + -139465.92291392805, + -139446.17035811715, + -139288.9652240138, + -139258.63230897923, + -139222.34616055127, + -139579.0114335206, + -139504.72005689488, + -139301.92562235743, + -139323.9460419651, + -139301.641083254, + -139487.4178243815, + -139368.99379823424, + -139341.07849414786, + -139230.70690965184, + -139322.4115244643, + -139499.0742565992, + -139299.58894052787, + -139361.88864313313, + -139552.7148175742, + -139319.57765505658, + -139452.5128782478, + -139262.00402649786, + -139325.02744581705, + -139337.2275268746, + -139407.11302883684, + -139273.62445480048, + -139199.82122981313, + -139293.78939414152, + -139312.25160916877, + -139309.58979877408, + -139287.7030189087, + -139455.60678241128, + -139238.1184562021, + -139561.07093915364, + -139356.6211330608, + -139481.56579861138, + -139205.18843565695, + -139293.35993355856, + -139500.82792815822, + -139381.53581003318, + -139272.1101007574, + -139204.18767959758, + -139466.64476026874, + -139244.23799759592, + -139412.313857633, + -139490.90714418553, + -139564.66187716788, + -139419.0209359383, + -139195.77514016427, + -139620.6116018754, + -139403.47462324586, + -139390.86121724633, + -139278.73799679236, + -139355.46728532106, + -139325.20445922078, + -139268.90384384684, + -139368.21065153804, + -139243.84566835393, + -139439.8644722435, + -139311.07528284538, + -139452.66971040476, + -139410.2270479437, + -139233.21359476962, + -139386.56646685992, + -139330.93814001975, + -139292.83803425037, + -139565.19409284645, + -139280.11347929307, + -139371.4788165129, + -139255.5205051406, + -139380.35416142584, + -139440.57369675537, + -139256.15369253952, + -139350.5393342178, + -138292.50237790353, + -139393.05546993954, + -139343.99282516513, + -139492.56377327073, + -139328.0534871222, + -139590.06090134796, + -139268.65204027394, + -162116.20043753972, + -162125.48737219273, + -186210.2538179402, + -186189.87064224097, + -185633.56148535747, + -186484.6927396635, + -185717.30202552347, + -185565.68090042786, + -185436.73528009508, + -185387.24181644092, + -186693.21580687084, + -186817.60492868512, + -186771.81868420233, + -186646.66034112757, + -187059.63779786762, + -186549.29909114336, + -186609.05910111836, + -188163.4372575625, + -188178.96030772812, + -188757.56169839122, + -188351.81043164252, + -188249.63103895306, + -188730.12048244115, + -188276.72026730192, + -188189.30416656632, + -188192.0034322741, + -188290.9601897545, + -188719.19122749128, + -184743.18095205686, + -186510.77814177045, + -186573.3663340251, + -186606.6604376666, + -186376.56840758125, + -186481.02628071915, + -186270.72457911135, + -186368.82373217016, + -186959.9607940277, + -186229.18141067243, + -186563.95497765776, + -186483.8946055219, + -186511.39743435007, + -186382.5747826665, + -187046.01116874782, + -185485.81598355123, + -185498.34392864152, + -185701.20064437657, + -185624.12085151995, + -185825.18129384934, + -185792.9261615262, + -185777.55867690372, + -185599.70858937444, + -185694.282919335, + -185472.77572732724, + -185549.58620082302, + -185819.18617559347, + -185751.22791972532, + -185694.7882635787, + -185592.74158341286, + -185714.6501823629, + -185796.95803472877, + -185665.73353903665, + -185590.6028889697, + -185680.08075913816, + -185578.91825066306, + -185742.93606300268, + -185770.52060652812, + -185623.07925557217, + -185822.61530116087, + -185511.56454960397, + -185722.02131296776, + -185684.72951200834, + -185546.35826834274, + -185650.08701435704, + -185542.62007957482, + -185750.34116926818, + -185562.20409519147, + -185578.7055139462, + -185625.67626786084, + -185642.09079542043, + -185662.28784714767, + -185541.54208441218, + -185668.33577293195, + -185750.3502888854, + -185861.49673175454, + -185708.1687654314, + -185618.98439702013, + -185518.24947672113, + -185835.7597285131, + -185773.82512637385, + -185512.78839085187, + -185652.0261395966, + -185746.51091015068, + -185873.04603168063, + -185361.677162874, + -185411.21735269792, + -185521.48335125647, + -186857.89701196033, + -185379.7874590432, + -185314.1328971909, + -185396.9854106273, + -185739.1249763607, + -185362.75844820152, + -185281.317667854, + -185272.70789378206, + -185291.36523286297, + -185174.38186064654, + -184746.1499818466, + -184689.754206081, + -184843.0177536058, + -184853.5029479663, + -184718.15641227114, + -184800.69552071634, + -184707.82276925643, + -184774.76972403165, + -184826.2852678662, + -184771.05300911746, + -184684.19434018733, + -185078.36462542813, + -186687.5390903128, + -186171.58567249685, + -187787.56778004483, + -187824.5134312553, + -187833.02563482567, + -187581.7153446357, + -187652.55658732413, + -187580.99353856346, + -187754.07494608234, + -189535.01243196902, + -189425.32230335136, + -189312.48116427055, + -189513.44740838156, + -189517.99575540732, + -189944.012554813, + -189496.79918659473, + -189469.04376733972, + -189362.47419392664, + -189382.47630280166, + -189485.70992618654, + -189559.7791311184, + -189500.13200693708, + -189363.56864523052, + -189453.44844629106, + -189572.48058974993, + -189475.58635906797, + -189526.51874136768, + -189367.89125734873, + -189541.99521682394, + -189567.65578797, + -189471.45745863195, + -189366.884398309, + -189599.46915367024, + -189455.07428863845, + -189511.27264576766, + -189580.51999570787, + -189452.41670386208, + -189357.50921074985, + -189441.34490278744, + -189338.2129481716, + -189539.74164709073, + -189596.23961239535, + -189439.38497924476, + -189423.64743936853, + -189409.86495387822, + -189539.70128887953, + -189667.71460354235, + -189593.34528908966, + -189550.91913873702, + -189351.29030582856, + -189944.03349898005, + -189421.9621471471, + -189523.16925353085, + -189362.616609502, + -189550.7519103663, + -189303.51340100932, + -189504.79772117123, + -189478.73813235975, + -189513.39599368742, + -189335.5119015967, + -189566.15070619906, + -189492.97056199546, + -189370.19960247193, + -185013.49245940326, + -184958.53058641133, + -184935.10362539484, + -185074.06093464053, + -184859.90571038926, + -185383.19785552978, + -185727.50454600956, + -185535.53248590635, + -186134.11497462608, + -185680.67525457422, + -185536.38613328367, + -185655.1626902235, + -185488.5778872063, + -186105.887330311, + -185976.58162628958, + -186073.11253527744, + -186128.44688249985, + -186033.4105802999, + -186002.9429366717, + -186045.44966286444, + -186081.69116184756, + -185660.47909749488, + -185707.75565992156, + -185700.99602275767, + -185718.84276913418, + -185902.6810428331, + -185956.2569658538, + -185833.31614885287, + -185851.9149913291, + -185927.02764805633, + -185956.9814913556, + -185864.94860133113, + -185974.76542021832, + -185843.3464556168, + -185802.44778285624, + -185754.544341611, + -186863.0905598625, + -186747.14508188295, + -186786.29748301074, + -186598.35931928424, + -185525.00035815442, + -185444.044824558, + -186566.67634397448, + -185354.45827997458, + -184622.6678207158, + -184757.69014603368, + -185572.97533470273, + -185426.46129555986, + -186389.46830649345, + -186349.721133472, + -186355.21655197296, + -186513.88131954975, + -186461.71104419266, + -186495.60474119912, + -186499.94535950987, + -186065.51198935235, + -186213.8074190881, + -186160.78639569957, + -186112.10093216717, + -187073.89756594264, + -186996.16233734277, + -186997.73649561932, + -186937.89091646543, + -186864.95551788062, + -186985.11266736986, + -187030.91302532048, + -186947.00283212372, + -186997.2675516971, + -186875.9473745203, + -186901.92526942323, + -186900.29593926048, + -187024.62336807686, + -187037.0011573454, + -186832.6725820172, + -186813.1846090411, + -186614.42390696477, + -186560.72865754293, + -186461.4445482228, + -186550.8345017166, + -186570.36775560552, + -186423.99947252453, + -186628.01342634475, + -186475.36638154497, + -186064.49513448935, + -186061.0704683533, + -186156.7436722801, + -186019.09209682065, + -186017.97165171077, + -184373.86341036516, + -187019.55647718406, + -186971.5333996734, + -187500.48780981993, + -186878.72794609106, + -187396.02141762438, + -188618.1767619867, + -186571.8229187881, + -186630.38236103597, + -187104.66672028726, + -187258.6264260895, + -187483.32473075076, + -188300.89497706314, + -188042.5665423474, + -188364.38063477044, + -187286.4447786102, + -187200.34425699944, + -187965.5292712589, + -188225.16941637502, + -188062.36969725473, + -188181.734542407, + -188155.6659757379, + -188111.17360157988, + -188128.15679037262, + -187472.995221879, + -187574.469287988, + -188062.32220423166, + -187894.01688021977, + -188099.19669860823, + -188601.02966071616, + -187946.30083110215, + -187939.07366045075, + -187903.16231886458, + -188040.85490399896, + -187860.1481306559, + -188160.71996131094, + -187432.15774098889, + -187525.83126370964, + -188031.27587781637, + -188070.40997344436, + -188048.3992797907, + -187895.89321173978, + -187936.34066587713, + -188155.82804223945, + -188130.31137840738, + -188120.22345911132, + -188032.87803354842, + -188172.4473275845, + -187808.99921337265, + -187967.87420157884, + -187734.2241532564, + -187631.17759388033, + -187665.10987331756, + -187571.98956801443, + -187705.53688735073, + -187482.80309790745, + -187551.0033509855, + -188658.0072073565, + -189077.79649620972, + -187731.77787177297, + -187759.8314365375, + -187692.0166453802, + -187044.02292752767, + -187058.71596401595, + -187088.50568167077, + -187073.6774906163, + -187239.5588897707, + -187170.77976082207, + -186801.35615984973, + -187206.43231087644, + -187147.2617761165, + -187156.6127847207, + -187288.92506628836, + -187242.12665091688, + -187173.12966849466, + -187092.16430615127, + -187263.40330149935, + -187369.76914685333, + -187198.53043071972, + -187165.6819904993, + -187252.84288585366, + -187210.98676202566, + -187153.50395988487, + -187277.2067933512, + -187342.80854711783, + -187068.89280375512, + -187238.5009002487, + -187216.975043701, + -187109.7384653588, + -187259.9476909209, + -187308.82684037564, + -187159.23609979774, + -187363.1881956749, + -187159.41832586098, + -187410.99982117375, + -187606.8809797769, + -187444.6011580884, + -187390.00271703285, + -188118.10121137855, + -188058.55113991152, + -188152.38460645571, + -187998.2545058029, + -187975.58317137446, + -188204.5488536757, + -188186.43905492313, + -187962.60318830537, + -188107.7357415216, + -188164.08029550806, + -188015.52564658516, + -188145.6956721136, + -188116.4163078441, + -188629.10826848733, + -188615.4770908332, + -187617.20728946448, + -187778.39851127946, + -188244.79326966844, + -188213.14960795594, + -188231.4342562094, + -188113.22548338465, + -188023.6918304611, + -188262.28974807056, + -188215.08406320887, + -188272.12758768487, + -188247.52374121372, + -188234.36159403733, + -188185.72950550105, + -188235.01025868888, + -188188.26732140826, + -187106.90783512246, + -187129.68155894056, + -187291.27141208755, + -187309.56083654592, + -188031.80187769613, + -187966.1524006884, + -187974.4559084142, + -187907.4340805515, + -187767.69283004745, + -187180.89797155827, + -187226.84036497626, + -187060.70491358606, + -187284.9913843901, + -187186.54130078974, + -187275.69818428368, + -187867.79057975026, + -187990.37417889741, + -187368.6219077213, + -186143.80639793802, + -187491.1668464797, + -186533.40398627482, + -187180.10508663693, + -188912.60302975413, + -185478.86967573757, + -186026.48205634058, + -186004.81625674714, + -185520.730759067, + -185998.5887411339, + -187137.15198455175, + -186802.3568031418, + -186868.89558539094, + -187655.25025753496, + -188776.08503380354, + -188714.40557555703, + -188312.61881360278, + -188175.30943800946, + -188163.88067313796, + -188226.39056838182, + -188209.27391620574, + -188335.63051938498, + -189088.68284567073, + -189075.73849338002, + -188951.38770398786, + -188963.77157590713, + -189065.25002395606, + -188951.75753479835, + -188905.5182702426, + -188940.43452731014, + -189039.75779005556, + -189206.12228753112, + -188851.90860081342, + -189009.33129113074, + -189075.7496586295, + -188914.1058596282, + -189044.50009148906, + -188978.63723458152, + -188869.1337570157, + -189039.16739681517, + -189001.4557504514, + -188915.3021854897, + -188715.59088057993, + -188811.45728948622, + -189093.52694899408, + -188064.28392279483, + -187758.21727978287, + -186958.81639775305, + -186907.28656468532, + -186927.36304929492, + -186672.81797529917, + -187707.60820000168, + -187504.85470640293, + -188023.84131581298, + -187790.5245520355, + -188012.06379015357, + -187675.9578640814, + -187970.69994692729, + -188070.52866315134, + -188065.10539432376, + -187968.263731226, + -187700.7506709641, + -187765.9490496175, + -188079.28387346116, + -187859.43582945326, + -187881.72894882134, + -187846.40461867992, + -187850.35451233227, + -188149.60791583278, + -188022.7222170089, + -188255.90003583845, + -188221.7088630824, + -188193.52566727533, + -188355.29507459403, + -188312.87042909442, + -188128.3711568641, + -188355.54500076355, + -188736.05243360804, + -188740.43423724885, + -188813.8225883926, + -189133.8473924533, + -188770.00276586786, + -187738.94090615874, + -187912.43204192858, + -188179.3106533003, + -188134.73671238107, + -188143.66245138436, + -188187.54601173053, + -187975.5749715801, + -187947.11070160166, + -188181.5560967198, + -187883.27494840516, + -188169.70603632976, + -187970.877541831, + -188133.03987872423, + -188110.62617021287, + -188151.5012872308, + -188211.38351583906, + -187925.41207692228, + -187993.2042355374, + -188267.4433579352, + -188341.5637869163, + -188290.85103842587, + -188325.80348101287, + -189041.39569706662, + -188572.92778198744, + -188651.52337605663, + -188170.50337793116, + -187892.03383253983, + -187909.65223383403, + -188044.8103796621, + -188041.9401363172, + -188262.9817529038, + -188256.1065241927, + -188209.65683125617, + -188114.23360095327, + -188697.0393909679, + -188681.5607578964, + -188730.09509530946, + -190034.47824283707, + -189435.73444291795, + -190501.98770180898, + -190447.71814332827, + -188084.4049082775, + -188259.3724547593, + -188206.0236343385, + -188263.0862416689, + -187803.69675157015, + -188242.03582545792, + -188340.80377890947, + -188113.01612090584, + -188417.0385262703, + -188371.1353376313, + -188321.03177579722, + -188339.34322755944, + -188251.23458842657, + -188337.78581776284, + -188397.17051714816, + -188454.9590132297, + -188208.58303294552, + -188169.8318157927, + -188266.84959804747, + -187741.94817842022, + -187915.18145302637, + -187730.29858536096, + -187855.06171209805, + -188047.300018304, + -187808.78158663612, + -188004.16215920547, + -188000.00859777548, + -188755.66928509064, + -188641.96581119657, + -188742.29461186353, + -188705.16194427633, + -189490.00008750655, + -189693.02311333298, + -190001.3370355461, + -190157.89391110622, + -190149.2470879302, + -189853.4918559908, + -188341.7325242664, + -188482.59835269416, + -188516.73245045255, + -188462.29234457048, + -188223.6915529377, + -189325.9475189374, + -189443.62330827498, + -189362.4367816456, + -189658.36156726885, + -188794.21431317774, + -188577.9696506949, + -188698.27076012257, + -188769.9281353376, + -188620.52703365445, + -188670.32476137517, + -188707.42534730173, + -188712.10885138786, + -188702.73035210292, + -188711.29676749153, + -188103.12207565852, + -189495.15496592113, + -188845.87523352558, + -189032.4074763674, + -189112.60837969606, + -189224.72431987463, + -189055.63729894848, + -189078.20075112823, + -188970.86331049414, + -188090.16004640074, + -188001.36342649613, + -188049.5792653426, + -188098.1789861639, + -188168.62826092765, + -188029.9456644019, + -188084.14766681893, + -187984.70011229935, + -188125.29346391422, + -187981.62287282626, + -188040.22076810958, + -187946.41481497037, + -188064.20365215855, + -188024.33796311452, + -188016.9967920004, + -188156.43008065908, + -187984.27632270768, + -188060.64962766727, + -188017.1144187662, + -188113.48002990385, + -187571.6016396001, + -187064.19611193764, + -188444.14506902872, + -188879.3624434629, + -188491.01308587843, + -188422.62348726718, + -188362.80673320158, + -188367.2149491498, + -188059.13848447741, + -188141.38815636735, + -188116.1496857662, + -188396.4771118219, + -188173.86388179136, + -188086.05933701512, + -188212.2979830604, + -188225.63058791048, + -188192.74355890218, + -188174.69316455667, + -188123.86206640746, + -187930.403868511, + -188034.7860958726, + -188020.54736677188, + -188377.8601678689, + -188278.16470975717, + -187965.47459509477, + -188379.13752876033, + -188291.99341747075, + -188172.93746177154, + -187617.11614566448, + -187526.08903537705, + -187674.11098333378, + -187674.84914594653, + -187730.26368818164, + -187736.67929052594, + -187773.52054137996, + -187501.71133436213, + -187634.29116306888, + -187558.68805862614, + -187669.9562295721, + -187771.99177388693, + -186119.52079627474, + -186288.95960552836, + -185999.16203666863, + -188055.39603818467, + -187504.9066256753, + -186969.2603064072, + -187082.62729634583, + -187036.27923026812, + -188255.60873041113, + -187976.477714238, + -187993.00429935096, + -188015.18762576373, + -188502.16698048013, + -188537.83259610005, + -188176.72236609916, + -188150.16400430968, + -188490.24496475342, + -188463.08599731518, + -187842.37642177322, + -189950.42776230097, + -190060.46897811978, + -189981.01291727906, + -189948.99978218455, + -189877.31094941634, + -190014.67649279692, + -190053.96902679597, + -189989.4594749927, + -190083.1171838038, + -190096.78467347255, + -190096.07678832914, + -189877.19470812628, + -190082.79529512883, + -189883.13957683812, + -190115.00855424744, + -189980.07865196207, + -190074.83957112802, + -190002.89388120713, + -190028.31976652934, + -190003.88761541533, + -189907.48300156422, + -189952.45096025168, + -189952.9122595734, + -189970.4446921895, + -190136.23241432256, + -189913.2901080308, + -189912.5972757215, + -190001.55681149926, + -190018.83290028255, + -190055.39543139332, + -190102.7516358813, + -189863.3993587257, + -190115.46594863496, + -190023.95702336595, + -190012.38051216485, + -189955.59784194958, + -190016.798744122, + -190038.4192383941, + -190021.38597195703, + -190027.5122056294, + -189925.09260238602, + -190005.9285941052, + -186723.40654902256, + -188894.53982702826, + -189183.9255548992, + -189128.86816413907, + -188774.29128529222, + -188377.4874670383, + -188384.8221014744, + -187892.99204450037, + -187939.69243235173, + -188060.7588005113, + -188141.4683259749, + -187985.66986119872, + -188016.84167383236, + -188137.77621320283, + -188059.75644058318, + -187963.3746181554, + -187912.61343497797, + -188088.04522687456, + -188075.4069209078, + -187967.12879439283, + -188090.49990946325, + -188001.86127453632, + -188048.6921698139, + -187956.53599492338, + -187898.34942572337, + -188006.12427452058, + -187862.9006513407, + -187947.29186367439, + -187806.00028568978, + -187983.9730009755, + -187934.93717959968, + -187909.29798849218, + -186621.876169047, + -186692.4367868679, + -186741.5982248406, + -186723.82204225528, + -186331.92093130833, + -186279.27655188824, + -186388.903534561, + -188283.31659324036, + -188239.9298258223, + -188237.88964578896, + -188331.29169328697, + -187886.85685091044, + -187819.40370573246, + -187820.46863147497, + -187870.61997418042, + -187807.5058878382, + -187709.49216077014, + -187741.85674802802, + -188209.98314272103, + -188113.20511465575, + -188169.53042942294, + -187971.1856885119, + -187943.5654100888, + -188015.82954131006, + -187985.37244124175, + -188948.66413662076, + -190096.89096654434, + -189974.37047163243, + -189985.50358982256, + -190018.75625555322, + -189881.52640402465, + -189982.52573305275, + -190303.37435690386, + -190129.35138968015, + -190197.68125067052, + -190162.71323384313, + -190060.9219493719, + -190109.05857624288, + -189342.43960965818, + -190542.72404693422, + -190528.42189584312, + -190387.50133943587, + -190448.01691882563, + -190574.95327101208, + -190449.33451776393, + -190511.44661767114, + -190529.03440203832, + -190537.75501553333, + -189951.22738006982, + -189973.1446726601, + -190025.6059146946, + -188716.242548552, + -189704.3634728571, + -189777.36801090316, + -189592.89736085432, + -188356.17431058898, + -188274.34719061715, + -188129.64780031645, + -188133.9859146477, + -188187.3712458545, + -187998.556032186, + -188653.13430381866, + -188590.65193490608, + -188642.5915163027, + -188608.96821789932, + -188491.18481576003, + -188453.79791390765, + -187621.10380116603, + -187575.41147213435, + -187588.09756598267, + -187647.5494085932, + -187611.58499095225, + -187862.42691907028, + -187942.80643346356, + -187906.52592987043, + -188604.68535202384, + -189306.6357714241, + -189427.61078841175, + -189277.59357979376, + -189487.23133315498, + -189451.93310388672, + -189248.95882783754, + -189230.47303573164, + -189293.00424421756, + -189366.6038676548, + -189332.9999406152, + -189276.45932175536, + -189403.28546952922, + -189217.14323216394, + -189198.15043086934, + -189325.62242567082, + -189384.22659187752, + -189317.61864053438, + -188066.67095698978, + -189098.95554895798, + -188975.88092212117, + -189003.23537626144, + -186773.96651147603, + -186680.0988857744, + -186763.42703853172, + -188808.86236120248, + -188878.37097806166, + -189092.3160336398, + -189091.72331575488, + -189115.96574922363, + -189174.7824324944, + -189157.24885475944, + -188896.42384657034, + -188965.84803500844, + -188977.29955893577, + -188347.30539835, + -188507.92896134197, + -188383.06499636912, + -188337.7090878203, + -188463.68731936606, + -188464.30136542933, + -188438.85061418812, + -188519.72994095754, + -188078.68826342997, + -188147.73696519702, + -188179.73130929295, + -188126.95002996654, + -188067.732082051, + -186989.19017429496, + -186022.8484731827, + -186582.35956467458, + -186644.40821102815, + -186276.30897092307, + -186380.05426090743, + -186366.66193073316, + -186249.20162775152, + -186530.9497347801, + -186838.07892423088, + -186782.58239993363, + -186703.07900031318, + -188115.43138405305, + -186304.48945547143, + -185894.3650318397, + -187307.28028177153, + -187076.1453172014, + -186960.017269483, + -187191.82408836586, + -187097.05438409094, + -187032.18336904267, + -187633.5780712459, + -186980.52193011073, + -186835.21868742444, + -186834.48131419005, + -186896.63197455366, + -186898.4857403215, + -186783.15141955295, + -187003.82345200694, + -186930.054845507, + -186868.36430568714, + -183454.4556818976, + -183948.96667538802, + -184137.3540563784, + -184055.31954335116, + -183942.6631635848, + -183991.55361005352, + -184151.48218769403, + -184043.4298278558, + -184098.23387283756, + -184011.24318851618, + -184221.4732984055, + -184107.8627639706, + -184141.2115983499, + -183965.70838288227, + -184080.74407013148, + -184054.17977045127, + -184095.92236913048, + -183427.52450741653, + -183468.11246198523, + -184220.86336669532, + -183448.23675261464, + -183478.30434363155, + -184155.19932672151, + -184060.82188045702, + -183991.8487036277, + -183408.7996719894, + -184153.1514375469, + -184022.7059931264, + -184061.19109231277, + -183653.6949449289, + -183453.94049617794, + -186017.78871449898, + -188244.00313072064, + -187642.58450439633, + -187676.73784619576, + -187746.50016018358, + -187763.7880342417, + -187815.17680412173, + -187877.05060775447, + -187920.4490734947, + -186347.05945545353, + -187220.9163611917, + -187132.94513084943, + -188062.16660663078, + -188144.67010069184, + -187401.67452925173, + -187525.18521744406, + -186669.07004417825, + -185614.40716294627, + -185192.79185703603, + -185593.93006590506, + -185273.47420901168, + -185211.40111909146, + -185190.66664916382, + -185277.53611586575, + -187274.1302045654, + -187343.49249793775, + -187394.75452353517, + -187300.93102998807, + -187259.70142610237, + -187299.8777924226, + -187244.80180643054, + -187332.91403683388, + -186658.96281459343, + -186713.4375646213, + -188457.13629440215, + -188477.92284249174, + -188531.03886595092, + -188486.4372749181, + -188377.38130930747, + -183282.65685712005, + -183361.18161794438, + -183464.893368499, + -183433.51219686866, + -183454.83768123688, + -183269.02525615806, + -183232.39642749276, + -183309.3093745461, + -182087.23736153383, + -182094.36855869577, + -184069.6521547393, + -184147.62949476115, + -186140.23856401135, + -186153.994068847, + -188437.17592704867, + -185830.8351587531, + -186746.85165138246, + -186884.75829816138, + -185821.64538848578, + -185774.3961361211, + -185320.20394035542, + -185425.12264167838, + -187587.3618641956, + -188355.0198765514, + -188303.63550310052, + -188084.8572338393, + -187395.58003873198, + -187322.44828818025, + -187189.01895715407, + -186418.97489203545, + -184966.2533605747, + -184939.83808412577, + -184993.21116610424, + -184884.01447443964, + -185033.33272861876, + -184992.49271023268, + -185018.8411711607, + -184014.45332893237, + -184934.65343953003, + -184979.51429673051, + -189116.30601221605, + -189212.36051423496, + -189174.68517565948, + -189131.0165825411, + -189167.72369075686, + -189167.94071155033, + -188427.09207581004, + -188324.23665222884, + -188418.21913144834, + -188441.4650250465, + -188445.5181910649, + -188467.52659245866, + -188309.0577119622, + -188432.27960119525, + -188509.53908534927, + -188525.32217186975, + -188384.74779075198, + -188435.01343296896, + -188370.95224479612, + -188400.71709087957, + -188465.6069223673, + -188308.00977643783, + -188406.39216122098, + -188320.2791584246, + -188088.18070606928, + -188328.50499043753, + -188334.61613365755, + -188337.0013544444, + -188418.8611254507, + -188272.04429126595, + -188319.53228907965, + -188852.30706541648, + -188766.82769508022, + -188762.09396253395, + -188673.21619043712, + -169378.16013668, + -169344.14125408427, + -169393.17968203666, + -169416.96099860338, + -169551.3818453157, + -169348.52705148203, + -169359.83740548883, + -169545.8449313544, + -169324.49667951552, + -169436.0497249682, + -169490.59569541228, + -169603.0032231782, + -169405.62489197458, + -169343.7298139408, + -169589.86991772245, + -169356.23498042687, + -169545.28212240088, + -169280.9450788244, + -169372.553645448, + -169549.46033044296, + -169468.52331958243, + -169320.2863155955, + -169441.31671768497, + -169381.24488365222, + -173635.00926671873, + -169571.96017328865, + -169386.7535787633, + -169419.55932408103, + -169652.86980383957, + -169606.2546200287, + -169566.43337423858, + -169642.84989518244, + -169277.37511423865, + -169446.0290591557, + -169479.8007415065, + -169640.66377360295, + -169398.552777607, + -169492.6505170808, + -169303.42487485384, + -169438.62470300702, + -169670.358202471, + -169518.63445990958, + -169458.16723794234, + -169435.0519460718, + -169391.18343571847, + -169379.72481367842, + -169331.45299684268, + -169407.90694092953, + -169482.87945843037, + -169285.9559721673, + -169264.42577758324, + -169392.70401915823, + -169615.727825337, + -169495.95591972838, + -169588.04616772282, + -169433.95314637333, + -169345.47056011425, + -169496.50719911815, + -169460.09445462836, + -173634.2922040698, + -169300.87184353019, + -169354.53427482693, + -173629.4910453442, + -169330.76943894773, + -169519.96951494063, + -169501.82029113118, + -169610.62571105798, + -169324.25162713093, + -169326.57314930166, + -169431.85987472688, + -169483.31429722917, + -169538.3541819729, + -169499.22972979312, + -169404.3866338821, + -169511.19498936835, + -169649.91351843745, + -169287.2120591798, + -169311.3089851137, + -169438.71859283923, + -169355.24062342444, + -169553.1803424696, + -168624.87506894136, + -169372.41900998444, + -169449.22305063045, + -169292.06106073438, + -169144.59176013063, + -169444.63655704536, + -169375.8571831571, + -169381.80418022617, + -169399.62068739222, + -169492.64094444556, + -169304.5215244161, + -169261.65588238483, + -169329.1993639435, + -169695.5695061532, + -168758.49492464514, + -169398.69256838647, + -169358.1076510309, + -169420.13524775338, + -169574.74287326206, + -169416.57296196205, + -169515.2950036648, + -169310.57562489106, + -169537.50719481107, + -169316.58449546693, + -169448.7580978541, + -169284.00204185088, + -169465.03979915124, + -169333.68269487692, + -169296.56143188913, + -169442.20170846063, + -169536.4914924849, + -169474.90139630102, + -169626.45864951386, + -169367.87410591237, + -169476.10791408707, + -169513.68386334792, + -169578.66391360908, + -169346.72799167415, + -169299.96427660287, + -169453.17177729314, + -169376.77103179775, + -169406.5342543557, + -169474.3421468556, + -178055.41538814097, + -178014.1671556615, + -177981.96991200637, + -177970.49030488016, + -178036.43547562294, + -177949.15006345935, + -182247.59705571106, + -178163.6646337293, + -178131.0253649996, + -178108.70633296893, + -178202.65946718425, + -178085.69550089262, + -188482.95193410772, + -188419.5246448583, + -186709.57387613264, + -186834.0978550618, + -188114.69040843635, + -188021.61315320883, + -188144.41832691527, + -184941.34178302911, + -185444.45812838196, + -185677.50351590122, + -185765.7596655601, + -184489.2856165779, + -184454.01464139723, + -184498.4737922646, + -184573.2021564755, + -184621.93570408592, + -184465.9277614155, + -184029.80810323294, + -184605.50077799056, + -184576.40010769488, + -184627.64145343105, + -184506.37513977927, + -184609.0831377138, + -184677.96396018367, + -184664.23676982484, + -184556.3775650089, + -184550.4233071596, + -184536.88599997063, + -184512.64018821175, + -184543.452959208, + -185776.6914500685, + -185822.29164402644, + -185696.655354225, + -185760.94872793366, + -185846.41148709282, + -185909.15469419034, + -185637.4693084021, + -185652.67346685063, + -185535.5286475488, + -185602.36617438102, + -185573.4220194495, + -185521.9131599804, + -185472.62564099822, + -185760.40751850946, + -185138.2952496597, + -184720.63687979916, + -185165.7311987436, + -185893.34313629338, + -185936.0348898676, + -185250.60864012758, + -185649.41923234705, + -185429.39968634545, + -185474.01141745676, + -185687.14488378543, + -185285.8440935564, + -185453.97411013974, + -185473.5944232423, + -185345.18748309344, + -185420.4043875232, + -185496.81537077486, + -185067.60944469785, + -185436.550641823, + -187619.79836570565, + -188121.44388568716, + -188058.76541098158, + -188420.2067400686, + -186640.57850765003, + -183787.8778325471, + -183620.92374765448, + -183585.59515960552, + -183702.47064300528, + -182420.8485208509, + -183654.7560552544, + -183693.60669998443, + -183744.1802364832, + -183628.01772203547, + -183575.58455289324, + -183564.13613035955, + -183676.65146323718, + -183629.47499298933, + -183721.38596098, + -183666.4888270363, + -183638.88510177907, + -183774.8403863521, + -183728.9159629604, + -187943.03068637176, + -187976.53087558964, + -187948.27627186524, + -187693.25148113363, + -185511.4642967856, + -185617.06228111294, + -184099.48942748536, + -185271.49815979396, + -185091.71032325653, + -185177.44259645653, + -185280.3717521528, + -185267.68557543933, + -184652.76724765133, + -184548.04804199652, + -184618.82194938904, + -184588.43758881366, + -184540.4465197977, + -184529.68677437576, + -184527.59148972368, + -184603.30224533824, + -184695.73622553676, + -183856.76291758567, + -183923.04167683766, + -183920.46827459653, + -183942.46072287185, + -183966.14944940363, + -184022.37986115966, + -183858.53808757465, + -183856.8165942456, + -183783.75192537752, + -184021.05886616785, + -183734.7000156707, + -183874.32018150846, + -183834.41121000051, + -184004.2014556012, + -183959.7185885655, + -183918.43052226157, + -183886.46074349398, + -183970.12618582664, + -184047.8385877452, + -186182.73800954662, + -186249.61481778725, + -186297.75486173076, + -186324.0305926026, + -186236.53912128153, + -186182.5712881453, + -185953.14899281866, + -185141.05742456802, + -185439.13268669933, + -185177.60111052875, + -185182.7983091269, + -184974.97222906543, + -184279.90057619184, + -186236.2314711706, + -185215.91952611177, + -188370.1764330157, + -180909.745155569, + -180709.71261549313, + -180902.77547837683, + -179952.33000867523, + -180842.29239043556, + -179943.77813433905, + -180787.81029715057, + -179964.11953050675, + -180735.5598518938, + -180724.51318886082, + -180764.8170700024, + -180785.9780778761, + -180804.75158568795, + -180845.41459382957, + -180819.41967854003, + -179924.4116050648, + -180765.59250306184, + -180738.89765472096, + -180692.9880617934, + -180666.9615653273, + -180723.1250971798, + -180874.4925506424, + -179940.5474174767, + -180670.7264006914, + -180770.5721985639, + -180897.94932214296, + -180816.50719117105, + -180840.88607907726, + -180682.41488442908, + -180792.44149952132, + -180803.10102321903, + -180659.778327287, + -180717.96359535548, + -183788.99096273613, + -183779.16247176562, + -184347.65849261818, + -183714.67737531645, + -186604.72926858248, + -186567.5091645483, + -187463.35892346295, + -187475.19460358928, + -184991.80627054124, + -183461.60321590066, + -183706.9123006825, + -183382.93836771394, + -182388.11368171035, + -182529.26628902787, + -182549.07931419823, + -182425.7209298557, + -182606.63936888328, + -182486.48502463632, + -182582.6931146041, + -182423.89628454405, + -182443.7956614858, + -182486.5877240622, + -182475.17256004427, + -182825.80593338294, + -180900.60175741656, + -180824.8780152111, + -179926.86668937167, + -180827.0478808366, + -179917.67228537184, + -179903.54516782166, + -179893.4393245515, + -180889.41939093173, + -178623.59690207575, + -178554.08466333893, + -178436.7908829831, + -178558.0937103395, + -178570.64648304324, + -178488.27744802684, + -178691.44886841782, + -178564.94630361674, + -178563.48522728076, + -178717.23295975232, + -178442.469710615, + -178533.43895398427, + -178405.40053992975, + -178581.996633066, + -178750.33119243302, + -178518.2432508357, + -178638.1301594935, + -178549.44571791714, + -178432.0352583338, + -178460.23443320673, + -178462.3041424345, + -178511.13389375104, + -178294.2997167077, + -178542.3251145037, + -178428.43265563578, + -178524.70063209053, + -178652.93553051475, + -178564.5275489163, + -178711.00834272362, + -178593.38928498706, + -178607.60033410153, + -178697.5378154587, + -178496.6439016545, + -178516.70514832705, + -178173.96397881166, + -178630.87310248002, + -178507.01579040708, + -178474.2039992179, + -178492.20167515153, + -178637.20991508843, + -178464.27180037618, + -178577.39055378566, + -178405.1247219723, + -178601.60635392906, + -178720.07863024718, + -178607.70179973924, + -177980.3058143678, + -178516.96872389078, + -178455.55225062207, + -178523.4874214946, + -178559.66565811823, + -178654.88321266344, + -178652.8764789972, + -178606.5230669658, + -178462.88979660024, + -178505.99092471664, + -178659.89626082158, + -178495.2300096829, + -178697.93002062794, + -178570.20722506093, + -178609.4919362779, + -178550.05784523298, + -178679.05433494938, + -178439.9217113105, + -178541.75133386956, + -178588.50198710954, + -178609.18224746437, + -178608.5732692418, + -178641.31909922665, + -178488.30962670548, + -178657.90280830112, + -183289.93151228954, + -183242.92238719485, + -183255.82906837002, + -182978.78721471297, + -183038.58157721706, + -182993.2503192717, + -183133.59169112245, + -183172.54648983607, + -183115.6076721331, + -185011.84033188224, + -184896.9494846697, + -184966.17232256278, + -184963.36474706372, + -184720.55315674286, + -184789.59237810186, + -184250.11601459378, + -184840.94461722943, + -184982.25190169932, + -184925.3424128911, + -185021.8294439658, + -183109.4455208243, + -183147.2630049226, + -183100.15820011563, + -183070.48614592486, + -184756.1452888642, + -184826.45735488343, + -183341.5026651699, + -183257.84783702332, + -183511.68520968122, + -183328.08397366235, + -185068.01671399627, + -184871.46409474593, + -185052.07634225543, + -185438.75158188608, + -185459.31088253466, + -183001.6851454487, + -183076.80405507874, + -183009.4590377982, + -182979.24860315252, + -183374.7939359946, + -185093.7368725669, + -184998.6633073986, + -185068.85971572844, + -184943.5809181066, + -185023.88959588853, + -185082.0833365548, + -185148.40604299065, + -184977.44409740437, + -184997.31464103883, + -185089.27598983576, + -185089.0086389262, + -184902.62901699232, + -185079.38925215916, + -185230.35763149426, + -185048.74105525186, + -185187.47949728227, + -185150.70672626782, + -185132.0865388388, + -185142.57079867384, + -184910.07141996681, + -185010.9809112164, + -185055.58177579596, + -183319.82671109284, + -183343.52858918067, + -183540.0801197569, + -183455.08344399888, + -182897.35332880451, + -183031.3680288819, + -182899.68496868006, + -182951.00775120725, + -183009.0203452414, + -182969.49503841982, + -182961.8930869576, + -183565.39955803388, + -184719.2933805017, + -184852.54846837025, + -184771.7014457759, + -183238.2725594145, + -183287.3196162057, + -183298.64678428596, + -183179.063213912, + -183301.19264459712, + -183496.95058249735, + -184843.89469543626, + -185486.61372523938, + -185440.07638832257, + -184624.17550004294, + -184691.42044326675, + -184697.7108009961, + -184564.4704663814, + -184692.4146787554, + -184745.86688139816, + -184745.63052333257, + -184606.98123665425, + -184673.6351594657, + -184648.9263016337, + -184634.4057762235, + -184588.40026682435, + -184728.63779550133, + -184697.06720197387, + -184658.08630104552, + -184751.42939384596, + -184915.37938012218, + -184915.80229910425, + -184809.226434392, + -184878.41272612265, + -184781.15000342295, + -183425.42042761206, + -183491.17842973955, + -183394.46490438026, + -183482.59900076909, + -184789.43054132286, + -184840.87093100656, + -184955.71478210148, + -184853.88088084952, + -183488.3327404413, + -183654.62815247447, + -183170.48934623392, + -183544.22509648418, + -183609.01332193392, + -183346.06901967287, + -183224.1180654994, + -186119.49203913865, + -186217.65823101738, + -184431.29788077172, + -183374.18390449428, + -183323.66280121214, + -183408.2842664633, + -183404.54218882136, + -184125.37656993855, + -183193.80563843125, + -183210.86534053346, + -183068.9782319114, + -183158.49383680677, + -183278.76592303222, + -183433.48674636218, + -183536.10312163807, + -183372.0424666985, + -183231.82462614574, + -183302.02623710444, + -176998.64399938524, + -177066.8720413106, + -177022.6135091292, + -183161.23163489092, + -183049.5712780777, + -183453.48204868875, + -187890.59895818657, + -189168.76930062557, + -189017.94980528016, + -189051.82394498357, + -188584.48243914515, + -188052.25455199185, + -188165.97775520477, + -188142.36563635623, + -188219.55657425546, + -188286.52887175203, + -189084.5439991584, + -190481.18414111834, + -190194.37548906854, + -190619.62304985526, + -190625.60337733393, + -190599.24045840377, + -190226.99435288858, + -190555.5337087257, + -190577.08701564785, + -190502.54227035303, + -190701.39607546074, + -190483.56699262653, + -190558.59312642895, + -190622.50020444766, + -191956.9509027277, + -189596.39277355725, + -189081.37240888822, + -189189.54697625263, + -189022.31890019495, + -189607.57795842667, + -189794.93841442053, + -189619.61208740424, + -189757.03297088, + -193534.58363562726, + -193746.06656836157, + -193536.88821662494, + -193690.75126823565, + -193828.1864987295, + -193694.47134159697, + -193908.71990085614, + -193926.73131627264, + -192467.37989371552, + -193876.98390154605, + -193937.14325502317, + -193799.02394631426, + -193774.27258889857, + -193975.47469840795, + -193668.5700211384, + -193863.922824815, + -193777.43216763728, + -193702.5372609475, + -193807.07780800795, + -193749.23407981847, + -193848.73115611952, + -193829.82350082346, + -194072.47921578164, + -193714.61436065382, + -193831.93364492635, + -194022.37644342383, + -193929.14922551668, + -193709.41847952036, + -193580.42749235677, + -193673.19657366312, + -193675.4846188424, + -193804.38388892714, + -193761.4245739493, + -193832.16706009684, + -193963.83892343825, + -193744.99083273322, + -193651.75122489312, + -193746.6309587092, + -193858.4367764975, + -193735.9695129494, + -193791.1955832733, + -193759.89400756784, + -193767.32774094612, + -193960.03946464113, + -193825.5996938444, + -193646.09114384378, + -194029.90647483527, + -193627.99896662962, + -193600.72359083666, + -193919.70824670978, + -193766.4906457397, + -194007.48964572605, + -193810.47215112645, + -193844.94572726413, + -194037.0391692495, + -193851.06434528634, + -193874.82215845535, + -193723.95168770116, + -193897.5631725786, + -193810.2074839169, + -193608.74043988352, + -193894.64693893815, + -193688.6584630469, + -193904.11476722118, + -193682.8928145957, + -193820.47172546384, + -193889.7955965534, + -193787.85515705598, + -193728.1477085373, + -193937.34499460776, + -193805.18800143278, + -193739.99240211275, + -193928.394955046, + -193797.7489289576, + -193622.61125641817, + -193580.10680370886, + -193821.88689952737, + -193875.7883864531, + -193843.667706734, + -190942.65455718772, + -190935.69915585697, + -190754.12935394185, + -190772.50006996628, + -190718.86652711377, + -190909.16845115123, + -190962.44360370797, + -190988.82032427454, + -189666.5672120893, + -189829.0928502695, + -189626.70216868905, + -189859.27408912993, + -189749.7157783643, + -189930.46843261595, + -190546.38147049418, + -190399.4126354747, + -190728.8379457946, + -190467.53947576138, + -190665.37836808496, + -190403.65729820394, + -190572.92069195924, + -190391.5963820497, + -190588.72561153484, + -189830.10127174208, + -189867.38685376107, + -189148.04361715776, + -189136.8179316544, + -189454.19264113074, + -189592.2520227959, + -189764.96604252383, + -189136.14569979953, + -189169.39385335796, + -189852.88038329795, + -189957.89952853756, + -189901.24368659954, + -189910.4178996724, + -189999.55141092496, + -189360.40048394818, + -189540.12165547063, + -189471.1548799475, + -189457.7383592478, + -189492.84011594678, + -189930.6622301241, + -190012.9729410129, + -189643.8250184186, + -189606.224952288, + -189100.93180802726, + -189069.94292362832, + -189166.93269470712, + -189710.98534421215, + -189909.66210198548, + -189800.87833115685, + -189358.71097730752, + -188372.40414795655, + -188307.97072896184, + -188449.08216930606, + -188896.90746870203, + -188488.92438829996, + -188410.6282062072, + -188423.00742554842, + -188342.75560755408, + -188474.5390069502, + -188893.76273750738, + -188383.44348380194, + -188919.52659774327, + -188450.24143295805, + -188339.98623365132, + -188920.24503447048, + -189954.8799487552, + -189224.8723192654, + -189437.85306139573, + -189128.61828617012, + -189076.00888676112, + -189229.93966087615, + -189057.92180438363, + -189159.80594753037, + -189221.1271062979, + -189275.09899359176, + -189796.53172043787, + -189179.26724934444, + -189209.43422944171, + -188434.3714432306, + -188735.4427305461, + -188852.55618795755, + -188648.26563955305, + -188750.48177969156, + -188633.9067049795, + -188963.22418785066, + -188921.29656857427, + -189021.56662713946, + -188962.55017746423, + -188997.33770734456, + -189023.01935678284, + -190261.8156757386, + -190001.24087948908, + -190205.95046477395, + -190299.55174747857, + -190144.7648684372, + -190362.44164700346, + -190189.73769569694, + -190267.11271629602, + -190205.97081794371, + -190270.2885900102, + -190214.73308856742, + -190326.65557216902, + -190414.88888080535, + -190199.32333034926, + -190282.24854628212, + -190312.73737813003, + -188873.8626963419, + -188920.2684739792, + -188858.41273348493, + -188379.0378458674, + -188512.27456350578, + -188638.8220475936, + -188851.4444004593, + -188856.0250278521, + -188992.6676338556, + -188567.034494689, + -188562.145978013, + -188709.5724031946, + -188583.43301745184, + -188633.37897797985, + -188513.3287395779, + -188486.02304199967, + -189455.44381807276, + -188895.9417109116, + -189700.65258162987, + -189511.31796618277, + -189314.42297487025, + -189274.3071301368, + -189387.76225415204, + -189390.8243694251, + -188565.08660170887, + -188585.1092319325, + -188535.84972231102, + -188428.1636080926, + -188480.76720246498, + -188497.23442699056, + -188477.61159047254, + -188560.29997725625, + -188469.464678068, + -188412.24447188206, + -188400.34769697144, + -188326.83417554572, + -188472.80747925534, + -188371.0306914976, + -188439.41147707586, + -188460.25442393898, + -188478.67324954533, + -188414.5465883974, + -188506.02275688382, + -189533.1271418779, + -189305.03128895749, + -189500.05954191848, + -190614.02637885386, + -190408.6976223534, + -190772.61217766535, + -190745.8656578664, + -190782.00210851693, + -190713.68513502888, + -190769.81695999636, + -190721.68694858113, + -190713.55530098, + -190715.47477903482, + -190587.36694516958, + -190653.71505993314, + -190733.79506238594, + -190759.5937266005, + -190665.1557136483, + -189551.6404319715, + -189175.80872704333, + -188999.41125879882, + -189583.71120295482, + -189736.44355789217, + -189721.16100992335, + -190794.8754551881, + -190767.60153448136, + -190528.3678224796, + -190527.9985717709, + -190651.3096880947, + -190850.62628139483, + -190767.53942386774, + -190178.30316847924, + -189906.9288545038, + -190398.25884468752, + -189902.1572291747, + -189756.1793300799, + -192960.00724960802, + -193032.32651674768, + -194526.8572523203, + -192970.64111818164, + -194540.51188655684, + -190076.97029283058, + -190578.37958836104, + -190633.09861453043, + -189612.56701675983, + -189584.85448124894, + -189639.9730804576, + -189726.2893258764, + -189663.43940283198, + -189589.25507494135, + -189614.62635399186, + -189158.38902759828, + -189507.12134144705, + -189695.59469139914, + -189747.88347755812, + -189662.8350739805, + -189704.61279866777, + -190468.9495086276, + -190691.40485899913, + -190602.30273507602, + -190690.3495420362, + -190742.67043381042, + -190516.9103386334, + -190625.0036216086, + -190467.63078097987, + -190711.89591260994, + -190681.55111231707, + -190714.2334944442, + -190728.0443911054, + -190260.22221289267, + -190672.9365789004, + -190463.41389632598, + -190574.5566659715, + -190503.87993822052, + -190597.1290096374, + -190738.17937622103, + -190736.14123626714, + -188844.49537900015, + -189352.91617699675, + -189293.61601165356, + -189198.92299734885, + -189188.6211538655, + -189248.80812324327, + -188903.04749914605, + -188991.53960870573, + -189277.4028354314, + -189224.98825033373, + -189320.46260078246, + -189230.83393577425, + -189282.98979945903, + -185674.87055856248, + -189767.3376516928, + -186429.02907093416, + -186471.6273977257, + -186557.56944473545, + -186373.05814148398, + -186421.09165944587, + -186389.60376488912, + -186551.00981625286, + -186485.36466106286, + -186416.7791946597, + -186425.80797049435, + -186507.88074432584, + -186483.2058758233, + -186446.32894291877, + -186578.13349791485, + -188294.34254262215, + -188903.12131841254, + -188974.1903070274, + -189013.00556954916, + -188990.05786341277, + -189283.6558680965, + -189156.776198667, + -189281.15801555838, + -189229.38188445318, + -188752.90976222482, + -189268.83368658138, + -189109.80505218275, + -189263.46207696153, + -190474.83424193788, + -190404.0846714618, + -189725.66534082082, + -190387.365071224, + -190322.7145666639, + -190610.7397637846, + -190530.50822368442, + -190565.46212922395, + -190634.5753037945, + -190356.45986323425, + -190391.1380994609, + -190429.80943282603, + -190464.96139017996, + -190289.1133185594, + -190367.6186600842, + -190422.79258775173, + -190454.50715953342, + -190902.48296050128, + -190846.00728882258, + -190768.94184870122, + -190917.1501459411, + -190904.19225035308, + -190869.11155008027, + -190847.3760969188, + -190833.92831575198, + -190914.59919810772, + -191003.5049998549, + -190987.6662291279, + -190918.1130413622, + -190978.42508732385, + -191045.33010704067, + -191118.3344811227, + -191028.42716404388, + -191087.25231874056, + -191063.94152141083, + -190533.19955587725, + -190467.77931488148, + -190736.1226796714, + -190650.8583482665, + -190695.986401139, + -190705.99136849152, + -190727.1717134085, + -190775.09420707048, + -189526.2394383325, + -189181.60084101505, + -189185.06032392784, + -189112.62460586315, + -190085.7072353487, + -190308.5994523768, + -190398.8378197505, + -190400.7504096945, + -189466.40250005975, + -188816.86933252332, + -190594.37588089012, + -190621.45203308872, + -190572.00478016632, + -190677.74061826518, + -190777.950647815, + -190643.4977867746, + -190238.15773232863, + -190074.67463959943, + -190367.91326419555, + -190399.54829885028, + -190275.09228250064, + -190306.22405632425, + -190162.3371470009, + -190432.7873200079, + -190532.19121997847, + -190494.93518483994, + -190497.28396928875, + -190620.24351137725, + -190664.86329969479, + -190574.09918967442, + -190591.03375007253, + -190520.7869251755, + -190351.42834427793, + -190301.86472867473, + -190168.79581539883, + -190379.19934607125, + -190296.38287072422, + -190225.95395946506, + -190265.65052037945, + -190191.99887281418, + -190181.16020360703, + -190253.12505174227, + -190294.27227855046, + -190268.58159355848, + -190340.03937897002, + -190049.21420073678, + -190111.19686576354, + -190243.76439905912, + -190016.1087708468, + -190165.94445480712, + -190306.18105336872, + -190346.03752427932, + -189619.67419571467, + -190167.53475611532, + -190315.310468642, + -190379.6458049226, + -190388.22574712188, + -190489.64234467523, + -189077.9073416021, + -189148.47818539297, + -189076.27522030505, + -190096.82864513667, + -190440.0090447352, + -190435.29393371142, + -190435.58900957322, + -190429.5710330078, + -191322.5198972912, + -191383.64086574878, + -190438.21639421294, + -190236.33574161452, + -190380.63617074298, + -190401.29010947546, + -190331.29312605906, + -190559.2179529797, + -190494.5809685014, + -190527.79502621465, + -190152.69203156038, + -189520.9274802002, + -190148.86085124593, + -190346.98044319588, + -190273.92525879134, + -190362.20891689835, + -190211.2410560863, + -190293.35532104713, + -189532.25620878863, + -189522.88266085237, + -190499.65023009953, + -190399.7332476172, + -190462.91341077103, + -190497.98956719536, + -190271.89947805196, + -189731.91642502818, + -189365.14372923566, + -189627.2693908589, + -189450.8103449795, + -189878.37777838547, + -189606.4880574026, + -189671.94160478926, + -189753.5036607848, + -189792.539377009, + -189709.64844401702, + -189709.42207181625, + -189560.8040860744, + -189639.18026060294, + -189579.70324669065, + -189605.1403288076, + -189479.9373604124, + -189676.83534590385, + -189809.71999294424, + -189641.32627110553, + -189671.34718930145, + -189694.57212468094, + -189642.2465612403, + -189589.32744394697, + -189692.93760685052, + -189782.31803998386, + -189551.69582469424, + -189632.7736323519, + -189649.24507055973, + -189551.3936761994, + -190415.83660361098, + -190295.38448827688, + -190278.06551487523, + -190602.566736292, + -190582.58999662191, + -190402.49114878004, + -190640.8143948027, + -190434.0622041177, + -190396.1118665038, + -190633.88684340264, + -190033.28449762813, + -189931.84776524975, + -189984.33860279026, + -189914.35806747197, + -189913.8177868138, + -190053.69755855628, + -189915.13218034807, + -189840.37838709482, + -190003.0113512847, + -189865.52199599275, + -189940.86916101858, + -189527.17241938802, + -189574.29060602633, + -189631.36291813108, + -188579.02593842897, + -188618.87056923824, + -188604.32311363696, + -189090.5718994998, + -189142.3179762273, + -189107.25327854278, + -189187.28747484853, + -189269.54448270632, + -189159.14568024248, + -189138.2076064306, + -188076.45815998927, + -189270.2207259438, + -189210.2926095509, + -188900.63432967928, + -188932.77198095532, + -189022.40118831143, + -189307.27750116092, + -189338.82125386308, + -189289.75729540995, + -189349.08753127913, + -189239.27466604387, + -189238.41421960684, + -189412.9721563485, + -189524.31705901856, + -189559.7460368871, + -189476.0747606827, + -189570.0168598492, + -189495.32258851867, + -188215.8616615981, + -188199.75814143405, + -188123.16757309233, + -188542.53301547328, + -188583.50114275728, + -188646.66744792875, + -188627.52790190434, + -188624.96953674362, + -188680.12739772093, + -188603.88153743022, + -188717.93046449387, + -188701.2044515723, + -188667.65399479453, + -188578.38898107715, + -188162.49129769465, + -188283.31886173566, + -188344.14937816412, + -188367.9220383512, + -188429.7191107016, + -188521.51772652115, + -188573.1166522805, + -188704.52880665567, + -188739.29930100363, + -188761.3774557424, + -188771.39763015826, + -187903.75952678625, + -187774.81306834565, + -187895.58897193626, + -187884.75183693127, + -187967.06818140898, + -187951.53704565333, + -187825.18842699032, + -187758.29365704863, + -187868.23432734396, + -187895.08998922407, + -187890.49062902073, + -187955.65971712122, + -187928.10424729847, + -187989.67935819595, + -187874.83194403967, + -187933.04952081686, + -187872.3771147445, + -187856.99852649588, + -187848.4223915153, + -187920.79346467156, + -187930.77700494797, + -187895.29714433412, + -187920.6210824505, + -187887.69961918573, + -187938.61799761548, + -187848.99743691334, + -187796.57704625433, + -187814.10684264067, + -187814.4228992428, + -188045.52612894526, + -188018.15484515057, + -188007.98228798102, + -187778.2567400219, + -187853.44280984605, + -187973.77791186082, + -187919.99609137262, + -187824.0586511038, + -190307.0714778582, + -190230.59833375542, + -190227.19725287892, + -190163.7718421069, + -190243.0796793292, + -190331.77132419008, + -190303.73582563325, + -190230.98203889182, + -190163.62860191637, + -190127.76616371796, + -190204.7291192877, + -190198.29510713098, + -190038.48386398226, + -190286.96585014055, + -189285.5038908931, + -189314.6925545715, + -189322.54633697437, + -190108.9160963181, + -189919.7044719638, + -189515.2170023079, + -189696.5583651094, + -189620.28942638537, + -189470.10195977517, + -190628.8763620154, + -190540.76510119194, + -190565.15412975918, + -190682.29055485144, + -190430.80151139415, + -190521.04186612897, + -190646.607620274, + -190837.33673650466, + -190630.24314895942, + -190642.08708267138, + -190796.54577428204, + -190481.11319650357, + -190589.098462086, + -190401.1922366718, + -190615.01500565186, + -190603.3594025055, + -190686.42496369162, + -190557.064280662, + -188092.88408938725, + -187956.81249239156, + -187979.11709276808, + -187979.482131256, + -187979.50818299758, + -187996.93410740836, + -187963.20107476946, + -187929.6211213274, + -187965.07830668992, + -187856.64089532907, + -187920.64538985988, + -196635.93024140774, + -196399.9604654788, + -196362.5620857767, + -196370.54701890302, + -196328.77006002006, + -196438.87708898322, + -196344.7214253337, + -196337.77592539776, + -196516.39975494708, + -196375.4820001025, + -196572.13617882138, + -196357.81249105308, + -196402.59115033425, + -196403.98426888036, + -196525.95899245862, + -196450.95791918522, + -196516.9695874955, + -196526.78985808208, + -196305.99375243418, + -196477.75824980924, + -196371.17169785398, + -196540.8496484741, + -196413.56960098774, + -196398.85033780828, + -196519.40403056843, + -196586.5152888427, + -196484.0741919208, + -196477.4423322067, + -196580.94705004548, + -196493.03467572184, + -196355.35715885067, + -196524.4255226339, + -196575.5793318735, + -196388.91149252217, + -197117.95006697494, + -196453.8097539728, + -196411.73181172024, + -196519.77480193917, + -196290.0514181662, + -196541.32332563752, + -196408.34816477957, + -196504.99785979235, + -196455.70087208258, + -196480.78836830918, + -196623.01283625938, + -196421.16774980287, + -196549.77754785056, + -196520.50848836853, + -196460.99820681041, + -196330.35222787867, + -196641.30269969517, + -196316.11984664403, + -196615.8921314892, + -196323.18575227895, + -196287.24588507827, + -196489.4637902344, + -196592.64448067575, + -196651.12796950675, + -196337.7964175994, + -196435.57903475765, + -196425.72291655725, + -196443.09441339519, + -196503.89361416345, + -196538.03796348278, + -196407.69176682775, + -196453.90366500575, + -196620.4564034161, + -196368.93578565225, + -196336.6452604692, + -196451.32659140672, + -196584.13722435836, + -196550.36163773743, + -196467.06908865008, + -196437.28763150718, + -196539.00158353732, + -196464.94812796215, + -196628.33337194961, + -196276.35492457935, + -196600.84524455655, + -196438.97737875086, + -196542.46186392213, + -196495.15646825332, + -196383.44533773506, + -196584.13630503832, + -196435.07942520038, + -196472.90803114063, + -196858.56777267455, + -196506.52317436016, + -196423.12115615146, + -196494.714181361, + -196335.97571939143, + -196257.5842439066, + -196450.63647772084, + -196295.25829369153, + -196549.37678044723, + -196353.43409226913, + -196392.21021078614, + -196509.71950499725, + -196444.19108020968, + -196816.3663020291, + -196254.53937207581, + -196401.17859141144, + -196582.62604443275, + -196375.1204955413, + -196306.78705593187, + -196556.263798411, + -196481.2520604121, + -196387.3684123011, + -196594.68433771073, + -196534.56974015787, + -196598.3252346663, + -196432.1174841255, + -196371.8701767749, + -196561.82015946324, + -196474.51192388064, + -196410.2165088565, + -196488.0490661285, + -196601.67402550596, + -196270.8076973989, + -191218.29792273082, + -190773.35143504693, + -190584.05715662817, + -190474.82891365502, + -190627.12273639874, + -190565.5574961089, + -190511.04042249869, + -190665.9029325363, + -190549.36495173737, + -190603.2646405981, + -190467.50067797417, + -190576.57553214984, + -190445.9979986217, + -190683.8285149941, + -190852.38090816615, + -190728.73035462684, + -190883.16828134973, + -190787.82297448965, + -190803.13129126374, + -192061.2139999865, + -192043.71626047432, + -191964.647756764, + -190891.79490739512, + -190894.2735892318, + -190940.53838586452, + -190816.47205959816, + -190853.98202544727, + -190769.52819472074, + -190711.82282255974, + -190786.15393264592, + -190715.2106409246, + -190927.8131014321, + -190983.24181297334, + -185652.40467809694, + -185945.5150238995, + -186214.06819645717, + -186216.50602458388, + -191856.6763200281, + -191865.84986712263, + -191865.61681838395, + -191828.29448063852, + -191764.30286109785, + -191718.61375219104, + -191653.1809436873, + -191743.9925516096, + -191796.13851196037, + -191702.30279357143, + -191702.69456493555, + -191978.06283560264, + -191767.79566278576, + -191879.5988250336, + -191816.39414215, + -191761.08538711286, + -191848.65283808287, + -191632.82192091842, + -187554.55535205672, + -187589.65761840937, + -187526.1000837456, + -188247.63095166776, + -188253.21810837943, + -188166.64910838503, + -188229.09502381584, + -188212.53536496227, + -188349.5439406991, + -188074.9390005927, + -188040.12515643216, + -187845.35077936196, + -189215.35398462103, + -189123.84104439258, + -189194.488756125, + -189196.6452778848, + -188323.24737628445, + -188332.4255229405, + -188370.9159487689, + -188370.28768893745, + -188283.69853709696, + -188297.15304957947, + -188298.3598862649, + -188283.09308279172, + -188237.7610465607, + -188292.3058890195, + -188271.55860805113, + -188027.126623048, + -187972.38221218612, + -188083.56553678407, + -188122.50775063198, + -187561.3376490592, + -187629.0390798209, + -187535.8662195509, + -187668.81541389253, + -187621.53310971783, + -187601.9133239069, + -188283.31658936644, + -188095.2939063459, + -188048.40563093848, + -188029.4813787521, + -188259.8008772253, + -187942.90402075808, + -188111.32098520146, + -188269.27401706978, + -188038.668261585, + -188021.35599826832, + -188145.63669386692, + -188154.92217313207, + -188285.04208775162, + -188032.76818274957, + -188202.108708612, + -188548.4840723725, + -188370.81304855144, + -188435.5287980957, + -188539.16539749154, + -188406.0852420654, + -188375.41608470536, + -188033.49918109106, + -188141.9406256535, + -188213.16505670684, + -188299.90754175812, + -188055.18840825645, + -188010.80106167274, + -188288.30179744438, + -188172.62871077625, + -188028.9956217424, + -187979.16806459098, + -188201.16967686315, + -188402.8210414287, + -188218.0680871657, + -188209.99551585125, + -188252.8925638619, + -189858.4613268521, + -188378.5507944686, + -188392.59520295658, + -188340.82295965083, + -188344.25051226772, + -188447.38244263985, + -188321.4992550657, + -188290.03028204778, + -188276.1905836357, + -188426.3163433966, + -188379.43972742173, + -188940.39294818317, + -188487.06747544595, + -188591.84517673572, + -188430.72620436488, + -188444.0235731584, + -188596.05013602367, + -188512.54177513707, + -188699.77662528763, + -188625.63379156328, + -188612.0962266196, + -188650.9029571649, + -188231.5422576223, + -188240.22615160185, + -188094.17418821002, + -188268.16708529167, + -188277.69161143652, + -188126.03656747416, + -187773.89161390605, + -187768.02879467254, + -188801.4210158928, + -188767.41641843505, + -188890.03400560268, + -187968.55426813365, + -188033.3870086141, + -188007.0926605345, + -188162.9565995668, + -188185.8360206985, + -188045.48630401408, + -188111.84876750235, + -188003.5861127096, + -188087.67081568346, + -188058.20794789607, + -188039.71959966994, + -188083.6924472722, + -187974.56083652587, + -188200.24848876594, + -188146.93600360025, + -188144.75157425427, + -188145.70803974595, + -188106.29213649518, + -188082.19662846022, + -187968.96276014342, + -188086.97635425016, + -188104.29806410245, + -188043.63936497684, + -188006.95668439232, + -188139.7614408556, + -187885.68037084257, + -188103.01400066275, + -188117.5227897902, + -188046.5415193328, + -187934.88019874017, + -187902.2258420666, + -188060.24566124828, + -188138.19385150683, + -187992.70459943428, + -188100.83145626815, + -187918.62888498866, + -188026.76554396577, + -187996.96960220046, + -187979.69368844153, + -188054.69156568003, + -187927.8824349312, + -187981.00449699291, + -189589.74977397075, + -189522.47085552436, + -188307.32313826354, + -188432.78907464017, + -188326.60982191455, + -188354.1811308593, + -188533.53409693413, + -187800.99882697721, + -187868.5464667596, + -187753.06096357654, + -187717.91851693625, + -187695.8720814455, + -187675.48095937257, + -187700.15324202535, + -187783.07389216768, + -187780.48748696045, + -187828.2195422653, + -187833.51705638343, + -187721.85004660045, + -187660.64237843428, + -187715.7343131632, + -187780.5533465789, + -187753.63706882135, + -190192.99199780272, + -189790.89938445395, + -190212.54156170116, + -189775.7899940225, + -189039.90533258254, + -189023.69513390047, + -189295.93670652222, + -189291.79965791342, + -189200.57330304422, + -189225.44343217573, + -189655.76464204327, + -189705.95770007666, + -189643.5524444072, + -189130.97364801675, + -189116.34404480382, + -187593.07759266367, + -187846.51677388168, + -187788.46861765772, + -187757.48312437613, + -187811.00235893583, + -187835.38918713373, + -188503.3820257475, + -188608.75666870267, + -188659.3952954119, + -188533.61152171314, + -188473.738548232, + -188446.22688801138, + -188324.66509707412, + -190227.9999344756, + -190209.6170070622, + -190419.3938255866, + -189358.54226131324, + -189455.7501465173, + -187851.21871572215, + -187789.48509271396, + -186169.3625546227, + -190884.92755364833, + -190852.65448954437, + -190676.0383364286, + -190794.98816362483, + -190875.6299963171, + -190881.4195072494, + -190800.5661891712, + -190967.90324167695, + -190796.21734701467, + -190849.80556299916, + -190850.39999002474, + -190705.93683743462, + -190771.58442055932, + -190703.81262351107, + -190937.47881374045, + -190805.20644104716, + -190692.507124959, + -190908.47378217717, + -190864.96463177202, + -190737.8835624348, + -190739.5724284781, + -190802.30922898772, + -190698.23881648583, + -190929.66979578658, + -190729.50539915852, + -190844.91909849216, + -190813.14436611588, + -190895.66896662925, + -190908.32604239337, + -190964.17059618633, + -190762.50171806797, + -190994.52260283855, + -190768.6419722291, + -190804.9616245743, + -190962.8796978228, + -190835.27084363703, + -190974.33881747143, + -190876.57184446702, + -190834.01009906843, + -190933.9534077934, + -190909.64976137923, + -190913.5105326216, + -190796.94141805047, + -190781.4409062239, + -190923.8425100799, + -191035.1109422804, + -190908.71441964828, + -190741.38638934697, + -190885.78296118212, + -190993.37192165887, + -190961.12960518763, + -190763.67489496517, + -191006.89775095775, + -190709.62985214093, + -190934.3591051317, + -190851.954708939, + -190837.31528721907, + -190807.84919101253, + -190878.46789065155, + -190967.49452304916, + -190762.08180819644, + -189505.9875498694, + -189535.1434064379, + -189668.16727616882, + -189616.60988648146, + -189638.23178416977, + -189570.86066694462, + -189576.08308589703, + -189155.14860018887, + -189239.60796500134, + -187880.24230509295, + -187644.4018088615, + -187728.90535634218, + -187852.92563407216, + -187906.33280999027, + -187894.400024042, + -187929.1853205998, + -187896.99301672008, + -187640.26178314057, + -187703.77673713973, + -188077.23734942425, + -187999.18462355132, + -188092.18378419022, + -188515.5010910575, + -188574.65523758496, + -190098.24210039582, + -190295.73742487756, + -190147.97551236962, + -190113.79330947442, + -189595.58720010423, + -191048.32021429407, + -191088.9053977869, + -191072.42749505086, + -188779.56731104586, + -188683.22659860307, + -188728.41122024317, + -188799.83721849287, + -188762.11742505888, + -188619.68472282932, + -188694.51829272378, + -188750.53984223565 + ] + } + ], + "layout": { + "hovermode": "closest", + "margin": { + "b": 0, + "l": 0, + "r": 0, + "t": 0 + }, + "showlegend": false, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "xaxis": { + "showgrid": false, + "zeroline": false + }, + "yaxis": { + "showgrid": false, + "zeroline": false + } + } + } + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "edge_x = []\n", + "edge_y = []\n", + "\n", + "for count, edge in enumerate(g.get_edgelist()):\n", + " source, target = edge\n", + " x0, y0 = layout[source]\n", + " x1, y1 = layout[target]\n", + " edge_x.append(x0)\n", + " edge_x.append(x1)\n", + " edge_x.append(None)\n", + " edge_y.append(y0)\n", + " edge_y.append(y1)\n", + " edge_y.append(None)\n", + "\n", + "edge_trace = go.Scatter(\n", + " x=edge_x,\n", + " y=edge_y,\n", + " line=dict(width=0.5, color=\"#888\"),\n", + " hoverinfo=\"none\",\n", + " mode=\"lines\",\n", + ")\n", + "\n", + "node_x = []\n", + "node_y = []\n", + "\n", + "for node_position in layout:\n", + " x, y = node_position\n", + " node_x.append(x)\n", + " node_y.append(y)\n", + "\n", + "node_trace = go.Scatter(\n", + " x=node_x,\n", + " y=node_y,\n", + " mode=\"markers\",\n", + " hoverinfo=\"text\",\n", + " marker=dict(\n", + " showscale=True,\n", + " colorscale=\"YlGnBu\",\n", + " size=10,\n", + " colorbar=dict(\n", + " thickness=15, title=\"Node Connections\", xanchor=\"left\", titleside=\"right\"\n", + " ),\n", + " ),\n", + ")\n", + "\n", + "# Create a Plotly figure\n", + "fig = go.Figure(\n", + " data=[edge_trace, node_trace],\n", + " layout=go.Layout(\n", + " showlegend=False,\n", + " hovermode=\"closest\",\n", + " margin=dict(b=0, l=0, r=0, t=0),\n", + " xaxis=dict(showgrid=False, zeroline=False),\n", + " yaxis=dict(showgrid=False, zeroline=False),\n", + " ),\n", + ")\n", + "\n", + "# Show the plot\n", + "fig.show()\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4bfe30a505cb839e", + "metadata": { + "ExecuteTime": { + "end_time": "2023-10-07T13:41:53.658185300Z", + "start_time": "2023-10-07T13:41:53.638638300Z" + }, + "collapsed": false + }, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a108bdc118d72a55", + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.4" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/src/aki_prj23_transparenzregister/utils/networkx/tmp.html b/src/aki_prj23_transparenzregister/utils/networkx/tmp.html index 603da1a..dc4e0ac 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/tmp.html +++ b/src/aki_prj23_transparenzregister/utils/networkx/tmp.html @@ -1,12 +1,12 @@ - + - - + +

@@ -40,7 +40,7 @@ float: left; } - + #loadingBar { position:absolute; top:0px; @@ -109,29 +109,29 @@ border-radius:72px; box-shadow: 0px 0px 10px rgba(0,0,0,0.2); } + - - + #config { float: left; width: 400px; height: 600px; } + - - +
- - + +
- +
0%
@@ -140,10 +140,10 @@
- - + +
- + - + \ No newline at end of file From 077846d3bec8c421044b1dec43561421dd6a193f Mon Sep 17 00:00:00 2001 From: Tim Date: Mon, 23 Oct 2023 20:44:43 +0200 Subject: [PATCH 12/36] NetworkX experiments --- ...otes_template.md => Meeting_2023-10-12.md} | 5 +- .../networkx/sql_alchemy_to_networkx.ipynb | 98507 ++-------------- .../networkx/sql_alchemy_to_networkx_v2.ipynb | 834 + 3 files changed, 9930 insertions(+), 89416 deletions(-) rename documentations/meeting-notes/{meeting_notes_template.md => Meeting_2023-10-12.md} (65%) create mode 100644 src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx_v2.ipynb diff --git a/documentations/meeting-notes/meeting_notes_template.md b/documentations/meeting-notes/Meeting_2023-10-12.md similarity index 65% rename from documentations/meeting-notes/meeting_notes_template.md rename to documentations/meeting-notes/Meeting_2023-10-12.md index 80aef58..f8afff1 100644 --- a/documentations/meeting-notes/meeting_notes_template.md +++ b/documentations/meeting-notes/Meeting_2023-10-12.md @@ -1,4 +1,4 @@ -# Weekly *X*: DD.MM.YYYY +# Weekly *12*: 12.10.2023 ## Teilnehmer - Prof. Arinir @@ -18,4 +18,5 @@ | Action Item | Verantwortlicher | Deadline | |-------------|------------------|-----------------| -| Beispiel | Max Mustermann | nächstes Weekly | +| Finanzdaten optimieren | Kim, Tristan | nächstes Weekly | +| Rebasen vom Branch für Sascha | Sascha | nächstes Weekly | diff --git a/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx.ipynb b/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx.ipynb index 1927295..3c25c7b 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx.ipynb +++ b/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx.ipynb @@ -12,7 +12,7 @@ }, { "cell_type": "code", - "execution_count": 13, + "execution_count": 48, "id": "b6eea59adeae27d4", "metadata": { "ExecuteTime": { @@ -28,7 +28,7 @@ "'c:\\\\Users\\\\trimr\\\\Projekte\\\\aki_prj23_transparenzregister'" ] }, - "execution_count": 13, + "execution_count": 48, "metadata": {}, "output_type": "execute_result" } @@ -45,278 +45,105 @@ }, { "cell_type": "code", - "execution_count": null, - "id": "f23dbd06", + "execution_count": 49, + "id": "eb9498d3", "metadata": {}, "outputs": [], "source": [ - "person_relations_df[[\"from_x\", \"from_y\"]] = (company_df.set_index(\"id\", drop=True)).loc[person_relations_df[\"company_id\"], [\"x\", \"y\"]]\n", - "person_relations_df.head().T" + "from aki_prj23_transparenzregister.utils.sql import entities\n", + "from sqlalchemy.orm import aliased\n", + "from sqlalchemy import func, text\n", + "\n", + "# Alias for Company table for the base company\n", + "to_company = aliased(entities.Company, name=\"to_company\")\n", + "\n", + "# Alias for Company table for the head company\n", + "from_company = aliased(entities.Company, name=\"from_company\")" ] }, { "cell_type": "code", - "execution_count": null, - "id": "f3a4e1c1", + "execution_count": 50, + "id": "6a317af6", "metadata": {}, "outputs": [], - "source": [] + "source": [ + "from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider\n", + "from aki_prj23_transparenzregister.utils.sql.connector import get_session\n", + "\n", + "session = get_session(JsonFileConfigProvider(\"secrets.json\"))" + ] + }, + { + "cell_type": "markdown", + "id": "814d5edb", + "metadata": {}, + "source": [ + "# All Company Relations" + ] }, { "cell_type": "code", - "execution_count": 89, - "id": "b9a7841b", + "execution_count": 51, + "id": "2d17651a", "metadata": {}, "outputs": [ { "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
idhrcourt_idnamecompany_typefounding_datebusiness_purposestreethouse_numberzip_code...latitudepos_accuracycapital_valueoriginal_currencycapital_typelast_updatesectorstr_idxy
01HRB 14804810 10 24 Telefondienste GmbHGMBH2000-09-18Gegenstand des Unternehmens ist die Entwicklun...Deelbögenkamp422297...53.6026204.025000.0EUROSTAMMKAPITAL2020-05-11Nonec_1933483.456739-841989.312943
12HRA 30111421. Staiger Grundstücksverwaltung GmbH & Co. KGKG2003-07-03NoneJohannes-Bieg-Straße874391...49.0225004.0200000.0EUROHAFTEINLAGE2020-05-04Nonec_2-366283.693942-775095.283302
23HRA 72001531 A Autenrieth Kunststofftechnik GmbH & Co. KGKGNaTNoneGewerbestraße872535...48.4456334.0146000.0EUROHAFTEINLAGE2016-08-23Nonec_3-181700.159616-623621.867275
34HRB 97262101050.com GmbHGMBH2006-03-02die Entwicklung und Bereitstellung von Dienstl...Deelbögenkamp422297...53.6026204.025000.0EUROSTAMMKAPITAL2020-05-13Nonec_4429817.138155-508933.805398
45HRA 1761742. Schaper Objekt GmbH & Co. Kiel KGKGNaTNoneMetro-Straße240235...51.2301004.0500.0EUROHAFTEINLAGE2021-05-27Nonec_577282.617652-561971.248878
\n", - "

5 rows × 22 columns

\n", - "
" - ], "text/plain": [ - " id hr court_id name \\\n", - "0 1 HRB 148048 1 0 10 24 Telefondienste GmbH \n", - "1 2 HRA 301114 2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", - "2 3 HRA 720015 3 1 A Autenrieth Kunststofftechnik GmbH & Co. KG \n", - "3 4 HRB 97262 1 01050.com GmbH \n", - "4 5 HRA 17617 4 2. Schaper Objekt GmbH & Co. Kiel KG \n", - "\n", - " company_type founding_date \\\n", - "0 GMBH 2000-09-18 \n", - "1 KG 2003-07-03 \n", - "2 KG NaT \n", - "3 GMBH 2006-03-02 \n", - "4 KG NaT \n", - "\n", - " business_purpose street \\\n", - "0 Gegenstand des Unternehmens ist die Entwicklun... Deelbögenkamp \n", - "1 None Johannes-Bieg-Straße \n", - "2 None Gewerbestraße \n", - "3 die Entwicklung und Bereitstellung von Dienstl... Deelbögenkamp \n", - "4 None Metro-Straße \n", - "\n", - " house_number zip_code ... latitude pos_accuracy capital_value \\\n", - "0 4 22297 ... 53.602620 4.0 25000.0 \n", - "1 8 74391 ... 49.022500 4.0 200000.0 \n", - "2 8 72535 ... 48.445633 4.0 146000.0 \n", - "3 4 22297 ... 53.602620 4.0 25000.0 \n", - "4 2 40235 ... 51.230100 4.0 500.0 \n", - "\n", - " original_currency capital_type last_update sector str_id x \\\n", - "0 EURO STAMMKAPITAL 2020-05-11 None c_1 933483.456739 \n", - "1 EURO HAFTEINLAGE 2020-05-04 None c_2 -366283.693942 \n", - "2 EURO HAFTEINLAGE 2016-08-23 None c_3 -181700.159616 \n", - "3 EURO STAMMKAPITAL 2020-05-13 None c_4 429817.138155 \n", - "4 EURO HAFTEINLAGE 2021-05-27 None c_5 77282.617652 \n", - "\n", - " y \n", - "0 -841989.312943 \n", - "1 -775095.283302 \n", - "2 -623621.867275 \n", - "3 -508933.805398 \n", - "4 -561971.248878 \n", - "\n", - "[5 rows x 22 columns]" + "'SELECT to_company.id AS id_company_to, to_company.name AS name_company_to, relation.relation AS relation_type, from_company.name AS name_company_from, from_company.id AS id_company_from \\nFROM company AS to_company JOIN (relation JOIN company_relation ON relation.id = company_relation.id) ON relation.company_id = to_company.id JOIN company AS from_company ON company_relation.company2_id = from_company.id'" ] }, - "execution_count": 89, + "execution_count": 51, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "company_df.head()" + "# Query to fetch relations between companies\n", + "relations_company_query = (\n", + " session.query(\n", + " to_company.id.label(\"id_company_to\"),\n", + " to_company.name.label(\"name_company_to\"),\n", + " entities.CompanyRelation.relation.label(\"relation_type\"),\n", + " from_company.name.label(\"name_company_from\"),\n", + " from_company.id.label(\"id_company_from\"),\n", + " )\n", + " .join(\n", + " entities.CompanyRelation,\n", + " entities.CompanyRelation.company_id == to_company.id,\n", + " )\n", + " .join(\n", + " from_company,\n", + " entities.CompanyRelation.company2_id == from_company.id,\n", + " )\n", + ")\n", + "str(relations_company_query)" ] }, { "cell_type": "code", - "execution_count": 102, - "id": "6ddddb3e", + "execution_count": 52, + "id": "f1f0f2de", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "91.2 ms ± 3.52 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" + ] + } + ], "source": [ - "df_temp_df: pd.DataFrame = company_df.set_index(\"id\", drop=True)\n", - "person_relations_df[[\"company_from_x\", \"company_from_y\"]] = df_temp_df.loc[person_relations_df[\"company_id\"] , [\"x\", \"y\"]].reset_index(drop=True)" + "# str(relations_query.filter((entities.CompanyRelation.company_id == 2) or (entities.CompanyRelation.company2_id == 2)))\n", + "%timeit pd.read_sql_query(str(relations_company_query), session.bind)" ] }, { "cell_type": "code", - "execution_count": 104, - "metadata": {}, - "outputs": [], - "source": [ - "df_person_tmp: pd.DataFrame = person_df.set_index(\"id\", drop=True)\n", - "person_relations_df[[\"to_person_x\", \"to_person_y\"]] = df_person_tmp.loc[person_relations_df[\"person_id\"] , [\"x\", \"y\"]].reset_index(drop=True)\n" - ] - }, - { - "cell_type": "code", - "execution_count": 105, + "execution_count": 53, + "id": "444cd402", "metadata": {}, "outputs": [ { @@ -340,101 +167,53 @@ " \n", " \n", " \n", - " company_id\n", - " person_id\n", - " name_company\n", + " id_company_to\n", + " name_company_to\n", " relation_type\n", - " lastname\n", - " firstname\n", - " date_of_birth\n", - " from\n", - " to\n", - " company_from_x\n", - " company_from_y\n", - " to_person_x\n", - " to_person_y\n", + " name_company_from\n", + " id_company_from\n", " \n", " \n", " \n", " \n", " 0\n", - " 1\n", - " 1\n", - " 0 10 24 Telefondienste GmbH\n", - " RelationshipRoleEnum.GESCHAEFTSFUEHRER\n", - " Tetau\n", - " Nicolas\n", - " 1971-01-02\n", - " p_1\n", - " p_1\n", - " 933483.456739\n", - " -841989.312943\n", - " 95962.083838\n", - " -188630.575193\n", + " 5\n", + " 2. Schaper Objekt GmbH & Co. Kiel KG\n", + " KOMMANDITIST\n", + " Multi-Center Warenvertriebs GmbH\n", + " 2213\n", " \n", " \n", " 1\n", - " 1\n", - " 2\n", - " 0 10 24 Telefondienste GmbH\n", - " RelationshipRoleEnum.PROKURIST\n", - " Dammast\n", - " Lutz\n", - " 1966-12-06\n", - " p_1\n", - " p_2\n", - " 933483.456739\n", - " -841989.312943\n", - " 95958.171949\n", - " -188333.017618\n", + " 32\n", + " Alb-Windkraft GmbH & Co. KG\n", + " KOMMANDITIST\n", + " EnBW Windkraftprojekte GmbH\n", + " 845\n", " \n", " \n", " 2\n", - " 2\n", - " 3\n", - " 1. Staiger Grundstücksverwaltung GmbH & Co. KG\n", - " RelationshipRoleEnum.KOMMANDITIST\n", - " Tutsch\n", - " Rosemarie\n", - " 1941-10-09\n", - " p_2\n", - " p_3\n", - " -366283.693942\n", - " -775095.283302\n", - " 96588.817671\n", - " -188120.264189\n", + " 34\n", + " Anneliese Köster GmbH & Co. KG\n", + " KOMMANDITIST\n", + " INDUS Holding Aktiengesellschaft\n", + " 1903\n", " \n", " \n", " 3\n", - " 2\n", - " 4\n", - " 1. Staiger Grundstücksverwaltung GmbH & Co. KG\n", - " RelationshipRoleEnum.KOMMANDITIST\n", - " Staiger\n", - " Marc\n", - " 1969-10-22\n", - " p_2\n", - " p_4\n", - " -366283.693942\n", - " -775095.283302\n", - " 95948.882846\n", - " -188484.386010\n", + " 74\n", + " AURELIUS Equity Opportunities SE & Co. KGaA\n", + " HAFTENDER_GESELLSCHAFTER\n", + " AURELIUS Management SE\n", + " 163\n", " \n", " \n", " 4\n", - " 2\n", - " 5\n", - " 1. Staiger Grundstücksverwaltung GmbH & Co. KG\n", - " RelationshipRoleEnum.KOMMANDITIST\n", - " Staiger\n", - " Michaela\n", - " 1971-03-03\n", - " p_2\n", - " p_5\n", - " -366283.693942\n", - " -775095.283302\n", - " 95880.896083\n", - " -188495.232012\n", + " 77\n", + " Aurelius KG\n", + " HAFTENDER_GESELLSCHAFTER\n", + " Aurelius Verwaltungs GmbH\n", + " 80\n", " \n", " \n", " ...\n", @@ -443,7 +222,248 @@ " ...\n", " ...\n", " ...\n", - " ...\n", + " \n", + " \n", + " 573\n", + " 3137\n", + " Zalando BTD 011 SE & Co. KG\n", + " HAFTENDER_GESELLSCHAFTER\n", + " Zalando SE\n", + " 3112\n", + " \n", + " \n", + " 574\n", + " 3137\n", + " Zalando BTD 011 SE & Co. KG\n", + " KOMMANDITIST\n", + " Zalando Operations GmbH\n", + " 3103\n", + " \n", + " \n", + " 575\n", + " 3138\n", + " zLabels Creation & Sales GmbH & Co. KG\n", + " HAFTENDER_GESELLSCHAFTER\n", + " zLabels GmbH\n", + " 3113\n", + " \n", + " \n", + " 576\n", + " 3145\n", + " Zalando Customer Care International SE & Co. KG\n", + " HAFTENDER_GESELLSCHAFTER\n", + " Zalando SE\n", + " 3112\n", + " \n", + " \n", + " 577\n", + " 3145\n", + " Zalando Customer Care International SE & Co. KG\n", + " KOMMANDITIST\n", + " Zalando Operations GmbH\n", + " 3103\n", + " \n", + " \n", + "\n", + "

578 rows × 5 columns

\n", + "" + ], + "text/plain": [ + " id_company_to name_company_to \\\n", + "0 5 2. Schaper Objekt GmbH & Co. Kiel KG \n", + "1 32 Alb-Windkraft GmbH & Co. KG \n", + "2 34 Anneliese Köster GmbH & Co. KG \n", + "3 74 AURELIUS Equity Opportunities SE & Co. KGaA \n", + "4 77 Aurelius KG \n", + ".. ... ... \n", + "573 3137 Zalando BTD 011 SE & Co. KG \n", + "574 3137 Zalando BTD 011 SE & Co. KG \n", + "575 3138 zLabels Creation & Sales GmbH & Co. KG \n", + "576 3145 Zalando Customer Care International SE & Co. KG \n", + "577 3145 Zalando Customer Care International SE & Co. KG \n", + "\n", + " relation_type name_company_from \\\n", + "0 KOMMANDITIST Multi-Center Warenvertriebs GmbH \n", + "1 KOMMANDITIST EnBW Windkraftprojekte GmbH \n", + "2 KOMMANDITIST INDUS Holding Aktiengesellschaft \n", + "3 HAFTENDER_GESELLSCHAFTER AURELIUS Management SE \n", + "4 HAFTENDER_GESELLSCHAFTER Aurelius Verwaltungs GmbH \n", + ".. ... ... \n", + "573 HAFTENDER_GESELLSCHAFTER Zalando SE \n", + "574 KOMMANDITIST Zalando Operations GmbH \n", + "575 HAFTENDER_GESELLSCHAFTER zLabels GmbH \n", + "576 HAFTENDER_GESELLSCHAFTER Zalando SE \n", + "577 KOMMANDITIST Zalando Operations GmbH \n", + "\n", + " id_company_from \n", + "0 2213 \n", + "1 845 \n", + "2 1903 \n", + "3 163 \n", + "4 80 \n", + ".. ... \n", + "573 3112 \n", + "574 3103 \n", + "575 3113 \n", + "576 3112 \n", + "577 3103 \n", + "\n", + "[578 rows x 5 columns]" + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "company_relations = pd.read_sql_query(str(relations_company_query), session.bind)\n", + "company_relations" + ] + }, + { + "cell_type": "markdown", + "id": "b27d6532", + "metadata": {}, + "source": [ + "# All person relations" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "id": "52af1d30", + "metadata": {}, + "outputs": [], + "source": [ + "relations_person_query = (\n", + " session.query(\n", + " entities.Company.id.label(\"id_company\"),\n", + " entities.Company.name.label(\"name_company\"),\n", + " entities.PersonRelation.relation.label(\"relation_type\"),\n", + " entities.Person.id.label(\"id_person\"),\n", + " entities.Person.lastname.label(\"lastname\"),\n", + " entities.Person.firstname.label(\"firstname\"),\n", + " entities.Person.date_of_birth.label(\"date_of_birth\"),\n", + " )\n", + " .join(\n", + " entities.PersonRelation,\n", + " entities.PersonRelation.company_id == entities.Company.id,\n", + " )\n", + " .join(\n", + " entities.Person,\n", + " entities.PersonRelation.person_id == entities.Person.id,\n", + " )\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "id": "4f5ab3b2", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "302 ms ± 42.7 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" + ] + } + ], + "source": [ + "%timeit pd.read_sql_query(str(relations_person_query), session.bind)" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "id": "c78b3e65", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", " \n", @@ -455,176 +475,228 @@ " \n", " \n", " \n", - " \n", " \n", - " \n", + " \n", + " \n", " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", " \n", " \n", " \n", " \n", - " \n", " \n", - " \n", + " \n", + " \n", " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", " \n", " \n", " \n", " \n", - " \n", " \n", - " \n", + " \n", + " \n", " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", " \n", " \n", " \n", " \n", - " \n", " \n", - " \n", + " \n", + " \n", " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", " \n", " \n", " \n", " \n", - " \n", " \n", - " \n", + " \n", + " \n", " \n", " \n", " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", " \n", " \n", "
id_companyname_companyrelation_typeid_personlastnamefirstnamedate_of_birth
010 10 24 Telefondienste GmbHGESCHAEFTSFUEHRER1TetauNicolas1971-01-02
110 10 24 Telefondienste GmbHPROKURIST2DammastLutz1966-12-06
221. Staiger Grundstücksverwaltung GmbH & Co. KGKOMMANDITIST3TutschRosemarie1941-10-09
321. Staiger Grundstücksverwaltung GmbH & Co. KGKOMMANDITIST4StaigerMarc1969-10-22
421. Staiger Grundstücksverwaltung GmbH & Co. KGKOMMANDITIST5StaigerMichaela1971-03-03
............
148913144878Wohnungsbaugesellschaft mit beschränkter Haftu...RelationshipRoleEnum.GESCHAEFTSFUEHRERGESCHAEFTSFUEHRER878WeirichTorsten1975-07-21p_3144p_878-765096.839669-873491.37680797434.015153-187858.447324
1489231441840Wohnungsbaugesellschaft mit beschränkter Haftu...RelationshipRoleEnum.GESCHAEFTSFUEHRERGESCHAEFTSFUEHRER1840BrusinskiBastian1980-10-29p_3144p_1840-765096.839669-873491.37680797545.388505-187920.623746
1489331459359Zalando Customer Care International SE & Co. KGRelationshipRoleEnum.PROKURISTPROKURIST9359PapeUte1978-12-13p_3145p_9359522713.347552-39987.059093100140.211001-188283.316589
1489431469628zebotec GmbHRelationshipRoleEnum.GESCHAEFTSFUEHRERGESCHAEFTSFUEHRER9628NeffWerner1981-11-24p_3146p_9628-47380.260514-317024.32346799779.477327-188694.518293
1489531469629zebotec GmbHRelationshipRoleEnum.GESCHAEFTSFUEHRERGESCHAEFTSFUEHRER9629MorrisRichard1971-01-02p_3146p_9629-47380.260514-317024.32346799727.474626-188750.539842
\n", - "

14896 rows × 13 columns

\n", + "

14896 rows × 7 columns

\n", "
" ], "text/plain": [ - " company_id person_id \\\n", - "0 1 1 \n", - "1 1 2 \n", - "2 2 3 \n", - "3 2 4 \n", - "4 2 5 \n", - "... ... ... \n", - "14891 3144 878 \n", - "14892 3144 1840 \n", - "14893 3145 9359 \n", - "14894 3146 9628 \n", - "14895 3146 9629 \n", + " id_company name_company \\\n", + "0 1 0 10 24 Telefondienste GmbH \n", + "1 1 0 10 24 Telefondienste GmbH \n", + "2 2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", + "3 2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", + "4 2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", + "... ... ... \n", + "14891 3144 Wohnungsbaugesellschaft mit beschränkter Haftu... \n", + "14892 3144 Wohnungsbaugesellschaft mit beschränkter Haftu... \n", + "14893 3145 Zalando Customer Care International SE & Co. KG \n", + "14894 3146 zebotec GmbH \n", + "14895 3146 zebotec GmbH \n", "\n", - " name_company \\\n", - "0 0 10 24 Telefondienste GmbH \n", - "1 0 10 24 Telefondienste GmbH \n", - "2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", - "3 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", - "4 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", - "... ... \n", - "14891 Wohnungsbaugesellschaft mit beschränkter Haftu... \n", - "14892 Wohnungsbaugesellschaft mit beschränkter Haftu... \n", - "14893 Zalando Customer Care International SE & Co. KG \n", - "14894 zebotec GmbH \n", - "14895 zebotec GmbH \n", + " relation_type id_person lastname firstname date_of_birth \n", + "0 GESCHAEFTSFUEHRER 1 Tetau Nicolas 1971-01-02 \n", + "1 PROKURIST 2 Dammast Lutz 1966-12-06 \n", + "2 KOMMANDITIST 3 Tutsch Rosemarie 1941-10-09 \n", + "3 KOMMANDITIST 4 Staiger Marc 1969-10-22 \n", + "4 KOMMANDITIST 5 Staiger Michaela 1971-03-03 \n", + "... ... ... ... ... ... \n", + "14891 GESCHAEFTSFUEHRER 878 Weirich Torsten 1975-07-21 \n", + "14892 GESCHAEFTSFUEHRER 1840 Brusinski Bastian 1980-10-29 \n", + "14893 PROKURIST 9359 Pape Ute 1978-12-13 \n", + "14894 GESCHAEFTSFUEHRER 9628 Neff Werner 1981-11-24 \n", + "14895 GESCHAEFTSFUEHRER 9629 Morris Richard 1971-01-02 \n", "\n", - " relation_type lastname firstname \\\n", - "0 RelationshipRoleEnum.GESCHAEFTSFUEHRER Tetau Nicolas \n", - "1 RelationshipRoleEnum.PROKURIST Dammast Lutz \n", - "2 RelationshipRoleEnum.KOMMANDITIST Tutsch Rosemarie \n", - "3 RelationshipRoleEnum.KOMMANDITIST Staiger Marc \n", - "4 RelationshipRoleEnum.KOMMANDITIST Staiger Michaela \n", - "... ... ... ... \n", - "14891 RelationshipRoleEnum.GESCHAEFTSFUEHRER Weirich Torsten \n", - "14892 RelationshipRoleEnum.GESCHAEFTSFUEHRER Brusinski Bastian \n", - "14893 RelationshipRoleEnum.PROKURIST Pape Ute \n", - "14894 RelationshipRoleEnum.GESCHAEFTSFUEHRER Neff Werner \n", - "14895 RelationshipRoleEnum.GESCHAEFTSFUEHRER Morris Richard \n", - "\n", - " date_of_birth from to company_from_x company_from_y \\\n", - "0 1971-01-02 p_1 p_1 933483.456739 -841989.312943 \n", - "1 1966-12-06 p_1 p_2 933483.456739 -841989.312943 \n", - "2 1941-10-09 p_2 p_3 -366283.693942 -775095.283302 \n", - "3 1969-10-22 p_2 p_4 -366283.693942 -775095.283302 \n", - "4 1971-03-03 p_2 p_5 -366283.693942 -775095.283302 \n", - "... ... ... ... ... ... \n", - "14891 1975-07-21 p_3144 p_878 -765096.839669 -873491.376807 \n", - "14892 1980-10-29 p_3144 p_1840 -765096.839669 -873491.376807 \n", - "14893 1978-12-13 p_3145 p_9359 522713.347552 -39987.059093 \n", - "14894 1981-11-24 p_3146 p_9628 -47380.260514 -317024.323467 \n", - "14895 1971-01-02 p_3146 p_9629 -47380.260514 -317024.323467 \n", - "\n", - " to_person_x to_person_y \n", - "0 95962.083838 -188630.575193 \n", - "1 95958.171949 -188333.017618 \n", - "2 96588.817671 -188120.264189 \n", - "3 95948.882846 -188484.386010 \n", - "4 95880.896083 -188495.232012 \n", - "... ... ... \n", - "14891 97434.015153 -187858.447324 \n", - "14892 97545.388505 -187920.623746 \n", - "14893 100140.211001 -188283.316589 \n", - "14894 99779.477327 -188694.518293 \n", - "14895 99727.474626 -188750.539842 \n", - "\n", - "[14896 rows x 13 columns]" + "[14896 rows x 7 columns]" ] }, - "execution_count": 105, + "execution_count": 56, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "person_relations_df" + "person_relations = pd.read_sql_query(str(relations_person_query), session.bind)\n", + "person_relations" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "id": "9887d1f0", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
id_companyname_companyrelation_typeid_personlastnamefirstnamedate_of_birth
0c_10 10 24 Telefondienste GmbHGESCHAEFTSFUEHRERp_1TetauNicolas1971-01-02
1c_10 10 24 Telefondienste GmbHPROKURISTp_2DammastLutz1966-12-06
2c_21. Staiger Grundstücksverwaltung GmbH & Co. KGKOMMANDITISTp_3TutschRosemarie1941-10-09
3c_21. Staiger Grundstücksverwaltung GmbH & Co. KGKOMMANDITISTp_4StaigerMarc1969-10-22
4c_21. Staiger Grundstücksverwaltung GmbH & Co. KGKOMMANDITISTp_5StaigerMichaela1971-03-03
\n", + "
" + ], + "text/plain": [ + " id_company name_company \\\n", + "0 c_1 0 10 24 Telefondienste GmbH \n", + "1 c_1 0 10 24 Telefondienste GmbH \n", + "2 c_2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", + "3 c_2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", + "4 c_2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", + "\n", + " relation_type id_person lastname firstname date_of_birth \n", + "0 GESCHAEFTSFUEHRER p_1 Tetau Nicolas 1971-01-02 \n", + "1 PROKURIST p_2 Dammast Lutz 1966-12-06 \n", + "2 KOMMANDITIST p_3 Tutsch Rosemarie 1941-10-09 \n", + "3 KOMMANDITIST p_4 Staiger Marc 1969-10-22 \n", + "4 KOMMANDITIST p_5 Staiger Michaela 1971-03-03 " + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "person_relations['id_company'] = person_relations['id_company'].apply(lambda x: f\"c_{x}\")\n", + "person_relations['id_person'] = person_relations['id_person'].apply(lambda x: f\"p_{x}\")\n", + "person_relations.head()" ] }, { "cell_type": "markdown", + "id": "f448841c", "metadata": {}, "source": [ - "# Für Company_relation anpassen:" + "# Person relations filtered and fitted that are nodes not leaves" ] }, { "cell_type": "code", - "execution_count": 111, + "execution_count": 58, + "id": "52dad02d", "metadata": {}, "outputs": [ { @@ -648,265 +720,125 @@ " \n", " \n", " \n", - " company_from_id\n", - " company_to_id\n", - " name_company_base\n", - " relation_type\n", - " name_company_head\n", - " from\n", - " to\n", - " company_from_x\n", - " company_from_y\n", - " company_to_x\n", - " company_to_y\n", + " person_id\n", " \n", " \n", " \n", " \n", " 0\n", - " 5\n", - " 2213\n", - " 2. Schaper Objekt GmbH & Co. Kiel KG\n", - " RelationshipRoleEnum.KOMMANDITIST\n", - " Multi-Center Warenvertriebs GmbH\n", - " c_5\n", - " c_2213\n", - " 77282.617652\n", - " -561971.248878\n", - " -504679.804986\n", - " 357752.607620\n", + " 2520\n", " \n", " \n", " 1\n", - " 32\n", - " 845\n", - " Alb-Windkraft GmbH & Co. KG\n", - " RelationshipRoleEnum.KOMMANDITIST\n", - " EnBW Windkraftprojekte GmbH\n", - " c_32\n", - " c_845\n", - " 482919.713773\n", - " -248481.984921\n", - " 797890.056666\n", - " -90110.532477\n", + " 4993\n", " \n", " \n", " 2\n", - " 34\n", - " 1903\n", - " Anneliese Köster GmbH & Co. KG\n", - " RelationshipRoleEnum.KOMMANDITIST\n", - " INDUS Holding Aktiengesellschaft\n", - " c_34\n", - " c_1903\n", - " 320129.408339\n", - " 485941.395637\n", - " -454102.586298\n", - " -798353.948987\n", + " 3202\n", " \n", " \n", " 3\n", - " 74\n", - " 163\n", - " AURELIUS Equity Opportunities SE & Co. KGaA\n", - " RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER\n", - " AURELIUS Management SE\n", - " c_74\n", - " c_163\n", - " -600937.092069\n", - " 499722.504530\n", - " 876253.923745\n", - " 435382.937847\n", + " 4611\n", " \n", " \n", " 4\n", - " 77\n", - " 80\n", - " Aurelius KG\n", - " RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER\n", - " Aurelius Verwaltungs GmbH\n", - " c_77\n", - " c_80\n", - " 360724.373288\n", - " 928534.960282\n", - " -188072.509058\n", - " 41947.269056\n", + " 4095\n", " \n", " \n", " ...\n", " ...\n", - " ...\n", - " ...\n", - " ...\n", - " ...\n", - " ...\n", - " ...\n", - " ...\n", - " ...\n", - " ...\n", - " ...\n", " \n", " \n", - " 573\n", - " 3137\n", - " 3112\n", - " Zalando BTD 011 SE & Co. KG\n", - " RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER\n", - " Zalando SE\n", - " c_3137\n", - " c_3112\n", - " 95311.431637\n", - " 68673.638058\n", - " 370173.700376\n", - " 215807.388380\n", + " 1804\n", + " 3565\n", " \n", " \n", - " 574\n", - " 3137\n", - " 3103\n", - " Zalando BTD 011 SE & Co. KG\n", - " RelationshipRoleEnum.KOMMANDITIST\n", - " Zalando Operations GmbH\n", - " c_3137\n", - " c_3103\n", - " 95311.431637\n", - " 68673.638058\n", - " -546981.819278\n", - " -685375.436793\n", + " 1805\n", + " 3510\n", " \n", " \n", - " 575\n", - " 3138\n", - " 3113\n", - " zLabels Creation & Sales GmbH & Co. KG\n", - " RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER\n", - " zLabels GmbH\n", - " c_3138\n", - " c_3113\n", - " -252671.683257\n", - " 651663.943407\n", - " -139886.436337\n", - " 657339.918258\n", + " 1806\n", + " 530\n", " \n", " \n", - " 576\n", - " 3145\n", - " 3112\n", - " Zalando Customer Care International SE & Co. KG\n", - " RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER\n", - " Zalando SE\n", - " c_3145\n", - " c_3112\n", - " 522713.347552\n", - " -39987.059093\n", - " 370173.700376\n", - " 215807.388380\n", + " 1807\n", + " 536\n", " \n", " \n", - " 577\n", - " 3145\n", - " 3103\n", - " Zalando Customer Care International SE & Co. KG\n", - " RelationshipRoleEnum.KOMMANDITIST\n", - " Zalando Operations GmbH\n", - " c_3145\n", - " c_3103\n", - " 522713.347552\n", - " -39987.059093\n", - " -546981.819278\n", - " -685375.436793\n", + " 1808\n", + " 4617\n", " \n", " \n", "\n", - "

578 rows × 11 columns

\n", + "

1809 rows × 1 columns

\n", "" ], "text/plain": [ - " company_from_id company_to_id \\\n", - "0 5 2213 \n", - "1 32 845 \n", - "2 34 1903 \n", - "3 74 163 \n", - "4 77 80 \n", - ".. ... ... \n", - "573 3137 3112 \n", - "574 3137 3103 \n", - "575 3138 3113 \n", - "576 3145 3112 \n", - "577 3145 3103 \n", + " person_id\n", + "0 2520\n", + "1 4993\n", + "2 3202\n", + "3 4611\n", + "4 4095\n", + "... ...\n", + "1804 3565\n", + "1805 3510\n", + "1806 530\n", + "1807 536\n", + "1808 4617\n", "\n", - " name_company_base \\\n", - "0 2. Schaper Objekt GmbH & Co. Kiel KG \n", - "1 Alb-Windkraft GmbH & Co. KG \n", - "2 Anneliese Köster GmbH & Co. KG \n", - "3 AURELIUS Equity Opportunities SE & Co. KGaA \n", - "4 Aurelius KG \n", - ".. ... \n", - "573 Zalando BTD 011 SE & Co. KG \n", - "574 Zalando BTD 011 SE & Co. KG \n", - "575 zLabels Creation & Sales GmbH & Co. KG \n", - "576 Zalando Customer Care International SE & Co. KG \n", - "577 Zalando Customer Care International SE & Co. KG \n", - "\n", - " relation_type \\\n", - "0 RelationshipRoleEnum.KOMMANDITIST \n", - "1 RelationshipRoleEnum.KOMMANDITIST \n", - "2 RelationshipRoleEnum.KOMMANDITIST \n", - "3 RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER \n", - "4 RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER \n", - ".. ... \n", - "573 RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER \n", - "574 RelationshipRoleEnum.KOMMANDITIST \n", - "575 RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER \n", - "576 RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER \n", - "577 RelationshipRoleEnum.KOMMANDITIST \n", - "\n", - " name_company_head from to company_from_x \\\n", - "0 Multi-Center Warenvertriebs GmbH c_5 c_2213 77282.617652 \n", - "1 EnBW Windkraftprojekte GmbH c_32 c_845 482919.713773 \n", - "2 INDUS Holding Aktiengesellschaft c_34 c_1903 320129.408339 \n", - "3 AURELIUS Management SE c_74 c_163 -600937.092069 \n", - "4 Aurelius Verwaltungs GmbH c_77 c_80 360724.373288 \n", - ".. ... ... ... ... \n", - "573 Zalando SE c_3137 c_3112 95311.431637 \n", - "574 Zalando Operations GmbH c_3137 c_3103 95311.431637 \n", - "575 zLabels GmbH c_3138 c_3113 -252671.683257 \n", - "576 Zalando SE c_3145 c_3112 522713.347552 \n", - "577 Zalando Operations GmbH c_3145 c_3103 522713.347552 \n", - "\n", - " company_from_y company_to_x company_to_y \n", - "0 -561971.248878 -504679.804986 357752.607620 \n", - "1 -248481.984921 797890.056666 -90110.532477 \n", - "2 485941.395637 -454102.586298 -798353.948987 \n", - "3 499722.504530 876253.923745 435382.937847 \n", - "4 928534.960282 -188072.509058 41947.269056 \n", - ".. ... ... ... \n", - "573 68673.638058 370173.700376 215807.388380 \n", - "574 68673.638058 -546981.819278 -685375.436793 \n", - "575 651663.943407 -139886.436337 657339.918258 \n", - "576 -39987.059093 370173.700376 215807.388380 \n", - "577 -39987.059093 -546981.819278 -685375.436793 \n", - "\n", - "[578 rows x 11 columns]" + "[1809 rows x 1 columns]" ] }, - "execution_count": 111, + "execution_count": 58, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "df_temp_df: pd.DataFrame = company_df.set_index(\"id\", drop=True)\n", - "company_relations_df[[\"company_from_x\", \"company_from_y\"]] = df_temp_df.loc[company_relations_df[\"company_from_id\"] , [\"x\", \"y\"]].reset_index(drop=True)\n", + "from sqlalchemy import func, text\n", "\n", - "\n", - "company_relations_df[[\"company_to_x\", \"company_to_y\"]] = df_temp_df.loc[company_relations_df[\"company_to_id\"] , [\"x\", \"y\"]].reset_index(drop=True)\n", - "company_relations_df" + "# Subquery to group and count the relations without joins\n", + "grouped_relations_subquery = (\n", + " session.query(\n", + " entities.PersonRelation.person_id,\n", + " )\n", + " .group_by(entities.PersonRelation.person_id)\n", + " .having(func.count() > 1)\n", + ")\n", + "pd.DataFrame(grouped_relations_subquery.all())" ] }, { "cell_type": "code", - "execution_count": 110, + "execution_count": 59, + "id": "2d3f7fa7", + "metadata": {}, + "outputs": [], + "source": [ + "company = (\n", + " pd.DataFrame(relations_person_query.all())\n", + " .set_index([\"lastname\", \"firstname\", \"date_of_birth\"])\n", + " .sort_index()\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "id": "53d2b530", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import igraph as ig\n", + "import plotly.graph_objects as go" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "id": "9ad5d106", "metadata": {}, "outputs": [ { @@ -930,131 +862,133 @@ " \n", " \n", " \n", - " company_from_id\n", - " company_to_id\n", - " name_company_base\n", - " relation_type\n", - " name_company_head\n", - " from\n", - " to\n", - " company_from_x\n", - " company_from_y\n", + " source\n", + " target\n", " \n", " \n", " \n", " \n", " 0\n", - " 5\n", - " 2213\n", - " 2. Schaper Objekt GmbH & Co. Kiel KG\n", - " RelationshipRoleEnum.KOMMANDITIST\n", - " Multi-Center Warenvertriebs GmbH\n", - " c_5\n", - " c_2213\n", - " 933483.456739\n", - " -841989.312943\n", + " A\n", + " B\n", " \n", " \n", " 1\n", - " 32\n", - " 845\n", - " Alb-Windkraft GmbH & Co. KG\n", - " RelationshipRoleEnum.KOMMANDITIST\n", - " EnBW Windkraftprojekte GmbH\n", - " c_32\n", - " c_845\n", - " 933483.456739\n", - " -841989.312943\n", + " B\n", + " C\n", " \n", " \n", " 2\n", - " 34\n", - " 1903\n", - " Anneliese Köster GmbH & Co. KG\n", - " RelationshipRoleEnum.KOMMANDITIST\n", - " INDUS Holding Aktiengesellschaft\n", - " c_34\n", - " c_1903\n", - " -366283.693942\n", - " -775095.283302\n", + " C\n", + " D\n", " \n", " \n", " 3\n", - " 74\n", - " 163\n", - " AURELIUS Equity Opportunities SE & Co. KGaA\n", - " RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER\n", - " AURELIUS Management SE\n", - " c_74\n", - " c_163\n", - " -366283.693942\n", - " -775095.283302\n", + " D\n", + " A\n", " \n", " \n", " 4\n", - " 77\n", - " 80\n", - " Aurelius KG\n", - " RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER\n", - " Aurelius Verwaltungs GmbH\n", - " c_77\n", - " c_80\n", - " -366283.693942\n", - " -775095.283302\n", + " A\n", + " C\n", + " \n", + " \n", + " 5\n", + " C\n", + " B\n", " \n", " \n", "\n", "" ], "text/plain": [ - " company_from_id company_to_id \\\n", - "0 5 2213 \n", - "1 32 845 \n", - "2 34 1903 \n", - "3 74 163 \n", - "4 77 80 \n", - "\n", - " name_company_base \\\n", - "0 2. Schaper Objekt GmbH & Co. Kiel KG \n", - "1 Alb-Windkraft GmbH & Co. KG \n", - "2 Anneliese Köster GmbH & Co. KG \n", - "3 AURELIUS Equity Opportunities SE & Co. KGaA \n", - "4 Aurelius KG \n", - "\n", - " relation_type \\\n", - "0 RelationshipRoleEnum.KOMMANDITIST \n", - "1 RelationshipRoleEnum.KOMMANDITIST \n", - "2 RelationshipRoleEnum.KOMMANDITIST \n", - "3 RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER \n", - "4 RelationshipRoleEnum.HAFTENDER_GESELLSCHAFTER \n", - "\n", - " name_company_head from to company_from_x \\\n", - "0 Multi-Center Warenvertriebs GmbH c_5 c_2213 933483.456739 \n", - "1 EnBW Windkraftprojekte GmbH c_32 c_845 933483.456739 \n", - "2 INDUS Holding Aktiengesellschaft c_34 c_1903 -366283.693942 \n", - "3 AURELIUS Management SE c_74 c_163 -366283.693942 \n", - "4 Aurelius Verwaltungs GmbH c_77 c_80 -366283.693942 \n", - "\n", - " company_from_y \n", - "0 -841989.312943 \n", - "1 -841989.312943 \n", - "2 -775095.283302 \n", - "3 -775095.283302 \n", - "4 -775095.283302 " + " source target\n", + "0 A B\n", + "1 B C\n", + "2 C D\n", + "3 D A\n", + "4 A C\n", + "5 C B" ] }, - "execution_count": 110, + "execution_count": 61, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "company_relations_df.head()" + "g = ig.Graph()\n", + "data = {\n", + " \"source\": [\"A\", \"B\", \"C\", \"D\", \"A\", \"C\"],\n", + " \"target\": [\"B\", \"C\", \"D\", \"A\", \"C\", \"B\"],\n", + "}\n", + "\n", + "df = pd.DataFrame(data)\n", + "df" ] }, { "cell_type": "code", - "execution_count": 119, + "execution_count": 62, + "id": "e38983cf", + "metadata": {}, + "outputs": [], + "source": [ + "g.add_vertices(\n", + " pd.concat(\n", + " [company_relations[\"name_company_to\"], company_relations[\"name_company_from\"]]\n", + " ).unique()\n", + ")\n", + "g.add_edges(\n", + " [\n", + " (row[\"name_company_to\"], row[\"name_company_from\"])\n", + " for _, row in company_relations.iterrows()\n", + " ]\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "id": "fa95ba75", + "metadata": {}, + "outputs": [], + "source": [ + "for _, row in company_relations.iterrows():\n", + " source, target, weight = (\n", + " row[\"name_company_from\"],\n", + " row[\"name_company_to\"],\n", + " row[\"relation_type\"],\n", + " )\n", + " g.add_edge(source, target, weight=len(weight))" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "id": "2de7e9cf", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 64, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "layout = g.layout_kamada_kawai()\n", + "layout" + ] + }, + { + "cell_type": "code", + "execution_count": 65, + "id": "1e2e30b3", "metadata": {}, "outputs": [ { @@ -1065,88691 +999,8267 @@ }, "data": [ { - "hovertext": [ - "0 10 24 Telefondienste GmbH", - "1. Staiger Grundstücksverwaltung GmbH & Co. KG", - "1 A Autenrieth Kunststofftechnik GmbH & Co. KG", - "01050.com GmbH", - "2. Schaper Objekt GmbH & Co. Kiel KG", - "AASP Filmproduktionsgesellschaft mbH & Co. Leonie KG", - "AgroMyc-Merck GmbH", - "August Schäffler Verwaltungs GmbH", - "AURELIUS Advisory AG", - "AURELIUS Development Fourty-One GmbH", - "AURELIUS Development Thirty-Four GmbH", - "Aurelius Immo GmbH", - "Aurelius Ulmenhof GmbH", - "1&1 De-Mail GmbH", - "AURELIUS Development Fifteen GmbH", - "1&1 Mail & Media Applications SE", - "1&1 Telecommunication SE", - "1&1 Telecom Service Montabaur GmbH", - "A 1 Marketing, Kommunikation und neue Medien GmbH", - "Admenta Deutschland GmbH", - "AKF Bau UG (haftungsbeschränkt)", - "Albert Henkel Verwaltungs-GmbH", - "Ampero GmbH", - "ATESTEO Beteiligungs GmbH", - "Auda EnBW MA Initiatoren GmbH & Co. KG", - "AURELIUS Development Eleven GmbH", - "2Gramm GmbH", - "AURELIUS Development Thirty-Two GmbH", - "Aurelius Invest UG (haftungsbeschränkt)", - "AEMtec GmbH", - "AIB Verwaltungs GmbH", - "AK-ON Haustechnik e.K. Inh. Musa Akkaya", - "Alb-Windkraft GmbH & Co. KG", - "AL GRAMM GmbH", - "Anneliese Köster GmbH & Co. KG", - "ARKON Grundbesitzverwaltung GmbH", - "Aurelius Holding UG (haftungsbeschränkt)", - "AURELIUS Investment Advisory AG", - "1&1 Mail & Media Development & Technology GmbH", - "1&1 Telecom Holding GmbH", - "1. Guss Maulburg GmbH", - "ABG Apotheken-Beratungsgesellschaft mbH", - "adidas Beteiligungsgesellschaft mbH", - "adidas CDC Immobilieninvest GmbH", - "bayer Feinwerk GmbH & Co. KG", - "Amber Zweite VV GmbH", - "AREF Solar Germany II GmbH", - "AROTEC Automation und Robotik GmbH", - "ASSET Immobilienbeteiligungen GmbH", - "Aurelius Cotta - Konrad Pika Trippel Partnerschaft von Rechtsanwälten mbB", - "Aurelius Dienstleistungs eG", - "AURELIUS Gamma Invest GmbH", - "Aurelius Horizon UG (haftungsbeschränkt)", - "AURELIUS Transaktionsberatungs AG", - "1. Freiburger Solarfonds Beteiligungs-KG", - "1&1 Energy GmbH", - "1 A Blumen Griesbaum, Inh. Philipp Zähringer e.K.", - "adidas Insurance & Risk Consultants GmbH", - "AURELIUS Development Fourty-Five DS GmbH", - "ahg Autohandelsgesellschaft mbH", - "Airport Assekuranz Vermittlungs-GmbH", - "AKG Automobile GmbH", - "ALTBERG GmbH", - "ASS Maschinenbau GmbH", - "AURELIUS Development Six GmbH", - "AURELIUS Services Holding GmbH", - "AURELIUS WK Eleven GmbH", - "ACONITA Grundstücks-Vermietungsgesellschaft mbH & Co. Objekt Niederrad KG", - "Albert Schäffler Elektromeister GmbH", - "Amprio GmbH", - "audio.digital NRW GmbH", - "AURELIUS APARTMENTS UG (haftungsbeschränkt)", - "AURELIUS Development Fourty-Seven GmbH", - "Fielmann AG & Co. Harburg Sand OHG", - "AURELIUS Development Sixteen DS GmbH", - "AURELIUS Development Twelve GmbH", - "AURELIUS Epsilon International GmbH", - "AURELIUS Equity Opportunities SE & Co. KGaA", - "Aurelius Immobiliengesellschaft Am Fanny Mendelssohn Platz GmbH & Co. KG", - "AURELIUS IV GER AcquiCo Three GmbH", - "Aurelius KG", - "Aurelius Mittelstandskapital GmbH", - "AURELIUS Real Estate Investments GmbH", - "Aurelius Verwaltungs GmbH", - "AURELIUS WK Fifteen GmbH", - "99 gramm Management GmbH", - "APHS Ambulanter Pflegedienst Hella Schnepel GmbH", - "Aragon 16. VV GmbH", - "EnBW Solarpark Rot an der Rot GmbH & Co. KG", - "adidas AG", - "AFS Immobilien GmbH", - "Airbus DS Airborne Solutions GmbH", - "Aragon 14. VV GmbH", - "Aragon 15. VV GmbH", - "ATESTEO Management GmbH", - "AURELIUS Alpha Invest New GmbH", - "AURELIUS Development Twenty-Three GmbH", - "AURELIUS IV GER AcquiCo One GmbH", - "AURELIUS Portfolio Management AG", - "1 st Class Marketing GmbH", - "ALBA Neckar-Alb GmbH & Co. KG", - "Amber Erste VV GmbH", - "Aufzug - Technik Gramm GmbH", - "Airport Cater Service GmbH", - "Bayer. Pilze & Waldfrüchte Uwe Niklas GmbH", - "AURELIUS Alpha International GmbH", - "AURELIUS Development Fourty-Four GmbH", - "AURELIUS Development Fourty GmbH", - "AURELIUS Development Fourty-Two GmbH", - "AURELIUS Development Twenty-Four GmbH", - "AURELIUS Gamma International GmbH", - "Aurelius Immobiliengesellschaft am Udo Lindenberg Platz GmbH", - "Aurelius SW11 GmbH", - "1&1 Mail & Media Service GmbH", - "1&1 Versatel GmbH", - "1. Alfdorfer Solarbetriebs-GmbH & Co. KG", - "7pace GmbH", - "AHG Agrar-Holding GmbH", - "AirIT Services GmbH", - "Bayer Rettungstechnik oHG", - "Albert Scheid Gesellschaft mit beschränkter Haftung", - "Ambulanter Pflegedienst Hella Schnepel e.K.", - "AURELIUS Development Fourty-Eight GmbH", - "AURELIUS Development Ten GmbH", - "AURELIUS Development Twenty-Six GmbH", - "Aurelius GmbH", - "AURELIUS Wachstumskapital SE & Co. KG", - "1&1 Mail & Media GmbH", - "1&1 Logistik GmbH", - "Aachener Bergmannssiedlungsgesellschaft mbH", - "0 10 19 Telefondienste GmbH", - "1&1 Telecom GmbH", - "Fielmann AG & Co. im Centrum OHG", - "21 Gramm Gastro GmbH", - "Athena-Film Hella v. Krottnaurer Filmverleih und Vortragsdienst", - "August Schäffler GmbH & Co KG", - "AURELIUS Development Fourty-Five GmbH", - "AURELIUS Development Fourty-Three GmbH", - "AURELIUS Development Nine GmbH", - "AURELIUS Development Sixteen GmbH", - "Aurelius Digital Ventures UG (haftungsbeschränkt)", - "Aurelius Investment Management Partners GmbH", - "Aurelius Kontor Immobilien GmbH & Co. KG", - "1&1 Telecom Sales GmbH", - "1&1 Versatel Deutschland GmbH", - "ACU PHARMA und CHEMIE GmbH", - "ADAGIO 2. Grundstücksverwaltungsgesellschaft mbH", - "Airplane-Equipment & Services A.E.S. GmbH", - "BASF Niedersächsische Grundbesitz GmbH", - "Amber Dritte VV GmbH", - "Antamira Makler- und Beratungsgesellschaft mbH", - "Apleona PB GmbH", - "AREF Solar Germany I GmbH", - "AURELIUS Active Management Holding GmbH", - "AURELIUS Development Eight GmbH", - "Aurelius-Hof Mainhausen GmbH", - "Aurelius MVZ GmbH", - "Aurelius Witton GmbH", - "1&1 Telecom Service Zweibrücken GmbH", - "1,2,3 fliegenfrei GmbH", - "1-Services GmbH", - "21 GRAMM Music UG (haftungsbeschränkt)", - "AKAD Holding GmbH", - "Allergopharma GmbH & Co. KG", - "BASF Ludwigshafen Grundbesitz SE & Co. KG", - "Alphabet International GmbH", - "amsg gesellschaft für architektur und sige-koordination mbh", - "AURELIUS Beta International GmbH", - "AURELIUS Development Four GmbH", - "AURELIUS Development Seventeen GmbH", - "AURELIUS Management SE", - "Aurelius UG (haftungsbeschränkt)", - "Aurelius Verwaltungsgesellschaft mbH", - "Albert Henkel GmbH &. Co. KG", - "AmpTec GmbH", - "Ancavion GmbH", - "ancotech Holding GmbH & Co. KG", - "Apotheke Neuhausen Inhaber Klaus-Peter Kessler", - "Astra Ambulante Pflege GmbH", - "Aurelius Beteiligungsberatungs AG", - "AURELIUS Development Thirty-Five GmbH", - "\"Auto - Garant\" Fahrzeughandel und -service GmbH", - "AURELIUS Development Thirty-Three GmbH", - "Aurelius Immobilien GmbH", - "1. Weinheimer Bestattungsunternehmen e.G. Vereinigte Weinheimer-Hemsbacher Schreinermeister", - "21 GRAMM Publishing UG (haftungsbeschränkt)", - "Antje Leonie Schindler UG (haftungsbeschränkt)", - "Aufwind BB GmbH & Co. Zweiundzwanzigste Biogas KG", - "AURELIUS Alpha Invest GmbH", - "AURELIUS Development Fourty-Six GmbH", - "AURELIUS Development Three GmbH", - "AURELIUS Development Twenty-Five GmbH", - "AURELIUS Development Twenty-Nine GmbH", - "AURELIUS Epsilon Invest GmbH", - "Aurelius Medical GmbH", - "Autohaus J.B. Lell e.K.", - "Bayer Automaten GmbH", - "Bayer Bauphysik Ingenieurgesellschaft mbH", - "ADAGIO Grundstücksverwaltungsgesellschaft mbH", - "Agheera GmbH", - "Aragon 13. VV GmbH", - "AURELIUS Active Management GmbH", - "AURELIUS Development Seven GmbH", - "AURELIUS Development Thirty-One GmbH", - "AURELIUS Initiative Development GmbH", - "AURELIUS IV GER AcquiCo Four GmbH", - "AURELIUS IV GER AcquiCo Two GmbH", - "AURELIUS MK Two GmbH", - "AURELIUS WK Seventeen GmbH", - "AURELIUS WK Management SE", - "Bayer-Handelsgesellschaft mit beschränkter Haftung", - "Bayer Hausrenovierungen GmbH & Co. KG", - "Bayer Immobilien GmbH", - "Bayer-Moden Inh. Meike Bayer", - "Bayern Bankett Gastronomie GmbH", - "Bayern-Drive Fahrschule GmbH", - "Bayern Express Spedition Ernst Mayer GmbH", - "BASF Catalysts Germany GmbH", - "Auto Grammer e.K.", - "Aurubis Product Sales GmbH", - "AURELIUS WK Nineteen GmbH", - "AZ Electronic Materials GmbH", - "BASF Biorenewable Beteiligungs GmbH & Co. KG", - "BASF Gastronomie GmbH", - "BASF Performance Polymers GmbH", - "Bayer Gesellschaft für Beteiligungen mbH", - "Bayer Grundbesitz GmbH & Co. KG", - "Bayer Montagebau GmbH", - "AURELIUS WK Twenty DS GmbH", - "BASF Coatings GmbH", - "BASF Construction Additives GmbH", - "BASF Leuna GmbH", - "BASF Process Catalysts GmbH", - "Bayer Aktiengesellschaft", - "Bayer J. Automobile international GmbH", - "Bayer Metallbau GmbH", - "Bayern-Fass Rekonditionierungs GmbH", - "BASF Innovationsfonds GmbH", - "BASF Lizenz GmbH", - "BASF Personal Care and Nutrition GmbH", - "BASF Schwarzheide GmbH", - "Bayer Altersversorgung GmbH", - "Bayer Design Service GmbH", - "Bayer Direct Services GmbH", - "Bayer-Dorschner-Bauplanungsgesellschaft mbH & Co. KG", - "Bayern ABS Projektentwicklung GmbH", - "Bayern Card-Services Beteiligungs GmbH & Co. KG", - "Bayern Card-Services Beteiligungsverwaltungs GmbH", - "Bayern Digital Radio GmbH", - "Autohaus Erwin Schmidt GmbH & Co. KG", - "BASF Jobmarkt GmbH", - "BASF Renewable Energy GmbH", - "BauMineral GmbH", - "Bay Anlagenbau GmbH", - "Bayer 04 Immobilien GmbH", - "Bayer-Bräu Inh. Alfred Bayer", - "Bayer CropScience Deutschland GmbH", - "Bayer Design Fritz Bayer GmbH & Co KG", - "Bayer Gesellschaft mit beschränkter Haftung", - "Bayer Glasbau GmbH", - "Bayer Hausrenovierungen Verwaltungs-GmbH", - "Bayern-Film Lieselotte Maurer Nachf. e.K.", - "Aurubis Stolberg GmbH & Co. KG", - "BASF US Verwaltung GmbH", - "BASF watertechnologies Beteiligungs GmbH", - "Bayer CropScience Aktiengesellschaft", - "Bayer Fenster- Türentechnik GmbH", - "Bayern Camper GmbH & Co. KG", - "AURELIUS WK Twenty-Six GmbH", - "AURELIUS WK Twelve GmbH", - "Autohaus Gröbenzell GmbH & Co. Kfz.-Handels KG", - "Autohaus Moderegger GmbH", - "BASF Digital Farming GmbH", - "BASF IP Licensing GmbH", - "BASF Polyurethanes GmbH", - "BASF Venture Capital GmbH", - "BASF Verwaltungstreuhand GmbH", - "Bayer Consulting GmbH", - "Bayer Grabmale Gesellschaft mit beschränkter Haftung", - "Bayer & Hiebl, SHL Sanitär-, Heizungs-, Lüftungsbaugesellschaft m.b.H.", - "Bayer & Kastner GmbH", - "Bayern Card-Services GmbH -S-Finanzgruppe", - "bayern design GmbH", - "\"Bayern\" Immobilien Treuhand Dr. jur. Zembsch GmbH & Co., Anlagen-Verwaltungs-KG", - "Bayer Maschinenbau GmbH & Co. KG", - "AURELIUS WK Twenty-One GmbH", - "Autohaus Karell KG", - "Autohaus Menke GmbH", - "Autohaus Vogl e.K. BMW Vertragshändler", - "Bad Kreuznacher Sonnenpark Betrieb GmbH & Co. KG (KSB)", - "Bayer. Gmain Pflege- und Therapiezentrum GmbH", - "BAYERN CONSULT Unternehmensberatung GmbH", - "Bayern Engineering GmbH & Co. KG", - "Bayern Flug GmbH", - "AURORA Konrad G. Schulz GmbH & Co. KG", - "Autohaus Albert Henkel GmbH", - "BASF Beteiligungsgesellschaft mbH", - "BASF Grenzach GmbH", - "BASF Handels- und Exportgesellschaft mit beschränkter Haftung", - "BASF Lampertheim GmbH", - "BASF SE", - "Bay Beteiligungs GmbH", - "Bayer CropScience Vermögensverwaltungsgesellschaft mbH", - "Bayer GmbH", - "Bayer & Kastner GmbH Personaldienstleistungen", - "Bayern BHKW GmbH", - "Bayern Immobilien Höller/Lechner KG", - "Bayern Camper Verwaltungs GmbH", - "AURELIUS WK Twenty-Four GmbH", - "azeti GmbH", - "BASF Agricultural Solutions GmbH", - "AURELIUS WK Twenty-Three GmbH", - "AURELIUS WK Twenty GmbH", - "Aurubis AG", - "Autohaus Briem GmbH & Co. KG Vertragshändler", - "A. & W. Leoni GmbH", - "BASF Mobilienleasing GmbH & Co. KG", - "BASF Services Europe GmbH", - "BASF VC Beteiligungs- und Managementgesellschaft mbH", - "Bayer 04 Leverkusen Sportförderung gGmbH", - "Bayer Gastronomie GmbH", - "Bayer Gebäudetechnik GmbH & Co.KG", - "Fielmann AG & Co. KG", - "BASF Logistics GmbH", - "BASF Plant Science GmbH", - "BASF Wohnen + Bauen GmbH", - "Bay City Textilhandels GmbH", - "Bayer Aluminiumbau GmbH", - "Bayer-Bräu GmbH.", - "Bayer Gerüstauf- und abbau, Inh. Klaus Thiele e.K.", - "Bayer Geschäftsführungs GmbH", - "Bayer Industrieanlagen e. K.", - "Bayer Karosserie und Lackierzentrum Kassel GmbH", - "Bayern Block GmbH", - "AURELIUS WK Twenty-Five GmbH", - "BASF AGRO TRADEMARKS GmbH", - "BASF Finance Malta GmbH", - "BASF Isocyanate China Investment GmbH", - "BASF Plant Science Company GmbH", - "Bayer 04 physio team GmbH", - "Bayer Beteiligungsverwaltung Goslar GmbH", - "Bayer Betriebs GmbH", - "Bayer Bitterfeld GmbH", - "Bayer Druck Gesellschaft mit beschränkter Haftung", - "Bayer-Gothieu GmbH Transporte", - "BAYERN-CHEMIE Gesellschaft für flugchemische Antriebe mit beschränkter Haftung", - "BAYERN Haus & Wohnbau GmbH", - "BASF 3D Printing Solutions GmbH", - "BASF Deutsche Grundbesitz GmbH", - "BASF Digital Solutions GmbH", - "BASF enviaM Solarpark Schwarzheide GmbH", - "BASF Fuel Cell GmbH", - "BASF Immobilien-Gesellschaft mbH", - "Bautechnik Grammer GmbH", - "Bayer Beteiligungs- und Verwaltungs-GmbH", - "Bayer Gebäudereinigungs GmbH", - "Bayer GmbH & Co KG", - "Bayer Intellectual Property GmbH", - "Aurubis Stolberg Verwaltungs-GmbH", - "AUTO1 Group Operations SE", - "BASF Battery Materials and Recycling GmbH", - "BASF Metabolome Solutions GmbH", - "Bauverein Glückauf GmbH", - "Bayer 04 Leverkusen Fußball GmbH", - "Bayer-Lenzen Stahlbau und angewandte Schweißtechnik GmbH", - "Bayern Auto GmbH", - "AURELIUS WK Nine GmbH", - "AUTO1 Group SE", - "BASF Fuel Cell Pensionsverwaltung GmbH", - "Bayer Bauunternehmen GmbH", - "Bayer Fahrzeugbau Gesellschaft mit beschränkter Haftung & Co. Kommanditgesellschaft", - "Bayer Fleischwaren GmbH", - "Bayer Grundbesitz-Verwaltungsgesellschaft mbH", - "Bayern-Fass Verwaltungsgesellschaft mbH", - "AURELIUS WK Twenty-Two GmbH", - "Aurubis Stolberg Asset GmbH & Co. KG", - "Aurubis Stolberg Asset Verwaltungs-GmbH", - "Autohaus Fulda Krah & Enders GmbH", - "BASF Akquisitions GmbH", - "BASF Battery Technology Investment GmbH & Co. KG", - "BASF Coatings Services GmbH", - "BASF Stationary Energy Storage GmbH", - "BASF Treuhand GmbH & Co. KG", - "BASF Trostberger Grundbesitz GmbH", - "BASF watertechnologies GmbH & Co. KG", - "Bayer GmbH Tor- & Zaunsysteme", - "Bayer kreativ Küchen Innenausbau Inhaber Matthias Bayer e.K.", - "Bayern Boden GmbH", - "Henkel & Söhne Bedachungs GmbH", - "Bayern Connect GmbH", - "Bayern Corporate Services GmbH", - "Bayern Kapital Verwaltungs GmbH", - "Bayern Trucks Holding GmbH", - "Bay GmbH Autohaus Landmaschinen", - "Bayern-Osteuropa OHG Travel Consulting Marketing", - "Bayer + Riedl Personalservice GmbH", - "Bayern Wind GmbH", - "Bayern Tourismus Marketinggesellschaft mit beschränkter Haftung", - "Bayern Treuhand Obermeier & Kilger KG Wirtschaftsprüfungsgesellschaft", - "Bayer Real Estate GmbH", - "Bayer-Unterstützungskasse GmbH", - "Bayer u. Sohn Verwaltungs GmbH", - "bay eurokessel GmbH", - "Bay GmbH Fleischgroß- & einzelhandel", - "Bay Holzwerk GmbH", - "Bay Spedition Verwaltungs-GmbH", - "Bosch BASF Smart Farming GmbH", - "BayWa BGM Verwaltungs GmbH", - "BayWa r.e. AG", - "BayWa r.e. Asset Management GmbH", - "BayWa r.e. Windparkportfolio 1 GmbH & Co. KG", - "Beragon VV GmbH", - "Beteiligungsgesellschaft Hesse Newman Real Estate Nr. 2 mbH", - "BMW INTEC Beteiligungs GmbH", - "Brenntag Germany Holding GmbH", - "Budde Fördertechnik GmbH", - "CMC Consumer Medical Care GmbH", - "Covestro Brunsbüttel Energie GmbH", - "CropEnergies AG", - "Bay-Soft GmbH", - "BayWa Haustechnik GmbH", - "BayWa r.e. Energy Trading GmbH", - "BayWa r.e. Power Solutions GmbH", - "BBG - Berlin-Brandenburger Lager- und Distributionsgesellschaft Biesterfeld Brenntag mbH", - "Berchelmann'sche Apotheke, Inh. Serap Birgül e.K.", - "BIG Immobilien GmbH", - "BMW Finanz Verwaltungs GmbH", - "BMW High Power Charging Beteiligungs GmbH", - "BREAD & butter GmbH & Co. KG", - "Brüderl Projekt Kunigundenstraße GmbH & Co. KG", - "brüderl Projekt Lerchenweg GmbH & Co. KG", - "BSP Berner Schaeffler & Partners GmbH Steuerberatungsgesellschaft", - "CARMAH Verwaltungs GmbH", - "Bayer & Partner Rechtsanwälte Insolvenzverwaltung", - "Bayer & Partner - Rechtsanwälte Steuerberater", - "Bayer Pharma Aktiengesellschaft", - "Bayer. Staatsbad Bad Reichenhall/Bayer. Gmain GmbH", - "Bayer Unternehmensberatung GmbH", - "Bayer US IP GmbH", - "Bayer Vitrotechnic GmbH", - "BayWa r.e. Energy Ventures GmbH", - "BayWa r.e. Solar Energy Systems GmbH", - "BayWa r.e. Wind Verwaltungs GmbH", - "Bay & Wiesenauer Verwaltungs-GmbH", - "Berge & Meer Touristik GmbH", - "BSI ZECH/HOCHTIEF GmbH & Co. oHG", - "Best4Concept GmbH", - "Biomasse Heizkraftwerk Siegerland GmbH & Co. KG", - "Biomet Deutschland GmbH", - "BITIBA GmbH", - "BizLink elocab GmbH", - "Brentwood Europe GmbH", - "CECONOMY AG", - "City Airlines GmbH", - "Covestro Second Real Estate GmbH", - "BayWa Bau Projekt GmbH", - "Bayer u. Sohn Speditions-GmbH", - "Bayer Verwaltungs GmbH", - "BAY-PLAST GmbH", - "BAY Trading GmbH", - "BayWa CS GmbH", - "BayWa Dienstleistung Ost GmbH", - "BayWa r.e. Operation Services GmbH", - "BayWa r.e. Wind 20+ GmbH", - "BeGra Befestigungstechnik Gramm GmbH", - "BE-ON eG", - "Bilfinger Life Science Automation GmbH", - "BMW Vermögensverwaltungs GmbH", - "Bodo on stage e. K.", - "Brüderl Projekt Traunstorfer Straße GmbH & Co. KG", - "Buschjost Magnetventile GmbH & Co. KG", - "CECONOMY Invest GmbH", - "Cognis International GmbH", - "Bay Küchen GmbH & Co. KG", - "BayWa Aktiengesellschaft", - "BayWa ARA 2 GmbH", - "BayWa r.e. Solar Projects Verwaltungs GmbH", - "belboon GmbH", - "Bilfinger Corporate Real Estate Management GmbH", - "BayWa Power Liquids GmbH", - "Bilfinger Engineering & Maintenance GmbH", - "Bayer.Wald Granitwerke K.A. Thiele GmbH & Co. KG", - "BMW i Ventures GmbH", - "BMW Service Moser GmbH & Co. KG", - "Bay GmbH & Co. KG", - "Brenntag Global Services GmbH", - "BAY.RO International Vermittlung von Holz & Brennstoffen e. K.", - "CECONOMY Dreizehnte Gesellschaft für Vermögensverwaltung mbH", - "Cockpitpersonal GmbH", - "Bay Verwaltungs GmbH & Co. KG", - "COMPUTEC GmbH", - "BayWa Bau- & Gartenmärkte GmbH & Co. KG", - "Construction Research & Technology GmbH", - "Covestro Deutschland AG", - "BayWa Energie Dienstleistungs GmbH", - "DHL Global Management GmbH", - "Covestro Procurement Services Verwaltungs GmbH", - "Covestro Thermoplast Composite GmbH", - "BayWa Rent GmbH", - "BENEO GmbH", - "Bilfinger Noell GmbH", - "BMW Car IT GmbH", - "Brenntag Foreign Holding GmbH", - "Brenntag Vermögensmanagement GmbH", - "CECONOMY Retail International GmbH", - "CEE Mainova WP Kirchhain GmbH & Co. KG", - "CLG Lagerhaus GmbH & Co. KG", - "Covestro Intellectual Property GmbH & Co. KG", - "BRENNTAG GmbH", - "Brenntag SE", - "BroadNet Deutschland GmbH", - "BMW M GmbH Gesellschaft für individuelle Automobile", - "BürgerEnergiegenossenschaft EnBW-City eG", - "CM Komplementär 03-020 GmbH & Co. KG", - "Covestro AG", - "Bayer Vermögensverwaltung GmbH", - "Bayern-Park Freizeitparadies GmbH", - "Bayern Treuhand Aktiengesellschaft Wirtschaftsprüfungsgesellschaft", - "BAY Handels-GmbH", - "BayWa r.e. Green Energy Products GmbH", - "Behr-Hella Thermocontrol GmbH", - "BENEO Biodivis Holding GmbH", - "Betek GmbH & Co. KG", - "Bilstein & Siekermann GmbH + Co. KG", - "Birken-Apotheke Marlis Lau e.K.", - "BizLink Robotic Solutions Germany GmbH", - "BlackForxx GmbH", - "BMW Anlagen Verwaltungs GmbH", - "Brüderl Projekt GmbH & Co. KG", - "callmobile GmbH", - "Brenntag European Services GmbH & Co. KG", - "Brüderl Projekt Bad Endorf GmbH & Co. KG", - "Findus Metropol GmbH", - "CECONOMY Retail GmbH", - "CheMondis GmbH", - "Club METROPOLA GmbH", - "Bayern-Park KG", - "Bayern Innovativ - Bayerische Gesellschaft für Innovation und Wissenstransfer mbH", - "Bayer Trauringe GmbH", - "Bayern-Markt Veranstaltungs GmbH", - "Bayer & Raach GmbH", - "Bayer Reitsport GmbH", - "Bayer Textil und Marketing GmbH", - "Bay Logistik GmbH + Co. KG", - "BayWa Finanzservice GmbH", - "BayWa r.e. Windpark Arlena GmbH", - "BCA Beteiligungs GmbH", - "Betreibergesellschaft Verteilzentrum GmbH", - "Bücherstube Leonie Konertz Nachf. Helmut Krüger", - "CECONOMY Data GmbH", - "CECONOMY Digital GmbH", - "CCG DE GmbH", - "CM Komplementär 03-018 GmbH & Co. KG", - "Bayer und Preuss GmbH", - "BayWa EEH GmbH", - "BayWa r.e. Data Services GmbH", - "BF Germany GmbH", - "Bioenergie Harald Gramm Verwaltungs-GmbH", - "Bioenergie Merk UG (haftungsbeschränkt) & Co. KG", - "BMW Bank GmbH", - "BMW Fahrzeugtechnik GmbH", - "Bock GmbH", - "Brenntag Holding GmbH", - "BRENNTAG International Chemicals GmbH", - "Connected Retail GmbH", - "Bayern Tele GmbH Fernsehproduktion Bayerischer Zeitschriftenverlage", - "Bayer-Reisen GmbH", - "Bayer Vital GmbH", - "BAY-GmbH", - "Bay & Söhne Transport GmbH", - "BayWa Greentechpark Development GmbH", - "BayWa r.e. Rotor Service GmbH", - "BELETAGE Liegenschaften GmbH", - "Bellevue Bad Heilbrunn GmbH & Co. KG", - "BENEO-Palatinit GmbH", - "Beton - Bohr- u. Sägedienst Johann Schäffler e.K.", - "BGD Bodengesundheitsdienst Gesellschaft mit beschränkter Haftung", - "BMW Beteiligungs GmbH & Co. KG", - "Brenntag Beteiligungs GmbH", - "BRI - ON - Musik + Verlag Inhaberin Britta Onnen e.K.", - "Ceragon VV GmbH", - "Covestro First Real Estate GmbH", - "Covestro Intellectual Property Verwaltungs GmbH", - "Bayern PV GmbH", - "BAYERN-RALLYE Karussellbetrieb OHG", - "BAY Investment GmbH", - "BayWa Mobility Solutions GmbH", - "BFE Institut für Energie und Umwelt GmbH", - "BizLink Special Cables Germany GmbH", - "Bode Chemie GmbH", - "brüderl Projekt Amalienstraße GmbH & Co. KG", - "BuMa Gebäudeservice GmbH", - "CM Komplementär 03-019 GmbH & Co. KG", - "Bayer Verwaltung UG (haftungsbeschränkt)", - "Bay I GmbH", - "Bay Küchen Verwaltungs GmbH", - "BAY-Verwaltungs GmbH", - "BayWa r.e. Asset Verwaltungs GmbH", - "BayWa r.e. Solardächer II GmbH & Co. KG", - "BayWa r.e. Wind GmbH", - "BMVV Baumaschinen Vermietungs- und Vertriebs GmbH", - "bonnie boutique Hella Wolter", - "CMC Technologies GmbH & Co. KG", - "Cognis IP Management GmbH", - "Com On Network e.K.", - "Covestro Invest GmbH", - "Covestro Resins (Germany) GmbH", - "FOM / LEG Generalübernehmer GmbH & Co. KG", - "Bayer-Uphues GmbH", - "BayWa r.e. IPP Verwaltungs GmbH", - "BayWa r.e. Italia Assets GmbH", - "BayWa r.e. Offshore Wind GmbH", - "Berlinovo Wohnquartier GmbH", - "Bilfinger Corporate Insurance Management GmbH", - "BRAWO SYSTEMS GmbH", - "Brenntag Real Estate GmbH", - "Buchhandlung Winnemuth e.K. Inhaberin: Julia Erlen", - "CLAAS Nordostbayern GmbH & Co. KG", - "Cognis Holding GmbH", - "Covestro Procurement Services GmbH & Co. KG", - "Bayern Tourist GmbH (BTG) Gesellschaft für touristisches und gastgewerbliches Marketing in Bayern", - "Bayern Kapital GmbH", - "Bayer Versicherungsmakler GmbH", - "BAY-Schnellrestaurant GmbH & Co. KG", - "BayWa Obst Beteiligung GmbH", - "BayWa Obst GmbH & Co. KG", - "BayWa Venture GmbH", - "BCD Chemie GmbH", - "Bond-Laminates GmbH", - "BTS 18 Projekt GmbH", - "Chemiepark Bitterfeld-Wolfen GmbH", - "Bayern Treuhand International Auditing & Assurance GmbH Wirtschaftsprüfungsgesellschaft", - "Bayer + Raach Neue Energien GmbH & Co. KG", - "BAY GmbH Wirtschaftsprüfungsgesellschaft Rechtsanwaltsgesellschaft", - "BayWa Agrar Beteiligungs GmbH", - "BayWa Agrarhandel GmbH", - "BayWa Forderungsmanagement GmbH", - "BayWa Global Produce GmbH", - "BayWa Handels-Systeme-Service GmbH", - "BayWa Hochhaus Verwaltung GmbH", - "BayWa Pensionsverwaltung GmbH", - "BayWa r.e. EMEA IPP Holding GmbH", - "BayWa r.e. Rotor Service Vermögensverwaltungs GmbH", - "BayWa r.e. Solar Projects GmbH", - "BEKI-Beteiligungsgesellschaft mit beschränkter Haftung", - "BETOMAX systems GmbH & Co. KG", - "Bilfinger ISP Europe GmbH", - "BizLink Industry Germany GmbH", - "BREMER & LEGUIL Gesellschaft mit beschränkter Haftung", - "BTC Europe GmbH", - "Bucher Merk Process GmbH", - "Chemitra Gesellschaft mit beschränkter Haftung", - "CLAAS Main-Donau GmbH & Co.KG", - "Cronon GmbH", - "DATAGROUP Business Solutions GmbH", - "CropEnergies Beteiligungs GmbH", - "Fielmann AG & Co. Bad Cannstatt OHG", - "Daimler Truck AG", - "Deutsche Post DHL Facility Management Deutschland GmbH", - "CSB Christian Schäffler Bauingenieurdienstleistungs GmbH", - "Deffland & Merck GmbH", - "Delivery Hero Kitchens Holding GmbH", - "Deutsche Post Customer Service Center GmbH", - "Deutsche Post E-POST Solutions GmbH", - "Deutsche Wohnen Berlin 5 GmbH", - "Deutsche Wohnen Berlin I GmbH", - "DHL Express Customer Service GmbH", - "DHL Freight Germany Holding GmbH", - "DHL Global Forwarding Management GmbH", - "DMG MORI Academy GmbH", - "CropEnergies Bioethanol GmbH", - "DEFAG Beteiligungsverwaltungs GmbH I.", - "Delivery Hero Local Verwaltungs GmbH", - "Dessauer Schaltschrank- und Gehäusetechnik GmbH", - "Deutsche Post Adress Beteiligungsgesellschaft mbH", - "Deutsche Post Adress GmbH & Co. KG", - "Deutsche Post Immobilien GmbH", - "Deutsches Rotes Kreuz Leipzig-Land Wohnen und Service gemeinnützige GmbH", - "DeWoBa Deutsche Wohn Bau eG", - "DHL Express Germany GmbH", - "Deutsche Baumanagement GmbH", - "Deutsche Post Expansion GmbH", - "Deutsche Post Pensionsfonds AG", - "Deutsches Rotes Kreuz Rostock Wohnen und Pflege gemeinnützige GmbH", - "Deutsche Wohnen Reisholz GmbH", - "Fielmann AG & Co. Buer OHG", - "Deutsche Wohnen SE", - "Deutsche WohnInvest GmbH", - "DFI Verwaltungs GmbH", - "DHL Data & Analytics GmbH", - "DHL Freight GmbH", - "DHL Global Forwarding GmbH", - "DHL Supply Chain VAS GmbH", - "DMG MORI Bielefeld Hilden GmbH", - "Deutsche Post Fleet GmbH", - "Deutsches Rotes Kreuz Wohnen, Pflege und Service im Muldental GmbH", - "Deutsche Wohnen Management GmbH", - "DHL Sorting Center GmbH", - "DA Jupiter Wohnanlage GmbH", - "DHL Supply Chain Management GmbH", - "Danzas Deutschland Holding GmbH", - "Delivery Hero (Pakistan) UG (haftungsbeschränkt) & Co. KG", - "DHL Hub Leipzig GmbH", - "DEM Merck Holding UG (haftungsbeschränkt)", - "Deutsche Post InHaus Services GmbH", - "Deutsche Post Investments GmbH", - "Deutsche Wohnen Multimedia Netz GmbH", - "DHL Solutions GmbH", - "Daimler Vermögens- und Beteiligungsgesellschaft mbH", - "Cross Match Technologies GmbH", - "Delivery Hero HF Kitchens GmbH", - "DC-Datacenter-Assets GmbH", - "Delivery Hero (Philippines) UG (haftungsbeschränkt) & Co. KG", - "Deutsche Annington Holdings Fünf GmbH", - "Deutsche Post Adress Geschäftsführungs GmbH", - "Deutsche Post Assekuranz Vermittlungs GmbH", - "Deutsche Post DHL Real Estate Deutschland GmbH", - "Deutsche Post IT Services GmbH", - "Deutsche Post Shop Hannover GmbH", - "Deutsche Post Verwaltungs Objekt GmbH", - "DHL FoodLogistics GmbH", - "Deutsches Rotes Kreuz - Kreisverband Stade - Wohn- und Langzeiteinrichtungen gemeinnützige GmbH", - "Deutsches Rotes Kreuz Leben und Wohnen Gütersloh GmbH", - "Delivery Hero (India) UG (haftungsbeschränkt) & Co. KG", - "Diermeier Energie GmbH", - "DEFAG Beteiligungsverwaltungs GmbH III", - "Deutsche Bau- und Siedlungs-Gesellschaft mit beschränkter Haftung", - "Deutsche Post Shop München GmbH", - "DHL Paket GmbH", - "DMG MORI Global Service GmbH", - "Deutsche Post Beteiligungen Holding GmbH", - "Deutsche Post DHL Corporate Real Estate Management GmbH & Co. Objekt Weißenhorn KG", - "Deutsche Wohnen Berlin X GmbH", - "Deutsche Wohnen Berlin XV GmbH", - "Deutsche Wohnen Kundenservice GmbH", - "Deutsche Wohnen Zweite Fondsbeteiligungs GmbH", - "Deutsche Wohn-Inkasso GmbH", - "DHL 2-Mann-Handling GmbH", - "DMG MORI Ultrasonic Lasertec GmbH", - "detailM GmbH", - "Deutsche Post Pensions-Treuhand GmbH & Co. KG", - "Deutsche Wohnen Asset Immobilien GmbH", - "Deutsche Wohnen Care SE", - "Deutsche Wohnen Immobilien Management GmbH", - "DHL Global Event Logistics GmbH", - "DHL International GmbH", - "DMG MORI Vertriebs und Service GmbH", - "Deutsche Post DHL Express Holding GmbH", - "Deutsche Wohnen Berlin 7 GmbH", - "Deutsche Wohnen Berlin III GmbH", - "Deutsche Wohnen Beteiligungsverwaltungs GmbH & Co. KG", - "Deutsche Wohnen Corporate Real Estate GmbH", - "Deutsche Wohnen Direkt Immobilien GmbH", - "Deutsche Wohnen Dresden I GmbH", - "DHL Airways GmbH", - "DHL Consulting GmbH", - "Deutsche Wohnen Fondsbeteiligungs GmbH", - "DHL Automotive GmbH", - "DMG MORI Deutschland GmbH", - "Docter Optics SE", - "Delivery Hero Austria GmbH", - "Delivery Hero Stores Holding GmbH", - "Der neue Stöckach GmbH & Co KG", - "Deutsche Post DHL Beteiligungen GmbH", - "Deutsche Post Grundstücks-Vermietungsgesellschaft beta mbH & Co. Objekt Leipzig KG", - "Deutsche Post Transport GmbH", - "Deutsche Wohnen Berlin XIII GmbH", - "Deutsche Wohnen Berlin XVIII GmbH", - "Deutsche Wohnen Management- und Servicegesellschaft mbH", - "Deutsche Wohnen Technology GmbH", - "Fielmann AG & Co. Dresden Neustadt OHG", - "DHL Home Delivery GmbH", - "DIAGRAMMATIC DESIGNS GmbH", - "DER Reisecenter TUI GmbH", - "Deutsche Post AG", - "Deutsche Post Mobility GmbH", - "Deutsche Post Zahlungsdienste GmbH", - "Deutsche Wohnen Berlin II GmbH", - "Deutsche Wohnen Dresden II GmbH", - "Deutsche Wohn- und Gewerbebau KG", - "Delvag Versicherungs-AG", - "Deffland & Merck Immobilien GmbH", - "DAS GRAMM e.K.", - "Deutsche Post Dialog Solutions GmbH", - "Deutsches Rotes Kreuz Nienburg pflegen & wohnen gGmbH", - "EnBW Offshore 2 GmbH", - "DHL Supply Chain (Leipzig) GmbH", - "DMG MORI AKTIENGESELLSCHAFT", - "DMG MORI Global Marketing GmbH", - "Delivery Hero SE", - "Deutsche ibw Wohn- und Hausbaugesellschaft mbH", - "Deutsche Lufthansa Aktiengesellschaft", - "Deutsche Post Altersvorsorge Sicherung e.V. & Co. Objekt Gronau KG", - "Deutsche Wohnen Construction and Facilities GmbH", - "DHL Supply Chain Operations GmbH", - "DMG MORI Frankfurt GmbH", - "Daimler Truck Vermögens- und Beteiligungsgesellschaft mbH", - "Dematic Holdings GmbH", - "Deutsche Lufthansa Unterstützungswerk Gesellschaft mit beschränkter Haftung", - "Deutsche Post DHL Research and Innovation GmbH", - "Henkel Haus- und Grundstücksverwaltung GmbH & Co. KG", - "Deutsches Rotes Kreuz Wohnen im Alter Zittau GmbH", - "Deutsche Wohnen Berlin 6 GmbH", - "Deutsche Wohnen Berlin XVI GmbH", - "DHL Automotive Offenau GmbH", - "DHL Express Network Management GmbH", - "DMG MORI Finance GmbH", - "deSter GmbH", - "Deutsche Post Direkt GmbH", - "Deutsche Post Shop Essen GmbH", - "Deutsche Wohnen Berlin XII GmbH", - "Deutsche Wohnen Beteiligungen Immobilien GmbH", - "EDITION METRO e.K.", - "Dräger Interservices GmbH", - "Dräger Safety Verwaltungs AG", - "E & A Internationale Explorations- und Produktions-GmbH", - "Dr. O.K. Wack Chemie GmbH", - "E.ON Bioerdgas GmbH", - "Dräger Medical ANSY GmbH", - "Eisenwerk Weilbach Gesellschaft mit beschränkter Haftung", - "Elring Klinger Motortechnik GmbH", - "EnBW France GmbH", - "EnBW Kraftwerk Lippendorf Beteiligungsgesellschaft mbH", - "EnBW Offshore 3 GmbH", - "EnBW Offshore 7 GmbH", - "EnBW Omega 125. Verwaltungsgesellschaft mbH", - "EnBW Omega 132. Verwaltungsgesellschaft mbH", - "EnBW Omega 139. Verwaltungsgesellschaft mbH", - "EnBW Omega 141. Verwaltungsgesellschaft mbH", - "EnBW Omega Neunundachtzigste Verwaltungsgesellschaft mbH", - "EnBW REG Beteiligungsgesellschaft mbH", - "EnBW Solarpark Weesow-Willmersdorf GmbH", - "EnPV GmbH", - "E.ON Business Solutions Deutschland GmbH", - "E.ON Energie 38. Beteiligungs-GmbH", - "Due Leoni GmbH", - "EnBW He Dreiht GmbH & Co. KG", - "ecowo GmbH", - "ElringKlinger AG", - "ElringKlinger Logistic Service GmbH", - "E. Merck KG", - "EnBW Bürgerbeteiligung Wind 1 GmbH", - "EnBW Central and Eastern Europe Holding GmbH", - "EnBW Kommunale Beteiligungen GmbH", - "EnBW Ostwürttemberg DonauRies Aktiengesellschaft", - "EnBW WindInvest Management GmbH", - "EnBW Wind Onshore 1 GmbH", - "E.ON 46. Verwaltungs GmbH", - "E.ON 47. Verwaltungs GmbH", - "E.ON 54. Verwaltungs GmbH", - "E.ON Bayern Verwaltungs AG", - "Henkel + Bast Inh. Sabine Bast e.K.", - "EnBW Real Estate GmbH", - "EnBW Senergi Immobilien GmbH", - "EnBW Solarpark Lindenau GmbH & Co. KG", - "EnBW VersicherungsVermittlung GmbH", - "EnBW Windkraftprojekte GmbH", - "EnBW Übertragungsnetz Immobilien Verwaltungsgesellschaft mbH", - "E.DIS AG", - "Elektro Haustechnik Schäffler GmbH", - "EnBW Biomasse GmbH", - "EnBW Immobilienbeteiligungen GmbH", - "EnBW Netze BW Beteiligungsgesellschaft mbH", - "EnBW Offshore 4 GmbH", - "EnBW Offshore 5 GmbH", - "EnBW Offshore Service GmbH", - "EnBW Omega 124. Verwaltungsgesellschaft mbH", - "EnBW Omega 134. Verwaltungsgesellschaft mbH", - "EnBW Omega 140. Verwaltungsgesellschaft mbH", - "EnBW Smart Meter GmbH", - "EnBW Solarpark Gickelfeld GmbH & Co. KG", - "E.ON 51. Verwaltungs GmbH", - "E.ON 55. Verwaltungs GmbH", - "E.ON Beteiligungsholding GmbH", - "Dr. Schäffler-Expert GmbH", - "Dräger Gebäude und Service GmbH", - "DWRE Halle GmbH", - "E.A. S a r t o r i u s Verwaltungs GmbH", - "EnBW Baltic 1 Verwaltungsgesellschaft mbH", - "EnBW City GmbH & Co. KG", - "EnBW New Ventures GmbH", - "EnBW Omega 145. Verwaltungsgesellschaft mbH", - "EnBW Solarpark Gückelhirn GmbH & Co. KG", - "E.ON 52.Verwaltungs GmbH", - "E.ON Drive Infrastructure Germany GmbH", - "Henkel Besitz GmbH & Co. KG", - "Dräger TGM Gesellschaft mit beschränkter Haftung", - "EnBW Mainfrankenpark GmbH", - "EnBW Omega 123. Verwaltungsgesellschaft mbH", - "EnBW Solarpark Birkenfeld GmbH", - "EnBW Solarpark Gottesgabe GmbH", - "EnBW Solarpark Sonnewalde GmbH & Co. KG", - "EnBW Wind Onshore Portfolio 2019 GmbH", - "Energieversorgung Gaildorf OHG der EnBW Kommunale Beteiligungen GmbH und der NWS REG Beteiligungsgesellschaft mbH", - "ENEXIO Germany GmbH", - "E.ON Energie AG", - "DR. PAUL, HARTMANN & COLL. GmbH Wirtschaftsprüfungsgesellschaft Steuerberatungsgesellschaft", - "EDGITAL GmbH", - "Einhorn-Apotheke Hella Dierking", - "EnBW Grundstücksverwaltung Rheinhafen GmbH", - "DRAWIN Vertriebs-GmbH", - "Drägerwerk Verwaltungs AG", - "Josef Schäffler Elektrizitätswerk GmbH & Co. KG", - "DWRE Leipzig GmbH", - "Dräger Medical International GmbH", - "EBB HochTief UG (haftungsbeschränkt)", - "EBV Gesellschaft mit beschränkter Haftung", - "Eisengießerei Dinklage GmbH", - "Emanuel-Merck-Vermögens-KG", - "EnBW Baltic 2 Management GmbH", - "EnBW International Markets GmbH", - "EnBW Neue Energien GmbH", - "EnBW Onshore Portfolio GmbH", - "EnBW Solar GmbH", - "EnBW Telekommunikation GmbH", - "S. Görig Söhne e.K.", - "EnBW Windpark Buchholz III GmbH", - "energiehoch3 GmbH", - "E.ON 53. Verwaltungs GmbH", - "eltherm production GmbH", - "EnBW Albatros Management GmbH", - "EnBW Renewables International GmbH", - "EnBW Solarpark Kroppen GmbH & Co. KG", - "EnBW Wind Onshore Verwaltungsgesellschaft mbH", - "Energieversorgung Strohgäu Verwaltungs GmbH", - "Engel-Apotheke Dr. Emanuel Merck Inhaberin Renate Koehler e.K.", - "EnPulse Ventures GmbH", - "E.ON 9. Verwaltungs GmbH", - "E.ON Accounting Solutions GmbH", - "E.ON Beteiligungen GmbH", - "EnBW Contracting Service GmbH", - "E.ON Digital Technology GmbH", - "E.ON Drive Infrastructure GmbH", - "EnBW Omega 144. Verwaltungsgesellschaft mbH", - "EnBW Solarpark Lauenhagen GmbH", - "ElringKlinger Kunststofftechnik GmbH", - "EMPA Hochtief Elektroinstallation UG (haftungsbeschränkt)", - "EnBW Baltic Windpark Verwaltungsgesellschaft mbH", - "EnBW Contracting GmbH", - "EnBW Cyber Security GmbH", - "EnBW He Dreiht Management GmbH", - "EnBW Hohe See GmbH & Co. KG", - "EnBW Nachhaltige Quartiere GmbH", - "EnBW Omega 121. Verwaltungsgesellschaft mbH", - "EnBW Vertriebsbeteiligungen GmbH", - "EnBW Übertragungsnetz Immobiliengesellschaft mbH & Co. KG", - "E.ON 57. Verwaltungs GmbH", - "E.ON Business Solutions GmbH", - "Karl Simon GmbH & Co. KG", - "E.ON Drive GmbH", - "EnBW Biogas GmbH", - "EnBW Offshore 6 GmbH", - "EnBW Omega 107. Verwaltungsgesellschaft mbH", - "EnBW Omega 122. Verwaltungsgesellschaft mbH", - "EnBW Rückbauservice GmbH", - "EnBW WindInvest GmbH & Co. KG", - "EnBW Windpark Aalen-Waldhausen GmbH", - "Energy Air GmbH", - "E.ON 11. Verwaltungs GmbH", - "E.ON 58. Verwaltungs GmbH", - "E.ON Energie Deutschland GmbH", - "Dräger Medical Deutschland GmbH", - "Drägerwerk AG & Co. KGaA", - "eltherm GmbH", - "EnBW Hohe See Management GmbH", - "EnBW Omega 133. Verwaltungsgesellschaft mbH", - "EnBW Energie Baden-Württemberg AG", - "EnBW Baltic 1 GmbH & Co. KG", - "EnBW Energy Factory GmbH", - "EnBW mobility+ AG & Co. KG", - "EnBW Betriebs- und Servicegesellschaft mbH", - "EnBW Omega 108. Verwaltungsgesellschaft mbH", - "EnBW Solar Verwaltungsgesellschaft mbH", - "EnBW SunInvest GmbH & Co. KG", - "EnBW Wind Onshore Instandhaltungs GmbH", - "Energie Sachsenheim Verwaltungs-GmbH", - "E.ON 45. Verwaltungs GmbH", - "EnBW Windpark Kleinliebringen GmbH", - "EnergieServicePlus GmbH", - "E.ON Country Hub Germany GmbH", - "Dr. Beckers Central Apotheke Roman Götz e.K.", - "Dräger Holding International GmbH", - "eBoD GmbH", - "Emanuel Merck GmbH", - "EMG EuroMarine Electronics GmbH", - "EnBW Baltic 2 GmbH & Co. KG", - "EnBW Solarpark Tuningen GmbH", - "EnBW Windpark Ober-Ramstadt GmbH", - "Energie Kirchheim unter Teck Verwaltungs-GmbH", - "EEA-Dr. Schäffler, Germany GmbH", - "Dr. Wack Holding GmbH & Co. KG", - "Elektro Grammer GmbH", - "EnBW Albatros GmbH & Co. KG", - "EnBW Bürgerbeteiligung Solar 1 GmbH", - "EnBW Kernkraft GmbH", - "EnBW Offshore 1 GmbH", - "EnBW Omega 126. Verwaltungsgesellschaft mbH", - "EnBW Solarpark Emmingen-Liptingen GmbH & Co. KG", - "EnBW Solarpark Groß Lübbenau GmbH & Co. KG", - "EnBW SunInvest Management GmbH", - "EnBW vernetzt Beteiligungsgesellschaft mbH", - "EnBW Windpark Prötzel GmbH", - "Dräger MSI GmbH", - "DWRE Dresden GmbH", - "DWRE Hennigsdorf GmbH", - "Dörenhagen Windenergieanlagen GmbH & Co. KG", - "E. Merck Beteiligungen KG", - "EnBW Etzel Speicher GmbH", - "EnBW NAG-Beteiligungsgesellschaft mbH", - "EnBW Perspektiven GmbH", - "EnBW Solarpark Göritz GmbH & Co. KG", - "EnBW Solarpark Ingoldingen GmbH", - "EnBW Urbane Infrastruktur GmbH", - "EnBW Windpark Hemme GmbH", - "E.ON Energie Deutschland Holding GmbH", - "E.ON Hydrogen GmbH", - "E.ON Energy Markets GmbH", - "E.ON Inhouse Consulting GmbH", - "E.ON Grund&Boden GmbH & Co. KG", - "E.ON Finanzanlagen GmbH", - "E.ON Energy Projects GmbH", - "E.ON Solarpark 7 GmbH & Co. KG", - "E.ON Solarpark 5 GmbH & Co. KG", - "EVGA Grundstücks- und Gebäudemanagement GmbH & Co. KG", - "Evonik Operations GmbH", - "Fielmann AG & Co. Brackwede KG", - "Fielmann AG & Co Bramfeld KG", - "Fielmann AG & Co. Centrum OHG", - "Fielmann AG & Co. Elberfeld OHG", - "Fielmann AG & Co. Hiltrup OHG", - "Fielmann AG & Co. Ochsenzoll OHG", - "Fielmann AG & Co. Rahlstedt OHG", - "Fielmann AG & Co. Rethelstraße OHG", - "Frank Schäffler e. K.", - "Eurowings Technik GmbH", - "NWS Grundstücksmanagement GmbH & Co. KG", - "freenet Direkt GmbH", - "FS-BF GmbH & Co. KG", - "E.ON Solar GmbH", - "E.ON Solarpark 3 GmbH & Co. KG", - "Eurowings GmbH", - "Evonik Industries AG", - "Fashion Circle GmbH", - "Fielmann AG & Co. City-Arkaden OHG", - "Fielmann AG & Co. Dresden Altstadt KG", - "Fielmann AG & Co. Leipziger Straße OHG", - "Fielmann AG & Co. Mülheim OHG", - "Fielmann AG & Co. Oberkassel OHG", - "fielmann Fielmann GmbH", - "FraSec Services GmbH", - "Freiberger Internationale Beteiligungs GmbH", - "E.ON Gas Mobil GmbH", - "E.ON Energy Solutions GmbH", - "E.ON Insurance Services GmbH", - "Erste WohnServicePlus GmbH", - "Eurafrica Baugesellschaft mit beschränkter Haftung", - "Erste End of Runway Development Leipzig GmbH", - "Evonik Catering Services GmbH", - "Evonik Digital GmbH", - "Evonik Risk and Insurance Services GmbH", - "Fielmann AG & Co", - "Fielmann AG & Co. Eimsbüttel OHG", - "Fielmann AG & Co. Venloer Straße OHG", - "Fielmann AG & Co. Wandsbek OHG", - "Fielmann Finanzservice GmbH", - "FIMMUS Grundstücks-Vermietungsgesellschaft mbH", - "FläktGroup Deutschland GmbH", - "Forster GmbH", - "Fraport Casa Commercial GmbH", - "FRA - Vorfeldkontrolle GmbH", - "freenet Datenkommunikations GmbH", - "freenet Shopping GmbH", - "GALERIA Holding GmbH", - "E.ON Solarpark 11 GmbH & Co. KG", - "E.ON US Holding GmbH", - "Eumatic GmbH Kunststoffverarbeitung", - "Facilma Grundbesitzmanagement und -service GmbH & Co. Besitz KG", - "Fielmann AG & Co. Essen-Steele OHG", - "Fielmann AG & Co. Höchst OHG", - "Fielmann AG & Co. Jahnplatz OHG", - "Fielmann AG & Co. OHG", - "Fielmann AG & Co. oHG Kalk", - "Fielmann AG & Co. Ottensen OHG", - "Fielmann AG & Co. Rheydt oHG:", - "Fortimo GmbH", - "Fraport Casa GmbH", - "freenet Shop GmbH", - "Gamma Unternehmensverwaltungs GmbH", - "E.ON Gruga Objektgesellschaft mbH & Co. KG", - "E.ON Pensionsfonds AG", - "E.ON Solarpark 9 GmbH & Co. KG", - "Epurex Films GmbH & Co. KG", - "EUROGREEN GmbH", - "Eurowings Aviation GmbH", - "Fielmann AG & Co. am Markt KG", - "Fielmann AG & Co. Paunsdorf-Center OHG", - "Fielmann AG & Co-Volksdorf OHG", - "Fontane Apotheke Klaus Kirchmeier e. K.", - "freenet DLS GmbH", - "Freiberger Lebensmittel GmbH", - "GEA Germany GmbH", - "E.ON Solarpark 4 GmbH & Co. KG", - "Evonik Venture Capital GmbH", - "European Air Transport Leipzig GmbH", - "Evonik IP GmbH", - "Ferrostaal Oil & Gas GmbH", - "Fichthorn GmbH & Co. KG", - "Fielmann AG & Co. oHG City-Galerie", - "Fielmann AG & Co. Othmarschen OHG", - "fielmann-optic Fielmann GmbH + Co.", - "Fraport AG Frankfurt Airport Services Worldwide", - "freenet.de GmbH", - "Gartenstadt Hotel Inhaberin Beate Becker e. K.", - "GEA Erste Kapitalbeteiligungen GmbH & Co. KG", - "GEA Group Aktiengesellschaft", - "E.ON Solarpark Gerdshagen GmbH & Co. KG", - "E.ON Vermögensverwaltungs GmbH", - "Eurowings Digital GmbH", - "EWE Go HOCHTIEF Ladepartner GmbH & Co. KG", - "Gate Gourmet Lounge GmbH", - "GEA Bischoff GmbH", - "GEA Diessel GmbH", - "E.ON Grund&Boden Beteiligungs GmbH", - "E.ON One GmbH", - "E.ON Pensionsfonds Holding GmbH", - "E.ON Ruhrgas Portfolio GmbH", - "E.ON Service GmbH", - "E.ON Solarpark 6 GmbH & Co. KG", - "E.ON Stiftung gGmbH", - "Ernst Feyerabend, Pächter: Dieter Grammer", - "Fahrzeugbau GmbH Geisa", - "Faro & Leoni UG (haftungsbeschränkt)", - "Fielmann AG & Co. Barbarossaplatz OHG", - "Fielmann AG & Co. Bonn-Bad Godesberg OHG", - "Fielmann AG & Co. im Alstertal-Einkaufszentrum OHG", - "Fielmann AG & Co. oHG Marktplatz-Center", - "fielmann Farmsen Fielmann GmbH & Co.", - "formart Immobilien GmbH", - "Frankfurter Siedlungsgesellschaft mbH (FSG)", - "Fraport Objekte 162 163 GmbH", - "Fraport Objekt Mönchhof GmbH", - "Fritz Schäffler GmbH & Co.", - "Kernkraftwerk Obrigheim GmbH (KWO)", - "freenet Cityline GmbH", - "freenet Logistik GmbH", - "Frye Ströer Legehennen KG", - "GEA Food Solutions Germany GmbH", - "E.ON Fünfundzwanzigste Verwaltungs GmbH", - "E.ON Grid Solutions GmbH", - "E.ON Iberia Holding GmbH", - "E.ON Group Innovation GmbH", - "E.ON International GmbH", - "E.ON Ruhrgas GPA GmbH", - "E.ON Solarpark 12 GmbH & Co. KG", - "E.ON Verwaltungs GmbH", - "Esso Station Hochhaus Dipl.-Ing. Andreas Hochhaus e.K.", - "Evonik Real Estate GmbH & Co. KG", - "Faragon V V GmbH", - "FarmFacts GmbH", - "FarmFacts Holding GmbH", - "FUCHS Finanzservice GmbH", - "E.ON Energie Dialog GmbH", - "E.ON Finanzholding Beteiligungs-GmbH", - "Evertaste GmbH", - "Evonik Logistics Services GmbH", - "Fielmann AG & Co. Barmen OHG", - "E.ON RAG-Beteiligungsgesellschaft mbH", - "Fielmann AG & Co. im Centrum KG", - "Fielmann AG & Co. oHG im Centrum", - "Fielmann Augenoptik AG & Co. oHG", - "Fraport Real Estate Verwaltungs GmbH", - "FraSec Fraport Security Services GmbH", - "Füger Grundstücks- und Vermögensverwaltungs UG (haftungsbeschränkt) & Co. KG", - "Füger Verwaltungs UG (haftungsbeschränkt)", - "Gasnetzverwaltungsgesellschaft Schorndorf GmbH", - "E.ON Sechzehnte Verwaltungs GmbH", - "E.ON Perspekt GmbH", - "E.ON TowerCo GmbH", - "Exner Wäscherei, Reinigung e.K.", - "Fielmann AG & Co. oHG Lütten Klein", - "Fernwärme-Verbund Saar Gesellschaft mit beschränkter Haftung", - "Fielmann AG & Co. Derendorf OHG", - "Fielmann AG & Co. oHG Ludwigsplatz", - "Fielmann AG & Co. oHG Rhein-Center", - "Fielmann AG & Co. Pferdemarkt OHG", - "Fielmann AG & Co. Zentrum KG", - "Flughafen Frankfurt - Hahn GmbH", - "FMD - Facility Management Dienstleistungen GmbH", - "Fraport Real Estate 162 163 GmbH & Co. KG", - "Fraport Real Estate Mönchhof GmbH & Co. KG", - "FSB Flugplatz Beteiligungsgesellschaft mbH", - "FUCHS LUBRICANTS GERMANY GmbH", - "FUCHS PETROLUB SE", - "Gastauer Reisen GmbH", - "Gate Gourmet Objekt- und Verwaltungsgesellschaft mbH", - "GEA Brewery Systems GmbH", - "E.ON Finanzholding SE & Co. KG", - "E.ON Gruga Geschäftsführungsgesellschaft mbH", - "E.ON impulse GmbH", - "E.ON Portfolio Services GmbH", - "E.ON Real Estate GmbH", - "E.ON Solarpark 10 GmbH & Co. KG", - "E.ON Solarpark 8 GmbH & Co. KG", - "Evonik Functional Solutions GmbH", - "EW Discover GmbH", - "FCS Frankfurt Cargo Services GmbH", - "Fielmann AG & Co. Ebertplatz KG", - "Fielmann AG & Co. Klosterstraße OHG", - "Fielmann AG & Co. Oberhausen OHG", - "Fielmann AG & Co Rathaus OHG", - "Fielmann Augenoptik AG & Co. oHG Harburg-City", - "FIMMUS Grundstücks-Vermietungsgesellschaft mbH & Co. Objekt Lübeck KG", - "Fraport Ausbau Süd GmbH", - "Fraport Beteiligungsgesellschaft mbH", - "Fraport Brasil Holding GmbH", - "Fraport Immobilienservice- u.-entwicklungs GmbH &Co.KG", - "FraSec Flughafensicherheit GmbH", - "Fuels Services GmbH", - "Garben-Apotheke e.K.", - "GEA AWP GmbH", - "E.ON Portfolio Solutions GmbH", - "Fielmann AG & Co Wattenscheid KG", - "Fielmann Augenoptik AG & Co.", - "E.ON SE", - "E.ON Verwaltungs AG Nr. 1", - "Evonik Dahlenburg GmbH", - "Evonik Materials GmbH", - "Fachklinik für Anästhesie und Intensivmedizin Vahrenwald GmbH", - "Field Service Deutschland FSD GmbH", - "Fielmann AG & Co. Bergedorf KG", - "Fielmann AG & Co. oHG Allee-Center", - "Fielmann Aktiengesellschaft", - "FIRST Travel GmbH", - "GEA Farm Technologies GmbH", - "E.ON Solarpark 13 GmbH & Co. KG", - "E.ON Solarpark Diepoldshofen GmbH & Co. KG", - "E.ON Solutions GmbH", - "Eragon VV GmbH", - "Erste Logistik Entwicklungsgesellschaft MG GmbH", - "Evonik Beteiligungs-GmbH", - "EWE HOCHTIEF Ladepartner Verwaltungs-GmbH", - "Fielmann AG & Co. Bornheim KG", - "Fielmann AG & Co. Essen-Rüttenscheid OHG", - "GBS Gesellschaft für Unternehmensbeteiligungen mbH", - "E.ON Gastronomie GmbH", - "Everschop-Apotheke Inhaberin Hella Behm e.Kfr.", - "Fielmann AG & Co. Hamborn OHG", - "Fielmann AG & Co. Roßmarkt OHG", - "Fielmann AG & Co. Westliche Kaiserstraße KG", - "Finanzen im Ganzen Ströer UG (haftungsbeschränkt)", - "freenet Energy GmbH", - "Freiberger Holding GmbH", - "Freiberger Osterweddingen GmbH", - "E.ON Rhein-Ruhr Werke GmbH", - "Ersatzteilversorgung historischer BMW Kraftfahrzeuge GmbH", - "E WIE EINFACH GmbH", - "Fielmann AG & Co. An der Rothenburg OHG", - "Fielmann AG & Co. Billstedt KG", - "Fielmann AG & Co. Chorweiler KG", - "Fielmann AG & Co. oHG Hindenburgstraße", - "Fielmann Augenoptik GmbH & Co. Luxemburg KG", - "fielmann INTER-OPTIK GmbH & Co.", - "FraGround Fraport Ground Handling Professionals GmbH", - "Fraport Facility Services GmbH", - "Fraport Passenger Services GmbH", - "Group Engine Management GmbH", - "Grundstücksgesellschaft DuHa mbH", - "freenet AG", - "GASCADE Gastransport GmbH", - "GELSENWASSER Entwicklungsgesellschaft Dresden mbH", - "GEA Mechanical Equipment GmbH", - "GELSENWASSER Industrieservice Schkopau GmbH", - "GELSENWASSER Polska GmbH", - "Gesellschaft für nukleares Reststoffrecycling mbH", - "GKF Vermögensverwaltungsgesellschaft mbH", - "Goldhand Lebensmittel- und Verbrauchsgüter-Vertriebsgesellschaft mit beschränkter Haftung", - "Grammer Deutschland GmbH", - "GRAMME - REVIT GmbH", - "GVMS Grundstücksverwaltung Service GmbH & Co. KG", - "Wohnen am Lerchenberg GmbH & Co. KG", - "Hamburger Gesellschaft für Flughafenanlagen mit beschränkter Haftung", - "Haus Aurelius Immobilien Verwaltungs GmbH", - "Hella Aglaia Mobile Vision GmbH", - "Hella GmbH", - "HELLA GmbH & Co. KGaA", - "Hella Gutmann Holding GmbH", - "Hella Innenleuchten-Systeme GmbH", - "Hella Krause e.K.", - "Henkel-Bau GmbH", - "Henkel Erste Holding GmbH", - "Henkel oHG, Formular-Verlag Inhaber Marc Henkel e.K.", - "Henkel & Seickert Immobilien GmbH & Co. KG", - "HENKEL SEMAtronic UG (haftungsbeschränkt)", - "henkel´s Verwaltungs GmbH", - "Henkel vorm. Kleinz Heizung & Sanitär e. K.", - "GEA Westfalia Separator Group GmbH", - "GELSENWASSER 14. Beteiligungs-GmbH", - "GEA Group Services GmbH", - "GEA Messo GmbH", - "Henkel & Rühaak Steuerberatungsgesellschaft PartmbB", - "GEA TDS GmbH", - "GELSENWASSER Dresden Gesellschaft mit beschränkter Haftung", - "GeWo Gesellschaft für Wohnungs- und Städtebau mbH", - "GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Mönchengladbach ZV II KG", - "Gladbau Baubetreuungs- und Verwaltungs-Gesellschaft mbH", - "GRAMMER Immobilien Technik GmbH", - "Haus Aurelius - SZB Aachen Immobilien GmbH & Co. KG", - "HBPO GmbH", - "Hella Krauß Inhaber Thomas Krauß", - "Hella Stiftung GmbH", - "Henkel Architektur Planungs- und Projektentwicklungsgesellschaft mbH", - "Henkel Bauelemente GmbH", - "Henkel Beauty & IB Holding GmbH", - "Henkel Beratung und Beteiligungen UG (haftungsbeschränkt)", - "Henkel & Geflitter GmbH", - "Henkel Industrial Services GmbH", - "Henkel Klinikservice GmbH", - "Henkel License GmbH", - "HENKEL + ROTH GmbH", - "Henkel Umform- und Fügetechnik GmbH", - "GELSENWASSER Stadtwerkedienstleistungs-GmbH", - "Gerresheim Festausstattung GmbH", - "Gramm Technik GmbH", - "Gramm Verwaltung GmbH", - "Hapag-Lloyd Schiffsvermietungsgesellschaft mbH", - "Heinrich Schäfermeyer GmbH", - "Heizkraftwerk Stuttgart GmbH", - "Hella Geschäftsführungsgesellschaft mbH", - "Hella Gutmann Anlagenvermietung GmbH", - "Henkel Dental - Labor Inh. Barbara Henkel e.K.", - "Henkel Entsorgung GmbH", - "Henkel Gesellschaft mit beschränkter Haftung", - "Henkel Industrieconsulting UG (haftungsbeschränkt)", - "Henkel IP Management and IC Services GmbH", - "Henkel & Scheel Klinkerbau GmbH", - "GELSENWASSER 6. Beteiligungs-GmbH", - "LANXESS Deutschland GmbH", - "Gemeindewerke Brühl Verwaltungs-GmbH", - "Going On !!! Mediaservices Inh. Mirko Heintz e.K.", - "Grammers S UG (haftungsbeschränkt)", - "Guano-Werke GmbH & Co. KG", - "Henkel Parts GmbH", - "Henkel Vermögensverwaltungs GmbH", - "Henkel Wasch- und Reinigungsmittel GmbH", - "GELSENWASSER 11. Beteiligungs-GmbH", - "GELSENWASSER Service GmbH", - "GGR Wohnparks Kastanienallee GmbH", - "Gramm.Architektur GmbH", - "GRAMMER Aktiengesellschaft", - "GRAMME-REVIT INTERNATIONAL GmbH", - "GRAMMER Interior Components GmbH", - "Gramm Fertigungstechnik GmbH", - "Gramm Profiltechnik GmbH", - "GSW Corona GmbH", - "hairdesign by Hella Ballin GmbH", - "Hapag-Lloyd Aktiengesellschaft", - "Hapag-Lloyd Grundstücksholding GmbH", - "HASA GmbH", - "Hella Richert Vermögensverwaltungs-GmbH", - "Hella & Tom Media GmbH", - "Helmut Rübsamen GmbH & Co. KG, Metalldrückerei-Umformtechnik", - "Henkel Assekuranz Makler UG (haftungsbeschränkt)", - "Henkel GmbH Formular-Verlag", - "Henkel Investment GmbH", - "Henkel Management AG", - "Henkel Steuerberatungsgesellschaft mbH", - "Henkel-Versand Karl-Heinz Henkel e.K.", - "GEA Refrigeration Germany GmbH", - "GELSENWASSER 13. Beteiligungs-GmbH", - "GELSENWASSER 9. Beteiligungs-GmbH", - "GELSENWASSER Energienetze 9. Beteiligungsgesellschaft mbH", - "GELSENWASSER Magdeburg GmbH", - "Geragon VV GmbH", - "Gramm Energie GmbH", - "GRAMOLERA Grundstücksvermietungsgesellschaft Objekt Ticino mbH", - "Hella Priem Beflockungs-GmbH", - "Henkel Bedachung GmbH", - "Henkel Innovation Investments GmbH", - "Gelsenberg GmbH & Co. KG", - "GELSENWASSER Beteiligungen SE", - "GRAMMER Automotive Metall GmbH", - "GRAMMER System GmbH", - "Grundstücksgesellschaft Karower Damm mbH", - "Haus Aurelius SZB Aachen Alten- und Pflegeheim GmbH", - "Heine Resistors GmbH", - "Hella Koch Mineralöltransporte GmbH", - "Henkel-Augenoptik Gesellschaft mit beschränkter Haftung", - "Henkel Familien KG", - "Henkel & Partner mbB Patentanwaltskanzlei", - "Henkel Verwaltungs GmbH", - "Henkel Zehnte Verwaltungsgesellschaft mbH", - "GKF Vermögensverwaltungsgesellschaft mbH & Co. Gewerbegrundstücke KG", - "GEHAG Erste Beteiligungs GmbH", - "GEA Lyophil GmbH", - "GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Saar-Grund KG", - "Gramm medical healthcare GmbH", - "Gramm Oberflächentechnisches Institut Bodensee GmbH", - "Gramm Spenglerei GmbH", - "Hanspeter Grassl KG", - "Hella Corporate Center GmbH", - "Hella Matthiesen Kunststoffspritzguß Inh. Hans Georg Berger e.K.", - "Henkel Beteiligungs- und Verwaltungs-GmbH", - "Henkel Holding KGaA & Co. KG", - "Henkel Holz- und Massivbau GmbH", - "HENKEL med. PERSONAL Düsseldorf GmbH", - "Henkel & Nilles UG (haftungsbeschränkt) & Co. KG", - "Henkel-Tuning GmbH", - "Henkel Vermietungs GmbH", - "GEA Real Estate GmbH", - "Gesellschaft zur Förderung der Lackkunst mbH", - "GEHE Pharma Handel GmbH", - "GEHAG Grundbesitz III GmbH", - "GEHAG Zweite Beteiligungs GmbH", - "GELSENWASSER 12. Beteiligungs-GmbH", - "Georg Schäffler GmbH", - "GGR Wohnparks Süd Leipziger Tor GmbH", - "GRAMMER Immobilien Verwaltung GmbH", - "Grammer Solar Photovoltaik GmbH", - "Gramm Geschäftsführung GmbH", - "Gramm Spiegel+Licht GmbH", - "Gramm Verwaltungs GmbH", - "Kabel Deutschland Holding AG", - "Gravis - Computervertriebsgesellschaft mbH", - "G. Stranzinger Bauprojekt GmbH & Co. KG", - "Hans Joachim Jetschke Industriefahrzeuge (GmbH & Co.) KG", - "HARTMANN Venture GmbH", - "Hella Distribution GmbH", - "Henkel AG & Co. KGaA", - "HENKEL Anlagen- und Prozesstechnik GmbH", - "Henkel Eigentümer Dienste GmbH", - "Henkel Immo GmbH", - "Henkel Verwaltungs UG (haftungsbeschränkt)", - "GEA Wiegand GmbH", - "GELSENWASSER 3. Projektbeteiligungsgesellschaft mbH", - "GELSENWASSER Energienetze GmbH", - "Gemeinnützige Eisenbahn-Wohnungsbau-Gesellschaft mit beschränkter Haftung Wuppertal", - "Gerresheimer Wertheim GmbH", - "GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Hamm KG", - "Grammer Railway Interior GmbH", - "gramm.genau GmbH", - "Gramm, Lins & Partner Patent- und Rechtsanwälte PartGmbB", - "Grünau Illertissen GmbH", - "GSW Grundvermögens- und Vertriebsgesellschaft mbH", - "Hansaport Hafenbetriebsgesellschaft mit beschränkter Haftung", - "Heinzelmann Mineralöle Inhaber Wolfgang Sartorius e.K.", - "HELLA VON SINNEN + CORNELIA SCHEEL Komikzentrum GmbH", - "Hella Werkzeug Technologiezentrum GmbH", - "Henkel Beiz- und Elektropoliertechnik GmbH & Co. KG", - "Henkel Elektro-Installation e.Kfr.", - "Henkel Elfte Verwaltungsgesellschaft mbH", - "Henkel GmbH", - "Henkel KG Generalagentur", - "Henkel Verwaltung GmbH", - "Henkel & Volic GmbH", - "GEA Tuchenhagen GmbH", - "GELSENWASSER-Stiftung gGmbH", - "MEC METRO-ECE Centermanagement GmbH & Co. KG", - "Gemeinnützige Gesellschaft zur Förderung des E.ON Energy Research Center mbH", - "Gramm GmbH & Co. KG", - "GVV Grevener Vermietungs- und Verpachtungs-GmbH & Co. KG", - "Hamburg On Air e.K.", - "Hella Gutmann Solutions GmbH", - "Hella Pagid GmbH", - "HELLA Sonnenschutztechnik GmbH", - "Helmut Gramm Möbelhandel und Verpachtung Inhaberin Marion Gramm e.K.", - "Henkel Beiz- und Elektropoliertechnik Verwaltungsgesellschaft mbH", - "Henkel GmbH + Co.", - "Henkel Italia Holding Verwaltungs GmbH", - "henkel's Höfe GmbH & Co. KG", - "henkel's LDH GmbH & Co. KG.", - "GEHAG Grundbesitz I GmbH", - "Grammer Verwaltungs GmbH", - "Gramm GmbH", - "Gramm Immo Verwaltungs GmbH", - "Grundstücksgesellschaft Pfingstanger Salzgitter Bad KG", - "Guido's Pizzeria Inhaber Giorgio Puma e.K.", - "Hapag-Lloyd Reisebüro Hagen GmbH & Co. KG", - "Hapag-Lloyd Reisebüro Hagen Verwaltungs GmbH", - "hella good e.K. Inh. Hella Kocks", - "Henkel Beteiligungsgesellschaft mbH", - "Henkel GmbH & Co KG", - "Henkel & Jung Transport Recycling GmbH", - "Henkel-Loctite-KID GmbH", - "Henkel & Reiß Elektro- und Kältetechnik GmbH", - "Henkel Rohrverformungstechnik GmbH", - "GELSENWASSER 10. Beteiligungs-GmbH", - "GELSENWASSER AG", - "GELSENWASSER Digital GmbH", - "GRAMMER Solar GmbH", - "GRAMM Holding UG (haftungsbeschränkt)", - "Hella Holding International GmbH", - "Henkel Bodenbeläge GmbH", - "Henkel Elektromaschinenbau GmbH", - "Henkel Gasarmaturen GmbH", - "Henkel & Gerlach Rügen Elektro-Handel GmbH & Co. Kommanditgesellschaft", - "Henkel + Henkel GmbH & Co. KG", - "Henkel Modellbau GmbH", - "Henkel Transporte GmbH", - "Henkel und Gärtner GmbH", - "Henkel-Vision Gesellschaft für Creatives Marketing mbH, Darmstadt", - "KSB Financial Consulting UG (haftungsbeschränkt)", - "GEHE Immobilien Verwaltungs-GmbH", - "Gemeindewerke Schermbeck Verwaltungsgesellschaft mbH", - "Gerlach Zolldienste GmbH", - "GIP Holding GmbH", - "GKF Vermögensverwaltungsgesellschaft mbH & Co. 25. Objekt - KG", - "Hamburg-Amerika Linie G.m.b.H.", - "Hella Kelling", - "Hella Seifen Hildegard Schipporeit Großhandel e.K.", - "Hella Vermögensverwaltungs GmbH & Co. KG", - "Henkel IP & Holding Verwaltungs GmbH", - "henkel-TK GmbH", - "Henkel-Vertrieb, Manfred J. Henkel", - "GEA Group Holding GmbH", - "GELSENWASSER 1. Beteiligungs-GmbH", - "GELSENWASSER Projektgesellschaft mbH", - "Gerhard Bechthold GmbH", - "Grainli GmbH & Co. KG", - "Gramm Immo GmbH & Co. KG", - "Gramm technical GmbH", - "Gram techno GmbH", - "GSR Ventiltechnik GmbH & Co. KG", - "Hapag-Lloyd Damietta GmbH", - "Infineon Technologies Vermögensverwaltungsgesellschaft mbH", - "GWN Gemeinnützige Wohnungsgesellschaft Nordwestdeutschland GmbH", - "Hans Rüssel Buchhandlung Inh. Benedikt Rüssel", - "\"Hebbel-Apotheke\" Hella Behm e.Kfr.", - "Hella Fahrzeugkomponenten GmbH", - "Hellma Gastronomie-Service GmbH", - "Henkel Bedachungen GmbH", - "Henkel Dach und Wand GmbH", - "Henkel & Gerlach GmbH & Co.", - "Henkel + Henkel Verwaltungs GmbH", - "Henkel IP & Holding GmbH", - "henkel's GmbH & Co. KG", - "GEA Refrigeration Technologies GmbH", - "Germanwings GmbH", - "Gerresheim Verwaltungs-GmbH", - "GGR Wohnparks Nord Leipziger Tor GmbH", - "GRAMMER Immobilien Projektentwicklung GmbH", - "LEONI Kabelsysteme GmbH", - "Haragon VV GmbH", - "HARTMANN Beteiligungen GmbH", - "Hartmann GmbH", - "HAUFF-TECHNIK GmbH & Co. KG", - "Henkel-Beteiligungs-GmbH", - "Henkel & Gerlach Rügen Elektro-Handel GmbH", - "Henkel Karosseriebau-Fachbetrieb GmbH", - "HOCHTIEF PPP Bundeswehrpartner FWK München GmbH & Co. KG", - "imeco GmbH & Co. KG", - "Immobilienverwaltung AB GmbH", - "Infineon Technologies Dresden Verwaltungs GmbH", - "Infineon Technologies Holding GmbH", - "jw-marhoffer GmbH", - "K a r l O s t e r GmbH", - "K.E.S. Isoliertechnik GmbH", - "K.L.E.S.C.H. Hausdienste GmbH", - "Krankenhaus Service-Westmecklenburg GmbH", - "KSB Erneuerbare Energien Eins GmbH & Co. KG", - "KSB INTAX v. Bismarck Rechtsanwälte Wirtschaftsprüfer Steuerberater PartGmbB", - "IPETRONIK GmbH & Co. KG", - "KSB International Trading GmbH", - "KSB Projektgesellschaft II UG (haftungsbeschränkt)", - "KSB Stahlbau Berlin GmbH", - "K & S Citystore OHG", - "K & S GmbH Projektmanagement", - "K.S. Immobilien GmbH", - "K.S. Schnitzler GmbH alles fürs Büro", - "K U B U S GmbH Planen & Bauen", - "KUKA Aktiengesellschaft", - "Köster & Co. GmbH", - "LEG Immobilien SE", - "Leibniz-Service GmbH", - "LL Plant Engineering AG", - "HOCHTIEF Engineering GmbH", - "HOCHTIEF Insurance Broking and Risk Management Solutions GmbH", - "HOCHTIEF Offshore Development Fünf GmbH", - "HOCHTIEF Solutions 3. Beteiligungs GmbH", - "Hoch- und Tiefbau Kishk GmbH", - "Holz- und Baustoffhandlung Hella Ostheim Inh. Volker Ostheim e. K.", - "IEF - Werner GmbH", - "INDUS Epsilon GmbH & Co. KG", - "Infineon Technologies 2. Vermögensverwaltungsgesellschaft mbH", - "Infineon Technologies Bipolar Verwaltungs GmbH", - "Infineon Technologies Dresden GmbH & Co. KG", - "Infineon Technologies Gamma GmbH", - "internetstores GmbH", - "IONOS Holding SE", - "KOB GmbH", - "KS ATAG Beteiligungsgesellschaft m.b.H.", - "KSB Erneuerbare Energien Drei GmbH & Co. KG", - "KSB Haus GmbH", - "KSB - Menü GmbH", - "KSB Solarfeld Tellig Zwei GmbH & Co. KG", - "KSB Wohnbau GmbH & Co. KG", - "K&S Mechatronik GmbH", - "K.S.R. Euro Handel & Logistik, Nachf. Octavio da Conceicao Ribeiro e.K.", - "K + S Stahl- & Behälterbau GmbH", - "K & S - Systemhaus GmbH", - "K+S Versicherungsvermittlungs GmbH", - "Kuka Bau GmbH", - "KUKA Deutschland GmbH", - "IONOS Service GmbH", - "Karagon VV GmbH", - "Kernkraftwerke Isar Verwaltungs GmbH", - "KUKA Unterstützungskasse GmbH", - "Lackwerkstatt Eschweiler KSB GmbH", - "LANXESS Trademark GmbH & Co. KG", - "LEG Rheinland Köln GmbH", - "Lesezirkel Aus Aller Welt Telse Moeller e.K.", - "LODUR Energieanlagen GmbH", - "Lufthansa Asset Management Leasing GmbH", - "HOCHTIEF Labore Kassel GmbH", - "HOCHTIEF PPP 1. Holding GmbH & Co. KG", - "HOCHTIEF PPP 1. Holding Verwaltungsgesellschaft mbH", - "HOCHTIEF PP Südosthessen Vermietungs GmbH", - "HY Beteiligungs GmbH", - "IAB Ionenaustauscher GmbH Bitterfeld", - "Infineon Technologies Mantel 29 GmbH", - "K & S Personalleasing GmbH", - "K H S Autoteile GmbH", - "Kino im Schloßhof GmbH", - "K. Meyer R.M.S. GmbH", - "K.M.S. Karin Schilling", - "Knorr-Bremse Systeme für Schienenfahrzeuge Ibero Holding GmbH", - "KOB Medical Devices (Deutschland) GmbH", - "Kramer-Werke GmbH", - "KSB Holding GmbH", - "KSB Immobilien GmbH & Co. KG", - "KSB Kies- und Sandwerke Boddin GmbH", - "KS Grundstücksverwaltung GmbH & Co. KG", - "K & S Hagedorn GmbH", - "K. & S. Handels-GmbH", - "K+S Hotel GmbH", - "K & S New Fustex GmbH", - "K.S. Verblend GmbH", - "K & S Zahntechnik GmbH", - "K und S Gerüstbaugesellschaft mbH", - "K u. S Autohandel GmbH", - "LEG Niedersachsen Süd GmbH", - "Linde Material Handling Rental Services GmbH", - "HOCHTIEF Offshore Crewing GmbH", - "Peiseler GmbH & Co. KG", - "HOCHTIEF PPP Operations GmbH", - "HOCHTIEF PPP Schulpartner Braunschweig GmbH", - "HOCHTIEF PP Südosthessen Bewirtschaftungs GmbH", - "HUGO BOSS Internationale Beteiligungs-GmbH", - "Hüttensand Salzgitter Verwaltungs GmbH", - "IHO Management GmbH", - "IHO Verwaltungs GmbH", - "Infineon Technologies Campeon Verwaltungsgesellschaft mbH", - "j-fiber GmbH", - "K.C.S Brandschutz GmbH", - "Knorr-Bremse Aktiengesellschaft", - "K O M O S, Ing. Ernst August Müller, VDI, Maschinenkonstruktionen - Vermessungstechnik", - "K+S Aktiengesellschaft", - "K & S Bau GmbH", - "KSB Beteiligungsgesellschaft mbH", - "Optik Schäffler Walter Schäffler", - "KSB Grundbesitz GmbH", - "KSB Wind GmbH & Co. KG", - "K & S Gesellschaft für Informatik mbH", - "K+S GmbH Modell- und Formenbau", - "KUKA Industries GmbH & Co. KG", - "KUKA Real Estate Management GmbH", - "Kurt Tweesmann GmbH", - "LANXESS Performance Materials GmbH", - "LEG Wohnen NRW GmbH", - "Leoni June Consulting UG (haftungsbeschränkt)", - "LSG South America GmbH", - "Hitex GmbH", - "HOCHTIEF BePo Hessen Bewirtschaftung GmbH", - "HOCHTIEF Offshore Development Solutions GmbH", - "Hornbach Baustoff Union GmbH", - "Horst Henkel, Metallwaren, Suhl-Mäbendorf e.K.", - "Immobilien-Vermietungsgesellschaft von Quistorp GmbH & Co. Objekt Altlandsberg KG", - "Infineon Technologies Semiconductor GmbH", - "Infrastrukturgesellschaft Plochingen Verwaltungs GmbH", - "Jannis Beteiligungsgesellschaft mbH", - "Johann Grammer", - "j-plasma GmbH", - "K + S Studios GmbH", - "JS Financial Services GmbH", - "Kaufhof Köln Hohe Straße GmbH", - "K e i s e r Gesellschaft mit beschränkter Haftung", - "Kiepe Electric GmbH", - "Kneipp Werbe-Agentur u. Vertriebs-GmbH", - "KSB Energie GmbH", - "KSB INTAX Datenschutz GmbH", - "KSB INTAX Projekt GmbH", - "KSB Kita Sodenmatt Bremen GmbH", - "KS Grundstücksverwaltung Beteiligungs-GmbH", - "K.S. Logistic Verwaltungs GmbH", - "KuKa Export-Import GmbH", - "LANXESS Middle East GmbH", - "LEG Neunte Grundstücksverwaltungs GmbH", - "LEONI Cable Assemblies GmbH", - "Leonie Kesseler Vermögensverwaltungs- GmbH & Co. KG", - "Leoni GmbH & Co. KG", - "Linde Material Handling GmbH", - "LSY GmbH", - "H. Heitz Furnierkantenwerk GmbH & Co. KG", - "HOCHTIEF Labore Kassel Bewirtschaftungs GmbH", - "HOCHTIEF PPP Schulpartner Frankfurt am Main Verwaltungs GmbH", - "Hospitality Digital GmbH", - "Infineon Technologies Memory Solutions Germany GmbH", - "Johann Schäffler, Inh. Roland Schäffler e.K.", - "KION GROUP AG", - "Knorr-Bremse SteeringSystems GmbH", - "K+S An-Instituts Verwaltungsgesellschaft mbH", - "KSB Apartments GmbH", - "KSB Architekten + Ingenieure GmbH", - "KSMA Karl-Heinz Sitzler Maschinen- und Anlagenbau GmbH", - "KUKA Bauelemente & Immobilien GmbH", - "K.u.K.-´s Delphin Sport- und Schwimmschulen Betriebsgesellschaft mit beschränkter Haftung", - "K.W.S.-Massivbau & Betreuungsgesellschaft mbH", - "LANXESS Aktiengesellschaft", - "LEONIE DMS DVB GmbH", - "Leonie Isabel Appels Beteiligungs GmbH", - "Leonie Lackmann-Wißkirchen GmbH", - "LSG Lufthansa Service Europa/Afrika GmbH", - "HOCHTIEF Solutions AG", - "HOCHTIEF Solutions Real Estate Beteiligungsverwaltungsgesellschaft mbH", - "HOCHTIEF ÖPP Projektgesellschaft mbH", - "HTP Immo GmbH", - "Infineon Technologies Delta GmbH", - "Infineon Technologies Mantel 27 GmbH", - "K+S Verbrauchermarkt GmbH u. Co. KG", - "KUKA Real Estate GmbH & Co. KG", - "Interconnector GmbH", - "ISARIA Objekt Preußenstraße GmbH", - "ITG GmbH Internationale Spedition und Logistik", - "Kelvion Brazed PHE GmbH", - "K.H.S. Leasing und Versicherungsvermittlungs GmbH", - "KION Information Management Services GmbH", - "Knorr-Bremse Beteiligungsgesellschaft mbH", - "KSB Armaturen Verwaltungs- und Beteiligungs-GmbH", - "KSB Automatenaufsteller GmbH", - "KSB Beratungs UG (haftungsbeschränkt)", - "KSB Consulting GmbH", - "KSB Erneuerbare Energien Fünf GmbH & Co. KG", - "K+S Beteiligungs GmbH", - "KSB Klinikberatung GmbH", - "KSB Projektentwicklungs GmbH", - "KSB SE & Co. KGaA", - "K & S Elektroservice Kirch & Stallmann GmbH", - "K.S. Gourmet Partyservice und Catering e.K.", - "KS Large Bore Pistons Germany GmbH", - "K S M Biegetechnik GmbH", - "LANXESS Trademark Management GmbH", - "LBBW Immobilien Kommunalentwicklung GmbH", - "H.J. Merck & Co. GmbH", - "HOCHTIEF Aktiengesellschaft", - "HOCHTIEF Americas GmbH", - "HOCHTIEF Construction Management Middle East GmbH", - "HOCHTIEF ViCon GmbH", - "Hotel Metro oHG - Inhaber: Edith Richter und Frieda Richter", - "hvs Verpflegungssysteme GmbH", - "IDKOM AG", - "IHO Holding GmbH & Co. KG", - "IMD Natural Solutions GmbH", - "IMPARK MAINOVA Hessische Parkhausbetriebe UG (haftungsbeschränkt) & Co. KG", - "Infineon Technologies Mantel 26 AG", - "INNO FRICTION GmbH", - "In&Out Ventures GmbH", - "Iragon VV GmbH", - "MN Münsterland Netzgesellschaft mbH & Co. KG", - "JeNaCell GmbH", - "J. G. Merckens Meß- und Regelsysteme GmbH", - "KION Warehouse Systems GmbH", - "KSB GmbH Klügel Schwinn Beschläge", - "KSB Kabel- & Signalbau GmbH", - "KSB Projekt Gesellschaft III GmbH", - "KSB Wasch- und Reinigungsmittel GmbH", - "K & S Media GmbH", - "K & S Systemboden GmbH", - "LANXESS Organometallics GmbH", - "Laragon VV GmbH", - "Lavendel Apotheke Maren Guthold e.K.", - "Leonie Grimberg Holding GmbH", - "LEONI Kabel GmbH", - "Linde Material Handling Rhein-Ruhr GmbH & Co. KG", - "Litec-LLL GmbH", - "Henkel Zweite Holding GmbH", - "HOCHTIEF PPP Schulpartner Köln Rodenkirchen GmbH & Co. KG", - "HOCHTIEF PPP Verwaltungs GmbH", - "Hubert Schäffler GmbH", - "HUGO BOSS Beteiligungsgesellschaft mbH", - "iLove GmbH", - "IONOS SE", - "Kaufhalle GmbH", - "Kelvion Germany GmbH", - "Kelvion Industriebeteiligungen GmbH", - "Ketziner Beteiligungsgesellschaft mbH", - "KION Financial Services GmbH", - "Kneipp GmbH", - "Knorr-Bremse Investment GmbH", - "Kraftwerk Hattorf GmbH", - "KSB Kreyenbrücker Servicegesellschaft \"BreeWater\" mbH", - "K & S Fassaden Technik GmbH", - "K.S.H. Elektroheizungsservice GmbH.", - "K & S Systeme Tord Steinbock e.K.", - "K.T.S. GmbH", - "KUKA Assembly & Test GmbH", - "KUKA ENTERTAINMENT GmbH", - "Kunststoffbeschichtung Hochberg GmbH", - "LBBW Immobilien Development GmbH", - "LEG Achte Grundstücksverwaltungs GmbH", - "LEG Niedersachsen GmbH", - "LEG West Immobilien GmbH", - "LEONI Kerpen GmbH", - "LeoniSolution UG (haftungsbeschränkt)", - "HINO & TRATON Global Procurement GmbH", - "HOCHTIEF DCX GmbH", - "LEG Wohnungsbau Rheinland GmbH", - "HOCHTIEF Infrastructure GmbH", - "HOCHTIEF PANDION Oettingenstraße GmbH & Co. KG", - "HOCHTIEF PPP Lifecycle 1 GmbH", - "HOCHTIEF PPP Solutions GmbH", - "HOCHTIEF Trade Solutions GmbH", - "HORNGROUP Holding GmbH & Co. KG", - "Hugo Boss Stiftung gGmbH", - "Hörsel-Apotheke Inhaber: Apothekerin Regina Gramm e.Kfr.", - "IDKOM Networks GmbH", - "Interlubes GmbH", - "Jacob Bek Gesellschaft mit beschränkter Haftung", - "K a r l B o s c h", - "Kelvion PHE GmbH", - "Leoni31 GmbH", - "K & S EDV-Consulting GmbH", - "K.I.S. Kronauer Industrieschilder GmbH", - "K.L.E.S.S. Häusliche Alten- und Krankenpflege GmbH", - "KMS Verwaltungsgesellschaft mbH", - "KOCHWERK Catering GmbH", - "K P S Konstruktions- & Planungs Service GmbH", - "KSB Bauträger und Immobilien GmbH", - "KSB European Investment AG", - "KSB Krankentransport Service Berlin GmbH", - "K + S - Blechbearbeitung GmbH", - "KSB Project Invest GmbH", - "KUKA home GmbH", - "Kuka Zimmerei GmbH", - "K ü s t e r m a n n G m b H .", - "Lapp Gesellschaft mit beschränkter Haftung Kabelwerke", - "LEG Objekt Krefeld-Bockum Verwaltung GmbH", - "LEG Siebte Grundstücksverwaltungs GmbH", - "LEONI HighTemp Solutions GmbH", - "LSG Asia GmbH", - "HOCHTIEF Asia Pacific GmbH", - "HOCHTIEF Projektentwicklung GmbH", - "Hotmobil Deutschland GmbH", - "HUGO BOSS AG", - "Ignaz Schäffler e.K.", - "InterMetro Industries B.V. Zweigniederlassung Maisach", - "Kaufhalle GmbH & Co. Objekt Lager Apfelstädt KG", - "K - B - S Busreisen GmbH", - "Kirchner Maschinenbau Inhaber Andreas Gramm e.K.", - "K&K HR-Services GmbH", - "Knorr-Bremse Systeme für Schienenfahrzeuge GmbH", - "Krone Kälte + Klima Vertriebs-GmbH", - "K & S Automobile GmbH", - "K + S Basalyk GmbH", - "KSB Energieinvest GmbH & Co. KG", - "KSB INTAX TREUHAND GmbH Wirtschaftsprüfungsgesellschaft Steuerberatungsgesellschaft", - "KSB INTAX Versicherungsschadenmanagement GmbH", - "KSB KFZ Service Bochum UG ( haftungsbeschränkt )", - "K & S Blitzschutztechnik GmbH", - "K + S Gesellschaft für Kies und Sand mbH & Co. Kommanditgesellschaft", - "K + S Immobilienmanagement GmbH", - "K + S Kassensysteme GmbH", - "K-S-M Rechtsanwälte Krekels & Partner", - "K & S Service GmbH", - "LBBW Immobilien Management GmbH", - "LEONI AG", - "Lufthansa AirPlus Servicekarten GmbH", - "HOCHTIEF PPP Bundeswehrpartner FWK München Verwaltungs GmbH", - "HOCHTIEF Solarpartner GmbH", - "HORNBACH Holding AG & Co. KGaA", - "HUGO BOSS Dienstleistungs GmbH", - "HUGO BOSS Vermögensverwaltung GmbH & Co. KG", - "IMMO - LADEN GMBH", - "INA-Holding Schaeffler GmbH & Co. KG", - "Infineon Technologies 3. Vermögensverwaltungsgesellschaft mbH", - "Inten GmbH", - "Ionisos GmbH", - "K n a u e r und R ö s c h GmbH Werkzeug- und Maschinenbau", - "KSB Berliner Kanalsanierung GmbH", - "KSB Beteiligungs- und Beratungsgesellschaft mbH", - "KSB DU277 GmbH & Co. KG", - "KSB GmbH & Co. KG", - "KSB Harburg UG (haftungsbeschränkt)", - "KSB-Klinik-Service-Betriebe GmbH", - "KSB Projektgesellschaft I UG (haftungsbeschränkt)", - "KSB Solarprojekte GmbH & Co. KG", - "K. & S. Taxibetrieb GmbH", - "KUKA Systems GmbH", - "Kulturclub Metropol GmbH", - "LEG Fünfte Grundstücksverwaltungs GmbH", - "LEONI Carservice GmbH", - "Leoni Werner UG (haftungsbeschränkt) & Co. KG", - "LR Intralogistik GmbH", - "Ludwig Henkel e.K.", - "Lufthansa Asset Management GmbH", - "HOCHTIEF DN Capital 1 GmbH", - "Hildegard Gramm-Bräuer GmbH & Co. Vermögensverwaltungs KG", - "HOCHTIEF Ladepartner GmbH", - "HUGO BOSS Trade Mark Management GmbH & Co. KG", - "HUGO BOSS Trade Mark Management Verwaltungs-GmbH", - "IDEAL Automotive GmbH", - "INDUS Holding Aktiengesellschaft", - "Infineon Pension Trust Immobilien Holding GmbH", - "INFOSCREEN GmbH", - "ISOCHEM Holding GmbH", - "Jettainer GmbH", - "Josef Sartorius GmbH & Co. KG", - "K. C. S. Eichner Baugesellschaft mbH & Co. KG", - "Kelvion Machine Cooling Systems GmbH", - "Kieback GmbH & Co. KG", - "K.L.A.S. Dienstleistungs GmbH", - "K.M.S. Doruk Computer Systeme OHG", - "Kommanditgesellschaft Steindamm - Grundstücks- und Metro Hotelgesellschaft mit beschränkter Haftung & Co.", - "Kramer-Areal Verwaltungs GmbH", - "KSB GmbH", - "KSB Kontakt Schaltanlagen Bau GmbH", - "KSB Kölner Service und Beratungs GmbH", - "KSB Windfeld Parstein GmbH & Co. KG", - "KSB Windfeld Süderland III GmbH & Co. KG", - "K + S Ingenieurbüro für technische Gebäudeausrüstung GmbH", - "K+S Minerals and Agriculture GmbH", - "Kurt Engel Inh. Leonie Engel e.K.", - "Königlich privilegierte Löwenapotheke e. K. Inh. Hella Behm", - "Leger Immobilien GmbH", - "LEG Projektgesellschaft 2 GmbH & Co. KG", - "Litarion GmbH", - "LMH Immobilien GmbH & Co. KG", - "Hoch-Tief-Landschaftsbau Schöneck GmbH", - "HOCHTIEF PPP Schulpartner Köln P 1 GmbH & Co. KG", - "HOCHTIEF Soziale Infrastruktur Europa GmbH", - "Hüttensand Salzgitter GmbH & Co. KG", - "IHO Beteiligungs GmbH", - "Infineon Technologies AG", - "Infineon Technologies Bipolar GmbH & Co. KG", - "it4logistics GmbH", - "KMS - Kretschmer-Bauplan GmbH", - "KSB Service GmbH", - "KSB Windfeld Brehna Zwei GmbH & Co. KG", - "K&S Verwaltungsgesellschaft mbH", - "K + S Wohnungsbau GmbH", - "Leoni247 UG (haftungsbeschränkt)", - "LEONI Bordnetz-Systeme GmbH", - "l´tur GmbH", - "Henkel Zwölfte Verwaltungsgesellschaft mbH", - "Hesse Newman Immobilienmanagement GmbH", - "HEV Hohenloher Energie Versorgung GmbH", - "HOCHTIEF Bau und Betrieb GmbH", - "HOCHTIEF BePo Hessen GmbH", - "KSB Bau GmbH", - "HOCHTIEF OBK Vermietungsgesellschaft mbH", - "HOCHTIEF PANDION Oettingenstraße Verwaltungs-GmbH", - "HOCHTIEF PPP Schulpartner Köln Rodenkirchen Verwaltungs GmbH", - "HOCHTIEF PPP Transport Westeuropa GmbH", - "HOCHTIEF Solutions Real Estate GmbH", - "hte GmbH the high throughput experimentation company", - "i Leoni GmbH", - "Imtron GmbH", - "Industriewerk Schaeffler INA-Ingenieurdienst-, Gesellschaft mit beschränkter Haftung.", - "IONOS Group SE", - "Jeans On Hans-Jürgen Pape e.K.", - "Kfz-Wirtschaftsgesellschaft der BMW Vertragshändler mbH", - "klarmobil GmbH", - "KSB Abbruch UG (haftungsbeschränkt)", - "KSB Energie AG", - "KSB TransferNET UG (haftungsbeschränkt)", - "KSB Vertriebsgesellschaft mbH & Co. KG", - "KSB Windfeld Ost GmbH & Co. KG", - "K + S Management GmbH", - "KuKa Immobilien GmbH", - "LEG JADE GmbH", - "LEG Management GmbH", - "LEG West VIII. GmbH", - "LEONIE Verwaltungs GmbH", - "LMH Immobilien Holding GmbH & Co.KG", - "HOCHTIEF PPP Schulpartner Frankfurt am Main GmbH & Co. KG", - "inge GmbH", - "Johannes Berg GmbH, Weinkellerei", - "Knorr-Bremse Services GmbH", - "KSB DU277 Verwaltungs GmbH", - "KSB Energie Verwaltungs GmbH", - "Leonie Mergen GmbH", - "MVV Alpha drei GmbH", - "KSB Klingler Schaumbeton GmbH", - "KSB Management SE", - "KSB Massivhaus GmbH", - "KSB Planungsgesellschaft für Architektur und Landschaftsarchitektur mbH", - "KSB Verwaltungs GmbH", - "KS Gleitlager GmbH", - "K + S Handelsgesellschaft für Klebstoffe und Spezialpapiere mbH", - "K & S Industrieservice GmbH", - "K & S KABELVERLEGUNG UND STRASSENBAU BETEILIGUNGS- GESELLSCHAFT mbH", - "KS KOLBENSCHMIDT GmbH", - "K + S Sauer Herrenmoden, Inhaber Markus Sauer e.K.", - "LANXESS Global Business Services GmbH", - "LBBW Immobilien Management Gewerbe GmbH", - "LEG NRW GmbH", - "LEONI Industry Holding GmbH", - "LiftEquip GmbH Elevator Components", - "LSG Lufthansa Service Holding AG", - "Lufthansa Aviation Training Germany GmbH", - "Lufthansa Group Digital Hangar GmbH", - "Lufthansa Group Business Services GmbH", - "Mainova Wind Onshore Verwaltungs GmbH", - "Löwen-Apotheke Leonie Eulzer e.K.", - "Lufthansa CityLine GmbH", - "Lufthansa Technik Aktiengesellschaft", - "Lufthansa Technik Immobilien- und Verwaltungsgesellschaft mbH", - "LWS Plus GmbH", - "Mainova WebHouse Management GmbH", - "Merck 44. Allgemeine Beteiligungs-GmbH", - "Merck Finck Privatbankiers Unterstützungskasse GmbH", - "Mercedes-Benz Mobility Beteiligungsgesellschaft mbH", - "Merck Foundation gGmbH", - "Merck Holding GmbH", - "MERCK Kommanditgesellschaft auf Aktien", - "METRO Asia Investment GmbH", - "Metro Hotel & Villa GmbH", - "METRO LOGISTICS Germany GmbH", - "Lufthansa Seeheim GmbH", - "MAGRA Maile + Grammer GmbH", - "Mainova Erneuerbare Energien Verwaltungs GmbH", - "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Porta-Westfalica KG", - "Mainova Windpark Niederhambach GmbH & Co. KG", - "Medpro-Personal GmbH", - "MAN Marken GmbH", - "MCC Trading Deutschland GmbH", - "Merck 20. Allgemeine Beteiligungs-GmbH", - "MCC Trading International GmbH", - "Merck Export GmbH", - "MEG Marine Electronics Holding GmbH", - "Merck Performance Materials GmbH", - "Metro Hop Technik GmbH", - "Merck 16. Allgemeine Beteiligungs-GmbH", - "METRO Leasing GmbH", - "Merck Performance Materials Holding GmbH", - "MetroMedia UG (haftungsbeschränkt)", - "METRO Dritte Verwaltungs GmbH", - "metronom Eisenbahngesellschaft mbH", - "METRO Markets GmbH", - "Légère Hotel Messe Erfurt Immobilien Verwaltungs GmbH", - "Mainova Erneuerbare Energien GmbH & Co. KG", - "Mainova Windpark Siegbach GmbH & Co. KG", - "MAN GHH Immobilien GmbH", - "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Schwelm KG", - "MAN Grundstücksgesellschaft mbH & Co. Epsilon KG", - "MEDIA BROADCAST GmbH", - "Merck 15. Allgemeine Beteiligungs-GmbH", - "Mercedes-Benz Vermögens- und Beteiligungsgesellschaft mbH", - "Merck 43. Allgemeine Beteiligungs-GmbH", - "Merck 25. Allgemeine Beteiligungs-GmbH", - "Metro Administration GmbH", - "Merck 37. Allgemeine Beteiligungs-GmbH", - "METRO Asset Management Services GmbH", - "Merck 41. Allgemeine Beteiligungs-GmbH", - "METRO CLOUD Provider GmbH", - "Merck Family Foundation gGmbH", - "Metro Grundbesitz- und Beteiligungs GmbH & Co. KG", - "Merck Gernsheim Holding GmbH", - "METRO Insurance Broker GmbH", - "Merck Life Science KGaA", - "METRO-Gastronomie-Gesellschaft mit beschränkter Haftung", - "Lufthansa Job Services Norderstedt GmbH", - "Lufthansa Industry Solutions AS GmbH", - "Lufthansa Commercial Holding Gesellschaft mit beschränkter Haftung", - "Lufthansa Technik Objekt- und Verwaltungsgesellschaft mbH", - "Maragon VV GmbH", - "LuK Unna GmbH & Co. KG", - "Merck Healthcare KGaA", - "Merck Patent Gesellschaft mit beschränkter Haftung", - "Lufthansa Technik AERO Alzey GmbH", - "Mainova Beteiligungsgesellschaft mbH", - "Marien-Apotheke, Inhaberin Martina Unger e.K.", - "Master Builders Solutions Deutschland GmbH", - "McKesson Europe Holdings GmbH & Co. KGaA", - "MDH Secundus GmbH", - "ME digital GmbH", - "Mercedes-Benz AG", - "Merck 42. Allgemeine Beteiligungs-GmbH", - "Merck 49. Allgemeine Beteiligungs-GmbH", - "Merck LS RTU GmbH", - "Merck Real Estate GmbH", - "Merck Schuchardt OHG", - "MetroPolis Grundstücks oHG", - "METRO Achte Verwaltungs GmbH", - "Metro Cash & Carry Grundstücksverwaltungsgesellschaft mbH", - "Mainova Erneuerbare Energien Management GmbH", - "Massivhauspark Kaarst Verwaltung GmbH", - "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Hamburg-Altona KG", - "Merck 26. Allgemeine Beteiligungs-GmbH", - "Merck 29. Allgemeine Beteiligungs-GmbH", - "Merck 38. Allgemeine Beteiligungs-GmbH", - "Merck Wohnungs- und Grundstücksverwaltungsgesellschaft mbH", - "METRO Cash & Carry China Holding GmbH", - "Metro Grundbesitz-, Beteiligungs- und Verwaltungs GmbH", - "metrologx GmbH", - "Metro - Oberflächentechnik GmbH", - "Mainova Gemeinschaftswindpark Hohenahr GmbH & Co. KG", - "Mainova PV_Park 1GmbH & Co. KG", - "MATIS Immobilien OHG", - "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt München-Pasing KG", - "Merck 45. Allgemeine Beteiligungs-GmbH", - "Merck Chemicals GmbH", - "METRO Campus Services GmbH", - "METRO Dienstleistungs-Holding GmbH", - "Léonie Corentin GmbH", - "Lufthansa Technik Logistik Services GmbH", - "Lünener Wohnungs-und Siedlungsgesellschaft mit beschränkter Haftung", - "MAN Truck & Bus Deutschland GmbH", - "Media Broadcast TV Services GmbH", - "Merck 12. Allgemeine Beteiligungs-GmbH", - "Merck Financial Trading GmbH", - "Merck Healthcare Holding GmbH", - "Mesutronic Gerätebau GmbH", - "METRO Abbruch & Baumanagement GmbH", - "METRO Advertising GmbH", - "Metrocab Taxi- und Handels-GmbH", - "METRO Erste Erwerbsgesellschaft mbH", - "METRO Neunte Verwaltungs GmbH", - "Metro-Pol - Dienstleistungen GmbH & Co. KG", - "McKesson Europe Services GmbH", - "Media-Direktservice GmbH", - "MEMBERS-ON-LINE e.K.", - "Mainova Windpark Kloppenheim GmbH & Co. KG", - "Maschinenfabrik Berner GmbH & Co. KG", - "merckens development support GmbH", - "Merck Finck, a Quintet Private Bank (Europe) S.A. branch", - "Merck International GmbH", - "Merck Site Management GmbH", - "Merck Vierte Allgemeine Beteiligungsgesellschaft mbH", - "METRO & METRO Schuhe international GmbH", - "Lufthansa Industry Solutions BS GmbH", - "Lufthansa Industry Solutions GmbH & Co. KG", - "Mainova PV_Park 3 GmbH & Co. KG", - "Markus Schäffler Bauunternehmung - Baustoffe e.K.", - "MBS Oldenburger Grundbesitz GmbH", - "Medi Metropole GmbH", - "Menacher u. Schäffler GmbH & Co. KG", - "Merck 21. Allgemeine Beteiligungs-GmbH", - "Merck Financial Services GmbH", - "MAN Brand GmbH & Co. KG", - "METRO Deutschland Consulting GmbH", - "METRO Gastro Equipment Holding GmbH", - "METRO Immobilien Gesellschaft mbH & Co. KG", - "Lufthansa Aviation Training GmbH", - "Mainova ServiceDienste Gesellschaft mbH", - "Mainova Windpark Hohenlohe GmbH & Co. KG", - "MAN Truck & Bus SE", - "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Berlin-Friedrichshain KG", - "MEC METRO-ECE Centermanagement Verwaltungs GmbH", - "Merck 13. Allgemeine Beteiligungs-GmbH", - "Merck Display Trading GmbH", - "Merck Electronics KGaA", - "Merck GmbH", - "Merck Internationale Beteiligungen GmbH", - "Merk UG (haftungsbeschränkt)", - "METRO-BAU UG (haftungsbeschränkt)", - "METRO Financial Services GmbH", - "Lufthansa Industry Solutions Verwaltungs GmbH", - "Magdalena Schäffler GmbH", - "Lufthansa Cargo Aktiengesellschaft", - "Lufthansa Technik Logistik GmbH", - "MA3 Schäffler Haus GmbH & Co. KG", - "Mainova Windpark Kaisten GmbH & Co. KG", - "M. Braun Inertgas-Systeme GmbH", - "Merck 27. Allgemeine Beteiligungs-GmbH", - "Merck Surface Solutions GmbH", - "Merk Verwaltungs UG (haftungsbeschränkt)", - "Metro Administration GmbH & Co. Grundbesitz KG", - "METRO Digital GmbH", - "Metro Großhandelsgesellschaft mbH", - "Metro Models GmbH", - "Lufthansa Process Management GmbH", - "Lufthansa Systems GmbH & Co. KG", - "Menacher u. Schäffler Verwaltungs-GmbH", - "Merck 40. Allgemeine Beteiligungs-GmbH", - "MATINA GmbH", - "med!go-on e.K.", - "METRO AG", - "METRO Hospitality Digital Holding GmbH", - "Merck 24. Allgemeine Beteiligungs-GmbH", - "Merck 28. Allgemeine Beteiligungs-GmbH", - "Merck 39. Allgemeine Beteiligungs-GmbH", - "Merck 47. Allgemeine Beteiligungs-GmbH", - "Merck Healthcare Germany GmbH", - "Merck Life Science Holding GmbH", - "MERK Wohnbau GmbH", - "METRO Cash & Carry International GmbH", - "METRO Deutschland GmbH", - "METRO FSD Holding GmbH", - "METRO Fulfillment GmbH", - "METRO INTERNATIONAL SUPPLY GmbH", - "Mainova Aktiengesellschaft", - "Mainova WebHouse GmbH & Co. KG", - "Mainova Windpark Remlingen GmbH & Co. KG", - "Max Lobenhofer GmbH", - "Merck 46. Allgemeine Beteiligungs-GmbH", - "Merck 48. Allgemeine Beteiligungs-GmbH", - "Merck Consumer Health Holding Germany GmbH", - "Metroer Aluminium Glass Systems GmbH", - "METRO Fünfte Verwaltungs GmbH", - "METRO Groß- und Lebensmitteleinzelhandel Holding GmbH", - "METRO Immobilien Verwaltungs GmbH", - "M. Grammer GmbH & Co. KG", - "Metro-Pol Verwaltungs GmbH", - "Michael Schäffler GmbH", - "metropress presseagentur gesellschaft mit beschränkter haftung", - "MEWESTA Hydraulik GmbH & Co.KG", - "METRO Re AG", - "MIGUA Fugensysteme GmbH", - "Modellbau Henkel Gesellschaft mit beschränkter Haftung", - "MS Motorservice International GmbH", - "Multi-Center Warenvertriebs GmbH", - "MVV Grüne Wärme GmbH", - "Nordex Windpark Beteiligung GmbH", - "NWind Windparkbetriebsgesellschaft Oedelum mbH", - "OBUK Haustürfüllungen GmbH & Co. KG", - "PHOENIX Holdings Verwaltungs GmbH", - "MS Motorservice Deutschland GmbH", - "MVV EnergySolutions GmbH", - "Netzgesellschaft Elz-Neckar Verwaltungs GmbH", - "Nordex Energy SE & Co. KG", - "Nordex Germany GmbH", - "Paul Hartmann & Co. Gesellschaft mit beschränkter Haftung", - "PUMA Blue Sea GmbH", - "Regeneratives Land GmbH", - "Rheinmetall Dermalog SensorTec GmbH", - "MTU Maintenance Berlin-Brandenburg GmbH", - "MWFS Zwischenholding Management GmbH", - "NatürlichSonne Trogen Verwaltungs GmbH", - "Netze Hechingen Verwaltungs GmbH", - "NORDEX Windpark Hochfeld GmbH & Co. KG.", - "nugg.ad GmbH", - "Peter Frey GmbH", - "Petit RUNGIS express GmbH", - "Pierburg GmbH", - "PONTUS Grundstücks-Vermietungsgesellschaft mbH & Co. Objekt BMW München KG", - "Projektentwicklungs-GmbH Friesenheimer Insel", - "Rhein-Main Wohnen GmbH", - "Rheinmetall Eastern Markets GmbH", - "Rheinmetall Immobilien St. Leon-Rot GmbH", - "Rheinmetall Technical Assistance GmbH", - "mg capital gmbh", - "Rhein-Pfalz Wohnen GmbH", - "METRO PROPERTIES Holding GmbH", - "MIP METRO Holding Management GmbH", - "MOLSTANDA Vermietungsgesellschaft mbH", - "MVV Enamic Korbach GmbH", - "MVV Umwelt Ressourcen GmbH", - "MVV Windenergie GmbH", - "NA GrammE E GmbH", - "Neue Apotheke und Apotheke am Rathaus Inhaber Markus Bell e. K.", - "Nisterhammer Maschinenbau GmbH & Co. KG", - "Nordex Beteiligungen GmbH", - "Nordex Forum II GmbH & Co. KG", - "Nordex Forum II Verwaltungs GmbH", - "OTC On-The-Chin e. K.", - "ProTel Gesellschaft für Kommunikation mbH", - "PuMA Pflege- und Management Akademie UG (haftungsbeschränkt)", - "PuMa Verwaltungs GmbH", - "renerco plan consult GmbH", - "METRO Zwölfte Verwaltungs GmbH", - "MVV Alpha fünfzehn GmbH", - "mg Altersversorgung GmbH", - "Minebea Intec Aachen Verwaltungs-GmbH", - "Minebea Intec Bovenden GmbH & Co. KG", - "MIP METRO Group Intellectual Property GmbH & Co. KG", - "MSE Mobile Schlammentwässerungs GmbH", - "Netzeigentumsgesellschaft Rheinstetten Verwaltungs-GmbH", - "Nordex SE", - "OSRAM Licht AG", - "PCI Augsburg GmbH", - "Pellog GmbH", - "Preussag Beteiligungsverwaltungs GmbH IX", - "PRIMA Wohnbauten Privatisierungs-Management GmbH", - "Puma Musikverlag GmbH", - "PUMA.sh GmbH", - "Metro SB-Großmärkte GmbH & Co. Kommanditgesellschaft", - "Pumax UG (haftungsbeschränkt)", - "MobilCom Multimedia GmbH", - "PuMa Zander GmbH & Co. KG", - "MS \"HELLA\" Schiffahrtsgesellschaft mbH & Co. KG", - "REMKO GmbH & Co. KG Klima- und Wärmetechnik", - "Netzgesellschaft Vaihingen Verwaltungs-GmbH", - "Rheinmetall Immobilien Hamburg GmbH", - "NWind GmbH", - "NWS Finanzierung GmbH", - "OSRAM Beteiligungsverwaltung GmbH", - "PUMA Vermögensverwaltungs GmbH", - "Raiffeisen Waren GmbH Hallertau-Jura", - "Rheinmetall Project Solutions GmbH", - "MVV Enamic GmbH", - "MVV Umwelt GmbH", - "Neckarwerke Stuttgart GmbH", - "Netze BW Wasser GmbH", - "Nordex Food Deutschland GmbH", - "Nordex Manufacturing GmbH", - "OSRAM GmbH", - "Pierburg Pump Technology GmbH", - "Plankenstein 8 GmbH & Co. KG", - "PUMA International Trading GmbH", - "Raguse Gesellschaft für medizinische Produkte mbH", - "RCL TUI Cruises German Verwaltungs GmbH", - "Regalit GmbH", - "Reinhard, Grammes & Partner mbB Wirtschaftsprüfer, Steuerberater", - "Retail in Motion GmbH", - "Rheinmetall Immobilien Neckarsulm GmbH", - "Rheinmetall MAN Military Vehicles GmbH", - "METRO PROPERTIES GmbH & Co. KG", - "METRO Wholesale Real Estate GmbH", - "MGL METRO Group Logistics Warehousing Beteiligungs GmbH", - "Minebea Intec Aachen GmbH & Co. KG", - "MSN 1359 GmbH", - "Mönch-Kunststofftechnik Gesellschaft mit beschränkter Haftung", - "Netzgesellschaft Schwetzingen Verwaltungs GmbH", - "Nordex-Glas oHG", - "Nordex Windpark Verwaltung GmbH", - "OSRAM Beteiligungen GmbH", - "PLIXXENT Verwaltungs GmbH", - "Plusnet Infrastruktur GmbH & Co. KG", - "PUMA Europe GmbH", - "PUMA Mostro GmbH", - "PUMA Sprint GmbH", - "RBS wave GmbH", - "Reha - Service Loose GmbH", - "Retail Media Group GmbH", - "Rheinmetall Automotive AG", - "Rheinweg Grundstücksgesellschaft mbH", - "M.O.D. Media On Demand Hans Kleiner e.Kfm.", - "MVV Energie AG", - "MVV Netze GmbH", - "Netze Pforzheim-Region Verwaltungs GmbH", - "MMS Retail International GmbH", - "Nordex Employee Holding GmbH", - "novotegra GmbH", - "OSRAM OLED GmbH", - "Plusnet GmbH", - "Ravensberger Heimstättengesellschaft mit beschränkter Haftung", - "Reisecenter Reinwald e.K.", - "Rhein Lippe Wohnen Gesellschaft mit beschränkter Haftung", - "Rheinmetall Aktiengesellschaft", - "Rheinmetall Aviation Services GmbH", - "Rheinmetall Immobilien Kassel GmbH & Co. KG", - "metropress presseagentur GmbH & Co. KG - Agentur für Kommunikation", - "METRO Retail Real Estate GmbH", - "MTU Aero Engines AG", - "Möbelhaus W. Starke Inh. Hella Lorenz e.K.", - "Norbert Henkel e.K.", - "Nordex Grundstücksverwaltung GmbH", - "On Board Courier Land-Wasser-Luft Volker Rauh e.K.", - "ON Grundstücksverwaltung e.K.", - "OSD SCHÄFER Verwaltungs-GmbH", - "Otto Finanzplus GmbH Versicherungsvermittlung", - "Peiseler Holding GmbH", - "Perlon-Monofil GmbH", - "Privatkinderheim Hella Doll GmbH", - "Progroup Power 1 GmbH", - "puma Architekten Pundt & Mardersteig, Partnerschaftsgesellschaft mbB", - "PUMA GmbH IP Solingen", - "Reisebüro Bönisch GmbH", - "Rheinmetall Immobilien Hamburg Friedensallee GmbH", - "Rheinmetall Maschinenbau GmbH", - "Rheinmetall Technical Publications GmbH", - "Rheinmetall Technology Center GmbH", - "METRO Sechste Verwaltungs GmbH", - "MFI Asset Management GmbH", - "Miles & More GmbH", - "Netzgesellschaft Leinfelden-Echterdingen GmbH", - "NORDEX e.K.", - "Paul Gerd Hartmann Zimmerei, Holzbau und Holzhandel GmbH", - "planetroll GmbH & Co. KG", - "PLIXXENT GmbH & Co. KG", - "Projektgesellschaft Konrad-Adenauer-Ufer Köln GmbH & Co. KG", - "Pu. Ma Kulturbetriebe GmbH", - "Reederei Deymann GmbH & Co. KG TMS Leonie Deymann", - "Rheinmetall Immobilien Hafenmole GmbH", - "Rheinmetall Verwaltungsgesellschaft mbH.", - "Rheinmetall Waffe Munition GmbH", - "Minebea Intec Bovenden Verwaltungs-GmbH", - "METRO Sourcing GmbH", - "MOTEON GmbH", - "Muhrbeck-Apotheke Hella Riebes e.Kfr., Inhaber Claudia Semlow", - "MVV Umwelt Asset GmbH", - "neogramm GmbH & Co. KG", - "Nordex International GmbH", - "Ofa Bamberg GmbH", - "PAB Pumpen- und Armaturen- Beteiligungsgesellschaft mit beschränkter Haftung", - "MVV Alpha zwei GmbH", - "NIGRA Verwaltung GmbH & Co. Objekt Neunkirchen KG", - "NORDEX Handel GmbH", - "PAUL HARTMANN AG", - "Paul Hartmann AG & Co. Logistikzentrum Süd oHG", - "Pro Gramma Informationssysteme GmbH", - "Projekt Aichach S7 GmbH & Co. KG", - "ProVerMa GmbH", - "PROVIS Steuerungstechnik GmbH", - "PUMA SE", - "PUMA Spielautomaten GmbH", - "Rheinmetall Brandt GmbH", - "Rheinmetall Immobilien VEGA GmbH & Co. KG", - "Rheinmetall Landsysteme GmbH", - "METRO PROPERTIES Management GmbH", - "METRO Siebte Verwaltungs GmbH", - "MGC METRO Group Clearing GmbH", - "Minebea Intec GmbH", - "MINI-KIT - Merchandising GmbH", - "MIP METRO Group Intellectual Property Management GmbH", - "MIRA GmbH", - "NWS REG Beteiligungsgesellschaft mbH", - "Photo-Drogerie-Hella Peter Hellendahl Farbengroßhandel Inh. Käthe Hellendahl", - "PumaXX GmbH", - "recucare GmbH", - "recusana GmbH", - "RE.source White Puma GmbH & Co. KG", - "Rheinmetall Berlin Verwaltungsgesellschaft mbH", - "Rheinmetall IT Solutions GmbH", - "Rheinmetall PolyCharge GmbH", - "Rheinmetall Soldier Electronics GmbH", - "metrotek GmbH", - "MGL METRO Group Logistics GmbH", - "METRO Zehnte Verwaltungs GmbH", - "MTU Maintenance Hannover GmbH", - "MNV Münsterland Netz-Verwaltungsgesellschaft mbH", - "MVV Industriepark Gersthofen GmbH", - "Mönnich GmbH", - "MVZ DaVita Salzgitter-Seesen GmbH", - "NetCom BW GmbH", - "N & NF Trading GmbH", - "Netzgesellschaft Besigheim Verwaltungs GmbH", - "Nordex Bau e.K.", - "OSRAM SL GmbH", - "On Point Agency e.K.", - "Portfolio EDL GmbH", - "OnTrack Inh. Thomas Johanterwage e. K.", - "Prinz 5 GmbH", - "Paul Hartmann Spenglerei und Installations GmbH & Co. KG", - "puma.bär GmbH", - "Reha und Rollstuhl Handels GmbH", - "\"PETER G. OHG,\" - Men & Women", - "PROTEXiON e.K.", - "Rheinmetall Protection Systems GmbH", - "Rheinmetall Insurance Services GmbH", - "PUMA Trading GmbH", - "Qimonda Dresden GmbH & Co. oHG", - "RCL TUI Cruises German Holding GmbH & Co. KG", - "r.e Bioenergie Betriebs GmbH & Co. Zehnte Biogas KG", - "Rheinmetall Electronics GmbH", - "Rheinmetall Financial Services GmbH", - "Rheinmetall Immobilien Flensburg GmbH & Co. KG", - "Rheinmetall Immobilien GmbH", - "Rheinmetall Immobilien Neuss GmbH", - "Rheinmetall Industrietechnik GmbH", - "Rheinmetall Invent GmbH", - "METRO Vierte Verwaltungs GmbH", - "MORCAR Grundstücksgesellschaft mbH & Co. oHG", - "MS \"Leonie\" Jens u. Waller GmbH & Co. KG", - "MVV RHE GmbH", - "MWFS Zwischenholding GmbH & Co. KG", - "neogramm Verwaltungsgesellschaft mbH", - "Neunte LXS GmbH", - "OPUS Personaldienstleistungen Gesellschaft mit beschränkter Haftung", - "OSPT IP Pool GmbH", - "Portokali Property Development III SE & Co. KG", - "Puma-Werk Lauterjung & Sohn Beteiligungs-GmbH", - "Puna UG (haftungsbeschränkt)", - "REWE-Markt Ströer OHG", - "seo2b GmbH", - "Rhein-Mosel Wohnen GmbH", - "Rundschau Verlagsgesellschaft mbH", - "RHZ Handwerks-Zentrum GmbH", - "Salzgitter Anlagenbau GmbH", - "Salzgitter Hydroforming GmbH & Co KG", - "Sartorius Aktiengesellschaft", - "Sartorius Stedim Cellca GmbH", - "S.B.D. - Seniorenberatung Deutschland e.K.", - "Schaeffler-Areal 2. Liegenschaften GmbH", - "Schaeffler Invest GmbH", - "Schaeffler Verwaltungsholding Drei GmbH", - "SCHERDEL Wiesauplast Deutschland GmbH & Co. KG", - "SCHERDEL Wiesauplast GmbH & Co. KG", - "Schäffler GmbH, Maler- und Lackierermeisterbetrieb", - "Senioren-Wohnpark Meppen/Nödike Ströer & Gorsler KG", - "Siemens Finance & Leasing GmbH", - "Siemes GmbH & Co. KG", - "Siemens Healthineers Beteiligungen Verwaltungs-GmbH", - "Salzgitter Digital Solutions GmbH", - "Salzgitter Mannesmann Stahlhandel Gesellschaft mit beschränkter Haftung", - "Schaeffler IDAM Beteiligungs GmbH", - "Schaeffler Verwaltungsholding Eins GmbH", - "Schaeffler Verwaltungsholding Vier GmbH", - "Schradenbiogas GmbH & Co. KG", - "s e h b l i c k Augenoptiker-Meister Friedemann Sorg e.K.", - "Siedlung Niederrhein Gesellschaft mit beschränkter Haftung", - "Siemens Healthcare Diagnostics Products GmbH", - "Siemer Jachtservice Hunte-Ems GmbH", - "Siemer Vermögensverwaltung GmbH & Co. KG", - "Richard Henkel GmbH", - "Salzgitter Eurologistik GmbH", - "Sartorius-Herbst Beteiligungen II GmbH", - "Schaeffler-Areal 1. Liegenschaften GmbH", - "Scheffler Management GmbH", - "Schäffler Bau- und Möbelschreinerei GmbH", - "Schäffler und Lüneborg Partnerschaft, Krankengymnast, Physiotherapeut", - "RMW Projekt GmbH", - "RRS - MITCOS Rheinmetall Rohde&Schwarz Military IT and Communications Solutions GmbH", - "Ringeltaube Airport Markt GmbH", - "Rolko Kohlgrüber GmbH", - "Rolls-Royce Motor Cars GmbH", - "SALTIGO GmbH", - "RWE Wind Onshore & PV Deutschland GmbH", - "Salzgitter Automotive Engineering Immobilien Verwaltungsgesellschaft mit beschränkter Haftung", - "Salzgitter Güterverwaltung Gesellschaft mit beschränkter Haftung", - "S.A.M. Stephan Albert Magnetic Products e.K.", - "Sartorius Immobilien UG (haftungsbeschränkt) & Co KG", - "SBB Solar GmbH", - "SCANIA Real Estate Deutschland GmbH", - "Schaeffler Aerospace Germany GmbH & Co. KG", - "Schaeffler Bühl Auslandsholding GmbH", - "Schaeffler Europa Logistik GmbH", - "S. Freiburg e. K. - WS Kreatives Holz, Inh. Wolfgang Scheffer", - "Schaeffler Raytech Verwaltungs GmbH", - "Schaper Grundbesitz-Verwaltungsgesellschaft mbH", - "Schonheim GmbH", - "Siemens Energy Power Control GmbH", - "Siemer Beteiligungsgesellschaft mbH", - "Siemers-Haus KG (GmbH & Co.)", - "Siemer Verwaltung GmbH", - "Siemes Beteiligungs-GmbH", - "Robert Röhlinger GmbH", - "Salzgitter Kesselservice GmbH", - "Salzgitter Klöckner-Werke GmbH", - "Salzgitter Mannesmann Forschung GmbH", - "Salzgitter Mannesmann Grobblech GmbH", - "SANIMED GmbH", - "Sartorius-Herbst Beteiligungen I GmbH", - "Sartorius KG", - "Sartorius Lab Instruments GmbH & Co. KG", - "\"SARTORIUS\" NOVA-SIGNAL GmbH", - "Sartorius Ventures GmbH", - "Schaeffler Digital Solutions GmbH", - "Schaeffler Industrial Remanufacturing Services AG & Co. KG", - "Schaeffler KWK Verwaltungs GmbH", - "Schaeffler Ultra Precision Drives GmbH", - "Schuster Klima Lüftung GmbH & Co. KG", - "Schäffler Immobilien GmbH & Co. KG", - "Siemens Aktiengesellschaft", - "Salzgitter Automotive Engineering Beteiligungsgesellschaft mit beschränkter Haftung", - "Salzgitter Business Service GmbH", - "Salzgitter Europlatinen Gesellschaft mit beschränkter Haftung", - "Salzgitter Hydroforming Verwaltungs GmbH", - "Salzgitter Mannesmann Renewables GmbH", - "Sartorius Corporate Administration GmbH", - "Sartorius Stedim Systems GmbH", - "SARTORIUS Verwaltungs GmbH", - "Schaeffler IAB Verwaltungs GmbH", - "Siemer GmbH & Co. KG", - "Schaeffler Versicherungs- Vermittlungs GmbH", - "Schäffler GmbH & Co. KG", - "Siemens Healthineers AG", - "\"Siemer Elektro Gesellschaft mit beschränkter Haftung\"", - "Siemers-Elektro GmbH", - "Siemer Verpackung GmbH", - "Salzgitter Automotive Engineering Verwaltungsgesellschaft mit beschränkter Haftung", - "Salzgitter Mannesmann Stahlservice GmbH", - "Sartorius GmbH", - "Sartorius Xell GmbH", - "Schaeffler Aerospace Germany Beteiligungs GmbH", - "Schaeffler AG", - "Schaeffler Bühl Beteiligungs GmbH", - "Schaeffler IAB Beteiligungs GmbH", - "Schäffler GmbH", - "Scheffler GmbH & Co. KG", - "RWE Aktiengesellschaft", - "Salzgitter Energy Services GmbH", - "Sartorius-Herbst Verwaltungs GmbH", - "Sartorius Lab Holding GmbH", - "Sartorius Metalltechnik GmbH", - "Sasse Beteiligungsgesellschaft mbH", - "Schaeffler Engineering GmbH", - "Schäffler Verwaltungs GmbH", - "Selzer Systemtechnik GmbH", - "Siemens Electronic Design Automation GmbH", - "Siemers Transporttechnik GmbH", - "Siemer Verwaltungsgesellschaft mbH", - "Salzgitter Aktiengesellschaft", - "Salzgitter Flachstahl GmbH", - "Salzgitter Mannesmann Stainless Tubes Deutschland GmbH", - "Scania CV Deutschland Holding GmbH", - "SCANIA DEUTSCHLAND Gesellschaft mit beschränkter Haftung", - "Schloss-Apotheke Inh.: Dr. Stefanie Klose e.Kfr.", - "Schaeffler AS Auslandsholding GmbH", - "Schaeffler ByWire Technologie GmbH & Co. KG", - "Schaeffler Verwaltungsholding Sechs GmbH", - "Schaeffler Wälzlager Beteiligungsgesellschaft mbH", - "Schuhhaus Peter e.K. Inh. Schäffler", - "S C H U K O Metallbedachung GmbH", - "Schäffler Bauträger und Baubetreuung GmbH & Co KG", - "Schäffler Steuerberatungsgesellschaft mbH", - "Semet Maschinenbau GmbH & Co. KG", - "Siemens Healthineers Holding III GmbH", - "Ruhr-Lippe Wohnungsgesellschaft mit beschränkter Haftung", - "RWE Power Aktiengesellschaft", - "Salzgitter Forschungswasserkraftanlage Bannetze-Hornbostel GmbH", - "Salzgitter Mannesmann Dritte Verwaltungsgesellschaft mbH", - "s.a.p. e. K.", - "Sartorius Fassaden GmbH", - "Sartorius Weighing Technology GmbH", - "Schaeffler Bühl Holding GmbH", - "Schaeffler Consulting GmbH", - "Schaeffler Vermögensverwaltungs GmbH", - "Schiffahrts GmbH & Co. KG MS \"Leonie P\"", - "Schmidt's Leoni-Stuben Eunice Schmidt", - "Schwan-Apotheke Dietmar Bohlmann e.K.", - "Schäffler Immobilien Beteiligungsgesellschaft mbH", - "Selzer Holding GmbH", - "Robert Decker Wohnbau München GmbH & Co. KG", - "Salzgitter Mannesmann International Gesellschaft mit beschränkter Haftung", - "RWE Trading Services GmbH", - "RWE Supply & Trading GmbH", - "Robinson Club GmbH", - "RP Finanz GmbH", - "RWE Brise Windparkbetriebsgesellschaft mbH", - "Sabena Maintenance International GmbH", - "Schaeffler Automotive Buehl GmbH & Co. KG", - "Schaeffler Bühl Verwaltungs GmbH", - "Schaeffler ELMOTEC STATOMAT GmbH", - "Schaeffler Monitoring Services GmbH", - "Schäffl Haus und Garten UG (haftungsbeschränkt)", - "S C Isolierungen Sascha Celan e.K.", - "Rock' n Bowl e. K.", - "ROSATA Grundstücks-Vermietungsgesellschaft mbH & Co. Objekt Metzingen KG", - "Sartorius CellGenix GmbH", - "Sartorius Stedim North America Holding GmbH", - "SARTORIUS Werkzeuge Beteiligungs-GmbH", - "Schaeffler Services GmbH", - "Schaeffler Technologies AG & Co. KG", - "Schaeffler Verwaltungsholding Zwei GmbH", - "Schleicher Electronic GmbH & Co. KG", - "Schäffler Transport GmbH", - "SGS-Schwarzheider Gastronomie und Service GmbH", - "Siemens Healthineers Innovation GmbH & Co. KG", - "Safetec GmbH", - "Salzgitter Classics UG (haftungsbeschränkt)", - "Sartorius Verwaltungs UG (haftungsbeschränkt)", - "Schaeffler Friction Products GmbH", - "Schaeffler Immobilien AG & Co. KG", - "S.C.H. Wohnungsverwaltung e.K.", - "Schaeffler Schweinfurt Beteiligungs GmbH", - "Schaeffler Teppichwerke GmbH & Co. KG", - "Siemens Healthineers Innovation Verwaltungs-GmbH", - "Siemers GmbH", - "Siemes & Co.", - "Salzgitter Mannesmann Handel GmbH", - "Salzgitter Panscheberg Nr. 17 Projekt GmbH", - "SARTORIUS Invest GmbH & Co. KG", - "Sartorius Verwaltungs-Gesellschaft mit beschränkter Haftung", - "SARTORIUS Werkzeuge GmbH & Co. KG", - "SCANIA Vertrieb und Service GmbH", - "Schaeffler Automotive Aftermarket GmbH & Co. KG", - "Schaeffler Beteiligungsverwaltungs GmbH", - "Schäffler Präzisionsschleiferei GmbH", - "Secop Beteiligungs GmbH", - "Secop Verwaltungs GmbH", - "Siemens GmbH & Co. KG", - "RuhrEnergie GmbH, EVR.", - "Salzgitter Automotive Engineering GmbH & Co. KG", - "Salzgitter Automotive Engineering Immobilien GmbH & Co. KG", - "Schaeffler ByWire Management GmbH", - "Siebte Verwaltungs GmbH", - "Siemens Gerüstbau Gesellschaft mit beschränkter Haftung", - "Siemens Healthineers Beteiligungen GmbH & Co. KG", - "Siemens Healthineers Holding I GmbH", - "Siemers Pet-Shop Tierfutter & Zubehör Inh. Jan Siemers e.K.", - "Siemer Verwaltungs GmbH", - "RUDU Verwaltungsgesellschaft mbH", - "Ruhland-Kallenborn & Co. GmbH", - "Saloodo! GmbH", - "Salzgitter Mannesmann GmbH", - "Salzgitter Maschinenbau AG", - "Sanitär + Heizungsbau Manfred Schäffler e.K., Inhaber: Ralf Wenkenbach", - "Sartorius Stedim Biotech GmbH", - "Ströer Digital Group GmbH", - "Sartorius Stedim Plastics GmbH", - "Schaeffler Sondermaschinenbau AG & Co. KG", - "Schäfer GmbH & Co. KG", - "Schäfer Holding GmbH", - "S. Dembitzer e.K.", - "Selzer Fertigungstechnik GmbH & Co. KG", - "Siemens Financial Services GmbH", - "Siemers Grundbesitz GmbH & Co. KG", - "Siemes GmbH & Co. Kommanditgesellschaft Sand- und Kiesbaggerei", - "S.K.I.P. Datentechnik GmbH (System Konzepte Für Innovative Produkte)", - "S & K Metallverarbeitung Verwaltungs-GmbH", - "SPV Solarpark 102. GmbH & Co. KG", - "SPV Solarpark 103. GmbH & Co. KG", - "S S K Malergesellschaft mit beschränkter Haftung", - "S.T.O.C.K GmbH", - "Ströer Content Group GmbH", - "Stuttgart Netze GmbH", - "SUPRENUM-Gesellschaft für numerische Superrechner mbH", - "Süddeutsche Wohnen Grundstücksgesellschaft mbH", - "Südwest Presse + Hapag-Lloyd Reisebüro Verwaltungs GmbH", - "TICS GmbH Touristische Internet und Call Center Services", - "TRATON SE", - "tricontes360 Gera GmbH", - "tricontes360 Hof GmbH", - "Turmbau Steffens & Nölle GmbH", - "United Internet Corporate Holding SE", - "United Internet Corporate Services GmbH", - "Unternehmerstadt GmbH", - "Tradebyte Software GmbH", - "VOLKSWAGEN AKTIENGESELLSCHAFT", - "Volkswagen Automobile Hannover GmbH", - "Volkswagen Group Logistics GmbH", - "Volkswagen Group Real Estate GmbH & Co. KG", - "Volkswagen Insurance Brokers GmbH", - "Volkswagen Retail Dienstleistungsgesellschaft mbH", - "Volkswagen Vermögensverwaltungs-GmbH", - "Volkswagen Vierte Leasingobjekt GmbH", - "S&K Gastrobetriebsgesellschaft mbH", - "S & K Holding International Verwaltungs GmbH", - "S.K. Management GmbH", - "S.K. Marine Supplies GmbH", - "S.K.S. Autozubehör Produkte Vertriebs GmbH", - "S.K.U.B. Fotostudio GmbH", - "SPIE Energy Solutions GmbH", - "Stromnetzgesellschaft Ebersbach Verwaltungs GmbH", - "Südzucker Holding GmbH", - "TUI Asset Management and Advisory GmbH", - "TUI BLUE DE GmbH", - "TUI Insurance & Financial GmbH", - "United Internet Sourcing & Apprenticeship GmbH", - "Volkswagen Autoversicherung AG", - "Volkswagen Versicherung Aktiengesellschaft", - "S & K Europe GmbH.", - "S+K Handels GmbH", - "S.L. Die Tanzschule e.K.", - "Ströer Content Group Sales GmbH", - "Ströer Content Group X GmbH", - "Ströer Digital Publishing GmbH", - "Ströer Sales & Services GmbH", - "Ströer SE & Co. KGaA", - "Ströer-Verwaltungs-GmbH", - "TESSOL Kraftstoffe, Mineralöle und Tankanlagen Gesellschaft mit beschränkter Haftung", - "TRATON Beteiligungsverwaltungs GmbH", - "TUI Cruises GmbH", - "United Internet Management Holding SE", - "Volkswagen AirService GmbH", - "Volkswagen Automobile Rhein-Neckar GmbH", - "Volkswagen Bank Gesellschaft mit beschränkter Haftung", - "Volkswagen Immobilien BLUE GmbH & Co. KG", - "Volkswagen Sachsen GmbH", - "Volkswagen Siebte Leasingobjekt GmbH", - "Volkswagen Software Asset Management GmbH", - "\"Siemes Verwaltungs-GmbH\"", - "S-K-I Immobilien Birgit Salz e.K.", - "The Cloud Networks Germany GmbH", - "S. K. Management- und Beteiligungs GmbH", - "SODIAS GmbH", - "Tivoli Garden GmbH & Co. KG", - "TSP - TechnikServicePlus GmbH", - "TUI Customer Operations GmbH", - "TUI Deutschland GmbH", - "TUI InfoTec GmbH", - "Vivawest GmbH", - "Volkswagen Immobilien GmbH", - "Volkswagen Sechste Leasingobjekt GmbH", - "S.K. Beteiligungen GmbH", - "S.N. Stefan Neist Versicherungsmakler e.K.", - "Solarpark Aries GmbH & Co. KG", - "Ströer Begrünungen GmbH", - "Ströer Precision X GmbH", - "TKS Telepost Kabel-Service Kaiserslautern GmbH", - "trinamiX GmbH", - "THESEO Deutschland GmbH", - "TUI Aviation GmbH", - "United Internet Media GmbH", - "Volkswagen Immobilien Investment GmbH", - "Volkswagen Osnabrück GmbH", - "S + K Verwaltungs- und Beteiligungs-GmbH", - "SMIGHT GmbH", - "Ströer Core Verwaltungs GmbH", - "Ströer media brands GmbH", - "Südwestdeutsche Nuklear-Entsorgungs-Gesellschaft mbH (SNE)", - "Südzucker Verwaltungs GmbH", - "Thyssen Stahl GmbH", - "TLT Urlaubsreisen GmbH", - "tricontes360 Frankfurt Oder GmbH", - "TRINAC GmbH", - "Tilman Sartorius GmbH", - "Tobias Schäffler GmbH PC's and more", - "TUI AG", - "TUI Group Services GmbH", - "TUI ReiseCenter Jürgen Jehle e.K.", - "Ulrike Theophile-Albrecht und Hella Albrecht Grundstücksverwaltungs GmbH & Co. KG", - "Union Bauzentrum Hornbach GmbH", - "u-plus Umweltservice GmbH", - "Volkswagen Group Future Center Europe GmbH", - "Volkswagen Zentrum Karlsruhe GmbH", - "Siemes Grundbesitz GmbH & Co. KG", - "SIV Grone 1 GmbH & Co. KG", - "S&K Anlagentechnik GmbH", - "S.K. Consulting GmbH", - "S. K. Vermögensverwaltung Beteiligungs und Verwaltungs GmbH", - "Strom am Antoniusberg GmbH & Co. KG", - "Ströer News Publishing GmbH", - "Süddeutsche Wohnen GmbH", - "TARONA Verwaltung GmbH & Co. Alpha KG", - "tricontes360 solutions GmbH", - "TUI Airline Service GmbH", - "Uniper Anlagenservice GmbH", - "Verwaltung MS \"Leonie P\" GmbH", - "Volkswagen-Versicherungsdienst Gesellschaft mit beschränkter Haftung", - "Siltronic AG", - "S + K Vermögensverwaltung GmbH", - "Solarpark Lupus GmbH & Co. KG", - "S. Otto Müller Inhaber: Frank Müller e.K.", - "SPK Mix Handels GmbH", - "STKNB Marketing Sales Solutions GmbH", - "Ströer Digital Media GmbH", - "S. u. F. Schwengel Inh. Falk Schwengel e. K.", - "Tatin GmbH", - "United Internet AG", - "United Internet Investments Holding AG & Co. KG", - "TPLUS GmbH", - "United Internet Service SE", - "Unternehmerstadt Verwaltungsgesellschaft mbH", - "Vogel-Verzahntechnik GmbH + Co. KG", - "Volkswagen Autoversicherung Holding GmbH", - "Volkswagen Infotainment GmbH", - "S + K Handelsgesellschaft m.b.H.", - "S & K Holding International GmbH & Co. KG", - "S & K International Beteiligungen GmbH", - "S + K Retail GmbH", - "S. Rahvar e.K.", - "S & S Dienstleistungs- und Logistikunternehmen Sandy Schattmann e. K. Inhaberin: Sandy Wagner", - "S-T-O Kfz Meisterbetrieb e.K.", - "S-Tronics e.K.", - "Ströer Social Publishing GmbH", - "Sun Chemical Colors & Effects GmbH", - "Swisslog GmbH", - "SW Westfalen Invest GmbH", - "Tectareal Asset Services GmbH", - "Telefónica Deutschland Holding AG", - "tricontes360 Verwaltung Hamburg GmbH", - "TUIfly Vermarktungs GmbH", - "TUI Immobilien Services GmbH", - "Volkswagen Automobile Berlin GmbH", - "Volkswagen Automobile Frankfurt GmbH", - "Volkswagen Dritte Leasingobjekt GmbH", - "Volkswagen Group Info Services AG", - "Volkswagen Group Partner Services GmbH", - "Volkswagen nuwo team Vertriebsgesellschaft für Nutz- und Freizeitfahrzeuge Koblenz mbH", - "Siemes Verwaltungsgesellschaft mit beschränkter Haftung", - "S.K. Physio-Service GmbH Meuselwitz", - "S + K Textil-Service GmbH", - "S-K-Ö Schornsteinelemente, Kamineinsätze, Öfen, Luftheizungsbau Vertrieb und Montage GmbH", - "\"s'Küfer-Hus\" Wein- und Spirituosenhandlung - Branntwein-Brennerei - Spezialitäten Inh. Christian Stüdle e.K.", - "Solarpark Samas GmbH", - "SPIE Energy Solutions Harburg GmbH", - "Spiel u. Sport Hella u. Günter Grob (Spielwaren und Sportartikel) Inh. Rainer Bliefernicht", - "Starkenberger Baustoffwerke GmbH", - "STRATO Customer Service GmbH", - "Stromnetzgesellschaft Heilbronn Verwaltungs-GmbH", - "Ströer DERG Media GmbH", - "Ströer Media Deutschland GmbH", - "Ströer Next Publishing GmbH", - "Südwest Presse + Hapag-Lloyd Reisebüro GmbH & Co. KG", - "TECALEMIT GmbH & Co. KG", - "tricontes360 Itzehoe GmbH", - "tricontes360 Münster GmbH", - "Uangyih Immobilien GmbH", - "\"Urbana Teleunion\" Rostock GmbH & Co. KG", - "Vivawest Ruhr GmbH", - "S. K. Beteiligungen GmbH & Co. KG", - "S. Owusu-Sekyere e.K.", - "Volkswagen Leasing Gesellschaft mit beschränkter Haftung", - "SIL Verwaltung GmbH & Co. Objekt Haidach KG", - "Stadtwerke Recklinghausen GmbH", - "Stadtwerke Voerde Gasnetz Verwaltungs GmbH", - "Stage10 GmbH", - "Ströer Deutsche Städte Medien GmbH", - "Ströer Digital Commerce GmbH", - "Studienkreis Holding GmbH", - "Taunus Beteiligungs GmbH", - "TB Digital Services GmbH", - "Telefónica Germany GmbH & Co. OHG", - "TK Aufzugswerke GmbH", - "VLI Vivianne Leger Immobilien GmbH", - "Volkswagen Beteiligungsverwaltung GmbH", - "Volkswagen Group IT Solutions GmbH", - "Volkswagen Group Services GmbH", - "Volkswagen Konzernlogistik GmbH & Co. OHG", - "S. Stutzenbacher Inhaber Guido Wekemann e.K.", - "S + K Consulting & Events GmbH", - "S. K. Holding Verwaltungs GmbH", - "S+K Verwaltungs und Handels GmbH", - "Strahlentherapeutische Gemeinschaftspraxis Hella Kops, Petra Schneider, Dr. Dieter Ross, Dr. Ralf Keymer, Strahlentherapeuten, Partnerschaft", - "Ströer SSP GmbH", - "Sun Chemical Color Solutions GmbH", - "Südzucker AG", - "Textilwaren Josef Gramm Inh. Rosita Gramm e.K.", - "time:matters GmbH", - "TransnetBW GmbH", - "TUI TRAVEL Star - Reisebüro Battermann GmbH", - "Umspannwerk Klein Bünsdorf GmbH & Co. KG", - "Volkswagen Automobile Hamburg GmbH", - "Volkswagen Fünfte Leasingobjekt GmbH", - "Siemes Schuhcenter GmbH & Co. KG", - "SIV Weende GmbH & Co. KG", - "S + K Beteiligungs und Verwaltungs GmbH & Co. KG", - "S + K GmbH Haus- und Energietechnik", - "S.K.I. Verwaltungs GmbH Skikonstruktionsinstitut", - "S.M.A. Metalltechnik GmbH & Co. KG", - "Solutions30 Field Services Süd GmbH", - "StreetScooter GmbH", - "Ströer Management SE", - "Ströer Sales Group GmbH", - "Süddeutsche Wohnen Gebäude GmbH", - "Südzucker Versicherungs- Vermittlungs-GmbH", - "tricontes360 Hamburg GmbH", - "TUI Business Services GmbH", - "TUIfly GmbH", - "TUI Hotel Betriebsgesellschaft mbH", - "TUI Leisure Travel Service GmbH", - "Unterstützungseinrichtung der BayWa Aktiengesellschaft in München GmbH", - "vitrado GmbH", - "Volkswagen Belegschaftsgenossenschaft für regenerative Energien am Standort Emden eG", - "Volkswagen Original Teile Logistik GmbH & Co. KG", - "Simon Sinterlutions GmbH & Co. KG", - "S & K Autoverwertungs GmbH", - "S & K Verwaltungs GmbH", - "Spitzlberg GmbH & Co. KG", - "S. Schulte e.K. Apparatebau Inh. W. Liebing", - "Stanniol GmbH für IT & PR", - "Stromnetzgesellschaft Albershausen Verwaltungs GmbH", - "Ströer Core GmbH & Co. KG", - "STW Grundstücksverwaltung GmbH", - "TEC Holding GmbH & Co. KG.", - "Tectareal Property Management GmbH", - "tricontes360 Bremerhaven GmbH", - "T-Systems International GmbH", - "TUI Beteiligungs GmbH", - "Volkswagen Erste Leasingobjekt GmbH", - "VOLKSWAGEN FINANCIAL SERVICES AKTIENGESELLSCHAFT", - "Volkswagen Gebrauchtfahrzeughandels und Service GmbH", - "Siemes-Schuh-Treff Verpachtung GmbH", - "Simon Systems GmbH & Co. KG", - "S K A GmbH Elektroservice und Gebäudemanagement", - "S & K GmbH Industrieservice und Beratung", - "S.K.M. Informatik GmbH", - "S + K Sauer und Krewett GmbH", - "Vodafone Customer Care GmbH", - "STILL Gesellschaft mit beschränkter Haftung", - "STRATO AG", - "Ströer Content Group Product & Tech GmbH", - "Ströer Vermögensverwaltung GmbH & Co. KG", - "SVG Steinwerder Verwaltungsgesellschaft mbH", - "synexs GmbH", - "Südtrans GmbH", - "Taubernetze Verwaltungs-GmbH", - "ThyssenKrupp Steel Europe AG", - "TRATON Dritte Beteiligungs GmbH", - "TWS Kernkraft GmbH", - "UIS-United Internet Service, Inhaberin: Jacqueline Zielke, e.Kff.", - "Ventelo GmbH", - "VOLKSWAGEN Automobile Leipzig GmbH", - "Volkswagen Automobile Stuttgart GmbH", - "Volkswagen Economy Service Erdle Bernhard Erdle GmbH", - "Volkswagen Financial Services Digital Solutions GmbH", - "Volkswagen Group Charging GmbH", - "Volkswagen Zentrum Aachen Jacobs Automobile GmbH", - "Siems fenster + türen Gesellschaft mit beschränkter Haftung", - "S & K GmbH Trockenausbau", - "S & K Handels- und Vermittlungs GmbH & Co. KG", - "S + K Robotertechnik GmbH", - "S + K Verkaufsförderungsgesellschaft mbH", - "Solarpark Aquarius GmbH & Co. KG", - "SPECHT Sonnenschutztechnik GmbH", - "Stadtwerke Wiesloch - Strom - Verwaltungs-GmbH", - "STEAG GmbH", - "Steindamm-Grundstücks- und Metro Hotelgesellschaft mit beschränkter Haftung", - "STILL Financial Services GmbH", - "Ströer Aussenwerbung GmbH & Co. KG", - "Ströer Werbeträgerverwaltungs GmbH", - "TKH Deutschland GmbH", - "TUI 4 U GmbH", - "TUI Aviation Holding GmbH", - "ViA6West Service GmbH", - "Vivello GmbH", - "Volkswagen Immobilien Management GmbH", - "Volkswagen Original Teile Logistik Beteiligungs-GmbH", - "Volkswagen Zentrum Nürnberg-Marienberg GmbH", - "Volkswagen Zentrum Osnabrück GmbH & Co. KG", - "Vonovia Elbe Berlin III GmbH", - "Volkswagen Zubehör GmbH", - "Vonovia Elbe GmbH", - "Vonovia Technischer Service Süd GmbH", - "Windpark Kamionka GmbH", - "Wintershall Dea Middle East GmbH", - "WEINERT Fiber Optics GmbH", - "Westenergie Aqua GmbH", - "WZ-WundZentren GmbH", - "Würth Leasing Verwaltungsgesellschaft mbH", - "Zalando Customer Care DACH SE & Co. KG", - "Vonovia Energie Service GmbH", - "Vonovia Elbe Berlin II GmbH", - "Vonovia Kundenservice GmbH", - "Vonovia Eigentumsverwaltungs GmbH", - "VWR International GmbH", - "Wintershall Dea Vermögensverwaltungsgesellschaft mbH", - "Wolman Wood and Fire Protection GmbH", - "Zalando Logistics Mönchengladbach SE & Co. KG", - "Vonovia Mess Service GmbH", - "Waldhusen KSB Verwaltungs GmbH", - "Willi Göttling GmbH", - "Walsum Immobilien GmbH", - "Werkzeugbau Walldürn Gesellschaft mit beschränkter Haftung", - "Windpark Wilhelmshöhe GmbH & Co. KG", - "Wohnbau Auguste Victoria GmbH", - "Zalando Lounge Content Solutions SE & Co. KG", - "Zalando Stores GmbH & Co. KG", - "Zentra Verwaltungs-GmbH", - "Vonovia Elbe Dresden I GmbH", - "Vonovia Elbe Wohnen GmbH", - "Vonovia Modernisierungs GmbH", - "Wacker-Chemie Versicherungsvermittlung GmbH", - "Wacker Neuson SE", - "WealthCap Objekt Bogenhausen GmbH & Co. KG", - "Windfeld Hohenfelde Vier GmbH & Co. KG", - "Vonovia Operations GmbH", - "Vonovia Pro Bestand Nord Real Estate GmbH", - "Wacker Neuson Produktion GmbH & Co. KG", - "Windpark Hessenweiler GmbH & Co. KG", - "Windpark Hettstadt GmbH & Co. KG", - "Windpark Velgen-Bornsen GmbH", - "Windpark Wilhelmshöhe III GmbH & Co. KG", - "Wolfgang Sartorius GmbH & Co. KG.", - "Zalando Beauty Store GmbH", - "Zalando Lounge Logistics SE & Co. KG", - "zLabels Platform Services GmbH & Co. KG", - "Weidemann GmbH", - "Vonovia Engineering GmbH", - "Vonovia Immobilienservice GmbH", - "Vonovia SE", - "Wacker Neuson Aftermarket & Services GmbH", - "Weinkellerei Thomas Rath GmbH", - "Windpark Grüntal GmbH", - "Windpark Uphuser Mark GmbH & Co. KG", - "Zalando Logistics Gießen SE & Co. KG", - "Zalando Studios Berlin GmbH", - "Zwiebelzwerg Verlag, Inhaber Leonie Laufenburg e. K.", - "Vonovia Immobilienmanagement two GmbH", - "Wintershall Aktiengesellschaft", - "Zalando Logistics Süd SE & Co. KG", - "Zalando Payments GmbH", - "ZweiPuma GmbH", - "Zweite Mainova Erneuerbare Energien Verwaltungs GmbH", - "Westconnect GmbH", - "Vonovia Technischer Service Nord GmbH", - "Wacker Biotech GmbH", - "Wacker-Chemie Zwölfte Venture Gesellschaft mit beschränkter Haftung", - "Wacker Neuson SGM Verwaltungs GmbH", - "Wilhelmshöhe Infrastruktur GmbH & Co. KG", - "Windpark Finkenbach-Gersweiler GmbH & Co. KG", - "Windpark Wilhelmshöhe II GmbH & Co. KG", - "Zalando BTD 007 SE & Co. KG", - "Zalando BTD 010 SE & Co. KG", - "Windpark Spechenwald GmbH & Co. KG", - "Wipro Business Solutions GmbH", - "Wolteritzer Agrar GmbH", - "Vonovia Eigentumsservice GmbH", - "Wolters Rundreisen GmbH", - "Yello Solar GmbH", - "Yello Strom GmbH", - "Vonovia Dritte Berlin GmbH", - "Vollkornbäckerei Sartorius Inhaber Strauß und Kaleske OHG", - "Vonovia Immobilienmanagement GmbH", - "Vonovia Wohnumfeld Service GmbH", - "VULKAN INOX GmbH", - "Wacker-Chemie Elfte Venture Gesellschaft mit beschränkter Haftung", - "Weinisch GmbH & Co. KG", - "Wenczel Zahntechnik GmbH", - "Windpark Holle-Sillium GmbH & Co. KG", - "Wohnanlage Leonberger Ring GmbH", - "Wohnbau Westfalen GmbH", - "Zalando Outlets GmbH", - "VWR International Immobilien GmbH", - "Wacker-Chemie Achte Venture Gesellschaft mit beschränkter Haftung", - "Wacker Neuson Immobilien GmbH", - "Windpark Lindchen GmbH & Co. KG", - "WPB Water Pump Bearing GmbH & Co. KG", - "XX-ON LINUX Services Huhle e. K.", - "Zalando Customer Care Central Services SE & Co. KG", - "Zalando Lounge Service GmbH", - "Zalando Operations GmbH", - "zooplus SE", - "Wacker Chemie AG", - "Wacker Neuson PGM Verwaltungs GmbH", - "Wacker Neuson Vertrieb Deutschland GmbH & Co. KG", - "Wiech Autohandelsgesellschaft mbH", - "Windpark Schnellwettern GmbH", - "Wohnungsgesellschaft Münsterland mit beschränkter Haftung", - "Zalando Marketing Services GmbH", - "Zalando SE", - "zLabels GmbH", - "Vonovia Immobilienmanagement one GmbH", - "Vonovia Elbe Ost GmbH", - "Willibald Grammer GmbH & Co. KG", - "Windpark Bella GmbH", - "Windpark Quelkhorn GmbH", - "Wohnen am Tiergarten Deutsch Evern GmbH", - "Zalando BTD 003 GmbH", - "Zweite Bad Kreuznacher Sonnenpark Betrieb GmbH & Co. KG (KSB II)", - "Zweite Hapag-Lloyd Schiffsvermietungsgesellschaft mbH", - "Vonovia Elbe Wannsee I GmbH", - "Vonovia Managementverwaltung GmbH", - "WIBG GmbH", - "Windpark Freimersheim GmbH & Co. KG", - "Wohn + Stadtbau Wohnungsunternehmen der Stadt Münster GmbH", - "Weigand Bau GmbH", - "Volkswagen Zentrum Oldenburg GmbH", - "Volkswagen Zweite Leasingobjekt GmbH", - "Vonovia Pro Bestand Nord GmbH", - "Vonovia Pro Bestand Nord Invest GmbH", - "web care LBJ GmbH", - "Windpark Pferdsfeld GmbH & Co. KG", - "Wintershall Libyen Oil & Gas GmbH", - "Zalando BTD 009 SE & Co. KG", - "Zalando BTD 011 SE & Co. KG", - "zLabels Creation & Sales GmbH & Co. KG", - "Zweckverband Wasserversorgung Gramme-Aue", - "Westfälische Hochtief und Straßenbau GmbH", - "Windpark San Lupo GmbH", - "WINGAS Holding GmbH", - "WohnServicePlus GmbH", - "Wohnungsbaugesellschaft mit beschränkter Haftung \"Glückauf\"", - "Zalando Customer Care International SE & Co. KG", - "zebotec GmbH" + "hoverinfo": "none", + "line": { + "color": "#888", + "width": 0.5 + }, + "mode": "lines", + "type": "scatter", + "x": [ + -8.70931314589988, + -8.467677097413748, + null, + 12.357392504358657, + 13.055924620493657, + null, + -8.7260826919713, + -11.30389562151104, + null, + 4.065662271629381, + 2.401716763258838, + null, + 11.294776229121352, + 13.186981664800506, + null, + -4.877931126317019, + -6.154949374809172, + null, + 10.735464773050758, + 11.682472035258993, + null, + 1.9766510721255532, + -0.2904245132883371, + null, + -14.105337760358532, + -11.30389562151104, + null, + 1.2006505986338571, + -0.4066190229151898, + null, + -3.6207033444239403, + -6.089232444725925, + null, + -14.257892192218716, + -16.171254207712238, + null, + -14.257892192218716, + -12.641486554711227, + null, + -8.873848187901249, + -8.924539853173204, + null, + -8.587682700115721, + -11.30389562151104, + null, + 4.143478005080861, + 2.6594948351133105, + null, + -14.257892192218716, + -16.49575122113392, + null, + -16.49575122113392, + -17.399809247665026, + null, + -7.341442978207376, + -6.089232444725925, + null, + 13.518267765132038, + 12.946886580090768, + null, + 3.3062214109117107, + 0.9296285821773804, + null, + -10.550472542112104, + -8.165134748977561, + null, + -10.550472542112104, + -8.31123907060137, + null, + -13.43842367977979, + -14.827710046890484, + null, + -17.775724172886815, + -18.77373065630167, + null, + -16.88866457323332, + -18.77373065630167, + null, + -20.078458535264446, + -18.77373065630167, + null, + -13.609089026692189, + -12.78697697521233, + null, + 15.214928548030311, + 13.454883339680299, + null, + -4.696595772523521, + -5.335036210575371, + null, + -11.034798616634593, + -12.918878789025223, + null, + -11.034798616634593, + -8.786027517833004, + null, + -15.133094058459976, + -13.073799543345432, + null, + 12.062508703553217, + 13.525214186802927, + null, + 12.264858481554377, + 14.1424983821946, + null, + 12.264858481554377, + 14.568357886697154, + null, + 8.160790367423271, + 6.364427526291246, + null, + -14.017523904948444, + -11.30389562151104, + null, + -9.351947080727468, + -11.30389562151104, + null, + -21.044655379361654, + -18.77373065630167, + null, + -11.812617437253277, + -13.422176469509925, + null, + -11.812617437253277, + -13.775765496084412, + null, + -16.66777117612361, + -18.77373065630167, + null, + 4.854968322661051, + 8.387901149093713, + null, + -0.8717312459872724, + -3.2021831256890922, + null, + -15.864865885806555, + -18.77373065630167, + null, + -10.341430318799459, + -12.174437423792877, + null, + -10.341430318799459, + -13.131805829829121, + null, + 4.854968322661051, + 6.364427526291246, + null, + -9.779926270341624, + -11.222157816000808, + null, + -9.779926270341624, + -7.297077243601035, + null, + 12.007482847799901, + 14.470594296805228, + null, + 5.837901720619523, + 3.784022178353783, + null, + 13.238289425446844, + 15.9435485636315, + null, + 13.238289425446844, + 14.568357886697154, + null, + -14.892826048440316, + -16.9272715960945, + null, + 8.856427933715622, + 11.276910781514232, + null, + 4.463646735471876, + 5.030557141304843, + null, + -9.319094966806064, + -11.30389562151104, + null, + 5.54577061950271, + 3.784022178353783, + null, + 7.434816853042825, + 5.281623231902232, + null, + 7.434816853042825, + 9.463974500180829, + null, + 4.419861800187942, + 6.91603816914483, + null, + 8.13056547226624, + 10.087304118769962, + null, + 8.13056547226624, + 6.91603816914483, + null, + -18.90667680998491, + -16.26485387584271, + null, + -18.90667680998491, + -18.539285817819707, + null, + 12.088650427686154, + 12.36789644876426, + null, + 12.088650427686154, + 10.074147960343135, + null, + -16.51737999240955, + -17.621025032978338, + null, + -21.808337431736717, + -20.63061229727116, + null, + -21.808337431736717, + -22.0372705783538, + null, + 10.99395947595549, + 13.652308260668319, + null, + 10.99395947595549, + 13.554212564980395, + null, + 12.56133355227103, + 13.652308260668319, + null, + 12.56133355227103, + 13.554212564980395, + null, + 10.346063966531668, + 12.36789644876426, + null, + 10.346063966531668, + 10.074147960343135, + null, + 10.346063966531668, + 11.262722144984231, + null, + 15.372542787508928, + 13.652308260668319, + null, + 15.372542787508928, + 13.554212564980395, + null, + 11.817896192030677, + 13.652308260668319, + null, + 11.817896192030677, + 13.554212564980395, + null, + 3.856271667229114, + 1.0820851096858084, + null, + 13.994654703623123, + 13.652308260668319, + null, + 13.994654703623123, + 13.554212564980395, + null, + 2.9343925315942663, + 0.3351226422782401, + null, + 12.534847587601611, + 11.257550918740437, + null, + 12.534847587601611, + 10.074147960343135, + null, + 12.534847587601611, + 14.81007903132706, + null, + 13.857943359616616, + 13.16529376284697, + null, + 13.857943359616616, + 13.055924620493657, + null, + 9.554993646994419, + 11.747579677576784, + null, + -19.082548783402974, + -17.230274581024116, + null, + -19.082548783402974, + -20.99368417153712, + null, + 9.818094885655874, + 11.257550918740437, + null, + 13.019268697290483, + 11.039454894775762, + null, + 13.019268697290483, + 13.554212564980395, + null, + 3.036991151725595, + 5.448264249663503, + null, + 3.036991151725595, + 0.8433811243550915, + null, + 15.638529308307785, + 13.652308260668319, + null, + 15.638529308307785, + 13.554212564980395, + null, + -15.120708026130123, + -13.12269150574086, + null, + -15.120708026130123, + -15.084685984163059, + null, + 14.47648272320709, + 13.652308260668319, + null, + 14.47648272320709, + 13.554212564980395, + null, + 11.259746152967812, + 13.652308260668319, + null, + 11.259746152967812, + 13.554212564980395, + null, + -1.3794830129963682, + 1.001446291610431, + null, + -1.3794830129963682, + -2.979824350857239, + null, + 16.026250170033155, + 13.652308260668319, + null, + 16.026250170033155, + 13.554212564980395, + null, + 15.564078242959852, + 16.034607951559245, + null, + 15.564078242959852, + 14.646230575375679, + null, + 9.046492633179005, + 10.746949145559208, + null, + 8.482889237255252, + 10.746949145559208, + null, + 13.13334138439849, + 12.36789644876426, + null, + 13.13334138439849, + 11.257550918740437, + null, + 4.922850862135011, + 2.0750960065294444, + null, + 4.922850862135011, + 1.9210624105784522, + null, + -0.7961280922069971, + 2.0750960065294444, + null, + -0.7961280922069971, + 1.9210624105784522, + null, + -0.4996169964954393, + 1.9210624105784522, + null, + -0.4996169964954393, + 2.0750960065294444, + null, + 0.05568140637087626, + 2.0750960065294444, + null, + 0.05568140637087626, + 1.9210624105784522, + null, + 3.903929720733026, + 2.0750960065294444, + null, + 3.903929720733026, + 1.9210624105784522, + null, + -0.46294198742947523, + 2.0750960065294444, + null, + -0.46294198742947523, + 1.9210624105784522, + null, + 3.6953497415283403, + 2.0750960065294444, + null, + 3.6953497415283403, + 1.9210624105784522, + null, + 0.18662774037102353, + 2.0750960065294444, + null, + 0.18662774037102353, + 1.9210624105784522, + null, + -9.818550566141576, + -11.30389562151104, + null, + 10.55842539554966, + 10.746949145559208, + null, + 3.678222001524373, + 1.9210624105784522, + null, + 3.678222001524373, + 2.0750960065294444, + null, + 0.053550297367818356, + 1.9210624105784522, + null, + 0.856621852687763, + 1.9210624105784522, + null, + 1.3912104527253701, + 2.0750960065294444, + null, + 1.3912104527253701, + 1.9210624105784522, + null, + -0.4770555615368528, + 2.0750960065294444, + null, + -0.4770555615368528, + 1.9210624105784522, + null, + 2.615400798349391, + 2.0750960065294444, + null, + 4.267118850106493, + 2.0750960065294444, + null, + 4.267118850106493, + 1.9210624105784522, + null, + 0.19554905389570348, + 2.0750960065294444, + null, + 0.19554905389570348, + 1.9210624105784522, + null, + 2.9394073765534405, + 2.0750960065294444, + null, + 2.9394073765534405, + 1.9210624105784522, + null, + 11.767112148395785, + 10.746949145559208, + null, + 14.833519421498904, + 12.36789644876426, + null, + 0.7384287997164202, + 2.0750960065294444, + null, + 0.7384287997164202, + 1.9210624105784522, + null, + 1.5156603317139905, + 1.9210624105784522, + null, + -0.3322021397899909, + 1.9210624105784522, + null, + -0.3322021397899909, + 2.0750960065294444, + null, + 5.1789753436846775, + 2.0750960065294444, + null, + 5.1789753436846775, + 1.9210624105784522, + null, + 2.6724256762134506, + 2.0750960065294444, + null, + 2.6724256762134506, + 1.9210624105784522, + null, + 1.8367614336416924, + 1.9210624105784522, + null, + 1.8367614336416924, + 2.0750960065294444, + null, + -0.45136395640744087, + 1.9210624105784522, + null, + 8.81221207135692, + 10.746949145559208, + null, + 15.619567609992188, + 14.568357886697154, + null, + 0.6600766914421633, + 2.0750960065294444, + null, + 0.6600766914421633, + 1.9210624105784522, + null, + 2.504070335996154, + 2.0750960065294444, + null, + 2.504070335996154, + 1.9210624105784522, + null, + 5.036301217583687, + 2.0750960065294444, + null, + 5.036301217583687, + 1.9210624105784522, + null, + 10.125420984567317, + 10.746949145559208, + null, + 2.3475194746754497, + 1.9210624105784522, + null, + 2.3475194746754497, + 2.0750960065294444, + null, + 1.8578277047182765, + 2.0750960065294444, + null, + 1.8578277047182765, + 1.9210624105784522, + null, + 16.22703998820127, + 17.091860288961655, + null, + 10.330950595269826, + 10.746949145559208, + null, + -2.7658971358148947, + -4.8014607974495505, + null, + -2.7658971358148947, + -4.121682094168807, + null, + -1.3469441536515045, + 2.0750960065294444, + null, + -1.3469441536515045, + 1.9210624105784522, + null, + 1.1884262032218091, + 2.0750960065294444, + null, + 1.1884262032218091, + 1.9210624105784522, + null, + 1.34723325947132, + 2.0750960065294444, + null, + 1.34723325947132, + 1.9210624105784522, + null, + -7.899634721756038, + -9.211712305067408, + null, + 13.436293495916102, + 10.746949145559208, + null, + 4.876856900595087, + 2.0750960065294444, + null, + 4.876856900595087, + 1.9210624105784522, + null, + 2.2165170496703444, + 1.9210624105784522, + null, + 2.2165170496703444, + 2.0750960065294444, + null, + 4.688434393568661, + 2.0750960065294444, + null, + 4.688434393568661, + 1.9210624105784522, + null, + 1.5781068877957782, + 1.9210624105784522, + null, + 10.664924867260249, + 10.746949145559208, + null, + -1.9650770136308156, + -0.9647141359114324, + null, + 3.4031726727872074, + 2.0750960065294444, + null, + 3.4031726727872074, + 1.9210624105784522, + null, + 4.46791567217323, + 2.0750960065294444, + null, + 4.46791567217323, + 1.9210624105784522, + null, + 2.423269620133291, + 1.9210624105784522, + null, + -1.3214351689180779, + 2.0750960065294444, + null, + -1.3214351689180779, + 1.9210624105784522, + null, + -0.6852965869211495, + 2.0750960065294444, + null, + -0.6852965869211495, + 1.9210624105784522, + null, + 1.5519172594409865, + 2.0750960065294444, + null, + -14.833371203957313, + -12.770043278028636, + null, + 3.3083445120368262, + 2.0750960065294444, + null, + 3.3083445120368262, + 1.9210624105784522, + null, + 3.2264285628784295, + 2.0750960065294444, + null, + 3.2264285628784295, + 1.9210624105784522, + null, + 2.4091441663593947, + 1.9210624105784522, + null, + -1.068433738119321, + 2.0750960065294444, + null, + -1.068433738119321, + 1.9210624105784522, + null, + 5.2801480504009435, + 2.0750960065294444, + null, + 5.2801480504009435, + 1.9210624105784522, + null, + -22.29012892624258, + -22.14947240734907, + null, + -20.36215617292208, + -21.662760215424292, + null, + 7.913823981349797, + 10.042245008033184, + null, + 13.222084019474261, + 10.746949145559208, + null, + 12.138422273046151, + 10.746949145559208, + null, + -0.67044427073447, + 2.0750960065294444, + null, + -0.67044427073447, + 1.9210624105784522, + null, + 3.023087990068201, + 2.0750960065294444, + null, + 3.023087990068201, + 1.9210624105784522, + null, + 3.5667918078441505, + 1.9210624105784522, + null, + 4.259583645214979, + 1.9210624105784522, + null, + 4.259583645214979, + 2.0750960065294444, + null, + 9.10959051456911, + 9.00591792915805, + null, + -6.382156388167953, + -8.114924620385013, + null, + -6.382156388167953, + -4.09014144613155, + null, + 0.2433322479630976, + 2.0750960065294444, + null, + 0.2433322479630976, + 1.9210624105784522, + null, + 0.02380349387082925, + 2.0750960065294444, + null, + 0.02380349387082925, + 1.9210624105784522, + null, + 8.699575474266641, + 10.746949145559208, + null, + 12.517071438970168, + 10.746949145559208, + null, + -1.146229319688388, + 1.9210624105784522, + null, + 3.9370581924207073, + 2.0750960065294444, + null, + 3.9370581924207073, + 1.9210624105784522, + null, + 0.5444623587075397, + 1.9210624105784522, + null, + 4.0915415204171675, + 2.0750960065294444, + null, + 4.0915415204171675, + 1.9210624105784522, + null, + 4.545978277158587, + 1.9210624105784522, + null, + 4.545978277158587, + 2.0750960065294444, + null, + 3.4401847524258296, + 1.9210624105784522, + null, + 4.94332601132337, + 2.0750960065294444, + null, + 4.94332601132337, + 1.9210624105784522, + null, + -1.192610228575491, + 2.0750960065294444, + null, + -1.192610228575491, + 1.9210624105784522, + null, + 4.507364771453263, + 2.0750960065294444, + null, + 4.507364771453263, + 1.9210624105784522, + null, + 1.031823335220865, + 2.0750960065294444, + null, + 1.031823335220865, + 1.9210624105784522, + null, + 0.7348280496172432, + 2.0750960065294444, + null, + 0.7348280496172432, + 1.9210624105784522, + null, + 3.634152715842353, + 2.0750960065294444, + null, + 16.329629911080218, + 17.441033667083897, + null, + 16.329629911080218, + 14.210332439646615, + null, + -3.1009710458980595, + -5.205440506820717, + null, + -20.811748719318366, + -22.424846474687104, + null, + -20.811748719318366, + -19.333643113939573, + null, + -12.895238590095774, + -15.6485410514355, + null, + -17.002840880938518, + -17.602424048420065, + null, + -17.002840880938518, + -19.333643113939573, + null, + -18.003098440617467, + -17.602424048420065, + null, + -18.003098440617467, + -19.333643113939573, + null, + 16.701297491241327, + 16.452169485318528, + null, + -12.480679773055163, + -10.315126466090584, + null, + -7.382931085378695, + -9.645100687981396, + null, + -19.421273330321846, + -18.77373065630167, + null, + -20.691366867499276, + -19.211557661416975, + null, + -9.645100687981396, + -11.574766578920022, + null, + -19.88295886227899, + -22.424846474687104, + null, + -19.88295886227899, + -19.333643113939573, + null, + -1.9168963496698936, + -2.836225991117213, + null, + -10.390701474402691, + -11.30389562151104, + null, + 1.5398298287809027, + 3.525145431665082, + null, + 3.0899835481113476, + 5.369682545555909, + null, + -9.922275324532277, + -7.233663409839164, + null, + -19.826918228187647, + -17.602424048420065, + null, + -19.826918228187647, + -19.333643113939573, + null, + -1.557939548523383, + -3.830378203270949, + null, + -8.463521824269321, + -8.70415109596094, + null, + -8.011035787283092, + -5.564640261992574, + null, + -12.78697697521233, + -11.30389562151104, + null, + -9.305441849488401, + -11.30389562151104, + null, + 1.8524320463766142, + -0.24304139083144172, + null, + 1.8524320463766142, + 4.5578433839924655, + null, + -11.773686494743433, + -11.30389562151104, + null, + -17.665719101726783, + -20.286273678708202, + null, + -17.665719101726783, + -19.227328493292394, + null, + -14.072787864498226, + -11.30389562151104, + null, + -11.097063964411257, + -11.30389562151104, + null, + -13.61492915791775, + -11.30389562151104, + null, + -21.62141110792667, + -20.286273678708202, + null, + -21.62141110792667, + -19.227328493292394, + null, + -20.386059685612544, + -20.286273678708202, + null, + -11.094633503074649, + -8.644619795574375, + null, + -11.094633503074649, + -12.01044336192099, + null, + 4.5578433839924655, + 3.5635661792162865, + null, + 4.5578433839924655, + 6.0655381802650865, + null, + 14.117319922685468, + 16.27121152709186, + null, + 14.117319922685468, + 14.210332439646615, + null, + -20.164417924327868, + -20.286273678708202, + null, + 6.667110055897602, + 8.921549326543447, + null, + 11.890236135239256, + 11.940944669003084, + null, + 11.890236135239256, + 10.862739022277392, + null, + 11.890236135239256, + 10.862739022277392, + null, + -21.652278956892705, + -20.286273678708202, + null, + -21.652278956892705, + -19.227328493292394, + null, + 11.007447112644039, + 12.500834520805466, + null, + 11.007447112644039, + 8.921549326543447, + null, + -3.5930927319462813, + -2.834194264885367, + null, + -3.5930927319462813, + -4.849203406582981, + null, + -3.5930927319462813, + -1.8783040633672548, + null, + -3.5930927319462813, + -5.9138526823356266, + null, + -18.6964820290189, + -19.211557661416975, + null, + 3.084027228630518, + 1.2672067779403606, + null, + 4.5578433839924655, + 3.084027228630518, + null, + 0.97624240082111, + 1.9527502164133757, + null, + -11.766265266493022, + -11.30389562151104, + null, + 14.24741948194107, + 11.940944669003084, + null, + 14.24741948194107, + 15.16111670911235, + null, + -17.979596873501833, + -20.286273678708202, + null, + -6.820653777368942, + -7.228500587324407, + null, + -6.820653777368942, + -8.223763239439526, + null, + -10.77574769400655, + -12.93018385197875, + null, + -21.745942294135354, + -20.286273678708202, + null, + -3.531764696083626, + -4.130858921918941, + null, + -10.92073044683601, + -12.560295003820366, + null, + 14.869539287780078, + 12.495171965866554, + null, + -18.821957729217324, + -20.286273678708202, + null, + -18.821957729217324, + -19.227328493292394, + null, + -22.421792234858035, + -20.286273678708202, + null, + -6.745269020436412, + -9.211712305067408, + null, + -21.149513383400866, + -20.344640829601293, + null, + -21.149513383400866, + -19.211557661416975, + null, + 6.858066475130007, + 7.620310212411023, + null, + 4.5578433839924655, + 6.858066475130007, + null, + 8.104064627387435, + 5.971239979286481, + null, + 5.619239138287458, + 6.156588825490022, + null, + 5.619239138287458, + 8.169773290644287, + null, + -19.989999481225084, + -20.286273678708202, + null, + -22.614370116233452, + -20.286273678708202, + null, + 5.779903158930537, + 5.746694681873156, + null, + 4.5578433839924655, + 5.779903158930537, + null, + -16.51737999240955, + -14.690034116642924, + null, + -19.923354296149782, + -17.602424048420065, + null, + -19.923354296149782, + -17.289323099523585, + null, + -5.526254591027005, + -6.926326206032475, + null, + -5.526254591027005, + -8.098925907478591, + null, + -8.098925907478591, + -6.341107086583359, + null, + -8.098925907478591, + -9.622695772412136, + null, + -9.576328369821745, + -6.926326206032475, + null, + -8.098925907478591, + -9.576328369821745, + null, + -18.706584753985204, + -17.602424048420065, + null, + -18.706584753985204, + -17.289323099523585, + null, + 0.48854393504266813, + 2.4822510615899143, + null, + -1.1039008970779172, + 0.8238680595058228, + null, + -14.690034116642924, + -15.401206383320957, + null, + -12.304562961281185, + -14.002763598385519, + null, + -18.06631769066562, + -17.621025032978338, + null, + -15.401206383320957, + -18.06631769066562, + null, + -15.149575442226098, + -17.602424048420065, + null, + -15.149575442226098, + -17.289323099523585, + null, + -10.871376901885002, + -13.073799543345432, + null, + -8.098925907478591, + -10.871376901885002, + null, + -7.778928421150651, + -6.4793879657592806, + null, + -8.098925907478591, + -7.778928421150651, + null, + -8.752639112894949, + -6.178625902126945, + null, + -8.752639112894949, + -8.021165590309865, + null, + -15.903931115499725, + -17.602424048420065, + null, + -15.903931115499725, + -17.289323099523585, + null, + 15.609346006545493, + 16.47227486042157, + null, + 1.5684760085920115, + 1.0597336630653893, + null, + -8.484597070741174, + -6.4793879657592806, + null, + -8.098925907478591, + -8.484597070741174, + null, + -5.358300982736624, + -3.239099820874423, + null, + -14.690034116642924, + -15.633581302070548, + null, + 10.042667039743908, + 11.764837233757895, + null, + -5.026990040957724, + -6.926326206032475, + null, + -19.098378201640987, + -17.602424048420065, + null, + -19.098378201640987, + -17.289323099523585, + null, + -14.690034116642924, + -12.667427561341837, + null, + -8.143815192571171, + -6.926326206032475, + null, + -8.098925907478591, + -8.143815192571171, + null, + -17.044979383409984, + -17.208626664696368, + null, + -5.989201968263571, + -6.926326206032475, + null, + -8.098925907478591, + -5.989201968263571, + null, + 2.363041898277314, + 4.9942257378006065, + null, + 11.077943004444244, + 12.698764574124928, + null, + 4.869763475100926, + 7.0907603766426215, + null, + -6.891484104463479, + -6.926326206032475, + null, + -8.098925907478591, + -6.891484104463479, + null, + 11.228732658549816, + 10.212933849734718, + null, + -11.300917366159346, + -11.30389562151104, + null, + -10.968335135708738, + -11.30389562151104, + null, + 3.562939649882624, + 2.3693097894164348, + null, + 3.562939649882624, + 5.614858725722992, + null, + -1.0682502288603475, + -0.09033420362344827, + null, + -9.777165755904662, + -11.30389562151104, + null, + 1.7239387147090457, + -0.29399017359151897, + null, + 3.562939649882624, + 1.7239387147090457, + null, + -12.871013065755452, + -11.864982489192727, + null, + -12.871013065755452, + -15.041400491254338, + null, + 14.967139301367737, + 17.055148995726, + null, + 14.967139301367737, + 16.041813776705418, + null, + -3.0291294985260704, + -0.7417165954447063, + null, + -13.422449302999599, + -11.30389562151104, + null, + -17.286588360084316, + -18.77373065630167, + null, + 7.9355349788978415, + 8.571520874518438, + null, + 7.9355349788978415, + 8.034520839978383, + null, + 7.9355349788978415, + 5.953088650224671, + null, + -17.12555340084468, + -19.493438139991042, + null, + -17.12555340084468, + -15.041400491254338, + null, + -19.59883316402109, + -17.680271835579358, + null, + -20.43662854571034, + -21.709865075054704, + null, + -20.43662854571034, + -18.98434991865462, + null, + 8.21393396333229, + 9.479003699248967, + null, + 13.376046786916863, + 15.360819858645495, + null, + -8.462507797486271, + -11.30389562151104, + null, + 12.493705074878276, + 13.553752573797507, + null, + -19.681819792477782, + -18.012269836447572, + null, + -19.681819792477782, + -20.67399971981301, + null, + 16.02685507047808, + 14.142723120662852, + null, + 2.104592168482062, + 4.158855987079716, + null, + -20.89283130051644, + -18.77373065630167, + null, + -17.307425668424838, + -18.98434991865462, + null, + -17.307425668424838, + -19.30823670467353, + null, + -21.494525576807252, + -19.333643113939573, + null, + -21.494525576807252, + -22.424846474687104, + null, + 10.006171063011177, + 10.074147960343135, + null, + 10.006171063011177, + 12.36789644876426, + null, + 0.21220123988181472, + 1.345571334092393, + null, + -20.993335047761455, + -18.98434991865462, + null, + -20.993335047761455, + -19.30823670467353, + null, + -1.3818741523014602, + -3.765932094845125, + null, + 6.719216204864578, + 8.450856515397396, + null, + 6.719216204864578, + 8.034520839978383, + null, + -17.469818897962714, + -14.827710046890484, + null, + -17.469818897962714, + -15.483504593073866, + null, + 15.50842228219919, + 16.917009682577252, + null, + 15.50842228219919, + 16.710656712387618, + null, + 4.681434482402857, + 4.931777769677826, + null, + 9.082369476186, + 8.423106436504714, + null, + 11.790746027326676, + 9.362651807048024, + null, + -16.88850776851199, + -16.196594781142146, + null, + -16.88850776851199, + -17.09384139910882, + null, + -8.459815579199368, + -6.3020986051103085, + null, + -13.712982036242966, + -15.512660010110848, + null, + -13.712982036242966, + -16.253458215614497, + null, + -9.13963699288518, + -11.30389562151104, + null, + 10.555938436544011, + 9.216705572804882, + null, + -6.3910984391749635, + -5.90915471623139, + null, + -14.409926567080209, + -16.196594781142146, + null, + -14.409926567080209, + -12.491614119138562, + null, + -12.98892143086912, + -11.30389562151104, + null, + 10.932611287510872, + 10.608264638226434, + null, + -18.68338908240872, + -18.77373065630167, + null, + -12.620772053109167, + -14.002763598385519, + null, + -12.620772053109167, + -11.207167007021848, + null, + -7.01079485915003, + -8.223763239439526, + null, + -16.196594781142146, + -16.253458215614497, + null, + -16.196594781142146, + -15.512660010110848, + null, + -18.49803243754904, + -15.512660010110848, + null, + -3.709575119780668, + -5.492779155501329, + null, + -7.296028518713889, + -6.7591565356014, + null, + -15.80676283008967, + -14.002763598385519, + null, + -15.80676283008967, + -17.76062376092856, + null, + -6.298434965886316, + -7.997026832563643, + null, + 7.093355773757125, + 8.541739412405914, + null, + -17.4962316246469, + -20.004160335697236, + null, + 11.690563392102176, + 9.60797710877932, + null, + -15.116993281123253, + -15.512660010110848, + null, + -15.116993281123253, + -16.253458215614497, + null, + -3.034696504248963, + -0.9552211375723392, + null, + -13.908851939488352, + -16.06949059338767, + null, + 4.133263320515565, + 5.5986955025103615, + null, + -9.379632668231089, + -9.801914302966575, + null, + -9.379632668231089, + -6.387257207079732, + null, + -3.7125233612740947, + -6.387257207079732, + null, + -3.7125233612740947, + -2.979824350857239, + null, + 3.947054364112706, + 4.182109903014407, + null, + 15.897727748859731, + 14.913534821560878, + null, + 15.897727748859731, + 16.0907165727309, + null, + -20.177657876026064, + -18.012269836447572, + null, + -20.177657876026064, + -20.67399971981301, + null, + -4.706734631277135, + -6.387257207079732, + null, + -4.00309733359404, + -6.3020986051103085, + null, + -19.651474048276775, + -17.208626664696368, + null, + -1.4923075915022013, + -2.651460477752816, + null, + -5.608873812184631, + -3.122504065930367, + null, + -5.608873812184631, + -7.297077243601035, + null, + 3.1332077429638634, + 6.282395561912272, + null, + 3.1332077429638634, + 0.05304739933493979, + null, + 14.09475540936056, + 14.52797473671664, + null, + 14.09475540936056, + 12.782916372914405, + null, + -11.766265266493022, + -11.67638321800429, + null, + 11.49537123276815, + 9.900486173985867, + null, + 4.46094807351154, + 6.7117061951169745, + null, + -22.038311752593305, + -22.424846474687104, + null, + -22.038311752593305, + -19.333643113939573, + null, + -9.119484339706066, + -11.222157816000808, + null, + -9.119484339706066, + -7.297077243601035, + null, + -12.77939001745422, + -11.30389562151104, + null, + 13.787941597861545, + 16.55342736700985, + null, + 13.787941597861545, + 15.207573339010693, + null, + -13.61492915791775, + -16.133541414710997, + null, + -20.343425721138352, + -18.77373065630167, + null, + -19.1453352760063, + -21.192548496878892, + null, + -10.728995901369837, + -11.30389562151104, + null, + -13.61492915791775, + -12.827619657844297, + null, + -12.261340069009742, + -9.935989549568063, + null, + -7.9391584995377364, + -6.387257207079732, + null, + -7.9391584995377364, + -7.297077243601035, + null, + -8.695070081779994, + -9.935989549568063, + null, + -12.800156967487696, + -14.827710046890484, + null, + -12.800156967487696, + -15.483504593073866, + null, + -15.292661853197743, + -14.827710046890484, + null, + -15.292661853197743, + -15.483504593073866, + null, + -5.03321986359075, + -7.297077243601035, + null, + -5.03321986359075, + -2.979824350857239, + null, + -12.17454724263504, + -14.827710046890484, + null, + -12.17454724263504, + -11.421331187302464, + null, + -18.17962214270138, + -19.236373535869173, + null, + -18.17962214270138, + -15.483504593073866, + null, + 1.4502256073328483, + 3.784022178353783, + null, + -17.779940043559343, + -20.286273678708202, + null, + -17.779940043559343, + -19.227328493292394, + null, + -21.135681044425418, + -18.77373065630167, + null, + -4.645162072696039, + -2.889253833789248, + null, + -4.645162072696039, + -7.00867095864509, + null, + -7.347029070418839, + -8.165134748977561, + null, + -7.347029070418839, + -8.31123907060137, + null, + -7.527058336170182, + -8.165134748977561, + null, + -1.9964816595471717, + -3.45112685549332, + null, + -1.9964816595471717, + -2.979824350857239, + null, + -7.823569674801347, + -7.581652107499191, + null, + -14.593758817239356, + -14.827710046890484, + null, + -14.593758817239356, + -15.483504593073866, + null, + -9.279228283652973, + -7.763126090292656, + null, + -13.45733067489019, + -14.827710046890484, + null, + -13.45733067489019, + -15.483504593073866, + null, + -16.656508006139845, + -14.827710046890484, + null, + -16.656508006139845, + -15.483504593073866, + null, + -0.6624460657751019, + -1.6670677064266997, + null, + -1.9964816595471717, + -0.6624460657751019, + null, + -0.6624460657751019, + -2.979824350857239, + null, + -1.6670677064266997, + -3.45112685549332, + null, + -1.6670677064266997, + -2.979824350857239, + null, + -16.923732291878377, + -14.827710046890484, + null, + -16.923732291878377, + -15.483504593073866, + null, + -13.432933117193492, + -14.827710046890484, + null, + -13.432933117193492, + -15.483504593073866, + null, + -12.716616283024235, + -11.30389562151104, + null, + -12.576267823874279, + -11.222157816000808, + null, + -4.988851174421002, + -8.31123907060137, + null, + -4.988851174421002, + -2.979824350857239, + null, + -16.196594781142146, + -18.604913420528128, + null, + -14.219844714485582, + -14.827710046890484, + null, + -14.219844714485582, + -15.483504593073866, + null, + -5.49676867848029, + -6.810269075767733, + null, + -5.49676867848029, + -7.00867095864509, + null, + -1.782262802725937, + -3.45112685549332, + null, + -1.782262802725937, + -2.979824350857239, + null, + -6.043547508660142, + -8.165134748977561, + null, + -6.043547508660142, + -3.45112685549332, + null, + -16.187835821681944, + -14.827710046890484, + null, + -16.187835821681944, + -15.483504593073866, + null, + -17.55721376048522, + -14.827710046890484, + null, + -17.55721376048522, + -15.483504593073866, + null, + -9.903426371738261, + -7.763126090292656, + null, + -15.42783370989261, + -14.827710046890484, + null, + -15.42783370989261, + -15.483504593073866, + null, + -8.70931314589988, + -8.467677097413748, + null, + 12.357392504358657, + 13.055924620493657, + null, + -8.7260826919713, + -11.30389562151104, + null, + 4.065662271629381, + 2.401716763258838, + null, + 11.294776229121352, + 13.186981664800506, + null, + -4.877931126317019, + -6.154949374809172, + null, + 10.735464773050758, + 11.682472035258993, + null, + 1.9766510721255532, + -0.2904245132883371, + null, + -14.105337760358532, + -11.30389562151104, + null, + 1.2006505986338571, + -0.4066190229151898, + null, + -3.6207033444239403, + -6.089232444725925, + null, + -14.257892192218716, + -16.171254207712238, + null, + -14.257892192218716, + -12.641486554711227, + null, + -8.873848187901249, + -8.924539853173204, + null, + -8.587682700115721, + -11.30389562151104, + null, + 4.143478005080861, + 2.6594948351133105, + null, + -14.257892192218716, + -16.49575122113392, + null, + -16.49575122113392, + -17.399809247665026, + null, + -7.341442978207376, + -6.089232444725925, + null, + 13.518267765132038, + 12.946886580090768, + null, + 3.3062214109117107, + 0.9296285821773804, + null, + -10.550472542112104, + -8.165134748977561, + null, + -10.550472542112104, + -8.31123907060137, + null, + -13.43842367977979, + -14.827710046890484, + null, + -17.775724172886815, + -18.77373065630167, + null, + -16.88866457323332, + -18.77373065630167, + null, + -20.078458535264446, + -18.77373065630167, + null, + -13.609089026692189, + -12.78697697521233, + null, + 15.214928548030311, + 13.454883339680299, + null, + -4.696595772523521, + -5.335036210575371, + null, + -11.034798616634593, + -12.918878789025223, + null, + -11.034798616634593, + -8.786027517833004, + null, + -15.133094058459976, + -13.073799543345432, + null, + 12.062508703553217, + 13.525214186802927, + null, + 12.264858481554377, + 14.1424983821946, + null, + 12.264858481554377, + 14.568357886697154, + null, + 8.160790367423271, + 6.364427526291246, + null, + -14.017523904948444, + -11.30389562151104, + null, + -9.351947080727468, + -11.30389562151104, + null, + -21.044655379361654, + -18.77373065630167, + null, + -11.812617437253277, + -13.422176469509925, + null, + -11.812617437253277, + -13.775765496084412, + null, + -16.66777117612361, + -18.77373065630167, + null, + 4.854968322661051, + 8.387901149093713, + null, + -0.8717312459872724, + -3.2021831256890922, + null, + -15.864865885806555, + -18.77373065630167, + null, + -10.341430318799459, + -12.174437423792877, + null, + -10.341430318799459, + -13.131805829829121, + null, + 4.854968322661051, + 6.364427526291246, + null, + -9.779926270341624, + -11.222157816000808, + null, + -9.779926270341624, + -7.297077243601035, + null, + 12.007482847799901, + 14.470594296805228, + null, + 5.837901720619523, + 3.784022178353783, + null, + 13.238289425446844, + 15.9435485636315, + null, + 13.238289425446844, + 14.568357886697154, + null, + -14.892826048440316, + -16.9272715960945, + null, + 8.856427933715622, + 11.276910781514232, + null, + 4.463646735471876, + 5.030557141304843, + null, + -9.319094966806064, + -11.30389562151104, + null, + 5.54577061950271, + 3.784022178353783, + null, + 7.434816853042825, + 5.281623231902232, + null, + 7.434816853042825, + 9.463974500180829, + null, + 4.419861800187942, + 6.91603816914483, + null, + 8.13056547226624, + 10.087304118769962, + null, + 8.13056547226624, + 6.91603816914483, + null, + -18.90667680998491, + -16.26485387584271, + null, + -18.90667680998491, + -18.539285817819707, + null, + 12.088650427686154, + 12.36789644876426, + null, + 12.088650427686154, + 10.074147960343135, + null, + -16.51737999240955, + -17.621025032978338, + null, + -21.808337431736717, + -20.63061229727116, + null, + -21.808337431736717, + -22.0372705783538, + null, + 10.99395947595549, + 13.652308260668319, + null, + 10.99395947595549, + 13.554212564980395, + null, + 12.56133355227103, + 13.652308260668319, + null, + 12.56133355227103, + 13.554212564980395, + null, + 10.346063966531668, + 12.36789644876426, + null, + 10.346063966531668, + 10.074147960343135, + null, + 10.346063966531668, + 11.262722144984231, + null, + 15.372542787508928, + 13.652308260668319, + null, + 15.372542787508928, + 13.554212564980395, + null, + 11.817896192030677, + 13.652308260668319, + null, + 11.817896192030677, + 13.554212564980395, + null, + 3.856271667229114, + 1.0820851096858084, + null, + 13.994654703623123, + 13.652308260668319, + null, + 13.994654703623123, + 13.554212564980395, + null, + 2.9343925315942663, + 0.3351226422782401, + null, + 12.534847587601611, + 11.257550918740437, + null, + 12.534847587601611, + 10.074147960343135, + null, + 12.534847587601611, + 14.81007903132706, + null, + 13.857943359616616, + 13.16529376284697, + null, + 13.857943359616616, + 13.055924620493657, + null, + 9.554993646994419, + 11.747579677576784, + null, + -19.082548783402974, + -17.230274581024116, + null, + -19.082548783402974, + -20.99368417153712, + null, + 9.818094885655874, + 11.257550918740437, + null, + 13.019268697290483, + 11.039454894775762, + null, + 13.019268697290483, + 13.554212564980395, + null, + 3.036991151725595, + 5.448264249663503, + null, + 3.036991151725595, + 0.8433811243550915, + null, + 15.638529308307785, + 13.652308260668319, + null, + 15.638529308307785, + 13.554212564980395, + null, + -15.120708026130123, + -13.12269150574086, + null, + -15.120708026130123, + -15.084685984163059, + null, + 14.47648272320709, + 13.652308260668319, + null, + 14.47648272320709, + 13.554212564980395, + null, + 11.259746152967812, + 13.652308260668319, + null, + 11.259746152967812, + 13.554212564980395, + null, + -1.3794830129963682, + 1.001446291610431, + null, + -1.3794830129963682, + -2.979824350857239, + null, + 16.026250170033155, + 13.652308260668319, + null, + 16.026250170033155, + 13.554212564980395, + null, + 15.564078242959852, + 16.034607951559245, + null, + 15.564078242959852, + 14.646230575375679, + null, + 9.046492633179005, + 10.746949145559208, + null, + 8.482889237255252, + 10.746949145559208, + null, + 13.13334138439849, + 12.36789644876426, + null, + 13.13334138439849, + 11.257550918740437, + null, + 4.922850862135011, + 2.0750960065294444, + null, + 4.922850862135011, + 1.9210624105784522, + null, + -0.7961280922069971, + 2.0750960065294444, + null, + -0.7961280922069971, + 1.9210624105784522, + null, + -0.4996169964954393, + 1.9210624105784522, + null, + -0.4996169964954393, + 2.0750960065294444, + null, + 0.05568140637087626, + 2.0750960065294444, + null, + 0.05568140637087626, + 1.9210624105784522, + null, + 3.903929720733026, + 2.0750960065294444, + null, + 3.903929720733026, + 1.9210624105784522, + null, + -0.46294198742947523, + 2.0750960065294444, + null, + -0.46294198742947523, + 1.9210624105784522, + null, + 3.6953497415283403, + 2.0750960065294444, + null, + 3.6953497415283403, + 1.9210624105784522, + null, + 0.18662774037102353, + 2.0750960065294444, + null, + 0.18662774037102353, + 1.9210624105784522, + null, + -9.818550566141576, + -11.30389562151104, + null, + 10.55842539554966, + 10.746949145559208, + null, + 3.678222001524373, + 1.9210624105784522, + null, + 3.678222001524373, + 2.0750960065294444, + null, + 0.053550297367818356, + 1.9210624105784522, + null, + 0.856621852687763, + 1.9210624105784522, + null, + 1.3912104527253701, + 2.0750960065294444, + null, + 1.3912104527253701, + 1.9210624105784522, + null, + -0.4770555615368528, + 2.0750960065294444, + null, + -0.4770555615368528, + 1.9210624105784522, + null, + 2.615400798349391, + 2.0750960065294444, + null, + 4.267118850106493, + 2.0750960065294444, + null, + 4.267118850106493, + 1.9210624105784522, + null, + 0.19554905389570348, + 2.0750960065294444, + null, + 0.19554905389570348, + 1.9210624105784522, + null, + 2.9394073765534405, + 2.0750960065294444, + null, + 2.9394073765534405, + 1.9210624105784522, + null, + 11.767112148395785, + 10.746949145559208, + null, + 14.833519421498904, + 12.36789644876426, + null, + 0.7384287997164202, + 2.0750960065294444, + null, + 0.7384287997164202, + 1.9210624105784522, + null, + 1.5156603317139905, + 1.9210624105784522, + null, + -0.3322021397899909, + 1.9210624105784522, + null, + -0.3322021397899909, + 2.0750960065294444, + null, + 5.1789753436846775, + 2.0750960065294444, + null, + 5.1789753436846775, + 1.9210624105784522, + null, + 2.6724256762134506, + 2.0750960065294444, + null, + 2.6724256762134506, + 1.9210624105784522, + null, + 1.8367614336416924, + 1.9210624105784522, + null, + 1.8367614336416924, + 2.0750960065294444, + null, + -0.45136395640744087, + 1.9210624105784522, + null, + 8.81221207135692, + 10.746949145559208, + null, + 15.619567609992188, + 14.568357886697154, + null, + 0.6600766914421633, + 2.0750960065294444, + null, + 0.6600766914421633, + 1.9210624105784522, + null, + 2.504070335996154, + 2.0750960065294444, + null, + 2.504070335996154, + 1.9210624105784522, + null, + 5.036301217583687, + 2.0750960065294444, + null, + 5.036301217583687, + 1.9210624105784522, + null, + 10.125420984567317, + 10.746949145559208, + null, + 2.3475194746754497, + 1.9210624105784522, + null, + 2.3475194746754497, + 2.0750960065294444, + null, + 1.8578277047182765, + 2.0750960065294444, + null, + 1.8578277047182765, + 1.9210624105784522, + null, + 16.22703998820127, + 17.091860288961655, + null, + 10.330950595269826, + 10.746949145559208, + null, + -2.7658971358148947, + -4.8014607974495505, + null, + -2.7658971358148947, + -4.121682094168807, + null, + -1.3469441536515045, + 2.0750960065294444, + null, + -1.3469441536515045, + 1.9210624105784522, + null, + 1.1884262032218091, + 2.0750960065294444, + null, + 1.1884262032218091, + 1.9210624105784522, + null, + 1.34723325947132, + 2.0750960065294444, + null, + 1.34723325947132, + 1.9210624105784522, + null, + -7.899634721756038, + -9.211712305067408, + null, + 13.436293495916102, + 10.746949145559208, + null, + 4.876856900595087, + 2.0750960065294444, + null, + 4.876856900595087, + 1.9210624105784522, + null, + 2.2165170496703444, + 1.9210624105784522, + null, + 2.2165170496703444, + 2.0750960065294444, + null, + 4.688434393568661, + 2.0750960065294444, + null, + 4.688434393568661, + 1.9210624105784522, + null, + 1.5781068877957782, + 1.9210624105784522, + null, + 10.664924867260249, + 10.746949145559208, + null, + -1.9650770136308156, + -0.9647141359114324, + null, + 3.4031726727872074, + 2.0750960065294444, + null, + 3.4031726727872074, + 1.9210624105784522, + null, + 4.46791567217323, + 2.0750960065294444, + null, + 4.46791567217323, + 1.9210624105784522, + null, + 2.423269620133291, + 1.9210624105784522, + null, + -1.3214351689180779, + 2.0750960065294444, + null, + -1.3214351689180779, + 1.9210624105784522, + null, + -0.6852965869211495, + 2.0750960065294444, + null, + -0.6852965869211495, + 1.9210624105784522, + null, + 1.5519172594409865, + 2.0750960065294444, + null, + -14.833371203957313, + -12.770043278028636, + null, + 3.3083445120368262, + 2.0750960065294444, + null, + 3.3083445120368262, + 1.9210624105784522, + null, + 3.2264285628784295, + 2.0750960065294444, + null, + 3.2264285628784295, + 1.9210624105784522, + null, + 2.4091441663593947, + 1.9210624105784522, + null, + -1.068433738119321, + 2.0750960065294444, + null, + -1.068433738119321, + 1.9210624105784522, + null, + 5.2801480504009435, + 2.0750960065294444, + null, + 5.2801480504009435, + 1.9210624105784522, + null, + -22.29012892624258, + -22.14947240734907, + null, + -20.36215617292208, + -21.662760215424292, + null, + 7.913823981349797, + 10.042245008033184, + null, + 13.222084019474261, + 10.746949145559208, + null, + 12.138422273046151, + 10.746949145559208, + null, + -0.67044427073447, + 2.0750960065294444, + null, + -0.67044427073447, + 1.9210624105784522, + null, + 3.023087990068201, + 2.0750960065294444, + null, + 3.023087990068201, + 1.9210624105784522, + null, + 3.5667918078441505, + 1.9210624105784522, + null, + 4.259583645214979, + 1.9210624105784522, + null, + 4.259583645214979, + 2.0750960065294444, + null, + 9.10959051456911, + 9.00591792915805, + null, + -6.382156388167953, + -8.114924620385013, + null, + -6.382156388167953, + -4.09014144613155, + null, + 0.2433322479630976, + 2.0750960065294444, + null, + 0.2433322479630976, + 1.9210624105784522, + null, + 0.02380349387082925, + 2.0750960065294444, + null, + 0.02380349387082925, + 1.9210624105784522, + null, + 8.699575474266641, + 10.746949145559208, + null, + 12.517071438970168, + 10.746949145559208, + null, + -1.146229319688388, + 1.9210624105784522, + null, + 3.9370581924207073, + 2.0750960065294444, + null, + 3.9370581924207073, + 1.9210624105784522, + null, + 0.5444623587075397, + 1.9210624105784522, + null, + 4.0915415204171675, + 2.0750960065294444, + null, + 4.0915415204171675, + 1.9210624105784522, + null, + 4.545978277158587, + 1.9210624105784522, + null, + 4.545978277158587, + 2.0750960065294444, + null, + 3.4401847524258296, + 1.9210624105784522, + null, + 4.94332601132337, + 2.0750960065294444, + null, + 4.94332601132337, + 1.9210624105784522, + null, + -1.192610228575491, + 2.0750960065294444, + null, + -1.192610228575491, + 1.9210624105784522, + null, + 4.507364771453263, + 2.0750960065294444, + null, + 4.507364771453263, + 1.9210624105784522, + null, + 1.031823335220865, + 2.0750960065294444, + null, + 1.031823335220865, + 1.9210624105784522, + null, + 0.7348280496172432, + 2.0750960065294444, + null, + 0.7348280496172432, + 1.9210624105784522, + null, + 3.634152715842353, + 2.0750960065294444, + null, + 16.329629911080218, + 17.441033667083897, + null, + 16.329629911080218, + 14.210332439646615, + null, + -3.1009710458980595, + -5.205440506820717, + null, + -20.811748719318366, + -22.424846474687104, + null, + -20.811748719318366, + -19.333643113939573, + null, + -12.895238590095774, + -15.6485410514355, + null, + -17.002840880938518, + -17.602424048420065, + null, + -17.002840880938518, + -19.333643113939573, + null, + -18.003098440617467, + -17.602424048420065, + null, + -18.003098440617467, + -19.333643113939573, + null, + 16.701297491241327, + 16.452169485318528, + null, + -12.480679773055163, + -10.315126466090584, + null, + -7.382931085378695, + -9.645100687981396, + null, + -19.421273330321846, + -18.77373065630167, + null, + -20.691366867499276, + -19.211557661416975, + null, + -9.645100687981396, + -11.574766578920022, + null, + -19.88295886227899, + -22.424846474687104, + null, + -19.88295886227899, + -19.333643113939573, + null, + -1.9168963496698936, + -2.836225991117213, + null, + -10.390701474402691, + -11.30389562151104, + null, + 1.5398298287809027, + 3.525145431665082, + null, + 3.0899835481113476, + 5.369682545555909, + null, + -9.922275324532277, + -7.233663409839164, + null, + -19.826918228187647, + -17.602424048420065, + null, + -19.826918228187647, + -19.333643113939573, + null, + -1.557939548523383, + -3.830378203270949, + null, + -8.463521824269321, + -8.70415109596094, + null, + -8.011035787283092, + -5.564640261992574, + null, + -12.78697697521233, + -11.30389562151104, + null, + -9.305441849488401, + -11.30389562151104, + null, + 1.8524320463766142, + -0.24304139083144172, + null, + 1.8524320463766142, + 4.5578433839924655, + null, + -11.773686494743433, + -11.30389562151104, + null, + -17.665719101726783, + -20.286273678708202, + null, + -17.665719101726783, + -19.227328493292394, + null, + -14.072787864498226, + -11.30389562151104, + null, + -11.097063964411257, + -11.30389562151104, + null, + -13.61492915791775, + -11.30389562151104, + null, + -21.62141110792667, + -20.286273678708202, + null, + -21.62141110792667, + -19.227328493292394, + null, + -20.386059685612544, + -20.286273678708202, + null, + -11.094633503074649, + -8.644619795574375, + null, + -11.094633503074649, + -12.01044336192099, + null, + 4.5578433839924655, + 3.5635661792162865, + null, + 4.5578433839924655, + 6.0655381802650865, + null, + 14.117319922685468, + 16.27121152709186, + null, + 14.117319922685468, + 14.210332439646615, + null, + -20.164417924327868, + -20.286273678708202, + null, + 6.667110055897602, + 8.921549326543447, + null, + 11.890236135239256, + 11.940944669003084, + null, + 11.890236135239256, + 10.862739022277392, + null, + 11.890236135239256, + 10.862739022277392, + null, + -21.652278956892705, + -20.286273678708202, + null, + -21.652278956892705, + -19.227328493292394, + null, + 11.007447112644039, + 12.500834520805466, + null, + 11.007447112644039, + 8.921549326543447, + null, + -3.5930927319462813, + -2.834194264885367, + null, + -3.5930927319462813, + -4.849203406582981, + null, + -3.5930927319462813, + -1.8783040633672548, + null, + -3.5930927319462813, + -5.9138526823356266, + null, + -18.6964820290189, + -19.211557661416975, + null, + 3.084027228630518, + 1.2672067779403606, + null, + 4.5578433839924655, + 3.084027228630518, + null, + 0.97624240082111, + 1.9527502164133757, + null, + -11.766265266493022, + -11.30389562151104, + null, + 14.24741948194107, + 11.940944669003084, + null, + 14.24741948194107, + 15.16111670911235, + null, + -17.979596873501833, + -20.286273678708202, + null, + -6.820653777368942, + -7.228500587324407, + null, + -6.820653777368942, + -8.223763239439526, + null, + -10.77574769400655, + -12.93018385197875, + null, + -21.745942294135354, + -20.286273678708202, + null, + -3.531764696083626, + -4.130858921918941, + null, + -10.92073044683601, + -12.560295003820366, + null, + 14.869539287780078, + 12.495171965866554, + null, + -18.821957729217324, + -20.286273678708202, + null, + -18.821957729217324, + -19.227328493292394, + null, + -22.421792234858035, + -20.286273678708202, + null, + -6.745269020436412, + -9.211712305067408, + null, + -21.149513383400866, + -20.344640829601293, + null, + -21.149513383400866, + -19.211557661416975, + null, + 6.858066475130007, + 7.620310212411023, + null, + 4.5578433839924655, + 6.858066475130007, + null, + 8.104064627387435, + 5.971239979286481, + null, + 5.619239138287458, + 6.156588825490022, + null, + 5.619239138287458, + 8.169773290644287, + null, + -19.989999481225084, + -20.286273678708202, + null, + -22.614370116233452, + -20.286273678708202, + null, + 5.779903158930537, + 5.746694681873156, + null, + 4.5578433839924655, + 5.779903158930537, + null, + -16.51737999240955, + -14.690034116642924, + null, + -19.923354296149782, + -17.602424048420065, + null, + -19.923354296149782, + -17.289323099523585, + null, + -5.526254591027005, + -6.926326206032475, + null, + -5.526254591027005, + -8.098925907478591, + null, + -8.098925907478591, + -6.341107086583359, + null, + -8.098925907478591, + -9.622695772412136, + null, + -9.576328369821745, + -6.926326206032475, + null, + -8.098925907478591, + -9.576328369821745, + null, + -18.706584753985204, + -17.602424048420065, + null, + -18.706584753985204, + -17.289323099523585, + null, + 0.48854393504266813, + 2.4822510615899143, + null, + -1.1039008970779172, + 0.8238680595058228, + null, + -14.690034116642924, + -15.401206383320957, + null, + -12.304562961281185, + -14.002763598385519, + null, + -18.06631769066562, + -17.621025032978338, + null, + -15.401206383320957, + -18.06631769066562, + null, + -15.149575442226098, + -17.602424048420065, + null, + -15.149575442226098, + -17.289323099523585, + null, + -10.871376901885002, + -13.073799543345432, + null, + -8.098925907478591, + -10.871376901885002, + null, + -7.778928421150651, + -6.4793879657592806, + null, + -8.098925907478591, + -7.778928421150651, + null, + -8.752639112894949, + -6.178625902126945, + null, + -8.752639112894949, + -8.021165590309865, + null, + -15.903931115499725, + -17.602424048420065, + null, + -15.903931115499725, + -17.289323099523585, + null, + 15.609346006545493, + 16.47227486042157, + null, + 1.5684760085920115, + 1.0597336630653893, + null, + -8.484597070741174, + -6.4793879657592806, + null, + -8.098925907478591, + -8.484597070741174, + null, + -5.358300982736624, + -3.239099820874423, + null, + -14.690034116642924, + -15.633581302070548, + null, + 10.042667039743908, + 11.764837233757895, + null, + -5.026990040957724, + -6.926326206032475, + null, + -19.098378201640987, + -17.602424048420065, + null, + -19.098378201640987, + -17.289323099523585, + null, + -14.690034116642924, + -12.667427561341837, + null, + -8.143815192571171, + -6.926326206032475, + null, + -8.098925907478591, + -8.143815192571171, + null, + -17.044979383409984, + -17.208626664696368, + null, + -5.989201968263571, + -6.926326206032475, + null, + -8.098925907478591, + -5.989201968263571, + null, + 2.363041898277314, + 4.9942257378006065, + null, + 11.077943004444244, + 12.698764574124928, + null, + 4.869763475100926, + 7.0907603766426215, + null, + -6.891484104463479, + -6.926326206032475, + null, + -8.098925907478591, + -6.891484104463479, + null, + 11.228732658549816, + 10.212933849734718, + null, + -11.300917366159346, + -11.30389562151104, + null, + -10.968335135708738, + -11.30389562151104, + null, + 3.562939649882624, + 2.3693097894164348, + null, + 3.562939649882624, + 5.614858725722992, + null, + -1.0682502288603475, + -0.09033420362344827, + null, + -9.777165755904662, + -11.30389562151104, + null, + 1.7239387147090457, + -0.29399017359151897, + null, + 3.562939649882624, + 1.7239387147090457, + null, + -12.871013065755452, + -11.864982489192727, + null, + -12.871013065755452, + -15.041400491254338, + null, + 14.967139301367737, + 17.055148995726, + null, + 14.967139301367737, + 16.041813776705418, + null, + -3.0291294985260704, + -0.7417165954447063, + null, + -13.422449302999599, + -11.30389562151104, + null, + -17.286588360084316, + -18.77373065630167, + null, + 7.9355349788978415, + 8.571520874518438, + null, + 7.9355349788978415, + 8.034520839978383, + null, + 7.9355349788978415, + 5.953088650224671, + null, + -17.12555340084468, + -19.493438139991042, + null, + -17.12555340084468, + -15.041400491254338, + null, + -19.59883316402109, + -17.680271835579358, + null, + -20.43662854571034, + -21.709865075054704, + null, + -20.43662854571034, + -18.98434991865462, + null, + 8.21393396333229, + 9.479003699248967, + null, + 13.376046786916863, + 15.360819858645495, + null, + -8.462507797486271, + -11.30389562151104, + null, + 12.493705074878276, + 13.553752573797507, + null, + -19.681819792477782, + -18.012269836447572, + null, + -19.681819792477782, + -20.67399971981301, + null, + 16.02685507047808, + 14.142723120662852, + null, + 2.104592168482062, + 4.158855987079716, + null, + -20.89283130051644, + -18.77373065630167, + null, + -17.307425668424838, + -18.98434991865462, + null, + -17.307425668424838, + -19.30823670467353, + null, + -21.494525576807252, + -19.333643113939573, + null, + -21.494525576807252, + -22.424846474687104, + null, + 10.006171063011177, + 10.074147960343135, + null, + 10.006171063011177, + 12.36789644876426, + null, + 0.21220123988181472, + 1.345571334092393, + null, + -20.993335047761455, + -18.98434991865462, + null, + -20.993335047761455, + -19.30823670467353, + null, + -1.3818741523014602, + -3.765932094845125, + null, + 6.719216204864578, + 8.450856515397396, + null, + 6.719216204864578, + 8.034520839978383, + null, + -17.469818897962714, + -14.827710046890484, + null, + -17.469818897962714, + -15.483504593073866, + null, + 15.50842228219919, + 16.917009682577252, + null, + 15.50842228219919, + 16.710656712387618, + null, + 4.681434482402857, + 4.931777769677826, + null, + 9.082369476186, + 8.423106436504714, + null, + 11.790746027326676, + 9.362651807048024, + null, + -16.88850776851199, + -16.196594781142146, + null, + -16.88850776851199, + -17.09384139910882, + null, + -8.459815579199368, + -6.3020986051103085, + null, + -13.712982036242966, + -15.512660010110848, + null, + -13.712982036242966, + -16.253458215614497, + null, + -9.13963699288518, + -11.30389562151104, + null, + 10.555938436544011, + 9.216705572804882, + null, + -6.3910984391749635, + -5.90915471623139, + null, + -14.409926567080209, + -16.196594781142146, + null, + -14.409926567080209, + -12.491614119138562, + null, + -12.98892143086912, + -11.30389562151104, + null, + 10.932611287510872, + 10.608264638226434, + null, + -18.68338908240872, + -18.77373065630167, + null, + -12.620772053109167, + -14.002763598385519, + null, + -12.620772053109167, + -11.207167007021848, + null, + -7.01079485915003, + -8.223763239439526, + null, + -16.196594781142146, + -16.253458215614497, + null, + -16.196594781142146, + -15.512660010110848, + null, + -18.49803243754904, + -15.512660010110848, + null, + -3.709575119780668, + -5.492779155501329, + null, + -7.296028518713889, + -6.7591565356014, + null, + -15.80676283008967, + -14.002763598385519, + null, + -15.80676283008967, + -17.76062376092856, + null, + -6.298434965886316, + -7.997026832563643, + null, + 7.093355773757125, + 8.541739412405914, + null, + -17.4962316246469, + -20.004160335697236, + null, + 11.690563392102176, + 9.60797710877932, + null, + -15.116993281123253, + -15.512660010110848, + null, + -15.116993281123253, + -16.253458215614497, + null, + -3.034696504248963, + -0.9552211375723392, + null, + -13.908851939488352, + -16.06949059338767, + null, + 4.133263320515565, + 5.5986955025103615, + null, + -9.379632668231089, + -9.801914302966575, + null, + -9.379632668231089, + -6.387257207079732, + null, + -3.7125233612740947, + -6.387257207079732, + null, + -3.7125233612740947, + -2.979824350857239, + null, + 3.947054364112706, + 4.182109903014407, + null, + 15.897727748859731, + 14.913534821560878, + null, + 15.897727748859731, + 16.0907165727309, + null, + -20.177657876026064, + -18.012269836447572, + null, + -20.177657876026064, + -20.67399971981301, + null, + -4.706734631277135, + -6.387257207079732, + null, + -4.00309733359404, + -6.3020986051103085, + null, + -19.651474048276775, + -17.208626664696368, + null, + -1.4923075915022013, + -2.651460477752816, + null, + -5.608873812184631, + -3.122504065930367, + null, + -5.608873812184631, + -7.297077243601035, + null, + 3.1332077429638634, + 6.282395561912272, + null, + 3.1332077429638634, + 0.05304739933493979, + null, + 14.09475540936056, + 14.52797473671664, + null, + 14.09475540936056, + 12.782916372914405, + null, + -11.766265266493022, + -11.67638321800429, + null, + 11.49537123276815, + 9.900486173985867, + null, + 4.46094807351154, + 6.7117061951169745, + null, + -22.038311752593305, + -22.424846474687104, + null, + -22.038311752593305, + -19.333643113939573, + null, + -9.119484339706066, + -11.222157816000808, + null, + -9.119484339706066, + -7.297077243601035, + null, + -12.77939001745422, + -11.30389562151104, + null, + 13.787941597861545, + 16.55342736700985, + null, + 13.787941597861545, + 15.207573339010693, + null, + -13.61492915791775, + -16.133541414710997, + null, + -20.343425721138352, + -18.77373065630167, + null, + -19.1453352760063, + -21.192548496878892, + null, + -10.728995901369837, + -11.30389562151104, + null, + -13.61492915791775, + -12.827619657844297, + null, + -12.261340069009742, + -9.935989549568063, + null, + -7.9391584995377364, + -6.387257207079732, + null, + -7.9391584995377364, + -7.297077243601035, + null, + -8.695070081779994, + -9.935989549568063, + null, + -12.800156967487696, + -14.827710046890484, + null, + -12.800156967487696, + -15.483504593073866, + null, + -15.292661853197743, + -14.827710046890484, + null, + -15.292661853197743, + -15.483504593073866, + null, + -5.03321986359075, + -7.297077243601035, + null, + -5.03321986359075, + -2.979824350857239, + null, + -12.17454724263504, + -14.827710046890484, + null, + -12.17454724263504, + -11.421331187302464, + null, + -18.17962214270138, + -19.236373535869173, + null, + -18.17962214270138, + -15.483504593073866, + null, + 1.4502256073328483, + 3.784022178353783, + null, + -17.779940043559343, + -20.286273678708202, + null, + -17.779940043559343, + -19.227328493292394, + null, + -21.135681044425418, + -18.77373065630167, + null, + -4.645162072696039, + -2.889253833789248, + null, + -4.645162072696039, + -7.00867095864509, + null, + -7.347029070418839, + -8.165134748977561, + null, + -7.347029070418839, + -8.31123907060137, + null, + -7.527058336170182, + -8.165134748977561, + null, + -1.9964816595471717, + -3.45112685549332, + null, + -1.9964816595471717, + -2.979824350857239, + null, + -7.823569674801347, + -7.581652107499191, + null, + -14.593758817239356, + -14.827710046890484, + null, + -14.593758817239356, + -15.483504593073866, + null, + -9.279228283652973, + -7.763126090292656, + null, + -13.45733067489019, + -14.827710046890484, + null, + -13.45733067489019, + -15.483504593073866, + null, + -16.656508006139845, + -14.827710046890484, + null, + -16.656508006139845, + -15.483504593073866, + null, + -0.6624460657751019, + -1.6670677064266997, + null, + -1.9964816595471717, + -0.6624460657751019, + null, + -0.6624460657751019, + -2.979824350857239, + null, + -1.6670677064266997, + -3.45112685549332, + null, + -1.6670677064266997, + -2.979824350857239, + null, + -16.923732291878377, + -14.827710046890484, + null, + -16.923732291878377, + -15.483504593073866, + null, + -13.432933117193492, + -14.827710046890484, + null, + -13.432933117193492, + -15.483504593073866, + null, + -12.716616283024235, + -11.30389562151104, + null, + -12.576267823874279, + -11.222157816000808, + null, + -4.988851174421002, + -8.31123907060137, + null, + -4.988851174421002, + -2.979824350857239, + null, + -16.196594781142146, + -18.604913420528128, + null, + -14.219844714485582, + -14.827710046890484, + null, + -14.219844714485582, + -15.483504593073866, + null, + -5.49676867848029, + -6.810269075767733, + null, + -5.49676867848029, + -7.00867095864509, + null, + -1.782262802725937, + -3.45112685549332, + null, + -1.782262802725937, + -2.979824350857239, + null, + -6.043547508660142, + -8.165134748977561, + null, + -6.043547508660142, + -3.45112685549332, + null, + -16.187835821681944, + -14.827710046890484, + null, + -16.187835821681944, + -15.483504593073866, + null, + -17.55721376048522, + -14.827710046890484, + null, + -17.55721376048522, + -15.483504593073866, + null, + -9.903426371738261, + -7.763126090292656, + null, + -15.42783370989261, + -14.827710046890484, + null, + -15.42783370989261, + -15.483504593073866, + null ], + "y": [ + -11.41784983119164, + -8.962574775452547, + null, + -0.3191505947266975, + -2.604066672961298, + null, + 14.563425157507346, + 16.078387958536506, + null, + -14.928767740995028, + -16.360725881299764, + null, + 12.441412417665292, + 13.839564531885683, + null, + 7.376415353965956, + 9.174864958103376, + null, + 3.1129060197666063, + 4.919768640720008, + null, + 2.4908144892083617, + 4.2130750579698475, + null, + 15.021482056662148, + 16.078387958536506, + null, + 5.897594291101676, + 4.101848982924817, + null, + 9.169651932528753, + 9.690925923418042, + null, + -11.095225685990275, + -11.744992766532496, + null, + -11.095225685990275, + -12.698211541781175, + null, + 6.693421850634913, + 4.194904762733609, + null, + 17.163084400516215, + 16.078387958536506, + null, + -6.199672663045915, + -4.106378991622533, + null, + -11.095225685990275, + -9.54475726221417, + null, + -9.54475726221417, + -7.400154004532124, + null, + 7.606682919608337, + 9.690925923418042, + null, + -8.643131136849384, + -6.6930990946675495, + null, + 4.4281959742181645, + 3.4439382386814943, + null, + -13.039917034599503, + -12.302528127312577, + null, + -13.039917034599503, + -13.292069671287392, + null, + -13.354513757095816, + -10.774500868334462, + null, + 11.615308535874595, + 8.990022300149276, + null, + 8.319431909230527, + 8.990022300149276, + null, + 6.747021989871167, + 8.990022300149276, + null, + 20.151129500861902, + 18.154860779828756, + null, + -1.014117560634313, + -0.04352563651214125, + null, + 4.085374440780235, + 1.6391872487208237, + null, + 1.6983783682866247, + 0.504982924224546, + null, + 1.6983783682866247, + 1.920744405013267, + null, + 17.704182771702758, + 18.28180496454909, + null, + -1.836988980241852, + -3.8614397542849295, + null, + -5.410646669470725, + -6.859599605804259, + null, + -5.410646669470725, + -3.4534760131959032, + null, + 5.905584742205971, + 5.616088042149204, + null, + 16.9116407836773, + 16.078387958536506, + null, + 13.909649050767086, + 16.078387958536506, + null, + 7.392943235225893, + 8.990022300149276, + null, + -9.191426851740902, + -7.0968268976059985, + null, + -9.191426851740902, + -11.01675292462399, + null, + 10.566212120275992, + 8.990022300149276, + null, + 5.845138209038488, + 5.863529078603385, + null, + -15.932478831348119, + -15.904988146291458, + null, + 8.42095163109347, + 8.990022300149276, + null, + -4.181749506074347, + -3.8384112563004393, + null, + -4.181749506074347, + -2.880988053557643, + null, + 5.845138209038488, + 5.616088042149204, + null, + -13.49113086692568, + -11.892204745738725, + null, + -13.49113086692568, + -13.116468577073746, + null, + 6.2948126612798845, + 5.829409441710796, + null, + 6.056565991339081, + 7.462056618188281, + null, + -3.3158603968515785, + -4.374446904936558, + null, + -3.3158603968515785, + -3.4534760131959032, + null, + 5.773101343260647, + 4.910742427380435, + null, + 1.910696527206486, + 2.2862185828963737, + null, + -14.101186632430181, + -11.664393213523676, + null, + 17.923977436957234, + 16.078387958536506, + null, + 8.917560715652067, + 7.462056618188281, + null, + -13.47987385198965, + -14.23523543135729, + null, + -13.47987385198965, + -12.422118088881579, + null, + 8.811181639309124, + 8.938100151401368, + null, + 7.056190518170468, + 7.742192455313083, + null, + 7.056190518170468, + 8.938100151401368, + null, + -4.152181388798178, + -4.303139873798181, + null, + -4.152181388798178, + -1.5118495976447555, + null, + 9.461127802230648, + 11.676701598709945, + null, + 9.461127802230648, + 11.370588014134997, + null, + 16.485115557937508, + 14.088120902236506, + null, + -1.738626111239635, + -3.551830416019878, + null, + -1.738626111239635, + 0.7047065127334191, + null, + 8.679631193800969, + 9.038760739212032, + null, + 8.679631193800969, + 8.360793323455896, + null, + 10.752214832019265, + 9.038760739212032, + null, + 10.752214832019265, + 8.360793323455896, + null, + 13.360092859217884, + 11.676701598709945, + null, + 13.360092859217884, + 11.370588014134997, + null, + 13.360092859217884, + 15.992541251517293, + null, + 10.384122617117338, + 9.038760739212032, + null, + 10.384122617117338, + 8.360793323455896, + null, + 7.3790355399426995, + 9.038760739212032, + null, + 7.3790355399426995, + 8.360793323455896, + null, + -9.605448470353792, + -9.32085385524294, + null, + 11.031621934991103, + 9.038760739212032, + null, + 11.031621934991103, + 8.360793323455896, + null, + -15.30414419254827, + -15.997752088226333, + null, + 12.936896688477757, + 15.327026748623167, + null, + 12.936896688477757, + 11.370588014134997, + null, + 12.936896688477757, + 11.592669628746695, + null, + -4.9201950168038575, + -7.226419867543482, + null, + -4.9201950168038575, + -2.604066672961298, + null, + -6.44799110247403, + -6.477102282615005, + null, + -4.522168668775065, + -5.646043711423109, + null, + -4.522168668775065, + -3.8886481272351925, + null, + 17.086728149022562, + 15.327026748623167, + null, + 5.670674427131997, + 4.372486305461426, + null, + 5.670674427131997, + 8.360793323455896, + null, + -1.933629726538972, + -1.4379178178425596, + null, + -1.933629726538972, + -1.4425445909517411, + null, + 7.224926490329623, + 9.038760739212032, + null, + 7.224926490329623, + 8.360793323455896, + null, + -9.033684219439134, + -10.81042580912902, + null, + -9.033684219439134, + -6.2593714609761815, + null, + 6.762715777282194, + 9.038760739212032, + null, + 6.762715777282194, + 8.360793323455896, + null, + 9.382733033619129, + 9.038760739212032, + null, + 9.382733033619129, + 8.360793323455896, + null, + -16.407119973387434, + -16.10780131409305, + null, + -16.407119973387434, + -14.472775071887039, + null, + 8.771990720473475, + 9.038760739212032, + null, + 8.771990720473475, + 8.360793323455896, + null, + -3.5321037127623613, + -1.4285436402094343, + null, + -3.5321037127623613, + -5.932149619974707, + null, + 16.81988748065873, + 14.767233791165753, + null, + 14.128778297663642, + 14.767233791165753, + null, + 14.402004531741376, + 11.676701598709945, + null, + 14.402004531741376, + 15.327026748623167, + null, + 19.10560462635729, + 17.383012919612007, + null, + 19.10560462635729, + 17.793796128062674, + null, + 18.06774414259654, + 17.383012919612007, + null, + 18.06774414259654, + 17.793796128062674, + null, + 17.24649423926348, + 17.793796128062674, + null, + 17.24649423926348, + 17.383012919612007, + null, + 19.705241285603314, + 17.383012919612007, + null, + 19.705241285603314, + 17.793796128062674, + null, + 15.313781231311406, + 17.383012919612007, + null, + 15.313781231311406, + 17.793796128062674, + null, + 16.65288149533023, + 17.383012919612007, + null, + 16.65288149533023, + 17.793796128062674, + null, + 19.890667328757683, + 17.383012919612007, + null, + 19.890667328757683, + 17.793796128062674, + null, + 15.187491838181332, + 17.383012919612007, + null, + 15.187491838181332, + 17.793796128062674, + null, + 13.465769372913718, + 16.078387958536506, + null, + 12.002018544424272, + 14.767233791165753, + null, + 15.799421584936406, + 17.793796128062674, + null, + 15.799421584936406, + 17.383012919612007, + null, + 20.72323475585315, + 17.793796128062674, + null, + 21.04587969061181, + 17.793796128062674, + null, + 19.784811122815363, + 17.383012919612007, + null, + 19.784811122815363, + 17.793796128062674, + null, + 19.22959731105091, + 17.383012919612007, + null, + 19.22959731105091, + 17.793796128062674, + null, + 13.826408481082314, + 17.383012919612007, + null, + 18.767952289812886, + 17.383012919612007, + null, + 18.767952289812886, + 17.793796128062674, + null, + 18.923223236650237, + 17.383012919612007, + null, + 18.923223236650237, + 17.793796128062674, + null, + 18.967765523636846, + 17.383012919612007, + null, + 18.967765523636846, + 17.793796128062674, + null, + 17.082484524005473, + 14.767233791165753, + null, + 11.73220387244621, + 11.676701598709945, + null, + 16.763848269032998, + 17.383012919612007, + null, + 16.763848269032998, + 17.793796128062674, + null, + 14.45042316563831, + 17.793796128062674, + null, + 15.416673504931964, + 17.793796128062674, + null, + 15.416673504931964, + 17.383012919612007, + null, + 17.04525839776579, + 17.383012919612007, + null, + 17.04525839776579, + 17.793796128062674, + null, + 15.198173033933289, + 17.383012919612007, + null, + 15.198173033933289, + 17.793796128062674, + null, + 15.509850138532327, + 17.793796128062674, + null, + 15.509850138532327, + 17.383012919612007, + null, + 20.422046276551164, + 17.793796128062674, + null, + 15.348587334764682, + 14.767233791165753, + null, + -1.4367253891208716, + -3.4534760131959032, + null, + 18.230755152738165, + 17.383012919612007, + null, + 18.230755152738165, + 17.793796128062674, + null, + 15.96080110929009, + 17.383012919612007, + null, + 15.96080110929009, + 17.793796128062674, + null, + 18.591443566385063, + 17.383012919612007, + null, + 18.591443566385063, + 17.793796128062674, + null, + 17.7984951942672, + 14.767233791165753, + null, + 20.2870334481428, + 17.793796128062674, + null, + 20.2870334481428, + 17.383012919612007, + null, + 20.266847151047724, + 17.383012919612007, + null, + 20.266847151047724, + 17.793796128062674, + null, + 6.168592644825372, + 4.465129675313559, + null, + 12.929917572172492, + 14.767233791165753, + null, + -16.188840259217496, + -16.73740628526125, + null, + -16.188840259217496, + -13.883035825147553, + null, + 17.45326422341904, + 17.383012919612007, + null, + 17.45326422341904, + 17.793796128062674, + null, + 15.891006930342767, + 17.383012919612007, + null, + 15.891006930342767, + 17.793796128062674, + null, + 18.94508784767475, + 17.383012919612007, + null, + 18.94508784767475, + 17.793796128062674, + null, + 10.519721483283934, + 8.358374475986748, + null, + 13.129230606375554, + 14.767233791165753, + null, + 16.52347396583559, + 17.383012919612007, + null, + 16.52347396583559, + 17.793796128062674, + null, + 19.316441539819415, + 17.793796128062674, + null, + 19.316441539819415, + 17.383012919612007, + null, + 17.808924366013617, + 17.383012919612007, + null, + 17.808924366013617, + 17.793796128062674, + null, + 21.1696840444441, + 17.793796128062674, + null, + 16.61831528214116, + 14.767233791165753, + null, + -7.976749825501475, + -5.305916009062771, + null, + 19.290346621460948, + 17.383012919612007, + null, + 19.290346621460948, + 17.793796128062674, + null, + 16.15731021460754, + 17.383012919612007, + null, + 16.15731021460754, + 17.793796128062674, + null, + 21.13336581239527, + 17.793796128062674, + null, + 18.234061804870244, + 17.383012919612007, + null, + 18.234061804870244, + 17.793796128062674, + null, + 15.856463382283577, + 17.383012919612007, + null, + 15.856463382283577, + 17.793796128062674, + null, + 13.784212418396557, + 17.383012919612007, + null, + -1.6621571889152875, + -1.6958707182869648, + null, + 18.01643640847642, + 17.383012919612007, + null, + 18.01643640847642, + 17.793796128062674, + null, + 16.36563488724154, + 17.383012919612007, + null, + 16.36563488724154, + 17.793796128062674, + null, + 14.483331231403675, + 17.793796128062674, + null, + 16.218797803880534, + 17.383012919612007, + null, + 16.218797803880534, + 17.793796128062674, + null, + 17.97344143563745, + 17.383012919612007, + null, + 17.97344143563745, + 17.793796128062674, + null, + 3.2435804153559262, + 5.402907007667126, + null, + -1.7190425033339873, + -3.3418825609902427, + null, + -11.538314826060407, + -11.29234486182441, + null, + 14.968050808360838, + 14.767233791165753, + null, + 13.268802148583784, + 14.767233791165753, + null, + 18.60267962239572, + 17.383012919612007, + null, + 18.60267962239572, + 17.793796128062674, + null, + 20.241728533750628, + 17.383012919612007, + null, + 20.241728533750628, + 17.793796128062674, + null, + 20.79853884709638, + 17.793796128062674, + null, + 19.918504409491106, + 17.793796128062674, + null, + 19.918504409491106, + 17.383012919612007, + null, + -8.075294952812861, + -9.859605488067325, + null, + -9.043276446002867, + -10.51850244110427, + null, + -9.043276446002867, + -9.137995914259335, + null, + 15.933681725807805, + 17.383012919612007, + null, + 15.933681725807805, + 17.793796128062674, + null, + 17.696627605097554, + 17.383012919612007, + null, + 17.696627605097554, + 17.793796128062674, + null, + 12.882281213462367, + 14.767233791165753, + null, + 15.84746212104952, + 14.767233791165753, + null, + 19.671110638083217, + 17.793796128062674, + null, + 17.726574132118806, + 17.383012919612007, + null, + 17.726574132118806, + 17.793796128062674, + null, + 14.563940628397631, + 17.793796128062674, + null, + 16.82537621991663, + 17.383012919612007, + null, + 16.82537621991663, + 17.793796128062674, + null, + 15.685902967095739, + 17.793796128062674, + null, + 15.685902967095739, + 17.383012919612007, + null, + 14.741924159224842, + 17.793796128062674, + null, + 17.288374628006324, + 17.383012919612007, + null, + 17.288374628006324, + 17.793796128062674, + null, + 16.955054852390468, + 17.383012919612007, + null, + 16.955054852390468, + 17.793796128062674, + null, + 19.417153998704617, + 17.383012919612007, + null, + 19.417153998704617, + 17.793796128062674, + null, + 15.121700721238964, + 17.383012919612007, + null, + 15.121700721238964, + 17.793796128062674, + null, + 20.01606645238458, + 17.383012919612007, + null, + 20.01606645238458, + 17.793796128062674, + null, + 14.037141024682432, + 17.383012919612007, + null, + 3.1544494401128524, + 1.3912666665754576, + null, + 3.1544494401128524, + 2.1956684246829385, + null, + -13.066661108968566, + -11.24334686975556, + null, + 4.745329252150413, + 4.479700722985545, + null, + 4.745329252150413, + 6.283133275145741, + null, + -8.940121902174184, + -7.663941780080888, + null, + 7.359370399973077, + 10.013353150820242, + null, + 7.359370399973077, + 6.283133275145741, + null, + 7.860345828704119, + 10.013353150820242, + null, + 7.860345828704119, + 6.283133275145741, + null, + -1.0483669419973778, + 1.1675351373220524, + null, + -7.239415659631179, + -8.560329019195615, + null, + 21.38196294430897, + 21.267192965189107, + null, + 11.756915677045937, + 8.990022300149276, + null, + 8.766139719613324, + 11.019231894500201, + null, + 21.267192965189107, + 20.679356598004702, + null, + 4.000910950487333, + 4.479700722985545, + null, + 4.000910950487333, + 6.283133275145741, + null, + -3.050984643079521, + -5.604837463318379, + null, + 19.113938239837466, + 16.078387958536506, + null, + -5.727282121791605, + -7.6127595670645505, + null, + -5.014213553729322, + -5.1689120628515735, + null, + -14.635024378506934, + -15.112705528427458, + null, + 8.565962804238229, + 10.013353150820242, + null, + 8.565962804238229, + 6.283133275145741, + null, + -15.890185356621734, + -15.704248476240835, + null, + -4.731768730493457, + -7.2437152921068275, + null, + 1.6977476489656436, + 2.606777360852669, + null, + 18.154860779828756, + 16.078387958536506, + null, + 18.653276009869735, + 16.078387958536506, + null, + -10.497077346193414, + -9.501494765019928, + null, + -10.497077346193414, + -10.352351904705175, + null, + 18.288498919448255, + 16.078387958536506, + null, + 0.7431060248201902, + 0.3487538143716118, + null, + 0.7431060248201902, + 3.5750093576229536, + null, + 15.886827429789896, + 16.078387958536506, + null, + 17.675491799855113, + 16.078387958536506, + null, + 17.91680762187519, + 16.078387958536506, + null, + 3.2801266702880763, + 0.3487538143716118, + null, + 3.2801266702880763, + 3.5750093576229536, + null, + 2.682790066877558, + 0.3487538143716118, + null, + 6.919921812362842, + 6.955454609372014, + null, + 6.919921812362842, + 4.533380670144705, + null, + -10.352351904705175, + -12.815773744324012, + null, + -10.352351904705175, + -11.560932832329058, + null, + -0.2167048632130567, + -1.5838117775480958, + null, + -0.2167048632130567, + 2.1956684246829385, + null, + -1.4437986078242833, + 0.3487538143716118, + null, + -13.213591629517639, + -12.563721614285875, + null, + -9.095416110157403, + -7.191672826830745, + null, + -9.095416110157403, + -10.877664984855699, + null, + -9.095416110157403, + -10.877664984855699, + null, + 2.200082949398928, + 0.3487538143716118, + null, + 2.200082949398928, + 3.5750093576229536, + null, + -10.977681433120315, + -9.264580390810654, + null, + -10.977681433120315, + -12.563721614285875, + null, + -4.139923708678614, + -6.544841250435663, + null, + -4.139923708678614, + -2.092282979040595, + null, + -4.139923708678614, + -2.229840974733451, + null, + -4.139923708678614, + -4.930437010354747, + null, + 13.755204787793724, + 11.019231894500201, + null, + -9.389375362580894, + -11.666001141543395, + null, + -10.352351904705175, + -9.389375362580894, + null, + -4.650678621741309, + -6.788614306827233, + null, + 13.14269509207124, + 16.078387958536506, + null, + -7.08587920068209, + -7.191672826830745, + null, + -7.08587920068209, + -5.061312454241081, + null, + -1.3993516846995084, + 0.3487538143716118, + null, + -5.791712433332692, + -8.037705508396558, + null, + -5.791712433332692, + -3.4856970302562065, + null, + -6.6247330469256465, + -5.084769748144755, + null, + -1.329606090751159, + 0.3487538143716118, + null, + 3.2313711640535168, + 5.761312303766434, + null, + 9.361342440809858, + 7.3392480990631235, + null, + 0.09293232147749464, + -0.21275192955190647, + null, + 1.209753793553072, + 0.3487538143716118, + null, + 1.209753793553072, + 3.5750093576229536, + null, + -0.48006248890437775, + 0.3487538143716118, + null, + 6.970146957973679, + 8.358374475986748, + null, + 10.658134422431962, + 12.562034505438607, + null, + 10.658134422431962, + 11.019231894500201, + null, + -10.745486365243181, + -13.289357761350335, + null, + -10.352351904705175, + -10.745486365243181, + null, + -2.630122160653607, + -4.224096997078707, + null, + -13.37817835195691, + -15.046861827955759, + null, + -13.37817835195691, + -12.943459755203083, + null, + -2.6488870588261384, + 0.3487538143716118, + null, + 1.1284637138203344, + 0.3487538143716118, + null, + -7.849639953321988, + -5.666385925283225, + null, + -10.352351904705175, + -7.849639953321988, + null, + 16.485115557937508, + 18.205149271954912, + null, + 11.194279832169235, + 10.013353150820242, + null, + 11.194279832169235, + 13.124838098488237, + null, + 18.11772973076478, + 17.39378749907511, + null, + 18.11772973076478, + 18.36869277547518, + null, + 18.36869277547518, + 20.005484246747542, + null, + 18.36869277547518, + 20.19044152278915, + null, + 17.01996907089426, + 17.39378749907511, + null, + 18.36869277547518, + 17.01996907089426, + null, + 11.595139790769299, + 10.013353150820242, + null, + 11.595139790769299, + 13.124838098488237, + null, + -7.13790715441922, + -8.959712560695248, + null, + 8.315845491584616, + 7.2628399837274245, + null, + 18.205149271954912, + 15.240022562465837, + null, + 0.39921210150761577, + -1.3539356618448246, + null, + 15.456749694177255, + 14.088120902236506, + null, + 15.240022562465837, + 15.456749694177255, + null, + 10.683686813836902, + 10.013353150820242, + null, + 10.683686813836902, + 13.124838098488237, + null, + 19.259948835927116, + 18.28180496454909, + null, + 18.36869277547518, + 19.259948835927116, + null, + 20.292814361341577, + 22.30931842201065, + null, + 18.36869277547518, + 20.292814361341577, + null, + -15.13948322261798, + -15.82253266396615, + null, + -15.13948322261798, + -13.007901951342296, + null, + 11.845588325612976, + 10.013353150820242, + null, + 11.845588325612976, + 13.124838098488237, + null, + 5.160496908475858, + 3.057344673704041, + null, + -13.419203553399395, + -15.6883445079686, + null, + 21.208861475687293, + 22.30931842201065, + null, + 18.36869277547518, + 21.208861475687293, + null, + -1.722835548838387, + -0.6457974802125008, + null, + 18.205149271954912, + 17.442848322188567, + null, + -10.116396077525179, + -10.90056189569408, + null, + 19.497724196889425, + 17.39378749907511, + null, + 12.754326143960697, + 10.013353150820242, + null, + 12.754326143960697, + 13.124838098488237, + null, + 18.205149271954912, + 19.297972378051927, + null, + 15.550864910877822, + 17.39378749907511, + null, + 18.36869277547518, + 15.550864910877822, + null, + -7.424206763444326, + -5.328887492705765, + null, + 16.346818810590605, + 17.39378749907511, + null, + 18.36869277547518, + 16.346818810590605, + null, + 0.3714925176070536, + 0.8171930358840568, + null, + -8.336425792587137, + -9.5871294091661, + null, + -11.851964883592148, + -12.576677283266495, + null, + 15.481065975422577, + 17.39378749907511, + null, + 18.36869277547518, + 15.481065975422577, + null, + -1.6608044293760673, + 0.6717530029196913, + null, + 14.536521168193532, + 16.078387958536506, + null, + 18.749575040736318, + 16.078387958536506, + null, + -14.784209689560061, + -13.083035600058789, + null, + -14.784209689560061, + -15.039225888857187, + null, + -10.765615145602576, + -12.904548579206185, + null, + 15.823112383588235, + 16.078387958536506, + null, + -16.107136771139988, + -16.40188908183957, + null, + -14.784209689560061, + -16.107136771139988, + null, + 2.905998540799444, + 5.081672141197279, + null, + 2.905998540799444, + 1.9637307033203717, + null, + 3.4067017305617755, + 4.053067206800075, + null, + 3.4067017305617755, + 5.70560209996295, + null, + -9.996322178397245, + -11.788105138110016, + null, + 14.68692773332524, + 16.078387958536506, + null, + 6.62722182039912, + 8.990022300149276, + null, + -8.00184431026471, + -10.210094274413706, + null, + -8.00184431026471, + -5.810879984265869, + null, + -8.00184431026471, + -8.903823997123547, + null, + 3.0133512901104416, + 1.9311378293970232, + null, + 3.0133512901104416, + 1.9637307033203717, + null, + -4.992963192827679, + -3.6299632351379643, + null, + 5.065105885279123, + 6.612356435898742, + null, + 5.065105885279123, + 3.058246733183386, + null, + -10.738172367472357, + -11.984368454287786, + null, + -4.848489410736379, + -4.214243832496144, + null, + 15.742705654242956, + 16.078387958536506, + null, + 2.7142673474102605, + 4.753799496196119, + null, + -7.740250027484222, + -6.794048016799521, + null, + -7.740250027484222, + -4.831987792200215, + null, + 0.6549196038858884, + 2.069421512594827, + null, + -15.481322262367849, + -15.74961543883628, + null, + 9.9270695544927, + 8.990022300149276, + null, + 0.8165423895756174, + 3.058246733183386, + null, + 0.8165423895756174, + -0.6038874973527248, + null, + 6.154284321913229, + 6.283133275145741, + null, + 6.154284321913229, + 4.479700722985545, + null, + 9.736984239596191, + 11.370588014134997, + null, + 9.736984239596191, + 11.676701598709945, + null, + 4.5636886300375465, + 2.6835145948445223, + null, + 0.957578190014004, + 3.058246733183386, + null, + 0.957578190014004, + -0.6038874973527248, + null, + -5.085998787236029, + -6.047965183738679, + null, + -3.42059900122231, + -1.5891407097654695, + null, + -3.42059900122231, + -5.810879984265869, + null, + -9.972130387891122, + -10.774500868334462, + null, + -9.972130387891122, + -10.080675555238377, + null, + 1.8662812888160822, + 0.03081158009237195, + null, + 1.8662812888160822, + 3.5652763931909393, + null, + 1.3915121325117346, + 3.535429334045448, + null, + -0.7897807487357376, + -3.380320358295136, + null, + 3.867034254303558, + 3.3720009773173993, + null, + 14.660023764695653, + 12.541822085749827, + null, + 14.660023764695653, + 16.40909862876928, + null, + 10.723050937671145, + 11.740285647534707, + null, + 9.058664593148738, + 10.271599739081877, + null, + 9.058664593148738, + 10.15798883846539, + null, + 15.92515851367293, + 16.078387958536506, + null, + 17.192715010497217, + 18.647618505991836, + null, + 2.1783236015756544, + -0.24052084790888673, + null, + 13.556809084666387, + 12.541822085749827, + null, + 13.556809084666387, + 14.322218902949006, + null, + 16.61552754959879, + 16.078387958536506, + null, + -1.05163940544016, + -3.796144110693343, + null, + 6.600757008000865, + 8.990022300149276, + null, + -3.4904908702143596, + -1.3539356618448246, + null, + -3.4904908702143596, + -5.416392097389759, + null, + -1.3510602959274558, + -3.4856970302562065, + null, + 12.541822085749827, + 10.15798883846539, + null, + 12.541822085749827, + 10.271599739081877, + null, + 9.993919349668218, + 10.271599739081877, + null, + 22.451348423362106, + 21.994882085341327, + null, + -4.453520432336367, + -6.480360143131765, + null, + -2.737929922909383, + -1.3539356618448246, + null, + -2.737929922909383, + -3.7384427182958966, + null, + 20.929839497344, + 21.92974993447186, + null, + -0.38977616922758296, + -2.7658430560231495, + null, + 2.4761426404672013, + 2.77885309140947, + null, + -3.5658825848012548, + -4.882469985148913, + null, + 7.917490080628118, + 10.271599739081877, + null, + 7.917490080628118, + 10.15798883846539, + null, + 6.316864787134258, + 6.7657793056473725, + null, + 2.302973690967117, + 2.5222424384617113, + null, + 2.0018042499974964, + 4.019933376936817, + null, + -15.718792057509107, + -16.787552544072025, + null, + -15.718792057509107, + -16.856805274678862, + null, + -16.671786382411057, + -16.856805274678862, + null, + -16.671786382411057, + -14.472775071887039, + null, + -0.2712384574698234, + -2.4479939519338654, + null, + 7.928407480010116, + 9.862183182215059, + null, + 7.928407480010116, + 5.820481650095663, + null, + -6.123839096600868, + -6.794048016799521, + null, + -6.123839096600868, + -4.831987792200215, + null, + -17.75345309979954, + -16.856805274678862, + null, + 11.059371438887155, + 11.740285647534707, + null, + -6.111187613432292, + -5.328887492705765, + null, + 2.792614522565272, + 4.998308370682041, + null, + -13.430216856829446, + -14.041780289094081, + null, + -13.430216856829446, + -13.116468577073746, + null, + 22.569969063829703, + 21.0132610212424, + null, + 22.569969063829703, + 22.924746987035036, + null, + 12.35995628928166, + 10.038326449843389, + null, + 12.35995628928166, + 13.727303787440793, + null, + 13.14269509207124, + 10.933227463611694, + null, + -8.647443133101893, + -7.397820564553798, + null, + 9.298780186928086, + 9.71706183696487, + null, + 7.104101159161629, + 4.479700722985545, + null, + 7.104101159161629, + 6.283133275145741, + null, + -11.39984200097884, + -11.892204745738725, + null, + -11.39984200097884, + -13.116468577073746, + null, + 13.621527099783169, + 16.078387958536506, + null, + 8.995856150249049, + 7.837269659316131, + null, + 8.995856150249049, + 8.604227898026458, + null, + 17.91680762187519, + 16.803115192697085, + null, + 10.592206668431514, + 8.990022300149276, + null, + -1.9774734854256746, + -0.22142264816660884, + null, + 13.175545340601293, + 16.078387958536506, + null, + 17.91680762187519, + 20.460968550160327, + null, + 4.123014882661909, + 3.5809436333777107, + null, + -15.589877724228934, + -16.856805274678862, + null, + -15.589877724228934, + -13.116468577073746, + null, + 5.642890983127066, + 3.5809436333777107, + null, + -9.952608788794125, + -10.774500868334462, + null, + -9.952608788794125, + -10.080675555238377, + null, + -8.027540649214833, + -10.774500868334462, + null, + -8.027540649214833, + -10.080675555238377, + null, + -15.245004444152267, + -13.116468577073746, + null, + -15.245004444152267, + -14.472775071887039, + null, + -12.013371409411429, + -10.774500868334462, + null, + -12.013371409411429, + -14.248065303563243, + null, + -8.489446195769464, + -6.745753018806202, + null, + -8.489446195769464, + -10.080675555238377, + null, + 7.740284024415618, + 7.462056618188281, + null, + 2.118950875491419, + 0.3487538143716118, + null, + 2.118950875491419, + 3.5750093576229536, + null, + 8.528902493244408, + 8.990022300149276, + null, + 22.1115530105183, + 22.697040180978924, + null, + 22.1115530105183, + 21.174580092028506, + null, + -14.689872352838838, + -12.302528127312577, + null, + -14.689872352838838, + -13.292069671287392, + null, + -15.730989259150421, + -12.302528127312577, + null, + -11.715116762578333, + -10.680153816736555, + null, + -11.715116762578333, + -14.472775071887039, + null, + -16.100362768181665, + -13.927652348215837, + null, + -12.72139878404941, + -10.774500868334462, + null, + -12.72139878404941, + -10.080675555238377, + null, + 0.30177859190882206, + -1.1287029101082857, + null, + -8.84370468778664, + -10.774500868334462, + null, + -8.84370468778664, + -10.080675555238377, + null, + -8.79150611597912, + -10.774500868334462, + null, + -8.79150611597912, + -10.080675555238377, + null, + -14.130351738362913, + -12.48992128848705, + null, + -11.715116762578333, + -14.130351738362913, + null, + -14.130351738362913, + -14.472775071887039, + null, + -12.48992128848705, + -10.680153816736555, + null, + -12.48992128848705, + -14.472775071887039, + null, + -11.037333912370942, + -10.774500868334462, + null, + -11.037333912370942, + -10.080675555238377, + null, + -11.638205856093446, + -10.774500868334462, + null, + -11.638205856093446, + -10.080675555238377, + null, + 14.505756784524383, + 16.078387958536506, + null, + -13.764879078951406, + -11.892204745738725, + null, + -12.615899599100104, + -13.292069671287392, + null, + -12.615899599100104, + -14.472775071887039, + null, + 12.541822085749827, + 13.384150927324999, + null, + -8.156655997559467, + -10.774500868334462, + null, + -8.156655997559467, + -10.080675555238377, + null, + 20.455257782435655, + 22.671018755703376, + null, + 20.455257782435655, + 21.174580092028506, + null, + -13.222703067642193, + -10.680153816736555, + null, + -13.222703067642193, + -14.472775071887039, + null, + -10.415070747007382, + -12.302528127312577, + null, + -10.415070747007382, + -10.680153816736555, + null, + -12.049238335779727, + -10.774500868334462, + null, + -12.049238335779727, + -10.080675555238377, + null, + -11.054362849273527, + -10.774500868334462, + null, + -11.054362849273527, + -10.080675555238377, + null, + -2.29826269288487, + -1.1287029101082857, + null, + -12.886462232672827, + -10.774500868334462, + null, + -12.886462232672827, + -10.080675555238377, + null, + -11.41784983119164, + -8.962574775452547, + null, + -0.3191505947266975, + -2.604066672961298, + null, + 14.563425157507346, + 16.078387958536506, + null, + -14.928767740995028, + -16.360725881299764, + null, + 12.441412417665292, + 13.839564531885683, + null, + 7.376415353965956, + 9.174864958103376, + null, + 3.1129060197666063, + 4.919768640720008, + null, + 2.4908144892083617, + 4.2130750579698475, + null, + 15.021482056662148, + 16.078387958536506, + null, + 5.897594291101676, + 4.101848982924817, + null, + 9.169651932528753, + 9.690925923418042, + null, + -11.095225685990275, + -11.744992766532496, + null, + -11.095225685990275, + -12.698211541781175, + null, + 6.693421850634913, + 4.194904762733609, + null, + 17.163084400516215, + 16.078387958536506, + null, + -6.199672663045915, + -4.106378991622533, + null, + -11.095225685990275, + -9.54475726221417, + null, + -9.54475726221417, + -7.400154004532124, + null, + 7.606682919608337, + 9.690925923418042, + null, + -8.643131136849384, + -6.6930990946675495, + null, + 4.4281959742181645, + 3.4439382386814943, + null, + -13.039917034599503, + -12.302528127312577, + null, + -13.039917034599503, + -13.292069671287392, + null, + -13.354513757095816, + -10.774500868334462, + null, + 11.615308535874595, + 8.990022300149276, + null, + 8.319431909230527, + 8.990022300149276, + null, + 6.747021989871167, + 8.990022300149276, + null, + 20.151129500861902, + 18.154860779828756, + null, + -1.014117560634313, + -0.04352563651214125, + null, + 4.085374440780235, + 1.6391872487208237, + null, + 1.6983783682866247, + 0.504982924224546, + null, + 1.6983783682866247, + 1.920744405013267, + null, + 17.704182771702758, + 18.28180496454909, + null, + -1.836988980241852, + -3.8614397542849295, + null, + -5.410646669470725, + -6.859599605804259, + null, + -5.410646669470725, + -3.4534760131959032, + null, + 5.905584742205971, + 5.616088042149204, + null, + 16.9116407836773, + 16.078387958536506, + null, + 13.909649050767086, + 16.078387958536506, + null, + 7.392943235225893, + 8.990022300149276, + null, + -9.191426851740902, + -7.0968268976059985, + null, + -9.191426851740902, + -11.01675292462399, + null, + 10.566212120275992, + 8.990022300149276, + null, + 5.845138209038488, + 5.863529078603385, + null, + -15.932478831348119, + -15.904988146291458, + null, + 8.42095163109347, + 8.990022300149276, + null, + -4.181749506074347, + -3.8384112563004393, + null, + -4.181749506074347, + -2.880988053557643, + null, + 5.845138209038488, + 5.616088042149204, + null, + -13.49113086692568, + -11.892204745738725, + null, + -13.49113086692568, + -13.116468577073746, + null, + 6.2948126612798845, + 5.829409441710796, + null, + 6.056565991339081, + 7.462056618188281, + null, + -3.3158603968515785, + -4.374446904936558, + null, + -3.3158603968515785, + -3.4534760131959032, + null, + 5.773101343260647, + 4.910742427380435, + null, + 1.910696527206486, + 2.2862185828963737, + null, + -14.101186632430181, + -11.664393213523676, + null, + 17.923977436957234, + 16.078387958536506, + null, + 8.917560715652067, + 7.462056618188281, + null, + -13.47987385198965, + -14.23523543135729, + null, + -13.47987385198965, + -12.422118088881579, + null, + 8.811181639309124, + 8.938100151401368, + null, + 7.056190518170468, + 7.742192455313083, + null, + 7.056190518170468, + 8.938100151401368, + null, + -4.152181388798178, + -4.303139873798181, + null, + -4.152181388798178, + -1.5118495976447555, + null, + 9.461127802230648, + 11.676701598709945, + null, + 9.461127802230648, + 11.370588014134997, + null, + 16.485115557937508, + 14.088120902236506, + null, + -1.738626111239635, + -3.551830416019878, + null, + -1.738626111239635, + 0.7047065127334191, + null, + 8.679631193800969, + 9.038760739212032, + null, + 8.679631193800969, + 8.360793323455896, + null, + 10.752214832019265, + 9.038760739212032, + null, + 10.752214832019265, + 8.360793323455896, + null, + 13.360092859217884, + 11.676701598709945, + null, + 13.360092859217884, + 11.370588014134997, + null, + 13.360092859217884, + 15.992541251517293, + null, + 10.384122617117338, + 9.038760739212032, + null, + 10.384122617117338, + 8.360793323455896, + null, + 7.3790355399426995, + 9.038760739212032, + null, + 7.3790355399426995, + 8.360793323455896, + null, + -9.605448470353792, + -9.32085385524294, + null, + 11.031621934991103, + 9.038760739212032, + null, + 11.031621934991103, + 8.360793323455896, + null, + -15.30414419254827, + -15.997752088226333, + null, + 12.936896688477757, + 15.327026748623167, + null, + 12.936896688477757, + 11.370588014134997, + null, + 12.936896688477757, + 11.592669628746695, + null, + -4.9201950168038575, + -7.226419867543482, + null, + -4.9201950168038575, + -2.604066672961298, + null, + -6.44799110247403, + -6.477102282615005, + null, + -4.522168668775065, + -5.646043711423109, + null, + -4.522168668775065, + -3.8886481272351925, + null, + 17.086728149022562, + 15.327026748623167, + null, + 5.670674427131997, + 4.372486305461426, + null, + 5.670674427131997, + 8.360793323455896, + null, + -1.933629726538972, + -1.4379178178425596, + null, + -1.933629726538972, + -1.4425445909517411, + null, + 7.224926490329623, + 9.038760739212032, + null, + 7.224926490329623, + 8.360793323455896, + null, + -9.033684219439134, + -10.81042580912902, + null, + -9.033684219439134, + -6.2593714609761815, + null, + 6.762715777282194, + 9.038760739212032, + null, + 6.762715777282194, + 8.360793323455896, + null, + 9.382733033619129, + 9.038760739212032, + null, + 9.382733033619129, + 8.360793323455896, + null, + -16.407119973387434, + -16.10780131409305, + null, + -16.407119973387434, + -14.472775071887039, + null, + 8.771990720473475, + 9.038760739212032, + null, + 8.771990720473475, + 8.360793323455896, + null, + -3.5321037127623613, + -1.4285436402094343, + null, + -3.5321037127623613, + -5.932149619974707, + null, + 16.81988748065873, + 14.767233791165753, + null, + 14.128778297663642, + 14.767233791165753, + null, + 14.402004531741376, + 11.676701598709945, + null, + 14.402004531741376, + 15.327026748623167, + null, + 19.10560462635729, + 17.383012919612007, + null, + 19.10560462635729, + 17.793796128062674, + null, + 18.06774414259654, + 17.383012919612007, + null, + 18.06774414259654, + 17.793796128062674, + null, + 17.24649423926348, + 17.793796128062674, + null, + 17.24649423926348, + 17.383012919612007, + null, + 19.705241285603314, + 17.383012919612007, + null, + 19.705241285603314, + 17.793796128062674, + null, + 15.313781231311406, + 17.383012919612007, + null, + 15.313781231311406, + 17.793796128062674, + null, + 16.65288149533023, + 17.383012919612007, + null, + 16.65288149533023, + 17.793796128062674, + null, + 19.890667328757683, + 17.383012919612007, + null, + 19.890667328757683, + 17.793796128062674, + null, + 15.187491838181332, + 17.383012919612007, + null, + 15.187491838181332, + 17.793796128062674, + null, + 13.465769372913718, + 16.078387958536506, + null, + 12.002018544424272, + 14.767233791165753, + null, + 15.799421584936406, + 17.793796128062674, + null, + 15.799421584936406, + 17.383012919612007, + null, + 20.72323475585315, + 17.793796128062674, + null, + 21.04587969061181, + 17.793796128062674, + null, + 19.784811122815363, + 17.383012919612007, + null, + 19.784811122815363, + 17.793796128062674, + null, + 19.22959731105091, + 17.383012919612007, + null, + 19.22959731105091, + 17.793796128062674, + null, + 13.826408481082314, + 17.383012919612007, + null, + 18.767952289812886, + 17.383012919612007, + null, + 18.767952289812886, + 17.793796128062674, + null, + 18.923223236650237, + 17.383012919612007, + null, + 18.923223236650237, + 17.793796128062674, + null, + 18.967765523636846, + 17.383012919612007, + null, + 18.967765523636846, + 17.793796128062674, + null, + 17.082484524005473, + 14.767233791165753, + null, + 11.73220387244621, + 11.676701598709945, + null, + 16.763848269032998, + 17.383012919612007, + null, + 16.763848269032998, + 17.793796128062674, + null, + 14.45042316563831, + 17.793796128062674, + null, + 15.416673504931964, + 17.793796128062674, + null, + 15.416673504931964, + 17.383012919612007, + null, + 17.04525839776579, + 17.383012919612007, + null, + 17.04525839776579, + 17.793796128062674, + null, + 15.198173033933289, + 17.383012919612007, + null, + 15.198173033933289, + 17.793796128062674, + null, + 15.509850138532327, + 17.793796128062674, + null, + 15.509850138532327, + 17.383012919612007, + null, + 20.422046276551164, + 17.793796128062674, + null, + 15.348587334764682, + 14.767233791165753, + null, + -1.4367253891208716, + -3.4534760131959032, + null, + 18.230755152738165, + 17.383012919612007, + null, + 18.230755152738165, + 17.793796128062674, + null, + 15.96080110929009, + 17.383012919612007, + null, + 15.96080110929009, + 17.793796128062674, + null, + 18.591443566385063, + 17.383012919612007, + null, + 18.591443566385063, + 17.793796128062674, + null, + 17.7984951942672, + 14.767233791165753, + null, + 20.2870334481428, + 17.793796128062674, + null, + 20.2870334481428, + 17.383012919612007, + null, + 20.266847151047724, + 17.383012919612007, + null, + 20.266847151047724, + 17.793796128062674, + null, + 6.168592644825372, + 4.465129675313559, + null, + 12.929917572172492, + 14.767233791165753, + null, + -16.188840259217496, + -16.73740628526125, + null, + -16.188840259217496, + -13.883035825147553, + null, + 17.45326422341904, + 17.383012919612007, + null, + 17.45326422341904, + 17.793796128062674, + null, + 15.891006930342767, + 17.383012919612007, + null, + 15.891006930342767, + 17.793796128062674, + null, + 18.94508784767475, + 17.383012919612007, + null, + 18.94508784767475, + 17.793796128062674, + null, + 10.519721483283934, + 8.358374475986748, + null, + 13.129230606375554, + 14.767233791165753, + null, + 16.52347396583559, + 17.383012919612007, + null, + 16.52347396583559, + 17.793796128062674, + null, + 19.316441539819415, + 17.793796128062674, + null, + 19.316441539819415, + 17.383012919612007, + null, + 17.808924366013617, + 17.383012919612007, + null, + 17.808924366013617, + 17.793796128062674, + null, + 21.1696840444441, + 17.793796128062674, + null, + 16.61831528214116, + 14.767233791165753, + null, + -7.976749825501475, + -5.305916009062771, + null, + 19.290346621460948, + 17.383012919612007, + null, + 19.290346621460948, + 17.793796128062674, + null, + 16.15731021460754, + 17.383012919612007, + null, + 16.15731021460754, + 17.793796128062674, + null, + 21.13336581239527, + 17.793796128062674, + null, + 18.234061804870244, + 17.383012919612007, + null, + 18.234061804870244, + 17.793796128062674, + null, + 15.856463382283577, + 17.383012919612007, + null, + 15.856463382283577, + 17.793796128062674, + null, + 13.784212418396557, + 17.383012919612007, + null, + -1.6621571889152875, + -1.6958707182869648, + null, + 18.01643640847642, + 17.383012919612007, + null, + 18.01643640847642, + 17.793796128062674, + null, + 16.36563488724154, + 17.383012919612007, + null, + 16.36563488724154, + 17.793796128062674, + null, + 14.483331231403675, + 17.793796128062674, + null, + 16.218797803880534, + 17.383012919612007, + null, + 16.218797803880534, + 17.793796128062674, + null, + 17.97344143563745, + 17.383012919612007, + null, + 17.97344143563745, + 17.793796128062674, + null, + 3.2435804153559262, + 5.402907007667126, + null, + -1.7190425033339873, + -3.3418825609902427, + null, + -11.538314826060407, + -11.29234486182441, + null, + 14.968050808360838, + 14.767233791165753, + null, + 13.268802148583784, + 14.767233791165753, + null, + 18.60267962239572, + 17.383012919612007, + null, + 18.60267962239572, + 17.793796128062674, + null, + 20.241728533750628, + 17.383012919612007, + null, + 20.241728533750628, + 17.793796128062674, + null, + 20.79853884709638, + 17.793796128062674, + null, + 19.918504409491106, + 17.793796128062674, + null, + 19.918504409491106, + 17.383012919612007, + null, + -8.075294952812861, + -9.859605488067325, + null, + -9.043276446002867, + -10.51850244110427, + null, + -9.043276446002867, + -9.137995914259335, + null, + 15.933681725807805, + 17.383012919612007, + null, + 15.933681725807805, + 17.793796128062674, + null, + 17.696627605097554, + 17.383012919612007, + null, + 17.696627605097554, + 17.793796128062674, + null, + 12.882281213462367, + 14.767233791165753, + null, + 15.84746212104952, + 14.767233791165753, + null, + 19.671110638083217, + 17.793796128062674, + null, + 17.726574132118806, + 17.383012919612007, + null, + 17.726574132118806, + 17.793796128062674, + null, + 14.563940628397631, + 17.793796128062674, + null, + 16.82537621991663, + 17.383012919612007, + null, + 16.82537621991663, + 17.793796128062674, + null, + 15.685902967095739, + 17.793796128062674, + null, + 15.685902967095739, + 17.383012919612007, + null, + 14.741924159224842, + 17.793796128062674, + null, + 17.288374628006324, + 17.383012919612007, + null, + 17.288374628006324, + 17.793796128062674, + null, + 16.955054852390468, + 17.383012919612007, + null, + 16.955054852390468, + 17.793796128062674, + null, + 19.417153998704617, + 17.383012919612007, + null, + 19.417153998704617, + 17.793796128062674, + null, + 15.121700721238964, + 17.383012919612007, + null, + 15.121700721238964, + 17.793796128062674, + null, + 20.01606645238458, + 17.383012919612007, + null, + 20.01606645238458, + 17.793796128062674, + null, + 14.037141024682432, + 17.383012919612007, + null, + 3.1544494401128524, + 1.3912666665754576, + null, + 3.1544494401128524, + 2.1956684246829385, + null, + -13.066661108968566, + -11.24334686975556, + null, + 4.745329252150413, + 4.479700722985545, + null, + 4.745329252150413, + 6.283133275145741, + null, + -8.940121902174184, + -7.663941780080888, + null, + 7.359370399973077, + 10.013353150820242, + null, + 7.359370399973077, + 6.283133275145741, + null, + 7.860345828704119, + 10.013353150820242, + null, + 7.860345828704119, + 6.283133275145741, + null, + -1.0483669419973778, + 1.1675351373220524, + null, + -7.239415659631179, + -8.560329019195615, + null, + 21.38196294430897, + 21.267192965189107, + null, + 11.756915677045937, + 8.990022300149276, + null, + 8.766139719613324, + 11.019231894500201, + null, + 21.267192965189107, + 20.679356598004702, + null, + 4.000910950487333, + 4.479700722985545, + null, + 4.000910950487333, + 6.283133275145741, + null, + -3.050984643079521, + -5.604837463318379, + null, + 19.113938239837466, + 16.078387958536506, + null, + -5.727282121791605, + -7.6127595670645505, + null, + -5.014213553729322, + -5.1689120628515735, + null, + -14.635024378506934, + -15.112705528427458, + null, + 8.565962804238229, + 10.013353150820242, + null, + 8.565962804238229, + 6.283133275145741, + null, + -15.890185356621734, + -15.704248476240835, + null, + -4.731768730493457, + -7.2437152921068275, + null, + 1.6977476489656436, + 2.606777360852669, + null, + 18.154860779828756, + 16.078387958536506, + null, + 18.653276009869735, + 16.078387958536506, + null, + -10.497077346193414, + -9.501494765019928, + null, + -10.497077346193414, + -10.352351904705175, + null, + 18.288498919448255, + 16.078387958536506, + null, + 0.7431060248201902, + 0.3487538143716118, + null, + 0.7431060248201902, + 3.5750093576229536, + null, + 15.886827429789896, + 16.078387958536506, + null, + 17.675491799855113, + 16.078387958536506, + null, + 17.91680762187519, + 16.078387958536506, + null, + 3.2801266702880763, + 0.3487538143716118, + null, + 3.2801266702880763, + 3.5750093576229536, + null, + 2.682790066877558, + 0.3487538143716118, + null, + 6.919921812362842, + 6.955454609372014, + null, + 6.919921812362842, + 4.533380670144705, + null, + -10.352351904705175, + -12.815773744324012, + null, + -10.352351904705175, + -11.560932832329058, + null, + -0.2167048632130567, + -1.5838117775480958, + null, + -0.2167048632130567, + 2.1956684246829385, + null, + -1.4437986078242833, + 0.3487538143716118, + null, + -13.213591629517639, + -12.563721614285875, + null, + -9.095416110157403, + -7.191672826830745, + null, + -9.095416110157403, + -10.877664984855699, + null, + -9.095416110157403, + -10.877664984855699, + null, + 2.200082949398928, + 0.3487538143716118, + null, + 2.200082949398928, + 3.5750093576229536, + null, + -10.977681433120315, + -9.264580390810654, + null, + -10.977681433120315, + -12.563721614285875, + null, + -4.139923708678614, + -6.544841250435663, + null, + -4.139923708678614, + -2.092282979040595, + null, + -4.139923708678614, + -2.229840974733451, + null, + -4.139923708678614, + -4.930437010354747, + null, + 13.755204787793724, + 11.019231894500201, + null, + -9.389375362580894, + -11.666001141543395, + null, + -10.352351904705175, + -9.389375362580894, + null, + -4.650678621741309, + -6.788614306827233, + null, + 13.14269509207124, + 16.078387958536506, + null, + -7.08587920068209, + -7.191672826830745, + null, + -7.08587920068209, + -5.061312454241081, + null, + -1.3993516846995084, + 0.3487538143716118, + null, + -5.791712433332692, + -8.037705508396558, + null, + -5.791712433332692, + -3.4856970302562065, + null, + -6.6247330469256465, + -5.084769748144755, + null, + -1.329606090751159, + 0.3487538143716118, + null, + 3.2313711640535168, + 5.761312303766434, + null, + 9.361342440809858, + 7.3392480990631235, + null, + 0.09293232147749464, + -0.21275192955190647, + null, + 1.209753793553072, + 0.3487538143716118, + null, + 1.209753793553072, + 3.5750093576229536, + null, + -0.48006248890437775, + 0.3487538143716118, + null, + 6.970146957973679, + 8.358374475986748, + null, + 10.658134422431962, + 12.562034505438607, + null, + 10.658134422431962, + 11.019231894500201, + null, + -10.745486365243181, + -13.289357761350335, + null, + -10.352351904705175, + -10.745486365243181, + null, + -2.630122160653607, + -4.224096997078707, + null, + -13.37817835195691, + -15.046861827955759, + null, + -13.37817835195691, + -12.943459755203083, + null, + -2.6488870588261384, + 0.3487538143716118, + null, + 1.1284637138203344, + 0.3487538143716118, + null, + -7.849639953321988, + -5.666385925283225, + null, + -10.352351904705175, + -7.849639953321988, + null, + 16.485115557937508, + 18.205149271954912, + null, + 11.194279832169235, + 10.013353150820242, + null, + 11.194279832169235, + 13.124838098488237, + null, + 18.11772973076478, + 17.39378749907511, + null, + 18.11772973076478, + 18.36869277547518, + null, + 18.36869277547518, + 20.005484246747542, + null, + 18.36869277547518, + 20.19044152278915, + null, + 17.01996907089426, + 17.39378749907511, + null, + 18.36869277547518, + 17.01996907089426, + null, + 11.595139790769299, + 10.013353150820242, + null, + 11.595139790769299, + 13.124838098488237, + null, + -7.13790715441922, + -8.959712560695248, + null, + 8.315845491584616, + 7.2628399837274245, + null, + 18.205149271954912, + 15.240022562465837, + null, + 0.39921210150761577, + -1.3539356618448246, + null, + 15.456749694177255, + 14.088120902236506, + null, + 15.240022562465837, + 15.456749694177255, + null, + 10.683686813836902, + 10.013353150820242, + null, + 10.683686813836902, + 13.124838098488237, + null, + 19.259948835927116, + 18.28180496454909, + null, + 18.36869277547518, + 19.259948835927116, + null, + 20.292814361341577, + 22.30931842201065, + null, + 18.36869277547518, + 20.292814361341577, + null, + -15.13948322261798, + -15.82253266396615, + null, + -15.13948322261798, + -13.007901951342296, + null, + 11.845588325612976, + 10.013353150820242, + null, + 11.845588325612976, + 13.124838098488237, + null, + 5.160496908475858, + 3.057344673704041, + null, + -13.419203553399395, + -15.6883445079686, + null, + 21.208861475687293, + 22.30931842201065, + null, + 18.36869277547518, + 21.208861475687293, + null, + -1.722835548838387, + -0.6457974802125008, + null, + 18.205149271954912, + 17.442848322188567, + null, + -10.116396077525179, + -10.90056189569408, + null, + 19.497724196889425, + 17.39378749907511, + null, + 12.754326143960697, + 10.013353150820242, + null, + 12.754326143960697, + 13.124838098488237, + null, + 18.205149271954912, + 19.297972378051927, + null, + 15.550864910877822, + 17.39378749907511, + null, + 18.36869277547518, + 15.550864910877822, + null, + -7.424206763444326, + -5.328887492705765, + null, + 16.346818810590605, + 17.39378749907511, + null, + 18.36869277547518, + 16.346818810590605, + null, + 0.3714925176070536, + 0.8171930358840568, + null, + -8.336425792587137, + -9.5871294091661, + null, + -11.851964883592148, + -12.576677283266495, + null, + 15.481065975422577, + 17.39378749907511, + null, + 18.36869277547518, + 15.481065975422577, + null, + -1.6608044293760673, + 0.6717530029196913, + null, + 14.536521168193532, + 16.078387958536506, + null, + 18.749575040736318, + 16.078387958536506, + null, + -14.784209689560061, + -13.083035600058789, + null, + -14.784209689560061, + -15.039225888857187, + null, + -10.765615145602576, + -12.904548579206185, + null, + 15.823112383588235, + 16.078387958536506, + null, + -16.107136771139988, + -16.40188908183957, + null, + -14.784209689560061, + -16.107136771139988, + null, + 2.905998540799444, + 5.081672141197279, + null, + 2.905998540799444, + 1.9637307033203717, + null, + 3.4067017305617755, + 4.053067206800075, + null, + 3.4067017305617755, + 5.70560209996295, + null, + -9.996322178397245, + -11.788105138110016, + null, + 14.68692773332524, + 16.078387958536506, + null, + 6.62722182039912, + 8.990022300149276, + null, + -8.00184431026471, + -10.210094274413706, + null, + -8.00184431026471, + -5.810879984265869, + null, + -8.00184431026471, + -8.903823997123547, + null, + 3.0133512901104416, + 1.9311378293970232, + null, + 3.0133512901104416, + 1.9637307033203717, + null, + -4.992963192827679, + -3.6299632351379643, + null, + 5.065105885279123, + 6.612356435898742, + null, + 5.065105885279123, + 3.058246733183386, + null, + -10.738172367472357, + -11.984368454287786, + null, + -4.848489410736379, + -4.214243832496144, + null, + 15.742705654242956, + 16.078387958536506, + null, + 2.7142673474102605, + 4.753799496196119, + null, + -7.740250027484222, + -6.794048016799521, + null, + -7.740250027484222, + -4.831987792200215, + null, + 0.6549196038858884, + 2.069421512594827, + null, + -15.481322262367849, + -15.74961543883628, + null, + 9.9270695544927, + 8.990022300149276, + null, + 0.8165423895756174, + 3.058246733183386, + null, + 0.8165423895756174, + -0.6038874973527248, + null, + 6.154284321913229, + 6.283133275145741, + null, + 6.154284321913229, + 4.479700722985545, + null, + 9.736984239596191, + 11.370588014134997, + null, + 9.736984239596191, + 11.676701598709945, + null, + 4.5636886300375465, + 2.6835145948445223, + null, + 0.957578190014004, + 3.058246733183386, + null, + 0.957578190014004, + -0.6038874973527248, + null, + -5.085998787236029, + -6.047965183738679, + null, + -3.42059900122231, + -1.5891407097654695, + null, + -3.42059900122231, + -5.810879984265869, + null, + -9.972130387891122, + -10.774500868334462, + null, + -9.972130387891122, + -10.080675555238377, + null, + 1.8662812888160822, + 0.03081158009237195, + null, + 1.8662812888160822, + 3.5652763931909393, + null, + 1.3915121325117346, + 3.535429334045448, + null, + -0.7897807487357376, + -3.380320358295136, + null, + 3.867034254303558, + 3.3720009773173993, + null, + 14.660023764695653, + 12.541822085749827, + null, + 14.660023764695653, + 16.40909862876928, + null, + 10.723050937671145, + 11.740285647534707, + null, + 9.058664593148738, + 10.271599739081877, + null, + 9.058664593148738, + 10.15798883846539, + null, + 15.92515851367293, + 16.078387958536506, + null, + 17.192715010497217, + 18.647618505991836, + null, + 2.1783236015756544, + -0.24052084790888673, + null, + 13.556809084666387, + 12.541822085749827, + null, + 13.556809084666387, + 14.322218902949006, + null, + 16.61552754959879, + 16.078387958536506, + null, + -1.05163940544016, + -3.796144110693343, + null, + 6.600757008000865, + 8.990022300149276, + null, + -3.4904908702143596, + -1.3539356618448246, + null, + -3.4904908702143596, + -5.416392097389759, + null, + -1.3510602959274558, + -3.4856970302562065, + null, + 12.541822085749827, + 10.15798883846539, + null, + 12.541822085749827, + 10.271599739081877, + null, + 9.993919349668218, + 10.271599739081877, + null, + 22.451348423362106, + 21.994882085341327, + null, + -4.453520432336367, + -6.480360143131765, + null, + -2.737929922909383, + -1.3539356618448246, + null, + -2.737929922909383, + -3.7384427182958966, + null, + 20.929839497344, + 21.92974993447186, + null, + -0.38977616922758296, + -2.7658430560231495, + null, + 2.4761426404672013, + 2.77885309140947, + null, + -3.5658825848012548, + -4.882469985148913, + null, + 7.917490080628118, + 10.271599739081877, + null, + 7.917490080628118, + 10.15798883846539, + null, + 6.316864787134258, + 6.7657793056473725, + null, + 2.302973690967117, + 2.5222424384617113, + null, + 2.0018042499974964, + 4.019933376936817, + null, + -15.718792057509107, + -16.787552544072025, + null, + -15.718792057509107, + -16.856805274678862, + null, + -16.671786382411057, + -16.856805274678862, + null, + -16.671786382411057, + -14.472775071887039, + null, + -0.2712384574698234, + -2.4479939519338654, + null, + 7.928407480010116, + 9.862183182215059, + null, + 7.928407480010116, + 5.820481650095663, + null, + -6.123839096600868, + -6.794048016799521, + null, + -6.123839096600868, + -4.831987792200215, + null, + -17.75345309979954, + -16.856805274678862, + null, + 11.059371438887155, + 11.740285647534707, + null, + -6.111187613432292, + -5.328887492705765, + null, + 2.792614522565272, + 4.998308370682041, + null, + -13.430216856829446, + -14.041780289094081, + null, + -13.430216856829446, + -13.116468577073746, + null, + 22.569969063829703, + 21.0132610212424, + null, + 22.569969063829703, + 22.924746987035036, + null, + 12.35995628928166, + 10.038326449843389, + null, + 12.35995628928166, + 13.727303787440793, + null, + 13.14269509207124, + 10.933227463611694, + null, + -8.647443133101893, + -7.397820564553798, + null, + 9.298780186928086, + 9.71706183696487, + null, + 7.104101159161629, + 4.479700722985545, + null, + 7.104101159161629, + 6.283133275145741, + null, + -11.39984200097884, + -11.892204745738725, + null, + -11.39984200097884, + -13.116468577073746, + null, + 13.621527099783169, + 16.078387958536506, + null, + 8.995856150249049, + 7.837269659316131, + null, + 8.995856150249049, + 8.604227898026458, + null, + 17.91680762187519, + 16.803115192697085, + null, + 10.592206668431514, + 8.990022300149276, + null, + -1.9774734854256746, + -0.22142264816660884, + null, + 13.175545340601293, + 16.078387958536506, + null, + 17.91680762187519, + 20.460968550160327, + null, + 4.123014882661909, + 3.5809436333777107, + null, + -15.589877724228934, + -16.856805274678862, + null, + -15.589877724228934, + -13.116468577073746, + null, + 5.642890983127066, + 3.5809436333777107, + null, + -9.952608788794125, + -10.774500868334462, + null, + -9.952608788794125, + -10.080675555238377, + null, + -8.027540649214833, + -10.774500868334462, + null, + -8.027540649214833, + -10.080675555238377, + null, + -15.245004444152267, + -13.116468577073746, + null, + -15.245004444152267, + -14.472775071887039, + null, + -12.013371409411429, + -10.774500868334462, + null, + -12.013371409411429, + -14.248065303563243, + null, + -8.489446195769464, + -6.745753018806202, + null, + -8.489446195769464, + -10.080675555238377, + null, + 7.740284024415618, + 7.462056618188281, + null, + 2.118950875491419, + 0.3487538143716118, + null, + 2.118950875491419, + 3.5750093576229536, + null, + 8.528902493244408, + 8.990022300149276, + null, + 22.1115530105183, + 22.697040180978924, + null, + 22.1115530105183, + 21.174580092028506, + null, + -14.689872352838838, + -12.302528127312577, + null, + -14.689872352838838, + -13.292069671287392, + null, + -15.730989259150421, + -12.302528127312577, + null, + -11.715116762578333, + -10.680153816736555, + null, + -11.715116762578333, + -14.472775071887039, + null, + -16.100362768181665, + -13.927652348215837, + null, + -12.72139878404941, + -10.774500868334462, + null, + -12.72139878404941, + -10.080675555238377, + null, + 0.30177859190882206, + -1.1287029101082857, + null, + -8.84370468778664, + -10.774500868334462, + null, + -8.84370468778664, + -10.080675555238377, + null, + -8.79150611597912, + -10.774500868334462, + null, + -8.79150611597912, + -10.080675555238377, + null, + -14.130351738362913, + -12.48992128848705, + null, + -11.715116762578333, + -14.130351738362913, + null, + -14.130351738362913, + -14.472775071887039, + null, + -12.48992128848705, + -10.680153816736555, + null, + -12.48992128848705, + -14.472775071887039, + null, + -11.037333912370942, + -10.774500868334462, + null, + -11.037333912370942, + -10.080675555238377, + null, + -11.638205856093446, + -10.774500868334462, + null, + -11.638205856093446, + -10.080675555238377, + null, + 14.505756784524383, + 16.078387958536506, + null, + -13.764879078951406, + -11.892204745738725, + null, + -12.615899599100104, + -13.292069671287392, + null, + -12.615899599100104, + -14.472775071887039, + null, + 12.541822085749827, + 13.384150927324999, + null, + -8.156655997559467, + -10.774500868334462, + null, + -8.156655997559467, + -10.080675555238377, + null, + 20.455257782435655, + 22.671018755703376, + null, + 20.455257782435655, + 21.174580092028506, + null, + -13.222703067642193, + -10.680153816736555, + null, + -13.222703067642193, + -14.472775071887039, + null, + -10.415070747007382, + -12.302528127312577, + null, + -10.415070747007382, + -10.680153816736555, + null, + -12.049238335779727, + -10.774500868334462, + null, + -12.049238335779727, + -10.080675555238377, + null, + -11.054362849273527, + -10.774500868334462, + null, + -11.054362849273527, + -10.080675555238377, + null, + -2.29826269288487, + -1.1287029101082857, + null, + -12.886462232672827, + -10.774500868334462, + null, + -12.886462232672827, + -10.080675555238377, + null + ] + }, + { + "hoverinfo": "text", + "marker": { + "colorbar": { + "thickness": 15, + "title": { + "side": "right", + "text": "Node Connections" + }, + "xanchor": "left" + }, + "colorscale": [ + [ + 0, + "rgb(255,255,217)" + ], + [ + 0.125, + "rgb(237,248,177)" + ], + [ + 0.25, + "rgb(199,233,180)" + ], + [ + 0.375, + "rgb(127,205,187)" + ], + [ + 0.5, + "rgb(65,182,196)" + ], + [ + 0.625, + "rgb(29,145,192)" + ], + [ + 0.75, + "rgb(34,94,168)" + ], + [ + 0.875, + "rgb(37,52,148)" + ], + [ + 1, + "rgb(8,29,88)" + ] + ], + "showscale": true, + "size": 10 + }, "mode": "markers", - "name": "DataFrame 1", "type": "scatter", "x": [ - 933483.4567391834, - -366283.69394185964, - -181700.15961593334, - 429817.1381553038, - 77282.61765229338, - -894216.5057303684, - -340099.1897493526, - 458352.946828549, - 683996.0178905013, - 233201.9544420003, - -884245.3767823352, - -347699.8273738099, - 465403.5083914787, - 183588.8342892922, - 332347.5294036897, - -554819.1953686934, - 950439.392680525, - -956642.0026505338, - 801315.0897775844, - 856763.4161872992, - 543040.1381149603, - -190477.9447491629, - -316220.8201520302, - 470707.5911725738, - -40084.87664969729, - 330812.40467371355, - 909323.2027302729, - -968835.1525967998, - 902764.2360196946, - 896641.9692342175, - -21448.410189587543, - 957697.1302399324, - 482919.71377339005, - -922113.7465409437, - 320129.40833918104, - -115988.0603293435, - 320720.9523268768, - -183915.13182539286, - 467586.5371865227, - 155810.07246206168, - -255273.7184953122, - 683377.9850822419, - -820786.1217632035, - -514479.34659976815, - 324337.7237462275, - -158992.66117613608, - 674390.0901959051, - -545638.2423811845, - 604934.7306536661, - -162966.46759127188, - 914467.6632273761, - -881198.5201276346, - 393875.6303361353, - -173691.57445018858, - 101734.4186530189, - 102890.59825682867, - -709061.166520672, - -704117.2696122591, - -78921.56012487228, - 82695.01147360781, - 892639.6045231073, - -407373.19441791973, - -542090.163883535, - 383602.4527648727, - 587710.1196072107, - 326147.5533448339, - -995533.7825129096, - -534018.0751121859, - -830220.9718566176, - 736765.1546685816, - -377702.94197033683, - -261148.38158098143, - 662042.6234050796, - -883231.0328140896, - 487333.2756261608, - 793285.0618945669, - 884802.6012272596, - -600937.0920693981, - 379335.77436914813, - -840629.2261889379, - 360724.37328794546, - 881922.3999063373, - -78715.90056435295, - -188072.50905787342, - 93214.08443516676, - 212406.3833148444, - 42356.860080162485, - 864742.738718304, - 466495.4269516823, - -72851.75443980707, - 296865.7210732206, - 201690.5001386915, - -809602.3854719092, - 455089.0566991821, - -421789.7677491984, - -730099.8140962289, - 941129.1135389946, - 869007.5350815292, - 717990.2465833629, - 197134.69020416553, - -894718.6391275503, - -723155.4734128875, - -8379.412339935, - -909596.9341151802, - -292082.4385481624, - 153864.8390642192, - 712361.2951724086, - 914316.0572963407, - -919652.1895690879, - 626046.287861095, - -671624.2805811912, - -564517.9022853523, - -836089.2335397754, - -727307.2831803005, - -63184.91059391906, - 168229.98075621086, - 645979.5543442839, - 438081.87126206444, - 826920.9352810534, - 602407.9673077478, - 631265.6698211387, - 777914.9540390078, - -547642.2852201579, - 526877.4573910712, - -38327.955008397694, - 418566.19868298183, - 197973.49488166915, - 184766.2002418735, - 715784.4905156529, - -516221.8913464849, - -434623.4691013651, - -5596.113939467129, - 648246.2669582678, - -400567.27083104127, - 76755.93591468189, - 663904.7617724848, - -897623.4682337678, - -857957.9247302185, - 517837.1986306305, - 232161.74846487082, - -321727.77392575116, - 538787.438030321, - 617187.9259473727, - 704105.6988044545, - -169312.1842001153, - 739393.8950776226, - 27058.202771294447, - 21387.915970575654, - -898957.63764533, - -96792.91913518484, - -21227.49778743449, - 276976.17238035274, - -755074.7222507059, - -3151.853730977372, - 447205.8626187305, - -409297.7949012127, - 721040.7630583367, - -551799.6409460857, - -495134.76313686476, - -566236.2561708712, - -383589.25783163536, - 520674.05570668046, - -379083.4425797596, - 714780.540659039, - -604109.0475752635, - 792749.3740975467, - -695748.732719113, - -841161.2589156998, - -195189.11757277558, - 431924.74953544035, - 876253.9237453884, - -969676.0286274004, - -814469.2956539985, - -203858.51979069636, - 987883.3246678433, - -754434.0508021094, - 56220.819532364796, - 291351.1195352343, - -877967.6203988978, - -616004.2932641512, - 650337.6304247482, - 767568.1344808547, - 615619.3556276786, - -205710.37365605726, - -452877.2624604085, - 170430.45436057568, - 66750.84993936031, - -771349.5296019091, - -76184.7834570475, - 223240.49951923918, - 47468.46409605654, - -900078.2113245784, - -707282.1263826032, - 498738.2468210295, - 623681.4455269715, - -439114.2156817536, - 712395.3589967475, - -67881.32275742265, - -903849.429763719, - -761921.4177536746, - -289319.9518633871, - 430326.2401265009, - 526519.186730167, - 628334.3788628908, - 141499.46505001077, - -25360.886258957606, - -709849.9682138389, - 472144.8048529735, - 642676.881996413, - 985082.8450351985, - 177913.9037321007, - -475020.10876459733, - 829759.5568487745, - 621840.5604610262, - 241848.8026121215, - 272875.8067462236, - -434770.8766206291, - 806359.0699789898, - -863812.5608722302, - 675721.386773738, - -792990.950272441, - 79002.14739262879, - 773503.3528407407, - 267310.8001232671, - -49360.913627868984, - 81010.32478152437, - 698548.8043876948, - -777612.1742197457, - 25182.32358250505, - -459999.322682785, - -530206.2725823066, - -285897.65920436603, - -338463.1555088351, - -441941.0409727664, - 507573.35056005995, - -668626.5976141022, - 690145.8497871232, - -89085.74572926975, - 915263.3573844782, - 713479.5856259892, - -767480.6633687961, - -359558.8897121338, - 202408.6912441687, - -472765.09146025503, - -224465.75825735682, - 40079.99249920036, - -257529.7647083643, - 850913.531484576, - -907282.0446569585, - 843622.9094645538, - 115292.52144101188, - 284988.9338097777, - -401281.38711647975, - -486049.0391869989, - -623176.5609360784, - 157004.07763181155, - 978318.5934822272, - -822372.6879477986, - 625086.0530151355, - 398851.1180425776, - -982531.8952967137, - -388346.84791477025, - 32321.233344296375, - 829256.0232519812, - 157263.60815314978, - 850940.5457161552, - -652873.5736363298, - -165877.75686732464, - 400648.1628683858, - -844246.5819693888, - -484658.3050507276, - 27244.414390010574, - -235998.43433836033, - 832880.6118917629, - 990684.9044964272, - -878821.3304950048, - -458711.1024669723, - 802251.3174304304, - 408034.5906397866, - -504542.1352043298, - 561261.9310804654, - 97633.05212708894, - 502900.9484947351, - -405277.08141188713, - -641913.5259541672, - 15427.685521914647, - 292571.0942710789, - 942482.3561708895, - 324668.65708667634, - -95612.21767736993, - 280237.001949774, - -823020.539712868, - -970779.9930329554, - -486550.24362551223, - 231074.82024078374, - -547870.9118915705, - -702264.0646188254, - 158951.22444749888, - -573579.8815497239, - 291482.05335721734, - -662208.9345963952, - 113379.54184456533, - 718826.5521028038, - 670560.6168920255, - 381475.48544957186, - -964533.0899372523, - -573964.3844729715, - 860516.1611720189, - -641961.420259417, - 940801.7662788922, - 444032.79606093984, - -484224.4518047343, - -149110.68317453036, - 975774.1818193704, - 900636.500591634, - 725677.6911089884, - -611806.3248940435, - 328217.0229704833, - 431602.0630810575, - -96395.66533854649, - -230307.1527079439, - -866085.6054143156, - 596873.7891156799, - 728757.2302041758, - 185469.61189416988, - 506079.2433519592, - 186411.39583669396, - 661913.0057686664, - 99207.88555998539, - 852437.5161791889, - -134443.11900166151, - -124462.9076692243, - 6274.1707185636205, - 505074.68310500745, - -640937.7577869985, - 348115.135016678, - 752993.026601618, - -798864.8616855099, - -862762.1182790956, - -356820.70111571206, - 177560.89683188248, - -697806.9091883699, - 228554.08877429407, - -104591.68288544696, - 596758.7520509677, - 684264.4055752846, - 38860.38466092723, - -293966.9337601134, - 205575.50894640197, - -238955.24483877773, - -887559.5147387895, - -810392.7287200175, - -384269.55450074596, - 825928.0205778476, - -630743.5726622504, - 602845.2465308853, - 254733.63076877088, - -223735.95682974058, - 857326.5405612354, - -606908.4936988576, - 327038.5420484947, - 900407.8115062198, - 570248.7195378274, - -196417.42374274827, - 302746.5200068291, - -185247.41886056017, - 661833.7999114355, - 342718.2897794898, - 21877.881505122376, - 897967.5960706323, - 426984.0513968357, - -910074.4476692642, - 290487.3206044216, - -648161.226738482, - -96665.56418908923, - 235712.27042544284, - -597264.9068567748, - -837885.1665043108, - 882596.9345251996, - 159141.450872055, - 381868.0890948134, - 978774.8671757412, - -588807.6533459923, - -194279.80743491635, - -596759.6697357827, - -520404.53542439133, - 839521.0558089447, - 288080.60505450726, - 771674.8466703555, - -215057.2188755595, - -102229.42822348347, - 376753.80948773184, - -25705.236251931663, - 235382.84267939447, - -768077.3568489492, - -13964.755390297512, - 660747.1133854709, - -435531.37121292826, - 988256.9959860345, - 28339.46953594202, - 967043.4622880626, - 926635.0133391499, - -535039.744551085, - -666783.5869524132, - -212732.11676849678, - -359443.6248692099, - 92578.11928373361, - -150943.60975530808, - 942137.0889056928, - 263248.3851843943, - 159066.9874468782, - 435040.8329212534, - -268079.75936596474, - 403899.78181010886, - -405306.02044891764, - -476745.24667233275, - -88739.66357379004, - -655098.6365330735, - 286552.26150755887, - -252963.25799429885, - 486620.05816211493, - -328431.293413165, - 986835.0736272966, - -41600.750115048155, - 629509.3608464187, - -653765.5633018771, - 487810.7120183575, - 79696.72280020501, - 342674.5313034989, - 93058.14653318057, - 792119.881503258, - 167826.07426211916, - -38509.35045387782, - 464766.31972976757, - 502981.5468323673, - 868139.6588996886, - -170207.19763056102, - -443329.20444239624, - -525909.7546974054, - 578051.3518156023, - 61547.78938514394, - 522257.1386652817, - 577392.8090613643, - 665091.1247342328, - 786778.6542879742, - 39590.950316552575, - 815950.3189379036, - 586091.0234255437, - 38830.39103194141, - -635979.9761410847, - -651013.7192327545, - 811131.8183294842, - 190593.36686297934, - 588024.254014322, - 316053.7349427122, - 587577.2507856083, - 351301.77422378736, - 848868.644806498, - -299923.25938496925, - -360885.8773834229, - -345441.7571526054, - 437694.3292319815, - 947333.3380176532, - 916183.0371557598, - 388152.5796828631, - -789394.6420817033, - -84551.7835832943, - 946906.6064106144, - 608890.8180953821, - 677591.4524686069, - 521072.90601517487, - -178216.50664417076, - -14463.351502338017, - 554892.5945752865, - -387963.4681192348, - 717447.7001192871, - 180005.58774911758, - 698099.5531065653, - -656436.9674364273, - 733527.2827753351, - -580427.8565184487, - 345722.8774127468, - -150377.71014886748, - 155998.46897914205, - 65171.48029580055, - -181637.07161457854, - 308041.3932794368, - -287412.34625400434, - -656253.5214717102, - -648310.0496600611, - -746381.2366853913, - 83622.16583016257, - -19364.354844584097, - -625569.4912948359, - 185128.5230804234, - 854658.2178867612, - -502221.2423468795, - -233364.95639678233, - -941688.012740526, - 561686.4496072094, - 961212.1187088809, - 755173.4644584443, - -476509.16832876677, - 287186.1271102667, - -561334.5561021474, - 227756.20584921018, - 506936.28230545484, - 264911.4833220334, - 485523.02644619404, - -374210.50593961857, - 712593.3587444853, - -105937.42716478017, - -482613.4945723788, - 414860.97835098446, - -452038.74419801694, - -535310.6977113642, - 381373.32463077886, - -974324.3390105796, - 806644.7911977044, - 127035.20726680085, - -613747.5981969669, - -825092.242771966, - 987745.54077045, - 807729.8305085383, - 820212.0126397252, - -911815.111465116, - 489670.6800430286, - 959231.5187373273, - -927929.0330374057, - 588029.7165107527, - -171353.0669321337, - 993726.2469277983, - 77338.04827971746, - -426997.16687418986, - 712085.8290284196, - 435772.6139411109, - -440084.7440775184, - 710759.9155269597, - -215550.8344180117, - 891032.4039561477, - 790332.191399174, - 963066.2603491714, - -685442.0011943391, - 57957.366801817625, - -730374.7417052435, - -47892.04997571828, - 610875.7945680574, - 632616.1117033211, - -553534.4002918107, - 823874.0941544147, - 787091.7877283216, - 669797.903895613, - 951883.2032729578, - -610474.3031996711, - -359953.17372292135, - 800919.0893525608, - 288707.8838759225, - -788593.7694426945, - -699791.7379094269, - -576254.7272775868, - 962442.7194031442, - 193663.74090908578, - 192898.7761189127, - -636627.180160112, - -678923.3564325646, - -536139.8345770207, - 483038.4019771743, - -615542.8321597268, - -425154.8175794468, - 389129.0935796654, - -622531.8936491543, - -942230.4813874803, - -702245.1002356531, - 167597.5150278466, - 426236.00695759256, - 901070.8355996925, - 102710.81065561782, - 292658.47368995537, - 772772.6984495806, - 966475.7136151139, - 787936.2857831245, - 417358.92862643854, - 530081.4122312207, - -761342.1567954683, - -290976.6678246506, - -532125.9656384134, - 28934.677807041397, - 337954.1081590967, - 244901.82551867145, - -166247.8824189475, - -676791.1366678317, - 711185.3610915573, - -492150.0337925884, - -672459.1537540519, - 391637.40453810303, - 301584.1595675015, - -728121.2615781027, - 944314.1496489326, - -645320.261332402, - -270676.14341981197, - 296918.82281927473, - -797857.9983668334, - -613602.9955438446, - -259651.77389573512, - 676283.1023599645, - 362932.4315698379, - -926960.4448085378, - 343087.31060714746, - -670836.4706392518, - 118341.36735152123, - -702119.1055820582, - -839634.4902872923, - 342991.9322557311, - 758907.6565430774, - -264607.122813989, - 291461.7572568536, - -573251.5566775127, - -471326.4887253379, - -34270.002993454174, - 896594.9176006076, - -146728.84329680348, - 907629.9728597652, - 778318.4083408179, - -868290.3040404802, - -735155.8654195756, - -45679.01742848979, - -97941.64126586735, - -892081.6025005636, - -813369.5244834947, - -266277.8424595926, - 499966.1047499513, - -163970.4374781452, - 706091.1703498379, - 245960.7519979834, - 233684.57456860182, - -926848.5189596672, - -51883.16139370164, - -462205.5848496869, - 81873.6562964113, - 145994.06525380543, - -64795.584166803535, - 254279.6946992969, - 306373.6140003388, - -624947.0977210656, - -966781.2640380245, - 460032.0894692578, - -397043.7914764817, - -330148.6543510428, - 542536.1597444247, - -563315.1228241045, - 949568.659661479, - -357140.1701558412, - 225969.41310828787, - 216192.12300347246, - -203812.76400936677, - -852481.3244450431, - 699178.8707138866, - 121511.70759860253, - 932707.054767189, - -669959.8044202978, - 471252.6446453877, - -418007.2471374858, - -545416.2893863735, - -481867.3056995857, - -595545.0990912922, - -998353.339486974, - -794489.958155848, - 335634.35548853973, - -242831.30498189954, - -580395.9993417307, - -751958.7094608329, - 578302.6554046244, - -745776.6332386915, - -70504.44002347355, - 405209.7695122363, - 109205.8892351293, - 586607.876237558, - -712531.0858282759, - -653203.1728910306, - -684804.0449314632, - 942573.4499942933, - 242950.78076844878, - -19300.152901333688, - -580762.4057397209, - -191488.59545737063, - -77572.38474831896, - 529076.7318097918, - 36891.53405376744, - -759955.1160411198, - 589971.9146077507, - -901190.6291528433, - 499075.9648008205, - -376632.64586787904, - -737243.4192446303, - 853135.4107512173, - 686457.484463654, - 521281.92136153625, - 436109.83555232076, - -806662.233202842, - 910837.6132632548, - -57990.46711172173, - 705446.5746370952, - -335142.5920204685, - -740869.9580183655, - -222547.52258726262, - -832582.2800456601, - 752502.5085062573, - -355715.62235270557, - -340834.80306814297, - 428799.7229905596, - 825623.1467348118, - 864376.9474193164, - -590701.5223808518, - 226406.7560612437, - -190301.22204413003, - 117844.33198406918, - -167083.48793762305, - -918312.1848531989, - 706355.099357429, - -689526.4698726246, - -139916.09976592124, - 937041.4017451311, - -105081.2965803316, - -313056.76625531854, - -642695.7852381483, - -477291.66072254523, - -479638.8660145041, - -954606.2705035188, - -764170.8582776308, - -204790.6833328741, - 388801.7469946561, - -582315.3533217438, - -264500.0476571513, - 855596.2450162555, - 615016.0555362441, - -529690.6065362472, - -92293.23122608424, - -977538.4639587627, - 162333.8569723003, - 831880.4547810224, - 71904.65654530453, - 675024.5044104133, - 72375.46008868323, - 46135.90915074761, - 355766.25091383286, - 532252.0967147304, - -198592.19940670926, - 485939.57244768913, - 729754.7566167935, - 258128.7709562441, - -728546.1606056102, - -630700.5539374348, - -200619.29049779504, - -773476.9110081785, - 488523.16278449906, - 479337.6307810131, - -271896.07094580337, - 964709.7956724573, - -50300.24303033032, - -150561.66474866783, - -743883.5859656468, - 6067.961335880279, - -834076.6783541171, - 390848.29142426414, - -744704.8915039272, - 148673.7205464348, - 130164.00155151908, - -739805.0759459997, - -606712.3381309088, - 543108.1443403312, - 168551.44621210094, - -414611.0283050124, - -174433.36460080495, - -417367.8461293129, - -66996.95100886682, - -247523.22942080896, - 851726.2346237586, - -382806.5929270614, - -764137.0198895781, - -144882.33504458336, - -287041.85032694094, - 922144.5453300388, - -438724.37629613816, - -194690.83075642347, - -238963.84272863713, - -830756.8210522116, - -998872.3625218678, - -735897.559121462, - -11490.554677258791, - -551483.7339817027, - 130910.4232699998, - 311550.7252590313, - -797945.4411613465, - 13303.11779384674, - -410427.3486838355, - 26724.00570022315, - 820769.508205695, - -623841.5453229153, - 714809.7032498644, - 178509.2018106782, - -558219.8487983729, - 391479.0624586482, - 322721.38939944515, - 270285.70623006474, - 225652.9409437853, - 329288.4568519665, - 479297.22540408594, - 72393.98898358118, - 480997.48548787157, - -63407.82252240862, - -106200.53386350947, - -862100.7045863331, - -800151.1762025431, - 897190.8479211597, - -208079.4572164033, - -944846.5041680955, - -417134.1848025454, - -290539.2420382984, - -887279.9756945478, - -651653.1621533652, - -568650.6221028853, - 993745.8997021096, - 363619.80312148435, - -773588.2394005709, - -86410.67840110871, - 795103.7666010536, - 388097.2852283364, - 389360.08405924926, - 265851.2953266563, - -270637.2190499677, - -43689.021691403206, - 896292.0975587853, - 145659.90931488003, - -707573.6735011062, - -414518.1562494407, - 388940.7237708673, - -332757.17185846076, - -109478.99206912171, - -253272.44746278966, - 837230.831091525, - 35545.38425009501, - 495908.44835821545, - 633373.1055499234, - 627513.0531605089, - 5777.368955611983, - 969500.6935214978, - -628672.3052450034, - -988360.2995223184, - 955674.4657398859, - 857473.9729792982, - 79213.30937647352, - 544791.106235158, - -588655.115372228, - -584061.8464251115, - 295371.4252235613, - -27949.358020108895, - 797890.0566661789, - -113679.02802626473, - 310251.22360131843, - 164283.0055700728, - 989816.9831035233, - 314454.13470897754, - -954595.6174402137, - -933962.716237892, - -510.3139191593442, - 590120.0921364109, - -692982.0177167297, - -553070.1308286763, - -448513.0443459069, - -334263.55628303875, - -250006.68051605744, - -807962.1075369099, - -902649.6626201568, - -402653.8862268767, - -80624.23169326305, - 552387.6544885327, - -244246.73564486898, - 205076.87753395643, - 606747.1336211909, - -691607.6877215977, - 279178.27722758945, - 131674.4182435794, - 612362.2882014046, - -71914.47212366264, - 225545.22028382996, - -925298.2728422172, - 91195.20050579122, - 735378.9273222877, - 349647.39931373636, - 145479.8058977542, - -947552.8736429994, - -688198.1244644225, - 788237.1509982867, - -18287.692185093187, - -12554.053268992948, - -134804.31729459565, - 63748.03762520176, - 798123.2330098836, - -730693.6302666769, - 991252.3220477656, - -724237.2665346239, - -213759.13286812452, - 869304.3468442438, - 499943.2657077738, - -579686.7700302646, - 867438.5397914342, - -4827.577509003644, - -702870.8634419405, - -268633.07539224834, - -131930.58197698227, - 700768.4067999736, - 614951.4848368847, - 458579.5987339245, - -911098.2844415642, - 317601.92327939294, - 504389.96755462553, - -401022.0090703962, - -708616.5556564817, - 294994.05839854374, - 924757.8050174923, - -249865.37102783157, - -427540.7100207227, - 823338.5231087147, - 250755.82625401815, - -380771.6027278605, - -445182.7447094121, - 855370.8433321096, - 540689.0465774519, - -896844.2337849404, - -439966.5707033511, - 309854.33003742876, - -156030.00790683596, - -941903.7408313074, - 15657.746200550937, - -764227.7601215485, - -190501.65951282083, - 926306.3770224456, - 542915.3159955675, - -871340.918829856, - 327602.8913810769, - 408629.83762795135, - 750911.3760363817, - 840277.1209069031, - 639627.5654747885, - -805200.8901203491, - -751563.4689428771, - -555548.58774043, - -527930.7890435532, - 147982.52449250926, - -604309.8816956244, - -66662.88622797457, - -142276.73243965567, - 195841.51413321306, - -765345.5907933846, - 224531.28390583687, - 526520.4578980436, - 479163.58732411556, - 901577.2016848045, - 240478.33947415854, - 398039.6335712524, - -485795.3631268366, - -914154.7524448048, - 872437.5789128591, - 849668.834493184, - 644733.2242558899, - -460879.7702003471, - -989885.9851187116, - 183309.3946068618, - -824909.8451051109, - 687404.268907857, - -429108.25412861933, - -595990.473675589, - -181390.3292990644, - -686538.3272101553, - 208812.12265455473, - 821746.0434958095, - -238610.32768447953, - -570111.8851928166, - 797758.6314379035, - 561758.7789009119, - 843756.7231722763, - -31810.158001698506, - -171957.9345640796, - -114038.38839013437, - -368898.693234492, - -863832.567187541, - 787162.6919805454, - -222170.71458106406, - 121858.85247747663, - -772067.9564600968, - -784157.5552125777, - 158571.17886839612, - 177798.96221545432, - -620869.2866417456, - -180971.23048847297, - -5574.809952380689, - 233972.66599604284, - 116245.11793368476, - -134478.26459281886, - -666823.288382161, - 579455.079592233, - -467262.6148439527, - 294975.2601213742, - 543888.6076355122, - -245507.55541121028, - 758539.5335840486, - -859686.782273051, - -141632.02029586319, - 108260.35873663887, - 251197.94471248414, - -972132.6558257593, - 981186.9044304946, - 957377.2427948934, - -38673.82262208263, - 883506.9779315428, - -811148.5473097427, - -232038.3512543973, - -608990.7118987952, - 524049.83397608064, - 850729.4896499905, - -644057.7138295526, - -459114.2883209851, - -978545.948621703, - 403910.2770509948, - 799750.1403151368, - -906109.1085695425, - -603784.8030093274, - -294101.62692507624, - -504573.22072466405, - 763622.7483051696, - 85185.09216985381, - 937964.2752123139, - -819933.6966757734, - 117414.68728588545, - -529632.8416100357, - 407849.35765214736, - 306181.0172647059, - 170270.17455860748, - 724853.3688152217, - -937535.5504195595, - -859985.4705176337, - -688032.7238607942, - 557391.947496803, - -560661.2367481291, - -187084.41612170535, - 662360.6947379261, - -576159.619036896, - -519623.84609460743, - -832944.397357346, - -215800.92803963114, - 199075.24870778405, - 394614.72439210746, - 352366.57067190215, - -623029.4332761565, - -603707.9177931123, - 10360.260927728903, - -548271.1296783158, - 21788.795921174886, - -769299.1530569749, - -821186.9636366412, - 900779.2194563157, - 182241.99218478377, - 272834.1028016543, - 971904.6866248937, - 764825.2585659927, - 362827.25527501915, - 541692.996148921, - -925406.735275438, - 308985.1726458357, - -96153.49873239044, - 346831.7239236365, - 503378.7038212665, - 586886.7109516746, - 595780.2402537148, - -963728.5844242207, - 318664.61664875766, - 279402.88259371225, - -491878.34233527817, - -409101.8929978014, - -866017.5489527519, - -251516.68698053743, - -299647.1643384531, - -83799.97128770666, - 448362.05638158624, - -533859.336437661, - 962736.9650975642, - -28443.047712939817, - -301208.0583927057, - -353833.05990219815, - 167452.6822446154, - -746593.9791985748, - 955947.5418821241, - -499328.8053326861, - 316232.58918972244, - 366636.79277629725, - -288547.1455220523, - 245195.9363499303, - 235888.86308776337, - -552997.699364014, - 593303.1260341944, - 489050.00710199587, - 539313.0418165693, - -315125.91695923463, - 534719.4402519176, - 793149.2200619061, - -868389.8986401182, - -172331.15737877958, - -91761.8873428805, - -210116.35963346652, - 395606.2910396527, - 264162.3282401524, - -647784.1034083248, - 345839.8296194911, - -461608.042010762, - 202813.21901563354, - -940957.0717831916, - -109983.74705520587, - 845084.6710773596, - -752765.3016842231, - 436452.16607724025, - -25086.872014054683, - -967602.7232259676, - -251233.1686301623, - 974085.6677052858, - 313601.9890748296, - 497399.5391862629, - 664537.2889734871, - 667260.2455580661, - -392080.3345065982, - -303519.81932502234, - 922918.7525526405, - -21113.56907745132, - 962506.391907379, - -41909.80183653714, - -642915.2614714748, - 970902.747844056, - -697653.5920095402, - 484438.90283956594, - -399022.00141791574, - -303424.29995457444, - -991422.9130151526, - -976119.2708692483, - -426009.1013400598, - -498362.87473521114, - 153911.72895294524, - 738202.9022251036, - 808881.7666505064, - -316101.8344371189, - 442656.2126676581, - 461854.7596796827, - -914818.184835072, - -818285.8088131602, - -740268.1102057132, - 887110.8021155552, - -200447.47217449464, - -953049.0807226555, - -176233.96315346574, - 829080.011192042, - 458315.88583769836, - -313508.638729566, - -635298.0399664217, - -494510.68649583595, - 889116.6813086162, - -28336.207287975813, - -804871.496733351, - 479027.0055964698, - 29261.851543776364, - 518329.40171165596, - 963742.9327330225, - 132402.84519054813, - 146669.8955315029, - 980867.726299704, - -427500.822387743, - -589376.471258098, - -10632.05328570671, - 115065.27643567743, - -365883.03657564067, - 439530.6615365946, - -589328.8578121014, - 597885.198668642, - -170929.1070357075, - 388957.0261418009, - 9216.576356292138, - -471235.0368947404, - -103892.01976106044, - 20603.31430457385, - 890370.37680295, - -575990.3314369438, - 415033.51132967125, - 68047.90214285994, - -647328.0505657532, - 664130.1603214218, - 434627.21160258865, - -928160.5234004618, - 34730.5396936699, - 803291.2345585454, - 383509.55259038025, - 130582.23727285955, - -250639.40379351468, - 763333.6052188507, - 456729.16084220127, - -454744.80523948825, - 130968.58000013855, - -140678.6939033493, - 414844.49911879183, - -593975.1245301302, - 173335.4152895037, - -368465.52757314546, - 262822.0069579461, - 987602.5222118099, - -348818.8071499936, - 285759.05408772104, - -9325.835499452318, - -855993.513669304, - -363304.084007612, - 597488.8439013408, - 97243.28617677136, - -330603.60724479664, - 187416.40021586226, - 513200.7984407272, - 883476.0808413689, - -678012.3070365165, - 973943.1413844374, - -213351.52521131895, - -688941.1203990141, - 997060.3803065763, - 858702.8823411855, - 496214.383788554, - -902170.3626385045, - 516690.6578063111, - -184543.5533949662, - 292546.4053266724, - -511780.23028340604, - 305418.7888558184, - 141961.07855290908, - 477707.52879901003, - 786586.3643007085, - 116773.74337990231, - 681783.0260473767, - -414040.5033991677, - -737201.9158822978, - 48518.55827067442, - 961334.6481529024, - -899941.1162503663, - -501203.37687945925, - -281942.56904985005, - 818145.42828364, - -122918.52270650638, - 268358.33778312645, - 141177.99544073062, - 329575.5437074153, - -224657.15208471648, - -699024.9894883564, - 212764.59058188114, - 639174.1551015093, - 315825.2202857208, - -962821.1685407511, - 45038.88428834024, - -40001.9478849829, - -362662.6819606953, - 135736.3299043617, - -519778.9557248058, - -690686.5458962872, - 338708.1359236277, - 285567.91232418123, - -516422.410481439, - 694585.2892694366, - 916976.391376023, - 921449.6082577311, - 353726.4989900804, - -722819.454318375, - 760367.0677509868, - 431360.37653621216, - 588702.1503026002, - 977431.0548240622, - -71305.48074092303, - 264187.7242668955, - 662876.7514379941, - 689114.4503598423, - 560353.2055427589, - 311194.9506587801, - 117413.10839336138, - -471752.52777544106, - -706738.7165228054, - 158146.76917570524, - -140307.1091033965, - 518090.9715671851, - -835844.2832427493, - -51311.687570270384, - 60068.20128321699, - 749782.78602511, - 589476.7167951651, - -245263.81653464303, - -158667.86160354884, - -490007.7283662494, - -596989.1835686882, - -134853.19484929525, - -622066.3543018827, - 280245.87520040467, - 738282.357878187, - -865560.5696594018, - 216240.78674699776, - -32287.15480217259, - 652708.8801697731, - 129788.61205502313, - -762202.6042816064, - 763945.952812722, - -832234.8822527956, - -469280.4748211241, - 27722.900338855274, - -393641.6868286554, - 913546.7331465943, - 507031.81580640865, - 168493.94236804362, - -838832.7416371386, - 753783.9474351837, - -889394.71155233, - 170139.08991868232, - -710301.453440974, - 99342.00873687638, - 833194.5002041856, - -583783.441878583, - 120119.52351069843, - 181388.9330170395, - -54131.994661522185, - 529911.8462952606, - -905168.2172854192, - -307621.3753141221, - -134360.58051355326, - 658211.6389574832, - 396366.7115537972, - 85375.24264389295, - -526336.875606502, - -863785.5534936865, - -583416.5324594367, - -253729.6061651857, - -196094.90074728007, - -826303.0724632896, - -923976.9127758634, - 237664.32216878107, - -246484.8215855435, - 209247.97697195175, - -856877.464903594, - 609289.6605710064, - -229306.221338597, - 528809.1194949202, - 479224.44014622376, - -620249.6465113134, - -870709.3195085292, - 940928.5555615677, - -214745.5466234993, - 158349.37394422878, - 578800.4616899969, - -249996.33057604908, - -533815.784824959, - 962372.2516135185, - 84632.311267965, - 319997.8309322886, - -954093.7938510344, - 183082.6978152391, - 555040.297907369, - -341097.19850871636, - 131539.29842401246, - -616098.0705638843, - -132562.22722753554, - -989913.6785975819, - 129350.42221795623, - -840160.7034473713, - 555775.2087518979, - 523648.64436214865, - -737025.2528853267, - 762871.0989849903, - -281994.5994935653, - 460924.6672494573, - 506621.0251963719, - -802765.4660821371, - 942841.3108829072, - 220662.17221334772, - 376978.08038987726, - 769579.465255393, - 558504.3280265343, - 980629.6755579311, - 654485.6471802179, - 495801.67408827535, - 129447.64082344729, - 923774.2404548015, - -682740.1806915688, - -2917.845693345633, - 300120.60168348206, - 771021.6826783862, - 216814.21171666915, - 983669.8479852641, - 522184.2219951631, - -57688.27594316695, - 32364.15907100687, - -55439.36829194895, - -994148.807324925, - 491786.9150110139, - -847974.5782801093, - -763214.2720794901, - 907179.9555902134, - 17746.742534135552, - -749668.8616756058, - 848628.075328612, - -462685.5170257047, - -532274.1595739651, - 654319.808631495, - -388373.37044140673, - -234710.58963889236, - 631836.7783493767, - -898684.4538619114, - -757335.8586361238, - -965680.8157041208, - -389286.9432001715, - -116604.43736277215, - -61066.52629965414, - -521127.90471048956, - -690882.513588184, - -832977.1136049168, - -765221.1890699823, - -689940.7288496743, - -423162.0623450449, - 292048.0804847625, - -649140.7604522945, - 645225.7201356861, - -437651.1229683682, - 96261.60597609812, - 496978.7903337752, - 226869.87029863225, - 564814.8385043796, - -994345.2328199345, - 642222.8940694192, - -408102.14470317896, - -131330.69872609692, - -517582.0916435896, - 787348.938940307, - -765225.9265476459, - -14533.452107377887, - -868422.3051897995, - -520745.37280179147, - -835109.3085778262, - 353450.35915400437, - -846901.4625385914, - 570583.3936024603, - 936902.9256027128, - 351513.36267687404, - -306348.9049036565, - 152630.10089153095, - 97500.28702682334, - 284631.0803318657, - 102102.88920947263, - 432701.41868746845, - -251795.942190735, - 124714.8449397597, - -301960.7960044615, - 725370.5511825124, - 453988.4332138819, - -50755.00588856885, - -670141.3084741643, - 735157.0149800046, - -447422.07637325994, - -885549.3930211904, - 619838.2272940421, - -783075.662140444, - 690886.0627200694, - -795379.7646641119, - -851475.84217996, - -592066.7969136455, - 320145.1439044749, - 880296.6008044586, - 828180.753663547, - -307232.07802182186, - -104209.35985784263, - -272242.8171063103, - -291880.8315045398, - -414706.66756262875, - 85024.16391676481, - -12967.29595703483, - 759455.2651088751, - 116035.4771232741, - 876187.7490770671, - -220281.20520430393, - 773093.7103720052, - 941517.4682520899, - -218460.67021362158, - 745049.2320966134, - 826469.3724807461, - -355920.18368328817, - -684422.458829026, - 936477.1456922367, - -314940.9668901484, - 993002.1840262049, - -626099.8362312544, - 713888.612141427, - -182281.42270725666, - 418352.4765965143, - 688654.6811400496, - -831784.810699766, - 86733.52914857025, - -435120.2020086695, - 617980.3893940063, - 546832.9797995964, - 756544.2136237443, - -743324.068039647, - 613932.4047206119, - -575846.6534108464, - -69041.78580059405, - 836814.6131660759, - 834726.281686301, - -738880.1499345918, - 590242.7408380024, - 422821.111985086, - -899544.7196734758, - 701409.3470021723, - 122626.10348296144, - 941096.4653885924, - -322216.5135631014, - 193255.53151425766, - 872827.2862087636, - -141368.3314694094, - 719633.3486966738, - -24691.683230473325, - 375449.65403399686, - -551583.4845394818, - -620123.2388139662, - 680206.4276647655, - -812275.2303485412, - 195086.13083660498, - -174058.26582650418, - -812961.0599522929, - -621623.8211913281, - -560481.0148626955, - -981915.8445563326, - -542030.4493615504, - -589323.8025723731, - -413423.2600189891, - 809709.7942928735, - 308153.7498309956, - 619308.0630507796, - 537840.9156152819, - -286866.67126349616, - 33451.05922846181, - -757496.9683906252, - -782374.9224350818, - 253309.69590722895, - -912814.4042082427, - 609661.7085588456, - 352261.73826783017, - 954286.742199924, - 103561.59770858775, - -927452.79349884, - 475911.34230118117, - 704654.1693466278, - 205264.41106035808, - 870699.9909441038, - 948683.2053705341, - -34062.63872300941, - -528338.3130711259, - 822896.6027357654, - 278735.46393854485, - -40579.02243977685, - -915749.8364950258, - 659553.9807078792, - -277287.05549408804, - 707214.1956142053, - -895238.0062655665, - 135886.97236071347, - -149241.45499329368, - -63149.16562952666, - 466563.67026671243, - -553672.9216486475, - -229737.17947482708, - 113925.30652771593, - -172048.08512232607, - -605258.6830432644, - -488931.8392681961, - 566270.3725964733, - -833663.1349255899, - 468169.234948705, - 810267.8812994177, - -33415.96103081268, - -242188.22048817002, - -483647.64822008996, - 775502.1634759973, - 789545.6216895065, - 715286.5455839083, - -347233.63810323924, - -124253.01602342409, - 770043.638701771, - -679498.5498179456, - -615312.6904394762, - 739097.3112064815, - 736903.9424725301, - 393077.1877881871, - -198409.42961073393, - 326585.03110612556, - -689434.7713754772, - -239391.44912980747, - -32215.420918962456, - 994419.3723565864, - 79648.96258700316, - 869230.1802750863, - 121796.49071001686, - 844705.9589892165, - 403404.4722209218, - -543139.2374956814, - -372596.9855982447, - -205928.61463833012, - 947168.0769080623, - -977956.3393926435, - 520480.70397851244, - -249433.65271970475, - 631691.3630226009, - -41047.21677271139, - 124960.29178509848, - -988442.5820359281, - 972544.7861681466, - 984950.5065303954, - 925303.2915818018, - -551466.6660725278, - -147377.78182514606, - 279074.6128246222, - -924243.1569144647, - 417410.9512642459, - -695399.0694842241, - -145541.14968434616, - 10727.28426359526, - -338665.9898400157, - -810224.4186979295, - 56722.9360080097, - 861981.966217582, - -439714.1738429704, - -196013.41830216802, - -609793.0347722003, - 190720.7410380365, - -509071.59399098426, - 236506.215392416, - 67187.6065373942, - -928466.9435540672, - 310342.9292630211, - -805675.2833671364, - -527666.5990605796, - -356328.671811996, - -288075.12424565805, - 303224.6802901042, - 284167.0171261672, - -738858.0728741565, - -791000.0656844944, - -358749.8174963055, - 282936.27102726715, - 409571.7583330114, - -782786.5184386442, - -716952.6715066084, - -358590.7451860484, - 527387.1458490185, - -250713.7522315739, - 256300.37060520827, - -697301.7507719572, - 417339.39992854797, - -860336.7506371288, - -924972.0571454045, - -481340.4617895702, - 751175.9252958652, - -567978.7127955292, - 558620.9289424835, - 320136.0617984872, - 707320.9052024276, - -627703.3977639938, - -102503.19197401626, - 729402.6218670637, - 964595.392484441, - -509383.2271404166, - 559173.6530199205, - -470816.4104811543, - 931290.0789234064, - -307372.2410636328, - -7676.840612845792, - -845116.4701019463, - 243627.10163159028, - 84973.33970087784, - 772569.7862625618, - -50809.318772638835, - 524751.6952832949, - -81312.31733415434, - 132234.4480619735, - 104612.17629805897, - -84218.98128980599, - 530964.126127407, - 947440.0938244332, - -825682.5413160255, - -739219.8039864064, - 683000.4284023332, - -863828.3042814046, - 106696.88574342361, - 201119.44299399888, - -931431.7060271222, - -866910.5069906206, - 460688.562183279, - 782396.7437699332, - -682263.0977308097, - -900824.8650649182, - 239697.59166171477, - 747926.9815318972, - 856771.7907479047, - -829757.5890186785, - 443454.6284123364, - 377161.62360497884, - 317544.30553904234, - -75632.39730388705, - 478308.24354802124, - -104883.05833223733, - 999015.61465987, - -286987.95187603985, - -305045.69730364793, - -357944.0118375539, - -892978.5965803307, - -966462.7489620914, - 775131.4148253885, - 593772.0425514368, - -405925.8679461517, - 591050.5234070861, - 17065.276408608555, - 276519.2093188691, - 791621.2481697167, - -340937.84932309366, - 530308.6334495109, - 296367.39607173903, - 344390.17559937056, - -951475.1084669182, - 204357.5254801606, - 971022.9951529492, - 613772.3420304295, - 276545.8422374891, - 798243.2792879139, - 648054.6948441812, - -557037.2814512706, - 196216.62456335654, - -596037.4341912175, - 759937.9527852299, - -979770.2207373817, - 985171.4920396586, - 589533.3045783183, - 120576.86989363447, - 111284.91891042925, - 821064.1488298398, - 929454.9399675176, - -633507.3707911023, - 697423.2590773421, - -326868.2114938957, - 648817.5145515474, - 953719.7890397777, - -916497.6085319059, - 373721.05327601155, - 47663.33989681448, - -93790.0061594068, - 141487.62533589388, - -439056.0987347607, - -920486.1781743885, - 363949.53894583293, - 721912.0685070913, - -691544.9409809167, - 352872.19326222275, - -951551.0421738087, - -471187.12068855384, - 240952.9217686328, - -445496.9252113277, - -371120.74698793964, - 862786.0745609485, - 973813.3464054499, - 680168.2324098508, - -364318.19122620544, - 623903.4854554744, - -905849.1001528237, - 977863.8776084996, - -139186.7655470047, - -145255.79515025512, - -555600.1655529413, - -667474.0913689303, - -888930.6197847205, - -760149.4230184667, - -951646.9750301093, - 152819.4083321528, - 237850.61871997715, - 464169.62633509695, - -159519.74000705048, - -422049.8748792363, - 776751.1209218337, - 658084.9323840506, - 227286.1010118763, - 505604.86355553434, - 316169.9514436445, - -846093.7023891874, - -34061.2467586372, - -943123.2765050895, - 946307.0467768089, - 23274.593973314993, - -521564.73293207405, - -293524.2719411146, - -866234.9319131919, - -661448.478602066, - -296371.75177707407, - -29583.8881174344, - -235505.52792304024, - -333402.4664941595, - 860229.794141804, - -338131.97180013364, - 766088.0973761603, - 553609.6930637724, - 818236.9752655978, - 499670.7325811123, - 451154.6139304736, - 621781.6560029044, - -254941.06479757116, - 478724.9905237874, - 482685.24794928334, - -64131.87226822847, - 221594.5267462014, - 360393.8675889349, - 980320.9721807307, - 820421.2425567443, - 486939.8239928835, - 56570.961797699936, - -226071.57558055845, - 190124.83147423965, - -594469.8220476481, - -886462.6573892627, - -987526.1725025544, - -346815.0341306657, - 779903.8494166494, - 570099.3708950124, - 602003.7409044337, - 356097.60594827234, - 13142.064982992973, - -99821.81800508361, - -88667.0633129989, - -303699.3162004098, - 10143.727770741905, - 583785.1235861715, - 648536.6726233534, - -543098.5469692507, - -583033.1723371831, - 813566.487213899, - 734825.3565112803, - -328855.3062946333, - -466181.3222802531, - -365479.9084505409, - 228372.32525247696, - 903934.3780284302, - 320727.1588662637, - -320383.30347257736, - -860049.2925058996, - -952327.836973756, - -228157.47754152227, - 782624.7715087956, - -426445.81035255233, - -112544.68212304625, - -971010.4224158174, - -441847.32085370994, - -418327.90384353546, - 345048.25542075903, - 994327.3674548118, - 608889.7739436816, - 669688.702007017, - -301691.96709017124, - -905703.1160207894, - -977907.519841735, - -631623.6249763279, - 499862.48325552186, - 171016.39441702553, - 388685.3922678901, - -422694.0721096835, - -878307.6414912663, - 550143.9271309747, - -336398.84910382587, - -756511.3462728874, - -912599.3077388391, - -618194.7345493917, - -390670.22463477973, - 794374.6793098185, - -731922.7386281167, - 950520.9405276891, - -854733.8545677027, - 541486.834250211, - -861410.3882175988, - 249761.57438166125, - 150644.44400739018, - 295328.6415237062, - 807385.6146040938, - 66739.46051902791, - -436897.60210636817, - -134417.1446968374, - 815789.0877785081, - 640216.308506157, - -865992.2514942115, - -660342.1055368074, - 512701.9041428378, - 355423.21677749377, - -70009.51815623413, - 345187.76924801985, - 349814.3658093178, - 181674.71189755612, - 930780.8357906794, - 262706.7544336994, - 48223.20635042265, - -424374.5680725546, - 424755.65046534536, - 236557.87223559475, - 913139.7718660278, - 941144.152200399, - -454102.586298186, - 194304.5691078511, - -136917.6932770111, - -354412.68626613164, - 581036.1480066619, - 910852.0920602485, - -238770.87110864758, - -519975.3647664729, - -374922.1653882484, - -980354.2252625735, - -52779.7952836504, - 926032.2731800559, - -225025.392634997, - 116872.79161366248, - -295744.19989571575, - -320875.60537628556, - -307751.5469476992, - -65132.54734917773, - 576024.1777804472, - 301379.51554337563, - 159426.05803298336, - 577226.6413117722, - 4664.21505131942, - 798580.4599391682, - -401261.4412802744, - 266995.3016585989, - 808045.9233775726, - -621784.3596358845, - 547554.522703148, - -340891.51386623963, - 888754.5034339421, - -157916.3099396197, - 965810.4953762245, - -475203.53294961626, - -116908.34008703077, - -199161.7199842195, - -233660.9642220957, - 894050.8535461549, - 44489.13091515072, - -492008.83867498545, - -873116.3832666307, - -648100.703862506, - 595732.8868098641, - 718339.1568646942, - 605367.2874301472, - 914384.596585353, - -221209.96221077992, - 603137.8048185287, - 462305.83652924537, - -864130.6121854298, - 528757.7981371396, - -506008.40391131083, - -633597.1107892569, - 577552.1941889198, - 912345.2228098568, - 578520.1572902172, - -96072.69883837311, - -101423.73392416882, - -113894.19503511599, - 432865.33585521614, - -270425.98007576447, - 596801.3489205797, - 253117.49588625054, - 493124.36218234425, - -112288.82137357688, - 134012.77358148622, - 238669.43887709934, - -951494.7367034319, - -146677.65481210337, - 699835.9126720852, - -942444.2012530356, - -212552.6430438953, - 971386.6902436607, - -339120.88280133635, - -200805.42058790484, - -802814.8518692915, - -9910.157261713515, - -145721.03503708367, - -728307.274642908, - 43615.277812140586, - -742932.4318120556, - -646027.8283170635, - 369888.62879991834, - -973097.1547492513, - -631698.9280214333, - -273744.563421626, - -417287.63810848957, - -164427.75295124302, - -148428.60327384554, - -167801.14028511717, - -489426.9334935224, - -278793.91134173615, - -340296.8578388577, - -556484.4102847719, - 438655.2061440006, - -276452.37121939694, - -312836.70772736374, - 929222.3654516859, - 893714.4238273806, - -473746.73484195507, - 531559.2164937468, - -802521.718652915, - -905290.688275465, - -237000.90195947853, - -147293.3787711459, - 291600.58864682534, - 986399.2788948404, - -485075.06632204156, - -870289.9228691126, - 624760.6382367495, - -790288.250497408, - 752269.0566820236, - 467576.6729269193, - -865994.9152429418, - -793110.5030413155, - -474701.8137908143, - -306263.615920803, - 567195.3729509839, - -734916.236970009, - 492843.5812387413, - -391624.37866300024, - 164122.44981536551, - -232944.89130545105, - 975469.726241246, - 844287.7477090895, - 404011.35944655776, - -640305.2951774928, - 42875.41627960634, - 214010.42808227433, - 740215.7473042416, - 80541.06876468725, - -818263.035605683, - 117358.92862004315, - -389524.4486992695, - 980386.5459952197, - 32881.61159634773, - -228878.40701000005, - 167355.87941127262, - -184207.09026324135, - -322222.1009867254, - -911386.255718227, - 468397.0603039731, - -145881.92459988635, - 20289.13467154059, - -130695.57461700997, - 654920.198646014, - 719850.4607971632, - -355735.5679648002, - 345443.24182197993, - -730479.4858215358, - 252781.59937537214, - -74231.81779072153, - -615785.4515998511, - -540369.6251237015, - 383112.4033338451, - -511216.2264416995, - -501092.138278501, - -965567.9043428504, - -839433.4613511378, - -532429.9512088739, - -178821.4939386541, - -822448.5803251842, - -633310.1915515151, - 686027.6814889505, - 231928.85951641772, - -238922.6945320282, - 19343.09191528283, - -12639.75195559186, - -188801.82759107277, - -744755.3782537222, - 749280.2816982729, - -705496.3797711047, - -978498.9729623264, - -412114.2968546636, - -359182.9439650376, - -631168.3449491494, - -436244.0560767935, - 126147.95625243768, - 495248.3460312427, - 872207.2549893862, - 763815.8244084439, - 538774.1780694057, - -403730.25814271515, - 819782.3778926807, - -273122.6818702672, - 59096.47112054128, - -672168.527766483, - 881841.866364834, - 350907.38638445805, - 604854.8886693304, - 315731.06400445325, - -70636.49318735088, - 220402.07476972108, - 10276.306437494442, - -327893.4539160956, - -836192.0242930638, - 988222.3716726251, - 817117.7813975348, - -382381.57208321156, - 317152.90156630107, - 472977.4384703318, - 524509.9575316767, - -70957.70632608756, - 578095.1169898873, - -460262.6208950564, - 932693.0546655076, - 669242.1796192825, - 898594.7373659344, - 482810.96346390503, - 46614.397469187716, - 613503.9349926028, - -328667.46486920473, - -375082.42819396954, - 554434.3536955196, - -152235.5548132317, - -509390.545380086, - -32784.668225617206, - -501202.2611890803, - -157964.47741868568, - 524473.4985496274, - 591290.7650467849, - -997624.8203061946, - 58262.989303087044, - -561307.7408716826, - -410503.7659081976, - -714948.8255658642, - 728526.3339241468, - -919555.6882750937, - 629500.2194310939, - 504822.0883629118, - 461006.2733798683, - 993169.8272048872, - -190372.42927670528, - -833592.4892739374, - -719753.6594739618, - -938210.1990110476, - 828057.8115786785, - -238202.51522141646, - -958559.1409717347, - -24438.436745954696, - -83509.411334598, - -359737.5232536628, - 635658.6298983895, - 346033.81218879245, - -584065.5313868428, - -424191.7750400952, - -795188.4583446136, - -926390.3870031927, - -192314.89519482836, - 837315.5068836316, - 947912.7199171691, - -315901.9337075899, - -413380.78296095703, - 607344.6876092256, - -82009.2978524103, - -16617.17929283868, - -483953.7495870241, - -480353.54303317115, - -115491.68593012604, - -237962.22102295837, - -36646.96630013054, - 476471.5152563388, - 978014.421760589, - 166990.14919309053, - -75256.5164660608, - 704061.1470914854, - 760545.8185140528, - 271707.9082764273, - -766792.2989184954, - 752371.0571407238, - 685002.0750843509, - -152387.7131267184, - -38615.33669416017, - -982653.453731932, - 665420.1517247125, - 989118.9587806035, - 780812.1694900701, - 988444.0564038804, - -122241.26006716251, - 541462.0618325197, - 549303.7161436194, - -648806.7077126907, - 415501.4804787651, - -134815.93054463016, - 122351.19856486021, - -289838.61323574843, - -938958.6288578539, - 210809.50595830084, - -43728.42986289638, - -655509.619102224, - 648375.4654321772, - -831518.0754764182, - -240776.02362994765, - 26639.230505501655, - 32440.555743900703, - 640243.7745336627, - -993279.8238941705, - 334421.2859764597, - 932139.9698931639, - -267927.02472327545, - -833849.6950161174, - -455186.4174345987, - 742726.859209176, - 375032.87676424923, - -901061.6611573094, - -200680.5681862598, - -29098.322258459542, - -969099.5620265845, - 606470.9157401051, - 688047.7310671486, - -504679.8049857015, - 791956.2605699479, - -881551.4400428921, - -302741.91980461904, - 638370.066355362, - -532379.4632399773, - -112437.22020383018, - 998204.9462851814, - 221673.05812289938, - -435490.14728919585, - -602451.2772119255, - 838428.4977580552, - 640429.952443936, - -864861.2267447675, - -484302.508192239, - 109128.89678128313, - -20328.54839748688, - 828995.4951326104, - -487462.2273071969, - 713017.6155422061, - 101094.90244385455, - -615236.0198332516, - 407851.9899300057, - 738444.4700362957, - -326348.93110190454, - 549713.8383506504, - -789031.5682618187, - 927239.5313433468, - -644852.66152537, - -848674.8403956364, - -90327.43701721956, - 344851.7126963531, - 582211.9868980944, - 494938.47216756403, - -398224.02858665097, - -13117.584241160828, - -476422.65956851083, - 463827.87232882984, - -198483.34034838344, - 861800.3364449494, - -536551.0299197846, - -564971.5754824718, - -438391.1547383694, - -284302.4138421264, - -763138.098079924, - -45475.32864353476, - 882993.5418502439, - -795097.813606658, - 778033.6674893287, - -2418.8129155333636, - -669045.763451928, - 852396.2366923961, - -867435.6178178153, - 141130.79943615815, - 5859.207615196205, - -430016.71368114057, - -311136.1816182663, - -92202.74906087144, - 726396.9774056793, - 203275.99120218464, - 609164.9786011094, - -820893.9356755016, - -976925.7991053668, - 908116.9482987425, - 50135.352156308596, - 307470.6809337242, - 624935.1013253545, - 750077.1034427078, - -637976.1884960186, - 25448.887234835736, - -550020.0952087349, - -746197.0227358456, - -973658.3178920841, - 978186.6826866972, - 680227.57286416, - -950532.6006931318, - -985116.223945313, - 276446.1342637452, - 555812.3774844274, - -561906.6680129834, - 585465.9502753434, - -183246.98086339253, - -300315.4713015126, - -618267.1634012104, - 820535.9739558253, - -104275.09765960963, - -5346.58817616851, - -864617.2015054823, - -11397.760439159965, - -422153.3977464358, - -905977.0547811708, - 157507.68378500603, - 173869.07234280757, - -856254.0526185319, - 11332.246300312487, - -306103.04654401954, - -956467.8967193629, - 351871.0630276667, - -53051.63699602034, - -799163.3175611261, - 742842.9453996242, - 272709.27656412945, - -794318.9590493409, - 990134.2905889245, - -758069.4118136786, - -709608.5416866865, - -596240.2829503573, - 774885.9141317729, - -690494.1635634536, - 990929.230161747, - 896250.5405987363, - -278399.4663815832, - 188803.00874917165, - -857047.8676380799, - -371863.4527597935, - 404092.4098476062, - 4639.789714036447, - -286453.57823014626, - -719632.5292042802, - 888654.7196585234, - 709150.6721742977, - -17131.11180112037, - 410570.8990221861, - 286646.4790530028, - 996029.5025672762, - 148476.7391556827, - 509349.41798587487, - 210255.15073168412, - 926686.2733395682, - 853052.2156470184, - 154181.9189454976, - 361502.5767059032, - -637520.4295303245, - -22692.749180103, - -972902.5106377238, - -941306.8841809924, - 125310.90758352548, - 448987.6137132358, - -470790.5889628796, - 272112.8848982979, - 688402.4103696209, - -782225.0600537152, - 337320.4438815547, - 585685.6956678807, - 782037.4540348713, - 323611.34131160576, - 962111.1065153991, - -708972.5664482788, - 785076.1176649188, - -613759.6537262494, - 874620.6567376726, - 519880.2158460802, - -240080.77759907919, - 867303.4894966078, - 18586.59640843885, - 718317.2618722233, - -109884.420690743, - 60893.88399643325, - -793863.2538143109, - -823096.4695055234, - 541984.3046998187, - 502612.91624473524, - 850451.3240314535, - -443566.7466770268, - 76572.42006685339, - 752175.587599917, - -691661.6245944632, - -420109.50775639876, - -923914.2776682483, - -96873.89215060804, - 861993.7621760052, - 312068.956212292, - 393104.88502786536, - 413417.946519302, - -623742.7982681545, - -988864.157823258, - -496497.2335478825, - 495836.4964779549, - 667658.0968566479, - 183159.6345591602, - 548791.2674250366, - -530794.2353924422, - -872106.4705118968, - -967081.6457778057, - -295675.77862820606, - 489241.69586654374, - 114351.63197177456, - 928656.4360568917, - -481332.9520845115, - 205154.82978101927, - 809021.1094255167, - 648386.6148555946, - 624035.630911147, - 111741.56162165417, - 462622.3479891516, - 847774.294941535, - 866910.0309817701, - 983925.2318834744, - -177176.59501690042, - -389312.6651434737, - 797430.990397737, - 989151.7564085644, - 244878.55848080153, - -485502.753489353, - 46774.670624054605, - 60435.485430123445, - -898449.5125900214, - -744796.6017609286, - -862882.6783479553, - -157888.66223432563, - -972803.6790509165, - 470136.2829271827, - -975688.118474598, - 152992.7080337581, - -23354.031071151305, - -668333.625705809, - -876205.9164195886, - -883069.9837239113, - 426598.1861566983, - -869287.3247835517, - 879853.569689026, - 546594.4866078043, - -99509.8622748074, - -302744.5540407543, - -731855.0644453203, - -272627.68700988713, - -278223.8655805169, - 888957.9283436493, - 660108.9266092846, - 917268.780933918, - 669599.9344263385, - 727831.5920271352, - -978525.2021719315, - -404913.5781783684, - -34753.84899003142, - -71156.82005439771, - -802907.5131513008, - -700850.6394597387, - -921930.2499325539, - -162433.55914885437, - -334808.4674539402, - 435073.6914931985, - 845636.7029966115, - 207135.67822526558, - -96026.04785172586, - 199428.4919916447, - -424082.1046796668, - -16898.45075365981, - -957590.3912369654, - 139886.54128272305, - 394217.39772983023, - 844416.4301755194, - -653140.4056687764, - -834119.4183135683, - -156832.36929292322, - 551304.5390955278, - 176337.7315588448, - -663101.676063939, - -67259.71288117827, - -773420.1471329172, - -182063.7869665904, - -955268.3965395592, - 327514.9676002464, - 642530.0727235521, - 973285.9105600205, - 951858.9912748337, - -969172.2595629728, - 846551.2772597088, - -61163.42131961572, - -93877.61484184742, - 979221.1718722845, - -920741.4436678549, - -594515.5212872077, - 452862.83363979706, - -728781.7413482134, - -919477.2161480862, - -882764.4693958461, - -264757.4637711385, - 841593.6916205434, - -757659.8021381089, - -999019.2228408539, - -596917.6177809017, - -459175.655123353, - -716602.890959771, - -500483.8474121998, - -840020.8231140387, - 989875.9171430891, - 433627.0314213238, - 655071.8827625411, - -129107.77606289559, - 77293.70857259043, - 428432.3133948817, - 541975.5819624048, - 664882.759408806, - -716933.2276750136, - 570423.3463876566, - -745832.2744820971, - -566363.5393751377, - -155364.70874316798, - 972210.0894667978, - -464628.53244664235, - 921176.4067803072, - -40357.7575256151, - -193500.85153562092, - -980076.2235248009, - 918901.7331085308, - 881432.2925423266, - -507099.1839085488, - -332661.5783185198, - 587733.3523546178, - -636959.5999525497, - -141133.73722255696, - -264003.21528352035, - 220983.1286203139, - 725863.2890422947, - -543648.030735856, - -950317.5831300783, - 223913.6095940133, - -362353.8430032773, - -194579.08321879857, - 286151.61766757537, - 977660.498099364, - -176377.3243333846, - -768821.8593968159, - 80553.70193168665, - 215160.03113057947, - 133973.190815301, - 14309.102496320447, - 618782.1244699516, - 359096.88520256465, - -565747.685903387, - 889600.3765064016, - -777124.9274659591, - 309531.6997973414, - -75919.07408138998, - -454143.96940854273, - -785630.3454262159, - -694477.9817728173, - 92575.85894631903, - -212228.4886969661, - 473307.8813019951, - 203860.33817112638, - -221340.06115960414, - -981006.9289098473, - -975437.2548396133, - -385536.93670941814, - 728597.5080182458, - -562186.4477946741, - -389225.06415039336, - 25621.028918850985, - 430823.64465525333, - 740392.9498443081, - 678633.3729158305, - -85018.46833585591, - -878045.9821414341, - -118007.17027903684, - 487321.3323061261, - 874324.767502872, - 127017.29514174654, - -436085.1153599603, - 348440.3443451778, - 309205.80936487106, - 972247.6583574327, - 763742.4912586879, - 897545.3621887406, - -502720.5229167948, - -153319.72724914667, - -205680.67829882586, - 545787.881592392, - -227452.0543237959, - -258491.8809154342, - -621266.9560449793, - 47304.82415004889, - -648693.9622705946, - -997858.9143206262, - 270633.6365727273, - -223806.04027736007, - -300981.25730592496, - 763076.761484927, - 642887.5529332205, - -432338.062561755, - -163576.2588385341, - -963363.6620967619, - -683224.2199831498, - 856808.2197890275, - -987666.2676369658, - 479609.2251199442, - -80915.26052497078, - -201293.44341346656, - -173683.12627848348, - -508387.3170630311, - -435191.4569828126, - 584313.785397261, - -109722.51489403195, - 481190.76916848094, - 108791.43831964266, - 68776.18660720675, - 622369.486735215, - -209513.53982177845, - 650541.4866307242, - 754712.0658988255, - 813752.8634957385, - -298356.292464911, - -61215.42033610039, - 436744.9224343889, - -330041.7260647648, - -334831.8316804262, - 91967.98304206277, - 28156.969675589895, - 547236.7988988012, - -374049.4180060154, - 565668.6981676611, - -785453.5126606135, - -532090.325297228, - 185154.70142665124, - -497283.4969205837, - 860027.8346385706, - -814959.3364254577, - -282139.9481285012, - 820268.1822956883, - 256237.40116499417, - -275552.67409980064, - 485113.3110041772, - -959288.5572765302, - -29150.728584728335, - -606306.4889926997, - 431974.4612779708, - -115658.87291454802, - -141340.8033040664, - -639476.1138294744, - -873604.5512851904, - 356698.278740061, - -922327.874832231, - -157176.03664447056, - 683041.7962712235, - -580535.0009915861, - -905786.7234813663, - 323574.0994880893, - 419768.9946689729, - -948491.9834279742, - 687938.8977342619, - 26380.444313031992, - 79963.71184017637, - 190785.54963623497, - -340201.3266911328, - 91426.61387893325, - 245229.65292556954, - -687731.9975273454, - 422619.73028283607, - 82640.69749756575, - 409409.64705632086, - 541844.3062241749, - 241268.21754474158, - -873262.8003619645, - 344162.29020153667, - 322244.7211868584, - 31269.583853828386, - 877970.1559976565, - 43613.1252557781, - -696935.8982222822, - -235858.8432603941, - -399988.58295613027, - -64152.80407367008, - 432237.3287891819, - 201644.68375252697, - -52105.695444468525, - 536949.0200655625, - -30057.02775410657, - 245155.6867537943, - -156326.66866772072, - -509475.2787714667, - -410466.1960566309, - -196989.70373274927, - 112978.40715750973, - 802669.2471139152, - -99956.64532868864, - -868964.024109765, - -420588.6028962258, - -988293.7621873369, - -661473.0315575114, - -19098.448603173558, - -885452.1533373225, - -546358.1912804205, - 905081.4248111472, - 459545.7111017087, - 246807.37620190406, - 329745.09348034876, - 929943.7776050983, - 145914.46635007087, - -614194.6682511497, - -9454.240677924774, - 412366.0488617531, - -707537.8309552954, - 803685.9727040591, - 687019.9141633249, - -55943.551977541974, - 817441.6620766443, - 412043.04027081974, - -852743.0058874162, - 620344.7129535171, - 262995.39292433404, - 4713.401427909769, - -109873.48881074932, - -877041.3220525215, - -371779.5231673671, - -588533.723513192, - 302563.74099995, - -839618.4403552366, - 509332.08212782064, - 118186.19450077206, - -295941.11791942647, - -751610.2740211206, - 838850.8886677693, - -680242.5560828301, - -529541.2451326133, - 910213.1889249687, - -335333.1016434902, - -968678.9895839087, - 271258.7525951278, - 162547.29342908724, - 91138.2414169597, - -916202.9862435139, - -297488.8215832743, - -188031.03752062246, - 492982.5007140298, - -987259.2489581831, - 518416.15780345496, - -713094.3552406557, - 853275.3857174022, - 418861.95206048526, - 916586.6606952572, - 167728.63143532324, - 532745.2118939633, - -520667.63225461997, - -504160.0284549923, - -904957.3092744924, - -260124.91458338237, - 510580.43232968386, - 528461.408536822, - 787801.8957278694, - 655661.7208644759, - 756042.0510962665, - 817517.6184635771, - -216897.53904829256, - -210776.7984364153, - 115189.32586343955, - -478824.9638186075, - -468807.7269477244, - -844258.0720995346, - 972414.3212990139, - 344833.1258162722, - -56113.64655117135, - -624188.6237682998, - 685277.6504690781, - 485920.86118686263, - -278312.632114432, - -75043.35641322468, - -906194.686836411, - 365577.9556860479, - 19524.356422792043, - 922216.6246370509, - 689391.3961049088, - 840927.0014726613, - 200331.60443690835, - -869431.3932861725, - 878422.5888265629, - 973432.5209783085, - -578674.823105952, - 294351.2971138873, - -690023.2138685087, - -962916.4945133477, - -857485.9930342253, - -832025.8563876976, - 974341.1500846075, - -396898.56550470815, - -668756.5633246308, - -360457.8358762485, - 331181.2894073336, - -311866.74036477105, - 242219.15211919253, - -943557.6307255606, - -375938.89714875387, - 22484.12914812681, - -575213.0918223544, - 82307.76394413941, - 153899.09959843685, - 594127.4211885713, - -159090.79238988232, - -450971.1288868068, - -507492.7913564229, - 467626.3560175302, - 957484.420567825, - -635565.4457632827, - 404504.59733543464, - -741242.8093463316, - 910929.0860177912, - -361367.1534870784, - 156410.9969402554, - 189214.3652513325, - -54.2568822701206, - 174232.51026043718, - -494773.24245352607, - -454723.27737979847, - 213984.13246461056, - 212063.2508260616, - 98546.0352022065, - 5378.334789895911, - 810093.3127857712, - 147997.73536322935, - 783102.3012779879, - 987880.7432751495, - -229434.9756673648, - 869493.7651605841, - -139076.3587987369, - -557161.2076048016, - 21155.026715105276, - -264766.361332601, - 618322.4255131544, - -816467.0925546531, - 556012.1707017187, - 88392.64235999744, - 197187.47226018296, - -283815.70254962816, - 553023.1095252107, - -945830.8209615549, - 238023.91201015905, - -480028.44922189624, - -17626.68976837234, - 252398.93652451606, - 484001.7828030414, - 741815.5580859713, - 390351.85620191856, - 685395.2527809612, - -906494.5300026286, - -276101.1173961465, - -17294.304320395026, - 557569.8153357534, - 609855.5595821952, - -943525.6187202075, - -906970.2892897038, - -431298.00250892347, - -842679.0553811144, - -562682.5666189257, - -637593.3515710594, - 284628.80755777564, - 797637.7142915607, - 257071.35954504667, - -598042.7588701511, - 479923.3402769547, - 28237.085443992837, - -319240.40852889733, - 445429.38310308644, - -143741.54132754912, - -913908.5084884344, - 224066.6061014116, - -409529.2008980156, - 77009.76021396478, - -393132.08359290817, - -842425.1254184563, - -980481.7983934435, - -109963.52214518002, - -596984.3194120133, - 421593.864468248, - -255769.34934627914, - -155143.96571447953, - -84665.76993441532, - 446213.02711451636, - -579121.0566209126, - -3228.701671307732, - 422613.975917554, - -233788.34968304684, - 698643.5599005307, - -856922.3159138297, - 873464.2431898396, - -473563.7949953864, - -947625.5678334567, - 532425.4066042482, - -911525.2637976729, - -916676.4657064084, - -676742.7713677248, - 14421.365019352317, - 367702.68646524154, - 808630.5937924972, - -982040.7794521189, - -535376.4961007346, - -316730.30129867507, - -727573.9994552474, - -279049.32792091276, - 62214.743431753704, - -868796.5174837488, - -543476.9883716386, - 230747.02239104948, - 930874.6640197869, - -934200.4703555017, - -563127.2950407254, - -160756.6281830879, - 636913.0432592356, - 404332.35672016774, - -400521.93774480396, - 424573.34137293044, - 188394.46814925777, - -561527.6895167028, - 987334.5055397842, - -917283.6942899865, - -931296.9096755133, - -84068.07931226678, - 329765.5710312666, - 990895.9715608172, - -179331.26887436467, - 274.18633228437625, - -534743.3847973393, - -780534.1698024244, - -482484.08376243623, - -216949.4434647421, - 748912.3287694999, - 986293.5598681071, - 232516.50339234597, - 50846.95541483297, - -175943.21991923524, - 791478.2809348404, - -681612.1072798342, - 58127.60924020877, - 42778.568602323205, - 234092.96390270052, - -261676.87664463822, - -636028.5534186077, - 562431.0076399741, - -411947.4321157499, - -597153.8200546785, - -916947.7880325463, - -705242.712674034, - -191469.61416820795, - -949088.1151979893, - -333822.0089222828, - -182133.5816642613, - -66015.35047639784, - 368087.1511835344, - -353697.4321993922, - -536604.9882410902, - 473884.56721989793, - 605658.9584223814, - -404709.8207523263, - -54742.5545743947, - 961215.176165372, - 115729.24020113629, - -414253.68741960253, - 752739.6761999896, - 666862.340182689, - 67661.06601563026, - 503951.37492533016, - -388621.97157925804, - -515275.23605421965, - -757491.9347915816, - 612555.9659177166, - 489261.3941316415, - -982996.6467930258, - 83626.01656723223, - 230434.85581427548, - -21114.28305604135, - -90428.70967066064, - 296478.7950444805, - -966846.883209967, - -780598.5460331015, - -967735.6926779113, - -461059.92481831735, - 786610.187710862, - 879140.1641903842, - 43314.5011843421, - 278136.2868301425, - 698183.1032720456, - 806349.2268740733, - -397630.8008376086, - -358879.3970287651, - 285684.8037062269, - 604605.5558427592, - -947059.649165231, - 158191.3515991018, - 485965.6338905141, - -158879.87491432432, - 129367.15688846845, - 198184.73217274746, - 978196.8533225895, - 713214.7743347823, - 468122.63845769176, - -381307.2731673779, - 615398.963360069, - -247645.52530044725, - -873048.7024753812, - -82438.67513839564, - -301517.9391769822, - 381569.32568402844, - -72564.69520485065, - -847974.8310260638, - -624372.4635593375, - -576730.2765561315, - -168577.86934006037, - -296564.50380124897, - -364361.71433323674, - -492597.56048871763, - 35296.47857337159, - 420021.4463546965, - 454944.5971178281, - -945800.6513390202, - -855620.7987899301, - -182147.10911050468, - -632719.2284925724, - 51871.86163710788, - 295433.30983351177, - 521813.52874387166, - -883109.8371806932, - 587329.6188037973, - 180684.47590905178, - -10809.982021956044, - -769038.096146106, - -534457.2735356829, - 505084.0013940303, - 919420.8622752513, - 123252.75945565072, - -349338.01725310687, - 28975.45331310436, - 133053.16122446588, - -200571.0906061211, - -468513.2612679026, - 309822.871813791, - -479063.14112764824, - 579875.3899708529, - 934442.9915052219, - 103074.37200741231, - 323347.94712743163, - 348004.32941321866, - -80993.48269999007, - -800860.1520748159, - -965068.5226402589, - 348004.553076968, - 702962.7869214141, - -271911.56605665025, - -415611.3770407321, - -267938.64974705374, - 940918.9806430914, - -884217.0166808323, - -112606.7555153969, - 844909.9028802278, - -708295.0091724356, - -634052.0019617239, - 367228.9420504924, - -327624.1032940919, - -305604.27895617834, - -90300.13158459483, - -520174.5447660726, - -569480.4406807517, - 94387.71254925072, - -386358.7164788742, - -954381.1545288572, - 299747.16771257494, - -559491.0604224965, - -542498.5120243762, - -139417.79463834924, - 688013.3415562162, - 348954.6036298228, - 205465.37858689384, - 213992.4096621415, - 82812.26538328546, - -915628.1553359362, - 316048.90945018484, - -640389.7847236581, - 738716.8665764598, - -161139.7085490225, - 106607.11054417393, - 921187.0400892184, - -922699.7788318148, - 48594.74153787469, - -559258.3662861967, - 254491.79811641076, - 33251.61082166583, - -179827.40244080508, - 195024.71952536894, - 566140.97336386, - 903381.1962119655, - -300273.9307739282, - 309648.1670935587, - -471111.2544004563, - 764523.5890097027, - 409624.55964518554, - -546981.8192781708, - -195992.2281424531, - -974830.3194987258, - -555914.7275795464, - -384676.9757273485, - -968027.7259005957, - 131087.03356579586, - -377491.11454555416, - -679827.2293925458, - 370173.70037625066, - -139886.43633667342, - 634398.7676863831, - 235017.74655142004, - -580102.0592951766, - 486322.3932047258, - -358908.16408815375, - -602593.546620462, - 636112.1519604072, - 264304.76402528334, - -654743.8559167729, - -913624.2327944491, - -742081.2395013996, - 760169.1365827494, - 465303.56751728075, - -885331.0880299909, - -791916.4137905741, - -666169.5161705825, - 541182.5300775139, - 366950.8470799496, - -380691.4509125823, - -527287.0321356482, - 387152.3805970955, - 922796.3082957211, - -641075.7681453216, - 95311.43163698363, - -252671.6832573741, - 882358.5801086217, - 105372.60614969513, - -989867.9563227106, - 626113.7243081916, - -923944.8699588646, - -765096.8396685073, - 522713.3475521484, - -47380.26051355648 - ], - "y": [ - -841989.31294275, - -775095.2833023075, - -623621.8672748602, - -508933.80539782916, - -561971.2488781825, - -785168.8110406864, - 438056.862237691, - -427115.71569997055, - -459779.53796019853, - 796480.9210348161, - 16228.446847255995, - -10117.113578631543, - -53631.432702805796, - 831976.0985445925, - 774172.9920404115, - 159844.88204567993, - -6243.166011681511, - -521021.30094780907, - 694713.1899190526, - -910162.6660223072, - -774909.9996208384, - 320117.776495078, - -547323.1177429256, - 654473.3768154809, - -554026.6105989073, - 40335.22057385208, - 135508.08662869086, - -279877.61613975046, - 585072.4377650085, - 405049.85986093513, - 232440.3037218077, - -25362.31872866912, - -248481.98492127337, - -560953.9048498886, - 485941.3956374863, - -519433.26064300345, - 184701.89774695545, - 893827.7421553927, - -828817.328114863, - 750487.891196061, - 508993.2816321345, - 540210.7149106248, - -373173.5110220982, - -303596.317152965, - 522818.3144789189, - 414595.30767788057, - 19484.603545775193, - -461024.5494484895, - -47611.78987915504, - 88180.55865862906, - 988228.6950640721, - 357677.7559037796, - 121526.15548473045, - 698793.2608907002, - -487152.4830132172, - -955940.2429958172, - -701703.5223337576, - 229654.94053449653, - 513842.68831132515, - -395110.0598072463, - 257602.165830513, - 121612.0765485973, - 406139.1365539877, - 873399.66086256, - 948537.932093139, - 925076.9258288649, - -94842.01072127352, - -172396.12733221232, - 160389.7146379405, - -373730.5674296345, - 505960.80348878325, - -62591.644013108904, - 722670.2405123094, - -729278.0097360006, - -884989.3737237633, - 5179.2626380713355, - 701035.689142802, - 499722.50452963763, - 106126.88316707186, - -820824.4388997552, - 928534.9602815487, - 218781.86384893983, - 11373.293613078373, - 41947.26905584045, - 425564.55518506933, - -285905.4255897964, - -144410.63028630795, - -740040.9963485603, - -492289.95560486434, - -191699.3365552453, - 970316.6821376963, - -838140.8058459905, - -466086.6372245687, - 786495.8184204455, - -136641.84111491195, - 551026.796179372, - -118245.65945172361, - -429303.758173051, - 289274.8799673728, - 370829.5671062389, - 112566.34725016635, - 938564.7538542207, - -458932.0946854003, - -112653.8955686256, - 887022.3671904237, - -979024.3953836804, - 935855.7791733175, - 392777.02472150634, - -634539.2530658016, - -733324.4431803057, - -721643.7739481903, - 227876.3792840539, - -232102.3256213983, - -971248.6088668206, - 715376.7179565134, - 959367.4194005737, - -373546.1317002338, - -700231.0711965273, - -963576.0897303212, - -278579.9440264758, - 100376.22156342186, - -326112.20207237767, - 981521.6684350774, - -482595.47826915927, - 648660.3447864088, - 843644.3832424028, - 732209.4835010477, - -153041.8691462083, - -599028.9563257105, - -296776.4651412641, - 859557.5830612996, - 965780.9909117548, - -63516.7902884326, - 477161.9168648309, - -940358.2636980952, - -632418.384718779, - -365382.38695398584, - -239563.19322688025, - -239304.6913621528, - 432969.83003249887, - -615440.0230895698, - -554931.4032421844, - 896897.3146678181, - -346647.9730130474, - 64189.91681325048, - -38732.925036637054, - -537662.0371003775, - 966495.4235025916, - 969717.6194514378, - 783870.0048633596, - -74587.61620013266, - 831651.3050455592, - -34707.954877353455, - 132464.72896881544, - 244292.06611394117, - -723699.6589583688, - -289391.2403450825, - 382873.505401377, - -182000.41286751878, - 714299.0223519965, - 26156.182082637035, - 294215.4611805308, - 200268.81118485073, - -640258.5646004735, - -807273.5584057267, - 45655.76911556612, - -792789.8279053174, - 101492.81294258627, - -146176.85529026692, - -30810.42899432007, - 435382.93784721714, - -322459.2340622958, - -174970.74177023242, - 26905.66458774213, - -947156.7174291624, - 548994.2918747881, - -830265.2484131423, - -80771.06041622107, - 933396.9389264802, - -298576.4863351168, - 981905.2432800552, - -386181.65959297324, - 672698.2694803685, - 269049.57331865886, - 82853.81087077859, - 867446.6458449088, - 730782.4794822566, - -730793.4428424267, - 636929.57350753, - 529693.9688298834, - -258215.03400263525, - -697221.9707553786, - 508239.4434232529, - -22932.213957937318, - -441964.9317826, - -487813.6298938742, - -354283.3441196564, - 596646.8317409, - 173346.7010389238, - -532732.7823888039, - 922786.3563789611, - -644701.2051098609, - 94435.49249267735, - -347927.73612048425, - -590558.1079634632, - 436659.297220233, - -123683.88473853997, - -688526.3661659575, - 316655.25208180136, - 916492.8733069033, - -384164.92908829, - 320792.0802057198, - 779329.0476945671, - 45889.27917682817, - -253784.5924087889, - -934164.0465042376, - -656028.3240911526, - 248447.30831388495, - -189224.20790707073, - 822378.6475941191, - -411076.1745670002, - 632391.1711196257, - 736518.2931963585, - -234070.1943759147, - -988385.3949405677, - -256534.5830081587, - -581501.1925851901, - 101762.26026891544, - -640495.1551968363, - -204040.0324043048, - 267036.07940844476, - 577995.7473875738, - -176993.74511697164, - 327564.2604767903, - 376214.41089156637, - -262351.8632592727, - 303277.8993777547, - 549892.402684508, - -44412.02884230089, - 541172.2541876618, - -871317.3856770733, - 569631.0496447363, - 576377.5612561785, - -957608.7704076947, - -773571.3315946127, - 79467.55808399919, - -592926.183109103, - -511913.7106276921, - -363660.75017817743, - 258840.60215001003, - 774502.1446493892, - 281063.3683157227, - 74526.5651385103, - -44382.38128250083, - 444682.40044604125, - 728585.773056967, - -299820.94540707394, - -852890.6146932214, - 163635.05716330896, - 910905.3678832464, - 648026.9528531422, - -257961.92877510114, - -19486.05532677794, - 140476.45945029764, - -303089.9316090217, - 702957.956639624, - 535360.6304546237, - -582178.1698576073, - -122981.7689829138, - 975052.8974165997, - -580163.7149676814, - -763095.0042941425, - -24819.552881023334, - -173346.57451710323, - -417201.7659561833, - 440051.72985487495, - 167007.07363240785, - 844123.2156411576, - -259445.79781511502, - -441582.8475081609, - -202506.6013903658, - -716399.6943027051, - 256931.79497122642, - 666829.5187873732, - -149172.65446396644, - 227772.45012929238, - -598982.9203597307, - 894017.2524725694, - 826749.0806877838, - 98101.3374158497, - -149638.04410942073, - 892984.7573596186, - -446380.38475321437, - 348686.85801109846, - 555197.2759476387, - 858631.2968465331, - -535266.8793977569, - 347729.6376490493, - 155824.0474256294, - 289323.7154408901, - 229215.98538537679, - -118967.65056689085, - 710262.5151851682, - -838054.4841425869, - -896069.0167068348, - 980573.850637422, - -951730.5169718482, - -972626.8602657677, - -540573.4524308392, - 362491.91229326796, - 739083.9627370343, - -875175.6763282787, - 761101.2880335036, - -542593.2626462264, - 653538.7381658673, - -41310.81616053112, - -140734.16671022752, - -276889.34631344833, - -789429.4666513097, - -969264.7181389591, - -199631.75714235005, - -899703.0741891128, - 767753.8548466698, - 11381.849727401639, - -597056.648969767, - -147378.84394593493, - -998483.13613964, - -634279.3874322197, - 471549.12624123367, - 37895.3198298011, - -521723.8195950371, - -436016.97311427223, - 833605.513880483, - 353085.1610704648, - -183570.00335379926, - -107725.31857915646, - 899733.8398479873, - -582787.3823669469, - -494752.4029342287, - 951061.619790907, - 892548.3513514869, - 943135.0387208643, - -392684.0079784355, - 277405.723798744, - 852722.9520124804, - -9577.618462380588, - -196380.71636330645, - -843456.7971308902, - 984973.4491142076, - -385401.5701649929, - 168756.03714719633, - -941058.7217523911, - 173992.82715078935, - -928462.3937940064, - -650586.8280954399, - -316288.188440164, - 424294.7417604994, - -138.98425530056713, - -488546.23140684003, - 718066.3755134307, - -329842.4340128823, - 859589.5780032114, - 900770.1960220302, - 325060.2886201035, - 848396.560279614, - 888292.8972825181, - 621808.7016435225, - -427243.4059970509, - 681698.0658289792, - -544882.6051615201, - -238668.58589913577, - 168749.41483386618, - -89607.81465368229, - -702869.8868079968, - 800160.8210043467, - -8911.961060123818, - 622638.0385672044, - -929952.2855720208, - -800941.8133173318, - 564903.2666182425, - -845799.5709180704, - 902372.4385321912, - -403349.64446440444, - 479812.5750510687, - 687313.4145299001, - 891543.560257879, - 309357.5824183621, - 875070.4434268685, - -851332.7030446829, - -152933.8315019162, - 94206.78527900539, - 349569.01094111404, - -533399.1458938323, - -397745.37628812244, - -484725.09919369535, - 144159.2999215613, - 694026.5122361657, - -882195.7653029837, - -254949.26705717092, - -462491.0589268401, - -430007.8911960938, - -536448.641531344, - -564353.4323777468, - 349059.9686039351, - -514225.7770431149, - 757689.3317536355, - 444122.59639426676, - -430408.69367142377, - 86268.5009564601, - -156068.9752368236, - -52730.798036135115, - -246207.73709491672, - 478973.0794877556, - 119281.5836990242, - 388189.0314436558, - -548820.6798487583, - -524230.97112853, - -17390.03349064716, - -791736.2387877613, - -249018.1239022182, - 425687.551390582, - 541551.3039466413, - 777474.9590574694, - -308779.8303713793, - -585205.0374690447, - -109038.59249090897, - -476955.21757166047, - 89599.82920407894, - 961579.467886285, - -202663.00039897067, - 40745.30815238342, - -984531.7167255103, - -972130.0647174548, - 273270.0597006592, - -599291.6704083991, - 750002.6005460201, - 756890.1641414585, - 264180.56110761315, - 804859.604823416, - -178356.25676065582, - 707865.61845407, - -119638.06642065445, - 896088.1357434693, - 764306.5082644378, - 738347.6293918168, - 676240.9125848004, - 298009.30941031687, - 735881.3147751786, - 876862.1278722695, - -996033.6480989374, - 960523.7131412292, - -380830.05584140925, - 166563.21910749128, - 534859.9422349943, - -132114.9342579806, - 80900.4134705249, - -579394.7183499117, - 819699.6980095763, - 386546.83880120324, - 821573.6475867204, - 981695.7421767967, - 614305.8973532458, - 77534.99257079021, - 626708.9342158604, - 952690.7658094943, - 116504.86283671646, - -420122.1368730317, - -538892.5293056685, - 171879.1916242357, - -584452.5975392128, - 573054.9331839461, - 884904.7618596369, - 72455.83117650512, - 829740.9884726934, - -331959.35190203565, - -428399.58301674377, - -679954.6677934721, - 84986.55436247282, - -490268.42281844106, - -763867.361534357, - -223739.6026945686, - 406002.0457023177, - 665655.8201887235, - -527494.4459784911, - 982085.9587471285, - -488694.0909168389, - -583140.1465101166, - 354225.66150667076, - 216506.6744153916, - 154619.27963724674, - 25136.598539379218, - 492489.28452569584, - -433884.56447279954, - 234279.8583667003, - -703929.9198451278, - 441346.21397511364, - 943963.3176441911, - -325456.00848321256, - 172395.02771845582, - 749192.7196467996, - 624359.6727765179, - 480229.27434392227, - -696677.5803865421, - 293712.9911647245, - 387741.5291431936, - -393729.73948702647, - 21266.019672495862, - 723937.979277689, - -232458.25080596138, - -387304.96830664296, - 2464.0321624218586, - -122681.34997729407, - -546694.4807160796, - -919715.6513476778, - -18247.514801625897, - 194804.46059409328, - 772791.1447093579, - 235715.32964076058, - -491094.78861466685, - 4389.73784561969, - 833497.7104795736, - 408212.97885851806, - 60087.40868944673, - -603153.4418319811, - 49207.25516157076, - -33771.355710310316, - 496911.4186762655, - 154504.9866469945, - -912578.2146259764, - -452817.84163980297, - -823375.6845463197, - -220228.04861147137, - -19009.048525427508, - 887978.6196577046, - -661416.3336804246, - -428227.62305677007, - -98018.59328603357, - 661880.6475154626, - -117998.84324321552, - -483940.39773233776, - 945279.7207307717, - 493187.76874040184, - -998343.7313215322, - 213652.26322442287, - 392420.49640112574, - -399813.58192147256, - 847862.16445857, - 252398.00249854306, - -684115.2014550567, - 764290.832324826, - -965373.510477915, - 366595.0386351318, - 549108.2103193712, - 478391.1169981494, - -477039.16144049476, - -66359.28264260315, - -666477.8792067101, - 927578.3245770739, - 223346.97203642075, - 417199.34494340996, - -588673.8683068216, - -579415.6741968989, - -326642.1044466499, - -650987.8956618933, - 7794.401001574247, - -692135.5560318063, - 862693.8081331758, - -737450.0551246805, - -475462.72028761625, - -878946.7812968763, - -960923.7018518934, - -309835.924111922, - -581931.2077126874, - -193151.43113910628, - -320810.1968006805, - 500517.2008975121, - 735584.2491990248, - 869357.6704794308, - 571406.0633091565, - -31191.862881997156, - -482301.2879788475, - -273644.2666449306, - -564572.1511337791, - -879096.8240374251, - 379673.6622571082, - 793099.5767054925, - -952798.8971456996, - -149710.44541620172, - 889595.896146304, - -102568.09583422144, - 762500.2191414066, - -22716.52292029125, - 136389.57166886012, - 266170.89144465566, - -826419.6040586666, - 646550.0102152668, - 84316.47222800476, - 380558.86255500093, - -66295.78751266396, - -320680.4303555664, - -161087.1510793015, - -245428.7859749458, - 863696.1061838248, - 418532.5789514507, - -361290.0378441568, - -819539.6921890886, - 192046.37210451692, - -751367.5420591463, - -735759.1562203469, - 724722.810501609, - -207066.86437837928, - -795145.3172717491, - -498759.0724904585, - 928584.7087924086, - 81570.77897059928, - 886515.2558534868, - 703933.813051105, - -759838.0592273521, - -922081.8135161714, - -132416.60859760086, - -218972.67346888926, - 13818.849598194349, - -913806.807334844, - 79464.11354751293, - 122637.11055587168, - 97597.4683300218, - -174625.63217878868, - 373394.38677931833, - -714996.4838749898, - 10252.349704644947, - -660680.6145188995, - -462110.3608096893, - 455892.6217447536, - -535112.677073226, - 3911.094098997037, - 72292.76301260934, - -90507.11688419111, - 378102.4269270648, - 966152.9417313348, - 79337.08644471959, - -50237.45464432694, - 564623.901389222, - 623939.0339062072, - 506867.44054355135, - -192296.55248183585, - -777596.2486685179, - 72739.48121619588, - -954970.2603642094, - -620853.2682690438, - 551182.2412351213, - -674019.7569945076, - 54784.03969693768, - -720095.8036049366, - 822138.64566469, - -47346.06044089551, - 62391.96068110253, - -875201.8303563707, - 967445.2806940004, - 958787.536150757, - -382108.9823580639, - 919189.2935045864, - -992345.9364680276, - 404723.2180889369, - 997213.669409986, - 952840.433231553, - 550710.7702603323, - 933319.8270814269, - -523305.0171275595, - 509566.2861527783, - 316096.2532068496, - -897669.6856093955, - -67566.3739176584, - -218590.26375370118, - 629055.0600847739, - -476273.1276913652, - -355544.32129848766, - -75823.76965706561, - -79758.51347698936, - -318771.349164201, - -625215.1530637145, - 375014.63923092704, - -338049.83702911227, - -244798.270919373, - -553806.0605058732, - -491426.49649520864, - -220221.85793093784, - 229679.68777632585, - -203202.8496723799, - 727580.7571288531, - 471484.1313835601, - 538581.6812406041, - 889486.0527244122, - -627652.7624554386, - 678974.6430273592, - 604703.2521112361, - 966498.0231884173, - 646535.0494848475, - 850385.1823211137, - -30617.184481109172, - 573036.1843657114, - -780642.6791009626, - -692731.8407902428, - -253511.70198395633, - -63923.52194272921, - 489281.1246976911, - 71974.61310020725, - 553815.2987792586, - -323135.21116795397, - 813510.8955703874, - -979571.5908281115, - 220563.890526426, - -134102.19614022932, - 479796.9444313115, - -864641.2507939684, - -470994.50507539365, - 732140.4368222537, - -992301.8822729974, - -419704.208904025, - -580527.2293163982, - 24394.25363660064, - 98269.37060043894, - -970829.4887846556, - -515101.155136761, - 693334.1676186498, - -532837.1019315652, - 312690.9817721462, - 94496.24908857013, - 789083.0129621236, - -871114.3760307438, - -779501.7598786278, - -114068.46116910873, - -53451.68392937527, - -589758.1704130357, - 192869.30876058683, - -42924.75634887327, - -794708.5843885579, - -924153.0319926756, - -288908.0632793164, - 376858.4882169239, - 249702.09713593672, - 8818.411749580424, - -805272.5958235402, - 572325.2596580883, - 128904.54596308776, - -188192.19126370922, - 806270.5669295674, - 136502.6693726241, - 127116.18728415664, - -351135.5082606136, - -929243.6389838627, - 190817.3862176308, - -45942.83334304072, - 380993.60744429234, - 963973.7162607927, - 476074.24726750236, - -288308.5317146299, - 416475.59817846667, - -462162.1689652695, - -689547.3493082294, - 843027.1883691631, - -794403.9911178367, - 612150.1382190977, - 3836.93751836911, - 60461.02823090482, - -75822.35864524622, - 383273.06434668775, - 549682.6323680055, - -595157.3190656254, - -304226.8823228318, - 358382.03894130484, - 292554.6723110448, - -386798.3329973039, - -214146.76381866448, - -338326.6163107801, - 137583.62112648715, - -582636.258864279, - 139482.7059297896, - -35828.56855087835, - -268700.5869158339, - -733697.972407694, - -215813.43397299357, - 497715.8718366275, - -915396.8586483792, - 871283.7193049146, - 142223.9800062537, - -101145.03213600123, - -630486.3814454532, - -79474.85355562934, - 209782.39493010787, - 575.8668680553303, - 68151.39254053793, - -78095.17976986169, - -606653.173591252, - -136104.99555572896, - -561597.6192656367, - 217095.92044642134, - 873519.5874235153, - 628121.1916257495, - -367435.62853026245, - -336578.15586134186, - -830638.2862848014, - 857514.673338029, - 884458.6595319561, - -76985.75595470514, - 519901.9790160115, - 66670.82624645438, - 135488.6983138013, - 247187.5887809003, - 88801.42731279906, - -513465.205472746, - -101600.36970390851, - 232499.70550344078, - -819006.6344866324, - -502993.3709036374, - -603505.0550010825, - 502142.0191154666, - 414102.7616245319, - 852085.2891045103, - -468848.57129865675, - 16074.100333912655, - -556220.9989995821, - -892515.2876406967, - 446442.5022736762, - 622077.8967108367, - -874813.7811802271, - -898474.4290936495, - 762531.2292543738, - 627776.660442612, - -256340.4034917387, - 664982.6383284642, - -783291.1862152896, - 127937.02638926497, - 541807.9999676651, - 484705.37470108276, - -765900.6841113974, - -146430.8193315389, - -960876.8746968672, - -383679.5085456639, - -305318.21105346514, - -19338.677839469077, - -84479.25940606504, - 128190.18375011181, - -518113.7384506194, - 797067.1024426548, - -563760.468537992, - -452303.6428948102, - -191374.50010450598, - -121011.8964476985, - 703094.1992824653, - -686072.8482771723, - 888625.1190525909, - 292569.08828272833, - -871313.1841874028, - 319555.00694304326, - 1424.04536477736, - -129236.77030937442, - -90110.53247666068, - -24313.27562736585, - 931112.5011514312, - -134838.0775581628, - -184149.876436303, - 268853.4083945595, - -22519.486652571974, - -403559.0498918922, - 825087.6995604406, - 933249.8778389026, - -449391.02156814584, - 673970.6854957517, - 613858.0967166929, - 671492.5465389483, - -215212.36870023963, - 292257.18803351343, - 151640.87530193425, - 204777.29563670533, - 692705.8729247755, - 266932.96340006567, - -755674.8847893564, - -298779.0390392642, - 172776.39778918587, - 678004.0310460662, - -125961.78769924004, - -560548.0086359909, - -271848.2326017628, - 300907.48855033977, - 550333.8640074043, - -841411.7446565034, - -381686.69805748604, - 480024.8836847267, - 848296.4146114427, - -613085.5754542606, - -177165.35287526748, - 967221.0614340424, - 28124.84738651744, - -980550.0423792796, - -141861.18531139157, - -327525.2377763698, - 544148.3491250776, - 231020.33848242476, - -650884.1248669295, - -579992.0208613314, - -310269.1411414409, - 366041.96609572903, - 174502.5657355064, - -960820.0535281613, - 725984.1323569188, - -81445.73796501686, - 859211.7646863435, - 808268.4572660825, - 937245.51693087, - 339621.7175567653, - 253007.03606810738, - 901305.5534958246, - -281861.2816452772, - 136222.14212906436, - 959131.602846453, - -132466.62475941994, - 899676.7881677743, - -915799.5750366243, - -549111.3284440929, - -724694.0778011659, - 857546.9650280003, - 437941.08743882074, - -652590.1100167118, - 712363.3543888695, - -413975.42633119476, - -245781.28787741528, - 320909.72118435655, - 946066.9131307018, - -172189.2714204001, - -383445.2583876535, - -323113.58246088726, - 442172.937764985, - 254753.27629518163, - -36564.652562478535, - 740760.0470586661, - -940155.2562409498, - 199354.43155930942, - 977200.1263900738, - 438382.6024387276, - 974268.9863897339, - -939521.6065702572, - 187754.78403474975, - 834173.6718428055, - -652192.8989637223, - 102961.5788348115, - 266050.5058661415, - -552066.0398650034, - 880639.5810816756, - -198878.95025185842, - -493093.87531766033, - 840013.3947613569, - 321542.4574105814, - -37136.79364762767, - -428325.0850813558, - 491600.42273094493, - 908956.388232641, - 484361.0181471585, - -301558.8723111855, - -453672.98578462045, - -510390.8927654517, - 857925.4332927195, - 956071.4113171669, - -648244.991695707, - 952426.1295610137, - 822736.0575970106, - 574679.1810264156, - 865706.3551566248, - 23807.509457727916, - 224836.1004435684, - -728553.4342004756, - -722571.7068587577, - 913429.841837456, - -511835.10056549683, - 260741.21551704343, - -784861.3787511815, - 749134.5679189034, - 120993.43216715397, - 562648.8493792063, - 973414.7171401097, - 447557.6300054158, - -932327.2246133625, - 843234.2942952029, - -543941.1366439497, - -60508.439142465286, - 341146.0634225707, - 781903.2576086764, - -118092.75045200462, - -284296.4366729572, - -344354.6868694591, - -387874.15356474096, - 830512.8542510525, - -823888.9510353649, - 94873.53493206397, - -289167.7009437907, - -834932.9188757506, - 656668.1397421645, - -406149.3184089657, - -327830.46824779507, - 352822.69366063137, - 853979.6219467405, - 247555.24983851163, - -836313.5130040584, - -757911.1218427268, - -966219.6706865311, - 19522.633023092872, - -639305.3749117295, - 93923.50386986781, - -397325.79993978015, - 747393.3392633463, - -581374.6737350507, - -455152.81498195435, - 845274.0830091678, - 485606.01256713085, - -959671.4299609079, - 107535.74130592613, - 283553.45440684387, - -332697.2613470871, - 342276.9805058741, - 442757.68484231894, - -281876.8290873008, - -101908.16367861743, - -796663.8820716641, - 555486.2492075114, - 59490.81845283599, - 134934.53742226126, - -570501.502856549, - 512418.37301278405, - -65291.32830599527, - -711912.2875698687, - 838336.938930091, - 214188.2986562089, - -154009.85026286574, - -376327.766113145, - 870215.2245688253, - 387300.6773259897, - 435675.9543220927, - 912041.9573953251, - -799736.3030984818, - -624532.9673721221, - 231374.89672372237, - -210574.73860159615, - 183436.9666462683, - -577322.6600181434, - -829625.6193241415, - -366075.9996291276, - -310614.24844851147, - -130555.42373303797, - 220644.76755980577, - 698418.5056545942, - -912718.1510051532, - 109317.84347090745, - 818606.8272731304, - 421477.352429507, - 506889.9266023268, - -802261.2450242597, - -653765.8448555958, - 545516.0128226359, - 25678.158926161654, - -219395.20648038146, - 657999.7938922734, - -467747.56417511945, - -392765.2344766095, - -924492.6775443134, - 95349.34911518356, - -760413.5928514852, - 758420.5201432063, - 620765.0222902297, - -140825.24586075306, - 916884.1682795306, - -113298.15784897534, - -208402.89834646165, - 659244.5748592799, - -310478.54345557524, - -785865.0095857626, - 293930.06716588844, - 838674.96759672, - 650248.1538546915, - -666473.7360947039, - -90280.97580804983, - 413803.4222025198, - -31146.021709068882, - 882947.452932908, - 774958.776786431, - -589152.4602179294, - -233621.28006460404, - 803746.361269374, - -74368.39836164122, - 677463.3047772581, - -251685.18929949467, - 678466.7520823777, - -8648.759734667166, - 909171.3263044639, - -196716.7221214079, - -954409.3123139339, - 613176.8523483612, - -363283.9762819693, - 684712.2143138787, - 666379.2225509048, - -309319.07085461717, - 430180.92259001796, - 466185.5428740693, - 702824.6129750293, - -98629.10623629561, - 101744.15727309017, - -502378.70341935765, - 43199.25500628297, - 386200.5625216758, - -296827.8058275355, - 748596.7069872333, - 941268.757939586, - 408134.9017570932, - 270725.0578564309, - 297280.7498650554, - -426006.3258049323, - -84621.92258431122, - -588391.8530006724, - -510801.6717335797, - 683750.181706735, - 17153.320272977668, - -936957.2324216786, - -522030.80812948424, - 500517.7634105318, - -421230.6879023977, - 607624.9161345457, - 347841.0080592684, - 272940.83481633133, - 350008.61990598484, - 162042.82434157014, - 414781.51858094917, - 531596.7078054, - -453561.11218037776, - -197984.2200390063, - -513137.2306663264, - 70997.7278172833, - 109497.47980675429, - -224363.60706957182, - -627941.7089981949, - -769026.7762885543, - 997568.5634025513, - 603112.8272869086, - -30638.4478799393, - -975396.1203003096, - 554909.908468568, - 292661.9114359159, - 863126.8405000392, - -839572.1651004707, - -501399.5057806011, - 779704.0847932189, - 758973.3167365722, - 721811.2719822265, - 319500.8404837876, - -645030.7083339719, - -653595.4715169637, - -874956.6896985277, - 650641.4543708412, - 915010.2254520352, - 137675.70726929267, - 40270.85110940454, - 596288.2648833905, - -986806.826001901, - 140591.72348361136, - -246803.87626276334, - -847609.7351244596, - 599860.9598946855, - 318745.418627697, - -355481.36179190635, - 342215.9767921329, - -714442.3601567178, - -928988.2919660928, - 51580.304142182955, - -413556.5515011554, - 455840.6126544421, - -882679.9161115387, - 65147.734505308195, - 230819.71521598144, - 351698.6855914275, - 567773.0140704353, - -540660.3535253434, - 699643.3008171428, - -304466.032980671, - -710978.3471097426, - 463497.44530656055, - 489699.4114248838, - 193658.34138873962, - 731333.7640762463, - 796680.2599351093, - -672391.9749307974, - -801460.5173520414, - -679272.8628710771, - -444069.51839433506, - 247118.8111931879, - 640988.3770942535, - 414385.6458062591, - 695694.3671672498, - -604255.4496560888, - -315271.42525554553, - -945452.0958848412, - -932199.0060099425, - -975542.6918392427, - -577172.4812160785, - 314223.9036003482, - 683488.1063427635, - -250634.23417695984, - 43887.28158708321, - 649195.0729432589, - -844321.5682371721, - -27105.320221544327, - -603944.8929317786, - -797742.5961456918, - 729024.8063747798, - 875687.0414890216, - 41641.151139011345, - 475881.5475176148, - -216300.48508606592, - 75401.25466241987, - 329360.6656545258, - 764829.9319246195, - 167948.69104019218, - -438161.0781283405, - -15630.980615955803, - -760686.0449235209, - 995551.9902090093, - 354402.7904876312, - -209509.89970261103, - -108126.05066147652, - -931759.0623611843, - 321159.96306917793, - 396806.3164396791, - -767352.3357087842, - -679587.6662188853, - -621983.6116557595, - 433099.3009053603, - -203213.93538844123, - 366920.97539637156, - -242258.15629503745, - -145531.0621780288, - 634378.457943556, - 340582.6030686423, - -232491.90823941212, - 374674.25598944357, - -514055.07099646307, - -259426.3160916983, - 728291.2871302987, - -737198.0039603662, - 50713.016569662315, - -444255.4196952413, - -306661.8202763516, - 639610.3292748012, - -334406.0414485144, - 920800.0918776382, - -276564.13162570324, - 860254.5911322159, - -806828.2551321511, - 924809.5387281177, - 286321.1706357509, - -478278.68657509895, - -515462.8047398662, - -233063.26254950615, - -43590.24737013506, - 740071.0560837049, - 472065.97600446566, - 436639.42526444455, - -970824.1073798132, - -345163.6333388848, - 610331.9836901133, - 857544.0572051647, - -779687.2793674718, - -838708.5879016098, - -324611.83470549074, - -595244.3325915864, - -542884.34456587, - 466249.3426644711, - 95900.24312155254, - 156599.56808004272, - 165133.00164725963, - -846570.4633197617, - 348333.45096258505, - -771546.1556484185, - -855146.2721229801, - 986489.6906019467, - 603863.5539849293, - 610252.5358888202, - 140011.1809209714, - -95033.6351602028, - -84524.83828230939, - 262573.53623278876, - -840038.0061571873, - -197890.95535939062, - -479564.35747890925, - 728995.5095796643, - -31112.6298263551, - -284214.27169543836, - 516645.18594375707, - 918483.1057696905, - -574633.8720491563, - 852055.4752580493, - -92538.64743070416, - -472477.1206077489, - 288871.9954343542, - -223881.87161972374, - -699004.9477200075, - 769529.5288868764, - 756073.0489544501, - 168555.33314674086, - -1880.8949058986002, - 148976.32960702566, - -853583.6814727968, - 634403.7393172119, - 142257.15154682894, - 30586.908304849338, - 781718.6248935732, - 894335.8287506866, - 548608.0329402523, - 598875.8360151552, - -903604.6934704852, - -88900.08985195874, - -366527.8803815715, - -174420.44282620682, - -629355.8199032496, - -553927.1684126186, - -428173.7897695694, - -252301.87898084754, - 313245.34172328963, - 366030.307913177, - -474347.61995963927, - -154325.02170322902, - 731177.2570996343, - 436945.6847641666, - 498296.7288118161, - 793027.1812014345, - 312655.433136634, - 183653.72642319743, - -851873.463671051, - -437404.8582437142, - 646454.6060582794, - 823004.9339651726, - -751952.5217245396, - 97531.28218776696, - -895882.3753819929, - 805815.2186982868, - -95428.18565364386, - -703347.6564091174, - -359517.17154064757, - -95759.15574261452, - 550323.1997206839, - 842099.8382991485, - 551252.8146404718, - 941472.1784700857, - -680551.2487416336, - -518736.24636695336, - -491167.2773408815, - 834480.5155909725, - 771970.2137992999, - -998826.9548514923, - -224268.6747803544, - -129079.36143563958, - -409060.8608443083, - 119498.78235309663, - -669221.2864820848, - 74032.02254632647, - 686187.6314717144, - 336999.1951496174, - -181928.604992045, - -941902.1765725806, - 148481.05912251852, - -357608.0204913703, - -125199.30365065268, - 507312.85928665823, - 410683.2206831499, - 207584.0871651611, - 738220.2672021105, - -866986.0214052041, - -734681.8392605066, - -152474.62674095668, - 111597.88902606205, - -53049.65260569516, - -616518.3855797068, - -377964.17195417086, - -398970.95834330964, - 472498.884107279, - -630291.2896075221, - -977507.7794531077, - 104785.02517838529, - -894456.4907495503, - -577531.3099235204, - -868352.1091554569, - -664598.1969277215, - -872467.031419987, - -848793.7889502881, - -150996.5685952206, - 880565.8085885945, - -753356.7470928162, - 670522.2159651503, - -591695.5540900438, - 703707.629045234, - -32467.379151202014, - 158082.23444922164, - -13109.78059693646, - 333126.0673578338, - 152265.36739361496, - -235259.18422654324, - -377292.3568701216, - 865059.0151271991, - -560746.0258996962, - 784763.8331658464, - 282283.9461677047, - -401736.4576638147, - -580763.4995592819, - 830447.5868304016, - 174784.16232451587, - 488938.878118701, - -157609.0002382695, - -689920.4462558852, - -307136.97078122926, - 442465.0286733711, - -83118.03664461049, - 735881.3698394555, - -454696.33022476465, - -338128.1989951814, - 756738.0367657318, - -292074.8922043432, - 130607.54613930082, - -169797.0939182838, - 178546.58044182113, - -732269.5048050025, - -996776.3899438271, - 862390.8184633066, - 795479.1857620578, - -757854.0561086511, - -820510.7975162807, - -121152.52714987613, - -518664.6106508654, - 596643.6455388488, - -461956.5983016678, - 848803.1738579615, - 489998.48093460005, - 698751.5051396186, - 465682.3850358889, - 816455.702057093, - 844750.2218133402, - -240980.06123384243, - -176984.32577647205, - -242509.45372394362, - -419118.9608432577, - -655325.8309618591, - -442098.36472090916, - 836392.4587400098, - 483952.37676486524, - -154547.57874865277, - -735282.9353248354, - -40942.95824396909, - 348517.6876881515, - -232731.8953144042, - 261680.09555965144, - -892336.6355854166, - -445685.5096079706, - 789427.2454475953, - -322362.6205055701, - 395049.55154209863, - -689821.0650496801, - -550820.1754531395, - -336561.8233300327, - -949166.7854389496, - -658825.2281227594, - -764190.0773305794, - 446542.65288409765, - 657361.9528847854, - 834948.3959982314, - -537561.5643833827, - 60489.98701520203, - -778719.5295647866, - -865442.9888989801, - -946784.9582334957, - 699606.6979539392, - -808662.7823848294, - -886374.0222182613, - 143445.50592646166, - 717122.7283950439, - -189959.3157990438, - -294612.8855194881, - 225655.51302383802, - -932057.8489668514, - 617398.8332351065, - -788404.1067635256, - -582293.9717377771, - 511902.40143023914, - -732371.5710033076, - 148300.96025899908, - 111516.48396057267, - -686750.1936856447, - 816027.4322492258, - -277181.2146530834, - -650354.5495611209, - 52583.00219727241, - 549407.6083453385, - -603906.0618509586, - 677030.0873836093, - 775498.3056201561, - 819283.9668034418, - 929319.730744125, - -911811.2245158883, - -877535.7425372708, - 485565.4253061228, - -209583.60273924214, - -431242.7768930298, - -379811.79012542387, - -152840.43600500975, - 370267.603869475, - 161781.35858539667, - -356600.38477580127, - -215931.34886113452, - -810019.2761558522, - -575583.2200346614, - 805375.0664091872, - -839320.5411553384, - -317849.9585191015, - 966880.140237979, - -998021.5723692257, - -286323.65232082235, - 59289.81596642169, - 81757.63874707754, - 740677.9698150854, - 47452.42070068389, - -699687.4008961509, - 396050.1530931395, - -217496.56425047625, - 381615.33921536314, - -380574.2408321684, - 546470.1528018337, - -927552.671774267, - 372473.6258653911, - -351816.8698252324, - 876326.4205485648, - 856031.4368242417, - -742427.5389398369, - 912983.8340727295, - 989995.2788715458, - 923331.1010417473, - -358187.39609211823, - -284437.81619076483, - 765944.7318797669, - -243705.17765533295, - 418100.3885747867, - -426249.84344446124, - -168035.18639889493, - -164721.8119388929, - -328187.87404652004, - -974685.7749259599, - 415316.73564771056, - -53696.519706066145, - -767183.6569094082, - 602078.4762886771, - -49070.491632454025, - -762804.2714178236, - 288349.8604819221, - 507209.4891702097, - -369510.7035062415, - 286868.6018142987, - 374168.31954809715, - -627037.0604927718, - 373946.061906882, - -515368.61785647226, - 303500.1739670362, - -299412.9414421751, - -221631.96688117724, - 11248.774428656905, - -238717.63511473866, - -946821.9131313665, - 198154.0287545416, - -751849.211181693, - 683315.5816703807, - 202934.74039581793, - -236603.71256760904, - 36408.8020560569, - -362994.0593956116, - -598763.9544661037, - 792317.1504136241, - 158018.6288753369, - -69469.41685494123, - 800665.2979139157, - 734952.9037321925, - -494621.1823249269, - -272169.0607458098, - 977246.3289523004, - 542741.2172675028, - -58308.21822495414, - 56779.25919522075, - 599370.9956578608, - -240496.21047430957, - -557338.875464903, - -264925.39578065986, - 611297.9576772155, - 516108.10813642474, - 780473.511102833, - 281070.6682159227, - 792808.1007920295, - 823971.8142868538, - 528578.5969288304, - -573985.4043063368, - 889666.0962224933, - 834267.7229605693, - -373293.73769750894, - 776361.0253164197, - 255919.22204453876, - -927728.9869023431, - -224297.45639048028, - 744081.0099810675, - -98598.89577669834, - -955453.1900511223, - -639064.0003676105, - 485143.6431168461, - 860108.424798722, - -852964.868720755, - -492521.2859908892, - 363692.67162079224, - -236750.07882047127, - 998273.3642931383, - -906820.7500754176, - 337655.85349100234, - 194860.98403774376, - 751987.7741559888, - -796313.746522699, - -789651.5713798298, - -577385.8632610905, - -673572.2445082628, - -264689.8509489843, - -704619.0310263032, - 377958.8558851479, - -882278.6701103802, - -789057.4462423074, - 573823.2357526305, - -651094.5599219921, - -340574.61258254707, - 570143.284222858, - -501096.76291175996, - 913601.0077770718, - -177247.68046096506, - 85369.60815294848, - -379461.71527349716, - -294354.25914785516, - -487902.85752242536, - 906121.3876679564, - 213963.33845066495, - 136486.19753145796, - -322460.16978844104, - 110115.53470343571, - -76940.04934945142, - -709594.0750426356, - 127416.82008068355, - 873827.8648224331, - 569426.2010368409, - -315978.7563100804, - -344096.31277788646, - 467024.203364437, - 972404.7415354928, - 734257.7118133808, - -884979.6716525995, - -644284.6772222108, - 351292.39595967345, - -805530.2155011293, - 157126.94414015303, - 531672.8204095991, - 313879.38597633113, - -669750.0200522619, - -928069.3183483853, - 120533.10990977817, - 611253.3017903763, - -370018.15223551524, - -942237.9914748644, - 29094.702913485147, - 456638.2703999801, - 498889.0433708926, - 650595.4471786204, - 948552.6966291937, - -44361.25266287183, - 269488.26230879617, - 711084.0809312062, - 301743.96901413146, - 678513.3711636302, - 74974.79250578131, - 409828.0535749066, - 876923.1848843993, - 119299.04595912255, - -813618.8294160923, - 873610.259105017, - 509167.0649891251, - -901544.5432644939, - -699412.6159477539, - -709837.0488870345, - -319564.47245621856, - -761353.3296419324, - -739339.2768077732, - 261103.5971783753, - 515860.3188855304, - 714563.8411949562, - 952556.4851485806, - -780781.6397329741, - 937465.6825038469, - -803178.7938823747, - 581333.6039827648, - 839809.9332398885, - -913740.6460254149, - 449965.08249840606, - 658170.6193614552, - -704356.956066998, - 295231.45466173405, - 517998.0410790452, - 118317.46762684148, - -148474.97347387817, - 650507.6796735725, - 660995.5173192346, - -746639.7855100826, - -671458.6684294994, - 125954.79310564039, - 299312.16857639066, - -331983.8634966854, - -690698.4084337917, - -484313.6484722672, - -402702.14202527056, - -963336.6658876128, - -477159.1464606759, - 462407.16931254667, - 154823.87797654007, - 410855.58359993744, - 238456.91042636207, - -716791.7994726019, - 767524.2517304522, - -187317.4150911252, - -577768.8469843285, - 769829.8963626355, - 580744.6310600439, - -66295.44301636248, - -623149.4310074068, - -966750.4701256802, - 60030.82193173204, - 889111.7196432959, - -772605.5623288198, - -398966.9055641287, - -173813.66418468236, - 573297.0105229771, - 544971.4421925842, - 181622.0054271791, - -298137.6711303969, - 483968.4326952378, - 902426.8942792382, - -346178.9411309759, - -327693.93233395205, - 250849.45875833053, - 965903.1348087577, - -437336.5666268163, - -99917.64837306038, - -333329.424926774, - 302022.53350511345, - 588812.9221087539, - 455922.0597099005, - 284910.8960690885, - 451817.43569772557, - -934437.2704777415, - -949314.0955752035, - -628291.5742878261, - -567056.6420176353, - -553334.3038154889, - 34459.1673726824, - -170319.34577101283, - -397338.3358545259, - -433213.56688659417, - -121097.83481917735, - -594130.4823077797, - -742846.4822017557, - -254740.26899740277, - 236335.85621669862, - -448151.80118110985, - -639964.1950726409, - 760944.3599253844, - -544053.0926553826, - 328794.91046241194, - -298109.89953366265, - -597620.5523672891, - -589346.3961094103, - 5083.626322929913, - -719700.2996779762, - 820706.8041417582, - 304143.8322525611, - 820671.3921052602, - -713140.5043605723, - 519512.47056427976, - 915710.5015427669, - -284044.9823208684, - -407308.96062071744, - -807753.3321592043, - -895212.9018650372, - 831622.9627949215, - -21822.849019256242, - -47369.454295688614, - 658717.0317048321, - 33906.610152312, - -275211.2261045234, - 968259.6440143192, - 835136.0668277784, - 484134.21860388597, - -754957.0583677647, - -468251.9595479606, - 480112.5758800815, - 504764.67328162934, - 72859.90429030487, - -822308.6965159456, - 199914.8599883669, - -796323.3217591847, - -970006.6669622916, - -995864.6395551743, - -784552.3041507332, - -893058.5320538153, - 735476.3387120038, - 190460.07572083035, - 285623.10212868435, - -731081.2798080504, - 989908.6480350614, - 447666.11805934244, - 251113.04515835896, - -535004.0450121616, - 933808.4401420316, - 660013.812155916, - 688871.7650333842, - 647276.643477577, - -508186.5495762881, - 435115.7196843101, - 403971.4732690698, - -629085.7574144776, - 285420.35348792427, - 441558.3182356082, - -249967.74442184644, - 983833.889543259, - -766680.0445626559, - -887114.8502687125, - 117349.01599864812, - 977760.9485467655, - 13346.937350257493, - -335131.7746287854, - 8798.389445823896, - 547533.0917250862, - -787491.8742771259, - 947228.8200541938, - 529516.5063822762, - -943421.065859572, - 963308.8941907522, - -921631.2863583902, - 329841.6101123851, - -653642.8870488249, - 482531.9781019357, - -325047.43107249844, - -113626.03578299191, - 763063.5826122563, - -559481.1363294352, - -821808.7488555277, - -859935.5712430583, - 680840.6182936446, - -322080.8295212627, - -313404.86650861445, - -55687.2200791303, - -936524.2344424634, - -883576.624901446, - -769953.5282208321, - -190553.45310046757, - -785223.3313241292, - -737077.4683679981, - -414734.1141206713, - -672342.4549689328, - 945205.042025586, - -427203.3246298399, - 822662.4299963674, - -18707.672116918595, - 756385.0249515868, - -516567.4010384933, - -849704.0016547204, - 572320.8428699595, - -671618.5881212282, - 277843.63690074533, - 911483.0590294146, - -804013.6284772945, - 478395.24314106494, - -811029.0018434132, - -262800.2394146558, - 327407.6902258893, - -583997.4980967278, - -132798.82766355676, - 686682.9246791515, - 881433.7867519683, - -798423.059573356, - 686503.780660142, - 353142.65775506914, - 162917.21209013386, - -199528.66333103247, - -634451.3586160667, - 306476.69254405075, - -768139.0297084656, - 361673.2606361384, - -501626.78964226146, - -772553.4183609884, - 815548.3840356627, - 359494.7123972616, - 627949.1086363485, - 446744.234024286, - 842828.5032186918, - -23824.039308904645, - -552997.0419693318, - 825926.8853153714, - 689581.9221533792, - -700041.574958739, - 646508.2778071713, - -798353.948987244, - 124715.51371617772, - -114574.81299207517, - 515243.0958648966, - -311938.85143241484, - -216056.05943976957, - 811550.3917825834, - 44372.16707737912, - 710621.462635788, - -157386.44279620706, - 71666.34815168793, - -684483.5026680101, - 614094.6530508824, - 471804.0876488623, - -725149.545740764, - -351956.7330889226, - 188128.43718252136, - -866514.3614885394, - -630117.1074336501, - 294602.1335758904, - -995604.5266617624, - 770640.9057752877, - -262331.95853938593, - 391952.0217685493, - 634766.34154365, - 587585.9178245267, - -89436.05632266593, - 898976.4466029222, - -466342.9318166086, - -105816.72333048165, - 687323.5626654901, - 894519.3453401669, - -481307.03273023135, - -813416.9652355734, - 592300.3179471269, - 875726.1590746323, - -722596.0243192979, - 644837.9977576598, - 421167.2155853159, - 701559.9779968335, - 485971.59148750425, - 302647.944265386, - -724397.206895517, - -70322.04924529139, - -614623.6409889816, - -453457.31822680426, - -522797.78178239014, - 365295.4622661484, - 337825.2395308705, - 507377.45493051835, - -270807.8192827681, - -190347.71864474888, - -755164.0160033961, - -553684.2499992875, - 839161.0429270562, - -716880.9093409365, - -668018.2719246101, - -917394.7814196957, - -69024.52566176032, - -834815.7310607014, - 4350.687905292805, - -991261.5008008269, - -661537.053660477, - -759530.4932528293, - 647709.274558641, - -546822.917316347, - -502705.02418117615, - -343567.90440601157, - -486064.244873063, - -42071.592649032485, - 121972.1823623685, - 999897.6670972623, - 338340.5416757388, - -344873.2929242737, - 9448.143559748212, - -305152.41467422683, - -247291.40289358466, - 263262.65327425057, - -264903.34007845505, - 679573.7148579349, - -914576.5272579557, - 236067.89188540712, - -569584.4355122246, - 537152.8490186827, - 796447.3075263916, - -884217.1484318104, - -859982.534647588, - 68689.99080125948, - 403167.7242535845, - -812009.2621897155, - -10517.666407116045, - -470159.9464817261, - -234897.76073823342, - 906262.1963999255, - -125520.06373675306, - 156747.9630301749, - -215233.83876435796, - -846488.4087327451, - -358278.1071324539, - -124201.84824884584, - 64533.46222676193, - -516532.4346334024, - -601925.180863301, - 76267.47379551646, - 879237.306230467, - 587178.3124311878, - -110891.19005942516, - -992505.0080537414, - -347573.6906266138, - -249762.4005705108, - 581608.9138414848, - -673449.0473919732, - -583388.5461944022, - -398770.7661075126, - -682971.5566636538, - 75045.7278098271, - 733293.9663070794, - -172173.40924431678, - -859801.2276585189, - -39699.752065404995, - -528541.0184098254, - 396547.85146663676, - -859019.3411548728, - 66115.61697118229, - 485462.12887555675, - 875453.3860975011, - 261969.46205185045, - -832074.4771624613, - -329380.4874791255, - 634752.2479267404, - 816231.5974027463, - 391026.096153821, - 622783.2295132176, - 833688.2097718827, - -280470.3948263092, - -643016.9490523296, - -814663.8308455332, - -278635.94826224336, - -847529.4094604702, - 156230.57247712513, - -185189.46272013735, - 360501.5741433544, - 247676.40367115295, - -609034.0689518001, - 475632.1974685982, - 617692.8317964126, - 738342.9123406038, - 12344.534517868544, - 443615.7707014767, - -801414.7210330585, - -77607.2675421009, - 791949.2743768111, - 514630.5911500952, - 509601.1149630109, - -137730.35026066683, - -431269.4059996236, - -461322.83010281896, - -230376.6095375437, - 762857.2261425807, - -695106.36332362, - -978780.3284945971, - 618291.6678365247, - -482784.08950718644, - -957174.4361632362, - -503122.43016750214, - 776859.7362429261, - -36874.44108803395, - -784412.370957266, - 572637.8357205411, - 141095.33374262418, - -469765.18773476436, - 467427.5361281046, - 872029.1293564575, - -166705.29505833786, - -603842.6884476498, - -354912.0221829971, - -410780.0013696317, - -686316.29631507, - 549729.2280166266, - -489027.0382248907, - -46719.77261728788, - 786271.565680674, - -168409.56876262836, - 157813.52760825484, - -267618.4977445102, - 172402.89748255865, - -838650.7902619013, - 461796.1306292808, - -529231.4892591364, - -336522.1500353555, - -320880.23612436233, - -544265.8592832119, - -523785.3568719608, - -733047.0406079699, - 448874.760253114, - 479484.3428275586, - 216532.24708716245, - -780875.0823880362, - -723940.1258097029, - 888909.7011801832, - 744827.109608174, - -617037.075316593, - -912028.3900739019, - 29385.88676009113, - 586949.343676858, - -622095.8867204549, - 614147.55875165, - -992218.6521357324, - 989434.9253573411, - -724120.8482295065, - -531590.0589222254, - -517539.6093437106, - -832600.8520342072, - 960657.0863384738, - -403313.3561328359, - 87057.397775818, - 473844.1775961697, - -932896.1480319446, - -284687.2146843804, - 762744.0281450697, - 255781.5076003691, - -715732.0726698671, - 219944.192367312, - -652702.3833335503, - -843879.8580154654, - -254283.220152955, - -835309.4386230248, - 379080.1014418121, - 954466.6890934415, - 617442.6579088056, - -169468.39691167593, - 901418.6408841481, - -150703.16303114616, - -764170.0293921556, - -640758.4138955986, - 824527.8530807551, - -222694.5693989979, - 619981.793830797, - 279966.3557332164, - -914673.3685312772, - -791770.6571829433, - -313272.6240859962, - 972029.7401187477, - -251228.87390526992, - -633038.7243176452, - -384675.07445503556, - -522086.82581271295, - 11832.718016612009, - 179371.645326152, - 636092.5386892926, - 609483.8675344911, - 366688.05597804586, - -48063.084374938335, - 762698.081509219, - -26080.976877237204, - 502711.74062719924, - 844788.3121640276, - -142850.86605370956, - -771220.5894601896, - 132802.6613966191, - -174406.65199651616, - 628578.5710833605, - 259264.65565098057, - 246518.6521715306, - -541891.5181151051, - -80035.79353996515, - 52799.93731020172, - 733975.4046907515, - 314832.61957444774, - 148996.70697011813, - -144786.70996532906, - -882340.5246306022, - -752028.669463045, - -745732.6219238873, - 361752.31905428396, - 798734.7303217083, - -415442.9643692379, - -777165.9702765666, - -884738.9864203825, - -277182.4185244145, - -457645.9664899786, - 550292.6909928769, - 724108.3396727841, - 923589.1589958405, - -293866.91262378695, - -433026.9609451467, - -573110.3335846213, - -59698.049883428306, - 363536.6080183029, - 900826.1743858807, - -976423.1859303191, - -859410.1442000796, - -760084.8701635192, - -842143.6918360303, - 20139.574385072745, - -826095.3877290103, - -799011.3258797685, - 812835.5056128355, - -447067.87029947614, - 511252.9117934932, - 55632.74931077089, - 19535.79334010014, - 502546.1747023512, - 705980.3444020525, - -394587.71773398516, - -948217.241158128, - 474913.6801791001, - 261298.26907160637, - -30805.978761354603, - 770284.6974537217, - 357752.60761996574, - -659173.8471420365, - -607142.0939847548, - 756989.76902336, - -183734.46821322138, - -226462.21423056055, - 814564.2739968564, - 436022.5666919102, - 980550.6513249411, - 733890.3528976466, - -857210.6008207247, - -280459.9112554971, - 72859.50574240019, - 811549.3468269572, - 43966.68862290909, - -652547.7636939208, - -770159.5710452267, - -585083.3333271506, - -391618.4376336367, - 140529.45087793624, - -487443.5497208198, - 35108.89198067102, - -482918.9907786271, - -846680.9229505205, - -852794.1473676561, - 39601.71120246314, - 968483.4972324665, - 731551.6008894293, - 931716.0405018902, - -434113.91021663113, - 767140.0943679847, - -661499.3217699834, - -347514.7059202179, - -899428.5669430122, - -657067.1260960137, - -57594.343926136826, - -419449.09347852156, - 395764.47480919043, - 972847.21586345, - -452068.9759557437, - 642975.4186289314, - -489219.00989599497, - 71612.73869665319, - 644562.9847490258, - -724018.0838348367, - 711232.3954089215, - 649724.0495641192, - -657294.9622241316, - -842501.5882254431, - 649048.0069551194, - -367437.6788716265, - -71177.65862594072, - -230178.665734591, - -599737.6381537707, - -362731.3319319623, - 593164.9777333252, - -916458.8033821614, - 708074.4627284872, - -951269.9169275134, - -767390.0800439158, - -54233.57042392984, - 112384.06148844416, - -676940.6075903261, - -343585.79410295165, - 380622.1951797597, - -666028.1096000503, - 18210.50005219149, - 403988.55034623813, - 49131.36946225971, - 581717.9326907796, - -391624.7702485367, - -121953.9898486115, - 859.4224751392599, - -927510.8238268774, - -402763.3932162509, - -922274.2110410016, - -363559.17552459304, - 443600.81590450194, - 876804.5751917672, - -644913.9091309493, - 645181.1008316732, - -744999.9975197095, - 711200.1155450429, - -718802.6131773075, - -589628.3293142844, - -894528.010753233, - 720543.1219287761, - -713261.4345312329, - 901661.4551144018, - -717615.8912460882, - 267533.919953002, - -633358.5379277682, - 419377.253912127, - -177647.96475387624, - -516920.72330550285, - 327583.7853509598, - 520819.1797847843, - 350300.77329405886, - -988112.5284260073, - 710588.3397859995, - 981568.7111589207, - -665552.294781591, - -793009.9464237521, - 414451.74655842787, - -25397.666070078983, - -853894.7347639932, - 895106.4409199255, - 874899.8829013575, - -762397.6890746496, - 944744.2742735195, - -98837.54922764609, - -664586.3797982429, - -603809.8066668194, - -232917.36539511156, - -491465.765949666, - -451261.8660916994, - -33288.69234465115, - 852952.552650305, - 577002.2922082945, - -560907.084419437, - -933706.2391850161, - -145745.15460832504, - 1938.6771421989745, - -960149.4011226915, - -170562.29233685217, - -794180.2774817024, - 15332.272683221016, - -422457.7351126812, - 147525.3688103151, - 563571.2037184937, - 843537.6298581809, - -593892.9974055766, - 839879.5367851306, - 269579.3687983612, - -744255.6475110647, - -583637.7633800403, - 46654.21494484701, - -938189.4735793832, - 197523.79915031936, - 626100.1524561009, - -326881.78359177813, - 261730.41322840817, - 953940.1852560709, - 725392.1070335926, - -40816.19360819411, - 781691.1883219513, - 376257.19351697294, - 486573.73041888373, - 657365.6271911011, - 725064.5635545201, - -190529.09336950275, - 547085.6629513345, - 639871.2131202575, - -97755.5419205729, - -793736.0839922765, - -19243.173219408938, - 623149.3488257058, - 173524.2846866225, - 427642.3792832327, - 609165.9469071773, - -247226.5888012395, - 931755.2990700259, - -291397.89419018046, - -286954.5439037293, - 477530.9380740094, - -481614.238657514, - 940375.9347545557, - -580124.6294640541, - -399243.91364627663, - 96591.05548042878, - 566053.544113681, - 47356.756173632995, - 505225.1470925639, - -417203.4697296623, - 923865.7641213705, - 621154.761918006, - 588640.7653873737, - 344544.86669026373, - 859483.3846366437, - 660873.4936120859, - 251603.31935460123, - -192795.72125363487, - -520570.2923372526, - -414535.4131803336, - 481073.6871555208, - -174678.51560619674, - -560003.9311959768, - -538167.5108347839, - 13672.764967209927, - 716978.4937935866, - 162207.48993686552, - -80303.8085281187, - 973923.865699531, - 568283.3247184058, - 376498.38097867725, - -286797.8761373708, - 938768.5079328278, - 961565.4936674045, - -181547.56032793727, - 728138.6112311399, - -517616.55068056524, - 208964.39088211505, - -911472.1705976703, - 475539.1936354372, - 932828.4950779648, - -41484.59441157515, - -292785.1467195832, - -208235.12011670187, - 529866.5661184035, - -126066.11356799724, - -714976.481596677, - -722173.4700041352, - 669967.4397389148, - -266975.0828028985, - 242770.36301391176, - 853999.189949245, - -639181.6756478499, - 953286.4661460969, - -163004.20189170993, - 117436.916022011, - -520854.41586435447, - -925407.45800769, - 976421.9711462008, - 621248.0563987199, - -946404.4164239902, - -166596.28416809902, - 799547.4470635839, - -518919.559648898, - -437763.71614300436, - 338060.38912244386, - 85558.24486552832, - -102620.39420632063, - -856130.2587879092, - 465493.9134888114, - 754820.6144688388, - 21149.414609380023, - 670562.580638201, - 114617.33030475196, - 908835.9212057517, - 811454.0545861686, - 608252.4483112211, - 16846.093687938213, - 124689.37349683506, - -719120.2540195603, - -185967.00629360985, - 251276.7288205573, - 345322.7548513471, - 175654.55575578203, - -184925.6289728385, - 208014.14493150782, - -596190.3623041562, - 847244.947215345, - 965924.0629816033, - 849192.1518362842, - -218792.4808529762, - 474560.8713147029, - -353802.3690026599, - 882542.3876617637, - -830367.7983778841, - -856967.643465035, - 594035.3427447336, - 577005.0155212749, - -981236.3021448804, - 391432.8582566971, - 467585.50844156963, - 186281.10617004, - -889204.8750537693, - 642302.539452164, - -851656.9539887982, - 630311.1215989785, - 709202.9972589033, - -984443.754792288, - -926492.4763239211, - -142908.3601240049, - 238526.66936074442, - 242861.37442372713, - 939021.8107404687, - 484043.0763757415, - 412828.91489878536, - -316041.1193335713, - -289249.35773951386, - -502211.641743636, - 588781.0390879728, - -62403.741817278926, - 96259.00147687094, - -469011.4100421072, - -896851.449704493, - -674882.3298679556, - -781400.8241404402, - -420226.37046262925, - 369217.6840910224, - 33970.114188952124, - 395338.8679812806, - 748710.6674800661, - -435287.268844972, - -865376.4197376512, - 13670.049556162134, - 680624.4733972524, - 581152.7634022386, - -77663.05117718808, - 779032.0051422941, - 769677.0959349022, - 377602.8953901793, - -505216.3400228422, - 472490.8127912777, - 741362.340338394, - 668437.3542852009, - -872142.6696618686, - 97799.5080948848, - -535402.1726515543, - 914518.5026417575, - 582408.612480416, - -625162.2955819138, - 359600.8996375646, - -77689.02431914392, - 777464.8291627526, - 803162.7979981209, - -38513.65021055542, - -709908.5384347928, - 462794.34181832644, - 96575.3459309424, - 199373.09183552544, - 440095.9144918901, - -762503.5863252002, - -415631.97884143685, - -254411.09377694948, - 649189.4635545341, - -858059.900750348, - -164605.596558983, - -201077.28893387367, - -818182.9581517259, - 654105.9168274747, - -337660.3714587161, - 881905.5805816231, - -859643.0888836095, - -388784.2862025195, - -21930.679526495966, - -810146.7985419923, - 886485.6278713045, - 110277.74298156422, - -564123.1406095624, - 290387.64113112923, - -686264.0680444405, - 867403.4583285084, - -566920.8575921854, - 972996.8672718583, - -21521.297983716493, - 24312.166688685633, - 113749.21988860809, - 457473.2055230315, - 777227.6485370373, - -438738.9201148422, - -233676.8901925197, - 882819.5976580817, - -921449.5136107212, - -738250.8289512641, - -354129.5147390149, - -402408.7478065912, - -385424.31273816514, - -838993.4959292777, - 507378.02590130677, - 646170.6406003737, - 784761.7050422058, - 830485.6108744567, - 262852.5569912026, - -700201.7741508895, - 530262.3749639206, - -737700.4080162377, - -932914.7869766891, - 888629.0454641348, - 296927.8049937179, - -136967.12925162812, - 716165.8203689172, - 256073.36007168845, - -711707.8120755384, - 124439.40015480792, - -268805.31342992355, - 283288.817844483, - -519489.6134254383, - 653341.1729396186, - -620946.1527198094, - -234994.1008880867, - -806931.8481202696, - -4976.705928132929, - -407488.15567177755, - -904761.7440831801, - 826838.430149214, - -415880.93938508665, - -926118.3904840451, - 850990.9068012859, - -310084.4261053883, - -509161.19873339485, - -479407.23628669925, - 643840.22925911, - 496815.64558863454, - 934633.8751740366, - 331258.51466960856, - -741368.0881708044, - -410120.8163161709, - -82229.01262198134, - -808842.7489688051, - -75534.16139719138, - -715769.8613540266, - -826577.6302597478, - -931565.7291341546, - -606702.0857310273, - 131661.61168409584, - 488348.07006892335, - -354116.92921856616, - -218247.22728333468, - -802010.5200497974, - 9184.204864025825, - -581160.2834020411, - -603074.508616982, - 341170.63919401926, - -800837.6617120674, - -83680.22099230177, - -137244.66114671397, - 538141.078381243, - -826110.2473572615, - 986406.3465074698, - 348890.6842165733, - -57940.58857880402, - -300232.6904947266, - 221805.89972327836, - 983373.6232215092, - -201155.26620201574, - -745592.3007043626, - -712099.4135573988, - 172114.88332742974, - 103155.53849642423, - 61420.38844754105, - 440011.11677464744, - -308332.6421673376, - -877320.0060132788, - -736998.4731007031, - 964441.4853303196, - 908876.6390714764, - 775052.8029047525, - -621549.2270214213, - -91362.21869818706, - -315118.1681512076, - 399299.81825602544, - -641075.3967708645, - 576023.9557127396, - -124297.29107141796, - 931461.8027367103, - -817190.3837038144, - 840771.9919093266, - 378069.3632749952, - 599252.30687665, - -852208.751482923, - -540542.6400731581, - -680520.4512217782, - 398541.8875847939, - 761319.1116145841, - 405766.8310312914, - 976910.9262818396, - -832881.8174814439, - -982994.0183115755, - -821159.0402301083, - -484973.5855545574, - 213425.38409035193, - 279232.43458775105, - 467720.5003638012, - -132428.6571244011, - 47709.33066836736, - 778862.7287934438, - -979433.8046944189, - 851841.9414116873, - 358624.547645054, - 436948.97429062915, - -670891.9752106941, - 461153.4304324787, - -351061.2898070766, - 724373.0706768062, - 620508.4366388454, - -40653.77880764709, - 813753.4664497739, - -63686.52939129737, - -12346.95449959089, - 466494.25602173846, - -49348.148369764865, - 481303.76852291176, - 133172.07709387023, - 623247.4671390118, - -590724.2040751552, - 40410.314155049586, - 912953.7619585326, - 950198.0908976065, - -250075.1615211585, - 355350.20461515774, - 182544.54816455534, - 454206.2174427357, - -978933.0168164918, - 723078.0152313494, - -790220.7334142552, - -656209.2681317817, - 600555.6653247031, - -383421.7496351753, - 105241.21352496452, - 8892.875564424196, - 249114.6831977078, - -572481.8459122027, - 330099.73042332043, - 391008.8021984532, - -785159.3608965493, - -115632.45672334133, - -929889.7998569495, - -411442.6588002102, - 392250.3372571382, - 204119.26274795333, - -892387.6203992722, - -129834.85944242057, - -290728.7227344462, - 47703.38567113508, - -379841.2204523918, - 515004.6609351537, - 401359.5327105304, - -623879.0242070497, - -198235.10558341196, - 171407.97345287018, - -665530.4115471472, - -221969.43917431787, - 637454.6364377964, - 746263.1207972703, - -226085.59164477192, - -643394.4476332346, - -164772.54528390904, - 911751.1883955674, - 80637.57086429212, - -769697.7001177241, - -634213.2428996119, - -171461.6177613406, - 419074.7867421041, - 563669.531549778, - -5806.101008093423, - -694365.3254648447, - -591110.0236427236, - -351263.2208071609, - -861922.3330318397, - 582272.8815668636, - -464040.1906666423, - 304839.71822132316, - 155209.55773237822, - 146151.69875515942, - 939387.8814044792, - 89392.0010538074, - 88504.46521250955, - -551569.2383591364, - 382275.0290451855, - 130807.69262596847, - 574965.3108112316, - 144588.25855479616, - -695930.1670214523, - -809505.2563139173, - 167778.28909679648, - 132798.95607938318, - 232760.82477561454, - 834353.4599736367, - 961407.8641807245, - -191264.664644198, - 812631.2353458247, - -809537.1679288428, - -565486.3616008074, - 676120.1647257245, - 312714.7132557424, - -721774.2162854061, - 919696.3084822039, - -458472.05661537574, - -88416.98227460726, - -859192.8248415752, - -930718.7800558052, - 533098.7816619514, - 967775.075928561, - 731919.7897291412, - -713492.3095151149, - -74506.2387431672, - -714189.0828118752, - 833575.2523278559, - -348161.0746322301, - -398455.2386472033, - 902504.6875094931, - -144692.3498769983, - 606489.5048804722, - -399282.10217610595, - 266736.25648825493, - 459354.45504684956, - 91931.06655805062, - 936215.0867877726, - -53560.8475211351, - -630462.6412781388, - -700482.1367019257, - 13524.709942484225, - 122037.62369447513, - -61382.04524773561, - -758687.0591673969, - -510685.7518910386, - 166769.98989532853, - -726548.2972093573, - 421500.75917593564, - 82656.04473228261, - 699626.086429872, - 438607.9337618587, - 907527.3296872355, - -884580.1316959251, - -18212.394740603875, - -661254.2635482625, - -951507.0350719219, - 958907.2573543316, - 248561.20845968378, - 98126.38844718169, - -443928.09909167094, - -585180.5770447358, - -402754.9519062004, - -371587.9002042368, - 794855.0392209099, - 985536.8801980193, - -304225.6591469479, - 330204.2688496827, - 381208.5054556966, - 40248.517964020844, - -301253.76670295536, - 265011.59239499096, - 854594.3107089731, - 450711.3220843908, - -420250.475265294, - 543096.7968595752, - 806773.8181366586, - 330472.70884639455, - 780219.056294958, - 552869.4717635097, - 560429.3115116293, - -538351.9093926519, - -719436.4380447371, - 537632.8057280607, - -320281.2658976477, - -825066.7708782809, - 468273.61513134534, - -699651.3324599189, - -217631.09935391034, - 955421.6910545222, - -37234.99369478933, - 671668.4960131556, - 799156.2998690367, - 35552.25106564253, - 609125.4597263669, - -97412.82818523067, - 461608.2594798423, - -678832.8511908093, - -230250.13056481746, - -333345.3961773145, - -819524.2473664981, - -791670.9977404197, - 665081.539322953, - -287081.77178865136, - 327420.21049277525, - 433046.90950860403, - -243241.49311669442, - 253694.2167738676, - 789575.2428913856, - -632689.3766926593, - -382301.55323161255, - -389371.1165283773, - -276951.33679181593, - 300489.61733938253, - -143017.60599759428, - -108483.88662385577, - 882861.9230177786, - -790078.3016030424, - 401098.0585440047, - 58081.404704023895, - -503229.49347082415, - -516166.86088075256, - 451346.79566602444, - 903728.271659594, - 797287.4867424826, - -294160.9967236554, - 980122.8557217953, - -906551.3941280053, - -92182.90756983793, - -860137.3572249926, - 867420.3304084598, - 292496.15142819076, - -579047.2424306716, - 617844.2015491157, - -221022.5224701168, - 467074.80832512974, - -608446.069910384, - 488928.88524644286, - -198644.54249264507, - 911352.5813257177, - -137953.9645391652, - -733520.2290329352, - 103265.52651505772, - 598693.5131562235, - -319558.55418052815, - -660231.0883890716, - 556010.7216273776, - -118091.56975420288, - 974369.1884044865, - 314475.51255708595, - -541821.0095913267, - -561929.4027061852, - 788146.8262313139, - -244721.49285771616, - -542258.2071940432, - -114659.49664475494, - -529158.4997269838, - 800176.1648421335, - -594466.1741608985, - 839230.0626320523, - 472077.23961767467, - 195000.09877010572, - -222791.0167788476, - 889536.5810561178, - -925408.5950043334, - 869230.0455926161, - -215464.5704450986, - -313501.00551293505, - -606904.34134762, - 703609.1234092067, - -275361.9095670772, - -959584.1221476196, - -408199.66874220624, - -539735.3471405284, - 892664.0282068334, - -18869.465932070285, - 180349.67474503905, - -762158.4317981976, - -207687.9957212705, - -890945.354502799, - 361870.09642792447, - -334036.1646177474, - -409583.36704583245, - 884800.9847202292, - -326387.8974587404, - 890228.5196394926, - -876598.2964159332, - 333447.2130126558, - -312114.94122071646, - -108137.38481648905, - 432137.1407241159, - -574066.2570546287, - -141079.84721057786, - -256354.4513338414, - -835033.0048714681, - -134699.36722514287, - 842730.9756153929, - -238053.5735034419, - 973048.6883565593, - -106885.47174873154, - 284769.34556681453, - -742214.1563278204, - 249682.13885541135, - 47520.98024428397, - -800570.2489250514, - -601419.2479553013, - 125194.82913864266, - -979634.5067537284, - 246355.29399315393, - 642754.3630776387, - -781166.1587707603, - 741123.9832342, - 698264.5800532494, - -882673.1103672587, - 917973.3102436778, - 439632.11805041705, - 583310.6403040404, - 3248.862588606238, - 152657.6155992363, - 771190.5433660143, - -909712.5038274741, - -924725.4666325129, - 31695.4348391707, - 581207.6723088049, - -303737.7752301655, - 718803.2194755813, - 407747.7319779439, - 302223.85721211275, - 626975.8618097032, - -555577.0776657347, - -372538.1768851792, - 393761.97459584585, - -120274.37850419265, - -78058.97834357456, - 758868.1953611489, - 32541.26034559768, - 325532.0490863307, - 121838.7832995862, - 673690.111951591, - -270019.43797918403, - 40992.187396631685, - 703641.656901796, - 546801.7210152452, - -647437.8739925013, - 624866.3640141645, - 984541.540488832, - -872584.0010188981, - -842044.9763167446, - 999523.6971017229, - 451061.4026367941, - -783714.1538043644, - 913517.9097674524, - 921122.4288276345, - -436971.9280807165, - 423913.7363855321, - 412823.53685668524, - 642847.0387226039, - -854210.4399346987, - 969373.1855498615, - -912793.8211064308, - -675544.39536996, - -104704.25963279163, - 361050.779728199, - -48784.054381242335, - 271366.43278342934, - 946204.5724373694, - -908705.5713468881, - -946075.1316669954, - -685954.4456943838, - 28113.428232126036, - 300937.7278295571, - 645758.2149665427, - 978712.3751622173, - -133869.6936606516, - -612230.7435148311, - 678016.0743584111, - -600373.0473810056, - -864140.0676472915, - -566282.5537314933, - 749796.7623490723, - 604037.0030399809, - -509640.7415089887, - -216706.73802920227, - 549882.9129817148, - 16726.018219827667, - -638205.7306452933, - -855512.2221158913, - 808622.5623023391, - -390721.48305335874, - 212475.90960610195, - -928689.3966780811, - 214183.55257498223, - -820164.5975064138, - 251932.14804251696, - 460553.05239914946, - 110511.34103057093, - -186845.44473889188, - -660448.9107881075, - 707538.2163043232, - -736062.2053512099, - -63311.286504623255, - -836698.577788465, - -329243.70121681655, - -365312.7924887023, - 951306.2097244962, - -783341.6135948261, - 916474.6722630681, - -604876.4661773534, - -727436.4036086585, - 362136.9669187524, - -349079.1710379566, - -867116.7023433555, - 767518.2495107739, - -777689.0489512988, - -44659.937128784135, - 372870.847969698, - -286460.2217828114, - -742281.4632809429, - -580871.8623989486, - -234950.24425660828, - -135134.21473901777, - 385173.54088815517, - 47727.774492929195, - 523663.9864736594, - -783889.916719223, - -738001.6384320635, - -598964.6551841439, - -212071.8731585296, - -220125.595222187, - -150204.22749384755, - 221274.26456686706, - -685375.4367931215, - 937112.5241186297, - -90098.76840059672, - -294044.6431997588, - 32838.698558043776, - -925735.9463018979, - -410925.7297657842, - -26736.47282568403, - -571589.3988285122, - 215807.38837979842, - 657339.9182578097, - -157946.2963706557, - -53642.54056548501, - 505808.866275802, - 95554.43324296719, - 512939.618519509, - -567938.9299301436, - -212600.76390527427, - 644897.4747924516, - -463838.0100479056, - 381893.68662886, - 935612.7734646391, - -996789.163573987, - -508841.12739114685, - 681081.6694636388, - -937461.1972945685, - 116412.45005795131, - 988005.4977559051, - 622222.8734993594, - -881302.7481469609, - -385207.44806337, - 305693.03914191906, - -405045.1338857135, - -429534.3235379718, - 68673.63805819892, - 651663.9434072415, - -325930.39784147893, - 216382.66624430314, - -291561.60560353595, - -301302.61834368424, - 833760.6881373913, - -873491.3768074213, - -39987.05909251843, - -317024.3234668078 - ] - }, - { - "hovertext": [ - "Nicolas", - "Lutz", - "Rosemarie", - "Marc", - "Michaela", - "Margarete", - "Bruno", - "Nicole", - "Steffen", - "Stefanie", - "Christel", - "Wilhelm", - "Harald", - "Mohamed Maged", - "Salim", - "Marina", - "Ankica", - "Ingo", - "Christoph", - "Olaf", - "Rainer", - "Pieter", - "Bernhard", - "Franz-Hartwig", - "Claus", - "Helmut", - "Heinz G.", - "Peter", - "Thomas", - "Wolfgang", - "Heinz", - "Hans-Dieter", - "Frank", - "Harald C. H.", - "Franz-Josef", - "Norbert", - "Georg", - "Kerstin", - "Michael", - "Volker", - "Alfred", - "Günther", - "Claus", - "Stefan", - "Susanne", - "Jens", - "Hans Adolf", - "Rumen", - "Steffen", - "Wolfgang", - "Ulrich", - "Andreas", - "Gerhard", - "Helmut", - "Matthias", - "Walter", - "Hans", - "Bettina", - "Hans Jürgen", - "Helmut", - "Jochen", - "Jochen", - "Bruno", - "Peter", - "Volker", - "Hans", - "Gregor", - "Horst", - "Michael", - "Brunhild", - "Peter J.", - "Georg", - "Wolfgang", - "Reinhard", - "Axel", - "Friedrich", - "Günther", - "Klaus-Peter", - "Knud", - "Joachim", - "Bernd", - "Arthur", - "Robert", - "Hans Willi", - "Frank", - "Werner Dieter", - "Ursula", - "Markus", - "Udo", - "Kurt", - "Sylvia", - "Joachim", - "Benno J.", - "Rainer", - "Horst", - "Wolfgang", - "Heinz", - "Josef", - "Detlef W.", - "Sabine", - "Uwe", - "Christian", - "Peter", - "Wilhelm", - "Alma", - "Franz-Josef", - "Gerd", - "Kurt", - "Hans-Günther", - "Edith", - "Manfred", - "Thomas", - "Andreas", - "Reiner", - "Heinz-Dieter", - "Nasir", - "Michael", - "Hermann", - "Klaus", - "Bernhard", - "Stephan", - "Robert", - "Jens Peter", - "Barbara", - "Monika", - "Fred", - "Herbert", - "Rudolf", - "Rolf", - "Ekkehard", - "Dietrich", - "Helmut", - "Edith", - "Volker", - "Thomas", - "Erik", - "Michael", - "Josef", - "Peter", - "Wolfgang", - "Coletta", - "Zein-El Ibad", - "Manfred", - "Dieter", - "Herbert", - "Andrea", - "Rolf", - "Gerd", - "Thomas", - "Karlheinz", - "Holger", - "Erika", - "Wolfgang", - "Ralf", - "Wolfgang", - "Jürgen", - "Klaus", - "Rainer", - "Martin", - "Ann", - "Gerd", - "Axel", - "Jürgen", - "Ralf", - "Thomas", - "Andreas", - "Dieter", - "Alexander F.", - "Peter", - "Gregor", - "Richard", - "Norbert A.", - "Günther", - "Klaus", - "Klaus", - "Gerhard", - "Jürgen", - "Lutz", - "Manfred", - "Ulrich", - "Doris", - "Albrecht", - "Edgar", - "Wolfgang", - "Malte", - "Hubert", - "Gerhard", - "Manfred", - "Georg", - "Herbert", - "Gottfried", - "Heinrich", - "Inge", - "Martin", - "Anett", - "Christian", - "Dieter", - "Helmut", - "Gabriele", - "Rainer", - "Herbert", - "Georg", - "Jacqueline", - "Thomas", - "Peter", - "Bernd", - "Volker", - "Robert", - "Dieter", - "Helmut", - "Tan Kai Pascal", - "Gerhard", - "Hendrik", - "Helge", - "Frank", - "Gerhard", - "Detlev", - "Frank", - "Egbert", - "Ralph", - "Bodo", - "Franz-Josef", - "Hansjörg", - "Immo", - "Kurt", - "Jan S. T.", - "Joachim", - "Bärbel", - "Frank", - "Klaus", - "Dirk", - "Marie-Luise", - "Vijaykumar", - "Johannes", - "Reiner", - "Peter", - "Johannes", - "Martin A.", - "Gunnar", - "Claudia", - "Wilfried", - "Christian", - "Holger", - "Holger", - "Günter", - "Susanne", - "Christopher John", - "Magrit", - "Jürgen", - "Steffen", - "Thorsten", - "Michael", - "Marlies", - "Susanne", - "Felix", - "Hans-Joachim", - "Maria", - "Heinz-Georg", - "Jürgen", - "Erwin", - "Uwe", - "Martin", - "Maritta Helene Minna", - "Martin", - "Berthold", - "Fabian", - "Anabel", - "Dario", - "Philip", - "Victoria", - "Vincent", - "Evelin", - "Thorsten", - "Isabel", - "Gerhard", - "Thilo", - "Toni Christov", - "Franziska", - "Matthias", - "Mike", - "August", - "Martin", - "Anke", - "Florian", - "Ekhard", - "Kurt", - "Leila", - "Jan", - "Thomas Matthias", - "Alexander Guy", - "Dana Monika", - "Rasmus Jonathan", - "Markus", - "Alessandro", - "Thomas", - "Robin John Andes", - "Cretièn René Gilbert", - "Michael", - "Sebastian", - "Christian", - "Sascha", - "Tobias", - "Sascha", - "Ralph", - "Tilo", - "Simona-Lucia", - "Andreas", - "Werner", - "Roswitha", - "Brigitte", - "Max", - "Tobias", - "Philipp", - "Georg F.W.", - "Maria-Elisabeth", - "Klaus", - "Alexandra", - "Georg", - "Salem Daniel", - "Patrick", - "Britta", - "Ferdinand", - "You-Ha", - "Nico-David", - "Heiko", - "Lucas", - "Stephan Maximilian", - "Jan", - "Thomas", - "René", - "Robert", - "Torsten", - "Oliver", - "Christian", - "Eric", - "Jochen", - "Ludwig Bernhard", - "Musa", - "Wolfgang", - "Erika", - "Anita", - "Dietmar", - "Johannes", - "Friedrich-Karl", - "Wolfgang", - "Brigitte", - "Christa", - "Günther", - "Jürgen", - "Sieglinde", - "Gisela", - "Rolf-Heinrich", - "Katrin", - "Heinz", - "Hans-Peter", - "Walter", - "Walter", - "Elfriede", - "Rudi", - "Alfred", - "Manfred", - "Walter", - "Georg", - "Erich", - "Melita", - "Rolf", - "Martin", - "Klaus-Gerhard", - "Günther", - "Hermann", - "Manfred", - "Karl", - "Reiner", - "Gerhard", - "Hans", - "Helene", - "Hans", - "Else", - "Hanna", - "Eugen", - "Eugen Michael", - "Sonja", - "Ralf", - "Susanne", - "Walter", - "Dieter", - "Susanne", - "Richard", - "Eugen", - "Andreas", - "Wolfgang", - "Werner", - "Iris", - "Manfred", - "Rosemarie", - "Günter", - "Martin", - "Ralf", - "Norbert", - "Margarete", - "Alexander", - "Eberhard", - "Oliver", - "Achim", - "Rolf", - "Hubert", - "Klaus-Peter", - "Ute", - "Josef", - "Walter", - "Eva", - "Rudolf", - "Beate", - "Winfried", - "Wolf", - "Birgit", - "Holger", - "Roland", - "Frank", - "Carla", - "Dietmar", - "Max", - "Beate", - "Wolfgang", - "Günter", - "Wolfgang", - "Lina", - "Karl", - "Heike", - "Raimund", - "Regina", - "Marita", - "Volker", - "Christel", - "Karl", - "Markus", - "Rotraut", - "Stephan", - "Ralf", - "Ernst", - "Karl", - "Walter", - "Otmar", - "Adolf", - "Thomas", - "Ursula", - "Holger", - "Gerhard", - "Karlheinz", - "Elke", - "Jens", - "Elsbeth", - "Thomas", - "Georg", - "Gudrun", - "Gisela Melanie", - "Ilse", - "Lore", - "Gerlinde", - "Helmut", - "Georg", - "Hilde", - "Markus", - "Andrea Maria", - "Hans Michael", - "Christopher Kurt", - "Anita Doris", - "Klaus-Helmut", - "Sabine", - "Hans-Peter", - "Hildegard", - "Brigitte", - "Karl", - "Gerhard", - "Margarete", - "Annette", - "Andrea", - "Sarah-Yasmin", - "Brigitte", - "Ulrich", - "Christoph Wilhelm Georg", - "Waltraud Helene", - "Hermann", - "Beatrice Raphaela", - "Stephanie Annette", - "Ann-Catherine", - "Norbert", - "Petra", - "Ellen", - "Petra", - "Ute", - "Brigitte Monika", - "Karin Elke", - "Hannelore", - "Monika", - "Monika", - "Adelheid", - "Günther Erwin", - "Klaus Gerhard", - "Alexander Egon", - "Korbinian", - "Florian", - "Donatus", - "Franz", - "Alessandro Stefano", - "David", - "Peter", - "Aline", - "Marco", - "Angelika", - "Carsten", - "Dominik", - "Robin", - "Andreas", - "Ernst Moritz", - "Christian", - "Jürgen", - "Benjamin", - "Jochen", - "Konstantina", - "Lars", - "Olaf", - "Torsten", - "Stefan", - "Mark", - "Robert", - "Stephen", - "Kerstin", - "Jens", - "Jan-Ole", - "Katja", - "Jörg", - "Philipp", - "Matthias", - "Henrik", - "Alexander", - "Holger", - "Rainer", - "Norbert", - "Sabine", - "Maximilian", - "Pierre", - "Frank", - "Jan Jérôme", - "Jürgen", - "Michael", - "Hans-Jürgen", - "Hannelore", - "Walter", - "Rainer", - "Domenikus Christoph Martin", - "Thomas", - "Gertrud", - "Gerhild", - "Manfred Sebastian", - "Roland", - "Ursula Maria", - "Andrea", - "Henri Noel Frederic Charles", - "Wolfgang Reinhard", - "Martin", - "Hermann Karl Ludwig", - "Marion", - "Klaus", - "Ralf", - "Wolfgang Georg Friedrich", - "Gerhard Johannes", - "Siegrid", - "Mareike", - "Martin Rolf", - "Johann Jakob", - "Klaus Peter", - "Dieter Hermann", - "Gerhard", - "Konrad", - "Margret", - "Werner", - "Hans-Jürgen", - "Alexander", - "Andrea", - "Almut Hedwig", - "Walter Georg Friedrich", - "Klaus", - "Ferdinand", - "Helmut Hermann", - "Rolf Karl", - "Sabine Ursula", - "Johanna", - "Philipp", - "Heiko", - "Alexander Johannes", - "Thomas", - "Michael", - "Holger", - "Hans Jürgen", - "Simone", - "Sabine", - "Andreas", - "Anke", - "Kevin", - "Thomas", - "Michaela", - "Reinhold", - "Theodor", - "Rolf Martin", - "Frank", - "Eric", - "Alexander", - "Gudrun", - "Jens", - "Klaus", - "Anita", - "Burkhard", - "Martina", - "Josef", - "Margot", - "Klaus-Dieter", - "Karl-Friedrich", - "Ortrud", - "Renate", - "Karl-Heinz", - "Iris", - "Richard", - "Jutta", - "Harald", - "Alfred", - "Gerhardt", - "Gerd", - "Johann Josef", - "Michael", - "Hans-Joachim", - "Peter", - "Hildegard", - "Wolfgang", - "Helge", - "Emil", - "Antonia", - "Otto", - "Eva-Maria", - "Angelika", - "Bettina", - "Edith", - "Hans-Werner", - "Gisela", - "Irmgard", - "Helmut", - "Otto", - "Monika", - "Corinna", - "Maria Elisabeth", - "Hans Georg", - "Albert", - "Eberhard", - "Gisela", - "Thomas", - "Thomas", - "Angelika", - "Helga", - "Wilfried", - "Maria", - "Hans Herbert", - "Marita", - "Herbert", - "Johannes Michael", - "Jens-Peter", - "Hans-Martin", - "Waltraud", - "Ursula", - "Werner", - "Ulrich", - "Bernd", - "Barbara", - "Regine", - "Lars", - "Jan", - "Gertrud", - "Hannelore", - "Sylvia", - "Helga", - "Heidrun Gisela", - "Sigrid", - "Christa", - "Edeltraut", - "Reinhold", - "Brigitte", - "Christa", - "Eberhard", - "Susanne", - "Friedrich", - "Heinz Peter", - "Anna Maria", - "Petra", - "Patrick", - "Anke", - "Peter", - "Walter", - "Trude", - "Brigitte Gerda", - "Jörg", - "Maria", - "Anita", - "Ilse", - "Dorothee", - "Ute", - "Michael", - "Gabriele Maria", - "Jörgen Herbert", - "Susanne", - "Ulrich", - "Theresie", - "Anke", - "Gabriele", - "Wolfgang", - "Vera Anne Katharina", - "Joachim", - "Bodo", - "Gesine", - "Elke", - "Hartmut Helmut Friedrich", - "Sabine", - "Hannegret Felicia Ellinor Odeh", - "Renate Christa Helga", - "Tobias Fabian Jakob", - "Michael", - "Hanno", - "Gesche", - "Laura", - "Patrick", - "Frank", - "Carmen", - "Stephan", - "Frank Roland", - "Monika", - "Sebastian Helmut", - "Alexander Friedrich", - "Jutta Maria", - "Karin Maria", - "Jürgen", - "Oliver", - "Christian", - "Ulrich", - "Udo", - "Bernd", - "Verena", - "Tobias", - "Heiko", - "Matthias", - "Sven", - "Daniel", - "James", - "Andreas", - "Francie", - "Dirk", - "Felix", - "Moritz", - "Dominique", - "Julian", - "Peter", - "Jan", - "Felix Benedikt", - "Nico", - "Marko", - "Mohamed Raza", - "Depken", - "Patrick", - "Sebastian", - "Markus", - "Thomas", - "Michelle", - "Melanie", - "Björn", - "Harm", - "Torben", - "Günter", - "Jörg Volker", - "Daniel", - "Nigel", - "Claus-Peter", - "Wolfram", - "Silja", - "Bernd", - "Sven", - "Philipp", - "Aimee", - "Andreas", - "Markus", - "Alberto", - "Sigrid", - "Marina", - "Carla", - "Sven", - "Claudia", - "Scott", - "Jan", - "Amanda", - "Martin", - "Christof", - "Laura", - "Eveline", - "Björn", - "Saskia", - "Arthur", - "Filipa", - "Mathieu Nounagnon", - "Andreas", - "Holger", - "Ralf", - "Tim", - "Helge", - "Matthias", - "Robert", - "Wolfgang Josef", - "Lei", - "Tim", - "Josef", - "Mogens", - "Lars-Eric", - "Kay", - "Julian", - "Magnus", - "Jan-Christian", - "Sebastian Andreas", - "Henry", - "Susanne", - "Halil", - "Stefan", - "René", - "Ursula", - "Michael Heiko", - "Yasemin", - "Guido", - "Sören", - "Thomas", - "Marko", - "Marc", - "Frank", - "Sandra", - "Martin", - "Ahmet", - "Oliver", - "Heinrich", - "Dieter", - "Martin", - "Christoph", - "Eckhard", - "Robert", - "Helmut", - "Christine", - "Christian", - "Steffen", - "Petra", - "Peter", - "Bernd", - "Erich", - "Frank", - "Elisabeth", - "Kurt", - "Marcus Oliver", - "Dieter", - "Henrik Cord", - "Sven", - "Fritz", - "Klaus", - "Dirk", - "Heiko Friedrich Ralf", - "Frank", - "Claudia", - "Stephan Andreas", - "Alexander", - "Christine", - "Philipp", - "Matthias", - "Svenja Karola", - "Marcell", - "Ralf", - "Marita", - "Michael", - "Torsten", - "Tilo", - "Cretièn", - "Daniel", - "Jeremias", - "Barbara", - "Sebastian", - "Dominik", - "Christopher Sven Erik", - "Georg Daniel", - "Franz", - "Gerhard Donatus", - "Frank", - "Jürgen", - "Volker", - "Volker", - "Thomas", - "Katja", - "Christian", - "Mike", - "Frank Alexander", - "Reinhard Helmut", - "Ralf J.", - "Heinrich", - "Cornelius", - "Michael", - "Helen", - "Martin", - "Catharina", - "Hanjo", - "Anja", - "Gabriel", - "Sedat", - "Catia", - "Christof Aurelius", - "Ralph Kurt", - "Eberhard", - "Christian", - "Patrick Max", - "Marc Henning Simon", - "Elisabeth Vera Josepha", - "Markus", - "Juan", - "Michael", - "Christiane", - "Matthias", - "Fritz", - "Richard", - "Nicolas", - "Cornelius", - "Stephan Karl", - "Matthias Wolfgang", - "Peter", - "Guido", - "Angelika", - "Doris", - "Christopher", - "Nils Holger", - "Klaus", - "Patrick", - "Antje Leonie", - "Stephan Peter", - "Ismir", - "Björn", - "Jürgen", - "Ralf", - "Dietmar", - "Markus", - "Heinz", - "Johann Baptist", - "Normajean", - "Jürgen", - "Ralf", - "Wolfgang", - "Stephan", - "Alexandra", - "Rolf", - "Anita", - "Marcus", - "Bernd", - "Meike Elisabeth", - "Stefan", - "Angelika", - "Johann", - "Bernhard", - "Thomas", - "Marcus", - "Matthias", - "Manuel", - "Andreas", - "Stephan", - "Matthias", - "Roswitha", - "Maria", - "Udo", - "Stefan", - "Ewald", - "Carl Christian", - "Hanno", - "Marco", - "Anne Boel", - "Marko", - "Marco", - "Christof", - "Oliver", - "Dirk", - "Thomas", - "Mark", - "Gerhart", - "Volker", - "Roland", - "Helmut", - "Angelika", - "Thomas", - "Bernhard", - "Jens-Dieter", - "Martin", - "Frank", - "Harald", - "Thomas", - "Thomas", - "Ingo", - "Peter", - "Jürgen", - "Martin", - "Antonius", - "Oliver", - "Egon", - "Christiane", - "Andreas", - "Sascha", - "Robert", - "Jörg", - "Wolfram", - "Harald", - "Markus", - "Tobias", - "Roar", - "Michael", - "Dave", - "Marina", - "Christian", - "Chris", - "Hanna Lena", - "Christopher Howard", - "Marcos", - "Frank", - "Stanislav", - "Matteo", - "Jürgen", - "Florian", - "Ditmar", - "Mathias Eugen", - "Patrick", - "Gregor", - "Ralf", - "Reinhard", - "Thomas", - "Klaus", - "Oscar", - "Martin", - "Michael", - "Christian", - "Roland", - "Peter", - "Robert", - "Andreas", - "Ulf Jürgen", - "Jörg", - "Elke", - "Rudolf", - "Alexander", - "Stefan", - "Andreas", - "Frank", - "Jörg", - "Frank", - "Claudia", - "Diane", - "Frank", - "Martin", - "Michael", - "Stefan", - "Jochen", - "Sven", - "Elke", - "Bernd-Peter", - "Armin", - "Gabriele", - "Miriam", - "Frank", - "Ralph", - "Dorian", - "Henning", - "Alexander", - "Oliver", - "Isabelle", - "Thomas", - "Max", - "Lothar", - "Lars", - "Wolfram", - "Cornelia", - "Frank", - "Miriam", - "Thomas", - "Maria Cristina", - "Dirk", - "Christoph", - "Marco", - "Uwe", - "Michael", - "Bernhard", - "Sven", - "Ralf", - "Christoph", - "Thomas", - "Olivia", - "Gerd", - "Christian", - "Jörg", - "Caroline", - "Christiane", - "Wolfgang", - "Martina", - "Olaf", - "Lars", - "Gerhard", - "Eva", - "Udo", - "Steffen", - "Wolfram", - "Matthias", - "Axel", - "Antje", - "Holger", - "Arndt", - "Martin", - "Frank", - "Timo", - "Martin", - "Oliver", - "Beate", - "Barbara", - "Michaela", - "Bettina", - "Steffen", - "Friedemann", - "Joachim", - "Oliver", - "Bernhard", - "Bernd", - "Carola", - "Michael", - "Hendrik", - "Thomas", - "Claus", - "Stefan", - "Alexander", - "Oliver", - "Hartmut", - "Frank", - "Stefan", - "Antje", - "Ralf", - "Harald", - "Jens", - "Thomas", - "Johann", - "Patrick", - "Ute", - "Ingmar", - "Carlos", - "Jeanne", - "Paul Wilhelm", - "Xin", - "Ursula", - "Björn", - "Frank", - "Yuliya", - "Karsten", - "Sylvia", - "Jan", - "Heiko", - "Marcel", - "Tobias", - "Philipp", - "Dieter", - "Jan", - "Arnd", - "Wolfgang", - "Birgit", - "Birgit", - "Oliver", - "Bijoy", - "Kirstin", - "William", - "Sara", - "Gabriele", - "Olivier", - "Manfred", - "Dirk", - "Gerhard", - "Axel", - "Marco", - "Katrin", - "Christian", - "Melanie", - "Frank Nils", - "Maik", - "Sarena", - "Maik", - "Thomas", - "Angela", - "Matthias", - "Bernd", - "Dominik", - "Heike", - "Martin", - "Maurizio", - "Gregor Christoph", - "Daniela", - "Heiner", - "Deny-Jean", - "Rodrigo", - "Elisabeth", - "Axel", - "Konstanze", - "Tobias", - "Heiko", - "Sascha", - "Klaus", - "Birgit Silke", - "Miriam", - "Astrid", - "Dirk", - "Solveig", - "Marianne", - "Björn", - "Carlos", - "Ralf", - "Nicola", - "Kristina", - "Ruedeger", - "William N.", - "Jutta", - "Veit", - "Johann", - "Michael", - "Mark", - "Peter", - "Annalena", - "Thomas", - "Jürgen", - "Christoph", - "Wolfgang", - "Christoph", - "Goldes", - "Rainer Manfred Reinhold", - "Markus", - "Georg", - "Patrick", - "Ben", - "Michael", - "Jürgen", - "Andreas", - "Stephan", - "Martina", - "Dirk", - "Wolfgang", - "Klaus", - "Agustin", - "Tobias", - "Gisbert", - "Claus Christoph", - "Oliver", - "Tilman", - "Elmar", - "Stefan", - "Michael", - "Gisela", - "Peter Michael", - "Jürgen", - "Anne", - "Peter", - "Bernd", - "Jana", - "Marc", - "Jens", - "Julie", - "Stefan", - "Peter", - "Silvio", - "Christian", - "Luisa", - "Ulrich", - "Gilbert", - "Imke", - "Christian", - "Christoph", - "Zoran", - "Derya", - "Andreas", - "Gerhard", - "Johann Nepomuk", - "Eric", - "Susanne", - "Sandra", - "Ingmar", - "Michael", - "Johanna", - "Christopher", - "Horatio Karl-Philipp Arne", - "Britta", - "Malte", - "Thomas", - "Tobias", - "Jörg", - "Dirk", - "Burkhard", - "Karin", - "Martin", - "Andreas", - "Felix", - "Fernando", - "Claudia", - "Marcus", - "Marco", - "Katharina", - "Miriam", - "Björn", - "Andreas", - "Karin", - "Carolin", - "Hans-Peter", - "Michael Georg", - "Jochen", - "Karl-Heinz", - "Maximilian", - "Anita Katharina", - "Oliver", - "Birka", - "Frank", - "Marc", - "Alice", - "Thomas", - "Xenia", - "Stefan", - "Cristina", - "Ulrike", - "Thomas Frederik", - "Stefan", - "Ludwig", - "Günter", - "Tobias Benjamin", - "Ulf Adolf", - "Cornelia", - "Alois", - "Marketa", - "Thomas", - "Britta", - "Viola", - "Michael", - "Eileen Ilona", - "Konstantin", - "Roald", - "Thomas", - "Burchard Graf", - "Stefan", - "Volker", - "Kunibert", - "Rüdiger", - "Christopher", - "Simon Silvester", - "Jens", - "Barbara", - "Nikolas", - "Iran", - "Christina", - "Joachim", - "Carsten", - "Guido", - "Markus", - "Michael", - "Klaus", - "Holger", - "Martin", - "Hans-Jürgen", - "Heiko", - "Sandro", - "Thomas Joachim", - "Ferdinand", - "Monika Gerda", - "Andreas", - "Frank", - "Nadine", - "Peter", - "Raimund", - "Margret", - "Michael", - "Sonja", - "Gisbert", - "Sebastian", - "Oliver", - "Martin", - "Jürgen", - "Markus", - "Erich", - "Wolfgang", - "Volker", - "Andreas", - "Michael", - "Marius Achim", - "Holger Thomas", - "Dagmar", - "Hans", - "Christian-Matthias", - "George Joseph", - "Francesc", - "Guido", - "Claudia", - "Hartmut", - "Martin", - "Petra", - "Wolfgang", - "Linda Joanna", - "Michael", - "Thomas", - "Thomas", - "Wolfgang", - "Wolfgang", - "Richard", - "Daniel", - "Martin", - "Jochen", - "Roland", - "Hartwig", - "Eckhard", - "Ulrich", - "Thomas", - "Philipp", - "Thomas Peter", - "Eckart", - "Maximilian", - "Thomas", - "Markus", - "Detlef", - "Anne", - "Edgar", - "Thomas", - "Sascha", - "Christoph", - "Robert", - "Sascha", - "Peter", - "Daniela-Maria", - "Christoph", - "André", - "Thomas", - "Julia", - "Sebastian", - "Dominicus", - "Stefan", - "Jordi", - "Andreas", - "Klaus", - "Michael", - "Hendrik", - "Elke", - "Birgit", - "Kristina", - "Stefan", - "Stefan", - "Oliver", - "Thomas", - "Christian", - "Josef", - "Lothar", - "Edgar", - "Karin", - "Bernd", - "Frank", - "Stefan", - "Jürgen", - "Thorsten", - "Thomas", - "Ralf", - "Henrik", - "Guiscard", - "Wolfram", - "Uta", - "Susanne", - "Joachim", - "Uwe", - "Henricus Maria Martinus", - "Johannes", - "Bernhard", - "Theodore", - "Stefan", - "Patrick", - "Uwe", - "Andreas", - "Detlef", - "Jörg", - "Martin", - "Alissa", - "Christian", - "Christoph", - "Adrian", - "Lars", - "Tilmann", - "Christian", - "Christian", - "Julia", - "Roland", - "René", - "Marc", - "Carola", - "Bernhard", - "Dominik", - "Thomas", - "Wolfgang", - "Michael", - "Olaf", - "Carla", - "Josef", - "Lars", - "Ulf", - "Sören", - "Jürgen", - "Dirk", - "Axel", - "Jan", - "Dirk Steffen", - "Torsten", - "Dirk", - "Lars", - "Markus", - "Gert", - "Anup", - "Oliver", - "Melanie", - "Nicole", - "Markus", - "Thomas", - "Juan Carlos", - "Jobst Rüdiger", - "Sven", - "Horst", - "Achim", - "Christian", - "Ralf", - "Reiner", - "Livio", - "Julia", - "Patricia", - "Angela", - "Agustin", - "Fabio Henrique", - "Michael", - "Andreas", - "Alba", - "Piyada", - "Jan-Peter", - "Michael", - "Matthew", - "Katrin", - "Andreas", - "Knut", - "Thorsten", - "Matthias", - "Andreas", - "Andreas", - "Beatrice", - "Marco", - "Lode", - "Markus", - "Peter", - "Romy", - "Andrea", - "Tanja", - "Markus", - "Frank", - "Christoph", - "Daniel", - "Bart", - "Christian", - "Frank", - "Bernd", - "Jörg", - "Robert", - "Michael", - "Christian", - "Gabriele", - "Marcelo", - "Jens Christian", - "Stefan", - "Marco", - "Daniela", - "Andrea Karen", - "Heather", - "Katja", - "Boris", - "Mirko", - "Martin", - "Simone", - "Julia", - "Steffen", - "Sven", - "Dennis", - "Francisco", - "Kristina", - "Gerald", - "Marko", - "Christophe", - "Heiko", - "Frederick", - "Steven", - "Thomas", - "Veit", - "Nina", - "Melanie", - "Tobias", - "Andreas", - "Giovanni", - "Christoph", - "Bernd", - "Stefan", - "Claus", - "Helmut", - "Dorothee", - "Helya", - "Doreen", - "Sören", - "Peder Lindbjerg", - "Shah", - "Philip", - "Daniel", - "Johannes", - "Mia Anna", - "Christiane", - "Diana", - "Thieu-Luan", - "Daniel", - "Patrick", - "Alexander", - "Raimund", - "Sabrina", - "Christine", - "Sven", - "Elmar", - "Philip", - "Carsten", - "Matthew", - "Jens", - "Tobias", - "Taren", - "Verena", - "Tatjana", - "Lena", - "Ulrich", - "Patrick", - "Matthias", - "Tobias", - "Gustavo", - "Benjamin", - "Johannes", - "Virginia-Beatrice", - "Julia", - "Lisa", - "Sabine", - "Stefanie", - "Stefan", - "Clemens", - "Joachim", - "Thomas", - "Hugues", - "Ingrid", - "Tatiana", - "Peter", - "Christian", - "Tobias", - "Andras", - "Johannes", - "Horatio", - "Jan", - "Jan", - "Melanie", - "Amber", - "Tuelin", - "Yatindra", - "Thomas", - "Volker", - "Thorben", - "Götz", - "Dietrich", - "Sven K.", - "Lydie", - "Markus", - "Brieux Andre Daniel", - "Nicolas", - "Jens", - "Philipp", - "Peter", - "Caren-Sabine", - "Claudia", - "Stephan", - "Ketan", - "Daniel", - "Daniel", - "Alexander", - "Carmen", - "Mary", - "Dirk", - "Tobias", - "Thomas", - "Michael", - "Daniel", - "Peter", - "Tanja", - "Pia", - "Annegret", - "Tina", - "David", - "Stefan", - "Maximilian", - "Michael", - "Sara-Anja", - "Erwin", - "Werner", - "Margarita", - "Sebastian", - "Harald", - "Philipp", - "Harald Erich Josef", - "Mirko", - "Christina", - "Eileen", - "Björn Carsten", - "Michael", - "Nicholas", - "Thomas", - "Ralf", - "Dirk", - "Hans", - "Christiane", - "Klaus", - "Michael", - "Thomas", - "Michael Hellemann", - "Andrea", - "Jörg", - "Holger", - "Inge Emiel", - "Heiko", - "Roland Alois", - "Rainer", - "Richard", - "Wolfram", - "Andreas-Heinrich", - "Jürgen", - "Gunilla", - "Rajesh Shivratan", - "Francisco Javier", - "Sebastian", - "Franziska", - "Oliver", - "Lars", - "Sascha", - "Ines", - "Dieter", - "Tobias", - "Daniel", - "Marko", - "Jürgen", - "Karin", - "Oliver", - "Christine", - "Stephan", - "Heiko", - "Elisabeth", - "Mirko", - "Jan-Peter", - "Andrea", - "Marco", - "Berit", - "Carsten", - "Robert", - "Claudia", - "Berkan", - "Attila", - "Cemil", - "Georg", - "René Heinz", - "Helge", - "Dörte Katharina Julia", - "Claudia", - "Thomas Michael", - "Frank", - "Anne", - "Lars", - "Caroline", - "Sibylle", - "Morten", - "Frank", - "Ronny", - "René", - "Marion", - "Gerrit", - "Harry Leo", - "Wolfgang", - "Guido", - "Susanne", - "Carmen", - "Kateryna", - "Jeroen Johannes Hendrikus", - "Christian", - "Anke", - "Martin Bernhard", - "Ferenc", - "Stefan Ulrich", - "Patrick", - "Jens", - "Lars", - "Ilka", - "Petra", - "Marc", - "Thomas", - "Robert", - "Erik", - "Steffen", - "Carsten", - "Bernhard Peter", - "Kilian", - "Alexandra Katinka", - "Arnold", - "Michael", - "Markus", - "Stefan", - "Florian", - "Frank", - "Kristina", - "Christian", - "Frank", - "Christine", - "Elisabeth", - "Ina", - "Heinrich", - "Jürgen", - "Florian", - "Robert", - "Stefan", - "Andreas", - "Benjamin", - "Christian David Karl", - "Markus Wilhelm", - "Robert", - "Christian", - "Timo", - "Hennicke", - "Jenny", - "Oliver", - "Bastian", - "Meinolf", - "Fabian", - "Holger", - "Simon", - "Markus", - "Eva-Maria", - "Uwe", - "Oliver-Ciprian", - "George-Cristian", - "Philipp Nikolaus", - "Christian", - "Markus", - "Sonja Bianca", - "Ralf", - "Christian", - "Mechthild Margarete Martina", - "Ruth Katharina", - "Friedrich Wilhelm genannt Fritz", - "Ulrich", - "Peter", - "Peter Nikolaus", - "Martin", - "Christian", - "Mirko", - "Jukka", - "Kirill", - "Frank", - "Uwe", - "Heike", - "Constantin", - "Matthias Christian", - "Rupert Kaspar", - "Caspar", - "Nicholas Anthony", - "Michele", - "Paul Michael", - "Günter", - "Thomas", - "Frank", - "Georg", - "Monika", - "Markus", - "Wolfgang", - "Klaus Peter", - "Rosi", - "Jürgen", - "Ulli", - "Sam Rafael", - "Annette", - "Rainer", - "Eugen", - "Anna", - "Robert", - "Holger", - "Christian", - "Markus", - "Barbara", - "Wolfgang", - "Hugo", - "Michael", - "Siegfried", - "Albert", - "Iram", - "Andreas", - "Roland", - "Ralf", - "Hans", - "Peter", - "Ulrich", - "Tamara", - "Michael", - "Christian", - "Hans-Josef", - "Birgit", - "Hagen", - "Christian", - "Mustafa", - "Matthias Albrecht Paul", - "Manuel", - "Markus", - "Michael", - "Oliver", - "Martin", - "Matthias", - "Günter", - "Thomas", - "Frank", - "Alexander", - "Tobias", - "Andrea", - "Jan", - "Benedikt", - "Jonas", - "Mihaela", - "Dirk", - "Kay", - "Florian", - "Kerstin", - "Jonathan", - "Andreas", - "Alexander", - "Stefan", - "Stefan", - "Martin", - "Christian Werner", - "Tanja", - "Ewout Martijn", - "Frank", - "Markus", - "Frank Jürgen Michael", - "Kristin", - "Rainer", - "Birgit", - "Benjamin", - "Martin", - "Oliver", - "Rolf Heinrich", - "Jan", - "Andrea", - "Sophie", - "Mathias", - "Bernhard", - "Stephan", - "Marco", - "Benjamin", - "Fritz Georg", - "Jürgen", - "Helmut", - "Martin", - "Peter Georg", - "Thomas", - "Hans-Georg", - "Peter", - "Markus", - "Jürgen", - "Yordanka", - "Sven", - "Daniel", - "Adnan", - "Oliver", - "Edmund", - "Steven", - "Stephan", - "Constantin", - "Sven", - "Marc Norbert", - "Susanne", - "Serap", - "Marc", - "Jakob", - "Bernd", - "Maike", - "Rainer", - "Peter", - "Joachim", - "Georg", - "Georg", - "Martina", - "Ulrike", - "Maria", - "René", - "Thomas", - "Manuela", - "Martin", - "Stefan", - "Christian", - "Rainer", - "Frank", - "Andreas", - "Florian", - "Olivier", - "Gerald", - "Dirk", - "Peter", - "Jochen", - "Frank Nikolaus", - "Ulrich", - "Grigoriy", - "Friedhelm", - "Frank", - "Steffen", - "Christian", - "Michael", - "Marie-Luise", - "Christian", - "Jörg", - "Udo", - "Jan", - "Karsten", - "Meike", - "Julian", - "Michael", - "Marcus", - "Markus", - "Andreas", - "Marcus", - "Jan", - "Tanja", - "Linda", - "Ansgar", - "Jörg", - "Christopher", - "Heidi", - "Horst", - "Peter", - "Marcel", - "Timo", - "Thomas", - "Tobias", - "Friedrich Maximilian Johannes", - "Oliver", - "Ole", - "Mischa", - "Andreas", - "Jochen", - "Bettina", - "Alejandro Gabriel", - "Geoffroy", - "Elk", - "Thomas Ludwig", - "Chien-Hua", - "René", - "Stefan Andreas", - "Andreas", - "Juan-Carlos", - "Niklas", - "Peter", - "Caitlin Rye", - "Walter James", - "Eugene Francis", - "Clinton Hawk", - "Kristin", - "Cengiz", - "Anna-Karina", - "Natalia", - "Karsten", - "Marc", - "Iris Gertrud", - "Roman David", - "Kai-Ulrich", - "Marco", - "Jens", - "Jan Ralf", - "Carola", - "Stephan", - "Julius", - "Steffen", - "Christopher", - "Martin", - "Bert", - "Felix", - "Franziska", - "Frederik", - "Bülent", - "Johann", - "Marion", - "Christoph", - "Max", - "Dominik", - "Josef", - "Axel", - "Nadine", - "Tobias", - "Elmar Detlef", - "Patrick Paul", - "Stephan", - "Matthias Alexander Ottmar", - "Roland", - "Andreas", - "Anita Carola", - "Reinhard", - "Daniel", - "Bodo", - "Manuela", - "Marc", - "Joachim", - "Oliver", - "Andreas", - "Mark-Roderich", - "Michael", - "Martin", - "Jörg", - "Reinhard", - "Lothar", - "Wolfgang", - "Wolfgang", - "Uwe", - "Ralf Tobias", - "Jochen", - "Marcus", - "Tobias", - "Uwe", - "Benedikt", - "David", - "Stephan", - "Andreas", - "Marlen", - "Michael", - "Isabella", - "Stefanie", - "Philipp", - "Simone", - "Marc", - "Franz Anaximandros -gen. Franzis-", - "Christian", - "Katharina", - "Susanne", - "Wolfgang", - "Ralph", - "Jörg", - "Volker", - "Dietmar", - "Herbert", - "Ralf", - "Dennis", - "Oliver", - "Volker", - "Jessica", - "Bernd", - "Dieter", - "Patrick", - "Katharina Maria", - "Holger", - "Roderich Günther", - "Theodor", - "Karsten", - "Ralf", - "Heinz", - "Jürgen", - "Lisa", - "Karl", - "Markus", - "Harald", - "Dorothea", - "Karl-August", - "Claudia", - "Sohaila Ilham", - "Marcus", - "Inga", - "Norbert", - "Norbert Martin", - "Christian", - "Elisabeth", - "Dorin Dietmar", - "Gido", - "Karl", - "Fabian", - "Yvonne Katrin", - "Aik", - "Bernhard", - "Sibylle", - "Rolf", - "Susanne", - "Jürgen", - "Hans-Peter", - "Hans-Jürgen", - "Bianca", - "Carsten", - "Joseph-Christopher", - "Hermann Josef", - "Stefan", - "Mark", - "Christoph", - "Karsten", - "Wolfgang", - "Karsten", - "Hanno", - "Frank", - "Jörg", - "Martin", - "Michael", - "Michael", - "Andreas", - "Raul", - "Ferdinand", - "Carsten", - "Martin", - "Thomas", - "Joachim", - "Thorsten", - "Klaus", - "Alexander", - "Matthias", - "Dietrich", - "Christine", - "Jens", - "Birte", - "Andreas", - "Jacques", - "Jörg", - "Guido", - "Frank", - "Markus", - "Thomas", - "Daniel", - "Uwe", - "Birte", - "Katrin", - "Carin", - "Andrea", - "Walter", - "Sucheta", - "Tobias", - "Thomas", - "Christine", - "Heiko", - "Lynette", - "Sophie", - "Torsten", - "James Kenneth", - "Markus", - "Victor", - "Carsten", - "Thomas", - "Dirk", - "Jens", - "Markus", - "Andreas", - "Nicole", - "Thomas", - "Reinhard", - "Ina", - "Carsten", - "Matthias", - "Stefan", - "John", - "Markus", - "Dominique", - "Andreas", - "Christoph", - "Michael", - "Henrik", - "Nies Erik", - "Roland", - "Wolfgang", - "Roland", - "Caroline", - "Johannes Friedrich", - "Lutz Philipp", - "Michael", - "Chris", - "Thomas", - "Petra", - "Jörg", - "Marcus", - "Bernd", - "Ralf", - "Kahraman", - "Frank", - "Marc-Norbert", - "Tim", - "Colin Rafael Douglas", - "Alain", - "Henri Steven Johannes", - "Tobias", - "Benjamin", - "Sven", - "Norman Ingo", - "Sebastian", - "Thomas", - "Maria Johanna Gerarda", - "Gabriele", - "Robert Ingo", - "Verena", - "Thomas", - "Svenja Vanessa", - "Axel", - "Marco Anton Maria", - "Ulrike", - "Trevor", - "Jonathan James", - "Dirk", - "Frank Jürgen MIchael", - "Dagmar", - "David Michael", - "Andreas Robert", - "Stefan", - "Kuan-Rong Michelle", - "Anastasios", - "David Alexander", - "Michael Björn", - "Jörg", - "Hans-Bert", - "Carina", - "Wolfgang", - "Tobias", - "Silke", - "Sven Alexander", - "Ronald", - "Katrin", - "Silke", - "Eva", - "Michael", - "Nihat", - "Christian", - "Bernd", - "Peter", - "Ralph", - "Michael", - "Sascha", - "Andreas", - "Erich", - "Matthias", - "Johann Friedrich Christoph", - "Sebastian", - "Niels Erik", - "Marlis", - "Peter", - "Sven Heye", - "Christof", - "Jörg", - "Peter", - "Alexander", - "Matthias", - "Antonius Reiner", - "Patrick", - "Cornelia", - "Irene", - "Maximilian", - "Eugen", - "Marcus Hans-Günter", - "Alexandra", - "Florian", - "Angelika", - "Sebastian", - "Rainer", - "Henrik", - "Konstantin", - "Sebastian", - "Rudolf", - "Florian", - "Gerald", - "Madeleine", - "Bo", - "Wolfgang", - "Jakob", - "Frank", - "Kathrin", - "Franciscus", - "Oliver", - "Björn", - "Hendrik", - "Michael Karl-Heinz Konrad", - "Bernd Michael", - "Daniel Michael Alfred", - "Markus", - "Florian", - "Simon Peter", - "Ulrich", - "Hans-Peter", - "Tobias", - "Harald", - "Andreas", - "Hans-Peter", - "Winfried", - "Kathrin Monika", - "Reinhold", - "Joachim", - "Christian", - "Torsten", - "Robert", - "Roland", - "Marcus", - "Jan-Torben", - "Alexander", - "Uwe", - "Uwe", - "Francis René", - "Robert James", - "Jeroen Martijn", - "Michael", - "Horst Jörg", - "Aafke", - "Katja Frauke", - "Daniel", - "Gerd", - "Ansgar", - "Andreas", - "Lisanne", - "Alamelu", - "Anina", - "Tino", - "Julia", - "Christoph", - "Ulrike", - "Inge", - "Carolin Andrea", - "Iren Ivonne", - "Daniel", - "Susanne Antonie", - "Melita", - "Susanne", - "Frank Eberhard", - "Tobias", - "Carolin", - "Klaus", - "Michael", - "August", - "Andreas", - "Georg", - "Dominik", - "Ryan", - "Kai", - "Muris", - "Ingolf", - "Christian", - "Bodo", - "Dominik", - "Gebhard Hermann", - "Sven", - "Gerald", - "Britta", - "Jochen", - "Anja", - "Rudolf", - "Maria Margarete", - "Christine", - "Maximilian", - "Youngjun", - "Bernd Alfons Herbert", - "Christian", - "André Matthias", - "Holk", - "Till Henning", - "Thomas", - "Siemen-Jannes", - "Hendrik", - "Florian", - "Henning", - "Andrea", - "Thomas Alexander", - "Thorben", - "Jordi", - "Arne-John", - "Burhan", - "Alexander Peter", - "Jan Hendrik", - "Antje", - "Ercan", - "Heinz Udo", - "Julian Felix", - "Hauke", - "Beate", - "Achim", - "Kurt", - "Andreas", - "Petra", - "Heike", - "Claudia", - "Rüdiger", - "Stefanie", - "Gilbert", - "Klaus", - "Sven Wilhelm", - "Maurice Wilhelmus Petrus Laurentius", - "Uwe", - "Heidi", - "Lisa", - "Peter", - "Bernd", - "Georg", - "Martina", - "Orlando Sébastien Paulin", - "Lorenzo", - "Felipe", - "Ricardo", - "Jennifer", - "Alf", - "Constanze", - "Thorben", - "Carsten", - "Manuela", - "Jörg", - "Gebhard", - "Regine Annette", - "Achim Bernd", - "Claus Christian", - "Gunter", - "Michael", - "Johannes", - "Julia", - "Isabella", - "Klaus", - "Dirk", - "Gabriel", - "Kristal", - "Ingo", - "Niels", - "Christian Thorsten", - "Frank", - "Sascha", - "Tobias", - "David", - "Florian", - "Volkhard", - "Fabian", - "Michael", - "Michael", - "Christian", - "Sandra", - "Tobias", - "Christian", - "Thomas", - "Thomas", - "Jonas", - "Thomas", - "Beate", - "Petrea", - "Max", - "Patrice", - "Kai Uwe", - "Heiko", - "Ralph", - "Erika Elisabeth", - "Michaela", - "Karl-Christian", - "Tobias", - "Henning", - "Andreas", - "Ingo", - "Jan", - "Dennis", - "Stefan", - "Harald", - "Matthias", - "Katelyn", - "Bastian", - "Joachim", - "Andreas", - "Matthias Florian", - "Orlando", - "Günther", - "Tino", - "Stephanie", - "José", - "Jörg", - "Guido", - "Sebastian", - "Bernd", - "Frank", - "Manfred Josef", - "Andreas", - "Jörg", - "Frank", - "David", - "Ulrich Matthäus", - "Holger Werner", - "Marina", - "Christoph", - "José", - "Andreas", - "Mayur", - "Singh", - "Simon", - "Ayhan", - "Peter-Ulrich", - "Stephan", - "Rose Lea", - "Sylvia", - "Anna", - "Melanie", - "Michael", - "Björn Frederik", - "Stephan", - "Ludwig", - "Hartmut", - "Marc", - "Jan-Christoph", - "Ralf", - "Bernhard", - "Heike", - "Jürgen Bernd", - "Martin", - "Jochen", - "Jürgen", - "Gesa", - "Marcus", - "Uwe", - "Andreas", - "Frank", - "Thomas", - "Yaris", - "Wolfram", - "Andreas", - "Stefan", - "Rene", - "Axel", - "Joachim", - "Marcus", - "Stefan", - "Thomas", - "Mirko", - "Matthias", - "Bernd", - "Hauke", - "Petra", - "Ulrich", - "Lutz", - "Peter", - "Claus", - "Christian", - "Jörg", - "Till", - "Patrick", - "Alexander", - "Andreas", - "Dennis", - "Sandra", - "Achim", - "Uwe", - "Valeria", - "Karin", - "John", - "Andreas", - "Stephan", - "Jan-Michael", - "Manuel", - "Florian", - "Andreas", - "Iris", - "Kerstin", - "Christian", - "Jörg", - "Florian", - "Jürgen", - "Joachim", - "Klaus", - "Lars", - "Sonja", - "Wolfgang", - "Uwe", - "Thomas", - "Harry", - "Thorsten", - "Karl Anton", - "Carsten", - "Michael", - "Miriam Valerie", - "Jochen", - "Jürgen", - "Franziska", - "Benjamin", - "Dennis", - "Johannes", - "Thomas", - "Dominik", - "Kai-Peter", - "Andre", - "Markus", - "Olaf", - "Mark", - "Winfried", - "Heinz", - "Kathrin", - "Klaus", - "Volker", - "Holger", - "Hueseyin", - "Stefan", - "Matthias", - "Nicolas Michael", - "Christian", - "Jeanine", - "Frank", - "Sandra", - "Andreas", - "Christian", - "Christian", - "Dominik", - "Michael", - "David Pieter-Jan", - "Joseph", - "Faraz", - "Sylvia", - "Frank", - "Anna", - "Stefanie", - "Christoph", - "Benjamin", - "Norbert", - "Leonid", - "Bernd", - "Steffan", - "Swen", - "Eduard", - "Sven", - "Stefan", - "Markus Claudius Victor", - "Corinna", - "Matthias", - "Pal", - "Kris David Gert", - "Eva-Maria", - "Annett", - "Katharina", - "Jessica", - "Uwe", - "Antje", - "Thomas", - "Barteld", - "David", - "Till", - "Frank", - "Thomas", - "Thomas", - "Guido", - "Bernd", - "Mazen Ephram", - "Jan", - "Hendrik", - "Thorsten", - "Peter", - "Niklas", - "Andreas-Werner", - "Jörg", - "Aleksandar", - "Adolf", - "Steffen", - "Oliver", - "Klaus", - "Matthias", - "Andreas", - "Helmut", - "Remco Pieter", - "Heike", - "Matthias", - "Christoph", - "Andreas", - "Dennis", - "Daniel", - "Katharina", - "Frank-Peter", - "Thomas", - "Uwe", - "Susanne", - "Iris", - "Christian", - "Tanja", - "Marcel", - "Knut", - "Elias", - "Christian", - "Mark", - "Astrid", - "Christian", - "Zuhal", - "Dietmar", - "Karsten", - "Timo", - "Tobias", - "Holger", - "Jutta", - "Melanie", - "Thomas", - "Mario", - "Patrick", - "Tobias", - "Verena", - "Lisa", - "Julia", - "Markus", - "Erik", - "Boris", - "Sebastian", - "Wolfram", - "Peter", - "Christian", - "Peter", - "Holger", - "Benedikt", - "Manfred", - "Christian", - "Volker", - "Jürgen", - "Malte", - "Jochen", - "Fahim", - "Kevin", - "Oliver", - "Björn", - "Sabine", - "Katrin", - "Ole Wassily", - "Renate Monika", - "Gero", - "Janina", - "Georg", - "Thomas", - "Sascha", - "Christof", - "Martin", - "Stefan", - "Werner", - "Torsten", - "Andreas", - "Dirk", - "Christian", - "Daniel", - "Birgit", - "Horst", - "Thomas", - "Stefan", - "Sebastian", - "Dominik", - "Mirco", - "Jürgen", - "Matthias", - "Wolfgang", - "Andreas", - "Michael", - "Omar", - "Thomas", - "Werner", - "Simon", - "Markus", - "Robert", - "Hendrik", - "Peter", - "Gunter", - "Thorsten", - "Beatrice", - "Norman-Moritz", - "Yannick Tim", - "Dittmar", - "Johannes", - "Götz", - "Martin", - "Gerd", - "Ante", - "Sven", - "Moritz", - "Frank", - "Michael", - "Mathias", - "André", - "Kirsty", - "Lothar", - "Peter", - "Ingo", - "Joachim", - "Frank", - "Thomas", - "Sebastian", - "Heiner", - "Bettina", - "Frank", - "Philipp", - "Meyer", - "Alexander", - "Lutz", - "Nicole", - "Steffen", - "Hans Tilmann", - "Tobias", - "Andy", - "Christopher", - "Mato", - "Walter", - "Ole", - "Felix", - "Efrem", - "Christian", - "Philipp", - "Sönke", - "Simon", - "Götz", - "Florian", - "Thorsten", - "Sandra", - "Dominik", - "Patric", - "Andreas", - "Dirk", - "Hans", - "Dirk", - "Thorsten", - "Ton", - "Jan-Willem", - "Manfred", - "Markus", - "Dieter", - "Angelika", - "Michael", - "Mathias", - "Arndt", - "Kristin", - "Anna", - "Ralph", - "Linda", - "Margarete", - "Stefan", - "Bettina", - "Malte", - "Christopher", - "Daniela", - "Ulrich", - "Guido", - "Anna", - "Philip", - "Andreas", - "Susanne Maria", - "Bettina", - "Andreas", - "Frank", - "Lars", - "Lutz", - "Karsten Peter", - "Christoph Josef", - "Rolf", - "Helene", - "Peter", - "Hennig", - "Daniel", - "Roland", - "Michael", - "Gitta", - "Frederik", - "Tobias", - "Jörg", - "Olaf", - "Manuel", - "Oliver", - "Horst", - "Christoph", - "Majida Nadyne", - "Kristin", - "Stefan", - "Jörg", - "Maik", - "Simon", - "Marco", - "Michael", - "Lisa", - "Prisca Olivia", - "Murat", - "Markus", - "Bastian", - "Rainer Fred", - "Katrin", - "Guido", - "Marie", - "Alexandra", - "Rainer", - "Fabian", - "Klaus", - "Julia Anne", - "Kathryn", - "Steven James", - "Christopher", - "Ferdinand", - "Ralf", - "Fabian", - "Wolfgang", - "Christoph", - "Carsten", - "Anselm", - "Hugh", - "Rainer", - "Heiko", - "Andrea", - "Rudolf", - "Marco", - "Edwin", - "Andreas", - "Martin", - "Roland", - "Jan", - "Michael", - "Karin", - "Frank", - "Stephan", - "Thomas", - "Anja", - "André", - "Joachim", - "Norman", - "Ute", - "Patricia", - "Jan", - "Dirk", - "Marcia", - "Benedikt Paul Wolfgang", - "Uwe", - "Dennis", - "Ilka", - "Robert", - "Florian", - "Thomas", - "Pierre", - "Bernd", - "Richard", - "Winfried", - "Hans", - "Michael", - "Heiko", - "Christian", - "Ole", - "Frank-Uwe", - "Oliver", - "Thomas", - "Niclas Florian", - "Udo", - "Jutta", - "Dr. Thomas", - "Niels", - "Sascha", - "Adam", - "Marion", - "Carola Maria", - "Christian", - "Oliver", - "Agapi", - "Christoph", - "Beate", - "Henning", - "Maik", - "Tim", - "Torsten", - "Andreas", - "Mario", - "Carsten", - "Thomas", - "Dirk", - "Jessica", - "Fadzlun", - "Mathias", - "Joseph George", - "Peter", - "Mario", - "Matthias", - "Steve", - "Rüdiger", - "Elio Massimo Antonello Maria", - "Jörg", - "Tatiana", - "Riccardo", - "Karsten", - "Yvonne", - "Corinna", - "Thomas Maximilian Walter", - "Martin", - "Patrick", - "Marco Daniel", - "Jens", - "Franz Anaximandros", - "René", - "Thomas", - "Achim", - "Patrick", - "Hans Gregor", - "Alexander", - "David", - "Steffen", - "Ulrich", - "Verena", - "Frank", - "Markus", - "Raphael", - "Jacqueline", - "Darko", - "Rainer", - "Manfred", - "Ronny", - "Jan", - "Lars", - "Oliver", - "Markus", - "Martin", - "Julio Javier", - "Sven", - "Chloé", - "Giuseppe", - "Herbert", - "Elias", - "Johannes", - "Florian", - "Milena", - "Matthias", - "Christian", - "Alexander", - "Detlef", - "Angelo", - "Klaus", - "Jonathan", - "Carolin", - "Matthias", - "Jana Daniela", - "Renate", - "Jean-Carl", - "Christine", - "Philipp", - "Torsten", - "Dirk", - "Martin", - "Thomas", - "Martin", - "Dietrich", - "Anne", - "Dirk-Eberhard", - "Gordon", - "Melanie", - "Kimberlee", - "Christoph", - "Thomas", - "Gerhard", - "Tim", - "Thomas", - "Oliver", - "John", - "Bernd", - "Tobias", - "Sebastian", - "Adam Robert", - "Monika", - "Oscar", - "Volker", - "Lillian", - "Ralph", - "Tanja", - "Remco", - "Pablo Ignacio", - "Yin", - "Nikola", - "Christian", - "Dietmar", - "Markus", - "Max Alexander", - "Udo", - "Martin", - "Dietmar", - "Ottmar", - "Andreas", - "Andreas", - "Martin", - "Tobias", - "Patrick", - "Ulrike", - "Joachim", - "Christian", - "Katharina", - "Marcus", - "Martin", - "Bruno", - "Klaus", - "Timo", - "Patrick", - "Alexander", - "Björn", - "Christian", - "Martin", - "Michael", - "Hirokai", - "Ralf", - "Irene", - "Zoran", - "Lars Niklas", - "Emmanuel Francois Jean-Claude Laurent", - "Hans-Dieter", - "Jürgen", - "Andreas", - "Carsten", - "Stephan", - "Axel", - "Jörg", - "Detlef", - "Remco Jan", - "Thomas", - "Claudia", - "Klaus Bernhard", - "Michael", - "Christina", - "Stefanie", - "Jörg", - "Ellen", - "Harry Walter", - "Jens", - "Kerstin", - "Karl-Hermann", - "Torsten", - "Heiko", - "Henrik", - "Jendrik", - "David", - "Jens", - "Jan", - "Frank", - "Lars", - "Alexander", - "Eva-Marie", - "Christian", - "Judith", - "Oliver", - "Claus Jürgen", - "Andreas", - "Johannes", - "Katja", - "Thomas Werner", - "Heike", - "Katrin", - "Jens", - "Katja", - "Konstantin Frederik", - "Sabine", - "Lars", - "Stefan", - "Roy", - "Stefanie", - "Nils", - "André", - "Manfred", - "Hubert Johann Wilhelm", - "Christian", - "Robert", - "Inga", - "Jürgen", - "Thomas", - "Stef", - "Matteo", - "Friederike Isabel", - "Petra", - "Martina", - "Karl-Ulrich", - "Stephan", - "Regina", - "Christof Markus", - "Stefan", - "Gert-Hartwig", - "Anton", - "Rainer", - "Reiner", - "Claus-Martin", - "Jürgen", - "Birgit", - "Peter Erik", - "Kay-Axel", - "Gero", - "Kai", - "Carola", - "Jens", - "Arnoldus", - "Holger Otto", - "Enno", - "Cay-Uwe", - "Richard", - "Karsten", - "Robert", - "Henrik", - "Ingo Erich", - "Bernd", - "Thomas", - "Caroline", - "Thomas", - "Jan Kristof", - "Andrea", - "Stefanie", - "Melanie", - "Thomas William", - "Daniela", - "Ann-Marie", - "Malcolm", - "Sebastian", - "Bernhard", - "Robert Frank", - "Michael Wolfgang", - "Andreas", - "Robert", - "Jian Hua (genannt Amily)", - "Michael", - "Tatjana", - "Tobias", - "Kristin", - "Martin", - "Mathias", - "Sylke", - "Aleksander", - "Stefan", - "Ralph", - "Joachim Fritz", - "Renate", - "Harald", - "Stephan", - "Claus Martin", - "Christian Carsten", - "Ronald", - "Ralph", - "Christian", - "Rico", - "Andreas", - "Christof Martin", - "Jürgen", - "Harald", - "Michael", - "Rainer", - "Holger", - "Michael", - "Martin", - "Fabian", - "Tilman", - "Thorsten", - "Daniel", - "Bernhard Ernst", - "Massimo", - "Stefan", - "Alexander", - "Volker", - "Cornelia", - "Felix", - "Sandra", - "Chen-Chien", - "Lin", - "Klaus", - "Maureen", - "Daniel", - "Thomas", - "Susanne", - "Beate", - "Natascha", - "Reinhard", - "Christof", - "Peter", - "Andreas", - "Dirk", - "Thomas", - "Klaus", - "Jorin", - "Bernd", - "Mark", - "Andreas", - "Reiner Hartmut", - "Wojtek", - "Stefan", - "Oliver", - "Oliver", - "Gunnar", - "Peter", - "Stephan", - "Jochen", - "Pascal", - "Markus", - "Jeanne Anja Danica", - "Thilo", - "Frank", - "Dorothee", - "Elisabeth", - "Alexandra", - "Christine", - "Christian", - "Victor", - "Adelheid", - "Johannes", - "Matthias", - "Philipp", - "Anncharlott", - "Jannis-Raffael", - "Johannes", - "Martin", - "Peter", - "Harald", - "Annette", - "Stefan", - "Alexander Emanuel", - "Margarete Rebecca Sophie", - "Christian", - "Jonathan", - "Barbara", - "Clemens", - "David", - "Wolfgang", - "Georg Julius", - "Jakob", - "Justus", - "Konrad Jesko Johannes", - "Sophie Berte", - "Teresa", - "Babor", - "Jan", - "Aline", - "Barbara", - "Siegfried", - "Christiane", - "Leonhard", - "Sabine", - "Anna Katharina", - "Manuel", - "Susanne", - "Renate", - "Johann Heinrich", - "Karoline", - "Katharina", - "Annegret", - "Caroline", - "Albrecht", - "Andrea", - "Katharína", - "Katja", - "Peter Emanuel", - "Tobias", - "Maximilian", - "Bettina", - "Heilwig", - "Jim Anton", - "Herta", - "Friedrich", - "Georg", - "Johann", - "Susanna", - "Justus", - "Sibylla", - "Barbara", - "Dorothea", - "Johanna", - "Franziska", - "Karl", - "Clemens", - "Cornelia", - "Elisabeth", - "Johannes", - "Markus", - "Nikolaus", - "Teresa", - "Cornelia", - "Daniel", - "Raphael", - "Simon", - "Tobias", - "Friederike", - "Marie-Louise", - "Dorothea", - "Paul-Gerhard", - "Christian", - "Ferdinand", - "Ricarda", - "Kristina", - "Theresa", - "Benedikt", - "Georg", - "Gustav", - "Isabel", - "Otto", - "Franziska Eva", - "Margarethe", - "Christiane", - "Christiane", - "Carl Christoph", - "Beate", - "Johannes", - "Laura", - "Raphael", - "Emanuel", - "Justus", - "Theresia", - "Michaela", - "Bonny", - "Lisa", - "Alexander", - "Karin", - "Klara", - "Franziska", - "Paul", - "Anna-Katharina", - "Maximiliane", - "Oskar", - "Livia", - "Carl-Vincent", - "Julius-Maria", - "Jon", - "Antonius", - "Constantin", - "Felicitas", - "Daniel", - "Maximilian", - "Sophia", - "Lisa", - "Thomas", - "Benedikt", - "Elisabeth", - "Elisabeth", - "Dorothea", - "Belén", - "Dabin Sebastian", - "Florian", - "Klara", - "John", - "Natalie", - "Jonathan", - "Charlie", - "Gregor", - "Niko", - "Christian", - "Kai", - "Marcus", - "Georg-Friedrich", - "Anna", - "Friederike", - "Helena", - "Petra", - "Stephanie", - "Ute", - "Eva", - "Elena", - "Matthias", - "Robert Charles", - "Jonja Leon Danh", - "Lilly Lou Shalinh Marie", - "Philipp", - "Karoline Dorothea", - "Marlene Elisabeth", - "Maximilian Luca", - "Elisabeth", - "Leoni", - "Philip Joachim", - "Caroline", - "Atisha Jonas", - "Karl-Konstantin", - "Jakob", - "Madita", - "Charlotte Wilhelmine", - "Johanna Mathilde", - "Amelie Paulina", - "Cosima", - "Octavia", - "Phyllida", - "Ludwig Flurin", - "Anna Rosina", - "Jonas", - "Jakob", - "David", - "Eleonore Marie Toscana", - "Emil Friedrich Achilles", - "Samuel", - "Joshua Tobias", - "Benjamin Daniel Thomas", - "Simon", - "Raphael", - "Seobin", - "Antonius", - "Peter", - "Johann Cornelius", - "Maxwell Oliver", - "Mathilde Sophie", - "Elliot Arthur", - "Sophia Helene", - "Aurelia", - "Gregor", - "Viola", - "Ruth", - "Olivia", - "Paul", - "Alma", - "Lorena", - "Peter", - "Helmut", - "Johannes", - "Frank", - "Sebastian", - "Roland", - "Dominic", - "Andreas", - "Jochen", - "Carsten Heinz Joachim", - "Moritz Edgar", - "Jochen", - "Claus", - "Hermann", - "Simon", - "Anke", - "Ralf", - "Martin Richard", - "Horst", - "Christian", - "Dirk", - "Alexander", - "Jürgen", - "Daniela", - "Jens", - "Eric", - "Johann", - "Johann Jakob", - "Wolfram", - "Michael", - "Bernhard", - "Stefan", - "Michael", - "Michael", - "Thomas", - "Manuel", - "Stefan", - "Celina", - "Dermot", - "Christian", - "Erik-Jan", - "Jürgen", - "Crispin", - "Stefanie Gertrud", - "Arie Johan", - "Sebastian Björn", - "Sukhjinder", - "Bernhard", - "Christian", - "Christian", - "Michael", - "Moritz", - "Thorsten Ernst", - "Daniel Andreas", - "Ulrich", - "Mark James Morgan", - "Stephan", - "Mario", - "Rainer", - "Christian", - "Franz", - "Horst", - "Thomas", - "John-Oliver", - "Carolin", - "Sabrina", - "Marko", - "Marc", - "Maximilian", - "Franziska", - "Bernd", - "Joachim", - "Martin", - "Jürgen", - "Christian", - "Guido", - "Jakob Bernd Hermann", - "Jürgen August", - "Steffen", - "Inga", - "Marcus", - "Eva Marion", - "Lutz", - "Jörn", - "Patrick", - "Steffen", - "Matthias", - "Thomas", - "Holger Otto", - "Stefanie", - "Thomas", - "Christian", - "Rolf", - "Jan", - "Claus Michael", - "Daniel", - "Benjamin", - "Wolfgang", - "Lars", - "Jürgen", - "Dirk", - "Dominic", - "Rebecca", - "Daniel", - "Michael", - "Jakob Johannes", - "Heiko", - "Stefan", - "Hans-Peter", - "Matthias", - "Axel", - "Christine", - "Florian", - "Karin", - "Norbert", - "Andreas", - "Sebastian", - "Matthias", - "Claus-Christian Richard Ernst", - "Veit", - "Stefan", - "Christoph", - "Peter", - "Holger", - "Stefan", - "René", - "Daniel", - "Marc", - "Markus", - "Marika", - "Stefan", - "Michael", - "Sebastian", - "Christopher", - "Mario", - "Gatse Gerrit", - "Tormod", - "Christian", - "Alexander", - "Jens", - "Christian", - "Verena", - "Dirk", - "Sönke", - "Stefan", - "Thorsten", - "Holger", - "Uwe", - "Raik", - "Jürgen", - "Markus", - "Harald", - "Martin", - "Georg Alexander Paul", - "Sergej", - "Andreas", - "Frank Peter", - "Roman", - "Hartwig Bernhard", - "Jörn", - "Nils", - "Gareth Elwyn", - "Stefan", - "Jörn", - "Anna Helene", - "Michaela", - "Jonas", - "Mathias", - "Nico", - "Alexandra", - "Christoph", - "Stephan", - "Lars", - "Oliver", - "Jörg Lothar", - "Reiner", - "Susanne", - "Daniel", - "Gordon Charles", - "Marco Alfred", - "Udo", - "Jan", - "Verena", - "Rolf", - "Torsten", - "Artur", - "Sarah", - "Martin", - "Michael", - "Volker", - "Rainer", - "Volker", - "Kai", - "Matthias", - "Adrienne Héon", - "Frank", - "Tristan", - "Thomas Klaus-Peter", - "Mirjam", - "Andrea", - "Frank", - "Ulrich", - "Wieland", - "Christoph", - "Klaus", - "Markus", - "Andreas", - "Joachim", - "Bettina", - "Thomas", - "Susanne", - "Filip", - "Lars", - "Elisabeth", - "Thomas", - "Sasa", - "Danilo", - "Bernhard", - "Thomas", - "Arndt", - "Jens Michael", - "Katharina", - "Benjamin", - "Wolfgang", - "Dorothee", - "Simone", - "Levke", - "Uwe", - "Matthias", - "Thomas Andreas", - "Colette", - "Georgios Nikolaos genannt Georg", - "Andreas", - "Claus", - "Lars", - "Volker", - "Simone", - "Manfred Volker", - "Heiko", - "Alexandra", - "Markus", - "Volker", - "Ulrike", - "Joachim", - "Michael", - "Marc", - "Christian Götz Andreas", - "Marcus Uwe", - "Andreas", - "Andre", - "Imko Harry", - "Timo Dieter", - "Marcel", - "Heidi", - "Roman", - "Marko", - "Alyna", - "Ralf", - "Ulrich", - "Iris", - "Rando", - "Burkhard", - "Alexandru", - "Malte", - "Matthias", - "Stefan", - "Stefan", - "Martin", - "Günter", - "Oskar", - "Oscar", - "Claus", - "Christoph", - "Volker", - "Thomas", - "Detlef Johannes", - "Stefan", - "Bernd", - "Jan", - "Margarethe", - "Alexander", - "Margarete", - "Georg", - "Konrad", - "Sophie", - "Katharina", - "Susanne", - "Theresa Maria Luise", - "Gustav", - "Atisha Jonas Fontanive", - "Cosima Elisabeth", - "Octavia Vivienne", - "Phyllida Adeline", - "Sophia", - "Gregor", - "Viola", - "Ruth", - "Olivia", - "Paul", - "Alma", - "Lorena", - "Peter", - "Martina", - "Tilman", - "Niklas", - "Daniel Gerhard", - "Hilke Karoline", - "Monika", - "Jost Friedrich Karl", - "Gabriël Johannes Maria Bernardus", - "Katharina", - "Frank", - "Andreas Stefan", - "Yvonne Konstanze", - "Stefan", - "Nadia", - "Marco", - "Sven", - "Anne", - "André Sebastian", - "Anna Barbara", - "Theresa", - "Kim", - "Cora Constanze", - "Susanne", - "Kristina Laura", - "Tobias", - "Jan", - "Thomas", - "Manfred", - "Markus", - "Rainer", - "Andreas", - "Jürgen", - "Christian", - "Matthias", - "Ludger", - "Christoph", - "Angela", - "Walter", - "Kersten", - "Cornelius", - "Thomas", - "Andreas", - "Jan Christoph", - "Stefan", - "Heiko", - "Bernhard", - "Michael", - "Arne", - "Oliver", - "Kerstin", - "Andreas", - "Arndt", - "Rainer", - "Ludger", - "Karsten", - "Randolf", - "Michael", - "Kai", - "Götz", - "Thomas", - "Bernhard", - "Bernd", - "Diana", - "Heike", - "Paula", - "Mario", - "Johannes", - "Frank", - "René", - "Jörg", - "Michael", - "Marco", - "Christian", - "Beate", - "Steffen", - "Gabriele", - "Christoph", - "Joachim", - "Lauren", - "Alexandra", - "Johann-Caspar", - "Emmanuel", - "Gerhard", - "Anne Carina", - "Frank", - "Christian", - "Gaetano", - "Yann", - "Svenja", - "Ralf", - "Jörg", - "Martin", - "Peter", - "Markus", - "Stefan Michael", - "Heidi", - "Harald", - "Christian", - "Steffen", - "Jens-Uwe", - "Andreas", - "Dirk", - "Andreas", - "Joachim", - "Axel", - "Inamarie", - "Susanne", - "Gerd", - "Holger", - "Ralph", - "Franz", - "Bernhard", - "Volker", - "Ingmar", - "Patrick", - "Max", - "Armin", - "Thomas", - "Dirk", - "Markus", - "Thomas", - "Doris", - "Matthias", - "Norbert", - "Bernd", - "Sanjeev", - "Michael", - "Robert", - "Roberto", - "Bernd", - "Thomas", - "Walter", - "Katrin", - "Christian", - "Dirk", - "Thomas", - "Olga", - "Udo", - "Dirk", - "Alexander", - "Hermann", - "Ute", - "Hans-Rolf", - "Ulrich", - "Elias", - "Stefan", - "Helena Song-Hi", - "Stefan", - "Claudine", - "Greta", - "Gerrit", - "Sabine", - "Manja Lisa", - "Simone", - "Peter", - "Frank", - "Friedrich Claas", - "Thomas Ludwig", - "Tim Christopher", - "Jens", - "Anja", - "Sebastian", - "Sascha", - "Kai", - "Edi", - "Norbert", - "Ludger", - "Anke", - "Claus", - "Rüdiger", - "Lars", - "Christian", - "Melanie", - "Peter", - "Tim", - "Thomas", - "Christine", - "Christian", - "Robert", - "Harald", - "Anke", - "Guido", - "Claudia", - "Holger", - "Henrik", - "Dirk", - "Viviane", - "Annette", - "Norbert", - "Matthias", - "Anne", - "Maike", - "Thomas", - "Justyna", - "Kenneth", - "Silvia Brigitte", - "Martin", - "Roberto", - "Georg Alexander", - "Sascha", - "Serkan", - "Werner", - "Steffen", - "Uwe", - "Carsten", - "Siegfried", - "Olaf", - "Christian Rudolf", - "Erik", - "Desislava", - "Nils", - "Martin", - "Sonja-Verena", - "Patrick", - "Frank", - "Thorsten", - "Diana", - "Steffen", - "Georg", - "Holger", - "Hannes", - "Marc", - "Michael", - "Andreas", - "Christoph", - "Oliver", - "Natascha", - "Henrik Jürgen Helge", - "Yves Gorat", - "Matthias", - "Thorsten", - "Dirk", - "Till", - "Lothar", - "Stefan", - "Marc David Günther", - "Jörg", - "Özlem", - "Markus", - "Lars", - "Nadine", - "Matthias", - "Herbert", - "Fabian", - "Jörg", - "Stefan", - "Roland", - "Susanne", - "Jörn", - "Andreas", - "Ingo", - "Antonius", - "Markus", - "Bernhard", - "Timo", - "Lutz", - "Florian", - "Bernhard Andreas", - "Martin", - "Stefan", - "Michael", - "Franziska", - "Stefanie", - "Jochen", - "Nicole", - "Christian", - "Hans-Joachim", - "Stefan", - "Dietmar", - "Johannes", - "Peter", - "Nadja", - "Mareike", - "Michael", - "Klaus", - "Rickmann", - "Simone", - "Dirk", - "Andreas", - "Torsten", - "Tammo", - "Felix", - "Benjamin", - "Oliver", - "Oliver", - "Thomas", - "Manuel", - "Diana", - "Melanie", - "Holger", - "Jürgen", - "Frank", - "Nick", - "Hendrik", - "Christian", - "Michael", - "Guido", - "Daniela", - "Jörg Nils", - "Sebastian", - "Annette", - "Markus", - "Matthias", - "Katja", - "Stefanie", - "Srinivas", - "Oliver", - "Christoph Georg", - "Malcolm David", - "Kristin", - "Jana", - "Steffen", - "Manuel", - "Jochen", - "Miguel", - "Arnd", - "Oliver", - "Jörg", - "Karl-Heinz", - "Michael", - "Matthias", - "Christoph", - "Jürgen", - "Ulrich", - "Harald", - "Anke", - "Martin", - "Dieter", - "Thorsten", - "Stephanie", - "Wolfgang", - "Pierre Dominique", - "Stefan", - "Markus", - "Monika", - "Alexander Sven", - "Denitza", - "Holger", - "Mathias", - "Ivonne-Kerstin", - "Stefan", - "Thomas", - "Julia", - "Daniel", - "Lutz", - "Beate", - "Bernd", - "Marco", - "Andreas", - "Tobias", - "Erkul", - "Michael", - "Christian", - "Oliver", - "Detmar", - "Matthias", - "Bastian", - "David", - "Ismail", - "Oliver", - "Hartmut Stefan", - "Stefan", - "Marcus André", - "Christian", - "Stephan", - "Alexander", - "Michael", - "Johannes", - "Ulrich", - "Daniela", - "Anne", - "Stephanie", - "Zsolt", - "Florian", - "Holger", - "Guntram", - "Rainer", - "Christof", - "Jill", - "Nadine", - "Oliver", - "Nikolaos", - "Jean-Victor", - "Jochen", - "Gerd Friedrich", - "Ralph", - "Angela", - "Moritz", - "Johannes", - "Wolfgang", - "Tonja", - "Jan", - "Matthias", - "Carsten", - "Smail", - "Miguel", - "Dieter", - "Jens", - "Andreas", - "Peter", - "Jarkko", - "Lars", - "Jennifer", - "Heinrich", - "Florian Raphael", - "Nicole", - "Tim Martinus Johannes", - "Stefan Wilfred", - "Stefan Walter", - "André", - "Zsolt", - "Peter", - "Horst Manfred", - "Stephan", - "Patrick", - "Andreas", - "Michael", - "David", - "Marcus", - "Torsten", - "Mario", - "Arnd", - "Bastian", - "Stephan", - "Martin", - "Linda", - "Reinhard", - "Georg", - "Jürgen", - "Andreas", - "Carsten", - "Olaf", - "Martin", - "Friedrich Ernst", - "Stephan Matthias", - "Moritz", - "Horst", - "Christopher", - "Felix", - "Werner", - "Olav", - "Rainer", - "Karina", - "Ingo", - "Sebastian-Jochen", - "Malte", - "Christian", - "Anne", - "Knut", - "Michael", - "Johanna", - "Stephan", - "Michael", - "Ingo Frederik", - "Nicole", - "Michaela", - "Anja Alexandra", - "Christian", - "Karyn", - "Lioudmila", - "Munib", - "Mark Oliver", - "David", - "Stefanie", - "Ulrich", - "Henryk", - "Christian", - "Andreas", - "Thomas", - "Bernhard", - "Guido", - "Ulf", - "Carolin", - "Pascal", - "Thomas", - "Felix", - "Nikolaus", - "Ralph Roland Richard", - "Silke", - "Wencke", - "Tobias", - "Isabelle", - "Tanja", - "Ulrich", - "Simone", - "Dirk", - "Anneka", - "Jan", - "Hubertus", - "Jan", - "Christoph", - "Nora", - "Marcus", - "Thomas", - "Annette", - "Isabelle", - "Jennifer", - "Moritz", - "Ronald Albert", - "Stefan", - "Daniel", - "Christoph", - "Hans-Joachim", - "Andreas", - "Frank", - "Martin", - "Stefan", - "Christoph", - "Berthold Johannes", - "Torsten", - "Xaver", - "Stephan", - "Dirk", - "Thorsten", - "Axel", - "Carsten", - "Jürgen", - "Ralf", - "Martin", - "Thomas", - "Florian", - "Hexin", - "Andreas", - "Peter", - "Stefan", - "Jörg", - "Kay Peter", - "Susanne", - "Lucas-Christopher", - "Stefan R.", - "Ralph", - "Timo", - "Carsten", - "Klaus", - "Axel", - "Karin", - "Christine", - "Holger", - "Matthias", - "Florian", - "Thomas", - "Bruno", - "Tim", - "Sebastian", - "Christian", - "Chistian", - "Jonny", - "Ralf", - "Thomas", - "Reinhard", - "Carsten", - "Andreas", - "Thomas", - "Thomas", - "Schrödel", - "Sabine", - "Steffen", - "Monika", - "Steffen Paul Georg", - "Monika Anna", - "Nicolas", - "Ulrich Helmut", - "Horst Ingo", - "Engin", - "Kristian", - "Daniel", - "Alexander", - "Stefan", - "Nils", - "Wolfgang", - "Marcel", - "Helmut", - "Marco", - "Bernd", - "Claus", - "Markus", - "Michel", - "Sirous", - "Thorsten", - "Alexander Harry", - "Ruth", - "Michael", - "Wolfgang", - "Alfred", - "Leonie", - "Siegrid", - "Tobias", - "Sergej", - "Nehir", - "Oliver", - "Rainer", - "Jürgen Wilhelm", - "Wolfgang", - "Stephan", - "Matthias", - "Christian", - "Thomas Wilhelm", - "Marc", - "Alan", - "Thomas", - "Thomas", - "Marc Christian", - "Bernd", - "Victoria", - "Leonhard", - "Lisbeth", - "Christoph", - "Patrick", - "Harald Wolfgang Heinrich", - "Berthold", - "Axel", - "Claudia Maria", - "Bernd", - "Dirk", - "Dennis", - "Axel", - "Jürgen", - "Rüdiger", - "Bastian", - "Marc", - "Katja", - "Beate", - "Dieter", - "Fabian", - "Reinhard", - "Markus", - "Kai", - "Thomas", - "Peter", - "Katja", - "Henrik", - "Ulrich", - "Andreas", - "Mark", - "Ralf", - "Holger", - "Oliver", - "Liang", - "Astrid", - "Jon", - "Matthias", - "Ralf", - "Sven", - "Jona Sebastian", - "Alexandru", - "Philipp", - "Alexander", - "Rainer", - "Urs", - "Michael", - "Gabriela", - "Dominik", - "Dirk", - "Piotr", - "Christoph", - "Oliver", - "Stefan", - "Michael", - "Kai", - "Hella", - "Lennard", - "Oliver Matthias", - "Stephan", - "Christiane", - "Michael", - "Yves", - "Stephanie", - "Karl Michael Moritz", - "Volker Andreas", - "Arnd", - "Heinz-Otto", - "Stefan", - "Martin", - "Katja", - "Johannes", - "Julian", - "Stephan Franz Josef", - "Christoph Alexander", - "Dirk", - "Mira", - "Carsten Karl-Heinz", - "Nicole", - "Christian", - "Thomas", - "Martin", - "Mathias", - "Claudia", - "Brigitte", - "Christoph", - "Ludger", - "Christoph-Sweder", - "Sven", - "Sönke", - "Ulrich", - "Oliver", - "Michael", - "Klaus", - "Michael", - "Martin", - "Martin", - "Thomas", - "Maria", - "Bernhard", - "Leszek", - "Dennis Philipp", - "Anja", - "Andreas Jürgen", - "Ingo", - "Jörg", - "Klaus", - "Juliane", - "Georg", - "Holger", - "Klaus", - "Lydia", - "Niels", - "Michael Xavier", - "Bernhard", - "Armin", - "Gerd", - "Lars", - "Kathrin", - "Dirk Volker", - "Nils Ulrich", - "Johannes Antonius Maria", - "Kay", - "Hella Karin", - "Jürgen", - "Edgar", - "Christof", - "Heiko", - "Matthias", - "Christoph", - "Frank", - "Gerold", - "Detlev", - "Anke", - "Jens", - "Joachim", - "Daniel", - "Dirk-Alexander", - "Frank", - "Andreas", - "Sascha", - "Ingo", - "Peter", - "Bernard", - "Stefan", - "Martin", - "Michael", - "Jörg", - "Marcel", - "Barnabas", - "Felix", - "Michael", - "Heiko", - "Heiko", - "Ludger", - "Tobias", - "Guido", - "Nicole", - "Lennart", - "Jens", - "Christoph", - "Frank", - "Sebastian", - "Arnd", - "Saskia", - "Carlos", - "Felix", - "Michel", - "David", - "Silke", - "Svenja", - "Jörg", - "Torsten", - "Karsten", - "Christian", - "Clèment-Minoru", - "Ralf", - "Mary-Anne", - "Thomas", - "Ondrej", - "Ulf", - "Jörg", - "Rolf", - "Stephan", - "Benedikt", - "Andreas", - "Ansgar", - "Christoph", - "Hella Elke", - "Reinhard", - "Anja", - "Sandro", - "Heinz", - "Michael Jürgen", - "Marc", - "Martin", - "Christian", - "Bernhard", - "Rainer", - "Simon", - "Stefan", - "Markus", - "Jürgen", - "Heinrich", - "Tobias", - "Nick", - "Wolf-Dietrich", - "Erich", - "Markus", - "Andreas", - "Alexander", - "Ulrich", - "Markus", - "Sarah", - "Malte", - "Almut", - "Oliver", - "Birger", - "Martin", - "Uwe", - "Thomas", - "Julian", - "Dieter", - "Oliver", - "Andreas", - "Krunoslav", - "Tom", - "Daniel Gerhard", - "Willi", - "Robertus Petrus Maria", - "Timo", - "Ludger", - "Peter", - "Guido", - "Wolfgang", - "Heinz-Jürgen", - "Lasse", - "Sascha", - "Steffen", - "Jürgen", - "Gunda", - "Jörg-Christian", - "Hayriye", - "Armin", - "Lars", - "André", - "Thomas", - "Ralf", - "Martin", - "Bernward", - "Raffaele", - "Anja", - "Peter", - "Jürgen", - "Roland", - "Kathrin", - "Ulrike", - "Alexander", - "Karan", - "Sonja", - "Mark Fabian", - "Roland", - "Recep Erkan", - "Iris", - "Ralf", - "Matthias", - "Dorothea", - "Dieter", - "Timm", - "Olaf", - "Karl", - "Barbara", - "Andreas", - "Rainer", - "Markus", - "Alexander Jürgen", - "Cordula", - "Matthias", - "Juliane", - "Gerhard", - "Peter", - "Ingo", - "Thomas", - "Daniel", - "Michael", - "Björn", - "Markus", - "Yves", - "Stefan", - "Benedikt Sebastian", - "Barbara", - "Hendrick Sebastian Thomas", - "Elmar", - "Gerd", - "Rüdiger", - "Bettina", - "Anita", - "Nora", - "Manuel Enzo Michael", - "Tino", - "Matthias", - "Anika", - "Frank Oliver", - "Andreas", - "Mirko", - "Bastian", - "Fritz Toni", - "Michael Günther", - "Wolfgang", - "Thomas Gerd", - "Claus-Torsten", - "Frank", - "Paul", - "Maren Kristina", - "Sandra", - "Brett Jacob", - "Jurate", - "Holger", - "Eva", - "Georg", - "Jens", - "Andreas", - "Jürgen-Clemens", - "Peter-Thomas", - "Uwe Udo", - "Niels", - "Uwe", - "Steffen", - "Kay", - "Andreas", - "Michael Karsten", - "Nadia", - "Michael", - "Rolf Eric", - "Andres", - "Uwe", - "Dheeraj", - "Juan Pablo", - "Mark", - "Maximilian", - "Danny Joanna F.", - "Hans", - "Ulf", - "Anders Sveel", - "Donya-Florence", - "Martin", - "Stuart", - "Oliver Carsten", - "Laura", - "Hella-Sophia", - "Tom", - "Daniela", - "Ralph Thomas", - "Reinhard Werner", - "Alberta", - "Michael J.", - "Birgit", - "Stefan Gerhard", - "Markus Lothar Heinrich", - "Joachim", - "Harald", - "Regina", - "Uwe", - "Katrin", - "Carsten", - "Frank", - "Marie-Laure", - "Klaus", - "Thomas", - "Friederike", - "Dirk", - "Oliver", - "Ann-Kristin", - "Stefanie", - "Nicolas", - "Sylvie", - "Marco", - "Ulrich", - "Lars", - "Matthias", - "Wolfgang", - "Mark Oliver", - "Dmitrij", - "Thomas", - "Tom", - "Martin", - "Thomas", - "Oliver", - "Henirk", - "Ivica", - "Nikolai Florian Clifford", - "Matthias", - "Thomas", - "Harald", - "Milan", - "Peter-Thomas", - "Daniel", - "Bianca", - "Karin Maria", - "Johannes", - "Anna-Lena", - "Til", - "Patrick", - "Gabriele", - "Andre", - "Ralf", - "Markus", - "Harmut", - "Eva", - "Anna", - "Thomas", - "Elisa", - "Niklas", - "Marcus", - "Ekkehard", - "Philippe", - "Winfried-Franz", - "Ute", - "Daniel", - "Manfred", - "Benjamin", - "Rudolf", - "Marc", - "Sebastian", - "Maximilian", - "Stefan", - "Hans Georg", - "Sabine", - "Jan-Henrik", - "Claudia", - "Johannes Falk Hagen", - "Dieter", - "Thomas", - "Thomas", - "Marlies", - "Peter", - "Gerd", - "Marcus", - "Martin", - "Gabriele", - "Dennis", - "Hartmut", - "Heinz-Peter", - "Frank", - "Jörg", - "Gönna", - "Thomas", - "Andrea", - "Monika", - "Susanne", - "Denise", - "Tanja", - "Turan", - "Klaus Helmut", - "Andreas", - "Boris", - "Jochen", - "Andreas", - "Janine", - "André", - "Aleksandra", - "Achim", - "Christof", - "Florian", - "Sven", - "Reminta", - "Stephan", - "Thomas", - "Christian", - "Patrick", - "Christian", - "Götz", - "Jörg", - "Tino", - "Herbert", - "Sandra", - "Daniel", - "Andreas", - "Henry", - "Matthias", - "Carmen", - "Susan", - "Kai", - "Vesna", - "Katharina Maria", - "Udo", - "Roman", - "Alexander", - "Michael", - "Dominik", - "Siegfried", - "Rolf", - "Corinna", - "Gerhard", - "Marc", - "Christian", - "Peter", - "Dierk Oliver", - "Marius", - "Albert", - "Adrian", - "Thomas-Gerd", - "Ulrich", - "Michael Günter Wilhelm", - "Fabian", - "Herbert", - "Harald Heinrich", - "Frank", - "Edgar", - "Sarah", - "Michael", - "Ulrich Wilhelm", - "Frank", - "Thilo", - "Manfred", - "Christian", - "Ralph", - "Sven", - "Volker", - "Andreas", - "Andreas", - "Timo", - "Franziska", - "Jenny", - "Hanns-Peter", - "Christian Stefan", - "Kai", - "Stefan", - "Jan", - "Sebastian", - "Andreas", - "Thorsten", - "Henrik", - "David Ben", - "Marcus", - "Sascha André", - "Wolfgang", - "Anna-Maria", - "Grit", - "Jutta", - "Thomas", - "Simone", - "Ronny", - "Volker", - "Gregor", - "Stefan", - "Georg", - "Ivan", - "Franz-Josef", - "Karsten", - "Tatjana", - "Falk", - "Bastian", - "Guido", - "Abhishek", - "Christina", - "Fernando Miguel", - "Annika", - "Steffen", - "Michael", - "Bärbel", - "Judith", - "Helge", - "Rik Wivina Anna Adelson", - "Frank-Detlef", - "Mark", - "Inken", - "Jürgen", - "Fabian", - "Peter", - "Philipp", - "Jörg", - "Lars", - "Knut", - "Jörg", - "Christian", - "Ingo", - "Sebastian", - "Marion", - "Benedikt", - "Sven", - "Horst", - "Uwe", - "Friederike Elisabeth", - "Frank", - "Ute", - "Martin", - "Sandra Ingrid", - "Günter", - "Andreas", - "Giorgio", - "Dieter", - "Klaus", - "Hella", - "Walter", - "Regina", - "Norbert", - "Robin", - "Markus", - "Ricardo", - "Frithjof", - "Gunda", - "Henning", - "Dirk", - "Eva Lucia", - "Friedrich", - "Joachim", - "Joachim", - "Wolfgang", - "Miriam Henriette", - "Agnes Emilie", - "Bernhard", - "André", - "Almut", - "Robert", - "Tobias", - "Michaela", - "Uwe", - "Reiner", - "Uwe", - "Jürgen", - "Gabriele", - "Jochen", - "Gisela", - "Christoph", - "Eduard", - "David", - "Philip", - "Mirco", - "Jan Paul", - "Hubert", - "Ewa", - "Thomas", - "Sebastian", - "Thomas", - "Klaus", - "Hella", - "Marco", - "Dirk", - "Jens", - "Gerhard", - "Marcus Matthias", - "Andreas", - "Bernd Georg", - "Stefanie", - "Michael", - "Adolf", - "Marco", - "Matthias", - "Fritz", - "Gerda", - "Philippe", - "Michael", - "Devrim", - "Kai", - "Oliver", - "Sarah", - "Oliver", - "Stefan", - "Ina", - "Eva Susanne", - "Michael", - "Ralf", - "Karin", - "Mirko", - "Walter", - "Karl-Dieter", - "Andreas", - "Hans-Henning", - "Raik", - "Dominik", - "Thomas", - "Andreas", - "Thomas", - "Reiner", - "Stefan", - "Elke", - "Ejup", - "Morris", - "Michael", - "Volker", - "Grit", - "Matthias", - "Ralf", - "Thomas", - "Karl-Heinz", - "Valentin R.", - "Michael", - "Christian", - "Thomas", - "Jan-W.", - "Sascha", - "Til", - "Marc", - "Nicolas", - "Stephan", - "Ralf", - "Miriam", - "Philipp", - "Friedrich", - "Björn", - "Mathias", - "Tobias", - "Mansour", - "Fatemeh Baradaran", - "Olga", - "Thomas", - "Gesine Tanja", - "Carsten", - "Richard Lourens", - "Matthias", - "Sven", - "Simon", - "Peter", - "Marcus", - "Peter", - "Frank", - "Wilfried", - "Antje", - "Peter Georg", - "Bastian", - "Florian", - "Christine", - "Dirk", - "Quirin", - "Robert", - "Simon", - "Alexander", - "Marianne", - "Zvetomir", - "Andreas", - "Sabrina", - "Alexander", - "Markus", - "Michael", - "Thomas", - "Torben Christian", - "Martin", - "Marcus", - "Wolfgang", - "Thomas", - "Matthias", - "Ralf", - "Wiebke", - "Lukas", - "Erol", - "Julian", - "Jochen", - "Detlef", - "Boje", - "Michael", - "Joachim", - "Dirk", - "Jürgen", - "Volker", - "Manfred", - "Stefan", - "Beatrice", - "Bernd", - "Jirko", - "Björn", - "Thomas", - "Torsten", - "Hüseyin", - "Achim", - "Martin", - "Arthur", - "Anne Claudia", - "Britta", - "Markus Leander", - "Manfred", - "Martin", - "Florian", - "Achim", - "Anja", - "Marcus", - "Gerd", - "Dagmar", - "Patricia", - "Christoph", - "Frank", - "Robert", - "Norbert", - "Alessandra", - "Hartmut", - "Axel", - "Josef", - "Martin", - "Carola", - "Tino", - "Peter", - "Martin", - "Wolfgang", - "Katharina", - "Tilman", - "Octavio", - "Uwe", - "Mandy", - "Andreas", - "Jörg", - "Thomas", - "Birgit", - "Rainer", - "Fatos", - "Visar", - "Leonhard", - "Abdullah", - "Edmund", - "Gerhard", - "Kristina", - "Peter", - "Erich", - "Sabine", - "Tobias", - "Kai", - "Hui", - "Fabian", - "Christan", - "Maike", - "Judith", - "Birgid", - "Markus", - "Stephan", - "Jürgen", - "Matthias", - "Bertram", - "Matthias", - "Markus", - "Marco", - "Nathalie", - "Irmgard", - "Jörg", - "Frank", - "Volker", - "Michael", - "Esther", - "Henning", - "Alexander", - "Urs", - "Stefan", - "Markus", - "Christoph Alexander", - "Michael", - "James", - "Rebecca", - "Christoph", - "Eva", - "Pascal", - "Georg", - "Dirk", - "Melanie", - "Stefanie", - "Michael", - "Franciscus", - "Marcel", - "Ulrich", - "Carmen", - "Michaela", - "Anastasia", - "Michael", - "Carsten", - "Christoph", - "Jan-Per", - "Stefan", - "Carsten", - "Peter", - "Harald", - "Kai", - "Thomas", - "Christian Charles", - "Martin", - "Ghenadie", - "Karl", - "Stephan", - "Ewald", - "Kurt", - "Arash", - "Siamak", - "Pirooz", - "Saman", - "Homeira", - "Aristea", - "Bouke Christiaan", - "Sascha", - "Doris", - "Christophe", - "Monika", - "Jörg", - "Dirk", - "Andrea", - "Raik", - "Matthias", - "Miroslaw", - "Ralf", - "Georg F. W.", - "Harald", - "Maria-Elisabeth", - "Wolfgang", - "Matthias", - "Torsten", - "Ulrich", - "Reinhold Frank", - "Jian", - "Harald", - "Eva-Maria", - "Max", - "Andreas", - "Jürgen", - "Andreas", - "Christian", - "Klaus", - "Rasso Helmut", - "Moritz", - "Frank Markus", - "Ilona", - "Claudia", - "Bernd", - "Claudia", - "Ludwig", - "Marc", - "Oliver Patrick", - "Burkhard", - "Dirk", - "Michael", - "Jens Christian", - "Andrea", - "Stephan", - "Barbora", - "Christian H.", - "Carin-Martina", - "Gerhard", - "Matthias", - "Hans Jörg", - "Wolfgang", - "Kadir Serdar", - "Vadim", - "Evgeny", - "Julia", - "Stefan", - "Knut", - "Kai", - "Holger", - "Ralf", - "Dmitri", - "Rudolf", - "Annette", - "Fabian", - "Richard", - "Darina", - "Peter Hanjo", - "Thomas", - "Thorsten", - "Dirk", - "Michael", - "Axel", - "Christina", - "Stephen", - "Peter", - "Anneleen", - "Andrea", - "Andrea", - "Franz-Josef", - "Markus", - "Andreas", - "Alexander", - "Kerstin", - "Anne-Marie", - "Axel", - "Leoni June", - "Jan-Peter", - "Tobias", - "Jörg", - "Andreas", - "Marco", - "Christian", - "Robert", - "Alexander", - "Stefanie", - "Horst", - "Susanne", - "Michaela", - "Daniel", - "Thorsten", - "Martina", - "Hans-Otto", - "Sabine", - "Ulrich", - "Wolfgang Hans", - "Heinz Willi", - "Paul", - "Christian", - "Knut", - "Barbara", - "Bruno", - "Marcus", - "Oliver", - "Josef", - "Marcus", - "Christian", - "Thomas Roland", - "Oliver", - "Ulrich", - "Thomas", - "Alexander", - "Velimir", - "Andreas", - "Frank Mark", - "Alexander", - "Isabelle", - "Jan", - "Florian", - "Thomas", - "Tim", - "Holger", - "Guido", - "Bernd", - "Stephan", - "Albin", - "Oliver", - "Sinah", - "Andreas", - "Irina", - "Hans-Joachim", - "Leonie", - "Philipp", - "Hans-Georg", - "Christoph", - "Viktoria", - "Veronika", - "Frank", - "Axel", - "Klaus", - "Jacques", - "Konrad", - "Florian", - "Reinhard", - "Thomas", - "Torsten", - "Andreas", - "Volker", - "Christian", - "Elena", - "Stephan", - "Ching Pong", - "Joachim", - "Thomas", - "Michael", - "Monika Stefanie", - "Ruth", - "Bernhard", - "Harald", - "Patrick", - "Kerstin Brigitte", - "Dirk", - "Karoline", - "Lars", - "Carsten", - "Massimiliano", - "Hasan", - "Henry", - "Richard Robinson (genannt Rob)", - "Marcus Antonius", - "Valeria Jimena", - "Mark", - "Rainer Konrad", - "Nico", - "Markus", - "Joska", - "Oleg", - "Martin", - "Barbara", - "Siegfried Johannes", - "Manuela", - "Hans-Martin", - "Heiko", - "Simon", - "Matthias", - "Claus", - "Tim", - "Michael", - "Hubert", - "Carina", - "Jens-Christian", - "Ulrike", - "Simon", - "Thomas", - "Anno", - "Marcel", - "Katja", - "Hermann", - "Rolf", - "Martin", - "Frederique", - "Angela", - "Leonie Isabel", - "Leonie", - "Ingo", - "Thomas", - "Philip", - "Elmar", - "Claudia", - "Peter", - "Jochen", - "Nikolaus", - "José Ignacio", - "Peter", - "Wolfgang", - "Andrea", - "Dirk", - "Hinrich", - "Martina", - "Adrienne", - "Javier", - "Markus", - "Peter Renè", - "Marco", - "Daniel", - "Eva", - "Andreas", - "Pascal", - "Jessica", - "Nadja", - "Thomas", - "Patrick", - "Holger", - "York Silvan", - "Alexander", - "Sebastian", - "Helmut", - "Holger", - "Hansjörg", - "Rolf", - "Jochen", - "Andrea", - "H. Stefan", - "Matthias", - "Aldrit", - "Kai-Andre", - "Kay Uwe", - "Kirsten", - "Nikolai", - "Stefan", - "Bernd", - "Soenke", - "Hans Stefan", - "Michael", - "Peter", - "Jens", - "Christian", - "Christian", - "Jens", - "Thomas", - "Helmut", - "Harald", - "Marco", - "Dieter", - "Martina", - "Bernd", - "Andreas", - "Michael", - "Michael", - "Frank", - "Raoul", - "Christopher", - "Norbert", - "Ralf", - "Josef", - "Ulrich Stefan", - "Ralf Andreas", - "Aljona", - "Peter", - "Jürgen", - "Stefan", - "Wilfried", - "Berthold", - "Markus", - "Matthias", - "Holger", - "Michael", - "Urs", - "Markus", - "Torsten", - "Gerald", - "Michael", - "Manfred Adolf", - "Holger", - "Oliver", - "Ansgar", - "Andreas", - "Bettina", - "Wolfgang", - "Wolfgang", - "Joachim", - "Karsten", - "Ralf", - "Andreas", - "Mario", - "Michael", - "Joachim", - "Michael", - "Thomas", - "Jens-Hendrik", - "Dirk Arthur Margriet", - "Thomas Magnus", - "Dominik", - "Stefan", - "Ralf", - "Matthias", - "Stefan", - "Thomas", - "Frank", - "Janmarc", - "Bernd", - "Rolf", - "Sergio", - "David", - "Amalia", - "Gabriele", - "Ulrich", - "Daniela", - "Edison", - "Falko", - "Andreas", - "Paris", - "Gabriele", - "Karin", - "Alexander", - "Ulrich Rembert", - "Matthias Franz", - "Hartwig", - "Martin", - "Anselm", - "Markus", - "Bertram", - "Kai", - "Felix", - "Markus", - "Margarethe", - "Hilke Maria", - "Rudolf", - "Bernd", - "Lars", - "Mischa", - "Javier", - "Jörg", - "Ángel Manuel", - "Juan", - "Christian", - "Ulrich", - "David Alonso", - "Thomas", - "Dominik", - "René", - "Michael", - "Denis", - "Klaus", - "Bernd", - "Jil-Mercedes", - "Rudolf", - "Vera", - "Christian", - "Frank", - "Stefan", - "Dana", - "Simon", - "Erich", - "Jürgen", - "Tobias", - "Jens", - "Sven", - "Stefan Jean", - "Matthias", - "Knut", - "Michael", - "Ralf", - "Niklas", - "Lothar", - "Martin", - "Alexander", - "Carsten", - "Maren Sofie", - "Léonie", - "Richard", - "Markus", - "Rainer", - "Björn", - "Stefan", - "Hubert", - "Thomas", - "Achim", - "Janna", - "Björn Christian", - "Ramona Friederike", - "Kristina", - "Christian", - "Dagna", - "Wolfgang", - "Christian", - "Jürgen", - "Birgit", - "Andreas", - "Sven-Olaf", - "Florian", - "Tobias", - "Florian", - "Michael", - "Marc", - "Ralf", - "Tord", - "Frank", - "Monika", - "Lisa", - "Michael", - "Andrea", - "Michael", - "Timo", - "Melanie", - "Jan-Christoph", - "Tammo", - "Jörn", - "Norbert", - "Robert", - "Thomas", - "Knuth", - "Mirjam", - "Johannes", - "Uwe", - "Wolfgang", - "Patrick", - "Mario Christian", - "Jerry", - "Hiroyuki", - "Yunus", - "Heribert", - "Frank", - "André", - "Stephan", - "Gunter", - "Ingo", - "Klaus", - "Ansgar", - "David Jerome", - "Daniel Heinrich", - "Yves Marc", - "Dorothee", - "Regina", - "Benjamin", - "Sven", - "Robert", - "Marcus", - "Herbert", - "Bernd", - "Frank", - "Steffen", - "Peter", - "Günter", - "Gesa", - "Roy", - "Philipp", - "Björn", - "Kivilaht", - "Stefan", - "Anja", - "Stefan Andreas", - "Mario", - "Harald", - "Johann", - "Grzegorz", - "Veronika", - "Gary", - "Heiko", - "Gregor", - "Joachim", - "Matthias", - "Urs Christoph", - "Klaus Rudolf", - "Christian", - "Peter René", - "Marc", - "Bernd Adolf", - "Uwe", - "Michael", - "Ralf Martin", - "Jörg Gerhard", - "Katharina", - "Jochen", - "Oliver Reinhard", - "Rainer", - "Luis Gonzaga", - "John, George", - "Donald John", - "Elke Johanna Petronella", - "Bradford Dean", - "Brigitte", - "Marcel", - "Peter", - "Karl", - "Volker", - "Terry", - "Karen", - "Silke", - "Frank", - "Hartmut", - "Bernhard", - "Peter Hugo Ludwig", - "André", - "André", - "Torsten", - "Nicolas", - "Frank", - "Matthäus", - "Helge", - "Martin", - "Maximilian", - "Thomas", - "Mario Bernd", - "Holger", - "Marco", - "Hans-Peter", - "Barbara", - "Thomas", - "Michael", - "Valentin", - "Frank", - "Maren", - "Sabine", - "Monika", - "Bianca", - "Isabelle", - "Michael", - "Ralf", - "Ralf", - "Fred", - "Christian", - "Torsten", - "Oliver", - "Claus", - "Jörg", - "Michael", - "Christian", - "Sabine", - "Nils Ingo", - "Diana", - "Oliver", - "Anika", - "Nuray", - "Sebastian", - "Eduard", - "Jan", - "Peter", - "Frank", - "Alexander", - "Petra", - "Thomas", - "Lena", - "Björn Pascal", - "Dominik", - "Christian", - "Stefanie", - "Jürgen", - "Christian", - "Christoph", - "Gerd", - "Ingo", - "Ursula", - "Harald", - "Hans-Joachim", - "Raffael", - "Kathrin", - "Michael", - "Sebastian", - "Andreas", - "Oliver", - "Stefan", - "Helena Marthe", - "Carmen Ursula", - "Christoph Klaus", - "Erik", - "Kexiao", - "Thomas", - "Andreas", - "Rasim", - "Manfred", - "Mirko", - "Hubertus", - "Ingolf", - "Béatrice", - "Jan Patrick", - "Thomas", - "Jens Fritz", - "Daniel", - "Christoph", - "Stefan", - "Bernd", - "Jens", - "Olaf", - "Christoph", - "Valentina", - "Maximilian", - "Klaus Hans Richard", - "Frank", - "Joachim", - "Tim", - "Imren Yasar", - "Thomas", - "Marcel", - "Norman", - "Omid", - "Mustafa Sohail", - "Klaus", - "Jochen", - "Joachim", - "Gerald", - "Hans-Peter", - "Thomas", - "Alexander", - "Özhan", - "Angelika", - "Maximilian", - "Ulf", - "Constantin", - "Leoni", - "Christian", - "Fritz", - "Christoph", - "Klaus Markus", - "Jörg", - "Katja", - "Arne", - "Nils", - "Jana", - "Paul Anthony", - "Sabine", - "Thomas", - "Jörg", - "Stefan", - "Martina", - "Mike", - "Johannes", - "Rudolf", - "Ulrich", - "Peter", - "Axel", - "Jörn", - "Armin", - "Anne", - "Alexander", - "Andreas", - "Ingeborg", - "Thomas", - "Elisabeth", - "Johannes", - "Heidelinde", - "Klaus Martin", - "Christian", - "Marwin", - "Jens", - "Markus", - "Saban", - "Kemal", - "Andrea", - "Birgit", - "Isabella", - "Manuela", - "Stephanie", - "Thomas", - "Claudia", - "Julia Susanne", - "Martin Ulrich", - "Jürgen", - "Christoph Peter", - "Andreas", - "Andreas Werner", - "Krzysztof", - "Gunter", - "Michael", - "Ralf Ernst", - "Wilhelm", - "Patrizia", - "Christian", - "Markus", - "Georg", - "Christina", - "Leonie Ferike", - "Thomas Robert", - "Antje", - "Sankar", - "Richard", - "Mike", - "Alf", - "Peter", - "Horst", - "Jeannette", - "Christian", - "Regina", - "Peter", - "Alexander", - "Dominik", - "Jochen", - "Peter Walter", - "Thomas", - "Andrea", - "Angelique", - "Bernd", - "Markus", - "Peter", - "Rudolf", - "Roland", - "Rutger", - "Sven", - "Andreas", - "Constanze", - "Adam", - "Lutz Rainhard Erich", - "Marc Oliver", - "Franz Stefan", - "Dieter", - "Reinhard", - "Michele", - "Jürgen", - "Manfred", - "Werner", - "Ursula", - "Walter", - "Hannes", - "Lars", - "Peter", - "Xavier Pascal Claude", - "Jürgen", - "Norbert", - "Frank", - "Ralph", - "Sandra", - "Ulrich", - "Marc", - "Isabelle", - "Ulrich", - "Tilmann", - "Thomas", - "Robert", - "Philipp", - "Reinhold", - "Jörg", - "Robert", - "Reinhold", - "Alexander", - "Andreas", - "Alexander", - "Wolfram Rainer", - "Denis Erich Konrad", - "Stefan", - "Michael Gerhard", - "Julia", - "Karsten", - "Alexander Gerhard", - "Fernando Francisco", - "Jürgen", - "Jan", - "Claus", - "Marc", - "Roswitha", - "Hans-Jürgen", - "Peter", - "Susanne", - "Konstantinos", - "Amer", - "Hermann", - "Tim Sebastian Robert", - "Anja", - "Werner", - "Monika", - "Semih", - "Kazim", - "Susanne", - "Ilhan", - "Markus", - "Marion", - "Andrea", - "Ulf", - "Menno", - "Norbert", - "Heike", - "Bernard Michel Luc", - "Bertrand Pierre", - "Andreas", - "Martin", - "Bernhard", - "Thomas", - "Ludwig Maximilian", - "Michael", - "Eva", - "Peter", - "Jean Michel", - "Roland", - "Stephan Jörg", - "Ralf", - "Stephan", - "Bernhard", - "Peter", - "Katrin", - "Axel", - "Rüdiger", - "Thorsten", - "Heinz", - "Ralf", - "Nadine", - "Achim", - "Christian", - "Thorsten", - "Daniela", - "Tim", - "Vincent", - "Marion", - "Armin", - "Klaus", - "Markus", - "Anita", - "Hakan", - "Christian", - "Rolf", - "Leonie Kristin", - "Patrick", - "Sebastian", - "Florian", - "Felix", - "Erdmann Ferdinand", - "Alfred", - "Holger", - "Andrea", - "Alexandra", - "Jens", - "Oliver", - "Sebastian", - "Marc", - "Jörg", - "Frank", - "Christoph", - "Tobias", - "Leonie", - "Wolfgang", - "Frank", - "Jens Joachim", - "Henning", - "Klaus", - "Frank", - "Sören", - "Inga", - "Janna", - "William Harmens", - "Thomas", - "Harald", - "Yunus", - "Ewald", - "Oliver", - "Christina", - "Jens", - "Anna Malgorzata", - "Vanessa", - "Karin", - "Rasha", - "Julia Christina", - "Peter Ulrich", - "Stefan", - "Natalia", - "Mathias", - "Arno", - "Michael", - "Francois", - "Petra", - "Michael", - "Manfred", - "Markus", - "Sabine", - "Volker", - "Jörg Bernd", - "Robert", - "Jörn", - "Matthias", - "Dietmar", - "Michael", - "Dieter", - "Jens", - "Hans-Joachim", - "Dietmar", - "Philip", - "Hendrik", - "Philipp", - "Jörg", - "Jonas", - "Roman Morten", - "Matthias", - "Markus", - "Thomas", - "Wolf Hendrik", - "Joachim", - "Sonja", - "Alexander", - "Stephan", - "Volker", - "Tim", - "Barbara Sabine Bianca", - "Reinhild", - "Lynn", - "Stefan", - "Britta", - "Joern-Peter", - "Kathrin", - "Cordula", - "Andreas", - "Heike", - "Marco", - "Kerstin", - "Katrin", - "Dan Pinhas Bar", - "Mario", - "Joachim", - "John", - "Jens", - "Hans", - "David", - "Alessandro", - "Sabia", - "Laura", - "Paolo", - "Khadija", - "Christoph", - "Jan-Patrick", - "Nils", - "Michael", - "Ralf", - "Ashok Prasad", - "Armin", - "Mirja", - "Thorsten", - "Mareike", - "Arnd Philipp", - "Dirk", - "Patrick", - "Thomas", - "Martin", - "Rüdiger", - "Ina", - "Apollonia", - "Matthias", - "Michael", - "Samuel Jean-Pierre", - "Hervé", - "Emmanuel", - "Christian", - "Melanie", - "Cathrin", - "Ingo", - "Michael", - "Michael", - "Benedikt", - "Rüdiger", - "Martin", - "Tanja", - "Michael", - "Andreas", - "Tobias", - "Bruno", - "Kshitija", - "Sylvia", - "Guido", - "Denise Angelika Carola", - "Ikenna Jackson", - "Kai", - "Uwe", - "Philipp", - "Florian Nicolai Olaf", - "Jan Philipp", - "Stefan", - "Caspar", - "Annette", - "Djordje", - "Matthias Alexander", - "Sven", - "Stephan", - "Arnd", - "Rüdiger", - "Stephan", - "Peter", - "Jörg", - "Udo", - "Lea Rose", - "Wolfgang", - "Andreas", - "Klaudia", - "Marie-Luise", - "Hans", - "Klaudia", - "Jean-Christophe Gérard Paul", - "Eric Peter", - "Torsten Werner", - "Peter", - "Lars Henning", - "Christina", - "Emil", - "Kurt", - "Walter", - "Michael", - "Sandra", - "Andreas Michael", - "Wolf Hendrik", - "Marc", - "André", - "Philipp", - "Martina", - "Sebastian", - "Jörn", - "Ingo", - "Steffen", - "Stephan", - "Adrian", - "Frank Ralph", - "Trudbert", - "Matthias", - "Tobias", - "Christian", - "Constantin", - "Diana", - "Peter", - "Martin", - "Martina", - "Bianca Susanna", - "Julian", - "Norman", - "Ronald", - "Stephan", - "Harry", - "Frigga-Felicitas", - "Jürgen", - "Patricia", - "Thomas", - "Jens", - "Paul", - "Ola", - "Jörg", - "Renata", - "Sabine", - "Markus", - "Britta", - "Volkmar", - "Jürgen", - "Frank", - "Ronny", - "Nicole", - "Matthias", - "Matthias", - "Hans-Bahne", - "Kersten", - "Ulf", - "Marcus", - "Michael", - "Georges", - "Thomas", - "Alexander", - "Gorden", - "Michael", - "Dirk", - "Jason", - "Torsten", - "Joerg", - "Gunnar", - "Alexandra", - "Joerg", - "Matthias", - "Bettina", - "Karl", - "Andreas", - "Roland", - "Ekhard", - "Andreas", - "Frank", - "Georg", - "Ulrike", - "Katrin", - "Carsten", - "Sabine", - "Jan", - "Corinna", - "Juergen", - "Christian", - "Wolfgang", - "Annette", - "Corinna", - "Eckehard", - "Simone", - "Annette", - "Fabian", - "Ute", - "Martin", - "Carmen", - "Michael", - "Hans-Peter", - "Udo", - "Michaela", - "Heike", - "Marietta", - "Axel", - "Klaus", - "Thomas", - "Mario", - "Kevin", - "Burkhard", - "Sebastian", - "Udo", - "Matthias", - "Mark", - "Tim", - "Thomas", - "Marc", - "Hugo", - "Uwe", - "Klaus", - "Carsten", - "Harald", - "Robert", - "Michael", - "Marc-Oliver", - "Alexander", - "Jens", - "Klaus", - "Simon", - "Emmerich", - "Marcus", - "Stephanie", - "Vittorio", - "Carsten", - "Axel", - "Peter", - "Roberto", - "Jens", - "Clemenz", - "Uwe", - "Alexander", - "Michael", - "Jochen", - "Michael", - "Oliver", - "Claudia", - "Felix", - "Tatiana", - "Karin", - "Teilhard", - "Marc", - "Angela", - "Florian", - "Frank", - "Jens", - "Magnus", - "Leslie Go", - "Johannes", - "Regina", - "Hubertus", - "Joachim", - "Jörg", - "Stefan", - "Alexander", - "Ida", - "Achim", - "Andreas", - "Mathias", - "Doreen", - "Tim", - "Heiko", - "Marco", - "Anouck", - "Marcus", - "Stefanie", - "Birgit", - "Benjamin", - "Jing", - "Francesco", - "Elke", - "Christoph", - "Tilo", - "Philipp", - "Sebastian", - "Steffen", - "Dominik", - "David Perdomo", - "Gaby", - "Silke", - "Philipp", - "Sonja Melanie", - "Kathrin", - "Carsten", - "Elmar", - "Aziz", - "Carsten Daniel", - "Lukas", - "Boris", - "Jochen", - "Dominik Tobias Heinz Rudolf", - "Andreas Michael", - "Markus", - "Bernd", - "Oliver", - "Donat", - "Andreas", - "Mina", - "Klaus Markus", - "Gregor", - "David", - "Ralf", - "Ekaterina", - "Gerald", - "Eduard", - "Vyacheslav Antoliyovych", - "Reinhard", - "Karin", - "Petra", - "Klaus-Jürgen", - "Gudela", - "Rico", - "Peter Uwe", - "Zhiyun", - "Denis", - "Michael", - "Jochen", - "Arnd", - "Michael", - "Andreas", - "Jianshen", - "Ursula", - "Joachim", - "Ralf", - "Martina", - "Jörgen", - "Frank", - "Gerhard", - "Franz", - "Bogumila", - "Karin", - "Charlotte", - "Rainer", - "Bernhard", - "Zeynep Ayse", - "Katharina", - "Franziska", - "Heinrich", - "Han", - "Ulrike", - "Thomas", - "Jochem", - "Annette", - "Friederike", - "Willi", - "Andreas", - "Ingo", - "Johann-Friedrich", - "Richard", - "Johannes", - "Christine", - "Thomas", - "Stefanie", - "Holger", - "Sonja", - "Henrik", - "Kerstin", - "Iris", - "Volker", - "Barbara", - "Olivier", - "Andrea", - "Ingrid", - "Harald", - "Wolfgang", - "Helmut", - "Dirk", - "Hanns Heinrich", - "Monika", - "Nicole", - "Andriy", - "Alfredo", - "Olaf", - "Susanne", - "Anna", - "Ilona", - "Kerstin", - "Dirk", - "Wolfgang", - "Robert", - "Aldona", - "Martin", - "Gerda", - "Claudia", - "Hauke", - "Nancy", - "Ingrid", - "Sebastian", - "Thilo", - "Runa", - "Karin", - "Agnes", - "Jörg", - "Claudia", - "Sebastian", - "Carl-Wilhelm", - "Burkhard", - "Peter", - "Stefanie", - "David", - "Stephanie", - "Ellen", - "Jens", - "Dandy", - "Lia", - "Martin", - "Mathilde", - "Peter", - "Runhao", - "Thomas", - "Gerd", - "Jan", - "Helene", - "Volker", - "Gudrun", - "York", - "Oscar", - "Doris", - "Markus", - "Matthias", - "Karina", - "Cristiana", - "Jörg", - "Stefan", - "Dirk", - "Rolf", - "Andreas", - "Sebastian", - "Arndt", - "Nicole", - "Robert", - "Caprice", - "Nicola", - "Stephan", - "Claudia", - "Vladimir", - "Otto", - "Winrich", - "Sylke", - "Holger", - "Roland", - "Harald", - "Seyed Mohammad", - "Brigitte", - "Christine", - "Horand", - "Nevin", - "Levent", - "Elisabeth", - "Stella", - "Julius", - "Ekkehard", - "Michael", - "Wolf Christian", - "Rupert", - "Carsten", - "Hans Günter", - "Peter", - "Hasan Ali", - "Zeynep", - "Biljana", - "Florian", - "Michael", - "Angelika", - "Norbert", - "Thomas", - "Katja", - "Nicholas", - "Stephan", - "Hans-Jürgen", - "Georg", - "Rebekka", - "Ulrich", - "Michael", - "Stefan", - "Margarete", - "Frank", - "Michael", - "Reinhard", - "Philipp", - "Sabrina", - "Helga", - "Dieter", - "Elisabeth", - "Thomas", - "Peter", - "Angela", - "Alisa", - "Kirsten", - "Oda", - "Yuyi", - "Erich", - "Annette", - "Sebastian", - "Andreas Roland", - "Barbara", - "Winfried", - "Markus", - "Sabine", - "Jürgen", - "Alexander", - "Miron", - "Lev", - "Raphaela", - "Matthias", - "Anja", - "Sibille", - "Helmut", - "Richard", - "Sarah Julia", - "Lena Eleonore", - "Maja Bernadette", - "Benjamin", - "Jörn", - "Thomas", - "Yi", - "Natthinee", - "Sonia Susanna", - "Florian Peter", - "Manuel", - "Franziska Luise Dorothea", - "Moritz", - "Melanie", - "Lars", - "Dirk", - "Volker", - "Ralf", - "Karlheinz", - "Güven", - "Serge", - "Jörn Gerald", - "Patrick", - "Patrizia Nathalie", - "Karsten", - "Christian", - "Lars", - "Corentin Francis Louis", - "Léonie", - "Peter", - "Frank", - "Anja", - "Zvonko", - "Andreas", - "Marc", - "Ronald", - "Christoph", - "Mario", - "Georg", - "Katrin", - "Jörg", - "Manfred", - "Erwin", - "Christian", - "Clemens", - "Michael", - "Karl-Josef", - "Andreas", - "Hans-Dieter Hermann", - "Nuno", - "Paolo", - "Frank Graham", - "Usha Mary", - "Ros-Marie", - "Peter-Heinz", - "Klaus", - "Johanna", - "George", - "Anne Ruth", - "Yves Jean-Marie", - "Antoine Rémi Francois", - "Marco Giovanni", - "Nicholas Rory", - "Alla", - "Jörg", - "Robin", - "Petra", - "Andreas", - "Daniel", - "Angela", - "Frank", - "Thomas", - "Andrea", - "Rainer", - "Reinhard", - "Johanna", - "Frank Jean-Claude", - "Marie-Christine", - "Jan", - "Klaus", - "Frank", - "Dirk", - "Stefan", - "Sönke", - "Bert Tomas", - "Ulrike Stefanie", - "Patrick", - "Manfred", - "Florian", - "Thomas", - "Nathalie", - "Anke", - "Guido", - "Christoph", - "Gudrun", - "Stefan", - "Andreas", - "Guido", - "Thorben", - "Joachim", - "Thorsten", - "Waltraud", - "Stefan", - "Marcel", - "Katrin", - "Niels Jörn", - "Bernhard", - "Roswitha", - "Markus", - "Marlena", - "Thomas", - "Stefan", - "Thi Thuy Huong", - "Franz", - "Georg", - "Anita", - "Theresia", - "Gabriele", - "Oliver", - "Andreas", - "Jan", - "Svetlana", - "Joern Peter", - "Matthias", - "Maria Teresa", - "Tobias", - "Katja", - "Peter", - "Kerstin", - "Kathrin", - "Frank", - "Martin", - "Matthias", - "Sami", - "Raymund", - "Daniela", - "Martin", - "Niki", - "Marco", - "Michael", - "Frederik", - "Johan", - "Wolfgang", - "Ingo", - "Franz", - "Andreas", - "Martin", - "Josef", - "Uwe Jens", - "Lukas", - "Ulrich", - "Dennis", - "Münür", - "Gerd", - "Jörg", - "Roman", - "Alexander", - "Jessica", - "Stephan", - "Sebastian", - "Boris", - "Christopher", - "Benjamin", - "Stephan", - "Michael", - "Andre", - "Gerd", - "Peter", - "Thomas", - "Tobias", - "Dietmar", - "Barbaros", - "Markus", - "Thorsten", - "Inka", - "Arne", - "Andreas", - "Mikael", - "Friedrich", - "Torsten", - "Alexander", - "Murat", - "Ursula", - "Thomas", - "Yvonne", - "Steffen", - "Simone", - "Laura", - "Christian", - "Ingrid", - "Kerstin", - "Kyriaki", - "Robert", - "Christian", - "Jörg", - "Sebastian", - "Cathérine", - "Fabian", - "Dirk", - "Axel", - "Robin Billy", - "Michael", - "Eleonore", - "Heinz Nikolaus", - "Ilona", - "Hildegard", - "Anselm Werner Aretin", - "Gunnar", - "Peter", - "Ashwin", - "Dietmar", - "Mathias", - "Volker", - "Ina", - "Andreas", - "Esther", - "Lena", - "Andreas", - "Matthias", - "Michael", - "Daniel Christian", - "Hans Helmut", - "Patrick", - "Stephan Manuel", - "Eva", - "Stephan", - "Tassilo", - "Timo Johannes Georg", - "Frank", - "Christof", - "Volker", - "Martin Arnold Benedikt", - "Matthias", - "David Roberto", - "Stefan", - "Stephanie", - "Philip", - "Evelyn", - "Franz Xaver", - "Eva-Maria", - "Katharina Gisela", - "Armin", - "Hans-Dieter", - "Markus", - "Rafael", - "Steffen", - "Claude", - "Christiane", - "Markus", - "Melanie", - "Matthias", - "Oliver", - "Stella", - "Sadik", - "Stefan", - "Erol", - "Klaus", - "Marco", - "Guido", - "Swen", - "Thomas", - "Lars", - "Erkan", - "Kai", - "Christian", - "André", - "Stefan", - "Stefanie", - "Guillaume", - "Allen David", - "Marco", - "Edgar", - "Guido", - "Thomas", - "Alexander", - "Jean-Philippe", - "Jörg", - "Kersten Paul", - "Dr. Marc Thorsten", - "Winand Will", - "Peter Hans", - "Harald", - "Ömer", - "Klaus", - "Erika", - "Nuno Filipe", - "Michael", - "Jörg", - "Jan", - "Aleksandra", - "Holger", - "Markus", - "Stefan", - "Jürgen", - "Regis", - "Jonas", - "Marcus", - "Bernd", - "Patxi Xabier", - "Alexander", - "José Luis", - "Hajo Franziskus", - "Ilya", - "Nils", - "Marion", - "Gabriele", - "Michael", - "Sebastian", - "Simona Lucia", - "Bernd", - "Frank", - "Andreas", - "Ferdinand Nikolaus", - "Leif Christian", - "Sebastian", - "Benjamin Michael", - "Johannes", - "Thorsten", - "Christian", - "Alexander Volkmar", - "Joachim", - "Christian", - "Ibrahim", - "Karsten", - "Michael Georg Franz", - "Andreas", - "Florian", - "Wim", - "Miguel", - "Joachim Hviid", - "Christian", - "Constantin", - "Volker", - "Eike Johannes", - "Ulf", - "Felipe Álvaro", - "Jochen", - "Tobias", - "Frank", - "Hubert", - "Günther Willi Otto", - "Marc", - "Steffen-Daniel", - "André", - "Thomas", - "Dominik Michael", - "Xaver", - "Frank Ralf", - "Gunter", - "Markus", - "Reiner", - "Monika", - "Cornelia", - "Gerd", - "Bernhard", - "Henrike", - "Silke", - "Thomas", - "Günter", - "Stefan", - "Uwe", - "Gerd", - "Klaus-Dieter", - "Karsten", - "Peter", - "Jörg", - "Erwin", - "Klaus", - "Carola", - "Peter", - "Markus", - "Jörg", - "Clarissa Ilse", - "Katharina", - "Alexander Heinz", - "Dorothee Kordia", - "Stephan", - "Uwe", - "Jakob", - "Michael", - "Rainer Werner", - "Karsten", - "Andreas", - "Dirk", - "Thomas", - "Timo", - "Berthold", - "Andreas", - "Frank", - "Johannes", - "Christoph Alexander", - "Klaus Jürgen", - "Susanne", - "Jörg", - "Reiner", - "Thomas", - "Wolfgang", - "Jürgen", - "Frederick", - "Nils", - "Oliver", - "Torsten Patrik", - "Gunther", - "Jörn", - "Stephan Manfred", - "Olaf", - "Stefan", - "Michael", - "Peter Franz", - "Petra", - "Eileen", - "Clemens", - "Lars", - "Alexander", - "Judith", - "Marcus", - "Nicole", - "Bernhard", - "Ernst", - "Christoph", - "Maik", - "Markus", - "Matthias", - "Isolde", - "José Luis Blanco", - "Anja", - "Robert", - "Ellen Klara", - "Anette", - "Tim", - "Tilo", - "Dagmar Maria", - "Oliver", - "Karl Christoph", - "Lutz Axel", - "Helmut", - "Stephanie-Manina", - "Anna Sophie", - "Marlen", - "Laura", - "Leo", - "Thorsten", - "Markus Jürgen", - "Patxi", - "Kai", - "Roland", - "François-Xavier", - "Babette", - "Aldo", - "Josef", - "Hans-Jürgen", - "Jürgen", - "Michael", - "Uwe", - "Franz von Sales", - "Frank", - "Holger", - "Christian", - "Markus", - "Andreas", - "Stephan", - "Marc", - "Ulrich", - "Herbert", - "Christian", - "Andreas Heinrich", - "Jan Markus", - "Stefan", - "Georg", - "Roland", - "Matthias", - "Bernd", - "Sebastian", - "Arnd", - "Kirsten", - "Frank", - "Maciej Eugeniusz", - "Mehmet Yekhan", - "Hubert", - "Alexander", - "Yunus", - "Elsa", - "Matthias", - "Fabian Phillip Julien", - "Franz", - "Georg", - "Michael", - "Christian", - "Deniz", - "Christian", - "Martin", - "Johannes Franz", - "Mathias", - "Christian", - "Uwe", - "Nadine", - "Harald", - "Morten", - "Martin Aagaard", - "Frederik Willem Arend Leonard", - "Rainer", - "Junfei (Adam)", - "Matthias", - "Mario", - "Martin", - "Arno", - "Arne Michael", - "Dietmar", - "Thomas", - "Jens", - "Ralf", - "Alfredo Antonio", - "Antje", - "Ralf", - "Karl-Thomas", - "Jochen", - "José", - "Nils", - "Carina", - "Michael", - "André", - "Alexander", - "Heiko", - "Thomas", - "Michael", - "Jörg", - "Dieter", - "Andreas", - "Kai", - "Nils Wolfgang", - "Oliver Thorsten", - "Thomas", - "Albane Elisabeth Pierrette Christine", - "Enea", - "Martin", - "Martina", - "Lars", - "Ali Hakan", - "Sevgi", - "Siegbert", - "Jörg Thomas", - "Ronald", - "Carsten", - "Georg Franz Wilhelm", - "Peter", - "Richard", - "Arne", - "Holger", - "Erwin", - "Frank", - "Nikolai", - "Karl-Heinz", - "Peter Sebastian", - "Dagmar", - "Hans", - "Christoph", - "Bernhard", - "Georg", - "Eberhard", - "Ralf", - "Philipp", - "Simon", - "Klaus", - "Marco", - "Verena", - "Joachim", - "Hansjörg", - "Daniela", - "Alexander", - "Volker", - "Tilman", - "Isabelle", - "Thorsten", - "Florian", - "Joachim", - "Bernd", - "Kristof", - "Thomas", - "Alexander", - "Alexander", - "Stefan", - "Anke", - "Wolfgang", - "Michael", - "Veronika", - "Ulrich", - "Zofia", - "Armin", - "Vera", - "Karsten", - "Volker", - "Klaus", - "Mike", - "Sören", - "Lara Marie", - "Wiebke", - "Ulrich", - "Michael", - "Klaus", - "Peter", - "Lars", - "Frank", - "Uwe", - "Ottmar", - "Stefan", - "Silke", - "Hella", - "Volker", - "Olaf", - "Dirk Heinrich", - "Ulrich Franz", - "Sebastian", - "Peter", - "Stephan", - "Arnd", - "Bernd", - "Florian", - "Michael Thomas", - "Frank", - "Andreas Hilmar", - "Ulf Jakob Stigson", - "Ines Margarethe", - "Helene", - "Rene", - "Roland", - "Gerhard", - "Philipp", - "Mike", - "Klaus", - "Wladislaw", - "Stefan", - "Henric", - "Jürgen", - "Torben", - "Carlo", - "Heinrich-Ernst", - "Hendrik Hubertus", - "Dennis", - "Thomas", - "Stephan", - "Stefanie", - "Jörg", - "Christoph", - "Heinrich", - "Johann Peter", - "Claudia", - "Jürgen", - "Andrea Ferreira", - "Christian", - "Claus", - "Thorsten", - "Johann-Philipp", - "Eva-Maria", - "Gerald", - "Peter", - "Rupert", - "Evgeniy", - "Michael Holger", - "Stephan", - "Dunja", - "Ralf", - "Hendrik", - "Leonie Anna", - "Thomas", - "Peter", - "Wolfgang", - "Eberhard", - "Roman", - "Matthias", - "Constantin", - "Malte", - "Christian", - "Christoph", - "Denny", - "René", - "Bruno", - "Patrick", - "Willy-Sebastian", - "Stefan", - "Claude Laurent", - "Philip", - "Bernd", - "Claudia", - "Matthias", - "Andre", - "Johannes", - "Frank", - "Kai Steffen", - "Stephan Andreas Wilhelm", - "Ilya Taka", - "Christian", - "Markus", - "Rainer", - "Thomas", - "Wolfgang", - "Eckhard", - "Enno", - "Markus", - "Clemens", - "Per Markus", - "Axel", - "Thomas-Garry", - "Bernhard", - "Stefanie", - "Arthur", - "Stefan", - "Michael", - "Laurent", - "Britta", - "Achim", - "Maximilian", - "Bernhard", - "Thomas", - "François Luc", - "Lüder", - "Alexander", - "Stefan", - "Sebastian", - "Martin", - "Ralf", - "Jens", - "Silvia", - "Mariam", - "Heinz Stefan", - "Erhard", - "Achim", - "Stephanie", - "Till", - "Benedikt Nikolas", - "Angelika", - "Ulrich", - "Martin", - "Dirk", - "Cornelia Simone", - "Mathias", - "Uwe", - "Günter", - "Maik", - "Anne-Laure", - "Maria", - "Egon", - "Dirk", - "Martin", - "Andreas", - "Marc", - "Oliver", - "Eduardo-Jansen", - "Imke", - "John", - "Michael", - "Jens Tobias", - "Malte", - "Stefan", - "Benjamin", - "Thomas", - "Nathan", - "Carsten Dirk", - "Dennis", - "Björn", - "Alexander", - "Stefan", - "Johannes", - "Marius", - "Hi-Zin", - "Sascha", - "Marco", - "Camelo", - "Jan", - "Ralf", - "Olaf", - "Tanja", - "Rüdiger", - "Jörg", - "Peter William", - "Wolf Dieter", - "Reiner", - "Wolfgang", - "Kabella", - "Katharina Johanna genannt Käthe", - "Steffen", - "André", - "Johanna", - "René", - "Daniela", - "Benjamin", - "Tilo T.", - "Matthias", - "Hasan", - "Frank-Michael", - "Steven", - "Alexander", - "Zeno Wilhelm", - "Harald", - "Andreas", - "Alexander", - "Martin", - "Frank", - "Jaap", - "Petra", - "Sandra", - "Holger", - "Markus", - "Matthias", - "Bernhard", - "Markus", - "Christian", - "Gabriele", - "Werner", - "Antra", - "Manfred", - "Cemil", - "Tobias", - "Olaf", - "Lena", - "Fabian", - "Nils-David", - "Jochen", - "Wolfgang Nicholas", - "Matthias", - "Bastian", - "Tobias", - "Roland", - "Uwe", - "Danail Ivanov", - "Gabriel", - "Barbara", - "Frauke", - "Kai", - "Thomas", - "Arne", - "Johannes Kristian Thomas", - "Markus Ludwig", - "Sarah", - "Marcel", - "Dirk", - "Heiko", - "Frank", - "Leonie", - "Daniela", - "Maja", - "Inge", - "Harald", - "Stefan G.", - "Munkhzul", - "Alexander", - "Klaus-Gunter", - "Regina", - "Andreas", - "Jens", - "Joel", - "Christian", - "Felix", - "Thomas", - "Christian", - "Stefan", - "Sascha", - "Stefan", - "Enrico", - "Tim", - "Christoph Gilg Reinhard Jürgen", - "Andreas Ingo", - "Ralf", - "Matthias", - "Thomas", - "Thomas", - "Björn", - "Ana Maria", - "Björn", - "Dieter Helmut", - "Silvio", - "Manfred", - "Stefan", - "Malte Kristian", - "Damian", - "Stefan", - "Susanne", - "Lutz", - "Thorsten", - "Torsten", - "Achim", - "Ralf", - "Haluk", - "Dirk", - "Thomas", - "Michael", - "Martin", - "Kai-Uwe", - "AxeL", - "Thomas", - "Eckhardt", - "Fritz", - "Joachim", - "Rainer", - "René", - "John Gerard", - "Peer", - "Jens Michael", - "Katrin", - "Christian", - "Alexandra", - "Heike", - "Vanessa", - "Hugo", - "Michaela", - "Andrejs", - "Niels", - "Peter", - "Olaf", - "Friedrich", - "Andreas", - "Christina", - "Klaus", - "Rainer", - "Holger", - "Philip", - "Rainer", - "Karsten", - "Sebastian", - "Arne", - "Thomas", - "Martin", - "Mario", - "Jörg", - "Hans-Ludwig", - "Gunnar-Sönke", - "Wolfgang", - "Mijo", - "Johann", - "Steffen", - "Axel", - "Karl-Friedrich", - "Herbert", - "Heike", - "Alexander", - "Wolfgang", - "Alexander", - "Karl-Heinz", - "Thorsten", - "Martin", - "Peter", - "Anne-Karina", - "Jan", - "Robert", - "Jörg", - "Mike Jens", - "Tobias", - "Oliver", - "Jeaninne", - "Daniel", - "Kjell", - "José Javier", - "Sebastian", - "Rolf", - "Christian", - "Friedemann", - "Frank", - "Anett", - "Tobias Benjamin", - "Heinz-Jürgen Werner", - "Patricia", - "Alexander", - "Christhard", - "Marion", - "Kai-Uwe", - "Susanne", - "Michael", - "Alexander", - "Dirk", - "Thomas", - "Johannes Christoph", - "Gernot Gerd", - "Roland", - "Christian Peter", - "Jürgen", - "Jochen", - "Christoph", - "Christian", - "Udo", - "Marc", - "Jens Alexander", - "Antje", - "Dirk", - "Torsten", - "Frank", - "Thomas", - "Torsten", - "Mihiar", - "Robert", - "Markus", - "Thomas", - "Ernst-Michael", - "Christoph", - "Melanie", - "Bengt-Olof Johannes", - "Nicole", - "Mathias", - "Anja", - "Jens-Dirk", - "Daniel", - "Anton", - "Knut", - "Jörg", - "Olaf", - "Stefan", - "Ulrich", - "Hartmut", - "Wolfgang", - "Harald", - "Marie", - "Urs", - "Mats Niklas", - "Matthias", - "Timo", - "Ulrich", - "Dominik", - "Rüdiger", - "Tim Frank", - "Andreas", - "Edmund", - "Stephan", - "Ramin", - "Marco", - "Burkhard", - "Andreas", - "Heiko", - "Peter-Michael", - "Reena", - "Michael", - "Ulrike", - "Björn", - "Gunnar", - "Nicolaus", - "Martin Norbert", - "Thorsten", - "Benedikt", - "Thomas", - "Fabian", - "Juliane", - "Elke", - "Oliver", - "Julia", - "Beatrice", - "Tony", - "Stephan", - "Axel", - "Henning", - "Hans-Jaan", - "Thorsten", - "Alexander", - "Frank Karl", - "Rainer", - "Andreas", - "Ansgar", - "Sven", - "Meik", - "Carolin", - "Thomas", - "Ralf Peter", - "Roberto", - "Jens", - "Harald", - "Bastian", - "Reinhold", - "Christopher", - "Mathias", - "Bianka", - "Martina", - "Michael", - "Dirk", - "Werner", - "Frank", - "Sabine", - "Sabine", - "Pascal", - "Karl-Heinz", - "Thomas", - "Michaela", - "Uwe", - "Zsolt", - "Joerg", - "Stefan", - "Christian", - "Andreas", - "Jürgen", - "Daniel", - "Michael", - "Christian", - "Karl", - "Jürgen", - "Antonie", - "Kai-Eberhard", - "Johannes", - "Dirk", - "Christian", - "Wolfgang", - "Bernd", - "Axel", - "Alexander", - "Claus", - "Klaus", - "Frank", - "Thorsten", - "Stefan", - "Dietmar", - "Jörg", - "Yves", - "Andreas", - "Stephan", - "Martin", - "Norbert", - "Klaus", - "Ralf P.", - "Beat", - "Horst-J", - "Norbert", - "Jan-Erik", - "Nina", - "Henning", - "Gerhard", - "Michael", - "Susanne", - "Joos", - "Eckard", - "Tim Alexander", - "Klaus", - "Hardi", - "Andreas", - "Jochen", - "Cedrik", - "Veronika", - "Robert", - "Annette", - "Axel", - "Michael", - "Thomas", - "Peter", - "Georg", - "Jürgen", - "Michael", - "Yves", - "Peter", - "Christian", - "Thomas Werner", - "Georg", - "Michael", - "Hermann", - "Aymeric", - "Sabine", - "Jelena", - "Kathy", - "Robert", - "Rainer", - "Peter", - "Hanna", - "Susanne", - "Michael", - "Rudolf", - "Saar", - "Judith", - "Matthias", - "Martin", - "Harald", - "Eva", - "Achim", - "Ingy", - "Peter Chi Shun", - "Henning", - "Christopher", - "Roland", - "Meiko", - "Dirk Leonidas", - "Heiko Thomas", - "Steffen", - "Martin", - "Georg", - "Mesut", - "Margherita", - "Jan-Michael", - "Heike", - "Jürgen", - "Eva-Maria", - "Markus", - "Markus", - "Thomas", - "Jürgen", - "Axel", - "Eva", - "Ingo", - "Thilo", - "Michael", - "Vlasta", - "Christof", - "Matthias", - "Detlef", - "Thomas", - "Nils", - "Kerstin", - "André", - "Matthias", - "Patrick", - "Jörg", - "Jörg", - "Peter", - "Stephan", - "Martin", - "Torsten", - "Beatrix", - "Ariane", - "Jens", - "Bernhard", - "Felix", - "Carsten", - "Hildegard", - "Nikolaus", - "Christian", - "Ted Oliver", - "Brigitta", - "David", - "Jan", - "Martin", - "Astrid", - "Marco", - "Katja", - "Bernhard", - "Michael", - "Benedikt", - "Jürgen Thomas", - "Jochen", - "Darleen", - "Gernot", - "Änne", - "Elisabeth", - "Ilka Alexandra", - "David", - "Christoph Albert", - "Michael", - "Guido", - "Maren", - "Laura", - "Andreas", - "Sascha", - "Thomas", - "Michael", - "Michael Sean", - "Uta", - "Frederic", - "Kevin", - "Stefan", - "Tobias", - "Christoph", - "Alexandru", - "Armin", - "Edgar", - "Eric Sandy", - "Stefan", - "Corinna", - "Martin", - "Uwe", - "Achim", - "Nadja", - "Jens", - "Dirk-Oliver", - "Katja", - "Stefan", - "Andreas", - "Ilona", - "Daniel", - "Gerrit", - "Wolfgang", - "Clemens", - "Otger", - "Thomas", - "Gabriele", - "Christoph", - "Stephanie", - "Ulrich", - "Rolf Uwe", - "Dirk", - "Armin", - "Malte", - "Edgar", - "Zvezdana", - "Michael", - "Jan Philipp", - "Markus", - "Ulrike", - "Kunal", - "Udo", - "Torsten", - "Malgorzata", - "Frank", - "Dirk", - "Ingo", - "Gregor Karl", - "Klaus", - "Thomas", - "Frank", - "Harald", - "Stephan", - "Friederike", - "Christian", - "Alexander", - "Sandrina", - "Markus", - "Thorsten", - "Nicole", - "Silvio", - "Ingo", - "Rabindra", - "Ulrich", - "Markus", - "Ralf", - "Jürgen", - "Michael", - "Thomas", - "Maik", - "Roland", - "Alexander", - "Friedrich", - "Jens", - "Timo", - "Phillip", - "Jennifer", - "Susanne", - "Holger", - "Gerd", - "Mike", - "Eike", - "Vitali", - "Roland", - "Frank", - "Florian", - "Christophe", - "Dirk", - "Karl Göran Gunnar", - "Christian", - "Daniel Carsten", - "Nina Susan", - "Juraj", - "Normen", - "Heinz", - "Florian", - "Andrea", - "Susanne", - "Christian", - "Ludwig", - "Dirk", - "Stefan", - "Frank", - "Karsten", - "Gabriele", - "Jens", - "Stephan", - "Erik", - "Lars", - "Thomas", - "Michael", - "Markus", - "Andree", - "Bart", - "Karl-Heinz", - "Gert", - "Harald", - "Thomas", - "Elmar", - "Michael", - "Evgenij", - "Tilmann", - "Kemal", - "Carsten", - "Heiko", - "Dirk", - "Paulo", - "Marten", - "Thomas", - "Marie-Cecil", - "Steffen", - "Alexander", - "Volker", - "Frederick", - "Frank", - "Carsten", - "Mario", - "Hardy", - "Christian", - "Stefan", - "Dietmar", - "Angelika", - "Michael", - "Thorsten", - "Patricia", - "Stephan", - "Frank", - "Alexander", - "Stephan", - "Jörg Peter Eugen", - "Sandra", - "Anja", - "Carsten", - "Karsten", - "Markus", - "Karl-Peter", - "Holger Hans Walther", - "Christian Harald", - "Karl-Heinz", - "Hendrik", - "Magdalena", - "Mathis", - "Joaquin", - "Matthias", - "Nigel", - "Paul", - "Thomas", - "Mark", - "David Anthony", - "Jacob Niklas", - "Russell James", - "Mathias", - "Michael William Maxwell", - "Richard James", - "Terri Louise", - "Adrian", - "Edward Alfred Dirk", - "Robert", - "Frank", - "Javier Andres", - "Richard", - "Matthew John", - "Heinz", - "Peter Hubert", - "Andree", - "Julian Francis", - "Dietrich", - "Viral", - "Sara", - "Frank", - "Matthew Alan", - "Christian", - "Lucy Margaret", - "Eva-Maria", - "Christina", - "Kostas", - "David Michael", - "Martina", - "Moritz", - "Julian Philipp", - "Ulf", - "Martin", - "Andreas", - "Thomas", - "Guido", - "Gunhild", - "Judith Grace", - "Madlen", - "Maximilian", - "Astrid", - "Carsten", - "Sebastian", - "Joaquín", - "Hans Jörg", - "Jade", - "Matthew", - "Kirsten", - "Anthony", - "Susan", - "Judith", - "Klaus", - "Andrew Peter", - "Chris", - "Helen Wendy", - "Barbara", - "Sarah", - "Simon Mark", - "Dominik", - "Olaf", - "Emma", - "Oliver", - "Bernd", - "Victoria", - "Sarah Louise", - "Gerd Klemens August", - "Bernd", - "Myriam", - "Bengt-Olof", - "Kai", - "Franziska", - "Isalyne", - "Stéphane", - "Laurent Georg", - "Klaus", - "Christoph", - "Jürgen", - "Florian", - "Peter", - "Andreas", - "Clement", - "Roland", - "Jochen", - "Rainer", - "Dieter", - "Jochen", - "Joachim", - "Mike", - "Sven", - "Thomas", - "Philipp", - "Reinhold Maximilian", - "Tobias", - "Sascha", - "Franz", - "Bernd", - "Felicia", - "Daniel", - "Michaela", - "Helge", - "Özcan", - "Ivica", - "Christoph", - "Chris", - "Peter", - "Andreas", - "Thomas", - "Alexander", - "Boris", - "Ralf", - "Lars", - "Matthias", - "Rauli", - "Petru-Catalin", - "Wilhelm", - "Heino Alexander", - "Mark", - "René", - "Thomas", - "Benjamin", - "Rudolf", - "Hans-Jürgen", - "Sascha", - "Carsten", - "Clément", - "Jan", - "Christian", - "Tatjana", - "Mirco", - "Andreas", - "Jana Gertrud", - "Erika", - "Jochen", - "Tim", - "Timo", - "Gunther", - "Pablo Omar", - "Michael", - "Gunnar", - "Ralph", - "Dirk", - "Lars", - "Markus", - "Jochen", - "Christian Werner Hans", - "Peter", - "Stephan Josef", - "Lutz", - "Cemal", - "Steven", - "Dirk", - "Wolfgang", - "Joachim", - "Gerhard", - "Ralf", - "Jens", - "Daniel", - "Herbert", - "Kuno", - "Thomas", - "Klaus", - "Heino", - "Daniel", - "Gisela", - "Hakan", - "Andreas", - "Sven", - "Robert", - "Sascha", - "Christian", - "Eduardo", - "Maik", - "Matthias", - "Reiner", - "Frank", - "Stephan", - "Arnd", - "André", - "Stefan", - "Martin", - "Laurenz", - "Guntram", - "Arnd", - "Stefanie", - "Dirk", - "Mirko", - "Oliver", - "Anja", - "Ibrahim", - "Clemens", - "Rainer Bernd", - "Thomas", - "Frank", - "Ralf", - "Michael", - "Bernd", - "Steffen", - "Sebastian", - "Daniel", - "Olaf", - "Oliver", - "Frank", - "Stefan Toni", - "Matthias", - "Marc", - "Cathrin", - "Matthias", - "Daniel", - "Meik", - "Vlasta", - "Sina", - "Richard Wolfgang", - "Marc", - "Christopher", - "Stephan", - "Oliver", - "Arvid Tristram", - "Marlies", - "Frederic", - "Stephan", - "Frank", - "Benjamin", - "Antonio Roberto", - "Christian", - "Klaus", - "Wolfgang", - "Alexandra", - "Michael", - "Christian", - "Horst", - "Mathias", - "Karsten", - "Martin", - "Darcy", - "Catharina", - "Michael", - "Kathrin", - "Steffen", - "Martin", - "Robert", - "Ralf", - "Lutz", - "Thomas Christian", - "Markus Johannes", - "Hubert", - "Ingrun-Ulla", - "Ralph", - "Thomas", - "Berend", - "Thorsten", - "Jörn", - "Jesko", - "Hartmut", - "Thomas", - "Josef", - "Alfred", - "Karlheinz", - "Manfred", - "Christian", - "Christian", - "Egon", - "Achim", - "Oliver", - "Gunnar", - "Clemens", - "Björn", - "Stefan", - "Thomas", - "Wolfgang", - "Philip", - "Stefan", - "Uwe", - "Markus", - "Roman", - "Arne", - "Abdallah Fawzi", - "Carsten", - "Christian", - "Karl", - "Christiane", - "Dirk", - "Rainer", - "Olaf", - "Elke", - "Gernot", - "Thomas", - "Arno", - "Astrid", - "Martin", - "Lars", - "Stefan", - "Michael", - "Wai Fong", - "Jutta", - "Ralf", - "Klaus", - "Marzena", - "Rolf", - "Manfred", - "Hauke", - "Hubert", - "Marcus", - "Silke Katharina", - "Arnd", - "Marcus Gerhard", - "Andrea", - "Thomas", - "Kai", - "Imelda", - "Patrik Andreas", - "Helge", - "Andreas", - "Dr. Michael", - "Hildegard", - "Klaus", - "Oliver", - "Ludwig", - "Dirk", - "Vassilia", - "Günther", - "Cornelius", - "Michael", - "Frank", - "Dirk", - "Jens", - "Olaf", - "Henri", - "Ines", - "Stephan Joachim", - "Simon", - "Oliver", - "Nils", - "Phillip", - "Thorsten", - "Áine", - "Lars", - "Matthias", - "Günter", - "Jörg", - "Ulrich", - "Peter", - "Kerstin", - "Matthias", - "Albin", - "Alexander", - "Gesine", - "Madelene Maria Helene", - "Annette", - "Jens", - "Andreas", - "Florian", - "Achim", - "Werner", - "Sigmund", - "Florian", - "Katharina Kiran", - "Shaminder", - "Thorsten", - "Silvie", - "Ute", - "Andreas-Michael", - "Sascha", - "Bianca", - "Markus", - "Rainer", - "Daniel", - "Gabriele", - "Stephan", - "Markus", - "Artur", - "Jano", - "Will", - "Anica", - "Hauke", - "André", - "Nicole", - "Peter", - "Marc Georg", - "Jochen", - "Simona", - "Christa", - "Andreas", - "Hendrik", - "Michael", - "Erik", - "Michael", - "Ursula", - "Jürgen", - "Aaron", - "Christian", - "Erik", - "Friedrich", - "Waldemar", - "Bernd", - "Stefan", - "Manfred Josef", - "Michael", - "Niko", - "Mark", - "Tobias", - "Sven", - "Christian", - "Michael", - "Birgit", - "Dirk", - "Stefan", - "Alexander", - "Günter", - "Joachim", - "Hubert", - "Frank", - "Wybcke", - "Amely", - "Elen", - "Julian", - "Friedrich-Christian", - "Albin Heinz", - "Luzian", - "Uwe", - "Michael", - "Christian", - "Volker", - "Meiko", - "Nicola", - "Roman", - "Oliver", - "Joachim", - "Antje", - "Thomas", - "Aneka", - "Anika", - "Benjamin", - "Thomas", - "Robert", - "Lukáš", - "Martin", - "Annett", - "Birgit", - "Stefan", - "Sascha", - "Sirko", - "Hugo Phillip", - "Michael", - "Mathias", - "Heinz-Hermann", - "Sebastian", - "Sandra", - "Patrick", - "Dietrich", - "Olaf", - "Peter", - "Stefan", - "Matthias", - "Susanne", - "Niels", - "Normen", - "Michael", - "Michael", - "Stefan", - "Gunnar", - "Cerstin", - "Martin", - "André", - "Andre Josef", - "Isabelle", - "Melanie", - "Frank", - "Ralf", - "Christian", - "Rainer", - "Stephan", - "Carsten", - "Uwe", - "Fabian", - "Dirk Günter", - "Meno", - "Ulrich", - "Hardy", - "Stefan", - "Jürgen Hans Hermann", - "Oliver Michael", - "Florian", - "Christoph", - "Axel", - "Annekatrin", - "Patrick", - "Isabel", - "Stefan", - "Wilfried", - "Christian", - "Ingmar Hellmut", - "Arnaud", - "Jochen", - "Patricia", - "Christoph", - "Marco", - "Simon", - "Rasmus", - "Timo Alexander", - "Jörn", - "Klaus", - "Christoph", - "Guido", - "Christopher", - "Robin", - "Oliver", - "Hermann", - "Tim", - "Thomas", - "Berthold Josef", - "Dieter", - "Michael", - "Arnd", - "Peter", - "Tim", - "Christoph", - "André", - "Sigmund", - "Thorsten", - "Karsten", - "Thomas", - "Tarik", - "David", - "Erik", - "Jürgen", - "Florian", - "Christian", - "Sybille", - "Nina Daniela", - "Mathias", - "Sebastian", - "Karsten Rudolf", - "Jürgen", - "Hella", - "Tim", - "Jan-Peter", - "Johanna Elisabeth Ursula", - "Friederike Juliane", - "Nanna", - "Peter", - "Ulrike", - "Christian", - "Thorsten", - "Thomas", - "Heinz-Willi", - "Hartmut", - "Andreas", - "Heinrich", - "Tobias Fabian", - "Thomas", - "Ralf", - "Dagmar", - "Florian", - "Thorsten", - "Stefan", - "Matthias F.", - "Kathrin", - "Doreen", - "Holger", - "Dominik", - "Stefan", - "Carsten", - "Michael Jakob", - "Martin", - "Frank", - "Timo", - "Armin", - "Mike", - "Claudia", - "Rüdiger", - "Bernhard", - "Rainer", - "Andreas", - "Florens", - "Klaus", - "Martin", - "Thomas", - "Christian", - "Frank", - "Rupert", - "Marion", - "Julia", - "Juan Ramon", - "Michael", - "Jörg", - "Michael", - "Sven", - "Andreas", - "Annette", - "Richard", - "Falk", - "Manina Juliette", - "Claudia", - "Wolfgang", - "Marianne", - "Olaf", - "Franz", - "Tobias Jilanie", - "Bernhard", - "Peter", - "Viola", - "Tim", - "Yannick", - "Torsten", - "Uwe", - "Marko", - "Shahin", - "Sandy", - "Sergej", - "Shinobu", - "Franziska", - "Stefan", - "Mark", - "Klaus", - "Mehran", - "Elitsa", - "Joachim", - "Tobias", - "Evi", - "Gerd", - "Markus Stefan", - "Heino", - "Thomas", - "John", - "Jens Christian", - "Manuela", - "Heinz", - "Roland", - "Andreas", - "Annette", - "Tobias", - "Markus", - "Nicole", - "Alfons Johann", - "Markus", - "Valentina", - "Yelamate Mallikarjuna", - "Achim", - "Jürgen", - "Ralf", - "Jürgen", - "Tilman", - "Tobias", - "Gerda", - "Marc", - "Ingo", - "Uwe", - "Gunnar", - "Jörg", - "Jörg", - "Andreas", - "Frank", - "Sascha Klaus Eric", - "Patricia", - "Rafael", - "Gabriele Martha", - "Frank", - "Jan Felix Filemon", - "Doreen", - "Andre", - "Christian", - "Christian", - "Gerd", - "Ralf", - "Kai", - "Thomas", - "Claudia-Susann", - "Oliver", - "Peggy", - "Sandro", - "Kevin", - "Erik", - "Alexander", - "Dirk", - "Arne", - "Rolf", - "Manuel", - "Kükenshöner", - "Stefan", - "Tom", - "Ralph-Dieter", - "Stephen", - "Ekkehard", - "Beatrice-Alexandra Gabriele", - "Sebastian", - "Wilm", - "Anne", - "Peter", - "Petra", - "Michael", - "Eric Marie Karl Rene", - "Jan", - "Stefan", - "Karsten", - "Bernhard Johannes", - "Alexander", - "Javier Angel", - "Michael", - "Vivianne", - "Dirk", - "Stephan", - "Dirk", - "Jens", - "Thorsten", - "Hagen", - "Bodo", - "Michael", - "Helge Knut", - "Hendrik", - "Oliver", - "Alfons", - "Gerhard", - "Manuela", - "Bernd", - "Siegmund", - "Holger", - "Sven", - "Helene", - "Petra", - "Dieter", - "Ralf", - "Markus", - "Abdelkader", - "Thomas", - "Jessica", - "Martijn", - "Dirk", - "Kai", - "Berthold", - "Jürgen", - "Friedrich-Wilhelm", - "Nikolai", - "Arno", - "Dominik", - "Rainer", - "Jens", - "Thomas", - "Johann", - "Stefan", - "Marijn", - "Philipp", - "Wolfgang", - "Wolfgang", - "Otto", - "Waldemar", - "Georg", - "Markus", - "Ralf", - "Thorsten", - "Claus", - "Cornelia", - "Niels", - "Ingrid-Helen", - "Markus", - "Wolfgang", - "Hans-Peter", - "Lars", - "Rainer", - "Werner", - "Michael", - "Martin", - "Ines Ricarda", - "Martina", - "Christin", - "Wolfgang Ernst", - "Dirk", - "Norbert Karl-Josef", - "Gerd", - "Andreas", - "Tim", - "Nina", - "Kai-Uwe", - "Alexander", - "Leonard", - "Anja", - "Felix", - "Jürgen", - "Manuel", - "Annette", - "Georg", - "Petra", - "Luc Jan", - "Baptiste Raymond", - "Anna Felicitas", - "Arndt Jörg", - "Sandra", - "Armin", - "Rainer", - "Henning", - "Udo", - "Christian", - "Norbert Frank", - "Sebastian", - "Martin", - "Reinhold", - "Christoph", - "Frits", - "Stefan", - "Birte", - "Florian", - "Stefan", - "Gunnar", - "Oliver", - "Dieter", - "Stephan", - "Peter", - "Nicola", - "Marion", - "Ilka", - "Martin", - "Egon", - "Wolfgang", - "Jörg", - "Rainer", - "Klaus", - "Knut", - "Michael", - "Matthias", - "Nicole", - "Frank", - "Thomas", - "Dennis", - "Volker", - "Jens", - "Max Werner gen. Werner", - "Guido", - "Alexander", - "Matthias", - "Eva", - "Tina", - "Roland", - "Gertrud", - "Ingo", - "Stefanie", - "Jürgen", - "Thomas", - "Christoph", - "Olaf", - "Jan", - "Georg", - "Andreas", - "Peter", - "Jörn", - "Tina", - "Marc", - "Jan", - "Tobias", - "Christoph", - "Dirk", - "Till", - "Thomas", - "Adel Bedry", - "Andreas", - "Andy", - "Jan", - "Carsten", - "Jürgen", - "Norman", - "Klaus", - "Tanja", - "Christian", - "Urs Michael", - "Björn", - "Laura", - "Dirk", - "Maik", - "Georg", - "Janine", - "Gregory", - "Thomas", - "Jochen", - "Frank", - "Jens", - "Heiko", - "Ralf", - "Martin", - "Alexandra", - "Ernst-Jan", - "Anthony", - "Christian", - "Kathrin", - "Sven", - "Jan", - "Alena", - "Holger", - "Meike", - "Michael", - "Alban Kornelius", - "Thomas", - "Antonino", - "Lars", - "Ralf", - "Andreas", - "Christian", - "Holger", - "Hans-Thomas", - "Frank", - "Marco", - "Frank", - "Michael", - "Dirk", - "Heinrich", - "Ralf", - "Alexander", - "Christian", - "Mikinari", - "Stephan", - "Thomas", - "Karl", - "Peter", - "Massimo", - "Marina", - "Bernd", - "Stefanie", - "Elke-Sabine", - "Sven Olaf", - "Carolin", - "Ralf", - "Frederik", - "Peter Stefan", - "Dieter", - "Klaus", - "Jan", - "Andreas", - "Bert", - "Jörg", - "Christine", - "Thomas", - "Ralf", - "Andreas", - "Katharina", - "Dirk Michael", - "Mario", - "Rasmus", - "Jens", - "Michael", - "Ulrich", - "Christian", - "Günter", - "Andy", - "Niels", - "Harald", - "Volker", - "Axel", - "Christian", - "Timo", - "Dennis", - "Andreas", - "Hans-Peter", - "Peter", - "Marc", - "Volker", - "Veit", - "Volker", - "Wolfgang", - "Marcus", - "Diethard", - "Jens", - "Anna", - "Marcus", - "Jürgen", - "Markus", - "Lutz-Martin", - "Markus", - "Rüdiger", - "Karsten", - "Annette", - "Gerrit Arnd", - "Andreas", - "Andreas", - "Carsten", - "Thomas", - "Michael", - "Markus", - "Matthias", - "Ingo", - "Andre", - "Christian", - "Bernhard", - "Matthias", - "Jörg", - "Arnd", - "Markus", - "Ulf", - "Uwe", - "Jan", - "Guido", - "Chris", - "Anton", - "Stefan", - "Ayten", - "Oliver", - "Joachim", - "Peter", - "Jendrik", - "Holger", - "Henning", - "Stefan", - "Alexandra", - "Carsten", - "Markus", - "Astrid", - "José Miguel", - "Chris", - "Markus", - "Marie Sophie", - "Stefan", - "Hans", - "Slobodan", - "Carolyn", - "Jessica", - "Andreas", - "Frederik", - "Andreas", - "Lars", - "Erika", - "Michael", - "Burkhard", - "Ulrich", - "Harald Gerhard", - "Andreas", - "Markus", - "Hans-Jörn", - "Karsten", - "Dirk", - "Christian", - "Birgit", - "Heike", - "Christian", - "Simon", - "Volker", - "Karina", - "Helge", - "Tobias", - "Frank", - "Ralf", - "Anita", - "Jan Heinrich", - "Gerlach Alexanders", - "Jasmin", - "Henning", - "Robert", - "Oliver Johannes", - "Jacqueline", - "Ralph", - "Christian", - "Annett", - "Anne", - "Vera", - "Mirana", - "Andrea", - "Martin", - "Arnd", - "Guido", - "Angelika", - "Alexandra", - "Mark", - "Jörg", - "Bernhard", - "Matthias", - "Martin", - "Tobias", - "Mark", - "Simon", - "Andreas", - "Matthias", - "Dietmar", - "Daniel", - "Andreas Werner", - "Marcus", - "Alexander Anton", - "Karl Andreas", - "Karl-Wilhelm", - "Jürgen", - "Ercan", - "Hans-Peter", - "Thorsten", - "Marko Cornelius Peter", - "Rüdiger Karl", - "Stephan", - "Dirk", - "Karl", - "Verena", - "Hans Wolf", - "Joachim", - "Max", - "Kai", - "Ulrike", - "Markus", - "Tobias", - "Rainer", - "Andreas", - "Ralf", - "Erik", - "Ralf", - "Niels-Jakob", - "André", - "Rodica", - "Andreas", - "Maximilian", - "Nana Ruth", - "Henk", - "Johannes Marius Alexander", - "Robert", - "Simon", - "Elie", - "Tobias", - "Simon", - "Frieder", - "Thomas", - "Sven", - "Kai", - "Marcus Christian", - "Markus", - "Judith", - "Michael", - "Markus", - "Ann-Cathrin", - "Uwe", - "Tim", - "Johann Börries", - "Wolfgang Hans", - "Stephanie", - "Andreas", - "Olaf", - "Christian", - "Helge Christian", - "André", - "Axel", - "Oliver", - "Christian", - "Ralf", - "Simon", - "Michael", - "Ute", - "Stefan", - "Benjamin", - "Moritz", - "Christoph", - "Saskia", - "Silvia", - "Helmut", - "Jörn", - "Kamila", - "Andreas", - "Heiko", - "Christian", - "Robert", - "Silvia Susanne", - "Uwe", - "Ulf", - "Ralf", - "Bernhard Herbert", - "Axel Christian", - "Eric", - "Masood", - "Carsten", - "Thomas", - "Stefan", - "Dieter", - "Maik", - "Thomas", - "Ralph Michael", - "Tim", - "Michael Jürgen", - "Chang", - "Helene", - "Sebastian", - "Ralf", - "Daniel", - "Torsten", - "Thomas", - "Christian", - "Andreas", - "Alexander", - "Anton", - "Felix", - "Karl", - "Christoph", - "Sandra", - "Sascha", - "Andreas", - "Franz-Josef", - "Thomas", - "Jan-Bernd", - "Henning", - "Simone", - "Marco", - "Peter", - "Dagmar", - "Detlev", - "Matthias", - "Nils", - "Frank", - "Dennis", - "Helene", - "Wina", - "Dirk", - "Ulrich", - "Lena", - "Bernd", - "Jörg", - "Markus", - "Steffen", - "Ralf", - "Marco", - "Stefan", - "Marcel", - "Henning", - "Sebastian", - "Marcus", - "Mirko", - "Anne", - "Sven", - "Sascha", - "Thomas", - "Michael", - "Robert", - "Michael", - "Susan-Katrin", - "René", - "Mareike", - "Timm", - "Sandra", - "Sascha Marco", - "Ingolf", - "Andreas", - "Rene", - "Walter", - "Klaus", - "Karsten", - "Klaus", - "Heike", - "Andreas", - "Elmar", - "Tobias", - "Daniela", - "Catrin", - "Elke", - "Philip", - "Timo", - "Christopher", - "André", - "Andrew", - "Reinhold", - "Matthias", - "Anne Sybille", - "Leonie", - "Thomas", - "Sergey", - "Alexander", - "Jörn", - "Kai-Uwe", - "David", - "Thomas Reinhard", - "Tessa", - "Martin", - "Mareike", - "Ingo", - "Christian", - "Nils", - "Ansgar", - "Markus", - "Robin", - "Jan", - "Jens", - "Matthias", - "Carsten", - "Guido", - "Melanie", - "Susanne", - "Alexandra", - "Axel", - "Thomas", - "Thomas", - "Michael", - "Udo", - "Arindam", - "Karin", - "Rico", - "David", - "Christian", - "Mathias", - "Volker", - "Mathias", - "Michael", - "Ralph", - "Matthias", - "Nicoletta", - "Marc", - "Josef", - "Fanni Tünde", - "Dorothee", - "Holger", - "Lennart Christopher", - "Ian", - "Tobias", - "Maximilian", - "Gero", - "Karen", - "Andre", - "Jan-Hendrik", - "Frederic", - "Markus Franz", - "Peter", - "Stephan", - "Jörg", - "Peter", - "Henri", - "Bernhard", - "Jörg Peter", - "Jochen", - "Christian", - "Erk Thorsten", - "Rolf", - "Thomas", - "Robert", - "Christoph", - "Frank", - "Vassiliki", - "Andreas", - "Thomas", - "Thomas", - "Benedikt", - "Marcus", - "Christian", - "Andrea", - "Robert", - "Christian", - "Uwe", - "Martin", - "Christian", - "Andreas", - "Tobias", - "Christoph", - "Christian", - "Wolfgang", - "Laurent", - "Martin", - "Konrad", - "Rainald", - "Sieglinde", - "Hans-Christof", - "Ronald", - "Thomas", - "Jutta", - "Markus", - "Torsten", - "Stefan", - "Wolfgang", - "Angela", - "Martina", - "Thomas", - "Frank", - "Jan", - "Muhamed", - "Bianca", - "Peter", - "Eva", - "Ilaria", - "Thomas", - "Markus", - "Thomas", - "Christian", - "Matthias", - "Christian", - "Stefan", - "Michael", - "Sebastian", - "Helmut", - "Stefan", - "Reinhard", - "Albrecht", - "Hans-Peter", - "Robert", - "Diana Yemi Elise", - "Dinesh", - "David", - "Astrid", - "Sandra", - "Anne", - "Bruno", - "Sara Maria", - "Matthias", - "Martin", - "Heike Ursula Erna", - "Gert Günter Willi", - "Egbert", - "Matthias", - "Sebastian", - "Stefan", - "Sabrina", - "Max", - "Marco", - "Ingo", - "Stefan", - "Marc", - "Lars", - "Nils Lars", - "Torge", - "Monika", - "Safet", - "Valerio", - "Werner", - "Richard" - ], - "mode": "markers", - "name": "DataFrame 2", - "type": "scatter", - "x": [ - 95962.08383797004, - 95958.17194866823, - 96588.81767117835, - 95948.88284577774, - 95880.89608253656, - 96750.96023331824, - 96510.55405575983, - 95767.91624828705, - 96740.50167159707, - 97209.95143029183, - 97361.55787856234, - 96730.38048016379, - 96981.97292405601, - 97064.56846526945, - 96996.94863760758, - 95612.3798589922, - 97025.10002004895, - 97085.03905872672, - 97181.50823801635, - 97107.98327536366, - 96671.54609170722, - 96264.44273321965, - 97372.74334299575, - 97234.35747194423, - 97271.91592592461, - 97377.86830334815, - 97325.9129722734, - 97061.7840428774, - 97215.01978405566, - 97358.31856309062, - 97190.77820654793, - 96441.85290714615, - 97203.18137378134, - 96615.52267587048, - 97362.57990476971, - 96430.3182329276, - 97216.0877466562, - 97087.72560216134, - 96827.37265721356, - 97471.93322774443, - 96478.42530029602, - 97500.18404094946, - 96989.78155035034, - 98448.42923749553, - 97143.83269179585, - 97369.40146033755, - 97339.71103793576, - 96553.64509810388, - 97302.65739635656, - 97335.30821090189, - 96554.76711541406, - 97344.39094759998, - 98269.13543855402, - 97120.93183600294, - 97096.28494217026, - 96822.6506902651, - 97442.83746991267, - 96832.47969398995, - 97815.81719436, - 98066.53944077659, - 97949.99254977489, - 97258.58975162834, - 97072.87553268592, - 97177.44060503879, - 98940.06816975218, - 98016.83324711236, - 97830.47996234937, - 97767.76658830828, - 96641.47157063635, - 97299.95033359852, - 97365.44574077036, - 97290.08489077912, - 97322.93543564298, - 97060.5787311115, - 97049.53534278259, - 97242.69405553193, - 98081.17812602762, - 97249.66244594876, - 97854.52508088839, - 97955.02720756274, - 97077.71122197901, - 96385.16496434633, - 97510.89358759671, - 98459.92232309152, - 97615.68830856765, - 98138.33403478275, - 97827.98206777098, - 96467.8745823571, - 95886.51435711926, - 98461.45076976992, - 98367.57183739317, - 96854.14568860013, - 97266.32321649927, - 97363.0231077364, - 97395.40628065314, - 96172.41683035072, - 96250.45766620964, - 95520.1645763566, - 98448.70225290018, - 96321.45254240566, - 97264.50790734109, - 97236.52009824176, - 97339.43922054533, - 97243.18425457999, - 97315.50747893736, - 97215.05533166551, - 96750.67919465902, - 96758.2131173848, - 96298.09511180542, - 95861.24531062585, - 96714.78752865449, - 97410.9196281361, - 96859.54396498862, - 96181.25693811684, - 96930.48088011655, - 97770.14515646077, - 97490.27494702111, - 97286.18570891903, - 97389.10178705663, - 97331.16186692334, - 96488.13453110759, - 96074.87019613585, - 97074.27772427908, - 96074.67218939119, - 97117.04988156656, - 96276.76290288504, - 96138.27909570166, - 97145.57365835275, - 96646.8046235456, - 95954.7235059804, - 97344.23333565774, - 97312.16899856621, - 97226.77467613107, - 97363.94242415007, - 96602.40260405943, - 95405.95241141658, - 97026.79872519187, - 96882.48118360608, - 96170.99341163754, - 96129.26226123162, - 97352.31659100096, - 96609.21495158957, - 98432.06023611217, - 96466.10004162915, - 95721.84547331538, - 97171.80979185148, - 96673.26868148368, - 97242.36535343947, - 96662.13325458604, - 95361.48898776405, - 96723.71649615404, - 96577.78689065653, - 96304.89053116819, - 96020.02948032114, - 94721.83869654656, - 97298.65959230787, - 96640.12295334176, - 96271.64391619014, - 96408.13622599524, - 97309.18348925584, - 97289.56699193796, - 97270.2903153982, - 96874.40221688445, - 96746.46975225132, - 96348.29844805674, - 96668.17509388815, - 96090.94263214861, - 96360.12432055575, - 96792.48106870924, - 96829.16589823875, - 96813.03260829017, - 96852.64814433026, - 97324.36613168383, - 97379.06355223498, - 96719.96913872726, - 96565.3052812955, - 96062.65271303893, - 96318.63129865125, - 96775.11425416196, - 97357.37235340624, - 97277.72395289454, - 97289.76170017247, - 97321.48237207504, - 97227.68741107298, - 97204.20955384977, - 96229.06326601339, - 97325.19271104848, - 97617.21646735941, - 98449.27256362812, - 96581.33099308431, - 97228.58212383334, - 97299.24309043337, - 97252.41548140156, - 97357.81547028142, - 97236.43218292532, - 97305.00730192695, - 97195.88804075729, - 97218.59509104007, - 96261.3196088678, - 93808.41622785716, - 96850.96393927754, - 96537.12189876002, - 96361.20003453246, - 96470.92604424445, - 96487.89609305817, - 96645.9713144198, - 96399.42211136232, - 96412.58182949589, - 95545.86201701668, - 96748.01232561683, - 96556.53529112086, - 96657.04377656122, - 96611.79891677048, - 97214.1761793492, - 96131.39404043475, - 96721.96485809215, - 96569.72587527646, - 96176.22696258772, - 96122.91322426367, - 96198.64527732105, - 97964.68713880659, - 97183.30733835287, - 92882.88036181602, - 93947.1652778539, - 96330.25949972049, - 97170.81081425113, - 95845.43465437011, - 94883.17834351698, - 96709.27952791477, - 96667.2918950391, - 95837.80625601206, - 96820.63808370597, - 96806.18517489852, - 97280.51740997269, - 96714.28622859313, - 96088.28655554891, - 96842.71240942011, - 96636.80398752526, - 96814.47946325276, - 96686.4149689825, - 96733.90105315663, - 96744.78801527941, - 96492.3193299354, - 96406.73123341237, - 96335.82539154506, - 96082.8637414932, - 96567.91127200374, - 96501.22061638958, - 96231.57047597128, - 96447.73644124497, - 96907.51876847682, - 96140.78208609398, - 96791.93089613823, - 96773.1294794952, - 97215.55371993229, - 96989.24436251477, - 96715.92227964214, - 96692.76062085203, - 96896.91552525175, - 96737.85869639236, - 95444.01440252263, - 96447.8287589237, - 96639.08049903584, - 97213.58157620984, - 96349.45899615414, - 96911.82889073166, - 96584.25000074002, - 97638.83972944805, - 97141.32121371166, - 97589.68831697167, - 96754.87507754394, - 97436.04173144014, - 96829.7050884141, - 96707.30691234408, - 96535.511292164, - 96405.25838544288, - 96596.4969197861, - 96957.15143187257, - 98108.28736915902, - 97092.03590641617, - 95739.18477075809, - 95638.78273951489, - 96868.09370002619, - 96840.061255232, - 97740.36484145897, - 97228.17238280359, - 96287.81181504241, - 97306.68660394431, - 97519.14188663122, - 96800.95464898097, - 96931.14707892697, - 96653.93028602129, - 96612.17178282065, - 94019.39320785269, - 96918.79607718707, - 95778.09112358528, - 94801.82599832956, - 94998.66487738185, - 95681.96009977852, - 95501.99445714205, - 95451.74998648891, - 97377.6500584912, - 96959.17409848377, - 97453.56935622763, - 97492.36374902399, - 97452.67144706869, - 97467.97384514623, - 96643.07015445872, - 96616.28197124632, - 96611.07880435153, - 95591.49480913648, - 96743.02101349403, - 96450.68991158345, - 96877.98110658897, - 97082.82303991095, - 98237.07311872549, - 97435.85714721317, - 96347.73945345664, - 98753.0342330029, - 97389.05654094371, - 97350.06903114164, - 97254.23934987192, - 96919.826641072, - 97357.32608817489, - 97311.70614692672, - 96312.49145069612, - 97342.74090899815, - 97676.19241492003, - 97533.87560124022, - 96983.61207113188, - 97042.01258952515, - 97651.32746016643, - 97136.55546326986, - 97605.64203060168, - 97499.57548817585, - 97615.00090956, - 97672.92128722146, - 97634.83104178979, - 95512.48672079766, - 95520.58581704031, - 96295.26828740547, - 96282.43445699873, - 96568.35948892368, - 96305.70007753118, - 96281.6988740464, - 96634.97232577665, - 96658.50723704832, - 96327.25960947742, - 96412.87128274282, - 95612.05251687022, - 96308.17494820403, - 96460.09274444025, - 96049.36643690022, - 96412.62955632774, - 96616.7559403405, - 96519.5204681799, - 97093.69642855125, - 96679.99009179635, - 95633.12109295135, - 96619.3340165115, - 96150.03424362313, - 95937.7713444444, - 96585.71992460922, - 96491.68898578656, - 95350.83394336532, - 96134.20248253406, - 96072.38567279669, - 96772.82588738113, - 96977.58687203821, - 96304.58681365351, - 96251.19968281969, - 96108.91834438108, - 96778.70350523331, - 96382.02705846845, - 94634.35092199444, - 96601.97537172223, - 96473.43688595422, - 96422.64317562626, - 96431.47888012671, - 96636.83424445745, - 96056.19248735494, - 96515.11905526402, - 96660.38035113053, - 95774.24926109349, - 97585.87618383576, - 96583.5257472604, - 95122.89837108535, - 96605.90599322402, - 96038.36554774032, - 96031.4993704607, - 96675.71260270195, - 97049.512435505, - 96433.845799983, - 95897.07037264043, - 96960.27176327427, - 96307.85692216411, - 96242.35848519257, - 96819.81129369602, - 97249.8102467086, - 96108.87427334944, - 97349.66316971318, - 97012.3360267975, - 96330.17839103569, - 98400.16393508099, - 96728.43531848033, - 95819.22417527653, - 97357.92552252565, - 96299.78998071494, - 97385.46389592621, - 97411.8360170104, - 97204.89839977278, - 96463.30750173924, - 96598.60562028212, - 95896.43296916565, - 96091.45432140626, - 97311.35174306807, - 96200.70472225144, - 97500.53674710442, - 96082.33537164425, - 96477.12621197902, - 96347.4403938442, - 96763.1280194511, - 96773.35799206587, - 96670.27291581893, - 94870.7294183785, - 96530.4881400899, - 95996.08028297019, - 95648.0622321095, - 95765.59330845765, - 96347.57634764894, - 96313.51649151853, - 96240.89790514634, - 97253.59328958677, - 96585.02524485815, - 97110.64567914454, - 96401.05087142391, - 97634.16117706981, - 97632.23610323192, - 96476.9266197321, - 96143.59715704634, - 96442.3959926909, - 97173.67520609817, - 97452.54296459325, - 98764.71093073962, - 94675.58068459465, - 96584.45858311476, - 96074.51018899358, - 96941.3855747379, - 96481.93148257826, - 96194.20097196527, - 96410.63417003947, - 96268.58433157318, - 96844.08726268722, - 96732.61589548577, - 97054.54306076036, - 96736.36947326055, - 95950.87856285187, - 96058.5884161396, - 96074.46008448287, - 96373.61215631547, - 96774.68889401545, - 95954.6226953649, - 97375.91125894338, - 96762.60907180404, - 96892.63356474544, - 96499.75723381033, - 96294.09088720444, - 96966.39468034501, - 96109.50994722702, - 96088.99615148573, - 96447.29551553998, - 95819.44644735986, - 96218.35482989937, - 95899.18906383448, - 96769.01595020863, - 96274.30300397708, - 96042.0069575773, - 97385.79270355738, - 96229.39248836122, - 96126.32784334563, - 96635.17803046739, - 96526.03756640776, - 96032.39838433285, - 97463.6827927217, - 95854.85581067526, - 96404.04885412315, - 96940.5437378161, - 96906.44900909, - 96406.17290872385, - 97193.59098538685, - 97229.6312230193, - 96433.95166449582, - 97275.9101009866, - 96243.29294451735, - 97395.09075685765, - 96491.31294403854, - 96377.89286649457, - 96395.26906016511, - 97324.02537320471, - 97620.07637011069, - 96147.39169169297, - 97643.64988982778, - 97033.93508477152, - 97602.881367329, - 97155.50811563137, - 98171.17574764158, - 96541.43397278279, - 96167.45474416234, - 95870.52327035548, - 96926.74644690406, - 96878.0650637567, - 96356.62202527624, - 97610.48729478249, - 97375.10606040448, - 98168.55916640947, - 97401.99871940678, - 96722.2929728447, - 97054.36607374287, - 96603.25260090239, - 98932.31091884513, - 98926.20655583622, - 98881.20399257346, - 98873.6590998779, - 98776.08147395353, - 98916.08043593282, - 98775.64297666437, - 98833.5386160878, - 98779.4951496633, - 98769.87019965112, - 98763.69912444155, - 98715.38337956829, - 98838.01226486915, - 98731.25835265023, - 98794.9356782363, - 98875.12446310604, - 98845.6917714939, - 97598.41715003968, - 97191.15673842629, - 97554.49945784982, - 96994.3545714313, - 96415.73464421919, - 96234.84158094184, - 97792.47295206528, - 96462.81227754163, - 97852.29653105894, - 97497.28727853562, - 97343.57538035887, - 97366.39316478191, - 97781.84828947709, - 98514.4612858039, - 98281.43831840085, - 97921.70930511011, - 97902.18401137421, - 98983.632695647, - 99203.2809335762, - 98509.44614370928, - 96494.98600367835, - 98740.78608913493, - 99612.16066233935, - 100399.53610597138, - 99242.27473376936, - 97873.62352691275, - 98601.01896303026, - 97723.80989181406, - 98367.93488464183, - 98698.73643764145, - 98474.73668821216, - 97769.5225019777, - 98424.79828892439, - 98849.99134497087, - 97153.8202347327, - 97784.87511330319, - 98488.59232974793, - 97835.98880603131, - 98697.76296828069, - 98425.30418388022, - 97352.5478411118, - 99087.60514794616, - 99562.51936967154, - 97438.32392949228, - 99581.18821252153, - 98484.49246054886, - 98589.19418356709, - 99047.9458477898, - 97904.87372888521, - 98685.34030967425, - 97236.56543939441, - 98552.63522931661, - 97440.7506574999, - 96448.97691094204, - 97272.57643613985, - 96709.59744547942, - 98547.70620576198, - 97115.24870623546, - 96930.11819667481, - 97074.16623154836, - 96568.92366528956, - 98713.83774017166, - 98345.9554260893, - 97740.55752143663, - 97988.18684320113, - 99349.28939642792, - 96556.14889918086, - 99625.77747749203, - 98427.86290460796, - 97468.41119559384, - 97532.46968364714, - 97025.5243570638, - 97403.19800982128, - 99189.38105820611, - 99130.3078520612, - 98512.10297397664, - 98519.8177010953, - 99017.67985713482, - 97619.72683427205, - 98914.83209812317, - 98147.84267591721, - 97949.55637290105, - 99502.83924873942, - 98872.0205731119, - 98390.87404103394, - 99053.11429206465, - 102016.60254936705, - 98075.21405525423, - 99162.58751241713, - 99982.38307176298, - 98292.59127337417, - 100060.98457894419, - 99185.22072761349, - 97947.04358444022, - 97474.60738990385, - 99170.7047386012, - 98052.15218821482, - 98616.68136712202, - 99500.63364741569, - 98316.9751512879, - 99176.98993944687, - 99162.04598470115, - 97788.31675277463, - 100348.89954635833, - 99148.26930216937, - 100486.82668676783, - 99758.98817475478, - 96889.7794321626, - 99026.6226858807, - 99069.25619307961, - 101823.31476410347, - 98379.14339417113, - 101380.81652138675, - 99254.27452910501, - 99227.13583415966, - 98212.04884196128, - 99094.77135415385, - 98915.86627395742, - 98121.78812235915, - 99010.43098706538, - 99006.76819217965, - 98421.28339426052, - 98918.94691074, - 98809.12475691538, - 99070.331362437, - 97874.19535094783, - 98942.96036569965, - 98368.76399286573, - 97911.02555719024, - 98818.24534258251, - 99191.65795239966, - 99272.95214509276, - 98629.16309416488, - 98896.61825153053, - 97353.8831923671, - 98413.72450899602, - 99048.52954857876, - 99860.44427206193, - 99875.65907184825, - 98991.31426615387, - 98545.72335094343, - 99143.15955432564, - 97910.12779784399, - 98656.64266720755, - 98406.94597948619, - 97476.14534117641, - 97524.08090876219, - 99171.65872471192, - 99548.50572708945, - 97949.35571979226, - 99391.34679357102, - 98722.02495329459, - 99374.50165106604, - 97825.10446462789, - 97650.77807951198, - 99091.39852136569, - 98663.5728126574, - 98159.03165818081, - 99060.55516943279, - 99070.36691418258, - 94807.18741906618, - 99956.68584656977, - 99881.38194405592, - 99269.75421848508, - 98657.65560967932, - 99187.14420424569, - 99130.37213728795, - 98433.94367818839, - 98598.39852284717, - 99397.67295607875, - 100062.94026884029, - 99683.93197275087, - 98942.47918301482, - 98372.2920372052, - 99106.89445006047, - 99057.76069575727, - 98225.6719769043, - 98965.17216239334, - 99161.06627467804, - 100038.45200630881, - 99231.69745173643, - 99643.13410786055, - 99121.89628822553, - 98896.0953062042, - 98996.3949186886, - 99010.23040006083, - 99067.43224177675, - 98982.5538246546, - 99326.93888038411, - 97455.17599729972, - 98980.69875328755, - 99685.34161040152, - 100612.93716200726, - 99244.69832153102, - 99226.22079845401, - 99091.55472439228, - 99026.64548034257, - 98688.75667619119, - 99060.11730816362, - 99629.11999021804, - 99571.7539254891, - 99395.9830884571, - 99183.91384425001, - 99022.60912279715, - 98991.26055747598, - 99097.9010589485, - 98904.92041991555, - 98790.64444216965, - 98653.03461351694, - 98528.28228471124, - 96470.76012407262, - 98077.79681744472, - 99214.362436891, - 98581.61307739322, - 97662.82472168292, - 97762.19782518726, - 98322.0050156767, - 98186.65877994802, - 98241.1113495342, - 98809.36210538005, - 98799.40792106478, - 98692.54803294275, - 98857.10511058902, - 98818.13714193161, - 97358.46679886585, - 96071.64726551576, - 98184.18254674674, - 98420.51887894224, - 99085.54243090276, - 99105.27578480003, - 98161.02751086211, - 98705.71088691853, - 98721.31378803315, - 98128.91359559372, - 98293.07266113821, - 97827.63907828067, - 98054.0065827654, - 98251.89202247094, - 98211.55320628641, - 96475.17933169345, - 98568.00044350624, - 98364.36914082733, - 98331.41182590384, - 98163.10895570937, - 97554.9960699299, - 98038.14058948433, - 98858.81885856122, - 96255.92043157357, - 98120.00401419179, - 99907.08283776883, - 97770.11547186453, - 98260.97237711879, - 98649.88742805325, - 98112.09979592523, - 98728.80932783807, - 98743.18237840163, - 96497.28753916033, - 99041.0309662276, - 98538.18176070268, - 98404.5074674531, - 98168.58123872355, - 99485.28366531829, - 98727.3121423661, - 98706.38695246876, - 98212.5660722969, - 96338.9907537572, - 94647.79050717162, - 98994.41997788764, - 96237.3014003704, - 94688.11906145522, - 96639.48963731402, - 95635.79388111227, - 95971.63945756324, - 96148.36985614852, - 97265.23793720463, - 96888.812856475, - 96702.93382964614, - 96685.11446346446, - 96692.14973493623, - 97854.41540216467, - 96886.64740803099, - 96012.22372465217, - 95855.37346994528, - 96019.51490257688, - 95928.73602388412, - 95655.37022945724, - 96175.94057358746, - 98401.53156330762, - 95386.7915315098, - 95383.19508052658, - 92604.63107627998, - 95893.574265848, - 96026.40843242637, - 96114.05896419227, - 95834.93768300924, - 95619.17778565394, - 96108.40628370653, - 95731.71785167878, - 95777.00472574684, - 95353.54589236321, - 95800.17831353597, - 95203.24310226098, - 95930.34153333298, - 95903.12103009703, - 96914.4073833856, - 97103.69288164194, - 96898.52471952, - 96820.8105552239, - 96112.34947297389, - 96008.4744666249, - 96893.41939654587, - 96865.8409444725, - 97240.38028997074, - 96876.82259242256, - 96619.39742322621, - 96882.99940588712, - 96861.44317975816, - 96768.5817251259, - 96559.08563953191, - 96649.40356388739, - 96625.72014898527, - 97992.50506999153, - 97617.39505268811, - 96070.12571463303, - 95866.20481677107, - 95662.62644960554, - 96100.86678198376, - 95405.1846400074, - 98524.57731541038, - 98061.51654616423, - 98127.50014794023, - 98433.46713226559, - 98303.3954720316, - 96465.29272664362, - 96421.49499570957, - 95652.29809552783, - 95574.25352251745, - 94671.14162737239, - 97196.83695998523, - 97409.25368271414, - 97234.04346137235, - 97434.01515339047, - 97272.13864563021, - 95567.54268381129, - 97324.16299961129, - 97481.45108043253, - 95459.71080597503, - 95521.93192587548, - 96559.7026621268, - 96622.87666955806, - 96449.25631444062, - 94919.54440569754, - 94171.18973519026, - 98378.94284214679, - 94645.87712676502, - 96735.91203018947, - 97334.69528656456, - 95915.62243658677, - 94473.57318014126, - 96498.2979299931, - 97046.83129228091, - 96532.6646683294, - 96214.62212633847, - 96146.8337078855, - 95343.9410888273, - 95506.46666204746, - 95380.57975889063, - 95213.69401511893, - 94761.32003739124, - 96370.41426861439, - 96556.18686331193, - 96600.23269030724, - 95312.03621158424, - 95103.86724211255, - 94154.4683582202, - 96651.05281133259, - 95926.00835539421, - 95794.56902475153, - 95275.96542639584, - 92619.51334005372, - 95388.1231928088, - 96533.09552389133, - 96602.4666381394, - 95710.95963260993, - 96173.23715080458, - 96169.80106348639, - 96919.26178312073, - 96999.24006270662, - 96911.02758063171, - 96767.7608495193, - 95402.18303854323, - 95963.6655367038, - 96323.93164666534, - 96035.94449947504, - 95826.13450428299, - 95894.3821805092, - 95735.81320135522, - 96785.2273252981, - 96844.44949459478, - 96450.55318015978, - 96234.86536056163, - 95910.45905898156, - 97216.8097752767, - 95733.15082062641, - 97623.71573684271, - 96003.07301754713, - 95855.84606940606, - 90620.59321338178, - 94139.8012458913, - 94032.80335215264, - 93807.67468704915, - 94732.86002550159, - 96955.0168977828, - 96373.51181593174, - 96024.31193605777, - 96039.53114090665, - 96558.40139577903, - 96648.53242134354, - 96344.26723680123, - 96248.28034246547, - 96483.28090692386, - 96054.44520130524, - 96524.24227801626, - 96583.58536032659, - 95881.63940456003, - 95096.87780489783, - 94429.634403017, - 96769.24653086865, - 95885.77494615254, - 97401.66966851291, - 96529.94166735753, - 96400.6315649038, - 96701.50888855853, - 96563.36738665988, - 96663.0086169134, - 96404.13831153684, - 95923.70592479738, - 95540.24503251979, - 95920.065981809, - 96456.96747554903, - 96427.6516351581, - 96826.02448370877, - 95922.0581596575, - 95802.9629154136, - 95957.78104570328, - 96331.52105283472, - 96392.03219267243, - 95481.26094749449, - 96072.651127653, - 96107.71912624051, - 95682.31879557903, - 96011.6169628847, - 98745.28871415959, - 98737.9075507478, - 98260.19273313228, - 92403.72030892958, - 92552.59924319923, - 94130.55860663287, - 92453.32910364396, - 92636.97281790803, - 94694.68806398017, - 93639.94569899137, - 94259.03278558327, - 91080.58784143622, - 93850.41662442079, - 92357.81244688503, - 92015.08959235293, - 92793.59818111316, - 94015.54400806065, - 93415.0685794173, - 92661.92845541582, - 92700.30450697383, - 92811.56373493784, - 88980.87619367571, - 93666.16904241925, - 92727.31906879041, - 92625.18394918887, - 92710.21548334243, - 92730.67067426581, - 92599.58217260841, - 92761.81424118878, - 92651.26372829395, - 92548.69810217191, - 94753.5297564697, - 92642.4602856306, - 91676.43793576607, - 92695.15487336805, - 93155.38758721903, - 89305.71197876369, - 94890.65745591454, - 93887.36045593988, - 93682.44991506475, - 92689.24617566908, - 93904.56333636155, - 92764.63612228677, - 93226.39690794115, - 93143.11311426201, - 94983.58739011025, - 93345.5384733388, - 93475.56240329082, - 93855.61888073095, - 95749.39705457314, - 94465.17063363985, - 92913.17761014139, - 91312.64033973779, - 92365.60828492136, - 93034.01413382801, - 96232.6883024668, - 97197.31119879312, - 97345.58098981141, - 96319.04144083924, - 94787.68098338218, - 94304.28587484072, - 95375.71980775791, - 96010.91751038717, - 94846.74238052499, - 95360.36419013362, - 95443.67008227661, - 95781.4838692387, - 95621.74045129302, - 94709.05739456239, - 95069.66525755977, - 95628.14642198732, - 94459.15082891459, - 95527.20667464145, - 94762.37057915328, - 94658.19240918643, - 94716.98202491149, - 94759.00609204093, - 94646.88730549908, - 95292.52782742439, - 95093.22706462545, - 98085.07588417802, - 95163.75908553116, - 96006.77287976355, - 95274.60828290615, - 94773.27914431288, - 94843.32769305678, - 94756.04785280023, - 94693.04021624882, - 95274.55463163379, - 94205.42306946588, - 94740.62358451245, - 94914.46333674647, - 95731.94340542807, - 94554.58874211222, - 96091.204926268, - 95643.38624755875, - 95405.5970323345, - 94965.90340529142, - 94090.45690331612, - 92687.32405817328, - 94400.56846677243, - 94532.99011271482, - 94838.88278888688, - 94912.71843664766, - 94702.53619375687, - 94259.06712940332, - 95687.5583436565, - 94745.48610069028, - 94924.7628056497, - 94836.83100987966, - 94635.31494511566, - 95171.36460552194, - 94428.00833897035, - 91875.6118444357, - 94818.5478788063, - 94803.47505405096, - 94609.06856092627, - 95243.05174065192, - 94579.1668497888, - 94710.98077661607, - 94636.4031377064, - 95594.04154313843, - 94853.46116542409, - 95262.41295878915, - 94996.61867838957, - 95427.51893881544, - 95141.30835602302, - 95135.73958053072, - 94811.20964058898, - 95308.98963794683, - 95213.77887412795, - 94550.01100453151, - 94616.6585852082, - 94915.01791906256, - 94779.60175355068, - 95651.87929649846, - 94969.43121341393, - 94871.66004225804, - 94698.2564749882, - 98122.6370414771, - 94609.75573408123, - 95744.51531875192, - 95569.49080974681, - 94553.34862649688, - 94068.90013805934, - 94911.10914154527, - 93841.09081628201, - 95055.96301467503, - 94973.76103672285, - 93860.33853556491, - 94666.08189515283, - 94804.05777877627, - 95192.48874345585, - 94682.03972500942, - 94318.87336662205, - 98071.86657727559, - 95074.67859421566, - 95052.34933786246, - 94847.03071224976, - 94712.39449672872, - 94681.03509595625, - 94662.70335696908, - 94530.9667988148, - 94394.743184273, - 93236.21560331441, - 95228.59152965351, - 95599.18088294458, - 92172.3185204082, - 94730.79640190289, - 95015.49625623692, - 94674.89580671789, - 95460.7576657949, - 94694.88936601186, - 94637.44384110306, - 94023.65044193376, - 94711.8919185092, - 94639.7976547818, - 94969.34668009236, - 94867.71860626241, - 94499.29954296813, - 94412.16071475198, - 94500.6446202604, - 94316.72565507321, - 94747.77428662438, - 94831.09840327874, - 94872.79287174557, - 94598.10840219341, - 94789.93569354182, - 94645.92150016353, - 94772.43466967792, - 94783.49907630085, - 94624.56371474003, - 95782.49090316397, - 94352.71458049152, - 94039.43659745945, - 94724.12280359474, - 94549.95722461416, - 95172.62949097781, - 94748.03678735308, - 95142.30696566738, - 94079.97573473441, - 92867.65170326555, - 95137.86898625335, - 94657.09089040948, - 94592.18007251328, - 91386.79521336866, - 94302.9983659527, - 95035.60486780475, - 95213.0622434433, - 95306.71022996533, - 94700.77181220899, - 94617.81259757694, - 94535.68576734806, - 94750.88896059677, - 94470.20509490756, - 94511.66669647257, - 94490.98493329533, - 94846.70037648812, - 94034.72001872609, - 94559.50779408682, - 94466.7376842554, - 95513.58278963793, - 94305.51369188944, - 94851.28150629238, - 94772.25786639804, - 94518.72288699445, - 92600.87220891484, - 94385.63245566067, - 96765.01998356344, - 94624.67668233525, - 95320.26347648272, - 94187.4208589902, - 96407.8149457741, - 93866.57023587385, - 96732.86821624868, - 95848.64233101926, - 96229.66105626737, - 98178.17510730785, - 96273.17959649833, - 92820.89814897874, - 96599.13805686972, - 95659.94479562767, - 96357.58676902352, - 95689.95404916865, - 95858.68960868126, - 95814.95649081406, - 97069.64943071302, - 95560.28088297267, - 96806.8541605258, - 96947.40675273385, - 96920.50398772888, - 96767.50358245717, - 96817.66055571858, - 97237.89195347154, - 96888.97576383248, - 97141.56965571626, - 97272.16196531034, - 97095.49525391203, - 96704.00303777175, - 97189.19276118421, - 97208.55798356787, - 97237.84080032888, - 97406.36037264415, - 97126.32920940703, - 97194.39851002919, - 96183.9812972283, - 96795.31918949624, - 97051.71285679028, - 96645.4446535775, - 97016.89968225527, - 98970.15914526228, - 96164.31165177577, - 96955.80310269099, - 96766.57575414197, - 96880.45975619479, - 97320.49185837018, - 96510.18842656737, - 97003.43303968408, - 96660.51533943972, - 96966.02647052168, - 96859.70450714213, - 96932.30642163414, - 96852.77079415339, - 96081.2975453023, - 97015.25817987997, - 96839.05193444177, - 97817.707556705, - 96743.47300321168, - 96633.1960028662, - 96915.22190900354, - 96645.1229128067, - 97004.95986761729, - 96566.99750987656, - 96241.34047154605, - 96094.8508150237, - 96329.29923380495, - 96303.92041500923, - 95909.7739787418, - 96400.51278286969, - 95574.39534418302, - 95694.79665191291, - 96078.87408767999, - 96745.54904144225, - 96885.45509832901, - 96570.03585592323, - 96847.7893432129, - 96580.26314007488, - 96283.38222595652, - 96330.75641404516, - 96505.76788267054, - 95933.78130606312, - 95969.93628717288, - 96241.8368167467, - 96516.24082699847, - 96352.37619288662, - 95977.4908427389, - 96086.9490860762, - 96094.51833331272, - 96758.39095887466, - 96034.32749733706, - 96026.76816689323, - 96158.4488359556, - 96031.66005598055, - 96864.42186310086, - 96587.15552488458, - 96788.89525885877, - 97189.5131054329, - 97669.69791198618, - 97278.5656163335, - 96896.58750176255, - 97154.72425616732, - 96987.80225378742, - 96695.54475332797, - 96726.40817559678, - 96767.46602322998, - 96813.4343547639, - 96791.18101461837, - 95389.10664694483, - 95472.00274613315, - 95935.5419641612, - 96253.58305118927, - 96263.70637434645, - 96534.04849627241, - 96198.74714645866, - 96023.10216322435, - 97066.1566770924, - 96512.6439304231, - 96656.65493202257, - 98642.78682170947, - 98026.80584910973, - 97317.9470175812, - 97558.53189592143, - 97354.04987112107, - 98156.10361722215, - 97559.12810431966, - 98672.80035077463, - 97608.46722365031, - 97720.70350653208, - 97761.99442165645, - 96752.4665017377, - 97746.8391580485, - 97819.4972376039, - 97811.11864279254, - 97693.57749236286, - 97735.9507021614, - 97384.36803091576, - 97155.80752875579, - 97787.10318478926, - 96725.27797613826, - 96656.51605951994, - 96621.34244090467, - 96787.80852813035, - 97481.5752702023, - 96763.64967872995, - 98517.20808727229, - 97409.50882998393, - 96746.40104686156, - 96387.0378486012, - 96137.27428645456, - 96447.65576692639, - 96500.05485471405, - 96602.41413482858, - 96347.26384012886, - 96798.05259841571, - 97123.64353111561, - 98810.40128605721, - 98748.83379870633, - 98766.84037371344, - 98595.68155874425, - 95432.28216788654, - 95102.33265077158, - 96969.06747778888, - 98047.49514396398, - 97477.31474980435, - 97384.80366070305, - 98571.74309474658, - 95476.30474211962, - 96247.39210484998, - 95988.61012463992, - 97164.97647400496, - 97510.69098668513, - 98349.87077216271, - 98009.1006468227, - 96860.00354930486, - 97218.18359466371, - 96532.6513290047, - 96476.99449429182, - 96460.3440809962, - 93363.71919768747, - 93502.02146333765, - 93218.26568575818, - 96605.96850560357, - 96834.80703834713, - 95965.26838759349, - 94954.26355620637, - 96061.1094111204, - 98472.89573129527, - 98477.25442843478, - 96663.3347349886, - 97182.40630309808, - 98498.41434807747, - 96705.80879914662, - 96932.7889750408, - 96884.50148839512, - 96614.16469347998, - 96666.70966909935, - 96700.68589331902, - 96643.9005120101, - 96541.9681406362, - 97087.54671590365, - 96751.41823297429, - 97088.14880740178, - 96691.22132401943, - 96809.66561279182, - 96774.85380189044, - 96773.12113524246, - 96537.39245144221, - 96631.60109535737, - 96479.84660377468, - 96957.50399046045, - 96802.58799326436, - 97026.39229748285, - 97321.50714071444, - 96685.14736048535, - 96659.44539572205, - 96476.29445285945, - 98504.94937934296, - 96505.43473450017, - 96630.14481112546, - 97079.77003968997, - 97164.16435672548, - 96758.34868779706, - 96814.38545725966, - 97131.06442362265, - 96587.63072624992, - 96701.44181961339, - 96868.32753094017, - 96485.2623043036, - 96544.79575713704, - 96879.06539514555, - 96650.5251142157, - 97056.66087663827, - 97018.7876594228, - 96726.97841332003, - 96785.79342645025, - 96719.79877048176, - 96500.3647531615, - 96920.00376965974, - 96805.25180958064, - 96511.27388316976, - 97143.69979917424, - 96785.52822630318, - 96751.7242293975, - 98488.89658362548, - 96527.82964364873, - 96815.18595416151, - 96727.94539580634, - 96877.61190695128, - 96674.53853073626, - 96755.77967969238, - 97629.85915951653, - 96896.55417266351, - 96874.61155723894, - 96781.7373211774, - 96671.25152661269, - 96934.94898597764, - 97005.77074047142, - 96964.78110583073, - 96640.3915108683, - 96561.11544487227, - 96787.83212641206, - 97117.91370467145, - 96752.7630566314, - 97904.95870247688, - 97287.61876639193, - 96977.41506513029, - 96672.9812022687, - 96586.3268270632, - 96797.33031385214, - 96770.78381407568, - 96767.69056492882, - 96916.62444917303, - 96736.187248987, - 96497.40326486343, - 96981.69606403777, - 97757.99670975313, - 97360.13554374868, - 96792.24969134637, - 97386.8040364756, - 97041.45585776801, - 96624.01938254207, - 96974.28350714296, - 97156.22383491664, - 96954.62064886169, - 97046.79482101345, - 95844.28052724677, - 96795.23928720718, - 96772.56610132441, - 96821.18944890518, - 97037.54167528427, - 97304.17187437204, - 97045.7174310999, - 97031.3088470609, - 96973.7313647934, - 96827.27721865964, - 96836.63104835567, - 96915.11359133502, - 96603.10265344591, - 96572.35122948136, - 96562.71215702499, - 96669.45654037285, - 96608.97450213194, - 96780.12324046777, - 96759.8367076845, - 96729.07888575827, - 96451.36476325426, - 96426.58864894029, - 96654.61006042475, - 98502.39684963804, - 96710.20852553143, - 97529.59178857305, - 98492.45967203799, - 97097.47714912827, - 96949.62066620833, - 96872.36708461096, - 97572.7954448912, - 96534.13113359883, - 96670.03282167818, - 96915.56474058192, - 96690.79996780091, - 97081.73959470788, - 96645.28675952984, - 96845.49984264001, - 96791.42873166909, - 96848.6019348336, - 96653.33167046132, - 96798.09730894824, - 96830.20824198317, - 96974.68588435129, - 95329.09589374838, - 96625.20312840438, - 96583.08101942415, - 96848.58357963007, - 96685.21610856292, - 96647.86296497285, - 96749.19177745887, - 96667.27172199388, - 96915.00366898013, - 95683.09108910317, - 96463.21403142411, - 96884.74639022724, - 97951.06604016566, - 96603.17113805444, - 95950.60579597944, - 96582.65960470523, - 96864.74890763631, - 96899.74561231451, - 96767.43202743762, - 96984.0156607433, - 96697.59306293263, - 96742.76428952735, - 96935.54268135317, - 96991.60346683899, - 96580.8583468943, - 96480.30494028228, - 97026.73007218333, - 96873.58873560156, - 97214.28101702654, - 96962.13430709024, - 96445.14131578358, - 96952.0852964525, - 96485.30175383571, - 98188.17126174309, - 98087.3338631131, - 97264.08371499478, - 96567.84669526415, - 96692.64254266855, - 96954.5126568193, - 96442.24721615986, - 96675.1674827983, - 96911.71700742826, - 96559.09520602223, - 96964.90990095795, - 96368.1267297445, - 96354.29226248538, - 95704.0871202312, - 96138.82096969092, - 96702.30104154837, - 95863.078617055, - 96928.70418989572, - 96875.43456713467, - 96712.85163544948, - 96210.68445716402, - 97643.43217333438, - 96875.38177626212, - 97277.67379891923, - 97650.21348938807, - 97380.97035221593, - 95912.88033660327, - 96875.44858847588, - 97090.26472678532, - 96986.78948010856, - 96355.34401319342, - 98484.83314214389, - 96480.80058099459, - 96582.01402568171, - 96882.04031575473, - 96747.25944879792, - 96853.94619098958, - 95902.58151687872, - 98205.92395781298, - 97674.61704340234, - 96816.42131470822, - 96625.30102032366, - 96574.89605254125, - 97026.03297053343, - 96755.84845242432, - 96494.99482485962, - 96639.0949732792, - 96550.01108530164, - 96575.31613115326, - 96810.72873758491, - 96896.94014138209, - 96693.47055992209, - 96951.68482481911, - 97105.86446933058, - 96683.343489294, - 96700.50651493037, - 97613.5093531771, - 97632.10124528216, - 96831.69055597908, - 96828.99548296859, - 97813.18960016311, - 97805.18437428074, - 96640.17245945708, - 96731.09231285357, - 96542.83564645311, - 95421.91735289371, - 96934.21301456064, - 96053.80630400538, - 96579.76590487406, - 96621.95641731111, - 96695.15836873942, - 96467.60417095249, - 97510.01962082756, - 96836.22412942452, - 96686.3684942306, - 97774.42866113664, - 96427.1842433544, - 96602.9455448259, - 98341.41820230329, - 96759.39098466327, - 96654.14513994215, - 97094.20573290615, - 96534.89129183585, - 97845.68054608024, - 96714.32338601344, - 98362.46614454236, - 96555.05094020838, - 96417.4243506057, - 96624.55409529047, - 96913.27672047008, - 96613.64565810803, - 96882.63562796098, - 97785.31723795002, - 96921.65832155356, - 96574.44776110545, - 96722.32663398494, - 96695.61808666041, - 97113.91196565128, - 96976.68282643448, - 96054.400615084, - 96278.15788483768, - 96861.56370770434, - 97796.07080948977, - 96611.246762707, - 96530.79253993953, - 95901.82083235442, - 96962.41375364321, - 96900.49410984787, - 96440.3614255588, - 96738.66732022622, - 97200.14076518768, - 96926.75612600744, - 96651.84522301337, - 97627.58936686792, - 97563.98838997139, - 96560.8916778657, - 96729.69482051903, - 96715.7628390581, - 97379.01812972916, - 94485.92993817783, - 95302.46268343864, - 95505.88427993505, - 95182.96656441354, - 95083.07696160226, - 95260.63775038713, - 95343.04710668822, - 95077.9137547502, - 95200.52568374142, - 95457.42674465815, - 98692.43143064567, - 97571.51683328462, - 97573.23040616274, - 97722.41636121254, - 96711.97005754894, - 98202.27708314388, - 97820.56830441093, - 98259.11178546748, - 97235.2488696914, - 97297.7274926661, - 97293.5203062695, - 98708.3190257109, - 97802.97859779913, - 97828.5668503006, - 97770.18528248275, - 97622.16011647054, - 96887.45716809586, - 97090.03432996322, - 97697.42848707616, - 97701.66892815946, - 97585.79298176516, - 97486.26616142577, - 96505.5934631506, - 97579.4448614383, - 97691.63703682291, - 96515.60149309262, - 96526.16766938524, - 96542.88730412883, - 95826.70973681552, - 95195.45569059276, - 95229.32767677493, - 94971.08522590312, - 95259.91296974945, - 95151.27865865134, - 95457.42579193789, - 96625.91253011048, - 96650.26887770933, - 95953.43758977612, - 96414.9173008834, - 96657.44331032071, - 96774.09206013042, - 98370.08752364217, - 98185.39228188255, - 96866.57408532791, - 97930.86589331932, - 96177.19856058512, - 97176.04373508078, - 97153.25597882869, - 95838.54674259001, - 96532.8341303869, - 98997.74271020413, - 99362.59751327203, - 99276.9196152002, - 99226.83402346286, - 99522.14887276676, - 97465.09518672612, - 96648.9363700922, - 97362.29677323089, - 97352.27827718583, - 97314.13790026988, - 95480.79812433262, - 98668.36393861687, - 97838.4175081634, - 97754.15865943547, - 97387.10298484987, - 97017.6751012583, - 97715.03542524244, - 97428.2088550206, - 97045.79560002222, - 97717.63943455054, - 97512.25460842131, - 97068.03081922044, - 97443.46951981564, - 97329.89355877684, - 97519.79955646732, - 97844.94572301708, - 97678.1464428742, - 98526.54572504741, - 98430.07797759793, - 97500.16873207534, - 96981.97321773143, - 94617.5959694371, - 95301.3607194778, - 95227.77092314835, - 95402.52158220478, - 95276.97798041081, - 94853.13681242797, - 96019.73206058989, - 95949.12131101474, - 95997.16066474574, - 95427.65531943327, - 96645.63733017922, - 96622.44802724649, - 96637.20944908995, - 96402.067408069, - 96546.81074094832, - 96396.69753430235, - 96935.23882458691, - 96582.14749337402, - 96220.7703218342, - 96871.32320011256, - 96963.41552878823, - 96210.59439600962, - 96315.24613181091, - 96028.2888002032, - 95489.22963590887, - 95828.46924619444, - 95482.44304451962, - 95066.06523441382, - 95488.52095752831, - 95505.50501741502, - 95397.10356995185, - 95504.42605081353, - 95949.84954429526, - 95510.02889292239, - 96156.074298552, - 96344.83157727902, - 96192.16190696902, - 95914.16367038043, - 95991.06452640316, - 95745.4694082097, - 96072.76062132008, - 96296.57518040262, - 96237.23840449286, - 96100.16964314734, - 96577.18594978366, - 96564.47351993735, - 96768.15156923435, - 96405.88036665124, - 96370.19303826737, - 97545.38850460328, - 96249.72659060232, - 97705.70304050583, - 96647.32091240633, - 96573.99731256816, - 96536.36409486223, - 94888.48155674861, - 95501.8125864358, - 96398.60994140033, - 97087.09725827706, - 95858.67269394762, - 94889.58026607656, - 95744.0722676581, - 96539.2876843912, - 96488.71126504915, - 96574.07459048775, - 94476.68554039652, - 94952.05763640381, - 94960.14806309502, - 95868.93237525053, - 95844.61270594754, - 95987.03936165375, - 94066.51607848209, - 93976.18462674941, - 96358.25249911078, - 96321.80373689976, - 96114.11946368766, - 95768.86401324993, - 96245.67690227392, - 97449.2228277016, - 96919.80862750238, - 95714.35022151601, - 96636.93741201112, - 96668.40960032, - 96517.34543879435, - 97008.15894636505, - 96807.74423569046, - 95387.72814612064, - 95418.41077655359, - 95472.67938384521, - 98114.52152816013, - 98111.97280969669, - 97753.21078683695, - 98142.06219207752, - 97488.66800355395, - 98144.87686544789, - 96528.57510021586, - 96901.55938078823, - 94256.97992301545, - 94390.62485294472, - 94474.18506646619, - 96818.20189981317, - 96638.80405463175, - 95888.00973910451, - 95799.49717635973, - 95761.360020285, - 95802.05331128874, - 96973.49939574185, - 96633.26092124682, - 97052.8332660283, - 97011.81451068369, - 97113.70285257122, - 97210.3004088966, - 97188.26787866931, - 97056.56327204366, - 97626.44431224155, - 97350.90150160708, - 97162.69508453069, - 97817.20098235017, - 96022.18132064518, - 95680.02527851156, - 95894.41366117746, - 95794.3620644187, - 96845.07860198681, - 97276.29878619949, - 97481.0467852597, - 96200.64224390368, - 96069.95563247148, - 96759.80185472532, - 97151.48266936177, - 97525.66398682565, - 98129.8335044742, - 95869.4969027973, - 95947.6612354604, - 97219.2344849453, - 97524.9702327776, - 97462.76341227313, - 97570.78852224046, - 97965.90473223805, - 98426.11814680099, - 97400.88013760047, - 97830.50425286932, - 97563.51909740941, - 97959.05424320973, - 97250.30982328247, - 96876.62587606598, - 97177.84417040872, - 97044.98522321004, - 96890.44446357607, - 95746.74077759727, - 95514.38455692613, - 96085.91161839501, - 95540.81075134124, - 95161.64737314533, - 97743.37633435942, - 97368.18786729996, - 97400.16397729573, - 97615.97056569872, - 97788.7651245566, - 97923.16505107327, - 97749.77214743374, - 97737.47168433828, - 97643.42074759667, - 97749.29069670282, - 98137.79198213125, - 97782.44112987598, - 97566.10709216155, - 97247.41509419652, - 98703.6866543077, - 97300.96068285858, - 97415.93818773415, - 97789.92707115466, - 96750.40498635444, - 97809.32654645263, - 97809.59302628535, - 97788.58031988013, - 97768.46861576667, - 97504.52578621544, - 96578.02421964555, - 96409.96532967011, - 96325.12988946559, - 96767.96478692938, - 96753.02617057231, - 96869.39684947954, - 95763.40443589797, - 95719.63523794102, - 95771.1095203462, - 95203.1376507783, - 96270.15699232905, - 95244.0575474311, - 96476.2244248884, - 96533.83917036175, - 95627.6655653288, - 96487.74751288781, - 95709.93291907338, - 95658.32063821593, - 97536.70985088356, - 98229.18483310309, - 95989.76467211267, - 97600.72228126202, - 97959.01602952153, - 98371.01061870782, - 97789.64547242364, - 95737.0210501743, - 96247.5730261708, - 96716.89120782126, - 97052.70205106144, - 96826.71329736618, - 96991.17451689237, - 96760.3513556949, - 96464.55718535923, - 96534.278171482, - 96405.88296277358, - 97516.13365436997, - 94593.1532092616, - 94062.66633331862, - 93616.21500771031, - 96780.96571153034, - 96527.45528447787, - 95617.05222697879, - 96115.57754246322, - 96350.897783121, - 95713.33557938566, - 95448.68746731608, - 95293.92851935429, - 96424.48707246192, - 96049.17164979059, - 97200.7730276014, - 97446.90168966807, - 96440.9774229316, - 97474.17223906965, - 96627.09595023748, - 96508.0649915055, - 96252.73601927159, - 96912.8602518081, - 96640.9561634297, - 96548.78849614567, - 97092.6033555316, - 96137.93531003897, - 97681.82650463261, - 96900.36956234596, - 99054.93251049488, - 97621.5308801509, - 96840.81091989319, - 97398.68149419299, - 96052.90997742687, - 97140.91541633583, - 96883.35271778212, - 96961.63219735424, - 96593.15685874, - 96942.49668912489, - 97329.44637332104, - 97283.72077280736, - 96411.51796021752, - 96339.24938310328, - 97736.94813016456, - 97910.96993785165, - 96786.0414096176, - 99128.8683145138, - 96211.67174914089, - 95720.51419720666, - 96607.09318109117, - 95599.53684369884, - 97078.78573950223, - 95886.98258580548, - 96463.65900406071, - 96509.39820433313, - 96509.4296845907, - 96099.61138898744, - 97122.96681206446, - 95950.47769478709, - 98675.12932763455, - 97289.15046436754, - 97014.53523334138, - 97526.53767625983, - 97181.11827309501, - 98660.63217404629, - 98412.44821844941, - 97765.48056752425, - 97130.87354039263, - 97611.64317798252, - 96607.81846515763, - 97565.68134613338, - 97878.18936700777, - 98088.69457083048, - 102537.64337792993, - 97336.72314742803, - 97384.85502032931, - 97739.50461726454, - 97790.18756915494, - 98423.75905911079, - 92914.29701391104, - 94521.0965568673, - 96813.45598094136, - 96835.92874774396, - 96172.09176973494, - 96100.97014585767, - 95705.40993449507, - 96827.38300101372, - 96461.24693139427, - 96535.82894445845, - 96054.16110461712, - 96003.46856538253, - 96117.67522368413, - 96380.27321562011, - 96039.52555482746, - 96091.70581400175, - 96269.04428473447, - 97245.37390852053, - 96333.93226534751, - 96524.6669755778, - 96558.43883318681, - 97209.46385807885, - 96281.59320080571, - 97334.199382075, - 96164.9303846309, - 95667.80679021226, - 95658.32343165908, - 95648.34307354958, - 95901.87035986596, - 95796.6220412549, - 95732.4030502184, - 96335.57621806604, - 96407.22560594323, - 96440.07084499848, - 95514.95574487532, - 97442.1178182285, - 96871.98342831364, - 96189.19527054564, - 97753.78297929207, - 96341.35508815081, - 95819.77591622746, - 95836.41008943335, - 96259.9082581497, - 96624.18025269137, - 96595.38846744089, - 96273.9014736457, - 97698.15736668535, - 96237.38326345755, - 96272.62459980143, - 96297.69636707871, - 95372.37969661041, - 96464.1710890281, - 96300.0043841075, - 95976.46298115156, - 96423.89730001795, - 97225.12273154467, - 96380.40661308727, - 96196.257368652, - 97687.97327166176, - 97764.93718471118, - 97964.99194759796, - 97077.67459906588, - 96053.464316358, - 95950.13199504191, - 95847.60434582221, - 96119.17908740342, - 95905.42580827077, - 95919.99780721203, - 96185.37627813521, - 95946.3884071162, - 96244.27988515895, - 96196.74025182828, - 96174.10171537164, - 96538.8108213843, - 97589.77077865561, - 96255.53165206172, - 96989.12139942696, - 96386.3485642869, - 96209.17705200447, - 96404.94279951866, - 95582.13652811556, - 96075.92114230867, - 96933.47649225005, - 96208.32555016727, - 96486.76296481364, - 96310.8706914388, - 96156.77295171334, - 96208.35637264428, - 96987.0677801975, - 96412.81309344785, - 95605.5078529397, - 95576.46893477392, - 95889.53071914573, - 95560.7221366576, - 95552.49574202929, - 95550.8641318485, - 96405.3198620752, - 95915.425645233, - 96264.80700176922, - 96174.34018844058, - 95670.97648775595, - 95372.88665283406, - 95667.97156819428, - 96281.8187118494, - 96786.33551603762, - 95652.45140521994, - 96204.29166956923, - 96273.36385473177, - 96163.50814490586, - 96142.15372609507, - 96246.21706337249, - 95604.22358935632, - 96630.39978608028, - 96866.28592075064, - 96564.72992711587, - 95596.36627113551, - 96182.32358713142, - 96286.66809125463, - 95814.45750461605, - 97301.69481913165, - 96886.2262880243, - 96912.85156473947, - 97085.38663455553, - 97355.69179208958, - 97043.19055357405, - 97406.83103336953, - 97508.64091238416, - 97596.85822151981, - 97281.93703232154, - 97339.53315472855, - 97182.15385952276, - 98255.45010528169, - 96708.5597033612, - 97342.9103563253, - 97298.42341187966, - 98020.16838808233, - 97476.84212265511, - 97585.2552421273, - 97850.09960847285, - 97800.77052809988, - 97497.40137546581, - 97172.85679925286, - 97230.27471512488, - 97465.08902518246, - 97572.7293771363, - 97060.83487204376, - 97373.64682205649, - 97530.9950602946, - 97230.78206970361, - 97683.2450611929, - 97367.93418176113, - 97194.9145170215, - 98030.3922687115, - 98164.50513674611, - 97211.33338583425, - 97167.07602680264, - 98102.01760177093, - 97473.4025173577, - 96869.55087283194, - 98618.6314379455, - 97980.37305163042, - 98040.98610521741, - 97099.06003533595, - 98609.76983635421, - 97732.09002327014, - 97154.99065747266, - 97218.35146138504, - 97299.95816584109, - 97626.13132471772, - 97112.35613433391, - 97560.98718189307, - 97185.7097878747, - 97559.13458489727, - 97201.16002150408, - 97516.02947908005, - 97270.02110151788, - 97433.41068898393, - 97833.68675936971, - 97325.64609840355, - 97103.12815964877, - 97473.72704771126, - 96893.86441244776, - 95331.67170746473, - 96586.20076828018, - 96137.68930318531, - 96950.1808551135, - 96390.43113801478, - 96858.54175843939, - 97167.39841072715, - 97743.58448295263, - 97449.0985514171, - 97642.36452938811, - 97990.33956338989, - 98636.37989407925, - 97499.45757321935, - 97494.95806383107, - 96707.92401672102, - 97387.15964980441, - 96595.88973241366, - 96547.16032979287, - 96300.87116130441, - 96004.06807647034, - 97343.70893048414, - 98022.64385800273, - 97909.08890877801, - 97379.30529940335, - 97912.68866754905, - 97483.5508578201, - 97453.80616460227, - 97390.56459064402, - 97854.95892464767, - 97689.45585714692, - 96459.9064706218, - 98220.8617121839, - 97896.16988465277, - 97276.66123026267, - 97720.29522867472, - 97988.47049740942, - 98169.99665670788, - 97706.1575554865, - 97314.87265253808, - 97929.82001151697, - 97928.27341274354, - 97607.80752654132, - 97786.29869250092, - 97805.14139405916, - 98093.39526957169, - 97448.93124443709, - 97659.20648661858, - 97773.13707838414, - 97290.81332207196, - 97691.44923546405, - 98040.70809859729, - 97682.17810885303, - 97902.9875639131, - 98103.51583993803, - 97433.16878255778, - 98011.69742537098, - 97956.78235187841, - 97712.75424892707, - 97337.3673240496, - 96357.32745947987, - 96262.42166171632, - 95826.03997621946, - 98066.1726574899, - 97701.3804478227, - 98084.85055027793, - 97165.59160948182, - 97482.29772041427, - 98201.32974009505, - 98883.68742329624, - 98667.49767503393, - 97488.73626458432, - 96010.7115980084, - 96872.15210964113, - 96379.22200820879, - 96906.24888628504, - 96854.63537850163, - 97264.45498533218, - 98010.49563338193, - 97612.43902974202, - 97623.61756268641, - 97499.04801278567, - 97608.46277176453, - 95934.14872105536, - 97455.35219073194, - 97335.19348886795, - 98225.34302642361, - 98229.77888928792, - 97482.53862767345, - 97276.46828922024, - 97499.88151314572, - 96299.26984037684, - 96500.32458861038, - 96778.83528846483, - 96483.80491367223, - 100136.85344995526, - 99551.68465587133, - 100437.39062185503, - 99551.98543303015, - 99562.25712118535, - 99359.06703624275, - 98574.50972172228, - 98538.96596090084, - 99762.90131115422, - 98977.8256826855, - 97325.59157415244, - 100141.87894949828, - 99845.35414701192, - 98971.68304848456, - 99673.93123472382, - 99291.99320881635, - 99276.35931151945, - 99120.91791864607, - 99397.55134035554, - 99184.60882109228, - 99142.08519452307, - 99316.2243501031, - 98622.91972235353, - 98628.35943001318, - 96995.58808119217, - 96874.32517213062, - 96984.11595684849, - 97109.16179890749, - 97136.19437689305, - 97491.9260662067, - 96362.21507081333, - 96805.5627237504, - 98078.46725482005, - 97340.80449807804, - 97488.0322813689, - 96435.9592073502, - 97411.333447029, - 97430.46651931974, - 97362.69630546733, - 97147.4098591697, - 96935.63520473371, - 97289.22073553668, - 97850.12598200802, - 97597.36616865019, - 96412.37649005053, - 97375.63672739729, - 96830.34367432375, - 96727.0857416317, - 96968.7576874346, - 98028.98765417963, - 97254.19037202669, - 98343.20918176853, - 98178.54170307206, - 98199.86102071151, - 97744.85805549823, - 98056.94048479544, - 97951.56325025932, - 97888.06964139262, - 98115.52004533702, - 99023.4635169911, - 99401.61250638886, - 98987.744183523, - 99579.00966292991, - 98635.38198452107, - 100098.40192877872, - 98017.95961808166, - 99022.78768529206, - 96435.29713124092, - 96931.12324851674, - 96463.50079272543, - 96120.0822298696, - 96240.44430881485, - 96101.99869734746, - 96315.36819369205, - 95937.25203342551, - 96235.33414286007, - 96530.33748860421, - 96182.08723044166, - 96258.26403190757, - 98709.8651975024, - 99109.15521458666, - 100640.4787093486, - 100235.20982182995, - 102213.573130387, - 100665.20298807592, - 101380.72545035236, - 99856.27897972005, - 99786.36456658994, - 99683.00699846164, - 98812.91818171015, - 97843.27029212235, - 97728.72992702796, - 98904.72563619397, - 98942.09530630929, - 98891.2416273708, - 98417.88816057792, - 97988.12714007127, - 98185.14683392025, - 98502.26373555082, - 98563.51548863579, - 98515.43976060345, - 96994.13649214181, - 98899.25788886541, - 98911.1768536842, - 98350.05034462475, - 97442.5837413775, - 96877.27316989908, - 96504.96941037805, - 97237.72508581873, - 99586.27547231995, - 99232.31835984743, - 99900.79355708066, - 99953.84555270121, - 100010.22175620866, - 100488.19339995636, - 99050.91600599952, - 100300.1455608082, - 99125.08385354279, - 100865.26021198924, - 98730.97463170756, - 99515.36066611517, - 99419.17564342206, - 98962.18713370281, - 97366.57493092174, - 98539.96016607621, - 98539.20822724189, - 96191.69901840627, - 96265.19900264395, - 95997.27711720114, - 98500.0361551715, - 98246.11805337203, - 98850.07485794366, - 98011.22054926708, - 101377.60794729496, - 98957.24165577488, - 98961.50436798272, - 98935.5010496066, - 96824.95283232043, - 96894.77232507731, - 97119.02524363514, - 96134.33859468818, - 96133.66483574735, - 99362.4122499512, - 98980.06656171624, - 98577.91639424925, - 98301.5427103644, - 97911.65322441417, - 99947.23103246646, - 99525.32125049765, - 100615.97017651156, - 99091.59936505146, - 96193.09435285682, - 96209.32610496953, - 96157.43262757578, - 96039.16378214146, - 95666.6047695683, - 101027.38756222327, - 100491.07919538966, - 99965.07519503396, - 98540.85216934852, - 99052.2124935182, - 97895.64290700338, - 99076.34984414672, - 98336.60564073424, - 98674.7174457713, - 99271.76461161645, - 99265.99329452899, - 97961.22502344675, - 97330.30197024634, - 98153.0005023464, - 97996.06129807832, - 98230.51101716988, - 98279.26861206899, - 99626.79604297405, - 99000.02707953496, - 99142.62317278316, - 100188.52114244823, - 99265.28429092855, - 98832.24946054372, - 98597.7964869281, - 98557.67286605883, - 98374.27664176481, - 98475.73906360153, - 97731.41157443785, - 98308.24242195391, - 97840.92878276923, - 97886.2552796078, - 98672.42439807321, - 98993.730905672, - 99280.86800505298, - 102128.56689301181, - 105318.17245295613, - 101417.57039700724, - 102629.20595000873, - 100636.49150263055, - 102559.4749251737, - 98019.20026379389, - 99501.46206268593, - 98810.35406462688, - 100839.09741193936, - 98877.03574041717, - 99714.32506825263, - 99140.32285163709, - 101435.76546972904, - 100379.20660771398, - 100494.1604689617, - 100444.83349810736, - 100171.78786335049, - 99691.16026545654, - 98069.36909948081, - 98992.20989010415, - 99218.7411313723, - 99412.54200822763, - 99155.63016872654, - 98981.42825942171, - 98756.61116861763, - 98771.61564503152, - 98894.44972464189, - 99331.7744747594, - 97816.61219866003, - 102530.11405078055, - 100158.43034755554, - 98870.69224118859, - 99495.77993367877, - 98896.60676749866, - 99061.38220264099, - 99749.23255553393, - 99863.46008168485, - 101253.85143735835, - 101066.18080243433, - 100833.069541554, - 100216.65510336985, - 101097.55034226578, - 101618.20433424404, - 100357.48060133551, - 100059.12439104206, - 100338.86353601632, - 99586.51857910478, - 99951.0659012268, - 97856.81262960663, - 96575.13863198814, - 96162.4303606248, - 95209.07740315559, - 95825.30565065744, - 96286.13541218151, - 98427.35866005206, - 100540.34287442153, - 97698.73432565104, - 104834.05247099117, - 102345.37784253916, - 101736.15467046229, - 102333.66889929863, - 100557.2821983049, - 99212.64656167013, - 98977.62128580881, - 98312.73735572214, - 99304.290069593, - 101567.70440058614, - 101580.24476163396, - 101735.09643628406, - 101809.73928647002, - 101785.06810363055, - 101573.83309184245, - 102953.17211273103, - 104198.31260714601, - 106233.53305936579, - 102017.0341341957, - 99527.77886408713, - 101917.25635551335, - 101976.86435161783, - 100243.014205219, - 99932.49537425906, - 102190.88209432086, - 100124.12507747632, - 101885.99912176745, - 101697.96826814402, - 101829.23480550414, - 101522.08525588791, - 100597.08688634772, - 100353.70323921503, - 102178.3682577673, - 101779.84963144422, - 99852.88185831445, - 99990.35940967675, - 102063.12360975276, - 101781.56537819619, - 101749.04159536793, - 101634.82305426827, - 102437.23538334639, - 101962.97098059615, - 100466.67560792255, - 100113.74493313026, - 100858.32947002299, - 99975.85497357504, - 101430.14405480694, - 102278.80486131168, - 101812.8020162423, - 101588.15862456126, - 102563.3206054858, - 100748.96797238242, - 101678.99297077536, - 100750.28187529245, - 101454.990611554, - 100838.817421307, - 100730.67229205805, - 99990.30313700912, - 102022.7910616867, - 99646.19840781609, - 99629.49033305429, - 101905.45676874653, - 100837.07785367471, - 101545.97635361711, - 101489.69453765085, - 101743.09284030006, - 101836.64612097175, - 101856.42797018508, - 101839.95878378669, - 101729.67598101968, - 101661.94211903469, - 101780.85634799347, - 101558.64005120956, - 101330.36334771957, - 100698.24029410268, - 101614.75611960207, - 98644.28600268529, - 99737.09642278514, - 100879.74390370514, - 101077.31846050268, - 102156.91580320336, - 101765.97063868862, - 100219.71623880966, - 100725.71208858925, - 102143.24639139706, - 101792.06935951588, - 101942.69325653883, - 101650.40513567929, - 101988.60520862282, - 103450.9949418264, - 101511.31310826991, - 101648.40427836328, - 102018.88919342995, - 101741.66784545634, - 101581.9987428239, - 99468.2559944489, - 99601.83878035982, - 99603.45577850576, - 99040.76425546396, - 99172.24243406764, - 99528.31511285559, - 98769.65877246718, - 99287.60100382363, - 99475.57144267684, - 98297.39646140915, - 97418.97603097925, - 98936.37152899419, - 99182.20687722552, - 99227.14373040265, - 98821.68699083632, - 98717.22176373757, - 98584.01431051758, - 99272.0781529895, - 97965.80143681738, - 98982.5031332364, - 98027.13708713652, - 97615.38809747441, - 97503.33387121037, - 97752.58113868252, - 98136.58032128063, - 98061.10715277967, - 98614.1806245494, - 98136.20709255511, - 97999.91203126067, - 97958.47457130344, - 98009.09509648604, - 97850.60195378115, - 98005.5574452993, - 97776.72898296927, - 98631.78626191251, - 99140.68926056154, - 98536.86418508874, - 98910.03636312029, - 100242.68992519718, - 97891.04268537596, - 99023.62442100499, - 98951.56237964176, - 98742.84185261693, - 98636.11447862479, - 98715.24476448026, - 98700.92429371181, - 98641.93221348678, - 98583.13027911846, - 99072.54185715798, - 99135.47449879821, - 97232.70911561699, - 98615.37677009653, - 98917.96441057288, - 98434.35971075694, - 97681.16946907644, - 96856.72362255462, - 97895.28004870834, - 98831.79765712937, - 98438.58130728804, - 99371.02994235742, - 99231.0427929239, - 99676.63268184493, - 98900.44369968983, - 99700.42917263086, - 99577.40761315082, - 98426.5533743314, - 99776.94011289947, - 98899.60200925548, - 100154.96563673523, - 98520.33361422195, - 98367.5384870807, - 98334.70594223429, - 98691.85046989784, - 97255.41454495481, - 97352.47846420809, - 97313.7618367065, - 97296.61777493556, - 96665.07370474232, - 96859.96292458837, - 98321.87992748909, - 97182.47078555363, - 97884.83964830039, - 97540.60877193058, - 97276.55612119116, - 97459.95104458535, - 97893.0352520524, - 97962.17985493861, - 97344.09093533971, - 98205.86697164566, - 93644.68272986174, - 98101.62417688777, - 98271.36712487994, - 97452.24353701598, - 98361.52070775314, - 98166.8451977046, - 97487.35358808235, - 97647.87367032644, - 98497.56819029221, - 97393.78304664446, - 97502.76078478833, - 97564.08079360449, - 97516.18869947606, - 97435.17397362897, - 97736.81995700866, - 97446.32329700516, - 98582.527096305, - 97809.54483551205, - 98878.34647466309, - 99154.02606674639, - 99172.02697912694, - 100490.49130040826, - 100142.88953715774, - 99388.84212708821, - 100563.74448489815, - 100746.00755669444, - 97652.12794157442, - 97864.25906949551, - 99227.43848031209, - 99361.9255445475, - 99174.69010994876, - 98657.9373151273, - 98047.59460307116, - 98808.2037529869, - 98641.99704060325, - 98573.86688152544, - 98037.7546833775, - 98063.33951976198, - 98238.09327133199, - 98454.91999809204, - 98622.72131256308, - 99683.02342130439, - 98748.13851273438, - 98736.6487431001, - 98461.56188963, - 98591.3906492825, - 98735.88204679007, - 98760.83345788409, - 98669.98695044409, - 98554.81272175781, - 98551.32201482294, - 98537.48831459216, - 98994.10656357431, - 99119.57616554244, - 97344.39651735617, - 98722.34383571171, - 98882.4958894141, - 97303.13866203713, - 96302.24669832372, - 98647.5348287252, - 98608.5215316511, - 98222.80841969991, - 98819.65784093091, - 99036.66961313797, - 98624.20331564605, - 97819.31095483244, - 97721.18147869087, - 98271.70807917252, - 98519.86918764931, - 98606.63667538292, - 98519.39123710812, - 98765.77024442171, - 98568.58464013341, - 98724.09688274346, - 98551.33786774045, - 98642.19574069705, - 97931.34716549548, - 98666.49334653927, - 98631.64406060676, - 98838.9801057053, - 98827.92913925355, - 98790.2159527499, - 98181.72232625872, - 98063.19422735604, - 98475.91698744615, - 98570.43191653062, - 98455.4277807688, - 98813.72618994876, - 98846.89766234448, - 97228.42625405909, - 97394.11022522849, - 97532.22883965746, - 97344.33342659262, - 97272.0006070915, - 96925.47458412843, - 97092.16772009524, - 97209.90565041362, - 97856.84020013195, - 98009.61286792412, - 97211.79938472387, - 97045.9347960569, - 96871.14124722035, - 97372.91158673672, - 97023.36540561469, - 97191.67156979971, - 97414.64038417542, - 96885.06814180473, - 97914.23819876518, - 97340.71979094419, - 96805.4528033362, - 97391.61070686534, - 97277.04466695724, - 97953.10373989804, - 97109.44347958003, - 96731.40431617344, - 98037.69686647393, - 96844.05757802, - 98053.21280174737, - 97454.12338544696, - 97565.17353076243, - 96943.34146960913, - 97216.68390135047, - 97325.96467730298, - 97320.6256117, - 96737.12013794533, - 96149.9240314162, - 97714.7246102844, - 97723.43671189145, - 97537.88311195365, - 97408.99246023723, - 99182.43123350566, - 99265.87966805445, - 99944.07306174988, - 99900.64834271275, - 99812.21227412489, - 99420.92430477343, - 99177.62291174373, - 99488.52585196453, - 99587.48173322152, - 99937.87696465585, - 99591.60747183427, - 99048.9116417464, - 99607.88973258882, - 96915.07628650902, - 99990.2370091159, - 101343.89990262453, - 99709.43474110542, - 99222.80666593021, - 99744.15222602605, - 99679.73750040874, - 99788.15934489542, - 99889.87039027306, - 98529.60002690525, - 98918.42807769222, - 99077.64957318998, - 97845.28481450288, - 99041.95245865517, - 99058.18978821568, - 99443.36056428892, - 99938.9075507464, - 99123.1886578178, - 98975.4583568785, - 96764.93858259599, - 97558.91318648357, - 97906.28247623073, - 97718.55252171961, - 96152.1057643561, - 98062.51604299857, - 97964.38553712035, - 98023.44519196717, - 97561.8035357872, - 97762.95601633764, - 98326.83556515438, - 99016.5581620588, - 99240.9405426935, - 98641.53479851007, - 99095.8319111279, - 99642.41138351153, - 88590.85511713462, - 95956.16594891516, - 95103.80826824161, - 95849.92383113039, - 95705.12403974576, - 96150.57574768981, - 96295.31083736721, - 96244.53594836782, - 95503.21802046116, - 96107.21446370435, - 94297.22907899908, - 95769.18345824692, - 95854.58816461003, - 95472.03336553831, - 95497.96761435788, - 100266.60888331049, - 100515.1022038416, - 100780.13173749707, - 100275.49487326102, - 99308.59414610175, - 100993.81994431307, - 98998.48843958214, - 99497.63865967996, - 98414.55375540078, - 98275.0868761614, - 99287.0655957827, - 99168.38311213651, - 99294.3343501885, - 97827.76197200979, - 98414.55316263932, - 98257.85820299109, - 98418.17015609592, - 100175.0607969374, - 100123.4034196032, - 99203.1995445626, - 100259.94700165218, - 99150.71873965448, - 99176.45733464141, - 98536.71552534091, - 100486.68654940001, - 99798.83508838428, - 101233.72050294731, - 100304.51471837264, - 99369.55175238507, - 99459.89574901403, - 99497.65911985919, - 99334.08753749864, - 100439.05341443338, - 99891.87571608167, - 99787.73624613034, - 99837.0082125705, - 99338.62761306738, - 99398.32512040935, - 97937.7823995534, - 98960.49823630943, - 99134.05776587574, - 97772.18600703926, - 99187.00950581132, - 99076.17431450075, - 97063.32877705898, - 99009.06890021921, - 99244.62898283631, - 98895.86594871506, - 101287.53163759898, - 100667.31521747577, - 99440.37140141985, - 98829.92293140064, - 100008.8185640341, - 99630.27697060951, - 98199.99210205229, - 99364.76795754352, - 99587.45269788787, - 99204.80764182155, - 99472.18090796605, - 99584.74778173275, - 99446.27946308655, - 98780.33197584302, - 99746.53204017173, - 100408.86536513967, - 98968.71992266763, - 99390.22164459903, - 99420.43636760573, - 99004.39514221971, - 99328.58010501186, - 99704.67044515068, - 99356.71931442092, - 100275.50143084832, - 96938.66295867188, - 97964.63401886185, - 97535.23793520761, - 97420.7621020905, - 97390.08288766422, - 99574.3677856123, - 99273.85480193101, - 99615.64332690387, - 99572.0458167728, - 99982.59484908597, - 100442.43446705127, - 98917.55283849573, - 100405.62380636072, - 99264.01286919507, - 101880.18878218585, - 101201.13786259948, - 101261.17342969753, - 100802.37593631717, - 101061.65052979656, - 99928.46775743726, - 100746.53951262421, - 100868.33657813334, - 100812.8197399703, - 101531.87027489231, - 100295.24230126226, - 99417.48192028531, - 101239.75080883966, - 98930.33399893016, - 99586.53541170484, - 99162.91558583234, - 99368.70015947068, - 99328.89319402496, - 99358.76293373808, - 100016.85978108921, - 100664.31901839633, - 99767.26452719056, - 100029.98747600272, - 100412.32402265836, - 99065.72480630428, - 98156.27282406032, - 98227.70254427848, - 100038.33560601297, - 101143.74462846812, - 98467.10096591972, - 99388.04981308476, - 99160.28669960532, - 96279.30869943406, - 96388.18293816505, - 96692.27028903799, - 99054.46710922422, - 96793.04034680343, - 102477.24885418148, - 99962.03299582665, - 99408.87948140925, - 99568.49510955371, - 97652.86342630182, - 97627.2235694482, - 99106.21684464924, - 98595.84891148518, - 99156.63257376007, - 99241.701769924, - 98691.20212375972, - 97995.16766578473, - 97878.09063826728, - 98401.52424464934, - 99578.9140767699, - 99232.9372120856, - 99103.70219305377, - 98247.25370404207, - 99183.89896358912, - 99108.02772477719, - 99457.6410217742, - 97381.90305652776, - 97539.68362575934, - 97454.32557679321, - 95643.87509548519, - 98164.19533467619, - 98940.87869445772, - 99064.5138791314, - 99697.0870632984, - 99422.03795312622, - 99658.1811796683, - 99310.43005941642, - 99291.88291924677, - 99357.41168283236, - 99519.81617905492, - 99461.9154620648, - 99503.27823687728, - 99428.27940191151, - 97479.47272277385, - 97966.35131578807, - 99676.52384181802, - 99561.79056971268, - 99432.35372583236, - 99446.59225735396, - 99428.01341337721, - 99232.69699144822, - 99392.972033571, - 99460.35192451965, - 99250.82737975198, - 99528.08669879334, - 99236.5763742713, - 99339.81667170062, - 99356.35133098044, - 99311.28191822488, - 99347.20154555528, - 99326.09755068594, - 99398.38474298466, - 99425.06404185461, - 99459.37878349259, - 99293.81229317529, - 99329.49500884015, - 99294.94935916096, - 99397.89778849662, - 99370.73468447644, - 98364.9237598564, - 98314.28463324666, - 98297.57158816028, - 98299.16730691226, - 98488.44888265227, - 98341.92538182945, - 98498.18579690327, - 98221.26321802658, - 98440.65799241852, - 98505.26245324187, - 98273.63810369174, - 98449.01702979534, - 98458.30573058059, - 98435.56007553921, - 98828.88194167838, - 98734.89174003295, - 98753.36326823733, - 98738.05385712087, - 98806.68843808728, - 98927.51583449688, - 98809.76404802127, - 98831.44278769466, - 98721.32609049382, - 98611.23290157397, - 98554.33836951133, - 98662.26737231707, - 98569.50298295039, - 98444.26480191355, - 98440.84097603508, - 98388.22622587845, - 97562.5173703681, - 97659.90156596046, - 97539.18470334534, - 97562.28204297766, - 97628.5805035853, - 97532.78555592157, - 97521.31251635685, - 97457.12642131757, - 97469.56881373974, - 97463.881171705, - 97266.57307609903, - 97538.36994649333, - 97506.04706104075, - 97565.8070193732, - 97567.95672647221, - 97576.65796976959, - 97433.00403301486, - 97663.14027350585, - 97624.84001903216, - 97484.1141530828, - 97600.38916390667, - 97509.90124758272, - 98185.41172751482, - 99058.37892612514, - 99224.34320360345, - 96043.45140605627, - 96074.1773250052, - 98353.82046727034, - 100096.5789219651, - 100142.84366050502, - 100114.8346992164, - 100137.00458558447, - 100088.57204356979, - 100165.51947574422, - 100131.45217606793, - 100011.84304283973, - 97683.34960749114, - 97662.15750716739, - 98531.37287469098, - 98471.56463893122, - 98391.64714900294, - 98877.55812845338, - 99029.5519099041, - 99040.32401506804, - 98939.85298657045, - 99071.00654345889, - 98134.38177364993, - 99281.8124720996, - 99410.76891600141, - 99265.15415167905, - 99570.35524851363, - 98734.64536633549, - 98817.70091073363, - 98705.86338872745, - 98779.15100171715, - 98743.88825326356, - 98722.95539743864, - 98669.66450254756, - 98727.04413925752, - 98603.20304504342, - 98657.34511910615, - 98306.9719599773, - 98410.69904555679, - 98438.62268190562, - 96262.06027998815, - 94859.96864376472, - 96176.9141455721, - 94389.95972141267, - 94306.38229315246, - 94318.7006224086, - 94419.1947747694, - 94392.82814914087, - 94389.95371194034, - 94437.83155434212, - 94218.23975158927, - 94194.02296244045, - 94008.58638880895, - 94284.66655702308, - 94573.07039112478, - 94372.80806801579, - 94272.01261469895, - 94240.6896417481, - 94249.69397963368, - 94597.4481398317, - 94435.28319563705, - 94303.52270668159, - 94178.90319153182, - 94243.63550838632, - 94421.52405973361, - 94205.67563602903, - 94202.7117129383, - 94320.52454245155, - 94293.7942434875, - 94267.58695307715, - 94495.40317446586, - 94170.06170101493, - 94211.52030884504, - 94212.18498423915, - 94330.95096713639, - 94270.53763976666, - 94390.87449225048, - 94287.89529624995, - 94446.13153450796, - 94354.97654559696, - 94346.09109533348, - 94480.69700103143, - 94273.99317481946, - 94289.85535250117, - 94170.9041715765, - 94324.79195247918, - 94132.7057344337, - 94074.80621416663, - 94249.39377209143, - 94426.37056546453, - 99555.46875574846, - 99804.62331523834, - 99331.72440120617, - 96160.81025461864, - 96205.75452273182, - 96164.94304166912, - 96091.27355284609, - 96321.48275816297, - 94366.87186140705, - 94306.37066336245, - 94529.97922971226, - 94434.94919736736, - 94500.55053658024, - 97122.97557930264, - 97100.77454563488, - 97135.42971177665, - 95489.19345695784, - 95488.26419210226, - 96125.26064461117, - 95919.73918913995, - 96370.02373932622, - 96858.89753394539, - 96901.72588249666, - 96528.33303416053, - 98392.21001148615, - 96053.05650289368, - 95450.25417539202, - 95972.78915436483, - 95970.95308075754, - 95961.04765530549, - 95722.21440872799, - 95729.23859344584, - 95670.62443730164, - 95481.39560671317, - 95340.12961580537, - 95303.17115160594, - 96179.6045501681, - 96109.17619897892, - 98530.61451075874, - 99053.41371146425, - 98605.97144397798, - 98976.19477847009, - 99267.27734915515, - 98691.31264841248, - 99232.44990568829, - 95257.82795586446, - 95506.86434038139, - 95292.85212499998, - 95262.32950182882, - 95354.57773115158, - 95458.13438059368, - 95385.3428089936, - 95209.67552481889, - 95311.77032987887, - 95444.61330598006, - 95242.05024879698, - 95252.43928937333, - 95381.14361410459, - 95333.87765260295, - 95351.0489158062, - 95195.90565530288, - 95297.633034384, - 95303.90705774128, - 95447.04817351245, - 95285.61582132381, - 95322.42512021921, - 95176.15417191545, - 95381.0517074507, - 95282.61728466298, - 93231.70305331911, - 92347.74753772338, - 92216.72434555799, - 92252.47720808198, - 92256.07675212514, - 92324.31396892523, - 92415.17834135809, - 92206.14403308384, - 92211.31836481478, - 92294.74860434067, - 92140.90020542977, - 92009.28930966396, - 92188.30662763724, - 92240.06832701992, - 92136.26649392476, - 92061.4858642193, - 92117.94874151466, - 92301.20739485609, - 92270.44173942773, - 92476.04624218972, - 92274.0842380315, - 92200.11384624743, - 92129.61464772673, - 92107.99155216134, - 92264.89531600794, - 92190.23091480859, - 92280.17186758008, - 92407.87747716965, - 92369.8251914418, - 92374.2328896316, - 92478.78012790662, - 92448.86611308221, - 92122.39984355103, - 92167.2011910307, - 92206.32328236508, - 92300.72398965452, - 92070.91719750845, - 92186.0226881958, - 92274.32072505055, - 92248.01639772087, - 92251.44929818394, - 92394.22447395853, - 92291.97074429669, - 92316.73871688145, - 93059.16988490241, - 92393.6617867084, - 92300.0455267758, - 92200.82708603864, - 92217.13863978007, - 92191.01154073558, - 92088.59875338602, - 92096.45991653283, - 92152.5004987375, - 92189.78925848598, - 92182.36073816268, - 92079.45570088438, - 92255.84570257005, - 92107.85643126183, - 92402.8943849796, - 92140.52812030239, - 92230.18841609285, - 92240.46970884116, - 92092.02752181761, - 92122.01120625601, - 92515.26142917994, - 92299.43199008808, - 92191.80914221446, - 92289.3106433427, - 92278.89223268858, - 92314.80079542873, - 92239.59355543758, - 92214.87566884019, - 92350.96560856364, - 92319.24278973592, - 92120.59934842995, - 92402.46333965527, - 92395.55800703372, - 92407.26663431138, - 92170.76494797798, - 92149.3896272451, - 92149.07451227563, - 92362.9412919757, - 92072.22295952133, - 92165.8074200398, - 92264.4950612678, - 92321.76859128801, - 92243.35934066583, - 92240.73151292205, - 92351.74121802478, - 92212.58705155137, - 92261.77315785893, - 92272.0976249191, - 92458.16706063351, - 92337.92067785797, - 92369.46596237014, - 92309.11050830808, - 92348.91301035674, - 92158.63274311995, - 92359.01992750082, - 92422.06859334902, - 92294.31157988217, - 92285.98502461443, - 92247.55109256034, - 92072.40823846689, - 93217.65623676107, - 92298.84256798221, - 92143.44554872952, - 92114.55881212364, - 92388.34112005818, - 92104.1575179089, - 92178.4738757029, - 92211.68105250059, - 92417.7595950224, - 92171.84482602276, - 92237.57093869668, - 92088.96846171409, - 92070.41065231868, - 92187.36681509153, - 92370.404557384, - 92280.5187113803, - 92077.55009881165, - 92097.85089890493, - 92250.68960775186, - 92229.6510093099, - 92124.28625739494, - 92277.44419006346, - 92112.15601888165, - 92236.86729316006, - 92298.52245461594, - 92326.23605654163, - 92131.71539503698, - 92327.35935856824, - 92170.31098093353, - 92316.82956297412, - 92136.64050642017, - 92132.58089114129, - 92087.82568701153, - 93923.1020165203, - 92128.44388904206, - 92165.08700529874, - 92146.48937205561, - 92224.22667915009, - 92276.97318654209, - 92179.81064205624, - 92230.56984005714, - 92194.68123738615, - 92303.61592663793, - 92259.52032100408, - 93895.03036091999, - 93891.5498056317, - 92106.50574246883, - 92274.69795367589, - 94839.05921223038, - 93892.18559051274, - 92216.84531759286, - 92223.28407935618, - 92322.9398265956, - 92181.57577859817, - 92125.35754151737, - 93909.45243357617, - 92156.29947048516, - 92363.13694954333, - 92241.1538857497, - 92198.72093061345, - 92277.94262352257, - 92348.27216643172, - 92100.12237040915, - 92224.97120305183, - 92162.6663993115, - 92267.80885625147, - 92161.25150030805, - 92495.77534289319, - 92351.52551961424, - 92338.47796412221, - 92326.41795009529, - 92329.20324077769, - 92222.80917248885, - 92314.41985868117, - 92256.26836982086, - 92503.48875709479, - 92496.54476011512, - 92375.68912132124, - 92217.9630178079, - 92295.27871363045, - 92243.55514949372, - 92333.49401411432, - 92265.93497688345, - 92296.90882344653, - 92161.89029910951, - 92322.08469817725, - 92243.26218856651, - 92187.51445774999, - 92167.8995244472, - 92093.71003634819, - 92159.09530130218, - 92196.35201010661, - 92189.73775652013, - 92143.18325545135, - 92385.10208996975, - 92347.33566601481, - 92429.41868813094, - 92212.81898397961, - 92479.64231084207, - 92459.66524880938, - 92426.13656796042, - 92476.16358429435, - 92423.07228620039, - 92180.50690094149, - 92532.19153863966, - 93914.93502816484, - 95497.05276392102, - 95837.77507526969, - 95812.4154540912, - 95698.50564941308, - 95628.40799309613, - 95158.67040196666, - 96060.05473969401, - 95255.10891653616, - 94509.72194374804, - 96214.29567174465, - 94269.50089276706, - 95029.52467561196, - 94894.02889160464, - 94921.09641509663, - 97015.94024530961, - 96924.78320992363, - 97343.47929912621, - 96837.76873429003, - 96961.74738516554, - 95318.86888176948, - 96858.8259365058, - 96993.28565305514, - 96943.63194993603, - 96906.35772752426, - 97022.69247553179, - 96984.5487179883, - 96874.58922306824, - 97747.21900755091, - 97417.73753495087, - 96969.69441581002, - 96968.60153243598, - 96747.02345144031, - 96601.21280775112, - 96977.1650347663, - 95368.49227674282, - 96056.0944855474, - 95618.32230128575, - 95004.62236427962, - 95064.92563679993, - 98235.0876506272, - 96972.87752214319, - 98629.48902981033, - 96378.79458742414, - 95285.84544380629, - 95335.33394613424, - 95380.30317238574, - 94292.11046783296, - 94317.6587058325, - 94322.88661735097, - 97023.15247734636, - 96535.8616409643, - 96055.6245428955, - 97606.17229012403, - 97591.89461364681, - 97576.71628926601, - 97500.32823463708, - 95328.50872682448, - 95300.26526034814, - 95271.0473357906, - 95510.65824351287, - 95347.32880997096, - 95271.44501622175, - 95372.15228673177, - 95421.30035086887, - 95244.81624951023, - 95442.41664362849, - 95478.64369343246, - 96410.03307549134, - 96493.56633299332, - 97178.27508498696, - 96593.2717327048, - 96302.94937464621, - 94729.26537341278, - 93861.98590665219, - 93956.15973323683, - 93878.00338465307, - 93852.65938610463, - 93796.41706922535, - 93912.14907894815, - 93783.06450327153, - 93830.40835361417, - 93845.20569222173, - 93805.02916709852, - 93848.69468485197, - 93895.12691645266, - 93783.44722599696, - 94214.94588328559, - 94397.66514778201, - 96850.54600123651, - 97426.74158915173, - 98273.0404411526, - 95786.36719281576, - 96349.92934443918, - 96338.35038049635, - 97199.92290572009, - 97155.05669738412, - 95179.22795563574, - 95203.19322201304, - 95656.42468831391, - 95242.50683299675, - 95206.90394798008, - 94585.54283407258, - 94154.85813823475, - 94158.20929334633, - 96493.32238421563, - 96459.46741135049, - 95059.96146767413, - 94963.37886006157, - 95002.6752162217, - 94048.93199379041, - 94005.1775320185, - 96603.54230227087, - 96550.22153001573, - 95756.08622571501, - 95809.09217161969, - 95836.83724442031, - 95850.76938404588, - 95103.97227801211, - 95376.11147143133, - 94581.3224656246, - 95103.11342187891, - 95124.22218566947, - 92179.36209571654, - 92342.1647082602, - 92343.11266496578, - 92385.80051301901, - 92363.17729310234, - 92415.46817355568, - 92371.34679188945, - 92059.19945228689, - 92254.26120896422, - 92258.94206324218, - 92289.21560844104, - 92203.64139679476, - 92294.99886701563, - 92211.95592517799, - 92290.40010143537, - 92313.0809202976, - 92271.08130189306, - 92439.0785089486, - 92230.63025610495, - 92342.20159560516, - 95229.32911955088, - 95801.8797460325, - 96674.53315191732, - 95572.39553147889, - 95678.9898490588, - 95564.26772175558, - 95634.67560640232, - 95662.54958325467, - 95532.36565291665, - 95726.21465473025, - 95560.55284189491, - 95996.56462555612, - 96851.12729283779, - 97062.67817875755, - 97050.47210070032, - 96833.70570836318, - 96978.96277123882, - 94491.85479096157, - 95699.64251087462, - 95709.03021955737, - 95708.33665371903, - 95679.00902682092, - 95559.50076204128, - 95428.96196267167, - 95512.51691874191, - 95606.9735303453, - 95541.43426055746, - 95436.21133694542, - 95649.54902588758, - 95474.01595310215, - 96107.19415896157, - 95523.28532488653, - 97550.03779670106, - 97677.43610441216, - 97734.7750819923, - 95917.55516884955, - 95318.33825288666, - 90398.13563399928, - 90219.83557956429, - 91850.72333799597, - 89955.4720743023, - 90351.7003485438, - 90158.81527667675, - 90225.72064624407, - 89808.82616084766, - 90236.17206468161, - 90345.96414554433, - 90101.23951609244, - 90156.48155842807, - 90238.81562165567, - 90188.37121588881, - 90049.82466375276, - 90839.86000529061, - 91522.46011082169, - 90426.59718746592, - 90364.49650618425, - 90281.57249944574, - 90204.0364488624, - 90325.97959319454, - 90286.08327358324, - 90368.68853514639, - 90131.89700646249, - 90264.36843072166, - 90283.73132984444, - 90409.54204067939, - 90176.72383861212, - 90161.34034330312, - 90174.19097516667, - 90380.46228281433, - 90216.7935701221, - 90187.72273738508, - 90302.22760431943, - 90255.81325412332, - 90227.9318507897, - 90174.31006624116, - 90292.82642272265, - 90147.69829486302, - 90117.02379395122, - 91536.18144472227, - 90098.56959740954, - 89715.23360905857, - 90344.20893913148, - 89977.85792588338, - 90346.25928401393, - 93971.80265598431, - 93725.28554114306, - 94503.96161457393, - 95594.78680514084, - 94607.68459209791, - 94463.72063775688, - 96274.70146604127, - 95919.43239973261, - 95888.00363924424, - 96021.01935869602, - 96206.3567727413, - 96297.63544971858, - 96577.88292402872, - 96449.49416274708, - 96851.49702075154, - 96605.92981897558, - 96610.6899973968, - 95921.81597746578, - 95352.39749037023, - 95951.33594695487, - 96000.54859558669, - 96016.9478340095, - 95554.52104992175, - 95956.77118384998, - 95898.63188323451, - 94864.12017348492, - 94921.19423968834, - 94905.71651342275, - 96730.61407259232, - 96570.65933290092, - 96917.55039066126, - 96845.31383705071, - 96840.67852705196, - 95879.40264413109, - 98181.70136908787, - 97942.41927684227, - 96298.20404774172, - 96248.82270435392, - 95834.40863293177, - 95196.70952197771, - 95434.60009253638, - 95758.46272512361, - 96465.93766629184, - 96426.6308128287, - 96344.06072109731, - 95589.36755805337, - 95645.64475087512, - 96102.93297875019, - 96051.58400350752, - 95926.45987169421, - 95981.8380794005, - 95863.15308642662, - 92001.50766754647, - 92027.61116900106, - 92046.7336558993, - 92065.18747125892, - 92110.36261703623, - 91950.95461604063, - 91977.1495556531, - 92128.61766596325, - 91970.65586338179, - 92031.39064637528, - 91978.95777114196, - 92020.2457296412, - 92043.62147273764, - 92010.16427467186, - 92075.75618980045, - 91997.46138215279, - 92025.17432984301, - 92003.87296399754, - 92024.14688175863, - 91941.05744628322, - 92012.21830510841, - 91983.68058223181, - 92359.994086341, - 92252.86309783008, - 92240.9291961559, - 93601.82710520699, - 93704.10085908513, - 93676.77584347574, - 93661.20734278191, - 93572.23203515264, - 93625.70846719111, - 92241.75189417685, - 92167.78389298257, - 92172.4868795517, - 92131.47925758659, - 92080.57228640377, - 92106.30235506344, - 92074.75278618281, - 93012.08801458759, - 91759.60493933014, - 91728.37308978925, - 91695.65516466298, - 91789.34078452658, - 91675.77505537764, - 94374.02538445908, - 94284.29614613004, - 93859.39002647411, - 94016.84050671507, - 93290.35075837071, - 93239.54198428936, - 93194.79788029785, - 93167.29040070769, - 94178.18816955703, - 93974.14793620263, - 88433.87275134888, - 88488.9677441534, - 88681.03188674754, - 88416.20611550778, - 90542.60014879846, - 90633.14423891409, - 88780.30091689393, - 88617.30277926706, - 91035.5356559428, - 88448.45707614523, - 88512.19912209532, - 88538.9357978122, - 88341.69152456298, - 88232.54276009464, - 88526.83874423045, - 90308.66677680974, - 88752.36011236151, - 88666.7899021117, - 88403.96346659532, - 88409.88494323137, - 88454.76601265534, - 88505.90920258727, - 90506.38154973468, - 88392.5213902953, - 88735.10471964773, - 88700.42226535387, - 88681.6166974444, - 88832.50791438138, - 88374.23866379407, - 88371.18539682371, - 90426.63438770593, - 88802.81744936632, - 88762.5516918854, - 88642.14476996369, - 88687.33186073622, - 88594.12361541514, - 88718.94151298529, - 88689.16209595407, - 88481.38487480863, - 90301.01400148685, - 90255.91067155173, - 89890.53693961547, - 88646.405400081, - 88460.59624312277, - 88662.00249888693, - 88593.18598690111, - 88700.42324644516, - 88348.35258534538, - 88456.28864332136, - 88677.44885952266, - 88297.34186598746, - 88438.77445915592, - 88308.76253998597, - 88499.31790626561, - 88332.66197764105, - 88521.66032586683, - 88371.9394417322, - 88577.511326891, - 88386.19130325745, - 88432.37386953307, - 88378.7527447044, - 88382.83955964923, - 88546.40237874411, - 88021.3313163512, - 88493.2869392708, - 88405.61962417421, - 88454.34943629967, - 88566.55855702402, - 89972.49873713554, - 88550.03063889778, - 88419.76541763252, - 88378.89271930164, - 88237.63395624454, - 88472.27472068885, - 88737.91876166544, - 88302.25676877188, - 88514.96038148971, - 88472.68228221488, - 88493.61718394952, - 88309.7146296434, - 90148.49574146973, - 88287.05815100021, - 88319.4266756192, - 88282.5637571512, - 87989.01476337237, - 88484.61843123702, - 88385.38652624989, - 89987.53509523951, - 88505.4208955274, - 88485.92827793986, - 88584.32409483784, - 88536.5206651761, - 88256.36741000491, - 88339.50119407185, - 88456.82832726875, - 88530.42214878742, - 88406.3825486083, - 88387.08445144663, - 88396.28713695996, - 89893.44601705468, - 88517.61498493739, - 87977.76471736658, - 88722.83102403955, - 88558.76222645218, - 88306.03062874613, - 88420.84523966677, - 88344.8994181755, - 88449.00053664087, - 88336.30616370424, - 88363.98890529925, - 88362.60096382422, - 88443.99015417385, - 88757.2798999845, - 88351.58373475226, - 88368.07534914711, - 88419.7763521424, - 88717.98407653676, - 88510.42562080965, - 88333.83107669742, - 88626.58763266775, - 88575.9765857017, - 88462.28754139256, - 88836.0395482592, - 88772.68794489409, - 92326.05008512983, - 94654.22636982724, - 91425.09657158966, - 91464.44246274077, - 93586.60219175594, - 93589.13427337709, - 93025.56253717483, - 93034.93635287281, - 93553.88735328836, - 93542.87285605638, - 88968.22841893525, - 89006.03684621748, - 88902.85749665603, - 88694.73273373555, - 88770.11669048374, - 88998.95831050201, - 88813.18253923993, - 88807.29535139979, - 88862.87020210146, - 88940.35813020635, - 88719.986854473, - 88711.95391512648, - 88913.67134750067, - 88905.29290337257, - 88873.49606990181, - 88916.1146409448, - 88887.42693829109, - 88900.39227011942, - 88819.47647571407, - 88841.7144230516, - 88731.15785205181, - 88785.30435031383, - 88873.64041918014, - 88933.35245799503, - 88955.37715307146, - 88808.07844121536, - 88809.71225972423, - 88863.25925664409, - 94860.41464315419, - 94809.74353848188, - 94777.2045280774, - 96939.7130296957, - 94790.8883359463, - 93872.05455515652, - 92974.08923397369, - 92975.62503977149, - 93543.4657580988, - 93550.85862261364, - 95158.97987464583, - 96139.27193844452, - 95170.22302051753, - 93012.70424918424, - 93101.41065007175, - 93188.73658225981, - 93292.01518114925, - 93186.47665709791, - 93249.55171832144, - 93230.54525820872, - 93293.69529485346, - 93607.57338921969, - 93661.48037279883, - 93725.33213726954, - 96597.50409519735, - 95126.694711038, - 92466.47847824058, - 92535.67420110614, - 92479.67380046048, - 92541.5954277938, - 90840.63104534974, - 90788.74294845924, - 90875.6428904946, - 90812.108525863, - 92149.08818936435, - 92087.71439256778, - 92108.66912483661, - 92681.49462860484, - 92747.5621721967, - 92691.1433270897, - 92791.81273491016, - 92719.98650968332, - 94573.11174744362, - 95371.14507899206, - 95269.93601523693, - 95369.79664452869, - 95330.20659727942, - 95325.98290048962, - 95235.74548951366, - 96013.28219965815, - 95978.47329230273, - 94947.27988796636, - 94782.50222163898, - 95039.5427914881, - 95219.10848713045, - 95358.80808645669, - 95508.54286055514, - 96315.39006631782, - 96299.4257154321, - 96324.02566311863, - 96341.18862444937, - 95444.91699836003, - 95430.31650863758, - 95963.35252743993, - 95950.12484352986, - 94323.88976489022, - 94155.83031897117, - 94968.90121085287, - 95036.54824379871, - 94992.26340793457, - 97076.61983324688, - 96380.28781055969, - 96092.05767088226, - 95100.65954684408, - 94781.2730137387, - 94831.67940813194, - 94764.71974508195, - 95259.89220700655, - 95156.78944128797, - 95163.15549537959, - 94170.72543593975, - 94320.5506287159, - 96375.81406263121, - 95990.14658034967, - 96033.27978527645, - 96375.08693072088, - 95820.50112482975, - 96395.33356184303, - 96133.76841832312, - 96101.04541256488, - 96184.81566043793, - 96417.56965551627, - 96292.33937952145, - 95321.40374411321, - 95359.2518454773, - 95235.15461115303, - 95490.83892107032, - 95403.87461645668, - 95434.7813506805, - 96371.23865707997, - 95702.34904687658, - 95689.63925251232, - 95363.8470448223, - 95438.12140415871, - 95345.12725289499, - 95719.3642560631, - 95438.74775398536, - 95393.95134463186, - 93915.67461247394, - 93732.40501876744, - 93831.28229164788, - 93834.4304251869, - 93865.36020794926, - 93949.04960582733, - 93901.58796403631, - 93754.51928787447, - 92474.5549875663, - 92541.10114222545, - 92446.28882658892, - 92510.9837965274, - 94168.00712644817, - 94172.93686658355, - 94268.51034477568, - 94227.88799197409, - 94355.93471701951, - 94060.02601500099, - 94116.26661644941, - 93924.85503905709, - 93949.14419789072, - 93974.50929033541, - 94022.64738997868, - 94312.32437986055, - 94051.66774220605, - 94303.31563802196, - 94003.54982743006, - 94114.32655875513, - 94224.29742863894, - 94131.8182179843, - 93936.37370318927, - 93915.56085404499, - 94104.85477585437, - 94222.09750375483, - 94080.12193720396, - 94175.05303484979, - 94204.20735933605, - 94013.74433073374, - 94149.10075483979, - 94062.23950461214, - 95192.18878450526, - 93981.06452822298, - 95563.33831763349, - 95618.71418981701, - 94626.96443060684, - 94961.9962390448, - 95076.82444005845, - 95302.82737421893, - 94608.169715756, - 94206.32696510479, - 94702.36469871723, - 94705.08946322266, - 94658.895114909, - 94569.80280676277, - 94562.66790889218, - 95304.43340131296, - 94531.31783311481, - 95269.88551286564, - 94541.46811159214, - 95149.74263120122, - 94634.25352044987, - 94697.40319410026, - 95091.92395340849, - 95319.99368080994, - 95301.58079947837, - 94630.39551651504, - 94671.14260908996, - 95089.3896773708, - 95119.73813153236, - 94738.65685272905, - 95068.25673894, - 94781.31937846432, - 95154.3406437858, - 94802.3325423315, - 95105.70316558772, - 94684.28311529913, - 94632.70398735556, - 94708.44547790081, - 94740.06561864995, - 94763.51786066609, - 95220.63167603598, - 95125.54875547701, - 95496.13470559087, - 94594.42687159672, - 94583.94583527962, - 94651.10560516508, - 95257.08556364443, - 94233.59693590023, - 91689.9156042627, - 91738.548395977, - 91731.93216887595, - 94346.78033378352, - 94509.829510502, - 94528.48663855526, - 95506.25933017024, - 95430.9598185061, - 95449.77751377337, - 95494.87912905395, - 95513.21245708983, - 95579.25511783695, - 94746.96208609876, - 95141.50071030506, - 95088.00070197124, - 94796.34837723445, - 95207.54728400431, - 95025.28048977467, - 94994.04487668724, - 94992.0641380479, - 95157.97425899161, - 95210.51266443045, - 95112.69654287952, - 95348.00113621198, - 95311.6100058997, - 95220.35730467142, - 94453.87661400346, - 94459.76663652401, - 94569.99639898865, - 94696.38127915138, - 98503.89968845964, - 98983.70522113536, - 99185.65099595927, - 94437.58770435351, - 96186.25940182169, - 95520.96662625948, - 95395.53490697088, - 94387.90834024789, - 94410.44611369238, - 93880.06664422291, - 93794.95552713104, - 93814.6764577686, - 93852.0802165827, - 93786.27794848467, - 93980.98038158142, - 93927.0380831745, - 93831.83215691491, - 93816.85717412099, - 93831.55273890407, - 93936.66881951372, - 93733.53483031287, - 93809.10347709683, - 93678.44099698958, - 93545.624365582, - 93583.48935321181, - 93682.62756255489, - 93720.49376390997, - 93726.85416195451, - 93591.16938927768, - 93615.88912627882, - 93645.7254103945, - 93599.67154470751, - 93654.30749236245, - 93605.45062289166, - 93708.17232055379, - 93763.43794093031, - 93657.34150918727, - 93697.51676275049, - 95064.46859551649, - 95028.79614965661, - 94844.43317012727, - 94937.32394773186, - 94924.00711887507, - 93657.58783554945, - 95006.34673042681, - 95224.50298112346, - 95223.99348673313, - 95299.88393052109, - 94552.30907971856, - 94023.50845498776, - 94125.37702876132, - 94255.77571819822, - 94147.09026993293, - 94169.13660636239, - 94222.65689644325, - 94957.93426395227, - 94472.20709603677, - 94381.42463040476, - 94416.07502472983, - 94281.54409115564, - 94178.83279139998, - 94123.58147436914, - 94169.09157518268, - 93015.76333927791, - 92980.63941319492, - 93190.70549325118, - 93064.87393138207, - 93000.29090602277, - 92946.26333688904, - 93038.8296421908, - 92995.61564696342, - 93144.43447376601, - 93078.77497255687, - 93051.16869735178, - 95258.80445753322, - 95466.86915914767, - 95404.96015034568, - 95494.47921018649, - 95449.45774232612, - 95522.29842584215, - 95456.8754665219, - 91949.46390404372, - 91994.60911809147, - 91936.03318656498, - 91983.70759391226, - 93839.98245358566, - 93844.24306124111, - 94547.62330964052, - 94952.15918284946, - 94890.1592037714, - 94345.9720338772, - 94362.73267824408, - 94269.5283596859, - 94207.67763929271, - 94157.53706668493, - 94258.38524216403, - 94301.50601815798, - 94011.00694174618, - 94125.6503238661, - 94227.34616572867, - 94084.08394396056, - 94070.50563286559, - 94443.56661107884, - 94660.23703662696, - 94668.42135385043, - 94046.68004288743, - 94235.41587667502, - 94273.344864104, - 94123.19936245674, - 94159.63225677669, - 93803.9261679241, - 94011.724964968, - 93912.59330061535, - 93887.16917253478, - 93760.95419201358, - 93925.82530456611, - 93850.32814637737, - 93675.33911678942, - 93883.462303006, - 93742.14334667072, - 93961.40036485184, - 93887.34458601507, - 93903.3407406927, - 93734.96333262778, - 93941.18935024734, - 94636.41241915552, - 94424.21404328254, - 94373.86923886793, - 95545.38485611489, - 95182.95535517084, - 95071.09472843911, - 95167.69616974294, - 95087.78815059502, - 95126.89613229115, - 95523.23375784527, - 95227.46258123794, - 93916.134535691, - 93951.52721964949, - 93984.68193482122, - 93969.89886979104, - 93882.34010171027, - 93865.27925415388, - 93881.61720809246, - 93830.32747505195, - 93936.57704354505, - 95276.48776626095, - 91231.8196566484, - 91261.04328066683, - 91175.1502515188, - 91142.8260071247, - 94013.0077053391, - 94164.54504032315, - 94054.4416632055, - 94131.90713162518, - 94172.7395942074, - 94893.15089322784, - 94968.92914391636, - 95030.19357548543, - 94320.32001232714, - 94336.05564681457, - 94380.74487902022, - 93805.49685278744, - 93892.59177818336, - 94412.0451565415, - 94426.17357284379, - 94263.86673325008, - 94213.89118970706, - 95385.88848111703, - 96063.61237925281, - 95341.12102532042, - 96073.62002048118, - 94137.00646966182, - 94156.0229058292, - 94202.4207189329, - 94092.44030875542, - 94059.33759986472, - 94176.47708516316, - 94052.49870231381, - 94927.69438379064, - 94849.39986806002, - 94784.33169676425, - 94810.54708687005, - 94919.62429869157, - 94869.35010821253, - 94919.67840200933, - 94717.01718778357, - 94734.90055663262, - 94806.90127093442, - 94767.73807259565, - 94857.13685431078, - 94793.2995046325, - 94413.67065318272, - 94351.82055805538, - 92287.18461593246, - 92344.79587415236, - 92395.50229122411, - 94066.70664866947, - 96912.3840775932, - 96822.83077029923, - 93971.70006909678, - 94000.24913714765, - 94065.67460043577, - 96311.95742018387, - 96345.35938061375, - 97943.74694094929, - 93715.32177876253, - 93690.44395530979, - 93623.24293961626, - 93777.92905171037, - 93416.58217755376, - 93808.8134274846, - 93712.4167533155, - 93499.49299289202, - 93651.07722955113, - 93712.05135609517, - 93668.71539308506, - 93703.36126922605, - 93717.46592200446, - 93805.61396749513, - 93587.67456189399, - 93667.50755458296, - 93740.32595024593, - 93621.50782413344, - 93609.40652498248, - 96149.34956899607, - 96056.31431413464, - 96243.90733864102, - 92712.65686256441, - 92665.20903578005, - 92658.25067258794, - 92707.16684414347, - 92610.96365711992, - 92772.00915250067, - 96880.93597578706, - 96861.82056450349, - 97158.96712629191, - 96665.38767001704, - 95475.64319973848, - 95529.20616248925, - 95568.54842738589, - 97014.70310115164, - 96807.5317976019, - 97177.016571983, - 97043.85947589722, - 96885.77229318066, - 96885.52179751407, - 96955.75725837208, - 97336.92046433868, - 97244.56993259059, - 97323.01083840418, - 96979.26259545963, - 97024.96763850165, - 96443.17666872074, - 96501.2797849095, - 96503.74204473906, - 96486.96356375985, - 96704.94482097548, - 96472.26194887214, - 96638.11644218583, - 96454.7200242486, - 95987.50726261239, - 95892.9268070378, - 96698.7455890938, - 96584.96543692259, - 96541.61840316036, - 96569.40565837403, - 96528.49682707139, - 96911.19010484591, - 96928.75219227053, - 96932.45750407256, - 96934.56900248305, - 96988.3651054402, - 97049.75371645692, - 96844.52551619314, - 96923.19048697427, - 98895.54995718307, - 96026.0226178126, - 96082.0679626181, - 96060.02477735966, - 96033.20740157629, - 97122.38900206238, - 97074.57158975213, - 97089.55029562055, - 96838.02950949712, - 96554.83252774995, - 96908.33001617734, - 96940.36894513863, - 96466.54820005891, - 96499.21194873397, - 96432.75800775865, - 96421.56170751022, - 96450.86417398539, - 97074.17942076073, - 97074.3618961545, - 97006.12101036114, - 96754.00401323636, - 96547.77228387182, - 96966.40149118089, - 96956.51991520695, - 97028.21718236667, - 96923.14998898802, - 96935.43558121054, - 96876.0341655546, - 96947.56185065248, - 96938.83304086134, - 96132.13052901684, - 97396.83809185523, - 96999.23563465345, - 97965.099770708, - 97692.94173735469, - 97983.33638334284, - 98032.72187246279, - 97974.18271627268, - 97786.09247887084, - 97800.2100526241, - 97912.58577131401, - 98515.60094273857, - 97929.92102411941, - 97928.06662872367, - 97948.71845683189, - 97997.23955341357, - 97779.57776729457, - 97918.30088266732, - 97818.95994583191, - 97874.39129412937, - 97831.22264416635, - 97848.66298321466, - 98306.18967874342, - 97716.14241780146, - 97464.08055310673, - 97903.94501359884, - 98510.79621330468, - 97977.63973942658, - 97986.11769113112, - 97783.36471560711, - 97712.53971897205, - 97869.88999145458, - 97745.05257238295, - 97779.36469026067, - 97598.49065794118, - 97644.2460325755, - 97956.81212995679, - 97838.89167622174, - 97665.19276415366, - 97740.7761235048, - 97977.43561497079, - 97910.00226982501, - 97981.26497740846, - 97934.15325168573, - 97661.65075316017, - 97708.59760735968, - 97635.85467905481, - 97877.97127912445, - 97888.45567349828, - 97743.32967370604, - 97847.28715211149, - 97808.1138347589, - 97882.99271670789, - 97867.45670191568, - 97843.74040890497, - 97742.09038719474, - 97907.24259090831, - 97869.84628046093, - 97773.10518246032, - 97710.26128355986, - 97439.77285801106, - 96847.44273347312, - 96871.44532957648, - 96899.7444137054, - 96601.40636551428, - 96719.79711549218, - 96691.0320269905, - 97006.08190547314, - 96441.73368686778, - 96767.40239764423, - 96685.375037542, - 97209.09899176516, - 97154.83922451224, - 96484.01880503709, - 96107.67988071588, - 96231.62891327246, - 95866.80224811046, - 96548.20028247405, - 96288.80898149563, - 95833.69324629745, - 95973.3902004487, - 95936.55609673416, - 95846.59752469542, - 95876.33619274442, - 95823.68246341804, - 95783.98807985516, - 95969.8648337016, - 95894.43298604249, - 95929.05645624285, - 95983.62730236512, - 95795.10468007735, - 95861.17559180611, - 95802.80525539977, - 95825.95151868842, - 95869.97131479219, - 95913.086499376, - 95910.99064717419, - 95937.64989335113, - 95891.91884422916, - 95809.52074514219, - 95871.0650098643, - 95938.4418636119, - 95885.02089259116, - 95946.77940587135, - 96463.23121061604, - 95491.37487357768, - 95374.51754883812, - 95346.23309636129, - 95585.24481960548, - 95616.19801730258, - 96091.30297494435, - 96130.11178472488, - 96018.67970797754, - 96092.81017505692, - 96029.80815869398, - 96045.61522024043, - 96041.3107438129, - 96123.66684769333, - 96012.26588549778, - 96745.93142676732, - 96767.6667165417, - 96765.36884569783, - 97327.29514577452, - 96950.00862634687, - 96839.1737376899, - 96614.39435499303, - 96337.84299855285, - 96363.40943473825, - 96199.08353982247, - 96210.67360754788, - 96379.20593323221, - 96158.6409534142, - 95809.38081404867, - 95830.62061346209, - 95892.9781546145, - 96251.50221250225, - 96480.34466709888, - 96507.82112088494, - 96463.20514033035, - 96341.40385775307, - 96010.78631802801, - 96023.45133971501, - 96002.90560331904, - 95966.166341996, - 96106.27906720324, - 95807.67280945969, - 96395.43569347766, - 96344.44312350763, - 96138.17632150596, - 96013.09656267504, - 96303.38543537387, - 95894.19050089734, - 96982.27860412037, - 96803.66959486734, - 96947.0577205457, - 96600.41453955312, - 96568.01566290409, - 96593.52949252554, - 96954.2291584623, - 96858.60884095871, - 97317.61147548359, - 97800.71562505228, - 97965.28083636134, - 97889.61604333931, - 97866.41918264618, - 96409.68164770227, - 97206.50614037958, - 97172.59542951442, - 97072.76067775434, - 96537.27883527981, - 96711.59348660789, - 96724.52250491997, - 96763.88111565771, - 96763.6034842352, - 96974.48285660804, - 96961.18408244224, - 96795.80972533752, - 96829.80108971853, - 95448.9319500581, - 95427.81805651919, - 95349.78105291045, - 96420.91570369813, - 95853.47014194234, - 96132.08577076395, - 96214.23708082634, - 96076.5874277015, - 95735.4846520663, - 96051.52523546964, - 97068.07558913079, - 97179.42918462172, - 97139.53818571626, - 97016.58216276058, - 97038.98862670796, - 97678.54460695155, - 97173.72709588033, - 97217.85077478534, - 97186.76808718561, - 97395.26641208559, - 97417.15574620935, - 97295.81122049606, - 97315.37804363752, - 97253.70170188205, - 97259.73605669996, - 97279.28897112967, - 97664.79092225397, - 97273.1165047572, - 97433.88051161826, - 98311.21608497082, - 97635.0392809572, - 97598.2216287689, - 97709.20997216344, - 97594.02550440448, - 97671.76762343859, - 97714.52375615494, - 97630.64426674997, - 97630.27163188967, - 97681.43345802989, - 97643.84165540582, - 97620.62074300427, - 97592.75683781573, - 97567.9839306081, - 97915.08026442358, - 97666.16284196392, - 97636.2185941283, - 97938.20290569965, - 97529.40911807289, - 96570.60229277262, - 97853.50880407833, - 97921.9922589436, - 97776.59221266376, - 97836.39549321984, - 97975.90235149172, - 97774.09837247997, - 97885.48780049814, - 97307.21202722845, - 97121.93628053812, - 97121.55585614218, - 97140.73149429487, - 97150.90263007056, - 97060.39526332059, - 97030.8631274604, - 97192.97755496252, - 97069.80879175542, - 97093.05262002055, - 97052.29009434805, - 97170.58382246458, - 97179.82576003372, - 97082.68825227836, - 97144.30771257113, - 97121.76766377356, - 97118.1717151702, - 97157.3153393121, - 97050.33862467408, - 97089.79100594205, - 97119.19599796484, - 97192.94699549448, - 97012.5425356616, - 97224.20831847242, - 97187.0630187911, - 97163.31890311823, - 97219.79709559798, - 97908.54958943304, - 96700.81684331024, - 96523.60268508628, - 96536.9589902775, - 96843.7034070459, - 97444.83065967944, - 98860.0592368339, - 96799.07382149246, - 96769.12236389377, - 96283.05593791128, - 95873.06749071793, - 96306.41541740084, - 96364.42892209158, - 96883.54640512177, - 96712.7933388927, - 97193.71178642656, - 98946.53758317565, - 98999.3555672314, - 99135.63249379155, - 99025.96218669585, - 99101.35715048546, - 98889.17100958912, - 99046.37042367825, - 98893.51043752216, - 98892.5809756726, - 98837.61105136099, - 95302.53383954187, - 94943.81309137406, - 94902.98810497618, - 94869.28850625391, - 94852.59422578581, - 97020.50549542202, - 96986.83239293261, - 97094.066664134, - 98260.94835930769, - 98082.85901569464, - 95264.5613351477, - 95224.54314081938, - 95147.05653917076, - 95210.90866045954, - 95835.68963088898, - 99148.01739523798, - 98385.07485641103, - 98068.59743234728, - 96845.55844426356, - 97243.43268804229, - 96262.47034418354, - 93028.7413036078, - 93186.25366672484, - 92977.72507249404, - 92967.15683152963, - 96460.11226065892, - 96803.5646686902, - 95788.68637466984, - 95594.81419372423, - 96001.25876488656, - 96014.43994346815, - 96063.34010957202, - 95815.74790477773, - 95887.24825329146, - 95898.24021797186, - 95800.38688365607, - 95888.21662057075, - 95858.74283800049, - 95794.28661051509, - 95859.12821844933, - 96082.30693369107, - 95925.95600315143, - 95766.1829793558, - 95895.34584537416, - 95924.27915490832, - 95788.73920911511, - 95879.84007489719, - 95750.612045373, - 95776.9903894864, - 95885.74462050153, - 95921.1715910264, - 95781.69527505395, - 95962.10736111771, - 95808.00418231983, - 95865.57200803333, - 95863.63939621505, - 95774.27234822566, - 95853.77680046998, - 95910.88556421259, - 96030.4428217032, - 96042.10223037108, - 95793.92940460428, - 95817.54264444362, - 95900.49165315344, - 95954.14624176064, - 95906.63393497696, - 95798.73471721575, - 95745.01102164591, - 95961.3303111423, - 95851.78152974402, - 95820.22984781419, - 95983.45394155434, - 95944.3474958281, - 95805.59370462758, - 95833.09723097256, - 95882.46806050198, - 96082.40454432127, - 95995.73359705324, - 95991.11497192552, - 98649.67528264625, - 97117.49595890373, - 97197.27249529856, - 96987.99039298572, - 96471.15884437542, - 96401.1275917856, - 96519.89986547377, - 96340.059287469, - 96410.37135011521, - 97292.93398642252, - 97219.50145431058, - 96758.83817622448, - 96555.4285949727, - 96557.90997067219, - 97163.04215667228, - 96997.88918754808, - 96566.86592637633, - 96741.71992541496, - 96654.07142456822, - 96673.03202241314, - 96381.8808988381, - 96466.11337870629, - 96184.16322498767, - 96380.49868274544, - 96326.5027952699, - 96296.73893583009, - 96375.2552069928, - 96357.78292133319, - 96286.9291927851, - 96246.68502634903, - 97048.72682453197, - 96800.12747201516, - 96669.10745909809, - 96746.57388650633, - 97343.90785178638, - 96482.93915699786, - 96579.15695246731, - 96449.674325555, - 96511.37611718207, - 96563.68467824848, - 96603.53985991675, - 96576.16422373797, - 96559.07462697028, - 96667.1457439772, - 96707.43842318884, - 98866.40507525875, - 96294.38155504024, - 96331.3818016878, - 96244.46002266672, - 96510.0142862338, - 96649.72165456243, - 96692.3996161877, - 96547.35184122685, - 96418.39905249886, - 96399.6880630568, - 96636.52368680722, - 96516.19638795867, - 96653.81040415911, - 96751.98122261248, - 96227.75935192012, - 96249.42668704614, - 96407.06818233056, - 96417.2575216783, - 96467.9741020259, - 96563.98031394236, - 96340.90830816297, - 96517.5416974432, - 96293.66797750315, - 96385.24672593034, - 96452.35418290344, - 96477.54492869324, - 96558.94098791521, - 96519.48340383028, - 96940.61921871464, - 96866.34077155108, - 96843.3061731239, - 96585.22828871832, - 96565.27947982831, - 97072.10533498741, - 96625.08705431149, - 96853.9052170461, - 96531.63874364064, - 96745.38836951589, - 96709.64199598243, - 96775.56196087823, - 96495.57184522109, - 96306.57092112032, - 96275.78388021147, - 96370.03794746965, - 96292.10169388607, - 96294.95527136317, - 96846.80544199326, - 96851.66207692302, - 96702.97319735656, - 96349.6190768548, - 96258.48571134004, - 97252.59719313495, - 96460.1939559876, - 96376.62703671993, - 96703.80801170786, - 96662.28905885534, - 96942.23050900064, - 96810.581309827, - 96507.31968996138, - 98302.08638915663, - 97699.99862934169, - 96842.11261185446, - 96826.8605851453, - 96682.42592128347, - 96691.51413998567, - 96632.26025311099, - 97030.17159452607, - 96947.06423913098, - 96998.45637942558, - 96508.82058759003, - 96365.36880602528, - 96443.84614856978, - 96381.30359501102, - 96415.57824478621, - 96616.32530084581, - 96464.2147426376, - 96504.26771421164, - 96540.14681438672, - 96400.02414032049, - 96445.40242258714, - 96762.63831109481, - 97455.00830613056, - 97021.7617808701, - 96774.3551833301, - 97926.52813372754, - 97262.5053951968, - 96894.29567379835, - 96367.91849148819, - 96296.49819133696, - 96702.411898372, - 96728.37168468689, - 96615.69330291961, - 96726.2537056596, - 96563.22587738044, - 96907.9005061301, - 96708.36771981973, - 96698.93064682311, - 96960.32727627664, - 96980.06357552174, - 97802.4735093547, - 97757.03382286149, - 97770.91510749719, - 97871.68952338253, - 96422.93764887511, - 96974.71298464685, - 96921.55152222289, - 96619.58665232721, - 96627.8685334852, - 96596.30039366569, - 97133.53939254158, - 97004.26608294796, - 96682.55990265342, - 96629.03830283, - 96352.69265795489, - 96451.83502848627, - 96388.62115022908, - 96506.360585659, - 96426.21771977462, - 96407.47366494461, - 96743.50898743446, - 96633.1194771479, - 96635.14748627754, - 96230.63804023997, - 96214.45179065752, - 96326.17101723391, - 96264.4633906848, - 96326.03203539555, - 96597.34646395275, - 96480.32372855049, - 97264.75648080865, - 97257.64186751444, - 96991.85166421087, - 96282.02445261383, - 96359.59055510542, - 96566.85044926865, - 96473.19788319884, - 97154.5299795744, - 96490.39362234698, - 96550.42568876117, - 96419.62931704587, - 96999.63956845234, - 96751.08674126698, - 96697.972959275, - 96786.71030341781, - 96839.30379383995, - 96483.84977258719, - 96630.67704789808, - 96741.70102760034, - 96764.80067828426, - 96850.49988985712, - 96831.87898093375, - 97251.29570214036, - 95113.59086581854, - 95755.97930162637, - 95090.31969622265, - 94651.26562740092, - 95107.1092473078, - 95161.92092814026, - 95269.77791673102, - 95130.88387122283, - 94666.81011124076, - 95191.5612620277, - 94632.1940988171, - 95137.02904450543, - 95043.44752242198, - 95149.33302637907, - 95332.0281496231, - 95051.6652616009, - 94894.8557690638, - 95076.64600235653, - 95203.48852639197, - 96425.8921864831, - 96459.65196670996, - 96496.92588523787, - 96811.1950275651, - 96617.12965504579, - 96426.74328504282, - 96419.78444368274, - 96390.50907439676, - 96459.36232519409, - 96916.32646882013, - 95563.48042896115, - 95896.24687835442, - 95420.08235331165, - 95488.16296761732, - 95383.02891986139, - 96008.8630213765, - 95350.61927221605, - 94956.26073389688, - 95518.54082292983, - 95469.88782918702, - 95566.89754228467, - 95612.32634584681, - 95478.11245689954, - 95445.99882292173, - 95589.15203844642, - 95493.91450694384, - 95549.1482381842, - 95521.79485298232, - 95556.00537198065, - 95508.91601184626, - 96320.6147981449, - 96280.13460877546, - 96364.24649076725, - 96287.69376743624, - 98121.99524766194, - 98541.0584592708, - 98192.76039404483, - 98166.22543913256, - 96353.00819301896, - 96521.41109040649, - 95891.16448274408, - 95763.46923048091, - 96520.96063954935, - 96403.02771334902, - 96412.24011894669, - 96917.0504390173, - 96852.02764313435, - 96819.88884441124, - 96856.08674797573, - 96637.07411913297, - 96814.95159931354, - 96595.76290712562, - 96573.87616748073, - 96669.5411390961, - 97051.91473217483, - 96975.78810501436, - 96516.89264409817, - 96297.57838530713, - 96880.24502229964, - 96813.11555393686, - 97327.92623575436, - 97390.38924442463, - 97217.68695204523, - 97256.87195236332, - 97480.31551961288, - 97371.5537889121, - 97455.46534428223, - 96178.32783293263, - 96288.25558674558, - 96312.40887120423, - 98206.17346571821, - 98174.05663849172, - 98324.36922376543, - 97173.60699000407, - 97332.19078180875, - 97130.93518291095, - 97156.34417751052, - 97609.3784728033, - 97117.46051610255, - 97241.77508500633, - 97226.72413865545, - 97196.29476853299, - 97724.67813450533, - 97276.15490972344, - 97701.28948749202, - 97457.63289470712, - 96442.07780488765, - 96319.50737816031, - 96415.56866223014, - 96651.65284073511, - 96232.86087179637, - 96606.10302187508, - 97019.00700298675, - 96368.48020052267, - 96333.02852864751, - 97033.84918681574, - 96098.29554204186, - 96303.35813014845, - 96273.10836010888, - 96182.82288333018, - 96357.43491363594, - 95811.10727705582, - 95544.22235669453, - 95595.09996121706, - 95480.30012594952, - 95630.32606664213, - 95635.66118562045, - 95477.04217425716, - 95526.6492594866, - 95677.11645382897, - 95633.84325508482, - 95639.12017602292, - 95440.45450474763, - 96496.37422061864, - 96582.20480650054, - 95660.56955803781, - 95677.28372527665, - 95433.91832923502, - 95662.78785902, - 95394.9696974827, - 95584.7247328939, - 95655.13837228577, - 96577.59886148201, - 95827.30190509118, - 95996.87226871056, - 96067.66573265979, - 97669.8057337455, - 97462.8360510825, - 97686.73198942652, - 97200.78870621523, - 97347.83353013977, - 95523.31266376271, - 95587.1461297883, - 95686.28768720085, - 95449.79737749403, - 95756.18992749622, - 97086.01387112806, - 97178.8195800679, - 96779.52312444507, - 96696.75499455728, - 96245.55891904428, - 96123.0994416502, - 96240.73074210918, - 96194.04975573476, - 96319.13173343345, - 96089.44566542986, - 96232.75989347267, - 96158.38431777383, - 96136.68738677424, - 96145.58360721846, - 96316.94696925921, - 96211.57352484837, - 96211.6334262142, - 96123.06440631351, - 96134.85280188615, - 96182.97559382278, - 96287.01295744094, - 96338.51191040609, - 96403.5050298606, - 96875.59396292178, - 96704.33088316167, - 96496.97484619204, - 95797.50684788941, - 95312.43543057372, - 95287.49345178728, - 98395.83998663595, - 97750.79463862568, - 97657.87281536582, - 96840.11576563944, - 96376.43948973017, - 96495.3723510915, - 96497.74165956042, - 96558.50289816254, - 96382.03130978186, - 96234.20343302292, - 96326.90714764067, - 96357.04479517954, - 96281.48297221736, - 96446.30797136255, - 96225.19846793341, - 96371.17820751171, - 96569.07380883017, - 97280.91341371622, - 97218.93574565095, - 96565.89355648131, - 96608.2925808813, - 96716.35557903055, - 97810.76745979962, - 97231.17400973858, - 96987.0388482267, - 96774.76905790945, - 97556.9433582567, - 99045.69549244376, - 97931.99436757823, - 97949.65290238698, - 96437.8955859198, - 96465.63670795687, - 96585.25834546462, - 96706.89991097018, - 96628.1569422172, - 96318.02244651552, - 96427.64493117196, - 94720.26653909442, - 95165.60765656806, - 94940.55038345407, - 95179.98869710567, - 94980.51218130976, - 95061.79356597684, - 94945.25304730092, - 95218.24789975998, - 96299.29312064001, - 95092.07362612062, - 95174.19946651293, - 95245.56999040095, - 95253.853946145, - 95135.57488677127, - 95102.64566147253, - 95119.56649114176, - 95785.50464150192, - 95930.64975742831, - 95820.45227237958, - 95892.37091878834, - 96174.00550679922, - 95798.21104623494, - 95825.84470023373, - 95872.20122936343, - 95844.9614653563, - 96340.55814080912, - 96480.38866600777, - 96597.4329122248, - 96454.60099367701, - 96506.66704797432, - 96263.45212900022, - 96207.88317037163, - 96239.24501049277, - 97502.79670139607, - 97646.15538785749, - 97931.6145145542, - 97940.34990023683, - 97378.81936381076, - 96721.91479976212, - 96641.41744060135, - 96599.08173979487, - 96422.81562140894, - 96187.153632889, - 96392.32036753843, - 98307.31494297627, - 98369.87703318744, - 98339.77818469383, - 98427.93641245601, - 98341.62446619211, - 98369.9982167125, - 98268.48803241228, - 98448.94646022301, - 96731.3904431557, - 98352.28433632314, - 96621.16848786185, - 96612.95877130973, - 96625.94037806959, - 96825.0533209765, - 96787.91853941279, - 96725.21853912911, - 96716.1939460555, - 96655.75488131844, - 96648.99550677605, - 96506.56055945194, - 97090.90147876457, - 97384.010881173, - 96271.12157331877, - 96358.9276402708, - 99009.30827088827, - 98968.59244384883, - 98993.06721654031, - 99007.66770283102, - 98982.44152343833, - 96558.77218868272, - 96190.10973020262, - 96250.37299645566, - 96247.07790109511, - 96302.24175317744, - 96250.83240914228, - 96351.475287113, - 96280.03121427099, - 96392.52396079557, - 96324.87273668234, - 96241.51104963907, - 96413.63133191726, - 96408.68879235374, - 96797.9408935972, - 96891.75413899266, - 97872.05462730178, - 98368.3157961383, - 98341.32886938391, - 97051.32161185639, - 96393.24636570562, - 96769.40892205865, - 96722.44044323963, - 96646.47732164423, - 96507.62309485405, - 96702.3442322927, - 96787.53069444415, - 96722.57467608203, - 96485.20563873606, - 97263.68940530941, - 97278.01659724039, - 95723.36890130429, - 96034.81351488702, - 96933.61776383803, - 98051.83495872519, - 98282.75113269164, - 98323.4492928728, - 96597.00315049812, - 96393.29657255062, - 96290.54005636094, - 96374.06870812083, - 95604.78437746258, - 95750.88589559712, - 97174.68042421268, - 96780.36553825779, - 96348.04132276963, - 96507.5533367388, - 96316.94089233372, - 96406.34759988818, - 96363.44874937553, - 96158.53654821051, - 96216.07768368315, - 97174.090292395, - 97423.83529752935, - 97375.40849798809, - 97387.39945246921, - 97357.55932487166, - 97219.12677975238, - 97360.80913412399, - 96928.39803287762, - 96246.46103177394, - 96334.44832490938, - 96384.7612066812, - 96687.66890433879, - 96514.01373575524, - 96559.36666294347, - 97476.66833626306, - 97373.24159478948, - 97399.87460150667, - 97562.28816473442, - 97327.25600335708, - 97433.19547536578, - 97363.08021092854, - 97362.61765653682, - 97499.4469867388, - 97347.82046104649, - 97543.28758222131, - 97469.73246031212, - 97415.07468682253, - 97598.37960952554, - 97397.52997943097, - 97425.84737468093, - 97442.60346559418, - 97329.7050864847, - 97478.52336595049, - 97523.48067645995, - 97395.43776515307, - 94173.98426701757, - 94998.21891939109, - 95779.10418991868, - 95221.76445761636, - 95563.21593931832, - 94927.01228813837, - 94813.05089936001, - 95049.81398051501, - 94831.6216521726, - 95106.99733425377, - 95200.37789406479, - 95234.04044483494, - 95174.54016347298, - 94998.56050464817, - 95358.6847925196, - 95209.7640142139, - 95181.22582686505, - 95039.32892818669, - 95161.43568020596, - 95230.15753292643, - 95205.08422479422, - 95169.67825607181, - 95260.99071858512, - 95077.42775615962, - 95115.87710930793, - 94984.96709079483, - 95249.41713009618, - 95383.8578284938, - 95171.9930292263, - 98974.75635141051, - 97495.42818133085, - 97573.7137546718, - 97879.1667547636, - 97752.0332341938, - 97924.88876319247, - 96286.84995846129, - 96816.00002137569, - 97159.9719032367, - 96602.25381360695, - 96541.22800334581, - 96580.09282569413, - 96262.58755908567, - 96477.68388301556, - 96520.83266213229, - 96593.26452848932, - 96652.32078447807, - 96275.60911911029, - 98131.84060703998, - 98116.51550369726, - 98310.25317294084, - 98307.49097620593, - 97884.20567526405, - 99127.37165225792, - 99097.36317848787, - 99210.74174635496, - 98849.06017740154, - 98931.42109207704, - 98929.66878863417, - 98951.6481871395, - 97956.99862073422, - 97903.59153920232, - 97860.23120298976, - 98057.19172951505, - 98025.37844863573, - 97995.64472124574, - 97685.86516354248, - 97728.43536218064, - 97765.6532261492, - 97803.44920114131, - 97788.58947764522, - 96763.14768007296, - 96915.00173927705, - 97836.10518643745, - 97688.00073934876, - 97727.63593382601, - 96406.38208067756, - 97708.14663611, - 97718.08452896669, - 96686.05597598436, - 96547.64348049424, - 96672.85908683737, - 96601.66672785666, - 96337.24183924371, - 96471.83044519875, - 96356.6894447284, - 96509.91978677841, - 96367.48296617898, - 96432.49913903954, - 96517.06841258459, - 96452.70654576157, - 96355.89866425129, - 96476.90982705473, - 96614.76664132059, - 96331.56711893888, - 96422.76850011421, - 96487.64826356656, - 96648.68948995211, - 96506.86847470027, - 96641.51720485609, - 96602.56608801859, - 96362.82663265921, - 96444.06436374444, - 96569.70648172167, - 96487.07322596954, - 95643.58976360751, - 95590.93383746725, - 95607.44304430792, - 94997.80525697407, - 94969.456558474, - 94753.18278928977, - 94684.56361039644, - 94746.05696180757, - 94740.64356322309, - 94928.47293991121, - 95041.75112957697, - 94749.29729931387, - 94787.770570493, - 94862.61137248392, - 94765.37085488303, - 95769.4273404822, - 94928.36583728541, - 94632.31889352873, - 94848.32260879887, - 94909.4801901364, - 94822.21338392912, - 94772.02659537169, - 94744.73198904234, - 94799.15550751943, - 95331.3487126772, - 94775.49929541259, - 94819.89007159689, - 94833.73793561508, - 94887.7091277814, - 94811.2932859593, - 95165.44960730286, - 94879.54696254854, - 94815.49520473366, - 95002.99557299165, - 94871.39332069001, - 94881.5729079285, - 94903.21119163149, - 94804.50966103506, - 94769.12513718361, - 95634.67329415417, - 94756.36115087039, - 94725.74020589143, - 94908.2961139866, - 95587.21671942728, - 94731.62379447502, - 94928.27605842218, - 94873.87443292578, - 94827.75783125078, - 95776.62332951289, - 94861.48746533257, - 94778.80690072749, - 94847.18021121435, - 94681.21667693715, - 94686.68850821337, - 94859.03733117373, - 94833.66567461635, - 94865.96693864682, - 94825.48265916525, - 94928.14149642424, - 95120.7974751264, - 94943.54808386687, - 94808.9434265245, - 96695.73403401808, - 96735.6625162933, - 96720.60531021802, - 96564.020422332, - 96823.59189171705, - 96630.43975177128, - 96563.44435641338, - 96615.96874056084, - 96465.01599917706, - 96009.67472811212, - 95630.2045767319, - 96089.02815632267, - 96067.89889393673, - 95766.15219288901, - 95729.41349529594, - 95620.76960465858, - 95734.53772507152, - 96217.61152393422, - 96518.38805351868, - 96495.48054519108, - 96432.90834803335, - 96413.40389535019, - 96609.85637492496, - 98132.66739592743, - 98184.11582898955, - 96737.38123752185, - 96331.92386954006, - 97054.61849023897, - 96988.38709557017, - 95651.72246340426, - 95685.44647783595, - 95599.68294597721, - 95603.36657863882, - 99482.36791712252, - 99652.18317202266, - 99507.27055929118, - 99448.66639839622, - 99444.04255201604, - 99707.96750950199, - 99813.91502764664, - 99805.25726658729, - 97523.91805244905, - 97387.44466697019, - 97325.35357186201, - 97349.58185053393, - 97397.94499439833, - 97295.9111719528, - 95312.95855588862, - 95249.43208736234, - 95249.13612521146, - 97909.5256296521, - 97671.5271836395, - 97320.9751458158, - 97288.32585044665, - 97287.42371834854, - 97331.31191752062, - 97753.86362578296, - 97544.31371711488, - 97269.95524537595, - 97136.05458186644, - 97836.10112215702, - 97912.74332734982, - 98032.12952113833, - 97812.02122999499, - 97676.13557284081, - 97867.82302155967, - 99050.31283061483, - 98655.12240236765, - 97608.77421579452, - 97544.46873198576, - 97555.47422544137, - 97628.07066642634, - 97445.71186335788, - 94535.23441251172, - 94453.30770379661, - 94555.46811316232, - 95173.1058684115, - 95061.07101043357, - 95125.54161959406, - 94642.13333896926, - 94577.33860504878, - 94677.93437523032, - 94598.57761381929, - 94704.25329936552, - 95898.80369104634, - 95859.76101831674, - 95812.8085668192, - 95924.0510925754, - 95896.15100446602, - 95824.9408665822, - 95758.1497186825, - 95253.24133716796, - 95156.66415912467, - 95285.10107414321, - 95193.57186281015, - 95101.30623358215, - 95288.3668867181, - 95214.81168632788, - 95178.04877880761, - 95238.4612240695, - 96585.10907993346, - 96390.6462111492, - 96213.5014235769, - 96884.94841533682, - 96843.19044479831, - 96976.72186679111, - 96668.19262520867, - 96527.43586088887, - 96519.96662272481, - 96553.27398847301, - 96957.88158177114, - 96076.39327665615, - 96254.52857694228, - 96282.33518668677, - 96286.57370428348, - 95362.96257854867, - 95762.442921347, - 95381.11813749094, - 94883.10635112034, - 95025.3184603646, - 94949.60061790438, - 94776.97725616019, - 94991.55991969479, - 94952.53942297342, - 94891.32234489628, - 94826.4909333284, - 95394.6894172284, - 95529.53434892082, - 95613.36862572782, - 95440.45332612093, - 95428.17340896445, - 95290.12180962758, - 95617.83943211543, - 95509.51889809627, - 95991.33991024262, - 96055.57318060596, - 96097.44273427612, - 95848.90900012582, - 95668.59789817403, - 95969.73089143247, - 96307.29746684979, - 96110.446524941, - 96018.1989928102, - 95916.88717086082, - 96259.9088278092, - 96265.8396473732, - 96425.09656179631, - 98146.26357853966, - 96740.13124735563, - 96595.41352686423, - 96654.64167636221, - 96513.8684829462, - 96544.75552813962, - 96711.99932746214, - 96702.77287733635, - 96622.89110754011, - 96650.8577845288, - 96660.99210432713, - 96495.89435277808, - 94583.67896061894, - 94658.26682954257, - 94620.28434976013, - 94669.0910072042, - 96251.15095739174, - 96304.23939903782, - 96226.01518961282, - 96320.65693732718, - 96277.56204314627, - 95674.83501563323, - 95736.15092677393, - 95786.53743239374, - 94663.42415631165, - 94690.05816224274, - 94529.54887138213, - 94573.33511403036, - 94595.57719945294, - 94607.51235993573, - 94666.84271139963, - 94624.39247192521, - 94549.16204838405, - 94491.8662499373, - 94952.55129948242, - 94615.64321919113, - 94522.78269468108, - 94562.82084434494, - 94593.73117840412, - 94579.78144755292, - 95571.72373244617, - 96621.22573818848, - 96470.6891870684, - 94228.39378501002, - 94061.36529939531, - 94022.25691774377, - 94052.96379103974, - 94285.83388955456, - 94165.01695821773, - 94230.32019308097, - 94662.60718160463, - 94700.17153728654, - 95735.32005357998, - 95692.66532182253, - 95665.0896772998, - 95717.17249319649, - 93771.64901934502, - 93792.45591967623, - 93697.6920875846, - 93762.18661659818, - 96281.32850564222, - 96253.68359021118, - 96325.10446742897, - 96337.60461817843, - 96325.43171609768, - 96171.94045814378, - 96236.30172944344, - 96372.84433195303, - 96416.50330670876, - 96461.59608065485, - 96187.06552247319, - 96046.32402735324, - 96093.98837699907, - 95954.38507019526, - 96049.50535520805, - 95998.29219547354, - 95970.68481188625, - 95908.75378900667, - 96010.59585795696, - 95963.09163288568, - 95614.9761433545, - 95473.6830691956, - 95625.48730067638, - 95504.31384644122, - 95585.85264252442, - 95698.5799699456, - 95371.62884591159, - 95361.67422421975, - 95619.42230416782, - 95663.18864254322, - 96284.55056147317, - 95559.6425612621, - 95412.5939248789, - 95399.43047732508, - 96134.90709775368, - 96196.76537660908, - 96165.55211580031, - 96220.62136154641, - 96083.77668077107, - 96256.84714815787, - 96145.48967947123, - 96140.70858890428, - 97018.01929554026, - 96848.85035393931, - 96886.03757990844, - 95472.53473339273, - 95592.3590579154, - 95577.60998891103, - 96402.25288687303, - 96931.73639236027, - 95307.82377822268, - 95312.76274987488, - 95246.617811933, - 95202.42610294092, - 95189.33791646003, - 95279.44711489225, - 95246.69781047499, - 95324.53269217705, - 98252.20125651163, - 98157.37070871185, - 98357.10377182142, - 98324.73469132032, - 98295.76754954316, - 97105.86251341687, - 98258.1504517649, - 98246.01088839823, - 97429.76144404312, - 98240.64626714814, - 98321.03221855451, - 98271.68050762633, - 93752.3312236433, - 93756.90772025482, - 93953.20323974107, - 94091.98744666459, - 94124.10076790105, - 94087.37147599955, - 94126.81383111597, - 94013.12054823448, - 94172.54386589286, - 94029.39526780658, - 94131.47438278008, - 93941.60029047483, - 94051.09597981113, - 96692.12311657275, - 95777.45510873004, - 95708.6636061905, - 95660.79157564534, - 95632.78201832197, - 95733.23099723773, - 95625.2334428732, - 96690.8587748414, - 96662.49126502928, - 96745.05165244982, - 97124.39568027973, - 97095.89811358032, - 97112.51508375412, - 97438.94706894625, - 97298.1281701925, - 97162.94378004716, - 97368.28761209213, - 97145.35276682033, - 97198.43320497262, - 97245.58511308912, - 97404.46242057864, - 97240.73904594999, - 97394.17633422943, - 97150.0365297859, - 96980.44928277681, - 98203.0854152399, - 97903.23099241641, - 97820.00767848469, - 97165.28391525596, - 97121.42521929949, - 99200.76991821163, - 97730.10289313177, - 97679.4016292501, - 95973.2616830581, - 96015.96776704377, - 95591.27380732736, - 95648.05875995208, - 95602.29812834255, - 95765.18576710457, - 95710.673787455, - 96760.92857071379, - 98107.98397593139, - 97143.57757258782, - 97117.76259346868, - 97199.548737579, - 97244.54058788632, - 97151.98882224852, - 97119.08649562852, - 97228.8586541166, - 97278.2734802375, - 97971.15353949438, - 97948.15175790482, - 97981.75949850792, - 96126.7346762115, - 95933.5287680958, - 95988.09830570368, - 96776.65072818978, - 97174.4902451007, - 97535.24128889033, - 97857.0437324069, - 98441.4708798117, - 98378.02420745678, - 95765.99579339992, - 95805.27848287535, - 97459.28505940326, - 97675.57302296757, - 97657.0685191219, - 97609.83906118742, - 98605.62696637101, - 98594.57251546823, - 97292.27504024247, - 97208.17700488467, - 97153.8030933662, - 97461.83260827704, - 97099.70079043217, - 97067.465012111, - 97404.7469494071, - 97118.95086045063, - 97039.56267630485, - 97100.65924565001, - 97324.6914900351, - 97043.84788523692, - 97481.10824091855, - 97510.25838188223, - 97122.99450066582, - 97151.83752746668, - 97116.3702029372, - 97317.08656207834, - 97297.57988152267, - 97399.26667465223, - 97110.35476659756, - 97245.9845655978, - 97338.6794096304, - 97304.16071013291, - 97221.2851500303, - 97218.18204837828, - 97028.63638755542, - 96793.83633777838, - 96860.75623904701, - 96803.46095891818, - 95603.43349316179, - 95538.75882410601, - 95403.35995732812, - 94982.11885713646, - 95091.65908345411, - 95006.98525443788, - 94961.43165547009, - 94945.53507458087, - 94903.43608338811, - 95065.55850772645, - 95011.65811258498, - 94939.05144867142, - 97851.96545124071, - 97776.20823036006, - 97951.79743510587, - 97678.34155724986, - 98068.90809649408, - 97644.57598419554, - 97840.23347415248, - 97858.72921784101, - 97998.55969379349, - 97900.61279437604, - 97911.67531684053, - 97775.50314469819, - 97890.9310548109, - 97940.44104273879, - 97891.33496893896, - 97867.3221662809, - 97936.31670167827, - 97945.53098688826, - 98007.87228599943, - 97872.15207962286, - 97671.66130484144, - 97137.2003252543, - 97176.99512205806, - 97178.02769187269, - 99234.6345322715, - 99167.15507702739, - 99196.99137747717, - 99345.95077259775, - 99298.94031897592, - 97434.89728860323, - 97758.09088007455, - 97717.66882748203, - 97692.05204438251, - 97864.44960459028, - 97856.92589348364, - 97646.7315802885, - 97518.4690028683, - 96568.3757200578, - 96360.79423069155, - 96201.11846761782, - 96147.12728695886, - 96712.80076694199, - 95593.06297803868, - 95019.76951112322, - 95102.28517788525, - 94975.72901611873, - 95116.68898388208, - 94867.64816679416, - 94984.22203293043, - 94919.08305377813, - 96508.73199069055, - 96791.11917374496, - 94924.30340248237, - 95102.2093582555, - 95018.57997559619, - 95013.28433948402, - 95084.45208789824, - 95044.35313290669, - 94991.32690242348, - 96292.96228716835, - 95396.31854026583, - 95370.67728844626, - 96457.41148009703, - 96281.24470025112, - 96370.77101982675, - 95464.53667424759, - 95403.07991812484, - 95460.77332334426, - 97713.34748462857, - 97678.75741357544, - 98480.18557061398, - 98344.96213348431, - 98429.70413093227, - 98511.79293987446, - 98434.76946955148, - 98467.42435958885, - 98524.49222600524, - 98559.46645536512, - 95959.85383984294, - 98087.31445184478, - 98071.68595187098, - 98629.22677301739, - 98588.84201485832, - 97955.36336549766, - 97936.09237213417, - 96198.27647513033, - 96152.66864658507, - 96586.95927925126, - 97158.89221586598, - 97020.82930599325, - 97021.39491967497, - 96979.82022752479, - 97016.71696412006, - 96721.31987028342, - 96644.41975002215, - 96671.14731805214, - 96322.43872730463, - 96408.99138701527, - 96380.36068124554, - 96410.01535381378, - 96545.67249216154, - 96337.69690409732, - 96379.29684177249, - 96256.40262368404, - 98094.94144871847, - 98102.66578906662, - 94425.17698527497, - 93711.5032857345, - 93766.13514013491, - 93794.37719324508, - 93725.48220687856, - 93282.32117482684, - 93221.73955457543, - 93208.18303346328, - 93325.79765311313, - 93214.11532235434, - 93315.33872157881, - 93266.84118076335, - 93260.96297517662, - 96468.45059842155, - 95419.01295011838, - 95522.29690782333, - 95434.63162470613, - 95522.59347807155, - 96419.20807083481, - 96121.69831110585, - 97051.56980439604, - 95549.4392720819, - 95516.47032069488, - 95289.99947728145, - 95545.42707969059, - 95587.50972921033, - 95085.7358614468, - 95766.82836995482, - 95105.9704756148, - 95815.83892952197, - 95191.15728912293, - 95512.73349904499, - 95626.14363249643, - 95032.40110092318, - 95631.07394328593, - 95590.81174307152, - 95912.25682425735, - 95597.7906661159, - 95579.93831216634, - 95715.19253104036, - 95126.23354130394, - 96534.17654783507, - 95015.33918715396, - 95796.61373078152, - 95643.13524318043, - 95746.24059541902, - 95559.2112095161, - 95766.4420442681, - 96526.79557731359, - 95131.5941183471, - 95018.48362985617, - 96065.14768742399, - 95634.93267958445, - 95527.42462717323, - 95194.44309703742, - 95813.90918667779, - 95726.95869510453, - 95954.92061138574, - 95112.53926171671, - 95049.89107673854, - 95733.5582374262, - 95852.81047544103, - 95167.71564066921, - 95788.6686934094, - 95156.93526218369, - 95503.24905229843, - 95227.31453053986, - 95256.82853161849, - 95777.06593763633, - 95778.11133873799, - 95841.15444703231, - 95545.63612104181, - 95535.85549573906, - 95111.693114726, - 95161.29561184804, - 95751.83804119815, - 95154.35913268666, - 95743.57295726631, - 95566.08096854025, - 95071.67988020071, - 95320.52292032006, - 95795.05422834658, - 95080.07065852977, - 95078.64341067748, - 95009.57828432537, - 95204.47944062315, - 95257.49256519784, - 96576.33824877361, - 96378.93466044324, - 96299.85768372391, - 96612.8462594204, - 96619.36075421462, - 96050.51896679334, - 97096.25480847151, - 97461.17357839017, - 97113.68749649214, - 97070.65467482769, - 97085.84775973822, - 97511.27320539985, - 97471.4065804253, - 96172.51733633167, - 96596.14681899169, - 96432.47446387983, - 96730.72662363359, - 96815.74842835017, - 96432.60634695792, - 97017.1669084225, - 97173.35179768581, - 96929.96417980653, - 96895.32993115457, - 95960.83337961102, - 95973.18677822626, - 96185.91987135717, - 98053.0642172455, - 98274.51626017109, - 98416.67608487829, - 96833.09629477594, - 96389.15700605555, - 96728.86287279802, - 99228.92028443553, - 99212.70100378105, - 99232.68405354682, - 99103.44876993205, - 97711.83186455314, - 97603.39364622922, - 96767.66900065186, - 95740.22395410195, - 95874.51064937194, - 97094.08230838644, - 96858.31183832121, - 97019.63624773566, - 96947.97323662853, - 96831.27749069908, - 96392.74500653436, - 96436.86822188261, - 96376.91690518416, - 96350.55565716545, - 96321.15146800532, - 96524.80040507406, - 96860.6503292752, - 96680.86127426095, - 96398.83615088987, - 96391.62172387257, - 96272.74969865312, - 97698.46004125582, - 98150.22448558552, - 98046.56042319539, - 96091.68950774056, - 99340.31910283645, - 99313.20979173463, - 96470.73828277734, - 96565.0881456934, - 97185.1808281155, - 95500.49413841194, - 97254.60654731093, - 97228.53082661908, - 97457.80305691704, - 97262.678362189, - 96245.81287553936, - 96314.41375523742, - 96401.76747586693, - 96355.90615678827, - 96369.69059048773, - 97186.3132997967, - 97064.47646579129, - 97158.96990923911, - 95870.52884118582, - 95840.07213390034, - 95680.1096833134, - 98796.43807365598, - 97288.66317264974, - 97400.5708421359, - 96733.77607604802, - 96760.86563639867, - 96753.76496796569, - 97632.01085607987, - 97563.26458780964, - 97588.76856320181, - 99361.59793953648, - 97903.46526431757, - 97873.51796335696, - 97948.39404069813, - 96889.0306429424, - 96907.48571010484, - 97191.09182635164, - 96942.59821550541, - 97747.44748826537, - 96387.01730151517, - 96598.19218239089, - 96473.28103194672, - 96658.84703021134, - 96494.81661435854, - 96672.20067299905, - 96598.19772505444, - 96510.46443991837, - 96701.69552746598, - 96539.74460144996, - 98226.84081787949, - 98241.35583628787, - 103012.50040913292, - 103050.16207521364, - 102935.46730939098, - 102950.02495500898, - 103115.61980314259, - 102981.6591476348, - 102970.32847474286, - 103050.37577267221, - 103039.45476144501, - 103145.40971868698, - 102881.9871404351, - 102896.31427168078, - 102743.93553159607, - 103003.97003289565, - 103071.21323586704, - 102958.121892692, - 102990.59814603475, - 102955.94479850777, - 103041.38776247326, - 103006.17533551028, - 103097.54858465325, - 103093.03210077138, - 102849.4521539362, - 102929.61114879283, - 102836.82326066242, - 102850.0467744593, - 102710.33828378592, - 103171.58738973808, - 103039.75462604016, - 102822.41041165365, - 103145.40299178564, - 102893.70015633377, - 103068.00837449041, - 102885.78859789654, - 103053.80194217195, - 103120.61740341707, - 103353.3242908138, - 103044.72318410393, - 102885.22782431466, - 102934.2236077041, - 102936.50978128517, - 102797.13886249666, - 103138.73232130763, - 102970.44843874604, - 102673.92982323217, - 103391.80690165356, - 102918.21735494805, - 103087.20566196111, - 102940.683338319, - 102799.74205444116, - 103183.68169934869, - 102917.88714022035, - 103082.19417204797, - 103013.92678419144, - 103079.13759889861, - 102796.76557690598, - 103008.94428849094, - 102914.14727498162, - 103097.33141408257, - 102984.59817230792, - 102999.242153458, - 102825.0800232946, - 102943.62442164868, - 102996.76586737529, - 103056.99415971928, - 103067.37440468137, - 102735.70852544352, - 102977.56662627251, - 103052.37715191457, - 102856.38596651099, - 103162.96543297928, - 103029.09037497792, - 103086.18250158385, - 103144.62346271172, - 102857.39568352004, - 103018.48102906163, - 102846.81397282002, - 102959.24234304379, - 102860.97984399927, - 103204.38427585832, - 103037.63504006495, - 102976.99922262576, - 102915.13967065407, - 102948.12263359, - 102905.30463146325, - 102775.59654509142, - 103064.59068768269, - 103127.2944683463, - 103034.67848377136, - 103118.71870989143, - 103071.00150506526, - 102791.07795037152, - 103141.91696005758, - 102900.66287637541, - 103159.2274797242, - 102953.45731484497, - 103076.07764829494, - 103180.222746918, - 102929.58826717759, - 103023.01993823654, - 102806.18146902687, - 102815.61399877533, - 103103.79792250128, - 103062.08365221192, - 103127.22842256306, - 102987.13535610563, - 103015.066909508, - 103003.68988635896, - 103019.86716613526, - 103015.5953490687, - 102965.30578971672, - 102846.40082320553, - 103043.9117792615, - 102956.1297050231, - 103183.26568270578, - 103076.71371945935, - 102839.27781745781, - 103195.814589243, - 102844.52372308212, - 103048.07930443641, - 103116.44549536241, - 102887.65778558908, - 102787.7592041423, - 102878.33658342516, - 102975.28613555466, - 102777.14875199659, - 102784.83487471334, - 103055.67082885235, - 102922.95094014877, - 103018.59506549768, - 103099.08631775716, - 103074.18589615662, - 102895.43270597128, - 102761.9969007521, - 103040.86211690954, - 103078.14916824212, - 103141.03868202487, - 103220.7702303365, - 103039.71918145288, - 103000.09208703019, - 103093.18540186799, - 102886.24823604496, - 102734.2330280844, - 103124.81756865612, - 103116.45746689758, - 103116.44206372628, - 102905.47635113973, - 102876.54018840358, - 102995.30845949444, - 103461.52053531604, - 103109.24014121846, - 102639.10208368214, - 103127.93620264718, - 97816.11957295614, - 97744.13754822216, - 97875.02824277256, - 97875.23810233118, - 97860.97988843071, - 97874.20140366515, - 97813.77444698993, - 97295.41993443215, - 98504.0608151538, - 98563.09341475698, - 92714.11963007496, - 92747.05003046816, - 92736.93813690646, - 92758.02599424361, - 92772.32573698397, - 92875.48053840011, - 92643.21127411565, - 92635.69548630752, - 92662.91635122887, - 92806.5752589732, - 92672.51828517085, - 92780.45361230415, - 92910.85152531487, - 92750.21944483303, - 92929.03768547083, - 92695.48300652891, - 92763.33740890355, - 92746.60202937137, - 92804.83283425898, - 92656.75321387713, - 92720.63886172147, - 92781.03766208091, - 92955.99148324825, - 92819.90574053729, - 92863.93843996643, - 92762.18406665193, - 92731.96951288165, - 92829.5244158295, - 92829.06364513682, - 92964.21376697725, - 92797.61369683825, - 92899.57389546379, - 92689.95383378031, - 92879.10271586856, - 92918.23986331817, - 92770.44632801176, - 92826.16653182537, - 92776.46176010194, - 92799.3624177929, - 92744.89756492016, - 92788.55500541464, - 92743.6893037566, - 92755.14253033418, - 92674.50485570161, - 92778.98325152327, - 92823.64619231266, - 92845.58188637684, - 92870.93404835771, - 92855.1291239748, - 92698.77859603205, - 92802.31863144008, - 92892.72049598476, - 92868.7121626449, - 92915.20617790846, - 92928.39381493034, - 92847.40821100175, - 92864.43936845861, - 92876.39180829469, - 92838.77007893879, - 92968.71300952189, - 92759.73292583875, - 92887.42259766499, - 92908.28155211873, - 92748.72130275492, - 92958.5054330462, - 92972.27137717552, - 92886.64791972426, - 92932.43400044982, - 92868.65401523824, - 92789.25845787131, - 92871.2505752866, - 92915.12458208142, - 92741.2233382749, - 92825.6682181709, - 92937.13338499848, - 92714.19169562703, - 92710.4092859258, - 92715.643325396, - 92693.19807508035, - 92785.66175398401, - 92762.37604498131, - 92898.36187164378, - 92816.23744248544, - 92846.47331272127, - 92805.50156317676, - 92908.05512282117, - 92780.10459702351, - 92735.8872940194, - 92809.1992299666, - 92734.73602492957, - 92822.90992394777, - 92792.15515640823, - 92768.14688762419, - 92907.89027775265, - 92803.08916804337, - 92805.67467569452, - 92674.69300068788, - 92860.77077420008, - 92652.28269502005, - 92931.03691748106, - 92786.45165805808, - 92690.068927953, - 92654.04075146845, - 92770.35188046416, - 92806.45226779237, - 92678.6570565419, - 92789.38337680516, - 92816.16939505044, - 92681.04409740334, - 92791.67829836892, - 92670.95905256645, - 92718.19280810321, - 92931.93535013939, - 92832.21310659085, - 92970.07983820014, - 92785.25516080103, - 92703.7009482962, - 92743.15309026223, - 92832.99190630158, - 92848.17018472671, - 92856.6758347593, - 92700.80017637742, - 92811.6659175343, - 92820.39777410144, - 92637.22500048368, - 92724.95781401754, - 92918.12000715463, - 92764.62782096473, - 92834.87795946051, - 92716.36551030405, - 92688.16204123068, - 92769.98293309148, - 92747.11480769856, - 92830.97365426456, - 92956.88845743412, - 92667.03163689894, - 92773.97104867987, - 92765.97352504909, - 92817.15251278403, - 92839.25105015197, - 92684.27446517262, - 92738.68503255733, - 92928.56873551727, - 92951.93214721176, - 92840.23927959817, - 92837.4325323441, - 92773.24336533085, - 92707.69711555765, - 92894.12452528065, - 92795.44137357986, - 92872.08606858594, - 92908.58904558522, - 92895.13083815288, - 92968.34537712067, - 92933.32350347849, - 92817.07788508855, - 92708.3826511513, - 92633.09806031307, - 92724.69669127463, - 92801.33010757218, - 92859.73470884244, - 92850.4893758, - 92796.35612079636, - 92724.80064222643, - 92763.48617614119, - 92691.12432749973, - 92832.2455281412, - 92821.6970235056, - 92851.82952662438, - 92739.55758843302, - 92845.21219008189, - 92889.60537235835, - 92834.7670703216, - 92733.8821803168, - 92986.54378267881, - 92947.59593567792, - 92856.64253156737, - 92846.37780126568, - 92929.57342431239, - 92694.65154614455, - 92725.73648513126, - 92909.37864471917, - 92805.98275581197, - 92737.17105520054, - 92878.3665763355, - 92802.85003718645, - 92856.84754805104, - 92888.32012726701, - 92898.5423456085, - 92936.9208329952, - 92705.6426947887, - 92802.4910911643, - 92703.75887355224, - 92720.32907766118, - 92776.69738221027, - 92670.03570964884, - 92863.90985342726, - 92783.24992765753, - 92630.81613535142, - 92650.60838023956, - 92761.85914886044, - 92892.90945921653, - 92872.33464950968, - 92900.15446475662, - 92870.6477486372, - 92933.1992941243, - 92851.02442957304, - 92751.17943703893, - 92823.51293857984, - 92945.57764957601, - 92729.4609843271, - 92890.45354067329, - 92861.71457971018, - 92758.15563703989, - 92954.24674729079, - 92684.86692219344, - 92867.89952269728, - 92753.36839914953, - 92815.38400026898, - 92641.38065955654, - 92913.90088716414, - 92828.71624935322, - 92789.6538543949, - 92893.38018644902, - 92846.85628511268, - 92874.80861019567, - 94389.82268512787, - 94473.83901464478, - 96726.85001938077, - 96856.75307244163, - 96887.63327582092, - 96757.24745508902, - 95941.37906805627, - 95883.81802686673, - 97300.31066052879, - 97227.48630235011, - 96107.43914118575, - 96267.78319342206, - 96223.35433626908, - 96431.48255781003, - 96906.24469590047, - 96456.6197756494, - 96621.2306651311, - 96103.35761667813, - 96135.79066248288, - 96066.03066201929, - 96124.46503141584, - 96209.36237781073, - 96049.12329461102, - 96234.19587815474, - 96182.34124187389, - 96069.25402929624, - 96110.12517865465, - 96104.37397737885, - 95473.87175752441, - 95529.50498627951, - 95559.19394644504, - 95475.06861200492, - 95576.43864239694, - 95675.56715847473, - 95652.38718337071, - 95529.44060928901, - 96463.32828761848, - 96332.28386414018, - 96704.88510542022, - 95403.82629332301, - 95414.5198416682, - 95428.74452499427, - 96837.5234314195, - 95981.4289276959, - 96091.23112460926, - 97608.10402017404, - 97884.05250852642, - 97883.03260448822, - 97729.09348492567, - 97618.47312684309, - 97807.37725707618, - 97782.00465249535, - 97819.38169053383, - 97944.82949518417, - 97765.78400893019, - 97793.209213772, - 97914.72098171483, - 97738.23489846344, - 97952.48333090381, - 97679.97545734418, - 97907.07772482715, - 97692.3701015755, - 97854.94207901634, - 97911.10388910468, - 97721.07590051215, - 97836.27828454283, - 97690.94002689296, - 97837.0291488112, - 97866.5629916667, - 97641.92112939028, - 97668.29733496392, - 97745.78152964913, - 97791.99447045982, - 97799.84504107031, - 97895.17566291973, - 97556.46186289481, - 97842.08313682882, - 97646.58785246593, - 97955.37870272386, - 97569.3314865344, - 97686.2269103041, - 97716.19446453296, - 97566.32146451849, - 97749.43723227644, - 97817.99605739959, - 97770.29128264848, - 97837.88980822326, - 97659.10882033668, - 97944.48848345084, - 97724.71001358965, - 97840.4488438348, - 97682.13216992372, - 96182.13562718286, - 95658.74013915077, - 95679.24097287183, - 96253.47998191483, - 97834.98736896088, - 96049.63837547174, - 96089.25686352311, - 96121.88887235317, - 96094.58974753537, - 96176.81124765753, - 96239.21475237247, - 96187.2673674574, - 96332.65419596537, - 96233.66033300763, - 96233.30699052043, - 96134.36234317473, - 96297.38515154971, - 96151.41022304098, - 96082.6862769373, - 96223.09032145453, - 96262.14436611164, - 96180.26927345316, - 96170.58043821786, - 96141.79495419456, - 96226.17274284131, - 95879.78023428856, - 96318.37473253458, - 96032.14228891094, - 98052.01818030688, - 98000.89472177274, - 98030.63733564413, - 98149.10712130788, - 98216.62724920495, - 98213.69694156857, - 98136.52770175759, - 95844.27494216182, - 95882.75653309235, - 95858.11291681843, - 95873.13670582481, - 95915.45945457155, - 96661.15501811591, - 95780.44924539157, - 95886.06286226807, - 95746.45351481336, - 95768.15206604342, - 95691.04939234379, - 95836.51390847687, - 95934.77941414388, - 95816.16075862515, - 95721.1118486502, - 95900.55166557113, - 95799.86698698705, - 96081.51773116515, - 95846.27746233897, - 95973.08240383722, - 95929.56949551513, - 95856.24184208568, - 95962.648951747, - 95937.40790539984, - 95824.43387327349, - 95733.48913760284, - 95793.6820658207, - 95772.40764226652, - 95922.24975383069, - 95914.52764200403, - 95878.63974632234, - 95810.1892282629, - 95986.87215922702, - 95854.36203630836, - 95751.93219087191, - 95948.29108104784, - 95933.10890391868, - 95771.1520841971, - 96026.31169836612, - 95774.14507709046, - 95990.44398072414, - 96644.71742174745, - 95797.38464544155, - 95759.28364262846, - 95879.32488590298, - 96007.02552024368, - 95799.71339132743, - 95986.9049325351, - 95945.23705564445, - 96030.33284891481, - 95810.60492377383, - 95867.72485103867, - 95904.66765956307, - 96033.15612682415, - 95749.64560857885, - 95740.81234286937, - 95693.87231896988, - 95747.4548018069, - 95791.04080191755, - 95786.72480025757, - 96004.96794127276, - 96069.3698993026, - 95936.80461170511, - 98391.3654527381, - 97562.46612950841, - 98382.73052405847, - 97552.51833446544, - 96247.06477880469, - 96115.75097550079, - 96236.82264330242, - 96287.68799404218, - 96341.9584726013, - 96334.04844919537, - 96189.50164004327, - 96129.95296040154, - 96686.53014972531, - 96666.27787163145, - 96682.58310310973, - 96315.1576937446, - 96403.18675110892, - 96432.7187319126, - 96338.47765596065, - 96273.99014457836, - 96495.87133068114, - 95869.20236478248, - 95912.008333997, - 95949.1600784945, - 96105.10042717274, - 96613.09529056762, - 96555.82518831582, - 96352.76136627332, - 96129.08577941864, - 96147.46587683262, - 96112.49719695996, - 95965.43289062445, - 96033.98990398803, - 96932.98205381237, - 96212.6841921486, - 95445.50029813193, - 95395.99414455838, - 96309.88478423315, - 95773.4170104861, - 96109.23688977351, - 96096.91431835426, - 96011.82130088062, - 96061.42099266543, - 96074.03549605754, - 96088.75199644471, - 96118.24342476773, - 96861.46033115732, - 96640.5620202917, - 96557.59659352103, - 96588.30967872712, - 96008.88833191514, - 96027.13384085294, - 95883.83699885607, - 95975.06514142088, - 96004.72927759534, - 95950.19346715305, - 96051.95003272599, - 95893.51889181437, - 96144.89367540594, - 96101.32030537611, - 95923.907758798, - 96043.19356552222, - 96087.111627038, - 95969.29263186545, - 96043.87770069051, - 95992.08890608055, - 95999.96496058637, - 96012.29670587514, - 95384.71934393427, - 95319.53976511759, - 95500.60372435469, - 95386.86547266938, - 95393.91431790583, - 95496.27699337724, - 96569.52588876095, - 96682.8032109078, - 96505.5768828933, - 96561.1289662077, - 96679.55975867888, - 95351.97758507192, - 97189.57952601701, - 96943.5826191979, - 97250.13277358422, - 96935.82800306576, - 97299.19607449145, - 97525.78803979425, - 97178.4335252593, - 97235.96464026743, - 97343.6823481417, - 97223.42280780959, - 96962.82978313397, - 98366.5317572711, - 98294.15306017191, - 98141.6380062112, - 97298.22480265996, - 97263.87438890443, - 97405.45190185368, - 97265.26688568054, - 97143.09835047876, - 97129.06878847051, - 97235.87959368073, - 98296.91832297333, - 98283.52624727061, - 97321.80845451674, - 97570.19222318186, - 97592.15333958538, - 97634.27256841559, - 97731.86232399511, - 98027.23840369366, - 98014.4662099854, - 98070.63175874326, - 97912.42274945986, - 97847.58279285853, - 97961.59489284047, - 97668.12360152378, - 97354.44949091639, - 97438.11718141663, - 97123.22683661472, - 97010.00916339061, - 97003.53337889878, - 97130.84549007515, - 97126.32749050998, - 97031.44944641803, - 97089.4267597361, - 97004.45699478449, - 97072.86333942694, - 97161.1662180509, - 97054.70302158214, - 96956.32059970194, - 97023.40738180937, - 97117.40589499525, - 97029.66141271086, - 97109.4740304231, - 97150.9713187897, - 97384.12423704745, - 97261.41344047216, - 97058.39697873502, - 96637.24626095728, - 97326.30387106475, - 97762.94327311365, - 97434.17271064689, - 97043.03097313532, - 97243.08337739702, - 97145.76310622979, - 97095.05235018766, - 97256.31857012321, - 97209.354903683, - 97275.21589329709, - 98126.72194186601, - 98029.23649616924, - 98218.18612787206, - 98173.49799372526, - 98243.20668277878, - 97942.74096463536, - 98086.92377545155, - 98136.26463837818, - 98032.10914792269, - 98164.7191831383, - 98177.75893148144, - 98048.7976669239, - 98085.14677152337, - 98137.73454611025, - 98087.89687269753, - 98058.3882260423, - 98196.25269400347, - 98165.00907916101, - 98038.87796969373, - 98047.80561487027, - 98214.51331152665, - 98221.44438791503, - 98250.33407362783, - 98175.28356611886, - 98086.64316477746, - 98153.95335586341, - 98453.38379434445, - 97072.80267951578, - 97051.94872116366, - 98217.55465375583, - 98311.68272827691, - 98378.07785934748, - 98246.37587520153, - 98230.17666779128, - 98046.28708608718, - 98251.18088487917, - 98319.10302793559, - 98197.145671496, - 98233.44659529526, - 98348.03221156073, - 98248.99486452407, - 98266.98788422802, - 98381.35948380831, - 98387.01183578208, - 96930.45087312897, - 96711.39206785646, - 97730.67186086356, - 97737.3791540576, - 97760.05643502806, - 97812.77410308796, - 97846.09235022662, - 97844.89671201118, - 97790.3443567589, - 97780.88601719037, - 97793.6389519722, - 97822.87456305856, - 97756.11969829707, - 97714.25738805142, - 97797.73998808523, - 97059.65093863031, - 97074.06837654435, - 97267.94399725233, - 97420.50106316275, - 97625.9522204539, - 97641.00229908383, - 97516.38998854977, - 97567.99530773342, - 97610.07987633217, - 97071.63031530446, - 96996.84956326048, - 96993.23426998722, - 97019.97811091317, - 96980.83698822696, - 97085.24353199765, - 96992.79396284865, - 97154.35896812822, - 97382.12160605498, - 97967.22245570888, - 97293.33443899159, - 96764.02037724445, - 97500.29116980988, - 95123.75313616887, - 96504.0113092561, - 96749.74084841611, - 96786.69954014356, - 96590.63286272458, - 96722.33353227373, - 97030.2520829105, - 96829.08746262993, - 96842.27837158077, - 96405.86324838473, - 96795.14077544119, - 96809.16183135839, - 97296.74368922459, - 97952.9294243462, - 97955.84289253918, - 97937.84650883084, - 97926.20155611816, - 97921.57888470891, - 97447.89786565928, - 97584.54867327097, - 97440.19299843578, - 97537.69416462189, - 97557.92783029494, - 97520.47130796686, - 97420.5839825796, - 97406.49600346612, - 97524.95581496398, - 97470.45712281887, - 97550.40349062327, - 97402.25470761966, - 97501.53966637526, - 97456.21491158627, - 97486.11011137227, - 97490.76512311144, - 97473.15345637558, - 97380.45145645179, - 97364.93794419584, - 97493.31139326544, - 97642.23998100052, - 97733.12248701614, - 98266.1684006728, - 99212.51030616327, - 99089.64531938844, - 97568.18928030234, - 97664.13121209273, - 97608.50198699025, - 97516.32843180199, - 97295.1480213509, - 97527.7722333421, - 98354.2021118834, - 97981.00694860649, - 98133.35294956547, - 97482.43177391349, - 97424.13306252814, - 97531.13306710056, - 97491.69682662486, - 97607.29756739261, - 97402.21565975588, - 97409.51267743493, - 97935.18971112657, - 97745.13254705475, - 97717.30182307873, - 97839.00962931263, - 97707.07960783267, - 96382.50314982572, - 98949.18912879386, - 98010.42769601001, - 97998.11890191796, - 98181.21611959832, - 98121.44337304786, - 98071.41054108432, - 98381.74787497967, - 98290.95288923327, - 97150.45925062025, - 97261.7617408887, - 97156.92705815511, - 96809.13802091916, - 97271.69810632353, - 98135.44809761492, - 97975.85969435751, - 98087.74110527057, - 98131.02182023783, - 97842.3191241412, - 97897.19574531108, - 97740.11577656561, - 97901.20186675964, - 97932.13537150175, - 97364.53654526435, - 97596.51200593878, - 97466.27266862227, - 97591.70446658987, - 97559.74444341238, - 97556.34242910771, - 97568.50082889231, - 97504.15192908207, - 96925.02449761663, - 97281.94651476617, - 97754.87037614986, - 97816.8011205971, - 97889.86492800197, - 98299.94934348867, - 98291.09947188398, - 98218.1665266749, - 97646.77543914225, - 98092.4725283489, - 98095.24070406985, - 98265.74336042402, - 98380.98621041664, - 97453.59900556323, - 98175.83270961333, - 98068.84935339227, - 98076.53351725111, - 97321.33667852162, - 97256.20849471942, - 97375.35204686232, - 96085.62481953611, - 96480.10013682928, - 95635.4952582386, - 95660.99083576904, - 98301.13718378269, - 98344.85074410372, - 98394.3083189937, - 98310.53063600973, - 97346.1892401973, - 98480.40348207085, - 98370.04229097803, - 98451.12892657102, - 98596.80481606587, - 98320.60384126543, - 98702.60040244272, - 98398.75524090877, - 98445.66094374743, - 98732.37072864667, - 98369.26821419236, - 98345.90054955689, - 98310.13941730415, - 98350.13090091896, - 98367.03708190138, - 98981.74509741156, - 99115.95103184906, - 99044.69297651587, - 99139.70935255074, - 98942.63618668188, - 99068.30285214641, - 98837.87215098692, - 98941.98492686346, - 95925.51936102928, - 95836.86051364095, - 95841.63723542419, - 95807.55730759914, - 96714.19926904603, - 96823.46958884488, - 96172.1853849051, - 96001.11875324031, - 96153.74670381845, - 96814.77969019499, - 98464.03856830075, - 98189.86043944341, - 98307.69673094383, - 98237.26193514904, - 98624.79723960246, - 98285.95990732293, - 97698.11772956593, - 97385.0681494814, - 95837.99483341178, - 98228.7849099925, - 98375.74582118145, - 98182.14007435848, - 98140.23039610147, - 98269.97101414308, - 98274.18301520034, - 98261.35090991932, - 98152.55259488344, - 98222.89012213812, - 98101.23332558201, - 98175.87245687013, - 97595.5487286106, - 96279.56542526848, - 96530.07073939945, - 96589.42762961413, - 96756.45377519565, - 96827.37038036223, - 96930.8467707688, - 96494.91179403212, - 100553.61137409393, - 100444.89520239284, - 100530.44923311533, - 100626.79397543533, - 100504.09236604944, - 100461.50336537426, - 99852.28352799846, - 99808.93365789295, - 100898.1530317686, - 100848.69931219713, - 100857.84354867911, - 100797.99961855274, - 100682.51103448716, - 100956.3356976481, - 100820.29890680054, - 100757.83911726538, - 100777.06863317556, - 100805.1278220788, - 99897.00034100206, - 99885.53367261976, - 99733.89269403598, - 99931.09159473867, - 99989.17577184312, - 99402.69167743201, - 99914.41548040505, - 99949.71858455199, - 100007.300600629, - 99941.71936800965, - 98696.20977067878, - 100481.51513057065, - 100403.30601497291, - 100529.91253667448, - 100568.23920670286, - 100728.97795077493, - 100437.50150850076, - 100194.52138415762, - 100103.23446886911, - 100329.56908981693, - 100165.50473225, - 100010.5721553044, - 100048.20827001765, - 99552.26651483987, - 99539.09821540986, - 99569.29443472087, - 99712.43812317886, - 99401.76593393642, - 99546.359302407, - 99547.70287765094, - 96768.76253347314, - 96838.7838623563, - 96789.33376936015, - 96920.93490684904, - 96831.01533371997, - 96946.95627384465, - 96923.16983244233, - 96808.41765699841, - 96809.07917067675, - 96856.67588119206, - 96847.17765287637, - 97506.82580701464, - 96734.42347125604, - 96749.37391939254, - 96816.89633164286, - 96732.82218142171, - 96918.79091209936, - 96977.91016252428, - 97203.10489846802, - 97148.42701927797, - 97394.5768705934, - 97321.6102346845, - 97391.15136417256, - 97421.55628560655, - 96572.70915846486, - 96569.37282584612, - 96634.02973485782, - 96641.9954973643, - 98259.271845129, - 98168.9231416876, - 97204.8783368979, - 97506.64122277842, - 97518.73388739799, - 97294.3314821682, - 97388.71359159944, - 97460.1220450078, - 97527.0381829492, - 97574.84489035908, - 97403.49233740254, - 97313.23942986008, - 97470.12592517314, - 97339.79753757949, - 97554.5235551415, - 97533.81519896755, - 97334.74101129781, - 97489.70814217188, - 97472.39269986044, - 97387.12778874076, - 97437.62011604731, - 97457.91304211157, - 97317.43805248154, - 97410.58779561223, - 97539.58464921622, - 97342.03150148301, - 97306.54238286208, - 97368.47508508009, - 97462.35402312716, - 97362.09100683562, - 97468.63463640668, - 97407.10414666461, - 97427.0423299996, - 97445.06134182603, - 97384.33030394555, - 97418.50090063574, - 97329.77520403042, - 97501.86106879357, - 97589.09322622273, - 97365.55201336363, - 97496.03917907522, - 97578.21965017916, - 97621.96108195561, - 97597.5695956047, - 97551.12577735574, - 97566.33074345869, - 97316.24496342393, - 96793.86442373705, - 96685.18396788204, - 97191.87480429292, - 97945.10387365565, - 97813.17651623696, - 96192.36516650372, - 96166.65134798315, - 96151.18947802766, - 96219.49280554311, - 96321.49613399363, - 96348.27089895145, - 96312.11948904546, - 96413.07673363906, - 96067.23210924766, - 96241.04212507296, - 96371.39408635684, - 96469.32529389091, - 96158.31542657371, - 96334.94354943845, - 96152.51660612367, - 96247.31090145207, - 96236.22052335802, - 96303.25217664873, - 96187.17079366487, - 96348.83043260756, - 96308.4379961576, - 96338.25209207543, - 96260.73617752134, - 96268.88889721669, - 96157.96193062943, - 96588.03419761182, - 96527.41286019633, - 96551.83742032673, - 96521.94024587476, - 96905.2605934214, - 97009.34087073864, - 96820.7830898844, - 98073.30353618528, - 98153.01073729256, - 97890.19215830484, - 98289.64738099596, - 99350.28536017142, - 99507.3720181478, - 99388.57352758666, - 99720.51276602945, - 99470.76221817326, - 99983.69630418211, - 99864.71563941333, - 100490.87413901878, - 100512.67904571105, - 100462.96804014868, - 98174.24014304766, - 99182.5898053717, - 99297.47748745349, - 99173.09577075086, - 97018.10490746981, - 96024.40112653765, - 95977.23359820171, - 95944.20879009437, - 95957.04000819045, - 96118.28040336892, - 96136.85927600949, - 96010.1549176, - 96088.19892270163, - 95907.0760779808, - 96018.50845340571, - 95951.03051542168, - 95976.84004061195, - 96193.58532347402, - 95724.82667612792, - 95782.3253503642, - 95763.58006546515, - 95802.71249287276, - 95794.74480692008, - 95773.72799782119, - 95705.64201223625, - 95854.84350284688, - 95750.69476013878, - 96100.74371648408, - 96096.27034812108, - 96200.85680540389, - 96373.49619860556, - 96029.76428620814, - 96057.67371904092, - 96137.52117336927, - 98923.84604161337, - 99330.7962680329, - 101107.14331554841, - 101171.88975233596, - 101142.357752018, - 100568.55851595142, - 102954.7692368723, - 102875.47592578827, - 102873.44929349524, - 102973.29006079929, - 101911.83591220567, - 101946.02963869514, - 100215.14271741606, - 100200.76545872116, - 100059.60994106538, - 100079.51571516019, - 99936.15523064065, - 99181.95152123351, - 99195.28356015346, - 99211.69144249897, - 97980.22062912158, - 99073.87694250268, - 99151.86765374598, - 99168.96378888712, - 99046.5441793224, - 98976.05727895776, - 99081.16187921172, - 99148.53901882828, - 99113.76487179766, - 98959.06003485763, - 99169.54346949601, - 98982.98037771537, - 98937.48844781533, - 99208.54851849852, - 99061.3646667225, - 98987.32425560945, - 99071.96756131454, - 99131.82143847682, - 98613.13814771906, - 97220.44655452287, - 97196.75706828712, - 97125.53941725435, - 99718.2462926422, - 99803.36721250159, - 99813.23079232925, - 100208.03450922729, - 100291.24785455817, - 100818.8068736159, - 100710.17332989187, - 100756.53431442664, - 100742.58004892079, - 100816.52170155974, - 100535.41769180611, - 100588.8078125849, - 100684.1289854207, - 99355.4318094893, - 99283.37793193322, - 98884.47395865238, - 98702.11362056104, - 99212.19665290292, - 99294.92357045293, - 99409.68747127595, - 99366.21868458806, - 101293.34932264523, - 101281.5327958176, - 101334.14824704995, - 101367.06730180504, - 101344.2365303306, - 99029.78237454424, - 99954.82959672711, - 99643.0795719138, - 99636.85899020171, - 99574.3917835105, - 99512.35272587591, - 99507.38002680989, - 99709.87237972025, - 99618.5853241082, - 99492.14181196287, - 99538.7844648259, - 99586.24804608843, - 99142.8207100815, - 97428.68780199539, - 98467.69979749717, - 95501.56943956636, - 98020.27360911023, - 98145.87350225112, - 98050.34194011665, - 98168.00603776949, - 98149.26582746887, - 99101.32720644573, - 97907.77536328329, - 97901.03417870511, - 97823.51772352493, - 97887.71552031132, - 97844.34590883499, - 97875.84098174631, - 97972.61225798044, - 97778.61977575067, - 97733.80999706348, - 102294.46222470059, - 101611.36177265896, - 101415.64667156886, - 101663.47791347724, - 101670.89096728647, - 101489.91040062429, - 101683.85992837578, - 101627.82156718601, - 101614.52685921428, - 101670.00019402351, - 101564.26236712594, - 101677.59144852104, - 101503.11750353694, - 101566.44477254337, - 101556.6713244582, - 101576.23104104938, - 101501.37291680236, - 102258.94880965956, - 102241.50007551156, - 101505.40062337223, - 102236.92013567835, - 102271.38430452191, - 101620.62748966913, - 101705.56691766535, - 101616.40249009931, - 102275.28365277304, - 101546.7676820338, - 101530.92806958249, - 101440.57017023579, - 102061.11808554111, - 102273.20050188246, - 99104.38829532635, - 96790.03152514201, - 96103.40886384947, - 96132.92147820993, - 95931.69453685306, - 95990.48196120898, - 95956.60429664124, - 95934.42168851243, - 95911.93174621023, - 99852.8334694923, - 99109.0663166796, - 99132.2467544649, - 98630.80803171467, - 98689.92719517139, - 98600.23627742211, - 97899.34691313219, - 100183.97700610255, - 100698.78901867794, - 101020.07401227095, - 100753.17948613792, - 100929.37102861726, - 101049.77169559221, - 101042.64163339522, - 100956.6831535797, - 95941.76966348794, - 96031.13533407368, - 96019.14956732029, - 96068.74269110095, - 96041.31540570507, - 95956.81382376744, - 95973.72556328609, - 95919.35469646247, - 95869.3259308094, - 95890.9852158734, - 95627.49229889535, - 95439.686001942, - 95462.46659073206, - 95350.06247732986, - 95352.85380484689, - 101563.87691551438, - 101274.0689543692, - 101168.10653818438, - 101300.33166744621, - 101234.34457208082, - 101601.26872970493, - 101585.65958301134, - 101602.23613881375, - 100811.46618206523, - 100829.32986696697, - 100126.81551866842, - 100132.13706504772, - 99693.89632500503, - 99710.17309703058, - 97773.05134874712, - 100036.94123600336, - 99063.1409527306, - 99169.33340406543, - 100018.92157433346, - 99407.78802846867, - 99754.96532026985, - 99736.98260295848, - 97304.55664375074, - 98194.2498880113, - 98162.43586684139, - 98039.41022287405, - 98449.82609230773, - 98405.07060129187, - 98476.86717384406, - 99709.78133773808, - 100811.29454032266, - 100799.25439064918, - 100677.38582400509, - 101079.62659732827, - 100722.31731806434, - 100834.06910339087, - 100697.5591835894, - 100714.08462751635, - 100770.01044896716, - 100791.5569642883, - 99447.65502558881, - 99376.7135123605, - 99310.39242009577, - 99409.34911582587, - 99415.06017255128, - 99369.62794905218, - 98879.98498514206, - 98842.26136432061, - 98989.84252043573, - 98812.04332174487, - 99055.69525843728, - 98951.35380331521, - 98884.65639907506, - 99012.5910040835, - 98920.55399183184, - 98986.64830287533, - 98697.12172626315, - 98620.91786909541, - 98579.78840613288, - 98665.66923677477, - 98676.9556260032, - 98666.27593048109, - 98466.22795573567, - 98327.10502264924, - 97761.06111769819, - 97778.59716574609, - 97828.84470887261, - 97887.6803134344, - 98415.58884975722, - 97970.80486236633, - 97853.15094800435, - 99142.00061841276, - 99019.66226194054, - 99192.84066023113, - 99195.67384174546, - 105702.70779626064, - 105720.74472153532, - 105597.88258663817, - 105537.04043110306, - 105659.02741920555, - 105571.73128079504, - 105609.73144478192, - 105534.28021291584, - 105564.00159757282, - 105754.22947200622, - 105456.10991948233, - 105491.33714438768, - 105716.4703499383, - 105543.42915303927, - 105630.69769986445, - 105645.64612103258, - 105497.54551993767, - 105503.81836976812, - 105623.1784153991, - 105624.09575786174, - 105424.31086366, - 105638.02562345852, - 105639.8016154403, - 105447.54534695485, - 104529.0077171011, - 105513.51897047486, - 105541.31168826211, - 105662.21818670053, - 105536.89658786391, - 105587.63908464299, - 105551.30533148885, - 105472.97873689594, - 105562.15649703948, - 105614.445608318, - 105605.58224577091, - 105646.15356609257, - 105649.11294797633, - 105639.1427377219, - 105591.38016161196, - 105695.7244338854, - 105501.26262445355, - 105440.08994178778, - 105533.16243882055, - 105517.55400168929, - 105575.97003898642, - 105641.5542752146, - 105618.39256775245, - 105687.63777874172, - 105739.36521479895, - 105637.2752229223, - 105623.86195710463, - 105519.4049907799, - 105536.43145628818, - 105538.19528796947, - 105565.0341187142, - 105726.80316226129, - 105472.67496843007, - 105565.60861014514, - 105721.03776835771, - 104505.46224372448, - 105695.48735109183, - 105519.56230898018, - 104517.04252285708, - 105504.7638572277, - 105675.47517143977, - 105708.26806277981, - 105447.26852737083, - 105720.82332476201, - 105692.74199201462, - 105472.93529743854, - 105505.51038627926, - 105702.65367969817, - 105617.41036553025, - 105463.66708114756, - 105513.42888557282, - 105587.24021536975, - 105666.60642497567, - 105525.56918281784, - 105595.04010791137, - 105444.17622828389, - 105593.64617351997, - 105820.99262817558, - 105488.11414785475, - 105581.60321262159, - 105479.62020612431, - 105674.17917521868, - 105668.80576224392, - 105736.3108427153, - 105672.44716304717, - 105752.73162429658, - 105584.94006434933, - 105569.52484353032, - 105589.43123760885, - 105670.77428807763, - 105553.56081415866, - 105747.65391754272, - 105495.33426700001, - 105680.3612644293, - 105560.48340758316, - 105445.55876504377, - 105629.84276764742, - 105648.70327510666, - 105655.30686287093, - 105565.4869750369, - 105481.75828279473, - 105442.67875268511, - 105526.1879944992, - 105656.64322979332, - 105594.35386643908, - 105612.48488332644, - 105555.6768617231, - 105466.87188407933, - 105686.90580509568, - 105612.92245493767, - 105586.46190778396, - 105553.22245719808, - 105602.79629216735, - 105675.06158554988, - 105749.4487101587, - 105544.46883093425, - 105500.52522474098, - 105559.27154028906, - 105610.83844839808, - 105474.40094419045, - 102845.67951808334, - 102881.05506671254, - 102758.92562444904, - 102845.59991174893, - 102770.39328667689, - 102791.21393627733, - 100735.89049163861, - 102786.91065751955, - 102696.68521353304, - 102794.83285276036, - 102711.83752916791, - 102702.49380949287, - 97921.57016446197, - 97927.66577067936, - 99516.12138979742, - 99602.96430557796, - 98688.38398683874, - 98595.29230202979, - 98630.36630678174, - 101440.91242559247, - 99888.7474021685, - 99314.8551296866, - 99358.88038956131, - 101577.95064257612, - 101653.48509896647, - 101618.87726680218, - 101696.33854508724, - 101693.9514589707, - 101705.56128660376, - 102075.73811485003, - 101584.20875166706, - 101745.0284195526, - 101750.29136937985, - 101723.50378938632, - 101638.07400466492, - 101710.07571479805, - 101605.94890163437, - 101663.21104220499, - 101571.93741097451, - 101537.33961984668, - 101661.32861456498, - 101809.28157252, - 100562.85875895302, - 100691.28122991591, - 100703.91892473621, - 100643.93297622279, - 100629.31140834546, - 100618.80971613749, - 99820.63295952792, - 99750.92672342333, - 99919.27050152971, - 99838.29242204245, - 99861.68642531082, - 99828.61773977215, - 99861.59601408201, - 98068.53195038276, - 99008.51573252691, - 99889.43749238121, - 99109.3220921073, - 99431.23960563343, - 99477.79155051857, - 99931.61590707452, - 99557.42983475236, - 99679.01460310047, - 99781.31591692459, - 99487.32292325515, - 99933.44815741768, - 99734.55623427365, - 99678.11644301329, - 100044.6384196381, - 99648.52514943464, - 99734.73651507167, - 100160.85356023969, - 99769.13322520467, - 99078.52085760598, - 99013.75011741492, - 98983.9846827361, - 99369.7372803506, - 97811.37205660775, - 102770.45633988047, - 102899.28079331243, - 102845.04247001756, - 102895.70055079371, - 103861.85953601846, - 102846.78158593367, - 102811.8399410256, - 102916.2536478733, - 102974.00749621436, - 102909.81065957414, - 102971.72070191367, - 102961.37499772165, - 102754.28742449006, - 102739.48839184036, - 102898.81474529942, - 102794.85431909138, - 102866.1985748635, - 102844.89185582798, - 98778.26008769598, - 98708.14130337609, - 98895.84249312858, - 98969.34698883492, - 99955.92746291363, - 99956.03049514619, - 101816.88311248944, - 101202.62539612001, - 101391.8218569706, - 101174.63066983833, - 101048.57144304692, - 101000.89468833616, - 101246.78776875495, - 101329.93994851012, - 101396.92720550015, - 101206.60928117258, - 101239.2275985487, - 101425.18089836829, - 101374.23433910658, - 101302.72499833946, - 101341.02872417537, - 101903.18715956158, - 101756.92345298977, - 101849.86400158559, - 101917.07900434479, - 101771.88883756689, - 101878.49188290893, - 101859.9833131921, - 101768.71035459545, - 101957.66008863025, - 101925.93381925664, - 101802.09502770085, - 101941.68698389355, - 101820.5319393799, - 101816.23817021484, - 101810.24091218987, - 101956.52492095728, - 101818.97161414391, - 101875.49783721726, - 101811.52595774685, - 100461.69417982163, - 100490.95507089696, - 100584.23507339627, - 100530.62814033258, - 100598.89273700629, - 100590.7203286694, - 100253.45508330212, - 100686.6864121916, - 100490.75991207774, - 100668.95104477237, - 100709.49045972321, - 96029.34704917161, - 95132.0182590058, - 95656.09312934356, - 96141.31999881029, - 97742.89093696582, - 105073.0459310981, - 105250.393807277, - 105140.76660493574, - 105754.80884174582, - 105296.44944531913, - 105728.57517210917, - 105331.49139983783, - 105780.27159862246, - 105172.1807521991, - 105292.49635223951, - 105249.47644010253, - 105196.48958054805, - 105286.83303054038, - 105160.24999280086, - 105237.16293164933, - 105751.46313263659, - 105219.5540524566, - 105122.87025665042, - 105134.50465352352, - 105245.56495725964, - 105329.65312133559, - 105255.04680668082, - 105776.90488419207, - 105296.69162847476, - 105290.15459453787, - 105187.03177049119, - 105068.00604745663, - 105210.64546245524, - 105172.11220199827, - 105147.22240577158, - 105110.21176335553, - 105205.98079610139, - 105213.94812081721, - 102632.01767983723, - 102581.27782990142, - 102038.80831194275, - 102529.36033743144, - 99348.7447313686, - 99133.91865058728, - 98285.28494219562, - 98238.1997657076, - 101317.04585495421, - 102019.01183458454, - 101995.52746789972, - 101916.08163925847, - 103456.08986793383, - 103457.02108909264, - 103373.99913840227, - 103524.19866889584, - 103286.55890268029, - 103435.72798991972, - 103264.17278986354, - 103477.47262815104, - 103380.67928748445, - 103389.520733978, - 103504.33007253749, - 102974.21228920032, - 104503.28348820597, - 104496.15652465288, - 105460.45902230869, - 104559.40416265023, - 105434.4203361631, - 105455.89490134627, - 105431.26932589978, - 104574.61351811924, - 106561.87872816344, - 106776.02255939199, - 106635.16178182501, - 106732.15504561804, - 106601.29107885293, - 106731.17359497877, - 106602.14819754453, - 106862.10792861404, - 106755.693741068, - 106532.5203665794, - 106759.61558299915, - 106609.41327421999, - 106706.91607713986, - 106650.15180578313, - 106592.85557378664, - 106665.85308371624, - 106765.76699810462, - 106644.63224566527, - 106727.0636283268, - 106691.8254125457, - 106658.42952704415, - 106573.8359684691, - 106946.77846067028, - 106678.2647647673, - 106679.82621071998, - 106820.76911869101, - 106821.27699738681, - 106812.8337418669, - 106685.34842842711, - 106551.31500165496, - 106823.52842568823, - 106749.18607248642, - 106842.31888496643, - 106742.34691528913, - 107048.685062726, - 106675.50133822637, - 106715.18848661716, - 106770.8177499561, - 106682.09481440886, - 106619.69654244954, - 106719.62851343823, - 106712.21093307452, - 106792.36538370406, - 106716.43322221242, - 106722.43473218425, - 106613.4142948, - 107200.47939503906, - 106762.13888084773, - 106837.53679908288, - 106790.73048520643, - 106553.37983249659, - 106791.48424114, - 106579.14641755563, - 106666.6595550612, - 106598.67730765055, - 106632.97128548277, - 106678.59034848932, - 106794.65299645755, - 106647.08307701974, - 106681.56976180268, - 106745.56797317222, - 106837.31654858893, - 106708.68509258526, - 106808.31653286635, - 106707.63399406707, - 106778.70466327264, - 106852.09016633748, - 106796.85298801294, - 106725.95900633195, - 106609.89058123871, - 106643.67855764981, - 102302.54250042449, - 102273.51637285373, - 102327.68714141687, - 102134.67476412581, - 102190.75502881849, - 102192.64407157355, - 102251.95358990936, - 102251.26335777057, - 102191.2547206348, - 100276.21812349626, - 100133.57556468557, - 100169.9290565621, - 100231.58588411789, - 100459.64579783555, - 100437.37357383645, - 101085.99598431727, - 100418.44291308156, - 100217.0931850488, - 100166.28518205784, - 100196.8580268146, - 102472.09396205097, - 102510.40110102798, - 102426.07836071348, - 102493.70912809666, - 100370.73279250569, - 100263.99606202378, - 102185.54162184449, - 102105.35380535477, - 101884.12289507367, - 102089.16961632067, - 100813.5137450206, - 100679.36722813868, - 100865.96671772173, - 100360.08398611244, - 100417.8409414628, - 102503.96297081048, - 102361.26354264608, - 102361.61563848036, - 102447.4628204767, - 102089.33611078521, - 100199.38989250545, - 100378.98935340745, - 100003.95047136398, - 99967.22110128611, - 100086.45963356196, - 99878.95454371617, - 100123.24005124219, - 100049.4088958235, - 100174.70969881222, - 99963.18628188736, - 100072.569476962, - 100052.61467437836, - 100107.50881085078, - 100081.03971028964, - 100062.94225538117, - 100062.83649537648, - 100016.80639456735, - 100176.00446974729, - 100061.81776244742, - 100094.30522647932, - 99925.05483366393, - 100241.64041136006, - 102374.89899726883, - 102326.17920087215, - 102040.19185746327, - 102044.87477390302, - 102681.04976482222, - 102708.80667103664, - 102746.23300112753, - 102779.2332887374, - 102769.97593312086, - 102646.19294310108, - 102704.66675675161, - 102237.36466432676, - 100342.08799841997, - 100335.85997077923, - 100223.83301915645, - 102692.31405608842, - 102579.10480518742, - 102525.51969078122, - 102647.6977664583, - 102438.98054800251, - 102109.63915621935, - 100927.9651385238, - 100680.80099572752, - 100800.39718183145, - 101086.82262158477, - 100998.98327044309, - 100845.09419351183, - 101033.30132867355, - 101097.27054992382, - 100893.79932863965, - 100948.55715984435, - 100972.4639411515, - 101060.94351000125, - 100955.43618464691, - 101021.96758872966, - 100931.19533174056, - 101026.39648026331, - 100960.26564636652, - 100884.82814455178, - 101056.54576635997, - 101004.07943332818, - 101086.33472233359, - 101074.00311444225, - 100955.59770470153, - 100985.08882280662, - 102345.30775637389, - 102360.48782179103, - 102158.60557313335, - 102239.22675177707, - 101086.89222661091, - 101038.90054617883, - 101062.66465869642, - 101114.80968133733, - 101978.09520389797, - 102012.27612347057, - 102119.8001668184, - 102146.32891249588, - 102110.89458927693, - 102012.93262592147, - 102027.32069496305, - 101009.39541248594, - 101005.45701984284, - 101317.20118670381, - 102472.85417684923, - 102486.73414419277, - 102441.4595203972, - 101991.62025209401, - 100903.69339707514, - 102484.69136668938, - 102403.0980081417, - 102427.6128384684, - 102361.88691559348, - 101909.83952413945, - 102131.74303744955, - 102301.49116759682, - 101794.82512531827, - 102311.66790009006, - 102102.30008742088, - 103679.83752006112, - 103691.81173829258, - 103615.98109999106, - 102175.9296900868, - 102319.2367968909, - 101910.31769046403, - 99855.59269539596, - 98518.94253675062, - 98978.20058631645, - 98608.15016492098, - 99439.56645918118, - 99766.19705816366, - 99793.00774291946, - 99544.7067431413, - 99597.22180864953, - 99652.00107522465, - 98629.06194375621, - 97236.38714706122, - 96774.27151536841, - 97373.43174560844, - 97337.73716817379, - 97270.4959860881, - 96778.97067219901, - 97280.19761067317, - 97564.18875675717, - 97262.69730354023, - 97291.68899181754, - 97322.34378993233, - 97384.02435958975, - 97411.59609787649, - 98328.13162079666, - 99088.98463223837, - 99275.53523335142, - 99323.60015745301, - 99346.175304721, - 98634.55621819719, - 98380.41809928608, - 98866.71537147863, - 98448.21242713043, - 99378.38433540135, - 99352.75585645964, - 99225.4877064742, - 99418.16866483733, - 99430.27884390537, - 99480.31439861133, - 99349.43583085632, - 99353.08989464479, - 98534.36395672044, - 99310.86447736768, - 99249.28903447703, - 99379.08345923015, - 99418.72251871403, - 99307.44341004237, - 99467.36470738356, - 99358.52710365926, - 99463.08823462212, - 99265.10686255786, - 99533.1090051132, - 99430.735616467, - 99412.77834028199, - 99265.42166951722, - 99397.0822658798, - 99359.96988171423, - 99232.57690378158, - 99357.18200421888, - 99521.77955609749, - 99312.31898186129, - 99329.83088819458, - 99324.19866222715, - 99203.5119953795, - 99449.90457211129, - 99463.59916379068, - 99336.20831706232, - 99349.75794681006, - 99502.02039728625, - 99393.14025308313, - 99317.14667566899, - 99213.54020433339, - 99272.36238573091, - 99503.60977650297, - 99272.71339872474, - 99184.35722457996, - 99448.69160046501, - 99474.5870906059, - 99434.97853800446, - 99483.7099392884, - 99270.32006106859, - 99471.18560763983, - 99306.12541877851, - 99551.20671595355, - 99406.92829413555, - 99291.30004253573, - 99374.96501653186, - 99442.85276686755, - 99315.38055521878, - 99276.09987661881, - 99390.52362469089, - 99423.5922830648, - 99354.83844456464, - 99215.2926091783, - 99386.53496947915, - 99528.67144569101, - 99269.65052503442, - 99369.25845492617, - 99387.60981991838, - 99477.98145048507, - 99245.2361239818, - 99213.53053314565, - 99215.12918935942, - 99319.8835983256, - 99540.71579349438, - 99410.73623499194, - 99410.99468459656, - 99314.44014947582, - 99403.7799505777, - 99190.33807993686, - 99451.07278195309, - 99497.45055468047, - 97941.62052389975, - 98042.89559128795, - 97252.23165797428, - 97256.71452773576, - 97717.6450930688, - 98999.07214531254, - 98973.05295831346, - 99054.82425526633, - 98044.04752415298, - 97958.60518554217, - 97684.02089780879, - 97530.79165170861, - 97661.53871495918, - 97082.40295944159, - 97355.44513416784, - 97152.47967070663, - 97551.97133100245, - 97406.15468225554, - 96899.77531401117, - 97488.50879118062, - 97695.66405931095, - 97133.66523509301, - 97654.87379319927, - 97567.76393513489, - 97515.78251525074, - 98015.71454165311, - 98011.00513967639, - 97926.2588824606, - 98011.29610271553, - 98685.42661265582, - 98569.01114962301, - 98455.53829158633, - 98168.86432508277, - 98182.35396401546, - 98033.33645324146, - 98122.06197821422, - 98145.7408507303, - 97958.45417367462, - 97944.8447446344, - 97976.78427151311, - 98064.3325515416, - 98166.05557341201, - 98143.58155422434, - 98079.41947586637, - 97816.29128765412, - 97891.037149568, - 99467.37211095681, - 99465.10355574, - 99274.13613058651, - 98616.56911567338, - 98560.90805367962, - 98558.38609458414, - 98880.98424546431, - 100397.5383419908, - 100402.68978541685, - 100405.17286216993, - 100061.66712015377, - 100531.61939659539, - 100404.30916741672, - 100319.7606909308, - 100407.52446892252, - 100377.95870123856, - 100091.88539430087, - 100272.25022775182, - 100099.74666749846, - 100436.44960338628, - 100341.95706435903, - 100063.71730651654, - 97038.13042712578, - 99128.65672613026, - 99086.92050953522, - 98854.21422872371, - 98753.69995678449, - 98539.2421167469, - 98549.21922950738, - 98660.85685852663, - 98707.72105670594, - 98674.46581814122, - 98338.92014174488, - 98777.20226620481, - 98593.35045327418, - 98858.43542229797, - 99194.76613677801, - 99238.598665245, - 99141.45631430278, - 99134.6825716299, - 99094.27600200707, - 98811.10588893853, - 98843.48167264217, - 98657.83374209405, - 98842.07415652029, - 98808.61446596768, - 98331.12197959317, - 96974.21051137756, - 97630.01658930292, - 96729.15577103519, - 96683.62819879764, - 96749.40914201127, - 96427.63029291548, - 96556.50208945356, - 96476.47729265835, - 96690.58990713069, - 96682.63202971622, - 96653.2046434958, - 96758.39730707722, - 96298.39834593558, - 96619.23739357965, - 96582.497731417, - 96823.69736253725, - 98838.92697965828, - 98813.35123913873, - 98939.02464143044, - 99680.868715288, - 99638.52780788013, - 99963.33470263422, - 98861.65395145089, - 98776.13812199206, - 99095.76812778092, - 100018.2529981147, - 99900.62820788269, - 98521.7351726817, - 98519.99346824022, - 98584.58084122544, - 100138.75423323698, - 100090.19575634002, - 98926.99585752713, - 99231.54971618211, - 98725.93395914823, - 99114.81760073986, - 99045.63820710068, - 99468.37618059154, - 99177.3613555299, - 98988.53553480796, - 100522.9307233778, - 100464.55461316847, - 100449.40777875896, - 100495.63241925946, - 100576.36749710432, - 100455.6413624251, - 100525.73188351096, - 100351.79368494135, - 100476.8920067561, - 100427.28950578252, - 98769.78629555774, - 98770.78359572044, - 98068.38917637721, - 98746.9346100943, - 98699.80357689559, - 98826.116121155, - 98799.14209262622, - 98725.28103778043, - 98787.95269882937, - 98129.7525732422, - 98403.21551613676, - 98151.80634944019, - 97189.75008136328, - 97327.96341535875, - 97292.96960541717, - 97276.7637530654, - 96579.02120154037, - 96667.30159934703, - 96523.83444580324, - 96601.08098118886, - 96236.40087597791, - 96907.29475216444, - 96790.16254788224, - 96760.16114880143, - 96793.1547839298, - 96842.40378280648, - 96818.91536222614, - 98461.43619215692, - 98969.8900532446, - 98952.25912959375, - 98580.65213422495, - 97141.36470938755, - 98095.02656369311, - 97617.95626612005, - 97665.4420007734, - 97481.78136987441, - 97127.93819900935, - 97221.84975595506, - 97516.68785216649, - 97585.7108158271, - 97957.26827753473, - 97968.93352559829, - 97264.96842755843, - 98299.92048938914, - 99305.95497196195, - 93512.0665150006, - 93468.51530246586, - 91029.6718792886, - 93426.45832585903, - 91037.1098997176, - 98242.79590727984, - 97462.89725909327, - 97456.2056098314, - 98433.14621035084, - 98477.429727746, - 98538.82780358141, - 98375.01487679547, - 98416.20709657238, - 98325.44484999502, - 98375.97684548568, - 98682.66165069364, - 98525.56000149965, - 98534.19792713977, - 98503.47469608205, - 98474.2557014724, - 98279.5985168257, - 97624.27677318298, - 97802.02757327574, - 97742.78747464505, - 97756.40467231974, - 97757.15441742557, - 97763.11112414948, - 97632.86870117598, - 97548.50753261574, - 97550.14905081774, - 97702.15796126818, - 97668.33495977538, - 97591.06376324758, - 97578.69930046126, - 97852.61077277781, - 97880.34737144559, - 97861.94027265099, - 97853.43014004357, - 97905.97332804937, - 97511.90340028529, - 97451.31724560489, - 99037.5226338215, - 100727.75513265263, - 100750.1025781271, - 100687.04963334247, - 100602.82413484645, - 100640.07222561758, - 100255.5576926834, - 99740.00115531619, - 100701.21851963115, - 100775.90866047998, - 100801.37971775861, - 100846.7632036239, - 100839.18720467621, - 100901.78826113316, - 97229.1829487141, - 97839.59876865869, - 97910.66450289705, - 98039.3188920253, - 97934.20656019785, - 97891.53141790035, - 98026.30394341591, - 98087.87224633229, - 97950.34128723628, - 98003.43954283377, - 97956.48157305346, - 98065.65357283973, - 98003.37029682676, - 98058.47170369046, - 98005.49620436512, - 99320.77326235635, - 98557.66658610443, - 98082.7411356652, - 98154.79026285015, - 98056.63600860414, - 98887.5178660438, - 98858.33028971287, - 98814.80490784877, - 98801.02414722591, - 98561.74883562999, - 98550.27263705501, - 98534.96076552787, - 98475.56960112561, - 98680.67319796431, - 98762.74855690046, - 99810.55530468805, - 98806.04554028373, - 98848.42698144261, - 98857.8438649981, - 98852.46109769984, - 98865.24822179487, - 98812.89064703413, - 98862.90020767787, - 98912.2032568487, - 98848.37039474472, - 98927.63991134016, - 98871.604415136, - 98590.82216815953, - 98580.43638270833, - 98576.02995710363, - 99183.69321269826, - 99184.45845454505, - 99203.41993384891, - 99138.15878651995, - 99087.05635140055, - 99077.1384967604, - 99232.24004132024, - 99125.68851110415, - 99251.01558609436, - 99179.65212891849, - 99256.69258645491, - 99310.08167305635, - 99356.00094070661, - 99276.65181129325, - 99384.78207485296, - 99335.96076485507, - 99296.20265730387, - 99213.97061960657, - 98964.38050539838, - 98965.82200587254, - 99044.8950183139, - 99100.15481263316, - 99075.39447626255, - 99003.3483507825, - 98925.76540962922, - 99020.01817893048, - 97407.28894967055, - 96098.29296669562, - 95976.09403074846, - 96042.6556096919, - 98812.20854097081, - 98743.59086221435, - 98698.0390158326, - 98395.64092112977, - 99111.66394753019, - 99274.85653841426, - 98707.12897134296, - 98672.40559262648, - 98740.33441798067, - 97915.07564498202, - 97854.3706268973, - 97779.51858962477, - 98580.6830473668, - 98706.46663611768, - 98640.08887323189, - 98958.9528701298, - 98946.07821880339, - 98660.70375119649, - 98701.649867651, - 98748.18261153143, - 98769.34553580024, - 98811.9140649854, - 98763.92551654496, - 98943.77117264194, - 98920.62609439224, - 98965.91211265045, - 99052.24477125063, - 99044.50329098791, - 99032.0128001208, - 99017.68748657264, - 98920.27979214246, - 98997.79724083436, - 98048.50795422566, - 98136.90529710805, - 98100.62435260214, - 98171.72774331711, - 98063.40476674002, - 97962.8529627224, - 97088.36103582702, - 97132.34495519406, - 97104.45756857881, - 96664.92235510008, - 96821.97556877533, - 96897.6332798164, - 96990.68878793032, - 97838.15687650762, - 97840.98673438343, - 97860.03824334558, - 98113.9638494234, - 97039.67013502431, - 96492.5609236822, - 96615.15999672425, - 96528.33063667924, - 96614.04896619167, - 96775.60254599106, - 96785.05589602233, - 96813.96810061809, - 97041.31823044339, - 96562.25821519687, - 96460.68693276949, - 96650.20758230845, - 96694.63413088757, - 97825.46025079563, - 97882.40005223262, - 96674.56656020731, - 96567.52080584335, - 96473.61402662427, - 96563.17797498858, - 96487.03219794935, - 96606.19908924971, - 96745.48639039516, - 96395.4047179211, - 97145.64717006857, - 97826.8631013778, - 96850.70696827324, - 96914.37666890645, - 96353.01468538467, - 96501.80370280289, - 96513.42435181382, - 96529.07020886255, - 97870.69758646561, - 97980.44692218993, - 96494.53387742698, - 96671.430711433, - 96761.68518269938, - 96719.41280916671, - 96550.26834448069, - 97918.02611502612, - 98643.83720148244, - 97960.90157310556, - 98153.28211258577, - 98122.79057084915, - 98078.02055378513, - 97988.49066071308, - 98115.16651510971, - 98104.82634322677, - 98205.6244883252, - 98133.92087625408, - 98052.39180433995, - 98186.92871996413, - 98222.49612544493, - 98264.92512138016, - 98221.83205647097, - 98066.64128360373, - 98155.19067500987, - 98034.10447834089, - 98200.28996843542, - 98087.54079911893, - 97990.12664870804, - 98120.04312787396, - 98163.7446629629, - 97974.17413359083, - 98088.95408705338, - 98156.57677246204, - 98080.18500654254, - 97487.01075638118, - 96789.66261350742, - 96730.73981449436, - 96669.89538879196, - 97293.59562630084, - 97174.16332095799, - 96017.05902387391, - 95880.10041446517, - 96042.6924533272, - 95941.86961688883, - 95961.65877852618, - 97833.49395811494, - 97769.6545141948, - 97689.04199438865, - 97742.3298744743, - 97690.73748476274, - 97719.11017016157, - 97819.75167904481, - 97794.19742949636, - 97784.48324520058, - 97674.59282702129, - 97879.59554121646, - 97385.40579970718, - 97307.86343808395, - 97387.94072486232, - 99393.56887338916, - 99259.21726110313, - 99247.96158297804, - 100188.32724919924, - 100135.68904443846, - 100098.24757711026, - 100206.52451144153, - 100008.5242363836, - 100023.04349004387, - 99915.71669982743, - 99634.45747805986, - 99276.13363968547, - 99418.78774585869, - 99721.65602004208, - 99821.52193102303, - 99782.84167263377, - 100072.59807186079, - 100035.70914567317, - 100138.27133994643, - 100117.7864666539, - 100090.44891664409, - 100148.86556864316, - 99244.03843365682, - 99283.19337789025, - 99220.99777236252, - 99230.95664968503, - 99169.12469268014, - 99164.44549248519, - 100358.34371105966, - 100290.3042284984, - 100340.75858714842, - 101792.84162073708, - 101761.83228399587, - 101728.54900723274, - 101863.51123341605, - 101791.94014384845, - 101799.15202304373, - 101713.12879362177, - 101785.2180011013, - 101729.0076770661, - 101836.91173085483, - 101818.8515335007, - 100033.99626853142, - 100056.8272847258, - 100210.20674841575, - 99041.75843858132, - 98943.79559667868, - 99197.38567357122, - 99167.98965627975, - 99277.40202349014, - 99119.8302296543, - 99163.87627855373, - 99243.18112052011, - 100381.5590275909, - 100259.89095200166, - 100662.41576920166, - 100337.12642639093, - 100250.649651169, - 100190.16929326992, - 100223.74470405089, - 100340.9819908014, - 100273.38677134522, - 100527.79988951613, - 100245.97642650244, - 100375.27221342435, - 100149.25456405795, - 100360.87356998086, - 100194.58359036756, - 100264.94556360798, - 100306.31112448443, - 100355.36974381156, - 100212.88630816322, - 100290.39422073738, - 100350.59535010663, - 100165.59976549802, - 100315.7960592362, - 100567.69227692556, - 100536.39347136863, - 100383.79630149792, - 100199.17691599797, - 100338.69278423514, - 100271.61413440437, - 100247.40805045809, - 100338.62291364912, - 100211.53726164077, - 100322.38298891425, - 100100.20675579492, - 100315.47955652213, - 100216.33192664117, - 100305.27486562256, - 96639.67658830492, - 96484.06922913101, - 96407.77425144732, - 96477.97537890695, - 96615.45058048039, - 96637.18040938227, - 96445.97001463277, - 96442.19223447616, - 96513.66255512048, - 96476.07063939855, - 96494.88439651101, - 96530.70788196326, - 96552.93796653328, - 96499.0101680733, - 97430.88450662757, - 97388.70330978224, - 97514.10936096587, - 96153.0643515696, - 95992.76643803087, - 98037.94363845246, - 97758.7792343351, - 97924.22096734567, - 97869.90224058629, - 97598.62515358592, - 97513.94954233654, - 97646.31748849346, - 97641.97081789764, - 97666.59449828726, - 97602.85068296298, - 97598.68612452112, - 97507.23992229323, - 97525.14675514927, - 97666.02806304352, - 97650.998850365, - 97694.2160645586, - 97526.99989056711, - 97615.33596390781, - 97568.00795796615, - 97487.47775279515, - 97609.02859822716, - 97572.83663061078, - 99592.54688001878, - 99517.07966370584, - 99448.41927271156, - 99589.72130527606, - 99486.45689499842, - 99633.35691037332, - 98792.27822179062, - 99298.84335251687, - 99373.75997603334, - 99966.96381501803, - 99846.93713129792, - 88005.39501412887, - 88221.67985851956, - 88072.43363114585, - 88237.96933675258, - 88133.87820323496, - 87861.16765307833, - 88044.20014226538, - 88015.28821551744, - 87995.2188458752, - 87896.16014075337, - 88048.98798497369, - 87911.3761076322, - 88036.32356842181, - 88065.09753717842, - 88214.29095123295, - 87975.3434675614, - 87949.43781862337, - 88083.67915939626, - 88158.44431618885, - 87948.66838341518, - 87939.92779797339, - 88143.70730471626, - 87928.63944883185, - 87987.0677224219, - 88052.04997633191, - 88073.48466074695, - 88174.19889504618, - 88032.3701422123, - 88091.77158766096, - 88010.18942416027, - 88115.8447964154, - 87883.47843097824, - 88004.3574220565, - 87867.93517461464, - 87061.20940616545, - 88117.88520562027, - 87891.6635003915, - 88163.4850022418, - 88041.55582208642, - 87995.77155911438, - 88256.28979169391, - 87931.70512781639, - 88089.06754806396, - 87920.82827675848, - 88062.01682071644, - 87950.93430502362, - 88039.48618979446, - 87917.14077060764, - 87875.51543171445, - 87920.69502777123, - 88037.67214329758, - 88053.62636213166, - 87994.84521056418, - 88204.37990451731, - 88198.16168147081, - 87899.36719419197, - 87868.04422265603, - 87756.60468171052, - 87977.89446006849, - 88018.06263107814, - 88175.87859466553, - 87908.9091473079, - 88066.92995974339, - 87947.19715900774, - 88139.6579294049, - 87959.87525816729, - 87893.19707276371, - 88152.20646040382, - 88083.14494732753, - 88230.25871974292, - 87950.88841137299, - 88089.31618178032, - 88005.21804614809, - 87945.58722002029, - 88191.87494491128, - 87898.24283727448, - 88093.20221250107, - 88014.37416969781, - 88132.49377530353, - 88274.88910994626, - 88020.02004119602, - 87977.21260381762, - 88071.22783884605, - 87979.30536450844, - 88132.99064196317, - 88075.30778368968, - 87515.23612648762, - 88112.44158066339, - 87997.31100720952, - 88205.36796568194, - 88244.89577094054, - 88118.88901387733, - 88170.02127686414, - 88122.48677544181, - 87836.350717135, - 88188.31541444028, - 88181.35353825515, - 88029.75270585327, - 88055.3210429841, - 87486.18502347278, - 88169.49888342613, - 87912.05340361188, - 88114.60799674282, - 88030.32446441583, - 87988.09892554887, - 87936.39332619171, - 88114.46908342814, - 88116.38592969814, - 87831.96710060169, - 87973.10937146156, - 87997.70702987113, - 88086.23100935988, - 87992.90727468063, - 87971.16697325518, - 87985.41310963874, - 88090.43562993355, - 88143.62371120854, - 88035.58336234222, - 88075.61019283785, - 94943.83700356272, - 95818.53001808233, - 96045.66684685949, - 95969.1256184073, - 96013.81260119048, - 96042.74026637044, - 95968.80222215265, - 95912.47979836861, - 95925.66592354236, - 95936.78246887373, - 95889.97314488533, - 95978.73409728472, - 95867.87958002836, - 96017.35327396306, - 96248.76337904352, - 96135.22740085266, - 95288.7583767709, - 95940.42592069102, - 96031.3795211209, - 94069.03735918325, - 94009.56158523318, - 94130.04763539109, - 95731.12015912194, - 95616.0407219737, - 95659.6018735391, - 95678.62819334009, - 95781.78664237607, - 95577.34405122125, - 95655.75208549788, - 95710.76531338083, - 95799.27305372994, - 95306.53646843051, - 95339.84556579817, - 100452.52175447682, - 100508.74664244991, - 99417.06942940914, - 99490.48077246742, - 101263.5858464501, - 101294.76632948937, - 101162.83347248544, - 101321.38820055868, - 101189.73696638984, - 101276.19421116, - 101215.22740740502, - 101132.68859257287, - 101231.96182220083, - 101113.69616196322, - 101202.08234411357, - 101323.03686175268, - 101302.71586201976, - 101208.71003175106, - 101165.55850365866, - 101249.63872563199, - 101225.01239942892, - 101148.34414742448, - 99696.20174737588, - 99613.57523791396, - 99631.65790217281, - 99680.51394878581, - 99522.55089557452, - 99666.63776945528, - 99713.66464718881, - 99549.22834567956, - 99527.88570730339, - 97989.10101650721, - 97708.58185165055, - 98480.26982394698, - 98370.33853712298, - 98255.74444021816, - 98408.56530732088, - 98320.44328914571, - 100450.95558034207, - 100480.82034926659, - 100480.49092912518, - 100580.56121342597, - 100380.95102466598, - 100498.70305671386, - 100425.06940729756, - 100647.00721589438, - 100589.5479287922, - 100585.4129716198, - 100545.35934978107, - 99316.61246387733, - 99215.94068343456, - 100901.46988766377, - 100967.34161974456, - 101607.11660507972, - 101488.02083832397, - 101538.43241360724, - 101571.4209728939, - 101614.60294862564, - 101543.98807230422, - 100140.2110009592, - 99781.65659298775, - 99630.32221252672, - 99736.34284897555, - 99939.68816469236, - 99738.68447975624, - 100756.1343307411, - 100435.24947529356, - 100910.8664332588, - 100677.72714984877, - 100735.90159757144, - 100826.9420164402, - 100347.59604666795, - 100724.62664190622, - 100800.28375220715, - 99958.28802683057, - 100223.51578710719, - 100030.03728774759, - 100255.25301069795, - 100097.64817745179, - 100070.27980833458, - 99496.54217956355, - 99834.26311033826, - 99649.46419121683, - 99704.24505410295, - 98099.14976704735, - 97992.47106040179, - 99172.12620844663, - 99263.51330746185, - 99164.85920947728, - 99302.85767182164, - 99237.92705301281, - 99353.20063443409, - 99422.72710447569, - 99530.40062035782, - 99623.09686400622, - 102262.73637918029, - 101096.52251097043, - 100900.72710750607, - 100854.58788568957, - 100930.54410580952, - 100881.30772525753, - 101046.55638829275, - 100950.10071476863, - 100905.34579135245, - 101004.70055184087, - 100970.51780212278, - 99071.91798559703, - 100230.94866376575, - 100247.6955386029, - 100336.54641164783, - 100286.23206476576, - 100288.19672372109, - 99946.65854951633, - 98382.05092138954, - 98149.46450257779, - 98195.77272004819, - 98469.92455216771, - 99851.71491845028, - 100095.6614984881, - 99692.3706968398, - 100082.91108254869, - 99804.15557625018, - 99448.71921839722, - 99060.25043722533, - 99023.27650875496, - 99297.5702546631, - 99294.36932291552, - 99179.30995275112, - 100045.4718399428, - 99991.84217198574, - 100144.94289097113, - 100186.88672513781, - 99999.259001288, - 100029.53100660541, - 99983.89846345481, - 100070.04335012313, - 99963.84228945826, - 100154.95560200007, - 100126.49383112307, - 100184.79366257432, - 100095.9453059413, - 99972.532450601, - 99935.32617481564, - 100054.72761578535, - 100167.54861806809, - 100268.01014641963, - 100065.78360368013, - 99954.27857977797, - 100300.23650300906, - 100047.57660412931, - 99960.71023235824, - 99469.40839036046, - 99742.61436390011, - 99787.61466225835, - 99752.65287057367, - 99667.34686788224, - 99662.1015345583, - 99902.68854543792, - 99569.89208691959, - 99820.02624163267, - 99638.83452551358, - 99711.04801908563, - 99637.2394192473, - 99670.90654530568, - 99871.95762795635, - 99867.06009800416, - 99773.13365021958, - 99788.04993321348, - 100886.59644421024, - 100617.57692160354, - 97354.40959148448, - 97308.04795724564, - 99946.82760551533, - 99861.30129865861, - 99854.73519886057, - 99876.79834798473, - 99825.5809352925, - 99696.4776935133, - 99449.32982858743, - 100146.45911618347, - 100194.34609094857, - 100236.08045057741, - 100318.10888305007, - 100414.29908033357, - 100954.21212780282, - 100854.71599889648, - 100715.77423406432, - 100938.47273980454, - 100740.51816279993, - 100647.85842417844, - 100675.59804321895, - 100680.18671105271, - 100609.66249449608, - 102544.79556060483, - 102217.36666847287, - 102521.74551958093, - 101588.4570754577, - 101596.86944416925, - 101518.34662372227, - 101870.12225865177, - 101800.1352857561, - 101817.25828775382, - 101888.27034944776, - 100627.40352162097, - 100568.88671127104, - 100529.03073101211, - 101462.26776524783, - 101562.10256227688, - 99808.65192178015, - 99595.46430131905, - 99627.98538427509, - 99554.67141647628, - 99753.56979486135, - 99620.77161459692, - 100288.64924019997, - 100073.37253120718, - 100257.14036743405, - 98443.42888803613, - 98504.51157473968, - 98381.06197054817, - 100277.45944226006, - 102041.9705971981, - 102065.42302869826, - 96140.80721502517, - 96732.12162014724, - 96807.24936764163, - 98966.24498506205, - 99285.4906673645, - 96696.72791352752, - 102774.85126684737, - 102763.62240036845, - 102753.86799097287, - 102900.43476422675, - 102939.9486939862, - 102869.11973290454, - 102835.06492486139, - 102797.26240935021, - 102983.62389345889, - 102888.1607695238, - 102858.79048659823, - 102803.82818927991, - 102610.83531896502, - 102890.71599205933, - 102924.12080650972, - 102738.0755445841, - 102859.05034614111, - 102829.27652840661, - 102718.75129913565, - 102904.49581769775, - 102836.15547996153, - 102865.36924499608, - 102930.443259606, - 102806.54367917038, - 102659.10548567928, - 102970.78003743586, - 102763.33394570912, - 102977.66845606956, - 102860.55045390091, - 102980.65396752457, - 102843.42070993401, - 102828.80242806238, - 102785.4793679961, - 102950.45484180044, - 102881.80029360467, - 102698.37186316603, - 103114.51441301465, - 102907.02355996634, - 102915.12131220687, - 102757.81028208174, - 102903.34874311111, - 102698.37513516098, - 102803.12747255337, - 102698.7329379008, - 102785.12283960356, - 103114.84536767862, - 103015.27081336587, - 102767.34552296864, - 102676.11743571368, - 102768.67006444198, - 102732.01298329032, - 102964.4387673357, - 102978.49762423344, - 102709.19849968472, - 102871.27974551258, - 102802.73046718207, - 102833.28125282656, - 102912.49881841196, - 102824.49834513121, - 102850.44795050252, - 102910.71632423713, - 100168.92190700649, - 100060.87608646908, - 100195.98005392331, - 100232.07739882938, - 100140.5345373613, - 100231.8212248547, - 100120.00974518096, - 99706.26075690931, - 99648.48429705722, - 98999.90695568817, - 99298.58296128808, - 99345.00160357062, - 98979.39440657692, - 98865.98020761501, - 98836.74859736628, - 98848.63298920334, - 98970.52960408649, - 99411.64293529403, - 99438.0742810684, - 98215.40985722737, - 99972.74540205879, - 99931.27630633158, - 99804.55441106777, - 99656.82244812195, - 97650.23041136506, - 97618.76347699384, - 97524.30567878918, - 97579.76275824622, - 97515.47048470171, - 95421.28692426691, - 95460.4484609827, - 95525.97848344142, - 99961.60534852691, - 99989.35584080167, - 99903.53901231757, - 99773.8565122577, - 99636.19206865072, - 99784.77259622097, - 99779.47732732524, - 99727.4746257999 - ], - "y": [ - -188630.5751925975, - -188333.01761814565, - -188120.26418891654, - -188484.3860102188, - -188495.23201231525, - -188320.30928268767, - -188483.56766699257, - -187939.12845477546, - -187818.23537279075, - -187946.7603080632, - -188197.8301536245, - -188683.2303206299, - -188503.10517806208, - -188860.7645077761, - -188943.16984077886, - -189195.75127467563, - -188593.0213982362, - -188664.20873805106, - -188389.7264047301, - -188531.62632111614, - -188870.3516127079, - -188193.26327558464, - -187318.35447427825, - -189806.69206404962, - -188090.2894991313, - -188100.01616886404, - -188174.55996141888, - -188463.2031115645, - -188363.74532847013, - -187605.6195439504, - -188732.3518539843, - -184365.92318507173, - -188187.27869729063, - -188342.5253574899, - -187588.75004952576, - -189081.41342393393, - -188060.79254294612, - -188845.78996045736, - -188800.35117287276, - -188205.98013851763, - -188992.01175242575, - -188221.79324811854, - -188559.27230275373, - -188136.72692104083, - -187550.377833089, - -188302.59803287973, - -187581.63192013613, - -187717.56726598475, - -188480.64988687172, - -188160.1723451082, - -188798.2366179604, - -188090.79273053954, - -187779.636684694, - -188782.71424431694, - -187419.76550716007, - -188621.19074517605, - -187478.37592567242, - -187971.61344319995, - -187778.30145997382, - -187625.15506672708, - -186611.5059282818, - -188003.31924616438, - -188139.1086900214, - -188172.13924848195, - -187348.161691788, - -188223.82733587097, - -188730.91358476676, - -187886.4063756375, - -188597.83399210958, - -188057.1917578529, - -188218.10363143042, - -188210.32065825685, - -188129.95134955403, - -188196.78625864437, - -188493.78120901805, - -188034.45615562776, - -188161.6224994722, - -188173.13991697345, - -188249.23314484346, - -188327.77303545873, - -188516.92372013946, - -189362.5154690305, - -188432.70004235505, - -188115.43097167817, - -188400.87592482337, - -188482.24258789566, - -188788.26218175198, - -189293.36061735288, - -189227.5443430391, - -188131.32433438205, - -188109.2701383384, - -188095.6269492578, - -188368.0469139002, - -188160.44816852582, - -188198.66663852846, - -188806.49024330094, - -189163.69044909158, - -185208.78508001886, - -188125.1114877186, - -188534.0512551924, - -188177.51543305253, - -188133.61205856866, - -188047.21116345978, - -188112.59605802642, - -188194.2363318084, - -188117.56111774204, - -188690.07025037165, - -188656.54845148328, - -188969.58942661897, - -188902.73804542943, - -189437.10887228855, - -188334.74393636227, - -189186.06009143573, - -188965.52824986106, - -188960.47562263405, - -188470.92069224652, - -188476.5108117482, - -188140.7416293255, - -188146.4029455515, - -188071.56456675925, - -188736.90081401754, - -188963.01391432688, - -188834.10272951444, - -189003.73857407318, - -187984.04010321392, - -188504.82116380852, - -188905.6100788483, - -188469.95350641874, - -188517.84736046946, - -188304.5177743197, - -188106.72693407602, - -188224.97547898805, - -188062.4324835948, - -188068.27323340887, - -188836.55324492624, - -189360.7972441431, - -188481.55600240765, - -188657.5093365336, - -188989.48748180468, - -186433.20819659182, - -187618.5955755901, - -188608.14004422975, - -188103.543164194, - -188244.1581110861, - -189169.82807631438, - -187562.6954412684, - -188597.59464444526, - -188094.93147997395, - -188497.24015716757, - -186541.63161815086, - -189066.48960328338, - -188746.57951263554, - -188974.92632111761, - -188911.8607199644, - -188919.7029759385, - -188102.7775258803, - -188377.38150042814, - -188087.26616295817, - -188979.0014231341, - -188075.4320336564, - -188078.45265644975, - -188154.95367904997, - -189231.2675484738, - -188515.5389473062, - -188291.51205377275, - -188851.13864683165, - -187819.11455949367, - -189285.9657250609, - -188590.74143741513, - -188592.58854995444, - -188149.64184463344, - -188010.31234546934, - -188060.2135347956, - -188203.78076926843, - -188646.02879834978, - -188429.88264305083, - -188690.19852216193, - -189267.9620036595, - -188566.821774848, - -188252.50921945827, - -188121.3122975104, - -188198.51232125357, - -188108.59779207408, - -188127.2678753391, - -188081.2142320706, - -188533.7358044206, - -187599.9393852977, - -188530.48273097305, - -188098.39897942072, - -188674.40626418887, - -188083.60697520856, - -188148.15947986252, - -188022.57383190584, - -188130.72283528827, - -188048.00492761855, - -188170.03703741357, - -188251.20192635697, - -188251.14135969765, - -189072.52109977874, - -189421.3965259288, - -188487.8442985911, - -188909.27353199496, - -188597.87223608652, - -187913.85881532487, - -188652.52674561567, - -188835.22735785999, - -188894.10833929706, - -189390.9934105709, - -189304.65399711, - -188772.49683122957, - -187066.75929757126, - -188572.61534136938, - -188424.95815413288, - -188285.79535372727, - -186683.14575150548, - -188557.7500853805, - -189297.14028084598, - -189158.03047828437, - -188273.612045506, - -187641.16543157026, - -188244.37359244894, - -188328.36296298457, - -186973.0577066971, - -188676.80334905128, - -188706.18078984448, - -188123.2736693611, - -188699.20817216582, - -188902.71776057317, - -188705.66239081704, - -188651.89978288996, - -188031.4228654602, - -188507.5871274623, - -188473.15080842157, - -187558.11023642388, - -189344.7791897772, - -188568.03135249048, - -189006.15667271154, - -188907.33441810505, - -188872.08380899028, - -189090.95733044946, - -188466.8921120741, - -188916.39990961482, - -188890.76276156757, - -189031.25167023003, - -190718.20336678185, - -188924.92880801545, - -189611.13910755786, - -189371.07705115504, - -187862.73468047418, - -188350.84668912945, - -188435.49777233123, - -189286.4104808909, - -189329.86947105004, - -188827.20853608186, - -188656.4246604865, - -188224.81397464138, - -188371.826375027, - -188530.07168880716, - -188684.380536833, - -188809.10200272722, - -189064.02055466248, - -188910.5188593822, - -187504.5939470865, - -188238.2747120987, - -189055.06434900622, - -188985.5661371472, - -188817.42461554098, - -188328.4992507085, - -188032.35686812358, - -188989.35923942667, - -188537.1492944953, - -188332.10285588854, - -188224.61386277262, - -188398.43069892912, - -188690.45660123866, - -188764.5244681029, - -188476.21098523034, - -188906.10027535562, - -188598.92292480564, - -188338.53308343157, - -188035.09619434597, - -187471.21704082517, - -187485.8021358164, - -187835.19770223383, - -187808.73897039745, - -188471.24794147993, - -188922.89599843553, - -189190.69568859632, - -188648.39727075843, - -188995.8386599755, - -188818.68200287974, - -189419.4844744169, - -188681.37081393888, - -190034.5154898649, - -189093.07196799477, - -188332.3887565364, - -189148.08464521947, - -189778.0564884073, - -188895.1305372902, - -189361.39928674913, - -189514.26395840745, - -188424.82223649055, - -188154.87099078548, - -188823.15900221813, - -188236.33672313037, - -188290.4882788216, - -188591.75199645569, - -188345.75062919507, - -189486.94419473826, - -189045.68105489522, - -188680.97177115767, - -187854.13914095613, - -187620.89247314315, - -187749.7848825597, - -187628.5971893858, - -186283.60700347682, - -186870.78214397354, - -189075.78000835242, - -189556.635346552, - -190524.42466711518, - -189972.3782485477, - -190110.09263707226, - -189723.06164490216, - -190104.18934124312, - -191447.36757318178, - -189487.1728230268, - -188337.61728350184, - -188634.22396120222, - -188577.10958302955, - -188609.33112603877, - -187678.114505735, - -187393.45287008572, - -187444.98398375107, - -187212.75750088846, - -187430.50547179487, - -187206.375494998, - -187142.3027271855, - -189125.41464985392, - -185759.04101010459, - -184987.91450924633, - -186636.99979215744, - -187026.07843949736, - -186362.3442443084, - -184641.7612714999, - -186631.89998789044, - -185684.77267411654, - -185952.0045384303, - -184904.78554636845, - -184466.17568020654, - -187733.16720291993, - -186005.44685669165, - -185619.78884854354, - -185702.8268145955, - -186641.42486820777, - -186086.34378531418, - -186293.45287911844, - -186774.72272855093, - -186590.54840473336, - -185178.65674855074, - -185915.41451703524, - -185024.2525256191, - -187101.25689315388, - -186246.8336915767, - -185785.58597568647, - -186910.03493563386, - -184853.0590167661, - -186226.79838547923, - -186901.84865346336, - -186721.96101630855, - -184537.33337450697, - -185045.17257071825, - -185015.8206856978, - -186804.32931589548, - -184581.5176270497, - -185481.01398954104, - -186732.67988941015, - -184625.82608792314, - -186816.72669112886, - -184583.06480907716, - -185882.0659107163, - -185038.89476309827, - -185605.49639890593, - -186050.83831655356, - -185545.91429343188, - -185541.4531936617, - -186168.82581792577, - -186748.98809619094, - -186212.79235782122, - -185138.3043013017, - -185886.66303952422, - -185943.81351701595, - -187223.2607479505, - -186155.98693221714, - -186745.5325164879, - -185873.2153007946, - -184956.02375735843, - -184916.01122916443, - -187298.0167096983, - -186400.0437673064, - -186436.31884006507, - -186909.73673779095, - -185995.1502748551, - -184615.0971850325, - -187360.11530786066, - -185731.06588292573, - -185203.40536363234, - -186738.0081330498, - -184452.34215766398, - -186427.8924649136, - -185642.1433378504, - -186666.6053800214, - -185815.18416524283, - -186758.5541269017, - -187178.7309685011, - -185344.84167674318, - -186299.91453282413, - -184913.47542316676, - -186120.90133707918, - -186355.57333992186, - -186189.16120161928, - -184489.52291589003, - -186020.49632337195, - -185978.46454360176, - -186423.1890183184, - -186357.39136631842, - -186197.9689961989, - -185022.86408063665, - -187501.80648056217, - -184448.27042316197, - -185456.1454266718, - -186332.64294302047, - -184782.3347015735, - -186335.73632380622, - -186471.46349538234, - -186139.010172475, - -186316.0422884422, - -185427.96582922543, - -185447.0419864294, - -184490.70631354378, - -184939.12159409848, - -185499.81083646082, - -185420.27932112452, - -186178.47202606747, - -185579.11398649425, - -162543.04429998007, - -185402.97734600544, - -184648.39875714693, - -185873.0454380232, - -185520.70192438262, - -185045.13302486815, - -184686.93743150224, - -184749.34739859024, - -184975.0257556787, - -186494.74258418888, - -186002.60660400984, - -185421.69274864852, - -184586.8813999643, - -185681.38668976224, - -186353.07679074036, - -185564.40303426507, - -186002.1139085686, - -185305.14466217102, - -185778.17229121647, - -186985.55167581502, - -186263.96942212473, - -185857.1772490468, - -185285.2393191878, - -187056.932365551, - -184676.4950788661, - -184930.69103318956, - -185654.1953572347, - -184539.2197937198, - -185426.67525594652, - -185125.95912239008, - -186228.52516030474, - -185197.58467855424, - -184440.56367975674, - -185759.1915587864, - -185972.1252497052, - -186192.2420612465, - -185572.22568055146, - -184521.98992331282, - -184716.55236438496, - -187315.42788165333, - -186517.17238975927, - -185020.17742510125, - -186047.50278945875, - -186067.006560711, - -185935.95217366592, - -187267.3268205127, - -186480.07163780744, - -185251.66599737256, - -186588.42377164616, - -185212.56249281162, - -185768.74376793872, - -184566.5211927391, - -184641.3699119499, - -184521.26817218866, - -187072.0455521363, - -187795.37604648358, - -189725.6419856943, - -187757.4125399983, - -187976.81833544138, - -187648.12160933763, - -188696.13322752403, - -188070.50402783387, - -189274.10474049454, - -189265.0331807753, - -189023.51159242663, - -189150.0722038921, - -188785.27223021127, - -189202.4647666379, - -188283.2622476873, - -188647.58850257998, - -187775.4606762898, - -189047.84983436737, - -188214.95290711892, - -187829.60079496383, - -188860.81131323622, - -187594.8777657927, - -188109.5947916895, - -188135.7951117508, - -188126.67429510137, - -188068.89540782082, - -188138.17806449422, - -188113.8147030654, - -188119.49823623613, - -188123.9780570342, - -188121.51859750494, - -188082.81454332572, - -188023.85098966694, - -188038.4334288893, - -188097.6602407291, - -188124.65543545736, - -188079.8329504583, - -188129.3743830729, - -187109.55145493208, - -186870.85476427, - -188380.61838572615, - -187896.4403547719, - -186832.87175251383, - -188228.79178433472, - -188560.0382335581, - -189116.42239682464, - -187271.2309208508, - -188311.63055655325, - -187739.67693354897, - -187063.92444055318, - -187917.59257197715, - -187718.91875175654, - -187835.8854861633, - -186803.90033266746, - -186803.59234443662, - -187788.5747429511, - -187893.88302668915, - -187975.0076209473, - -188925.1717325238, - -188021.2228785292, - -187932.34492398132, - -188182.1801783731, - -187688.50752132258, - -188117.50710319917, - -187793.53772320974, - -188261.16935105162, - -187834.80609488173, - -188539.05431916684, - -187997.42121583116, - -187612.6161505803, - -187887.72467534128, - -187994.01573117293, - -186612.36184898173, - -187574.2721654691, - -188185.43487919736, - -187645.64505814915, - -187791.77040384425, - -187981.65234561847, - -188328.62880040111, - -186953.31740903624, - -188465.46750448947, - -187228.86858406416, - -187937.28779075225, - -187728.251997722, - -187741.77573005384, - -187158.59874792627, - -187975.58965748092, - -187927.83620065072, - -186563.98191544128, - -187904.33904992894, - -186517.6751626997, - -188788.84774377767, - -187457.0743764612, - -187427.58017047317, - -186780.2984968334, - -187516.61720349116, - -188036.28044668204, - -187566.1094978599, - -187881.7928789883, - -187307.95076337553, - -187950.03622824297, - -187244.0460795401, - -187306.8260455551, - -186941.09836380862, - -187281.55271362027, - -184627.2559353374, - -187265.23927959087, - -187879.37136154508, - -187821.3765527352, - -188384.35926426292, - -187883.60479267285, - -187489.15417484118, - -186717.18778761072, - -186287.99929102132, - -187805.10710923118, - -187648.9973224916, - -186146.62535800086, - -187493.66055654176, - -187627.45216360627, - -187246.44784323307, - -186544.6994452667, - -188210.8583614681, - -187744.5423702615, - -188036.86055892534, - -179133.13735543872, - -187953.2923392146, - -187258.52951028265, - -186551.5718918603, - -186296.09077217794, - -185926.73089974615, - -185395.93395849012, - -185879.15090298475, - -186605.81963314634, - -186705.75237789055, - -186345.44096085647, - -186875.28527664224, - -187527.73357511935, - -187567.52052119686, - -187774.1615382006, - -187413.64255787656, - -186699.2701887279, - -185739.58717722545, - -187270.5390270905, - -185576.15263923115, - -186350.72668639437, - -185754.93903104283, - -187305.67084880813, - -187046.43325413764, - -184234.61115541728, - -186972.57418070477, - -183824.5305223081, - -188073.66592800152, - -187728.06688195525, - -188874.14340416354, - -188459.36009707808, - -190374.15560172813, - -189063.428793386, - -188003.3208638465, - -187986.19049612174, - -189149.42833616625, - -188614.21318785282, - -188591.14091919875, - -187899.4374158756, - -187973.27776270141, - -188306.96972666128, - -188623.6166852075, - -188689.9069400571, - -188243.41945504982, - -187366.96961790608, - -188433.4935194492, - -188344.57017201104, - -188096.6720864056, - -190042.38359170523, - -187776.081074906, - -188131.29016873462, - -188443.1461449862, - -186553.62133220496, - -188002.51793235893, - -187969.50621106548, - -187790.99540247666, - -187346.30214189566, - -188420.23770977926, - -189713.61547225437, - -189579.9504364677, - -189111.4078263055, - -187949.63698018505, - -188522.7223023232, - -187937.26783141587, - -188130.4537181713, - -187934.23814137233, - -188172.74538859082, - -188739.05313596342, - -188776.96293003074, - -187409.36259250416, - -188147.54710943915, - -188912.98663177204, - -187872.6633840466, - -187983.6774823736, - -191242.41426244462, - -186152.69967393065, - -189386.63393714104, - -187511.94987432053, - -188311.50521847996, - -187429.57924484243, - -188069.86804999335, - -187683.73338858323, - -188441.93108825223, - -188229.31889099232, - -187736.63135462272, - -187992.83317437719, - -188118.8223297085, - -187582.59747798453, - -187476.39314391202, - -187234.4612318493, - -188221.49233807725, - -188309.63351146277, - -187764.81958165232, - -188226.41949047343, - -188297.22695862473, - -186800.93628583517, - -188080.7633837035, - -187297.44363830626, - -187963.97664086308, - -187969.50842343477, - -188021.3687563727, - -187972.53307352384, - -188078.52295971283, - -188978.81025809547, - -188226.32844361593, - -187679.47433074287, - -188763.44516650846, - -187724.4325574573, - -187610.1377688772, - -187354.91901122752, - -187993.51411086737, - -187185.02879405092, - -188028.29034553113, - -188188.52643226265, - -187803.06549553943, - -188463.31349680066, - -187834.08698576453, - -187975.40467572561, - -187987.12541376214, - -187517.9128709205, - -188097.1885506176, - -188083.10255481664, - -188183.12236589222, - -188158.79572465117, - -189953.43285506195, - -187785.39966082262, - -188776.05672438274, - -187556.7890851402, - -187788.15822833957, - -187203.12559746174, - -188208.85344747134, - -188387.13883004195, - -187775.03036984504, - -188034.61082553468, - -188046.35626590863, - -188101.37584040826, - -188094.00217598723, - -188407.58725157817, - -188482.5310615353, - -190270.05275175368, - -188517.9738436573, - -188362.35931727977, - -188526.0290014248, - -188562.5678949605, - -188777.68796030607, - -188198.9950582187, - -188204.97639419296, - -188894.20780772806, - -188877.75447919974, - -189462.90626881117, - -188932.21737437064, - -188795.16991496552, - -188977.4576085, - -190074.33054887285, - -188697.3813039972, - -188898.08155878072, - -189113.8715419739, - -188845.84495555653, - -189204.34458726516, - -189029.22851713432, - -188216.02236323402, - -190233.5032244461, - -188846.81963719826, - -186096.45797461583, - -189624.14425346788, - -188972.66635322545, - -188756.88925757885, - -188954.19885795217, - -188231.47750730137, - -188228.14569705023, - -190039.66227026214, - -188955.70075548417, - -188817.15343371764, - -188911.31765919903, - -188817.64018552104, - -188387.0195355698, - -188217.19279192775, - -188215.48726479657, - -188940.66433230025, - -189435.39611651178, - -190181.63074577937, - -188605.13434911743, - -190160.9077330154, - -189966.56620810815, - -189999.31667014628, - -188266.23380139962, - -189466.79866331397, - -188990.40385466997, - -188104.07716877718, - -188549.88759442163, - -188275.44850877777, - -188155.0331583998, - -188220.5960329952, - -188295.15735575298, - -188327.76182227116, - -189229.17376885633, - -188397.25088022946, - -188984.20542329797, - -189302.6007381189, - -189570.55632521573, - -189768.79952321426, - -187278.70253330644, - -186223.42382426502, - -185538.47106454833, - -181316.88675453834, - -188577.68911072935, - -189429.78822251226, - -189243.0403538959, - -189251.3089257868, - -188563.19407494835, - -188854.39170410443, - -189260.15851219348, - -189231.4279713372, - -188786.31293626514, - -189104.52316957942, - -189182.68148483842, - -189072.0465506361, - -188705.65600489438, - -189967.28432425318, - -189454.98816233617, - -189757.15706957557, - -189951.737106575, - -188991.42081728007, - -189636.0078208734, - -190209.4983373492, - -190012.9068404736, - -189864.05117757033, - -190050.28712576124, - -188866.95996207467, - -189208.00816211943, - -189099.37048930768, - -188483.7955207067, - -188865.2383597738, - -188899.90215259913, - -188841.91500915465, - -188310.94209393, - -189567.91347630875, - -189475.84370340698, - -189256.76102591655, - -189118.55548115997, - -189287.09541988553, - -189836.02265256474, - -188267.79946330914, - -188734.64348648756, - -188499.89103916325, - -188424.26831552497, - -188471.16226267573, - -188555.01680973297, - -189062.6660397884, - -189368.04321790536, - -189207.12335782725, - -189901.5373675402, - -187627.1081749794, - -187857.75124697632, - -187760.40303329699, - -187858.44732430877, - -187957.10022871735, - -188486.6627500266, - -188672.58677714274, - -188275.58704858087, - -187965.95478834442, - -189024.27048204138, - -188563.84477598095, - -189010.6567271695, - -189191.62724059867, - -189723.8971601925, - -190283.4150628221, - -188285.74392279977, - -190048.63972499638, - -186790.41009242184, - -187248.01430917686, - -186364.1134175767, - -184046.07233791953, - -187468.17123172226, - -187004.07979892765, - -188726.61235021544, - -188040.02763009068, - -188376.78890401422, - -189797.29543539853, - -188727.56930522466, - -189767.66077987218, - -189402.54379102314, - -189855.4536758818, - -188921.83564302602, - -188744.70646205018, - -188570.19383203107, - -187452.2953444194, - -186432.95981047777, - -184493.4638333277, - -189681.03829755695, - -189180.69142051495, - -189494.99190465917, - -189418.3150618224, - -189406.1804548177, - -188956.60901643464, - -188286.47377093224, - -187847.91597445504, - -187772.9366644242, - -189454.44287559506, - -189336.90265698743, - -189688.38226235847, - -189642.32271672558, - -189773.80511431769, - -188623.37539469652, - -188059.06910793387, - -186490.92481183048, - -188035.43847485105, - -187899.97545537198, - -188759.4892448286, - -189867.76456386773, - -189966.51788839934, - -187864.57873495863, - -188459.5042273985, - -188339.61248515616, - -188482.4680775093, - -190059.0897295911, - -188449.63396273268, - -188564.80121031718, - -188934.75013167982, - -189407.17407776418, - -189594.04877099616, - -189928.77888545024, - -190063.494640501, - -190324.0838511919, - -190002.50380021115, - -189351.62227285848, - -188667.17352392792, - -189386.891690723, - -188871.73421564943, - -187862.98846391006, - -187369.8494239768, - -188047.51511369456, - -188898.55180012845, - -189023.57039513884, - -189300.64988114213, - -189304.23943329643, - -189802.91324633866, - -189198.96904724132, - -190149.611876793, - -189688.97127087243, - -190162.42457619242, - -189121.32206798793, - -185673.72485317432, - -187602.98284577316, - -187118.0943589478, - -187049.29511418982, - -188760.63914555783, - -188352.16461745944, - -188788.10931841948, - -188307.55943122407, - -185447.3982690385, - -185647.43874032347, - -186600.68816277097, - -190030.77698961753, - -189844.44305599996, - -189312.96716657415, - -188863.83470003767, - -190030.6059389626, - -188831.9884617397, - -188800.5645587159, - -188270.16098356986, - -188288.73056814942, - -188325.90735821644, - -187036.11661907207, - -187430.4310402768, - -187168.63791618857, - -188085.78649439852, - -188069.8757916443, - -188377.16521032414, - -181388.6636291559, - -186958.0626639662, - -187792.11829844635, - -186964.88142731908, - -186890.040734751, - -187516.96845806637, - -187371.3989655883, - -187673.56257634406, - -188468.66418560426, - -187827.28797163125, - -188015.37292595976, - -186963.61210988168, - -186909.75756834846, - -188500.0586157652, - -187625.4001681701, - -186957.07730695538, - -187126.5717021234, - -187092.89589648045, - -187547.0278070721, - -186215.06335089865, - -186961.92845610308, - -187072.4040574778, - -186908.50557712573, - -187018.58994966594, - -186937.57642460006, - -187082.89602712472, - -186995.12405826268, - -187033.26399727527, - -187917.0637720583, - -187031.77413979647, - -188265.26483815484, - -186858.39035521806, - -188079.2339962156, - -187486.7108342232, - -187583.99768382817, - -187642.49697600745, - -186233.90314590227, - -187072.79060259266, - -187621.1473503119, - -187006.72435799113, - -187790.78028682835, - -187892.14861530808, - -188892.18297269146, - -188905.7409194041, - -189138.7526208499, - -189186.7934963984, - -188827.6268164547, - -188634.27361204935, - -188976.67306946605, - -188450.6558889738, - -188410.6730522339, - -188982.28023135234, - -188901.95839418104, - -188293.05528383492, - -188304.60597921925, - -189027.32662829437, - -188703.02110051003, - -189670.30367153513, - -187994.90708299744, - -188227.91479363065, - -188959.37304124728, - -188384.46387554856, - -188423.99184216498, - -188238.2147196666, - -189253.3339606655, - -189185.39353573837, - -189354.40611590687, - -189275.31015895875, - -189331.45564091532, - -188567.58941515462, - -189030.19349696804, - -189196.05341570152, - -189004.60313990066, - -189177.62541549082, - -189238.99357410418, - -188534.02363205954, - -189103.72355039057, - -188253.45353298465, - -188413.92210597807, - -188679.23184501874, - -188187.00891794523, - -189002.36578898947, - -189314.34425935848, - -189077.88806110198, - -189112.1678726178, - -188644.9068178371, - -188854.15596558747, - -189111.59184893724, - -188992.06395225637, - -189040.44316666905, - -189146.26340260505, - -188960.36420407722, - -188977.27182089942, - -190700.1111637919, - -189013.04796735963, - -189379.49234130658, - -188621.49299553412, - -189304.65394903507, - -189125.53360787733, - -189135.01597268603, - -189115.81575099364, - -189157.19198902682, - -188738.48340001726, - -188921.90699962387, - -189360.31796682146, - -189070.91343901315, - -190093.18905705298, - -189047.08598048709, - -189299.65616548483, - -189095.541722688, - -188344.0930836277, - -189171.19029766714, - -189042.28405360697, - -189119.99497062556, - -188237.25251034857, - -189195.42176761568, - -189062.39520516488, - -189376.82012229282, - -188752.9247450727, - -189405.91331066622, - -189552.3086334869, - -189502.59770853355, - -189170.9678004025, - -189264.0420911513, - -189503.85032749924, - -189204.769419827, - -188590.4523846817, - -188232.11752967277, - -189226.9114919114, - -189164.54245151358, - -189027.77132385422, - -189230.86162244383, - -189066.13649801663, - -188975.60125457792, - -189062.5039727102, - -189350.8806358681, - -188269.15616936548, - -188968.20482936336, - -188815.02865766146, - -189043.76513096062, - -189256.66974275385, - -189395.66537570828, - -189168.39200200443, - -189180.9410564133, - -189294.69067324145, - -189527.4692278551, - -188818.7674323714, - -189257.13683550936, - -189100.23306250124, - -189550.2287127826, - -189290.7525839601, - -189267.28726523466, - -188239.65910895087, - -187509.8701143695, - -187500.4930551508, - -189204.5507592727, - -189093.8532022557, - -189171.2221999843, - -189071.60158787234, - -189093.08976506037, - -189407.5843037053, - -189481.84477904785, - -188480.6248001793, - -187643.83786716606, - -188410.19015950867, - -189244.75125275418, - -189322.13919379382, - -189036.37157464225, - -188851.6819268115, - -189227.67375761928, - -189075.98850339456, - -188744.13909734573, - -189286.49138647597, - -189153.23345672205, - -187858.47857020143, - -189295.42475244775, - -189309.40406356056, - -189446.06561523385, - -189270.95690073894, - -189371.36833568558, - -189045.81476778517, - -189090.02633489924, - -189167.51060793153, - -188997.7891351952, - -189166.2520355059, - -189128.02287472552, - -189377.71392390993, - -189261.63282785052, - -189189.44204252012, - -188832.0659363745, - -189372.78444553076, - -189522.90111062877, - -189215.01194453132, - -189188.26284097042, - -190170.23694941032, - -189137.65822856384, - -189532.13206147918, - -189244.33702691298, - -189342.90886317022, - -189601.42301397282, - -189001.4148694418, - -189031.42372914587, - -188346.60400362083, - -189432.19725203505, - -189383.60172976655, - -188396.23465801778, - -188159.4341766519, - -188977.16363192897, - -188924.8418972556, - -189025.99171597915, - -189271.29959663784, - -188897.62049298765, - -188978.69804431516, - -188947.4139822555, - -189026.34351702797, - -188711.72538129365, - -189104.3400123642, - -189226.8573059561, - -188884.40182536017, - -189212.70822393885, - -189665.23911238607, - -188941.9994408223, - -189434.8299251847, - -188586.70146604645, - -189292.63817566453, - -188468.64488827685, - -188955.28240884622, - -188530.70142542297, - -188888.66487646574, - -189282.2219107152, - -189684.28770806687, - -188955.7460585158, - -188128.57240646365, - -187792.9688123335, - -187942.22047264426, - -188476.1018531056, - -187953.14158568936, - -188243.55188231324, - -188224.56475781766, - -187566.37581145845, - -188187.95018705592, - -188277.6495023525, - -188172.14856838898, - -187507.9968975285, - -188728.81774535606, - -188290.08218015765, - -188107.46199151454, - -188848.55062442037, - -188717.3203540903, - -187899.4158525461, - -187856.58036489805, - -188204.3724056574, - -188169.14538504407, - -187899.237151973, - -188069.92329870115, - -188430.55900018988, - -187701.5703586604, - -187761.59383487626, - -187872.25388739264, - -187753.2084302758, - -187765.59237745742, - -187809.27238686706, - -188024.30685571092, - -188424.35361027447, - -187977.63799550864, - -188680.41340104947, - -188480.5260935519, - -184929.26330034356, - -191630.47589507297, - -189739.38463051288, - -189873.68737482626, - -189708.2272477365, - -187892.65214688177, - -187863.91165705194, - -189505.58704021748, - -189880.0757312348, - -189842.1324431489, - -188854.43713783327, - -189536.13208955494, - -188299.83165938678, - -189105.21478588888, - -189296.96733505363, - -189498.98953316532, - -188836.9731938192, - -189477.9687240938, - -189686.82438527062, - -189266.72814157297, - -189703.45302802385, - -189135.00336817247, - -189278.65997138573, - -189241.36313499292, - -189561.96308897558, - -189390.3446237331, - -191279.9278832995, - -193001.23653771952, - -187859.86995225446, - -189738.0525135467, - -189517.96720841108, - -190973.23484101656, - -189777.8358685715, - -188921.5431373296, - -190144.75403043907, - -188947.86956916028, - -189742.155668336, - -189692.5200326185, - -190156.38084035812, - -189713.56303116062, - -187405.71770728158, - -187389.66797592156, - -188640.45100665794, - -187622.41354491585, - -188826.8178670996, - -189837.0067281555, - -189774.66595851514, - -189615.88052612924, - -189272.23379027276, - -190029.28538193705, - -189844.7798702007, - -189790.5959091938, - -189991.2311607774, - -189682.05578414822, - -189987.64885100897, - -189360.52446627786, - -188528.04369924997, - -188875.90551008, - -188016.10442522762, - -188167.02460559944, - -188123.19483452023, - -189105.2816803546, - -188987.74156072343, - -189303.08944739285, - -189317.7229192206, - -189250.6861714318, - -188349.47236547497, - -189577.61389462257, - -188477.95331527485, - -189378.03325846698, - -189231.051408616, - -189290.40865383588, - -186632.56137489137, - -189396.51935593525, - -189490.2551625836, - -189589.28553677927, - -189048.4956879801, - -189131.92422966988, - -188104.6983502157, - -187704.763876957, - -189015.4951605007, - -188563.3727238801, - -188868.86823729656, - -188185.3569399699, - -187448.3572804437, - -188272.94824742872, - -189247.54195982916, - -189033.53333615928, - -189071.23203874825, - -188876.74592565937, - -189238.02623730994, - -189115.05770210535, - -189231.03855465443, - -189259.5246750294, - -189305.01453652733, - -189185.22678595383, - -189778.15834495376, - -189298.76112672515, - -188757.12524904165, - -188126.8200295349, - -188760.00770833693, - -188933.22539579918, - -188674.7471497121, - -188336.20643323814, - -188180.73220770183, - -188519.90581438286, - -187932.28950243027, - -188952.85593883562, - -189097.48187960163, - -188308.2995444295, - -188124.98331170535, - -188393.99052171747, - -188347.58050575748, - -188876.59928470026, - -189345.9124851909, - -188180.15644195993, - -189045.54815632163, - -188937.80405805522, - -188767.47226676266, - -187601.13526565803, - -187830.46815133246, - -186931.52009524958, - -187722.01964145992, - -188625.28745242656, - -188602.07939852623, - -188156.60345261396, - -189331.9915999827, - -188984.34951568441, - -189094.7454633695, - -189479.30333773256, - -188834.4604537936, - -187923.30486023927, - -188635.053643839, - -188696.782377594, - -189006.25883621728, - -189387.78435538372, - -189801.49095297614, - -189489.71907673345, - -190382.19427593888, - -190294.21864983928, - -190368.25817851265, - -189554.68072761627, - -189522.66677498195, - -189623.56254580448, - -188251.55613681383, - -189916.311805951, - -188292.3869375497, - -188271.77595069932, - -189041.9225197264, - -189199.17908190106, - -188285.76996994668, - -189537.7817031003, - -189352.73404518928, - -189471.04120599278, - -189679.53787245677, - -189408.21023611428, - -188999.3408802612, - -189645.5000292996, - -189431.51059923717, - -189615.4869081341, - -189750.14044068835, - -189801.76573120884, - -189558.55733558614, - -189504.89278882294, - -189522.26639614848, - -189536.3625339415, - -189750.30848512865, - -189442.69507087598, - -190034.61897906184, - -188801.60294815066, - -189834.3163791867, - -189257.69084732296, - -188954.66274327494, - -189640.1945004268, - -190115.39552164622, - -188306.66890581805, - -188312.41502651962, - -189659.46917226465, - -189317.8406785239, - -189302.72898643688, - -189169.03781422778, - -189731.85447908618, - -189446.80721719595, - -189275.603776678, - -189693.2055888678, - -189753.59627716336, - -189523.92981689292, - -189582.96181379963, - -190328.62833538937, - -189786.84207760714, - -189751.89635663538, - -188815.1944085261, - -189224.11613190582, - -189796.11674781732, - -189932.6237612485, - -189552.86218391886, - -189830.91246389045, - -189498.42730696275, - -189646.04277723422, - -189493.25493438917, - -188868.21171990343, - -189430.8749071048, - -189418.3979333305, - -188294.41257727327, - -188804.39291762855, - -189383.2134141077, - -189408.30108345978, - -189622.2992613024, - -189336.00050606855, - -189494.18089072162, - -189346.3496150686, - -189517.63745548116, - -189562.47650992335, - -189732.76841517194, - -189536.8343224868, - -189457.759153216, - -189532.57203367492, - -189507.00155087592, - -189055.85878078622, - -190253.9554374968, - -189453.52787322368, - -189199.04942802034, - -189518.1963457777, - -188415.7452673843, - -188922.00741313785, - -189565.95036095765, - -189599.43976925078, - -189447.3213721349, - -189592.0253847243, - -189704.67210231442, - -189429.51527102874, - -189549.2248295347, - -189732.63425983736, - -189156.18143433816, - -189593.73394135686, - -189255.76286114688, - -188480.57065962657, - -189396.15620173485, - -189119.4502426223, - -189099.2895300957, - -189372.92718386388, - -189530.79236599515, - -189323.80480814414, - -189638.78145869536, - -189285.81117966407, - -189920.08786925004, - -189568.58179882303, - -189490.09496069627, - -189529.25512316148, - -189325.65832119124, - -188851.56730320977, - -189408.06502858872, - -189515.4108281232, - -189356.0500464047, - -188887.3973668111, - -189225.07031019146, - -188770.14684657753, - -189474.47554588024, - -189774.7476661943, - -189656.34211244347, - -189485.92172726392, - -189381.9654969643, - -189641.00924985827, - -189677.82690449522, - -189393.09189406977, - -189725.99119278492, - -187911.2710909405, - -189560.62472315767, - -188296.21414801962, - -189686.30027570974, - -189068.82122443494, - -188278.08712796614, - -189634.1669562323, - -189557.7983769141, - -189363.34000394432, - -187689.0483805537, - -189640.61261352964, - -189583.51700064118, - -189321.36395637903, - -189328.29367726677, - -188925.91974127013, - -189730.37815090845, - -188921.42443902968, - -189511.2209653839, - -189692.25637540634, - -189322.72491470815, - -189703.6139847984, - -189590.25078595642, - -188547.46824695042, - -189621.15970611246, - -189554.07262256934, - -188935.33612228493, - -189468.52121776558, - -189726.9839142311, - -189604.051822791, - -189172.60980398947, - -189516.1723814726, - -189606.13981497308, - -189818.32592583625, - -189832.11385822124, - -188799.02956322636, - -189141.57950872142, - -189643.42341201042, - -189659.6677604097, - -189525.22410298133, - -189794.1589935236, - -189493.67651902192, - -189257.11848075397, - -189190.8420644383, - -189427.21294576538, - -189688.7712261936, - -189402.41667130496, - -188695.04808894158, - -189566.4665127886, - -187695.57614406702, - -188758.55641030593, - -189744.39363754724, - -188470.03479631987, - -189424.87314537496, - -189689.52817768222, - -189447.98748217383, - -189736.91566883595, - -187803.1415402722, - -188615.64024283146, - -188516.52943830803, - -189681.64351749184, - -189583.2115684275, - -188560.8123839254, - -188808.58568177576, - -189710.93255919393, - -189406.02024615998, - -189499.59645998385, - -189483.72175297773, - -189357.24837546385, - -189474.95530109046, - -189782.36536876537, - -189258.09496306165, - -189596.714753665, - -188890.3664574394, - -188764.91305512202, - -189282.2159957167, - -188923.44433292217, - -188971.43179267063, - -188253.40886764217, - -189394.1110529634, - -188553.8667206884, - -188247.0553738609, - -188500.12824679536, - -188900.62386161956, - -188881.29006931305, - -189122.419390301, - -189049.75416535302, - -190290.13307072833, - -188263.30442852018, - -189655.53739052103, - -189593.4766049247, - -189658.27998301366, - -189608.43740396632, - -189240.7395503507, - -189401.6122354161, - -187798.89120280318, - -189230.37339317877, - -189545.16625437708, - -189612.82599109344, - -189466.51428955715, - -189424.6200709084, - -189622.41040500058, - -189883.7142335665, - -189350.129160721, - -189397.67019498325, - -189374.36013442566, - -189312.9879746982, - -189387.4220162738, - -189456.31330892164, - -188757.97295287042, - -189874.7197630853, - -188938.53921387976, - -189174.94373042753, - -188249.57030670525, - -188260.60515116138, - -188336.6986691293, - -187680.87764689644, - -187251.2510294042, - -187262.66438443118, - -189570.2833336003, - -189763.14706397685, - -189566.8655000776, - -189779.29013892455, - -189298.26902639432, - -189143.0578281467, - -189430.35956357492, - -189539.6584614828, - -189404.9591139528, - -189661.95294361803, - -188758.00763305573, - -189602.10511057184, - -189832.73284060266, - -187986.2925046758, - -189638.5204736213, - -189307.41763655184, - -187325.8474831565, - -188953.73820219914, - -189477.09111556568, - -188608.7669540309, - -189663.5967077643, - -187902.1950427761, - -189204.27918840424, - -187963.18284034188, - -189589.51983073587, - -190125.8549583156, - -189597.31022038838, - -189659.42206924004, - -187522.90987740675, - -189314.3318274669, - -189123.09886013696, - -189438.33583540513, - -189190.64141113937, - -189506.4879067685, - -189996.88173583825, - -189506.9208114558, - -188577.0164252054, - -189355.94588633478, - -189514.97306091062, - -189411.36286505614, - -188802.23079391493, - -189518.63063531838, - -189595.0859664761, - -188849.11552920155, - -188741.18667656466, - -189712.08090202446, - -190133.98681796715, - -189423.36465952417, - -190181.23310247317, - -188309.38290130332, - -189261.45093796574, - -188229.01322122104, - -188225.00588929723, - -187746.04762354173, - -189649.05343454154, - -189292.69033396387, - -190439.80952772064, - -190167.4618217757, - -189777.63112573957, - -188400.0367418278, - -189502.7870754483, - -189631.87542889913, - -189379.6564968773, - -189825.04437502267, - -189697.85110122422, - -189730.2105260354, - -188642.19864755738, - -186804.33417873908, - -189138.6052683931, - -189186.61889509932, - -189212.86844851545, - -188462.65509945378, - -188255.37224721114, - -188039.00270855022, - -188214.46720173355, - -188543.17964185297, - -188551.65872850412, - -187924.76781139948, - -188265.91476313816, - -188620.13710179558, - -188797.5960817814, - -188675.01145983627, - -189585.23416607562, - -189073.2131275974, - -187778.6034982877, - -188715.31186791277, - -188783.67793234484, - -188686.17124409127, - -188717.35827303602, - -189175.1779532503, - -188752.45189673398, - -188617.7522841282, - -187330.48424043634, - -190049.08294096706, - -190134.12788602014, - -189436.51072175297, - -188825.24595688403, - -188748.41080724396, - -188632.32322923772, - -188755.87124533966, - -188739.89476481508, - -188763.09490078397, - -187046.38487493325, - -187967.45205088542, - -188236.06352852797, - -187916.56938459937, - -188277.7110845498, - -187856.57507774787, - -186309.0004789828, - -186448.0761262461, - -187372.14693328072, - -186713.31626898306, - -188161.6300058421, - -187294.3067848806, - -187587.45047793945, - -189873.55077472897, - -187521.8824872184, - -188348.79948910305, - -189862.6413098155, - -189857.14185344288, - -189824.66753653612, - -189879.5254089133, - -190932.80865181403, - -189214.1812788162, - -192162.3269836861, - -192524.44290793836, - -192115.1138136991, - -188972.92135698648, - -188186.38974025362, - -189043.94703463372, - -188886.17592031375, - -189232.21457982747, - -187820.75210574528, - -187459.03461725367, - -188430.993490856, - -187553.03431553903, - -187734.42575994402, - -187621.21937398304, - -187659.66124892057, - -187626.4788257705, - -188263.86255790308, - -187368.52340470123, - -187348.7681817943, - -187682.18281394336, - -186584.2836090355, - -188630.62199919912, - -189687.1717524016, - -189392.44618215397, - -187036.08464524065, - -185139.07792481993, - -185139.72357748792, - -185172.0562297005, - -185223.1558109515, - -185302.5690199798, - -187760.736691232, - -187476.2628433151, - -187427.76982279553, - -187674.51102416526, - -188223.1502255291, - -188223.8025959115, - -188238.87170758605, - -187003.89280649187, - -186542.96075744857, - -186761.60951942398, - -187272.80604379578, - -187924.91100981052, - -184843.25042613945, - -186903.6585095412, - -187363.62555888496, - -185290.586235629, - -185165.9576632683, - -187636.6401471091, - -187838.56400906073, - -187819.29574656484, - -188059.9314632963, - -188290.363652496, - -187943.2258883462, - -188099.9720945511, - -187941.9237365848, - -188412.73187816486, - -188208.82409906888, - -187463.4585977219, - -186479.6446350026, - -187298.47957976593, - -186539.61527157956, - -186056.69045446397, - -185951.46023938467, - -186802.7182162248, - -185550.27627308652, - -187045.1102206911, - -187073.15041134102, - -187254.26535223567, - -187989.30944414838, - -188000.4487104779, - -187906.78280195483, - -186681.1635380391, - -186905.37079495806, - -187920.62374587829, - -187659.66132080328, - -187484.91206357404, - -186546.9811101811, - -187389.5387646811, - -186874.71930400067, - -185839.00663893652, - -185362.02426270678, - -186743.67631044146, - -186943.91875814958, - -185611.65728113687, - -189084.9074632962, - -187484.60913141377, - -186793.02846859442, - -186643.42136934042, - -187063.1911515589, - -188748.28453514946, - -188439.97049711825, - -187368.1489177038, - -185263.2297970409, - -185482.56088321618, - -185326.3459551552, - -185673.3450969795, - -185642.18789406322, - -186143.89671308498, - -186797.5306394901, - -186312.18585102723, - -185867.34727359438, - -186375.3612237879, - -187561.3991996525, - -187194.3312948634, - -185589.1946310685, - -186662.39995437322, - -186235.288447879, - -186405.03105329376, - -186892.55000415185, - -187294.12286925653, - -186270.0295100747, - -186078.48063323216, - -186075.9211697261, - -185912.47186195152, - -185961.2957648515, - -186232.2255226064, - -185912.22434019603, - -185580.70430677492, - -185946.11501890482, - -187393.59499414876, - -187309.87049034002, - -187472.30498547002, - -188817.03562402542, - -187333.3919005783, - -187868.89767386837, - -186633.25689314547, - -185460.96898446843, - -185628.17632635156, - -186311.45221873518, - -187196.24604930566, - -187276.60266658547, - -186565.47062728266, - -187852.313928534, - -187557.78543535888, - -187719.1913994157, - -187972.83650257328, - -187960.29676871523, - -187911.10264278692, - -188630.8453506235, - -187496.3832271789, - -188349.65680053786, - -185809.88961724282, - -186934.3360415499, - -187629.56098631225, - -187007.5772303797, - -187291.49824795782, - -186121.19306263936, - -187012.46365318543, - -186679.30936474973, - -185419.46969980895, - -185379.2656174194, - -186901.45563588393, - -187807.15683063408, - -187994.28122602464, - -187308.64998441696, - -188350.75252464804, - -186863.31396841115, - -187720.11017674877, - -187287.84841348106, - -187014.84911061524, - -187234.71318697152, - -187204.27240844848, - -187291.09671769937, - -187094.25690049428, - -187609.4187582251, - -187718.59193484212, - -186509.34289278075, - -188147.50652534553, - -186342.25549461835, - -186442.0690847481, - -186558.77337581848, - -186655.24842534095, - -185972.4842459763, - -185153.37826635112, - -185765.32519087984, - -185186.70637920234, - -185070.59019309614, - -187673.30496193952, - -187761.64483234545, - -187256.5867709403, - -187366.18291352072, - -187524.54517428228, - -187510.56934074408, - -187529.40680193529, - -187454.64105987392, - -187519.31181360115, - -187123.06288107514, - -187477.63157623674, - -187257.24688779732, - -186882.32732606877, - -185744.03743667188, - -185647.84002902228, - -186969.98767638186, - -185902.72286645, - -187303.182190925, - -188126.80564361744, - -187360.58931040493, - -186921.38953855107, - -186929.557108324, - -187311.67435395776, - -187395.2983959365, - -187080.93819916193, - -186222.8395883536, - -187442.89148744586, - -188140.00051928166, - -188151.46145141035, - -187564.53232755137, - -188215.09477527425, - -187376.35249447948, - -188189.81482384, - -188034.83047066652, - -187747.06924668472, - -188800.80256482895, - -187102.12973368363, - -187917.99657074743, - -185057.76047148168, - -186486.71688355424, - -185130.529001914, - -185147.71919034136, - -187135.60577403157, - -187646.46474410285, - -185284.9406615433, - -186286.42140426437, - -186595.59491334032, - -187638.170551301, - -186478.24245183423, - -187993.35866484616, - -187229.13331112568, - -187938.08243107222, - -186825.88912431858, - -186708.8994492446, - -187164.0688469574, - -187461.08290298193, - -187221.3523749667, - -186992.1811585919, - -187142.28778417234, - -187056.31471454934, - -186746.17776224224, - -187434.38846414318, - -187826.61084050385, - -187003.93902302586, - -187742.596093895, - -185540.26300420432, - -185199.27035351453, - -186980.8144633269, - -186369.47424236263, - -184908.1166309739, - -184198.70078145587, - -186439.9649841702, - -185019.88314560454, - -187639.15760068822, - -186765.58714734673, - -187686.9419411423, - -187048.28032769196, - -186794.89125618731, - -186822.41511138683, - -187563.39014736656, - -187385.0923661435, - -186888.21059285887, - -185829.80948671233, - -187041.9723647092, - -185125.23152722794, - -187095.6197581376, - -185897.53117830772, - -185769.0972955552, - -186826.48542049516, - -185756.5836062822, - -186973.73232271746, - -185101.1509899331, - -186015.29034764567, - -186628.54466062496, - -185868.99053592625, - -185892.3867642372, - -185982.92772953527, - -186563.35158898422, - -186333.64344871804, - -188137.57555694113, - -186649.44372244837, - -185398.36138060363, - -186628.42409363462, - -185328.69791728977, - -185645.35316113118, - -185190.4973312962, - -184810.0609463012, - -185673.16887228226, - -184555.20493347468, - -186603.54049738206, - -185000.47819436324, - -185769.4575393162, - -185778.33475206984, - -185864.6939073649, - -185242.38515533158, - -185902.13729941534, - -184710.20690531647, - -186336.77161351635, - -186119.94401614703, - -185893.69281000222, - -187563.04088038372, - -186983.54442722624, - -187703.92647279546, - -185743.6029551579, - -185968.90039689335, - -186108.22088459652, - -186089.89882082163, - -185308.25354167318, - -186216.4074492947, - -186691.95573974657, - -186418.54900034756, - -184684.6304903929, - -186003.21438929535, - -186109.56426562366, - -186120.97182205616, - -186324.3395864327, - -186722.7974234636, - -140718.26168474945, - -162271.2627223581, - -186085.13248614842, - -186068.28536481576, - -185427.49168366197, - -184985.73631769797, - -184766.12089212818, - -185693.59243815514, - -186460.20786475393, - -186037.59716773787, - -185450.5833065486, - -185396.0966615638, - -185276.4054007422, - -184847.09039631113, - -184823.61753243406, - -184778.45025064657, - -185109.39166642443, - -185556.4843562863, - -186719.88216859457, - -186773.59087394056, - -186505.48261010222, - -187516.20202739417, - -188001.86892294977, - -186684.80121130878, - -184705.8070100957, - -184864.84138353547, - -184566.07730183762, - -186337.80196089507, - -185906.65861356055, - -186150.906960568, - -186089.31929989046, - -186474.6235265719, - -186468.51753357225, - -186122.9165758566, - -186174.69969704037, - -187820.43378501857, - -186775.64544110073, - -185619.5302422243, - -185704.2175677414, - -185937.20459336432, - -185523.5880471388, - -185073.60125989263, - -185681.62401491503, - -185755.25804511458, - -185742.32278142963, - -185812.36978806616, - -186839.17366214117, - -185460.24572993352, - -185767.89203574616, - -185411.53656573629, - -186079.66390792772, - -185233.48683497915, - -184948.90466462815, - -185247.7806087925, - -186549.85209355422, - -186917.39214776302, - -186657.063249416, - -186137.98831876533, - -187630.12975349987, - -187687.3081902085, - -187525.68775441864, - -187326.55715253745, - -189245.3547860996, - -184795.0131029055, - -184934.10299478343, - -184595.03593603414, - -185557.18603881687, - -184826.82895671725, - -185703.95718490216, - -185294.42224015918, - -185575.41563245628, - -185794.81985080332, - -186172.60986329245, - -185661.8516968439, - -185638.24577050543, - -185965.40347835567, - -186004.1374210784, - -185781.3584731582, - -185664.76866772544, - -185815.6127283012, - -184723.17471127305, - -186009.95200031195, - -186195.38531040744, - -185753.05619845918, - -185703.19314166557, - -186594.9114183287, - -185580.15593113314, - -185541.68129385356, - -186549.16628896404, - -185479.2357860194, - -184578.21753488245, - -184618.35740420443, - -184441.46870504398, - -184568.61994464282, - -184661.85928366336, - -184523.38966404533, - -185717.16624584142, - -185483.3295420938, - -186417.94305405728, - -186246.51492087843, - -184845.9682979859, - -184540.75647463603, - -184666.37763325783, - -185185.18619115572, - -186199.38823877013, - -184507.9099237428, - -187003.43820973596, - -186545.16136884323, - -186951.0722009215, - -186588.34259437467, - -185936.8747686248, - -186443.85498753583, - -186141.55895141896, - -186647.18276851127, - -185889.87833542484, - -184523.06400318502, - -185073.57268297486, - -185077.8905521608, - -184685.0000328583, - -187192.2975120381, - -187002.80523749278, - -187003.69318072736, - -186907.3329708996, - -187388.2617066739, - -186950.9060841143, - -187426.40772893745, - -188015.87833895627, - -187456.03533027926, - -186718.14847004472, - -187192.52823779927, - -187430.84477593255, - -188090.9736323963, - -187057.4226896695, - -187299.00679136443, - -187898.09108993356, - -187800.71024494842, - -187578.7945424208, - -187852.2157456399, - -188445.4527261622, - -187821.0464781729, - -187538.8698057885, - -187904.2446480533, - -187707.84632557898, - -187515.5351218408, - -187294.31909113945, - -188304.55925484645, - -186927.86579355603, - -187675.71540639747, - -187132.18270199542, - -186661.11383538053, - -187238.4395913106, - -186711.99171266862, - -187274.8884360902, - -187605.70324073057, - -187459.62733920277, - -187350.64454981094, - -187987.25877007708, - -187340.14536462337, - -188133.99953381368, - -187908.8502698971, - -187974.06713440962, - -188174.96094340537, - -187654.68501915902, - -187919.67545603745, - -188033.5893052449, - -187179.74870279036, - -187958.6837154068, - -187098.08472081405, - -187817.05963383534, - -187227.08326375764, - -187840.08914857774, - -187243.47707715337, - -187358.05164964797, - -187870.53601201336, - -187247.9917175175, - -187825.62181611278, - -187383.08957187168, - -186137.40837100832, - -187368.8604475479, - -186975.18042715648, - -187218.33649070092, - -187115.92005878876, - -188577.08388106618, - -185632.1535476023, - -185003.46048722725, - -186782.64173592345, - -187389.2021586, - -188364.15112362726, - -188088.5917691664, - -187984.06459012086, - -188713.3588507996, - -188624.00866552212, - -188363.5387691212, - -187634.18143546607, - -186777.46669602653, - -186820.56521939114, - -186867.77653250156, - -186618.4433734245, - -187699.43272561228, - -185956.04238149663, - -185637.3755433982, - -185160.1993215984, - -187466.71062113094, - -188115.28176793884, - -187716.48506167036, - -188144.50874112692, - -187644.81497540837, - -187452.13970792587, - -187779.38447152777, - -187503.58157137837, - -187819.7552003765, - -187727.83570354496, - -187950.17000928946, - -187918.25825739285, - -188059.71110303834, - -188071.01532488095, - -188007.70634351147, - -188127.41684105122, - -188138.2687240919, - -187963.5766486151, - -188544.97753253547, - -187850.79133717477, - -188029.4838038799, - -187927.5772533455, - -188053.78221453892, - -187985.91644521983, - -188319.77932730978, - -188058.86903379706, - -187950.90711760413, - -188156.86956179672, - -188229.6880717756, - -187953.60593885268, - -188484.82353855815, - -188095.58751833517, - -187872.1074932044, - -187955.31108521658, - -188110.34340208996, - -188020.26106810436, - -188084.40086565504, - -188071.6303022562, - -188480.56911294378, - -189671.69440695026, - -189769.90898797516, - -190284.9707253069, - -188031.62889293503, - -186743.00019037828, - -188003.55552109788, - -188363.56661918454, - -187746.85639765018, - -188346.87533387216, - -187903.51839239706, - -188043.9321563204, - -188112.71027176845, - -188550.03414205718, - -189449.1232264199, - -189768.43355961813, - -188740.94405652286, - -189567.65591494428, - -188309.81027713025, - -188392.79233416848, - -189319.79863515618, - -189378.6089809849, - -189178.14899455837, - -188386.42729721224, - -189445.19176040665, - -187087.48998708234, - -188826.42779028194, - -188553.87487120138, - -187941.06540326262, - -189771.93099297164, - -188529.93400312582, - -189358.06753687156, - -188609.42242236514, - -188787.1864357604, - -188843.1765843312, - -188754.528514879, - -188094.74107414478, - -188088.6155039975, - -188060.38234672905, - -188067.26794690712, - -187621.21847052537, - -188157.58246492682, - -188516.84498886167, - -187915.12744256484, - -188443.7578148925, - -188116.10771085072, - -187264.47609357847, - -188176.21031836848, - -188170.57903762278, - -188294.6644996429, - -188036.63953174325, - -188101.5543653428, - -188248.6764013949, - -188319.83415129757, - -188097.50692052435, - -188134.4762723594, - -188272.49029985358, - -188206.77019901376, - -188508.96860365788, - -188262.8988252888, - -187569.11179548127, - -186292.02017205243, - -187472.02889830602, - -187099.9147383517, - -186900.76235636437, - -188027.44881588852, - -188432.67762655424, - -188121.5471579039, - -188432.80628645205, - -187926.7782463939, - -189762.7876085155, - -189266.35842376057, - -186732.12278519588, - -188614.55061231283, - -188647.95316923055, - -187592.5524397363, - -188932.9501046265, - -188606.43169921683, - -188170.21924476055, - -188549.55255864532, - -187962.6323277363, - -187191.96052360526, - -186920.5220397891, - -186786.62616005604, - -186385.05781979268, - -188061.28832562154, - -187390.1456922822, - -188062.07603085358, - -188037.6869183598, - -188212.0229575658, - -187930.06229443732, - -188090.36866231312, - -188036.00538210757, - -188133.31477841723, - -188173.70843883988, - -187844.47640926004, - -187872.30401330232, - -187796.24083019167, - -187732.98575521674, - -187983.71489758827, - -188083.6875223691, - -187897.73274734168, - -188059.30925306716, - -189142.09064355088, - -188583.01081795827, - -187487.7635363833, - -189713.64541984547, - -189555.82412272718, - -189852.59554859076, - -189218.8087403817, - -190167.76777641778, - -189645.6152674434, - -188532.9554546275, - -189523.58352465904, - -189343.14144035138, - -188235.48072958956, - -188180.02447286362, - -188078.15933603563, - -187990.69685232927, - -188502.1043309098, - -188206.01901300566, - -188368.05619089317, - -187629.39631769145, - -187643.6924245978, - -187638.51851489613, - -187804.318709099, - -188499.9137700682, - -188417.0795439115, - -188684.44500197342, - -188616.47166411072, - -189238.12878373484, - -187745.42964825404, - -187642.84655158204, - -188287.79217814526, - -188549.32629648288, - -188250.077786393, - -188161.7726015361, - -187116.7595416007, - -187821.31284373655, - -187704.11156844525, - -188196.3093746599, - -188512.43706494468, - -188433.12753228875, - -188585.6524637753, - -188822.05132961101, - -186793.18125099468, - -186923.0724992906, - -186493.55860467892, - -188693.43620027843, - -188728.28837500748, - -188981.19486242285, - -188119.03297787975, - -188810.88834411, - -188363.9646618443, - -188079.80446299998, - -187735.6429592813, - -186579.71684840842, - -186734.72800259737, - -187909.24698119418, - -186382.6521426854, - -185961.70758748136, - -185946.98023837636, - -188918.83080252886, - -188826.34262922048, - -187359.95937813746, - -186689.23541046176, - -187016.51462670026, - -187205.7558130452, - -186884.1274436682, - -184253.32763020493, - -186104.54831179176, - -186046.42225495278, - -186037.93743685633, - -187612.97215401544, - -188052.32690400552, - -187910.51665730815, - -187778.44937962503, - -187882.8114859411, - -186814.5954261676, - -187233.7119709426, - -188083.10323281528, - -187171.2549893913, - -187396.43681444638, - -186753.4893091006, - -186948.59777146435, - -185706.60147189337, - -187916.63879302575, - -187328.97058315662, - -187271.98186820754, - -187263.8658911728, - -186657.7218807427, - -188362.04736375934, - -183620.7015398458, - -182951.77725421966, - -184276.46905717737, - -187376.8038531828, - -186841.4017466797, - -188158.73371046473, - -186840.44087714233, - -187625.99468709566, - -186431.27519216418, - -186083.5663938709, - -185755.0131330002, - -188153.623631181, - -187630.0455403068, - -188058.85243110455, - -187399.22964852274, - -187360.02800482418, - -187257.6129123713, - -186458.84249070814, - -187153.83483170177, - -186828.08396658566, - -185480.2185366004, - -188910.8076400013, - -188288.38165867908, - -188232.25279280051, - -187620.16897113936, - -188200.78220052563, - -187962.65268429814, - -187980.56614154446, - -187505.77792284868, - -187993.10500323906, - -188057.23331354433, - -186724.68573885344, - -188580.3548192478, - -188339.98244601142, - -179018.64596522425, - -170265.1251636849, - -180731.45597962325, - -178274.85226883533, - -182297.66613175042, - -178392.8789808, - -188316.36771212667, - -186656.42396019315, - -187822.9358747536, - -185715.21113775368, - -185841.86069840766, - -185606.18370621337, - -185745.05148061714, - -184765.73067528612, - -185826.80959253322, - -185805.15630328484, - -185880.6665128765, - -183430.55483779273, - -185519.05918496437, - -185720.05400911724, - -185249.63622188903, - -186055.02259865488, - -185753.54811495807, - -186091.85862784483, - -186095.0815121383, - -187638.04666398917, - -187894.2559948564, - -187763.07589632823, - -188155.95470557085, - -186739.78539095962, - -183895.39726926797, - -186077.7694141048, - -187374.96766820594, - -186600.31501724018, - -187746.2614260409, - -187575.0666518512, - -185615.21357472814, - -186386.17022089174, - -184792.31269895128, - -185297.15959925592, - -185376.32218916347, - -185934.3441057752, - -184719.8977207577, - -184203.63035864593, - -186271.3613223738, - -186024.0766929756, - -185603.29490146937, - -185753.06204734184, - -186330.77970776754, - -185276.91448933058, - -185442.92204935086, - -185153.81686134142, - -184350.70827119582, - -186324.1665531549, - -185279.59438908967, - -187693.57844067938, - -185737.7766019711, - -188111.50245778877, - -181117.95796056575, - -183944.29790406587, - -184501.03914673053, - -183887.24713882807, - -184797.30489013533, - -186552.6186504858, - -186153.74538117443, - -187278.66842823187, - -185447.3850337414, - -184333.46569932284, - -183618.1198729144, - -183609.28082124022, - -183737.2037660667, - -183570.56269982722, - -183835.50636600342, - -182851.40614782678, - -181143.13730185444, - -179062.95290375294, - -183428.15224553086, - -186400.055894199, - -183195.36094988632, - -183346.4258055763, - -184867.16628209932, - -185096.76662262852, - -183295.14885534026, - -184940.4396921724, - -183472.72321986, - -183555.20809289117, - -183534.65675936858, - -183713.93448839104, - -185048.94065281202, - -185379.95492149531, - -183230.4928305493, - -183537.31132500691, - -185199.55957149496, - -184996.35720146328, - -183484.0643545454, - -183661.7612554338, - -183634.66754273794, - -183672.80728055543, - -183149.3117717627, - -183600.97574435148, - -185172.1130263042, - -184941.27866808354, - -184423.14627603424, - -185137.9260259597, - -183681.7632839864, - -183495.9303439195, - -183638.59508131372, - -183662.0610230205, - -183150.43565294353, - -184959.75297709103, - -184282.8223254371, - -185050.17746824646, - -183755.61016671095, - -184855.78706899192, - -184961.07542385507, - -184981.84743495082, - -183572.02000817447, - -185847.7897940973, - -185845.0713146115, - -183567.13168373698, - -184953.50462711358, - -183585.55352579142, - -183654.70526979078, - -183740.6927330769, - -183447.3736804631, - -183638.5415461372, - -183693.8098700191, - -183506.43875629295, - -183780.55988949482, - -183465.92369980083, - -183773.85682847694, - -184713.8079921453, - -184948.11561273, - -183774.6590119035, - -186310.16860214635, - -186301.94278822944, - -186163.99974887632, - -184581.99228433802, - -183482.81197479606, - -183599.0223072427, - -185523.21586449863, - -184220.87408888803, - -183336.9655582326, - -183417.25501227446, - -183574.8313324696, - -183568.94114048648, - -183561.13969966708, - -177310.94056187524, - -183771.57094333868, - -183717.71809073846, - -183314.90524811472, - -183562.4655226862, - -183700.7208882565, - -187944.64808898602, - -188144.68088985563, - -188001.67609114133, - -188590.2656368338, - -188650.31700513716, - -188108.82660797954, - -187817.81523305984, - -188174.91579203284, - -188075.2636711698, - -188835.70345149824, - -190313.9575153106, - -189099.75049063095, - -189095.71887327847, - -188914.75145452813, - -190032.7652732372, - -189938.6241563695, - -189234.69869927395, - -193457.45865985725, - -190806.68303526114, - -190793.21217436218, - -189559.22608543184, - -189665.89556126, - -190343.14623174802, - -189609.91441884363, - -189229.82297158477, - -189294.14527588105, - -189496.41348015732, - -189577.41239445566, - -189744.80163897088, - -189717.16898665222, - -189771.05744312212, - -189288.86354766923, - -189791.60417761785, - -189410.9334851875, - -189116.88474309855, - -189175.60345293803, - -189586.963087114, - -189188.60469326557, - -188162.64085287615, - -189548.11338182713, - -189105.4292626352, - -188962.863330971, - -188860.5081701973, - -189022.6764695094, - -188934.8216489112, - -189023.35265461885, - -189224.35755215236, - -188984.99469066437, - -188693.81198834366, - -188415.0669334945, - -189349.87620961215, - -188810.17734219952, - -188944.92574917976, - -188941.78166669174, - -189742.2319582998, - -189965.4221631259, - -188669.11521163365, - -188707.0214085327, - -188855.1713664295, - -188374.52176348033, - -188046.43068903935, - -188584.11655148058, - -188921.07600126017, - -188465.50594804902, - -188569.56315973715, - -188491.91213643632, - -188423.88162786607, - -189249.9264656677, - -188453.23945302286, - -188248.20895894684, - -189083.05589016425, - -188881.18116724692, - -188752.26508317536, - -190353.63610682223, - -190199.30352442525, - -190284.40860835864, - -190512.74405530427, - -190567.27156873213, - -190521.19493654618, - -189462.78633118852, - -189495.0923323141, - -189822.36786467835, - -190528.4811711618, - -190459.28418449903, - -190549.83564310966, - -190108.53169201384, - -189701.9396398646, - -190261.65948142193, - -189812.65902349033, - -192729.44916755898, - -189998.17792497025, - -189950.47607682366, - -190422.55995988214, - -189475.00799780615, - -189539.44815716433, - -190286.8293532656, - -190510.04082654967, - -188268.17237905652, - -189701.77739699613, - -190449.5219220677, - -190479.13829348728, - -190341.1859679305, - -190214.86655576224, - -190470.3866958542, - -190475.05501335283, - -188662.78581283378, - -187110.75257883506, - -188712.68604789645, - -188167.60811296935, - -188373.3539402033, - -189054.24101899815, - -188703.7958482956, - -188700.76734194253, - -189058.78733204654, - -185748.77931932142, - -189240.3648502884, - -186570.1920070612, - -188094.559535361, - -188053.27718974993, - -187904.5551047629, - -188714.47848400145, - -188749.09654230482, - -189030.03347002508, - -188623.43984532243, - -188960.00928668556, - -189443.79748188236, - -189307.17775457742, - -189613.4274864384, - -189068.79735651254, - -190220.04026000245, - -189448.3993228098, - -190206.09219721612, - -190341.17256340745, - -189867.23809450684, - -189861.2742767397, - -190227.47044230253, - -190186.66872072185, - -190191.87720016416, - -190085.2874754612, - -190232.32595297435, - -190184.90518216093, - -190623.42617965583, - -190772.98680974997, - -189014.93254325056, - -190242.87904319484, - -190489.49488075302, - -189279.31349246096, - -189028.54304697987, - -189972.24185554104, - -190133.02174061345, - -190152.09510136288, - -189802.5411068607, - -189342.87589914515, - -190335.55788041826, - -190558.09229834663, - -190348.92129023964, - -189476.29985464577, - -190078.20561894446, - -189953.83628432205, - -190120.31875176344, - -190159.9606195649, - -190036.82480240372, - -190207.22081163406, - -189987.67952550904, - -190139.95443899676, - -188283.400572689, - -190271.7928245326, - -189841.04040744825, - -190391.556711525, - -190159.25461435507, - -190150.01777997345, - -190050.76105059695, - -190016.05202348984, - -189455.41921722554, - -189892.92226832564, - -189938.28533320257, - -189852.04204695, - -189837.30541417195, - -190073.05198879744, - -189679.96140830184, - -188518.20269654013, - -189732.0774427512, - -190060.64739146762, - -189906.78269750674, - -189977.09666591295, - -189869.86826830884, - -189967.10530352197, - -189429.90513536637, - -189921.33171368486, - -188696.9637922992, - -190157.63685626572, - -189800.8794266506, - -188719.43960811262, - -189850.42517754433, - -189820.92311716045, - -190176.96097381625, - -191159.10117676161, - -189695.89297456868, - -190189.18840931443, - -189757.3945082938, - -189995.43347064062, - -189420.0485446386, - -190029.46210824672, - -190125.23168976346, - -189369.10856700627, - -190229.02945436694, - -189495.16633347023, - -189698.1761276448, - -189295.9917839161, - -190114.3473213471, - -189727.13611083344, - -189783.65631678217, - -190368.81587279582, - -189901.64680176062, - -190316.76887405966, - -189011.07707289694, - -189795.9680877463, - -189399.04279996626, - -189460.44281266938, - -188004.39552825585, - -188391.67478690643, - -188975.4648828089, - -189027.84875586937, - -188894.1604885968, - -188258.98268007717, - -189054.1850300602, - -189173.28782093368, - -188857.1383443916, - -189144.62965207951, - -188904.83506058183, - -189366.89830297738, - -187142.83156573743, - -188470.49516960207, - -188152.2857732802, - -188538.57571479923, - -188128.65301616665, - -187927.6227750181, - -188172.07424796064, - -188187.0305086857, - -188198.6549685184, - -188215.8464237905, - -188334.1310395238, - -188242.85548355136, - -188084.27012681955, - -187513.15206802913, - -188318.52134241172, - -188494.86160857437, - -188963.12094415203, - -187905.26212099823, - -188527.56986848032, - -188265.23932553243, - -189971.44220929153, - -189133.4623975504, - -188909.62841382276, - -188807.4004644322, - -189821.2312186076, - -189278.69115591797, - -189451.86192620388, - -189265.49060988644, - -190349.61880493132, - -188273.88722517353, - -189167.452960464, - -188204.88501110626, - -188051.1449940405, - -187943.6909840044, - -188101.04549079717, - -187914.7483476306, - -196054.36698636063, - -190713.34611914298, - -190997.92481924436, - -190575.84463553302, - -190467.1990688694, - -190337.43065788288, - -190699.1670419356, - -190568.56008858563, - -190832.90541128814, - -190622.68743332793, - -191792.811774679, - -190689.0572112892, - -190554.549981457, - -190851.29303480033, - -190792.2009981391, - -185674.83275462306, - -185395.53641607144, - -185357.74506053058, - -186040.44887473437, - -186246.95216782618, - -191372.67854098132, - -188837.46529610577, - -187692.98713641445, - -188216.9357266321, - -189035.7518822911, - -188123.85049620818, - -188174.51164152424, - -188360.45872868263, - -187920.04303128363, - -187843.0478644709, - -189252.1261607356, - -188964.9295065745, - -188317.85419149252, - -188304.15480666218, - -188212.56287800474, - -188267.7210327238, - -188211.52410601077, - -188021.5412306319, - -187777.82929663642, - -188092.54169536094, - -187796.6542157994, - -187635.59468253268, - -188033.40789813793, - -188033.5726857013, - -188191.56577066958, - -188064.2405154846, - -187977.02349488987, - -188150.9408505529, - -188399.31508879495, - -188388.79423971399, - -188200.68466137044, - -188105.61118723254, - -188197.26080880096, - -187963.81710303735, - -188081.06831320774, - -188298.1446142359, - -187780.86450984897, - -187560.81205794794, - -187479.24127132312, - -188832.74568101848, - -188271.2574905656, - -188098.9031617914, - -187978.67714400974, - -189036.270514249, - -188358.16456153046, - -188322.21295005153, - -188793.71858353209, - -188463.8027867851, - -188420.56292882576, - -188527.54012336218, - -188470.12706697625, - -188237.94842374895, - -188152.7059567754, - -188376.19538272417, - -188383.6321563408, - -188362.64506112947, - -188229.32312055898, - -186682.89867719274, - -185974.23479730866, - -187407.3972483268, - -188267.12675957533, - -188060.29551175452, - -188704.9483600274, - -188229.5695177689, - -188060.74338207667, - -188009.8309550313, - -188016.12153162181, - -188409.31602683378, - -188494.15449793098, - -189216.5389337516, - -189096.8745649052, - -189395.759421411, - -188314.0618063977, - -188061.6228223648, - -188377.0181492975, - -188192.37099960947, - -187758.18487713882, - -187787.2879845593, - -187572.14078191516, - -187741.49763673818, - -187964.39443212652, - -189643.33025442102, - -189290.1565425291, - -188953.4021090192, - -188803.40271635444, - -188917.24105575786, - -188940.71322085857, - -188810.26221157002, - -188831.5695149495, - -188904.68010216823, - -189135.25543499572, - -189523.5420746396, - -188139.9439583329, - -189020.66022475137, - -187947.31400414582, - -187672.10042218023, - -188053.95244611433, - -187619.73016237066, - -187911.62808368597, - -187842.24023419546, - -188387.07160945956, - -189016.05459049373, - -188302.98266526288, - -188485.53190433834, - -187252.96696407747, - -188056.2157138019, - -188150.01873431922, - -188407.83621514795, - -188351.8861077988, - -189581.91550554175, - -187744.01854014478, - -187770.73014403923, - -188103.182578579, - -190304.48024467833, - -190260.53457260315, - -189251.39154025816, - -187845.25254911988, - -186176.69143772183, - -190605.68260414473, - -189416.02083849843, - -188966.40362309, - -189104.16659807847, - -187252.2711895733, - -188769.20753909196, - -187699.42874421572, - -187938.3617763031, - -187668.34843839586, - -187987.33055419096, - -188319.47292758749, - -187952.69828486128, - -187276.75570563087, - -187999.3435431426, - -188054.9089034451, - -188032.08428389157, - -188416.8042440556, - -188828.710009183, - -188269.90433919505, - -188242.81984720996, - -188483.53884869776, - -188770.96011071018, - -189749.7370829404, - -189155.7502287397, - -190823.13696070746, - -188948.92747001626, - -188207.51154255582, - -188151.91592219454, - -188673.74140925996, - -188660.2868009395, - -188503.80500650342, - -188559.77245373707, - -188683.6155536947, - -188559.65786072984, - -188703.13655352002, - -188678.94430401377, - -188594.7332906974, - -188597.86898873816, - -188784.85977225626, - -188110.75597498723, - -188436.68427228258, - -188666.33131441893, - -188697.64814490697, - -188522.7178033711, - -188633.79406085494, - -188704.29316380754, - -188768.03900527532, - -188625.4650503576, - -188663.50134786894, - -188576.25334950717, - -188546.52938657982, - -188680.8371036378, - -188805.0846516448, - -188653.17628520753, - -188615.03355433713, - -188576.64321319025, - -188543.81262086015, - -188746.69889344645, - -188557.72678403923, - -188622.1971911336, - -188724.273258034, - -188591.78355342403, - -188719.5694194747, - -188667.04054954412, - -188808.08020128132, - -188712.82334732497, - -188975.56691510486, - -188897.3534894631, - -189012.75722465824, - -188763.96608211353, - -188826.95475208154, - -189056.37183016262, - -188733.08499490118, - -188884.35784682204, - -188923.87712194747, - -188827.94721139214, - -188942.5889835721, - -189037.6870663065, - -188623.1088186007, - -188630.3623548485, - -188568.1259673801, - -188676.2507110918, - -188589.14408862978, - -188687.45937910295, - -188769.61503198964, - -188743.1925249904, - -188702.17631953134, - -188892.4296175113, - -188871.28023278288, - -188960.78352074078, - -188925.94534825796, - -189348.888529151, - -189134.70326334922, - -188803.00117738845, - -188400.57408980286, - -189494.27256320094, - -189494.669002662, - -188464.4232397707, - -189444.3391194114, - -188380.47926556104, - -189438.34123469607, - -189310.50792805894, - -189488.46596010172, - -189426.87979329927, - -189586.8077498066, - -189284.25409000844, - -189405.0179354977, - -189595.86153925897, - -189491.39036375418, - -189450.22093055537, - -189366.62556285493, - -189420.95028154456, - -189509.033593287, - -189381.96275634642, - -189358.25597996314, - -189494.6588455454, - -189194.10726443038, - -188271.78250397014, - -188273.26012712086, - -190521.2400356172, - -190413.05752745614, - -188862.76391626216, - -185957.65696246203, - -185990.46390386543, - -186100.70125635862, - -186136.39515892777, - -186063.24649127686, - -186158.66764463554, - -186027.24243721232, - -185969.5551713951, - -190174.9869209733, - -190118.41545021316, - -189010.31738089523, - -189096.92767447614, - -189088.20919571148, - -188643.99249474678, - -188789.6318585568, - -188728.21494301723, - -188798.92556122373, - -188681.77895953055, - -189106.93268454904, - -188985.67716669387, - -189083.74907014464, - -189034.3523839353, - -189070.57417476588, - -188944.9246191758, - -188715.9153769697, - -188792.5694624717, - -188829.59277746026, - -188787.0559469269, - -188832.644629355, - -188893.3636019686, - -189024.7196291646, - -188931.01739686544, - -188992.60798038464, - -188786.67166992926, - -188768.90565244108, - -188987.2406986813, - -189387.98129267173, - -190019.26883211517, - -189683.14190918353, - -190250.02249989784, - -190184.28794756005, - -190334.92104710214, - -190227.51000102313, - -190214.5507397167, - -190336.85293178275, - -190315.78757937052, - -190229.20612766882, - -190376.56365282947, - -190252.19031956058, - -190372.41721262314, - -190175.9980453131, - -190196.75542956498, - -190330.29195060174, - -190280.94568584106, - -190372.3529320626, - -190144.17286399158, - -190358.37515399588, - -190261.2951521144, - -190258.94393558401, - -190343.78487558663, - -190093.6069125597, - -190354.39138039862, - -190419.4463532059, - -190288.23089259406, - -190287.70189460894, - -190158.71584807578, - -190258.29925374908, - -190406.92526713447, - -190261.7743970526, - -190326.05142614365, - -190246.38834175895, - -190234.3407794005, - -190432.26490839137, - -190449.01554506307, - -190445.47329877305, - -190397.00213190346, - -190436.49551094466, - -190329.9090910193, - -190176.58844461074, - -190185.0129986195, - -190319.62726571024, - -190380.03821897434, - -190380.20377129066, - -190527.71254484492, - -190402.6065213973, - -190396.1507821608, - -188508.64502421487, - -188373.82014025023, - -188525.07051299908, - -190602.43193520122, - -190477.02262630573, - -190497.50243899124, - -190507.3624830313, - -190319.38168120995, - -190086.87822393788, - -190195.18659925292, - -190070.15156129468, - -190036.51444069666, - -190088.81970409834, - -190349.0282488827, - -190200.62285130544, - -190379.40568476502, - -188377.52767298502, - -187244.75892812965, - -189007.3182361304, - -189723.1780505297, - -188481.01875659585, - -188764.76002792385, - -188863.03271685718, - -188110.80230950654, - -188181.00690298795, - -189435.46040436602, - -188159.78667876072, - -187941.68434362026, - -189015.5867901485, - -189052.9801668156, - -189396.0871583986, - -189683.05697258093, - -189409.2260516907, - -189439.9733840662, - -189401.0210279784, - -189282.9730672559, - -190115.60913893284, - -190091.65704194506, - -187280.45758218758, - -187657.0868990739, - -187294.66785273908, - -187593.51605149044, - -187826.2030626212, - -187253.22086252828, - -187838.97430345853, - -186059.42223972696, - -187069.10866048117, - -186020.01516353776, - -186167.96323356603, - -185830.27369723277, - -186139.2890092994, - -186028.00291916684, - -186072.80462440735, - -186073.64805899287, - -186256.82357831844, - -186116.13245522184, - -186208.95519545348, - -185984.68461957408, - -185859.09413820013, - -186159.51025188196, - -186212.2138273194, - -186182.3557491331, - -186125.66409048735, - -186038.40488502107, - -186259.63674592567, - -185992.00901628408, - -186136.2932766661, - -186132.35139380593, - -185546.13442974273, - -182375.64393582716, - -180981.68034472206, - -181095.7750693586, - -180956.24287219153, - -181055.72889509232, - -180971.66262991235, - -181103.82390677792, - -180856.3444427169, - -181027.36139741706, - -181014.3774171897, - -181055.71069809987, - -180483.06895315493, - -181003.4669040212, - -180860.4464633114, - -180883.5634329601, - -180645.55305481135, - -181000.74178986548, - -180859.9033050692, - -181109.60549286046, - -180857.2624911139, - -180693.93543625306, - -180950.90008469622, - -180644.74425556677, - -180816.44841554252, - -180899.0659939188, - -180934.99464384676, - -180922.29353936965, - -180836.35446086427, - -180930.33913835726, - -180961.20970378348, - -180980.2431356487, - -180856.61342199767, - -180940.29061880347, - -180760.91174181836, - -180749.25128466066, - -181057.43394242367, - -180915.60853348157, - -181022.60295219658, - -180760.43292094907, - -180930.63629617327, - -180790.79912130247, - -180790.12967571538, - -180770.08680043777, - -180895.6079582836, - -182500.3541675079, - -180919.3086735656, - -181036.922135391, - -180965.05714948726, - -181005.31086173875, - -180833.16313540837, - -180865.4739387523, - -180941.22674653959, - -180796.98622865067, - -180982.980792712, - -180847.98245056724, - -180731.69982497985, - -180767.91322810465, - -180877.2467033272, - -180942.63023700894, - -181074.2378637336, - -180878.08804388047, - -180982.42159108724, - -180784.02805332895, - -180793.9452787914, - -180850.14722552363, - -180806.83721622013, - -180872.98920041963, - -181147.33042965268, - -180799.9448917058, - -181118.08832692527, - -181081.7854884219, - -180933.6802728505, - -180816.67641035892, - -181086.78490923072, - -181037.9608102749, - -180961.97956935398, - -181055.70113727966, - -181000.43335822207, - -180955.18824098646, - -180864.974251134, - -180816.74539395078, - -181017.48978564248, - -180815.58662766116, - -180979.2774002467, - -180817.95846380026, - -180951.85047681318, - -180998.6529277414, - -180818.362485989, - -180952.8305869637, - -181063.81311585428, - -180978.12741341253, - -181174.16068990272, - -180807.44752380773, - -181040.72061494735, - -181124.00797680276, - -180693.07367266295, - -180849.66492172444, - -181038.77982030425, - -180866.03192510043, - -180802.60512019158, - -180884.46822946193, - -181085.0475399574, - -180885.35410085504, - -180682.23348761175, - -182349.5203372696, - -180829.35338506385, - -180772.89414994261, - -180902.09446094595, - -181088.72622956135, - -180979.71642093264, - -180906.37555946645, - -180800.75053366087, - -181032.55784956415, - -180814.39982887727, - -181151.42664541173, - -180909.5080121125, - -180874.23530896136, - -181046.12498304193, - -180902.05740752866, - -180979.8305139395, - -180942.5656738371, - -181009.25962476918, - -180840.1924708878, - -180954.36046807666, - -180971.1592968529, - -180955.97843386928, - -180845.49734652886, - -180782.61663522222, - -180977.97821798053, - -180805.36420278228, - -181008.98951493762, - -180921.56836434823, - -180733.23203660635, - -180840.91362221594, - -180846.30159686066, - -180921.34721748272, - -180890.0599080562, - -182676.7358918651, - -180827.27270966407, - -181056.0199827383, - -180953.8962335581, - -180903.6230717887, - -180838.40407558414, - -181085.7272340573, - -180920.01237244508, - -180905.59164138784, - -180923.9778191495, - -180865.5820644942, - -182681.0939370604, - -182702.51404425295, - -180920.8157314833, - -181039.35587087716, - -183731.0180707013, - -182912.50270388843, - -180889.63746378856, - -180854.80162700024, - -181150.7372652002, - -180794.46154850945, - -180874.26283479307, - -182692.2164033097, - -180908.3417528071, - -181156.28215987323, - -181019.92164544453, - -180891.2196782332, - -180864.55024704066, - -181087.9224563914, - -180598.0324521481, - -180766.12844487367, - -180843.31390089897, - -181009.6469005663, - -180891.02760663966, - -180890.58763282228, - -181059.05318853393, - -180883.05522412164, - -180866.175526346, - -181013.26936406048, - -180831.20998369262, - -181000.12969199513, - -180663.24676979112, - -181001.3948196855, - -181066.46517229715, - -180986.56354695623, - -180982.7492550661, - -180904.92820655624, - -181047.36004751746, - -180826.66975384587, - -180933.08910412987, - -180947.11811288763, - -180927.51682069103, - -180788.40046317098, - -181125.4367547304, - -181111.51853973937, - -180866.26242476306, - -180845.77976677753, - -181012.6198653182, - -180816.30466392604, - -180776.81840438678, - -180983.91154391912, - -181029.40177410873, - -180924.33642821995, - -180888.00053592803, - -180784.3810535411, - -180940.07985755763, - -180912.97448882813, - -180774.27488770042, - -181155.23560476548, - -180850.22795461796, - -180665.2733775059, - -181084.78717029234, - -182664.5201322499, - -188488.99282933175, - -189758.00649856846, - -189586.79135574435, - -189302.4383048074, - -189374.42417451766, - -187982.45070004364, - -189089.35369326422, - -188925.52496602834, - -188370.88229638213, - -188729.27038410617, - -189191.95425247535, - -189211.766205052, - -189391.13611958042, - -189357.1682863563, - -190215.7200927027, - -190252.8451955415, - -189110.24543217203, - -190187.4679374674, - -190147.44410814112, - -189598.64690698453, - -190445.654871415, - -190457.27919916046, - -190458.9006702578, - -190418.83925539092, - -190623.3756107303, - -190222.22442778165, - -190308.76152925828, - -190090.6958227699, - -189967.96741669893, - -190301.12261888848, - -189341.87599347558, - -188837.66894077745, - -188806.57842336912, - -188808.00095179488, - -189519.04224358563, - -189512.23034253178, - -189194.5932670327, - -188987.2121565673, - -190034.38718702516, - -188886.19912193718, - -188422.8724618635, - -188573.66240306012, - -189304.51776225265, - -189225.2817407487, - -189263.00325982983, - -189205.2614891779, - -190017.75293635303, - -190076.61323075774, - -190047.0988279703, - -187765.20644688024, - -186613.3572771319, - -187732.08072021118, - -188072.6714608332, - -187993.50997306354, - -188006.68124746092, - -188446.68929684337, - -188193.71095951897, - -187981.29126473085, - -189080.87286406787, - -189159.68923024554, - -189299.45891005188, - -189152.4024345847, - -189091.09615257187, - -189307.52838490528, - -189202.98031500765, - -189253.1843586616, - -189271.38460107477, - -188700.71324391282, - -189006.7819687374, - -187905.2037860304, - -189018.02910981255, - -189330.11540368202, - -189848.0079827148, - -190443.65918131915, - -190427.55400195223, - -190483.02517647974, - -190362.86377164358, - -190395.61332685914, - -190394.52870872742, - -190479.97949248308, - -190467.0995479573, - -190406.09811304082, - -190511.58839861894, - -190520.1801424011, - -190515.9667556305, - -190427.82270662414, - -190294.00976637588, - -190278.39013209782, - -186826.21727392398, - -187247.81804804146, - -187880.4124846486, - -186245.36039779414, - -187524.29243165697, - -187442.40232060183, - -187439.63154257342, - -187466.21407558903, - -190111.04590202757, - -190144.84616993446, - -188777.33517669232, - -190099.61072582297, - -190079.43883652097, - -189090.7163018162, - -190153.29822813766, - -190123.88975192353, - -189037.89262428752, - -188864.07840297843, - -186331.33255991637, - -186353.41628003947, - -186460.97165208007, - -184320.71218592688, - -184395.50232088257, - -190089.0039060432, - -189971.33427513135, - -189768.2322727592, - -189820.9233690557, - -189897.344636401, - -189740.80754012152, - -189698.05320883947, - -189835.6886744365, - -189061.7492410639, - -189535.55716931316, - -189685.85676509794, - -189548.9614403094, - -189622.96977637283, - -189478.2853721356, - -189518.60810814277, - -189564.61474111862, - -189577.55489955656, - -189446.99616676653, - -188807.69589811168, - -189599.7221237243, - -189486.82239140675, - -189502.4117847279, - -189467.3133551171, - -189621.35658416804, - -189581.4535606255, - -189569.369029503, - -189528.73034473255, - -189413.92865996592, - -189475.14660232756, - -189489.37992040775, - -189408.59813112364, - -189279.9613839457, - -188417.6430208653, - -188058.3020889103, - -187978.0776449405, - -187874.45046373125, - -187882.51589978818, - -187829.42643730988, - -187992.9515668895, - -187863.06101100918, - -187894.49980053122, - -187929.7926774231, - -189759.31136422034, - -189921.34899766842, - -189822.27177816702, - -189779.94244991872, - -190028.2789147829, - -190071.21874390738, - -187737.30602605725, - -190145.79386936987, - -189946.1496095157, - -190113.21126750222, - -190096.24824068297, - -190178.52275598646, - -190105.41451731362, - -190284.38186976072, - -190225.26961028803, - -190097.9171060172, - -190057.625298676, - -190002.11943799697, - -190055.95770209175, - -190045.87754162127, - -190490.7591485024, - -189162.66377148678, - -189194.14908284522, - -188932.09554875613, - -189807.1070773043, - -189672.01066457023, - -189245.34760738516, - -190024.68852855908, - -189777.5439815788, - -190182.40049809497, - -189225.46009016156, - -190189.3974081339, - -190220.05389692725, - -190254.3411041133, - -190132.36336376893, - -189956.65780086425, - -190154.67648313136, - -190122.16497615812, - -190059.88487874487, - -190207.55774033137, - -190150.01581871975, - -189091.9085751124, - -189779.08713834564, - -190017.57547804448, - -189250.70667474633, - -190027.03974568783, - -190095.17697165735, - -190020.03316270863, - -190135.05256309436, - -190041.0525969543, - -190058.27232183088, - -190197.08787623307, - -190076.63864476516, - -190095.97638349127, - -189966.02900883183, - -190078.0323830136, - -190004.26574663463, - -189223.47061963478, - -190167.79185327527, - -190121.46768670232, - -190182.6044789875, - -190099.40338792902, - -189983.6388300622, - -190042.57666945577, - -189956.46858778447, - -190153.66675188259, - -190023.61680486205, - -189302.31324662734, - -190094.67168179897, - -190266.14844330985, - -190151.23057533684, - -190224.25521290538, - -190096.5349873898, - -190148.46719026144, - -190425.8188559662, - -189593.6092418684, - -188728.6455416676, - -189322.61920879708, - -189619.64292618987, - -189646.38589484352, - -188819.81976631144, - -189081.12058497823, - -188085.8534257374, - -189272.216549515, - -189544.71559777067, - -189907.45004942373, - -189432.3827588458, - -188557.4596234686, - -188701.5447475946, - -188971.72404492387, - -190528.79469771456, - -189877.9961805478, - -190367.54585730348, - -190595.64484921584, - -190479.65559568114, - -189963.1974196967, - -190535.52943206858, - -190445.05208792342, - -189858.34219583872, - -189897.34374014518, - -189854.93361949048, - -189248.82160598392, - -189147.5538365724, - -189201.19611016064, - -189038.7762684195, - -189178.77238216047, - -185229.03460210934, - -187748.69710114886, - -187717.19164324945, - -187132.2353526007, - -187136.09615416784, - -185288.1211137709, - -186751.49815383757, - -185601.47750316016, - -186530.5887430274, - -190429.1783080962, - -190446.3836146024, - -190097.01924026507, - -190360.80231637773, - -190372.90967518813, - -187296.17724049307, - -187407.35799002185, - -187502.90208840277, - -187473.06927463846, - -187499.10205366532, - -180851.9598007591, - -180929.25461929486, - -181104.5752803427, - -181069.63573433508, - -181129.5229125903, - -180944.42088931572, - -180972.37659385215, - -181158.81415754627, - -180872.920764452, - -180961.05798785033, - -181023.41494453436, - -181024.33482280368, - -181000.15483210448, - -180990.45101826618, - -181128.29075970198, - -180907.3847388372, - -181058.55471777607, - -180952.9436090207, - -180857.59442781372, - -180984.57332295837, - -180886.12180459496, - -180933.26117043925, - -186941.75754158312, - -186982.9722405875, - -186912.18608575975, - -187878.183966702, - -187769.73020592058, - -187918.5460535091, - -187770.35438355888, - -187823.1635403436, - -187949.6542449263, - -188004.68341807707, - -188039.39851966396, - -188108.55865321896, - -187970.6100541415, - -188061.4060260442, - -188117.78571594055, - -188004.34272146938, - -188496.86543053738, - -187011.0905548473, - -186895.31290305508, - -187001.81900673642, - -186938.28659058936, - -186935.24081614582, - -189018.82319591832, - -189254.42379562804, - -188587.22325699587, - -188768.57457960988, - -187700.16095939116, - -187710.29797933245, - -187777.95914919465, - -187680.76965174306, - -188055.04528261707, - -187389.64718967053, - -187484.65611512537, - -187604.7502873811, - -187527.49029823882, - -187339.39148460445, - -188039.52789187146, - -188177.8190559988, - -187411.0029043213, - -187394.22171404446, - -187938.76300956274, - -187522.70114031213, - -187489.84151505012, - -187504.45327247443, - -187576.1632075717, - -187542.71190908132, - -187426.28293339012, - -187968.02915792566, - -187395.85950368101, - -187426.43350693406, - -187555.9889074425, - -187644.45811102478, - -187609.15410432086, - -187306.4100947206, - -187738.23146269514, - -187346.23240056643, - -187363.15401524134, - -187370.93206676224, - -187356.5248650377, - -187527.29927831359, - -187506.17924088452, - -187395.57445450997, - -188041.02872487713, - -187547.86986085924, - -187502.88540065478, - -187444.350347627, - -187465.44357130295, - -187560.40108799638, - -187477.66643523375, - -187500.2979064186, - -187511.36321595448, - -187963.41642815567, - -187936.86069417314, - -187953.61378144295, - -187491.63111638057, - -187488.22817826015, - -187467.83739372162, - -187367.52856048927, - -187418.31867931513, - -187399.00999555364, - -187321.95776501435, - -187396.06612665168, - -187428.96199466274, - -187636.72358713855, - -187397.07408615857, - -187469.0864859035, - -187607.19069206796, - -187531.49942974385, - -187484.71694180465, - -187489.66230460946, - -187532.95309792383, - -187549.5655671346, - -187582.60902455857, - -187373.90495072122, - -187372.5855968998, - -187368.5041770015, - -187345.6302066342, - -187308.48511683661, - -187571.46069103773, - -187415.1090085491, - -188004.98964630163, - -187572.51645357502, - -187452.88025063608, - -187445.8659648042, - -187458.97796815026, - -187402.52801924205, - -187436.79165740727, - -187505.53159853804, - -187583.37443551747, - -187541.70319826694, - -187558.36181932772, - -187542.7333878534, - -187884.7889990308, - -187378.94226321694, - -187478.76495092368, - -187458.14513542585, - -187384.6156040888, - -187378.0518907277, - -187469.15587677137, - -188014.0323584892, - -187406.66886159603, - -187439.14612128361, - -187619.57224767804, - -187464.60152296402, - -187506.9208302256, - -187544.82729458922, - -187416.49256260804, - -187323.59112459634, - -187385.96741871574, - -187619.51489097482, - -187420.92650652543, - -187910.11580313428, - -187363.98471613, - -187419.29606089115, - -187398.2416118346, - -187453.5624250277, - -187577.77076012106, - -187593.5992766927, - -187359.14464430205, - -187374.3188761119, - -187463.65165413215, - -187421.33462251473, - -187499.42247689608, - -187435.47217575277, - -187547.81405866303, - -187443.10255224945, - -187330.4227778721, - -187513.21388004647, - -187443.89718925807, - -187635.7326994755, - -187512.523774074, - -187595.67973291225, - -187527.6958953857, - -187458.3337311642, - -187446.77474513915, - -187468.86769671776, - -187053.41384400596, - -187985.570484645, - -188376.47907997144, - -188271.49035221976, - -188543.55841322654, - -188513.22429321206, - -188054.3647786362, - -188147.7198031375, - -188545.07859362278, - -188570.02927650115, - -187478.03149545015, - -187439.05517074038, - -187509.49657466036, - -187554.3270244612, - -187308.12488365403, - -187380.04949640462, - -187483.37973117948, - -187338.094796927, - -187318.90099483271, - -187530.1038934612, - -187546.90658335353, - -187311.6337785027, - -187307.5064738424, - -187422.37468206487, - -187363.9005927213, - -187352.73763520038, - -187397.5651778647, - -187468.5900747166, - -187367.89500903618, - -187479.3279444399, - -187508.3265529081, - -187436.43826273832, - -187549.26862505978, - -187447.38477098837, - -187370.06008495143, - -187396.52727223214, - -187301.7505286326, - -187431.94850241748, - -187683.89461558757, - -187496.55637834425, - -187581.0873743829, - -188158.7950138316, - -187670.4526055669, - -188473.89517146355, - -187871.4556507872, - -187953.09635756293, - -188467.57731800413, - -188448.06867016124, - -189142.74138068696, - -188684.650541092, - -189116.46803518283, - -188958.36824273193, - -189029.22367856133, - -189230.61012847288, - -189224.07109513474, - -189171.628031147, - -189264.20801816296, - -189126.2504850369, - -189158.07282634798, - -189341.6173735007, - -189413.78079802296, - -189332.16941428275, - -188957.1549401508, - -188485.64839138108, - -189106.2220076251, - -189121.81270785842, - -189038.31273541637, - -189045.9625003559, - -188434.73763703258, - -188465.94841419312, - -188497.92002252254, - -188524.1099220463, - -188538.63489318447, - -188443.97131970103, - -188501.8606871864, - -189085.91052883075, - -189019.17316267703, - -189023.7170985733, - -189082.24653481366, - -189131.95237431457, - -188849.46401270016, - -188209.0810095614, - -188284.85460681713, - -188292.80489082073, - -188333.96865998456, - -188265.78863545498, - -188265.55048043604, - -188348.7664283297, - -188413.00617142994, - -188780.29440188574, - -188926.6658806248, - -188797.9391324806, - -188652.884000906, - -188634.8662816393, - -188767.71516075628, - -188655.21405929135, - -188665.65407218394, - -189096.27550826877, - -189137.79815942995, - -189431.09677577397, - -189460.51403827858, - -188924.01692765954, - -188955.90998005978, - -189557.00396968826, - -189473.60727785307, - -188826.8802112957, - -188695.52341180335, - -188650.73401087354, - -188727.8586654595, - -188814.71782739085, - -188805.0619419698, - -188364.40710545835, - -189458.84598976557, - -189509.89156290417, - -189505.54081387492, - -188870.79520430783, - -188973.39128024134, - -188931.2336154527, - -189075.3623107205, - -189165.40325349907, - -189055.29940898585, - -189187.86279493442, - -189204.81061669497, - -189118.706210659, - -189125.03476275213, - -189190.2132919713, - -189151.8546232845, - -189214.31218341843, - -189184.85831256816, - -188589.02383966983, - -188755.29130206196, - -189212.55154545035, - -189102.63305725515, - -189259.831518839, - -189187.73499960016, - -189250.62001598394, - -189206.6375973227, - -188630.3797399783, - -191950.76776520707, - -191966.13514771112, - -190967.5155771714, - -190981.85314904246, - -190904.54988965954, - -191961.7781913269, - -190933.31726890677, - -190884.9419731444, - -189676.3293626802, - -189499.13127883367, - -189520.43258956814, - -189367.95954881862, - -189602.67537553923, - -189572.96585282165, - -189452.19639778542, - -189450.76429825148, - -188760.92666197545, - -188739.25318416615, - -188695.8454305255, - -188642.94415728576, - -189497.53273612313, - -189436.17497376876, - -189465.12020137944, - -189459.6678228203, - -189182.45003880878, - -188614.0216532207, - -188862.78092360223, - -188688.21495284644, - -188802.33759008144, - -188875.01992304178, - -188878.47216792012, - -188833.15395284203, - -188663.7720230959, - -188895.23369487113, - -188697.66550976233, - -188677.42267415742, - -188835.53389301457, - -188755.91150152648, - -188779.18943551017, - -188765.55377816074, - -188789.33520208794, - -188656.38772186043, - -188876.0303235435, - -188750.15392367452, - -188936.51239900038, - -188834.86126886433, - -188636.7491669763, - -188745.53267934482, - -188392.790839642, - -188623.08273018873, - -189117.79942347232, - -189080.89445369857, - -189610.58855240213, - -189430.02118486408, - -189533.9883014909, - -190176.91030132608, - -190327.00650601689, - -190056.90557900956, - -190212.84524776228, - -190379.24513826738, - -190364.94417823173, - -190285.1007604136, - -190355.21433586793, - -190042.60625451073, - -190392.20043390873, - -190169.57831584476, - -190301.90487174553, - -190124.9999688799, - -190263.17840064035, - -190294.74524637056, - -190095.38374811987, - -190007.8802822811, - -190144.80345069803, - -190372.09773776418, - -190179.79769459536, - -190131.3738289751, - -190066.73961822983, - -190138.42407423924, - -190062.07748710833, - -190296.67992469142, - -190159.64175459897, - -190208.61438980376, - -190176.9209211548, - -190410.9097223642, - -190296.7065188192, - -190259.90894886025, - -190305.68653512688, - -190364.34558167926, - -189550.71352449455, - -190132.87489931766, - -189895.3596929185, - -190402.62004046032, - -190229.12172851086, - -190234.9684367843, - -189515.1110287197, - -189238.40345202928, - -188431.71697463252, - -188333.25419319226, - -188404.2364094815, - -189258.14718442407, - -189643.64597282023, - -189545.96793264223, - -189001.13958434798, - -189021.22993820359, - -189128.93571170678, - -189086.08559419253, - -189323.57130717806, - -188986.28736767554, - -189610.79451705402, - -189403.96852214064, - -189455.51690744262, - -189578.18167762924, - -189676.55452521317, - -189804.6846845527, - -189685.5062735283, - -189191.81129054422, - -189784.85244116923, - -189790.59660567288, - -189774.15782508685, - -189185.0056894647, - -188838.03543089947, - -188914.3271305451, - -189463.97410727615, - -189099.5308042423, - -189581.78969652124, - -189559.59363443762, - -188413.34106319828, - -188197.29564009517, - -188171.8323130677, - -189020.36303100712, - -188902.6341614655, - -189220.45711515305, - -189295.1989165057, - -189357.94160129366, - -189475.38802432298, - -189538.76966009964, - -189600.13047092306, - -189492.71937791887, - -189433.45797319178, - -189390.5473860872, - -189534.12800703215, - -189466.43930603622, - -189610.21419904652, - -189569.1170149383, - -189408.09333260934, - -189635.40978858646, - -189244.28470441038, - -189104.56426932674, - -189359.61236164405, - -189213.21322404998, - -189225.18187778912, - -189209.684180045, - -189187.41321420565, - -189058.75332777802, - -189283.28316506173, - -189237.05861530898, - -189271.45601136168, - -189171.22226688673, - -189320.9536658957, - -189116.84179436308, - -189269.2321511475, - -189132.12564859676, - -189134.94804509557, - -189131.89578832858, - -189503.0773230366, - -189763.56150893454, - -189760.2159286004, - -189719.0918707299, - -189779.78137748837, - -188939.57979180606, - -189786.4030590934, - -189726.6419321666, - -189906.72903141, - -189699.8057206231, - -189440.8450981969, - -189471.24343986003, - -189315.72626956273, - -189316.89167777615, - -189281.89181624498, - -189348.41372022274, - -189400.15278844733, - -187654.02171573124, - -189181.722180315, - -189241.2593596859, - -189537.49897748485, - -189577.87143369688, - -189553.76416751105, - -189511.77300350298, - -189590.21640715873, - -189590.12591003874, - -189538.08933140666, - -189576.29104717827, - -189658.8326002738, - -189652.78629907887, - -189625.6848290425, - -189556.70430922814, - -189492.97213968565, - -189604.8022327273, - -189590.56152422907, - -189697.46412324015, - -188785.51687088946, - -187995.86556328714, - -187829.67176628584, - -187719.83667300304, - -187755.15904329115, - -187969.5000521307, - -187810.21895933492, - -188502.68663988617, - -188527.26711107683, - -188439.5683820229, - -188400.24033030673, - -188941.54365172883, - -188872.16294958733, - -189349.372745954, - -188042.59562284162, - -189466.9672629071, - -189499.77105993647, - -189551.62846109323, - -189711.09679261735, - -189642.98880778134, - -189682.60080346372, - -189655.02049784194, - -189484.32524229362, - -189601.31793291916, - -189606.60594438546, - -189560.87324982125, - -189572.4833480093, - -189451.95526184243, - -189155.25778973437, - -189719.11336881894, - -189535.40777391606, - -189653.17828992414, - -189528.0714884979, - -189600.03913814086, - -189456.21906470374, - -189529.67807614632, - -189683.419552452, - -189706.35646586987, - -189566.73535772157, - -189663.45926956282, - -189644.09086083496, - -189753.4799871046, - -189515.74762313042, - -189575.1751271242, - -189715.39152002477, - -189677.10772575348, - -189763.0314858547, - -189750.63256559754, - -189623.64470779992, - -189555.93848452147, - -189516.65865324857, - -189332.90830424154, - -189335.40028172662, - -189390.99357965772, - -190788.04912055115, - -190432.64277937377, - -190429.14197236107, - -190324.69859443782, - -190357.26809546677, - -190463.3906674185, - -190804.5319977288, - -189752.39082629923, - -189233.70459704348, - -189381.97372271767, - -189274.94123611646, - -189344.52233503317, - -189330.49109124398, - -189292.62281836645, - -189382.74018184142, - -189283.81177846075, - -189189.62408053043, - -189881.05147717806, - -188418.2457536636, - -188334.16715397255, - -188316.96436541888, - -188393.31250959192, - -189449.70576624642, - -189643.99202381787, - -189621.55397281286, - -189584.60665973625, - -189708.35344832033, - -189545.99010444924, - -189640.61439605875, - -189647.60507520966, - -189090.94929104674, - -188949.56218808194, - -188970.90563415922, - -188778.30225349736, - -188877.02349292667, - -189187.23989760628, - -189228.16159599964, - -189371.9970513625, - -189354.5654109178, - -189119.10153963434, - -188553.4626397446, - -189034.6677846897, - -188582.1700977013, - -189344.76616863086, - -189387.8552421466, - -189190.0319375097, - -189272.67281759946, - -189335.77220952246, - -189246.25773864324, - -189282.36250191767, - -189851.525977397, - -189898.50682877458, - -189902.20292579886, - -190014.4432471374, - -189947.02621110433, - -189984.75176702105, - -189998.6850751129, - -189960.15611711724, - -189925.12486746212, - -189946.0012008412, - -189942.73770603698, - -189928.97374273633, - -189282.7001458068, - -189590.10878598897, - -189688.56378906994, - -188710.3709706175, - -188629.75667986035, - -188670.25366519665, - -189536.5844743295, - -188727.2902867739, - -188687.9977280287, - -188955.84294808432, - -188979.20255327725, - -188974.94610195557, - -189617.42703743948, - -189562.51140533126, - -189380.90819896417, - -189619.37247978424, - -189782.16983261594, - -189821.50652600272, - -189887.81381680508, - -189897.2491422674, - -189836.83355904545, - -189705.70407238055, - -189822.16051409193, - -189732.60148731066, - -189827.95292964636, - -189654.67760689667, - -189747.67582984507, - -189892.11024789204, - -189779.45626955442, - -189857.48519184976, - -189864.0957269925, - -189800.49653082312, - -189683.09851788307, - -189772.1017231966, - -188074.20351587667, - -188048.01374776612, - -188076.0410432971, - -187921.70754893584, - -187944.64016261857, - -188069.6471734618, - -188033.65890864775, - -187984.49376657544, - -188066.0584282789, - -187873.16679846472, - -187761.06000681227, - -187966.5095326889, - -188771.22071372272, - -188942.09885480377, - -188924.61120937933, - -188865.0310038266, - -188325.55852082116, - -188221.7491593263, - -188015.43710141958, - -187905.9131194616, - -188562.52238197235, - -188583.9863067021, - -188292.803831213, - -187973.74266490637, - -187980.7875448006, - -188006.8523079164, - -188196.46996764973, - -188266.2197375126, - -188656.73899805153, - -188701.21377091933, - -188539.53210781686, - -188624.18261098056, - -188587.54773051367, - -188671.20919887463, - -188643.8479868126, - -188585.12861631755, - -188119.47972230078, - -188206.78624151362, - -188825.28809191516, - -188789.93647026946, - -188595.929621033, - -188904.70828505783, - -188656.04075638522, - -188288.63591142182, - -188201.85617050852, - -189057.81546602, - -188669.6333716104, - -188732.5163680446, - -188637.09764701437, - -188758.95185635728, - -188640.11104820046, - -184975.02995836173, - -192653.7287946721, - -192658.9858084674, - -192643.9378977829, - -192624.1983817503, - -189827.35018753487, - -189853.90365825905, - -189755.076146139, - -190101.45817912888, - -189897.10993130127, - -189979.1871069332, - -189945.22708950468, - -187360.3181764521, - -187377.81473387225, - -187085.60542441468, - -187126.73472208405, - -187076.44109914085, - -189543.034315843, - -189163.53067750562, - -189694.32037712878, - -190001.34422844957, - -190121.17477858203, - -190109.7346041272, - -190215.29371707712, - -188502.3898432576, - -188505.68688054534, - -188469.82315365504, - -188505.51258337646, - -187548.06751765357, - -187526.72134379356, - -189502.79748963288, - -189162.7775371684, - -189864.69924589156, - -189091.23073030688, - -189098.729985849, - -188951.4483378136, - -189105.83893511366, - -188778.71886401522, - -188921.8575232467, - -189156.49544347025, - -189085.15446033492, - -187863.92820822977, - -188710.84136932285, - -188817.58476702461, - -188975.3355759559, - -188927.43096510798, - -189173.6846848957, - -189000.61821900296, - -189002.45745511763, - -188898.19947380063, - -189075.47551847165, - -188971.97905411114, - -187894.56703794212, - -188919.8056771276, - -189080.7550455894, - -188787.2704993271, - -187852.36526218464, - -188843.77638094558, - -189035.6991536637, - -188801.21894511217, - -189280.28143715774, - -188855.60943415618, - -189146.70967002175, - -189026.6393112517, - -189031.2455634038, - -188875.43440098123, - -188897.01172743316, - -188866.27150595438, - -189159.98308012512, - -188983.8191116055, - -188814.16702615508, - -189048.87915536104, - -188871.3639754638, - -188848.03815522493, - -189094.54492211857, - -189061.87467044228, - -188505.22634815276, - -189076.32527469256, - -189151.15283918366, - -189058.45726150705, - -188817.90158256877, - -188953.58974896904, - -188943.9313415137, - -188879.4638523478, - -189024.50651389456, - -189123.97882152276, - -188883.4842960677, - -189120.6792836771, - -189113.53599738402, - -188964.62717743742, - -188560.05311062792, - -189624.33377322988, - -189598.00166810045, - -189567.498505866, - -189951.57727285993, - -190038.81848945052, - -190032.9438813023, - -189607.8188208205, - -189902.3304396636, - -190013.260857581, - -189953.2875295655, - -189254.12345730932, - -189010.69702649902, - -189550.82926949437, - -189418.8305916361, - -189418.45132045657, - -189938.98847371674, - -189481.26125690035, - -191623.8931317123, - -193456.92593939666, - -193559.34465828937, - -193537.81960822793, - -193263.28722742767, - -193404.9270928785, - -193547.75923148528, - -193461.77865299906, - -193341.6948875634, - -193310.37387013956, - -193575.17645088313, - -193478.02172936473, - -193568.00528276377, - -193543.01968804744, - -193516.14453401812, - -193387.98513967678, - -193607.67536828865, - -193479.753757584, - -193355.90193244684, - -193406.9449645201, - -193564.96957959293, - -193332.8917695752, - -193469.2054070533, - -193221.83049125588, - -193512.81482243334, - -193452.62691900134, - -188742.25835635187, - -189868.5219289275, - -189969.1792616839, - -190045.9373963785, - -189670.68791407108, - -189734.63562969028, - -191377.50485578203, - -191222.35911275444, - -191243.0515390836, - -191271.9049596895, - -191379.93800357336, - -191175.45420477103, - -191656.98941584208, - -191319.54700031714, - -191297.4291378877, - -190086.10968265266, - -190096.79898858466, - -189133.8957997381, - -188769.7524320571, - -188482.3157020377, - -189373.57180557027, - -189782.7809279428, - -190474.0354770335, - -190371.1359257553, - -190321.52227194887, - -190344.32547762684, - -190497.0175391162, - -190465.26309402508, - -187529.8569288587, - -187417.65084470675, - -187595.0345184197, - -188793.50051869432, - -187896.9081911965, - -187950.47693488878, - -187852.12457066582, - -189030.72274047518, - -190122.4501330495, - -189948.1486313253, - -190453.08226687548, - -190335.2883217472, - -190188.87329426254, - -190066.86374923558, - -189690.21858696538, - -189771.49663237328, - -190086.7786046643, - -190011.98226594419, - -189857.30593465958, - -190479.28831624571, - -189915.0190236122, - -189092.11310182954, - -190009.95041416763, - -190288.40175925204, - -190208.68058270408, - -190223.2598854498, - -189596.71553589354, - -189532.60174471134, - -188278.1072223423, - -188990.4010166953, - -188932.35300179519, - -188987.5553701727, - -188980.99251783875, - -188399.1066065768, - -188547.48254971273, - -188445.99561197893, - -189408.1187962789, - -189194.96207121338, - -189618.59279905658, - -189596.4692696455, - -189591.8731843488, - -189563.21199104455, - -189247.56010120243, - -189228.67042631286, - -188686.11696233056, - -188643.2572033615, - -189785.7936062494, - -189832.1833617229, - -188724.28354291673, - -189000.49204416302, - -189681.60915599283, - -189405.59755569755, - -189460.84585110802, - -189640.6416367897, - -189759.73338347275, - -189666.2462641403, - -189877.80432977845, - -189698.4654076233, - -189872.54233829424, - -189934.48555254235, - -189825.34967911273, - -188339.00311775182, - -189089.71924361648, - -189140.07123628308, - -189246.3295914749, - -189261.93875597016, - -189164.02682145475, - -189243.80772386643, - -189146.8788231098, - -189161.1410087493, - -189249.8908024901, - -189187.70565578455, - -188240.28382077243, - -189121.58192836438, - -189178.79518399367, - -188415.4342752534, - -187704.1856572577, - -187679.05010809522, - -189393.24956273774, - -188883.37598759666, - -188958.043341557, - -189109.00672269435, - -189073.311932781, - -188907.77366622048, - -189162.88629233922, - -189191.27948312214, - -189044.13234691945, - -188955.4569509421, - -188930.1166276852, - -188981.61018574386, - -189060.53964369342, - -189006.8313798339, - -189073.19084259024, - -189161.52886389126, - -189110.20569245965, - -189375.341623621, - -189208.89107501428, - -189008.29312550844, - -189406.6961868914, - -189247.05285320058, - -189358.78761245878, - -189380.80686938798, - -188977.17868152083, - -190171.06683845687, - -190002.99170424696, - -189982.1293526866, - -189911.10633381322, - -189995.0356338526, - -189997.50324860663, - -190023.1519635282, - -190061.7421727275, - -190142.2612089221, - -189953.18482676084, - -189959.6292369299, - -190076.74672227495, - -190047.69919487005, - -189592.09389439234, - -190042.4332771142, - -190072.09887471944, - -190023.65707861382, - -190069.90387555773, - -189999.30668370787, - -189943.26942762276, - -190047.4304017866, - -190013.54687287952, - -189954.94326666972, - -189989.53954194966, - -189994.1273630411, - -189998.3802860646, - -189536.80725185145, - -188416.74513307065, - -188421.93878236535, - -188226.34945822318, - -189141.3441900047, - -188801.4006698127, - -188258.42142430766, - -187828.0449700697, - -187557.52973979575, - -189203.59341116896, - -189222.42477997518, - -188371.93455635058, - -188236.67057536307, - -189053.21654074607, - -188910.12449409856, - -189616.0770537085, - -189187.79390543632, - -189076.53981134578, - -189355.03813613064, - -189235.60204803146, - -189060.11793078348, - -189047.46005050762, - -189110.33805387263, - -189086.58762901634, - -188814.90499657913, - -188831.73310049425, - -187732.9738354657, - -187992.73283452474, - -187944.50330577596, - -188018.83061694138, - -187930.0200671109, - -186619.29365579388, - -186683.35602978745, - -186684.73039451445, - -187711.07272794982, - -187669.59759489246, - -189468.85739625, - -189487.9206905245, - -189474.07753045388, - -189538.19493991407, - -189174.537700806, - -187176.16775513362, - -187889.88915153715, - -188877.767245647, - -188875.60269456287, - -189320.8832616244, - -189701.74112496764, - -190570.05343242383, - -190456.94334113694, - -190425.7399763771, - -190488.92328356873, - -189848.3496053623, - -189767.82097975494, - -189836.98244016172, - -189360.94131929203, - -190187.96899881063, - -190075.78591642829, - -190102.6448901039, - -190082.51368391872, - -190277.35605871337, - -190108.85859934683, - -189982.98427097642, - -190247.19351608588, - -190000.47476074027, - -190015.63669208196, - -190176.02416169882, - -190196.77460129675, - -189948.9893928284, - -190051.48274480636, - -190309.79507444083, - -190266.7019462526, - -190160.6995683081, - -190048.14997909922, - -190138.61148006478, - -190201.3591599058, - -190220.61911344156, - -190108.87515133707, - -190235.60594223105, - -190243.27357438963, - -190140.1759802504, - -190142.06772604265, - -190106.0660399482, - -190032.54339045423, - -190078.30164515603, - -190140.8097984063, - -190239.66301388768, - -190204.91858076805, - -190104.49800215533, - -190222.0138580218, - -190176.5237960741, - -190284.59045692414, - -189989.61280394648, - -190188.0724671243, - -190304.79464037312, - -190151.1461472848, - -190245.7156611473, - -190354.1941259311, - -190063.91222684208, - -190215.5486804766, - -190266.6265029611, - -190135.90178565972, - -190390.4172704486, - -190225.16976200862, - -190233.24979261204, - -190271.6524928905, - -188255.49531115688, - -189431.19612052888, - -189406.98871430848, - -189405.89976436328, - -189556.0586895262, - -189975.8857865456, - -189962.64684681784, - -189606.58142448816, - -189620.0076205086, - -189829.45164674928, - -189806.80628290947, - -190055.23194051083, - -190099.1641087381, - -190009.77524916915, - -190123.61494626934, - -190327.86074333172, - -189881.85499270284, - -189877.7461051455, - -189785.98016496692, - -189801.74533007256, - -190150.7534213793, - -190083.45351184526, - -189958.9935821789, - -189640.46304525726, - -190369.8816348054, - -190355.11724425686, - -190322.80421544664, - -190263.3619893532, - -190417.86846340998, - -190129.3764744744, - -189044.47193388795, - -190141.27549069133, - -190192.09800997702, - -190228.05993463765, - -189166.174499402, - -189825.80985082992, - -189928.15648078072, - -190413.83573917582, - -190409.3455823219, - -190456.8050621169, - -190416.263701065, - -190423.7286388017, - -190504.68932044078, - -190351.8577571806, - -190430.28066369068, - -188357.7548173183, - -189963.01135006186, - -189867.35754044872, - -189885.2399857091, - -189540.83255167972, - -189971.6969367716, - -190014.13869723506, - -189625.3584162535, - -190033.94066848868, - -190014.96846085825, - -190047.33554382756, - -190021.89704585815, - -190095.05957379984, - -189823.33718928453, - -189807.44797915185, - -189856.9200899178, - -190683.3037257944, - -190622.24743598714, - -190636.57137215306, - -190577.10752327426, - -190615.79719227442, - -190597.41828734183, - -190563.36643259757, - -190570.68582678516, - -190689.22248026772, - -190604.4639800109, - -190649.86056976585, - -190660.25961607235, - -190080.6795551314, - -190063.6300792004, - -190056.3523664133, - -190081.37512168137, - -190053.65824576886, - -188982.54369054709, - -190254.69169143718, - -190270.88097794403, - -190324.85616092518, - -190316.4062083869, - -190233.7497864454, - -190309.93574469167, - -189865.68748950932, - -190158.38189934954, - -190002.0571816662, - -190032.13717515685, - -190219.2848547583, - -190106.5932816327, - -189776.73861947109, - -189892.40357004944, - -189933.6677233693, - -189787.4065735723, - -189622.95178168817, - -188401.64732672213, - -188363.39439349156, - -188369.21574915142, - -189654.05215583372, - -189657.41072030462, - -189885.08282564703, - -189897.7438511581, - -189344.53698081977, - -189371.6910585, - -189531.47570204202, - -189745.4244652022, - -189878.20826982777, - -190129.93090804346, - -189865.11180310862, - -190056.72426811626, - -189675.57223028474, - -189821.58209532077, - -189722.72727586702, - -190627.5336950345, - -190590.11724799534, - -190553.81046517758, - -190626.39202647426, - -190548.7352188638, - -190527.02557045876, - -190537.97620366924, - -190528.99247083525, - -190535.95331849967, - -190477.584911762, - -190590.01387789508, - -189689.98568985163, - -188767.31638590462, - -189380.99555358346, - -189820.34819052625, - -188597.77966632837, - -189046.7218577527, - -189929.7873353237, - -189827.14417308327, - -189610.45247642134, - -189721.2681245282, - -189841.32060363394, - -190133.0764252821, - -189994.26180196146, - -189552.0059179834, - -189865.34878964076, - -190128.70990411646, - -189980.2073353877, - -189911.87643199667, - -189862.09897817927, - -189582.52171704065, - -189512.73040835065, - -189560.4350602952, - -189685.13710829453, - -189440.16676991337, - -189792.41637375913, - -190046.7128963769, - -189884.18087312218, - -189803.42093549029, - -189609.67635842468, - -189566.49283217607, - -189766.99186632992, - -189187.37825301112, - -189153.77644796227, - -189720.57020872037, - -189942.3597703817, - -189936.04804907544, - -190138.50278243815, - -190147.93036115187, - -189473.60669290827, - -189934.81712935786, - -189920.5210867985, - -189880.48140888676, - -189777.5089787198, - -189991.22532635246, - -189902.6784533937, - -190014.2065216857, - -188181.21478088622, - -189993.3661745427, - -189725.42636923178, - -189845.95459293955, - -189913.25422408764, - -189815.88498965633, - -189816.0991606201, - -189914.6755130604, - -189851.85041363334, - -189412.0149135278, - -188595.05397402454, - -189964.75033073436, - -190076.95138041594, - -189948.34201305412, - -188287.7882146985, - -189201.20828713535, - -189794.53058512337, - -190036.43274504624, - -189993.46217733237, - -189516.2009930048, - -190083.22603296343, - -190015.1682753715, - -189863.4178539749, - -189865.29591063826, - -188013.20672022508, - -188285.55395057393, - -189942.62572521015, - -189716.3603225668, - -189754.81370781327, - -189479.04798828842, - -189831.82834825877, - -189846.60399545185, - -189891.63373559376, - -189756.3266971822, - -189470.92179911264, - -189881.5254498419, - -189474.05881109604, - -189860.46362732205, - -189895.8170527797, - -189901.08917131185, - -189172.6969553096, - -189942.76417361607, - -189249.40564514752, - -189864.87255623512, - -189829.0082900861, - -189527.37335576225, - -189706.09320869745, - -188333.69361629503, - -189812.79016112452, - -190011.10938298382, - -190012.59772626602, - -189821.5502203555, - -189827.98067667958, - -189752.06021142998, - -189849.57134155335, - -190103.95680880343, - -189645.7975453776, - -190161.70492528772, - -189002.53982306406, - -190098.90464646148, - -189880.14284702012, - -190275.281542361, - -189671.86798061224, - -189968.41624521738, - -190082.85660467256, - -190010.45363055408, - -190134.69000424945, - -190194.0337786028, - -190121.94782244563, - -189910.92703627306, - -190120.33137371222, - -190052.2392364327, - -190168.3448743449, - -189863.42332173933, - -190050.3134536251, - -190052.02798014958, - -190138.15984440758, - -190124.12260626277, - -190076.46943185962, - -189279.50841773278, - -189127.7614248225, - -189340.40098509513, - -189373.96438282065, - -189945.63900962495, - -189928.4903803872, - -189791.76613560726, - -189869.66751411214, - -189883.52375199503, - -189710.02260108996, - -189550.95837134798, - -190125.85650578202, - -190227.80055654832, - -189980.97976013072, - -189805.0174005274, - -188735.71532723514, - -189640.06108544476, - -189707.5300203365, - -189960.30966069215, - -190032.43816963732, - -188336.02952000388, - -188932.69835564663, - -189829.566589109, - -189766.6746070231, - -190087.43066860677, - -190041.987692598, - -188621.10935024044, - -187857.41211453432, - -188522.2186210146, - -188456.7527854188, - -188417.53740720224, - -187912.95191827603, - -188406.84414023338, - -189897.22955659946, - -189886.44474479667, - -189936.64132531104, - -187862.33462754218, - -188017.75898284867, - -188115.07214676208, - -188238.33374197048, - -188215.72460135946, - -188581.38902644193, - -188288.50808971204, - -188355.1199264169, - -188259.72638644718, - -188245.38363355384, - -188771.67321964315, - -188609.1528103252, - -188477.04377820794, - -188706.44086790056, - -188522.74551045886, - -188441.11342678487, - -190032.00715641747, - -190026.62201802526, - -189736.26297613457, - -189909.27787767662, - -189079.18498195667, - -189929.0210734705, - -189486.59669526652, - -189547.3793226872, - -189755.0992386357, - -189721.59190477236, - -189038.42168107076, - -189396.02766328072, - -189452.2648830305, - -189604.21381453943, - -189626.24769900975, - -189736.47627504388, - -189980.6924954303, - -190051.39788644988, - -189987.9388031262, - -190118.1878124256, - -189860.31740185065, - -190150.64554488976, - -190202.89670150276, - -190007.161320482, - -189941.38360680544, - -190040.3036151541, - -189981.57081345769, - -189783.57416826164, - -189796.5865472431, - -188676.66102464776, - -188680.00271065094, - -188735.25527640682, - -188691.9863820846, - -188883.2252506061, - -188594.7169153639, - -188657.22598614308, - -189329.07774713478, - -188268.3002336887, - -189249.25171750845, - -189266.88275029848, - -188041.43930099072, - -187803.3143579642, - -188052.40549977424, - -188904.57948655414, - -188769.16734820895, - -188621.68315608325, - -188716.07523902692, - -188977.8336529005, - -188876.96741627337, - -189023.2637372005, - -189446.34263308713, - -188663.34908135253, - -189338.63800307794, - -189272.46716609594, - -190475.87056057338, - -190363.26549123542, - -190644.9723379776, - -190462.08398884002, - -190574.05181437873, - -190391.15414305858, - -190504.12149903976, - -190541.7584943848, - -190394.25763746977, - -190593.80002470885, - -190549.81716892275, - -190394.54304903626, - -190586.99388908755, - -190511.55907674643, - -190443.4219741818, - -190434.752852087, - -189906.86664615953, - -189980.63646016494, - -189769.42690983845, - -189985.83720384885, - -189876.53310935257, - -189902.22536835464, - -189645.40122184544, - -189424.709689385, - -189369.65899546578, - -189022.30145293748, - -189476.28709892902, - -189342.46057276748, - -189669.7071682979, - -189861.2124974001, - -189924.49114468484, - -189695.61062811463, - -189732.4484183905, - -190206.17448188507, - -190206.0980025185, - -190218.3943863217, - -190076.2470556719, - -190052.52406760817, - -189560.67356089593, - -189632.94022368034, - -189586.8863832665, - -189750.83259052076, - -190228.63718259358, - -190321.80363929408, - -188592.69741300648, - -188530.56183519625, - -189564.82638307373, - -187892.99584382013, - -187812.29264323704, - -187981.42244477407, - -187975.52341851426, - -186877.613094899, - -185830.3568996049, - -186917.61345703408, - -186885.37838974773, - -189803.36151218376, - -189913.1497669444, - -190032.10280239128, - -190072.29161640667, - -190140.9626562465, - -189768.22843580108, - -189931.81691862512, - -189826.67274452065, - -189999.97773158897, - -190115.75191553755, - -189977.23103216087, - -189590.7531448757, - -189372.64547062907, - -189597.24984633556, - -190005.1924606107, - -189503.00303097212, - -190071.01808593702, - -190031.99421903666, - -189875.86523314627, - -190009.90432453758, - -190097.99478259103, - -189929.37601507976, - -190010.17147214644, - -188912.98164239828, - -189284.43743427604, - -188887.7173625151, - -188911.4706511093, - -189388.98309752173, - -188870.41996378027, - -188914.53959732346, - -188878.15425177375, - -188840.2951461584, - -189620.0244130199, - -189625.2583846318, - -189840.72948148553, - -189625.845364226, - -189465.20794132227, - -189921.45423136652, - -189889.22091888165, - -189946.08141655484, - -188504.64148423215, - -188412.44037557312, - -188781.8283257325, - -188740.4076299442, - -188935.6716361777, - -189902.9951481261, - -190199.11620196913, - -190331.88777793274, - -190083.6881451843, - -190036.6178459026, - -189493.53122157877, - -187414.1525286281, - -187417.08281845733, - -187304.57560440578, - -187206.64307347327, - -187494.37966247095, - -187468.07142045483, - -187405.1955167813, - -187467.3009883131, - -188046.39450204067, - -187380.41176077427, - -189268.7378156468, - -189214.5524927672, - -188447.52573377267, - -189332.07031262116, - -189228.9081982296, - -188627.0205662996, - -188656.50036120758, - -189175.41497594208, - -189375.19911536569, - -189761.69226405656, - -188055.34361729486, - -188355.8864917371, - -189842.32031122976, - -189868.9528304452, - -187411.8004731311, - -187384.85440843413, - -187397.49483843523, - -187389.06402282708, - -187408.57036686965, - -189809.44073601285, - -190293.08407689194, - -190311.90430715468, - -190388.85119682553, - -190445.93403431756, - -190435.89895740917, - -190449.3475640624, - -190483.5788748304, - -190439.36363401508, - -190402.03821597865, - -190354.2130714179, - -189878.35854182256, - -189831.7295560883, - -189980.4227549014, - -189894.38857136425, - -189234.79811111273, - -189044.42758006393, - -188982.13117658292, - -189655.64745270918, - -189272.83789102736, - -189047.49853952235, - -189062.21473259735, - -189834.68444061565, - -190332.5891857683, - -190311.74928116973, - -190268.37506034676, - -190352.22457202693, - -190264.02480158204, - -189703.3002225872, - -189741.9662685643, - -189653.50488966407, - -189759.5122753518, - -189628.80983628487, - -188401.70303736636, - -188550.56920449316, - -188650.65877533983, - -189816.1789486413, - -189665.07028830674, - -189725.06518663402, - -189952.97110248948, - -188707.19411003264, - -188725.43356871564, - -189536.60395080398, - -190118.58938534866, - -190422.2204975639, - -190454.36096552407, - -190477.12985416566, - -190273.79635232274, - -190386.17342693405, - -190290.92027654726, - -190285.11144322803, - -190500.8876053926, - -190492.82676087008, - -190384.46970978877, - -190577.94552562502, - -190476.58697762445, - -190424.5579371018, - -190515.7769230437, - -187440.6696185839, - -186735.62978625085, - -187834.27434140982, - -187215.37650594692, - -186950.25182405324, - -189983.49851289552, - -189914.44209007142, - -190739.9069385846, - -190703.46636216049, - -190823.64244110044, - -190142.2688152774, - -190703.40250229, - -190679.2845484287, - -190804.43682863933, - -190772.79528161397, - -190691.4249614036, - -190672.18419417052, - -190799.7370938617, - -190692.94467440082, - -190707.9815689889, - -190103.40849787297, - -190739.0849917317, - -190796.57720112224, - -190769.51019569216, - -190791.79343367968, - -190796.49073473035, - -190769.40469563488, - -190764.2657987776, - -190474.1084149691, - -189854.45943786003, - -189618.54146927196, - -189948.28950302518, - -187679.11051665375, - -189633.55364759974, - -189759.5887370702, - -189881.8820382768, - -189832.31199713287, - -188734.38474404474, - -188676.7512696058, - -188864.32027075288, - -188639.96835899813, - -188762.2940970673, - -188700.56167535784, - -188755.6479228247, - -188708.43066755641, - -188787.61591049863, - -188757.73158761932, - -188644.0921725751, - -188600.8117161074, - -188788.02038963212, - -188656.48788790172, - -188667.12691655773, - -188673.3512738554, - -188714.69366230932, - -188770.75855426944, - -188544.12377281216, - -188591.63738564984, - -186236.7034840598, - -189295.687458489, - -189387.7787664935, - -189483.5622333063, - -189397.8449691686, - -189313.9212201251, - -188203.37135887527, - -187995.83115505055, - -187882.34140060403, - -188654.9371244769, - -188652.52164832054, - -188316.35211209787, - -188437.44986870151, - -188505.6979547773, - -188730.1146005567, - -188626.47518371168, - -188714.48761648746, - -188407.52237097285, - -187878.91877906496, - -187863.0763505315, - -187889.46739959446, - -187982.20453415965, - -187796.48978933724, - -188215.89141412245, - -188203.05941331436, - -188146.49730992244, - -188353.95691062772, - -188399.5266737372, - -188228.87698216413, - -188298.52438193525, - -188578.58813759126, - -188544.9844182498, - -188601.63158519944, - -188847.38478974465, - -188862.40951645246, - -188755.79764277636, - -189802.89679241736, - -189993.52434262517, - -189715.1922047365, - -189733.53895609008, - -189775.83618502063, - -187142.91197584823, - -187290.77255972844, - -188686.42209622622, - -188898.14405130423, - -188708.29689676486, - -189354.12525608385, - -188852.3212319449, - -188580.35998296886, - -186997.42230628218, - -187201.35993908736, - -187014.687885825, - -187284.51386784925, - -187064.97682941234, - -187207.75294265902, - -187360.87681263685, - -187356.2702630445, - -187293.05247629643, - -187428.0603982613, - -187177.84871112878, - -187307.39001224304, - -187136.34909378062, - -186899.42802989998, - -186811.0259265327, - -187248.96487327036, - -187252.0636923649, - -187100.6777743965, - -187236.13957324318, - -187245.60588781812, - -187356.27166993468, - -187208.07756964676, - -187185.59605571016, - -187270.27839081976, - -190313.3433016634, - -190457.10477513168, - -189545.14535960605, - -189494.47629843102, - -189570.22630755027, - -188823.48915271257, - -188865.64963285843, - -188552.1363584385, - -188619.1510519812, - -188607.08239080833, - -188752.95402744415, - -188809.1513214061, - -188896.28428937343, - -188888.90122016604, - -188651.0311671839, - -188776.98081559045, - -188838.6412495665, - -188699.98510029077, - -188861.55098448345, - -188762.69707663247, - -188923.10925551094, - -188763.50010894032, - -188741.78613036394, - -188883.2552726653, - -188712.7041078951, - -188881.00360508487, - -188390.8105047042, - -188699.0734942116, - -188827.92401582585, - -188894.79960782512, - -188931.13202414938, - -188794.56392041262, - -188852.1069479377, - -188953.8661182334, - -188771.58744733158, - -188730.8485746518, - -188701.8704289315, - -188737.72953596013, - -188660.35107391197, - -188853.6550247938, - -188922.932948625, - -188957.68048442173, - -188799.11774294777, - -188847.64672820744, - -188887.03812416104, - -188451.27752479166, - -188795.36556420612, - -188747.6297643966, - -188640.27812372334, - -188696.12511807954, - -188675.42898269245, - -188834.95098552675, - -188763.50635195625, - -188857.6640882033, - -188869.67914135032, - -188948.13019580705, - -188881.2122130014, - -188804.45974852913, - -188807.0153833909, - -188992.52597648092, - -188691.38600189023, - -188948.31282661355, - -188943.01247223295, - -188666.8490319798, - -186755.8790869865, - -187055.96567581533, - -186938.30669909163, - -186939.5914131338, - -186968.9595965698, - -186973.58842409158, - -186996.0641120089, - -186927.14507917225, - -188126.36856649444, - -187989.0606507604, - -188345.30883986986, - -188024.0209446362, - -187981.19938609967, - -188370.6918408433, - -188372.59542666713, - -188290.10180168305, - -188180.75968110925, - -188032.18651155845, - -188456.66581593105, - -188411.54018031366, - -188603.7382084354, - -188526.96284229629, - -188044.24931373517, - -186594.78042197166, - -186557.0441814957, - -187450.78776177226, - -187654.4132413958, - -187298.15982685503, - -187654.50341685605, - -190240.44111720624, - -190204.69430696947, - -190247.32743206137, - -190116.23170855152, - -189822.41604996356, - -190052.50408411375, - -189978.73620741625, - -189991.84017777976, - -189927.37323736722, - -189963.82074388396, - -189953.3400875045, - -190023.03157957617, - -191196.78522172087, - -192597.09524694833, - -192895.82000379864, - -192937.6195482761, - -192963.4726938061, - -192528.2497704212, - -188998.86112254602, - -189079.51045495822, - -189030.98601303186, - -189281.1745312478, - -188992.39721257958, - -189440.84837420477, - -189362.363551564, - -189418.5635541344, - -189367.09601308653, - -187581.6603888008, - -187785.48520829526, - -187632.458215042, - -188155.6028932805, - -187435.4461049656, - -187231.93304935156, - -187435.52201434693, - -187501.4728511325, - -187668.08951668267, - -187708.40512644028, - -188147.31119030315, - -188675.0008515813, - -189810.78317731756, - -189794.89106257277, - -189717.23712618652, - -189900.2372679593, - -189825.69648692242, - -187226.894383661, - -187178.20205640906, - -187136.8960553202, - -185238.39783400472, - -185242.5030415149, - -185345.7950604921, - -185410.27123301756, - -185416.34499830386, - -185342.93001344596, - -185340.5244730282, - -185450.9592763067, - -188074.3879708484, - -188044.7241588103, - -188191.30626510383, - -188068.61579568117, - -187947.28406376718, - -187639.40616431175, - -187644.44181296264, - -187708.90496310382, - -187881.68699067866, - -187821.27637982904, - -187816.77484224085, - -187778.33799052887, - -187888.0480726681, - -187900.6198216651, - -187767.44388922982, - -187824.64761095232, - -186946.49920168173, - -186875.07184791236, - -186883.20867396414, - -187589.55648392823, - -187225.69080118512, - -187537.9427673691, - -188286.14667897578, - -188172.5591447211, - -188398.48892919585, - -188163.391662388, - -187804.12340613295, - -185577.83795216106, - -187501.71933425503, - -187587.08880175353, - -187521.54406894254, - -188028.0949108722, - -188061.22295862038, - -188256.72208444707, - -188476.10056489505, - -188485.98826566394, - -188518.84975849348, - -188518.25470222684, - -188453.06253164104, - -188396.41158598493, - -188345.5402286827, - -188383.97417014395, - -188397.65911864082, - -188327.75352780774, - -188011.48721764886, - -188302.3685863598, - -188359.7452217864, - -188067.38926369348, - -188501.6178230978, - -187567.7001615884, - -186675.79639052547, - -186707.68769738608, - -186889.37334551246, - -186291.1911451345, - -186989.15942660804, - -185853.3718166437, - -187271.08204112732, - -187348.63421752062, - -187554.30501214246, - -187649.85293612428, - -186879.65209386378, - -187244.61048096724, - -187154.04340592172, - -187692.31182614467, - -186640.3528644003, - -186681.88272520696, - -186350.56007629345, - -186557.0595740633, - -187487.54660540985, - -187371.21086043568, - -187303.41224789037, - -187411.98825159538, - -187463.35967468497, - -187318.19430842687, - -187437.8841669884, - -186033.67372700493, - -186008.7916507735, - -186078.14045517158, - -186108.63102585988, - -186939.9285527728, - -186936.38431708724, - -186972.09442050973, - -186879.7359633921, - -186984.41818152944, - -185969.2729297153, - -185798.58472768634, - -185870.23223539593, - -189292.95169776288, - -189494.6934112341, - -189326.24295138277, - -189480.1865117243, - -189446.34306059004, - -189358.18497589478, - -189404.17320247806, - -189265.0231138431, - -189372.33628926397, - -189458.1241264266, - -189129.6599752958, - -189426.05987348396, - -189409.23422673906, - -189286.6328264702, - -189389.49688049342, - -189313.74074668097, - -187751.72083891128, - -187076.09070858092, - -186912.38462175036, - -188965.47987347044, - -189069.16209137047, - -189102.77715540328, - -189135.83882498092, - -188978.2368169874, - -188961.64872165, - -189021.61764845366, - -188762.91719638073, - -187661.2072276682, - -185455.67429735223, - -185449.35314495498, - -185711.47020234595, - -185720.25737344744, - -185791.17667712452, - -185644.0000068018, - -185702.2403112886, - -185714.91162220383, - -185966.1274989558, - -186029.8168894544, - -185980.73022512393, - -185918.62006951767, - -186074.34110850515, - -185967.65473758016, - -185912.79278654896, - -185910.2529198803, - -186074.93122414872, - -186001.86051648084, - -186832.7195104887, - -186108.97183798853, - -186102.11742970758, - -186268.66597161358, - -186147.42151117936, - -186134.44552984045, - -186116.22553471103, - -186240.78791235245, - -186220.0874551632, - -186211.2465119336, - -185721.6361586473, - -185731.8584489242, - -185807.2781334582, - -185677.78297079756, - -185777.8946131462, - -185711.15775236682, - -185463.91840826042, - -185433.64652967916, - -185662.1639660892, - -185822.67958441644, - -186298.50636453225, - -185689.56644176925, - -185438.26027515047, - -185409.17303563593, - -186224.27135727915, - -186298.08317751426, - -186345.2599174619, - -186205.19783801437, - -186247.72530939055, - -186256.56822646176, - -186150.59933272027, - -186288.81160163097, - -187443.3928854305, - -187452.1772530611, - -187642.96896241207, - -185878.00221058106, - -185807.32743469166, - -185902.22732454303, - -186606.81926120326, - -187647.5690992496, - -186476.53578284683, - -186438.41734368665, - -186573.2937496868, - -186502.02138871377, - -186349.21861987398, - -186310.0223569153, - -186274.76857716416, - -186331.85276631886, - -185983.7434419839, - -185818.1346321836, - -186002.50966320807, - -186042.88912072591, - -186121.47925284848, - -186717.06241415057, - -185916.95262886243, - -185806.39721748504, - -185580.1522161938, - -185880.08983432362, - -185934.5985057661, - -186056.47685413636, - -187823.113834285, - -187877.20307305898, - -189116.18185272234, - -189150.4406044805, - -189062.64094765644, - -189084.98088599712, - -189112.29607800412, - -189029.52319166693, - -189143.4111983908, - -189055.97021726094, - -189166.74178145034, - -189245.6231883351, - -187672.05038897906, - -186892.24831707022, - -185501.22940075284, - -185887.9116084029, - -185852.81758394415, - -186551.7145795559, - -187426.84525135905, - -187378.69444328308, - -186788.20187772284, - -186763.38064184826, - -186701.82275168115, - -188314.138705119, - -187817.7468885494, - -188092.37659809837, - -188180.72176382353, - -188414.69558309155, - -188059.4601945175, - -188373.40505639598, - -188264.2195934443, - -188320.12878054316, - -188279.3082778884, - -188259.35815363447, - -188381.41438960162, - -188456.62670565912, - -188203.95744939387, - -188267.72042267103, - -189029.3114905367, - -189629.98277226143, - -189142.84215571234, - -188622.02436373147, - -188630.3315350438, - -185323.49054395297, - -185924.99338734476, - -185895.40664220214, - -187147.5761046197, - -187108.92789936063, - -187993.21676425092, - -187922.35810760508, - -187892.88679803116, - -187666.8726984889, - -187557.1706597231, - -186313.83578554614, - -188083.38799385336, - -187259.12778693333, - -187273.5342161505, - -187331.86667688502, - -187331.38102223023, - -187227.1136100382, - -187171.76294520684, - -187181.90006387417, - -187306.32934127536, - -187243.66628145642, - -187271.48480846945, - -187256.19230974244, - -185657.2917482269, - -185666.85028914805, - -185591.8222642259, - -187103.63428327104, - -188209.54055470478, - -188222.8670521776, - -188362.19832204955, - -187529.6417177125, - -187434.5731242961, - -188632.7958142112, - -187021.88931313905, - -187431.9043514244, - -187477.0269830232, - -187338.2293802138, - -187320.91315713827, - -187227.73220051124, - -187345.71837811806, - -188439.03343750766, - -188408.0615378219, - -188313.1182042166, - -188352.28480591113, - -188446.83179684373, - -188296.7781034227, - -188380.76386155013, - -188414.5214674675, - -188231.59919262267, - -188324.05487145262, - -188410.1995272695, - -188137.98152500016, - -188169.61385914954, - -188305.0884720353, - -188124.0392341609, - -188417.5878908665, - -188385.25230416303, - -188342.91289083599, - -188370.81252883916, - -188341.34483720383, - -188301.141957558, - -188351.53178116586, - -188385.78051688513, - -186621.86407557828, - -186437.83235122028, - -186648.74080964338, - -186693.89186781415, - -186609.15991015043, - -186541.94642658572, - -186694.5596479308, - -186029.39161897544, - -185985.24596467766, - -185111.35544820773, - -184878.2925505224, - -184900.92048438126, - -184980.95907930352, - -184830.82603230205, - -184985.15467209017, - -184866.84489150278, - -184971.35089743548, - -184817.5826812654, - -184926.39571750653, - -187944.50525826582, - -187830.56628117207, - -187777.7246566672, - -187860.09405448032, - -188340.82871420533, - -187565.0428723036, - -187698.48595699875, - -187787.3662495655, - -187844.7862156998, - -187744.18704166426, - -187702.7046883214, - -187652.86349496595, - -187596.90565444194, - -187363.10526503893, - -187316.0784152729, - -187391.86258957486, - -187448.2440636445, - -187532.07471562567, - -187466.55375368948, - -187455.6494347709, - -187150.13887341777, - -185776.61739803432, - -185680.40854732087, - -185830.5389118821, - -185650.36841039386, - -185677.2673627574, - -185485.39401094842, - -185469.22223657562, - -185206.36499600124, - -186018.1826105063, - -187401.52853024635, - -187570.49869336904, - -187541.9398725673, - -187030.8972838196, - -187083.4526611306, - -187603.82918211873, - -187647.28536999365, - -187308.42593291332, - -186478.90406636745, - -187768.17273301232, - -187767.25461447696, - -188326.21750175883, - -188576.2471463381, - -188259.41185450985, - -188247.40100032825, - -188286.73832435787, - -188135.24485311715, - -188421.00379537063, - -188338.0087478835, - -188259.29964565398, - -188174.46166792992, - -187733.72742661694, - -189209.24392154833, - -189128.66516890543, - -189089.44703730565, - -189062.26751784116, - -189006.18627960136, - -189111.3455266276, - -189183.16372887848, - -187208.4193053007, - -184875.45037648498, - -184932.71484965115, - -186360.36121976856, - -186390.50909656734, - -186320.02787605638, - -184958.27162066122, - -185033.19564760168, - -185026.3672666458, - -187316.7533220786, - -187314.78830484283, - -187883.4205209049, - -187808.0234352976, - -187776.47222745066, - -187832.17732583472, - -187638.8520412594, - -187656.30212836852, - -187855.14822512827, - -187775.23649809035, - -185541.74694908792, - -186776.31835431908, - -186729.0680799888, - -187779.0215989265, - -187810.13455863777, - -186667.31905664725, - -186561.9599579625, - -187383.1444426275, - -187447.61429908752, - -188454.13766259872, - -186964.5945298959, - -188063.1798418329, - -188001.539550981, - -187993.0192754519, - -188024.4130746416, - -187747.9444130807, - -187744.0116635731, - -187731.8432907234, - -187573.80466904546, - -187598.80645447352, - -187596.5046491663, - -187288.80200411892, - -187262.42396248772, - -187561.7118743889, - -187419.58663264677, - -187402.7377700646, - -187339.4240354632, - -187316.92185478634, - -186977.2543088253, - -187878.10399634237, - -187863.8697123179, - -187890.12675137995, - -187814.57497653816, - -188215.60907166445, - -188280.47213881285, - -188236.56312966373, - -188210.48406885206, - -188193.0718934871, - -188271.17600125467, - -188293.4502131511, - -188171.78614487077, - -188012.6788621272, - -185655.59341981533, - -185736.52136136606, - -185770.88788624728, - -185697.46901445196, - -185414.48586402094, - -185132.4642161289, - -186356.13856033777, - -186313.2958451689, - -186338.92011198975, - -184516.72003001926, - -184843.76024899518, - -184933.89129201812, - -184021.75602492446, - -184691.19229069614, - -184152.9240079309, - -184482.14613425103, - -183953.893675741, - -184469.7626795134, - -184344.23325082078, - -184103.1688565142, - -184685.21209432156, - -184415.6816187155, - -184632.38804639404, - -184375.86977942512, - -184332.48851433082, - -184723.2742356617, - -184005.75934572695, - -185281.13137164246, - -183999.60156087438, - -184625.9060468856, - -184466.14155302377, - -184542.5949496982, - -184302.81502155322, - -184560.35288850742, - -185118.94034561815, - -184086.80238717035, - -184046.9710787171, - -184809.0256036502, - -184399.0840219996, - -184391.88672906658, - -184053.19035581584, - -184512.93542301055, - -184548.98355077006, - -184938.66553901948, - -183986.1946205672, - -183956.9061762835, - -184572.61247797642, - -184674.4397575011, - -184157.5174739141, - -184478.13298193726, - -183878.92287719354, - -184826.67048045195, - -183926.29882842753, - -183984.95380032572, - -184517.13018578722, - -184534.56925160962, - -184964.8159797254, - -184359.2583782949, - -184454.54429874875, - -183922.4251984298, - -183983.12872461032, - -184448.92155459523, - -183926.65394185428, - -184483.14178490062, - -184459.0371071663, - -183908.0265364355, - -184093.90873268884, - -184448.99616662858, - -183772.9734046665, - -184052.96519921636, - -183918.1878761729, - -184098.43718922336, - -184056.83511514793, - -186797.6920016611, - -186764.78961016686, - -186606.74246421392, - -186814.08319625797, - -186841.85064924235, - -185229.98445879115, - -188223.46779498976, - -188109.9241793382, - -188213.9164635894, - -188205.49509758296, - -188211.13477789238, - -186979.2569175904, - -186921.99192275654, - -187768.56183739353, - -187794.3370978308, - -188356.18496868218, - -187548.05692883665, - -187406.00798270156, - -188336.9253777015, - -187323.43987749555, - -187120.4632982402, - -187105.4559362055, - -187186.98604338866, - -185016.98524079414, - -185085.52919270555, - -184987.4994595672, - -187742.4789028903, - -187594.73212482024, - -187526.96904194946, - -185580.45179848326, - -185344.8813752901, - -185852.06992264595, - -185836.92063664558, - -185725.27257533383, - -185784.19337082037, - -185614.49407683435, - -186964.24290234642, - -186779.89753024382, - -185624.99907570484, - -184719.94581504792, - -184726.23986392902, - -185955.71425621217, - -185838.49510347802, - -185787.33131372032, - -185765.99863251753, - -185817.8275685583, - -185963.7812395475, - -185746.10347257685, - -185842.28988354502, - -185790.03574118888, - -185826.68751853835, - -185733.232588588, - -185937.87729888412, - -189368.39644194843, - -188481.58842989343, - -188436.02662832712, - -188325.26049889467, - -186771.04894559522, - -186697.15984983026, - -186693.21655215652, - -184892.2726260721, - -185567.8690752443, - -185578.18959431755, - -185583.02070754246, - -185562.19137743715, - -186403.77082742343, - -184575.60851572294, - -186874.65690847478, - -186891.23996141268, - -186834.68317631911, - -186910.4333978544, - -185651.45994159847, - -185623.0827940337, - -185632.32875706351, - -185666.31528947095, - -185554.52363601752, - -186288.04758386785, - -185753.3971158193, - -186310.58059116386, - -184616.7688318368, - -184401.87544151273, - -184525.4736316065, - -186276.35195535765, - -185972.8434477619, - -186838.5032892438, - -185727.61304680264, - -185697.17376918934, - -185798.98620961388, - -187642.51836253164, - -187764.57816116777, - -187542.06987581123, - -185293.2187831642, - -185903.43875753888, - -185785.14838709997, - -185973.87764999818, - -186067.0862167175, - -186158.97877465814, - -185989.4316304029, - -186114.6936778866, - -186055.8109308676, - -185291.57756024352, - -185048.40507163212, - -185076.47558780372, - -185092.58870926997, - -185301.4444383572, - -185242.82400176267, - -185140.83648854677, - -185157.6814537348, - -185155.94466425403, - -185208.11002613642, - -186565.59087154226, - -186480.25347723064, - -184448.6407484703, - -184666.32580902395, - -184668.23630678613, - -184495.94596649605, - -184482.70184172114, - -184478.35050815623, - -184512.32520094118, - -184261.5465761945, - -184634.49566379888, - -184560.19984549735, - -184670.23840157985, - -184371.61625666966, - -184578.3021335712, - -184565.8562626501, - -184563.241697051, - -184561.60399324592, - -184436.1199384927, - -184432.395119436, - -184361.95124302662, - -184540.22533401122, - -184570.8246640068, - -184324.04454522333, - -184444.7061040916, - -184434.7383033702, - -184412.2399147937, - -184385.86924617414, - -184647.3278054887, - -184525.70918441145, - -184452.65560742965, - -184455.16677151565, - -184602.90357108583, - -184335.66035031216, - -184329.45753261627, - -184396.19705080253, - -184415.37550663672, - -184603.9470967293, - -184259.92373122973, - -184555.74403726184, - -184468.20206422772, - -184378.76424846865, - -184349.91600976678, - -184416.8796289699, - -184531.81137137485, - -184365.4363055658, - -184522.8186824892, - -184214.71754588166, - -184462.5055205388, - -184630.82440155972, - -184268.241804971, - -184387.83293723778, - -184263.5080821243, - -184299.18997492632, - -184595.47202338692, - -184367.0304015083, - -184503.80352402254, - -184699.5789652916, - -184396.12613862206, - -184558.88043573382, - -184443.74404577023, - -184532.7557788167, - -184485.79925380167, - -184585.6667816663, - -184535.5438101554, - -184312.79009042695, - -184469.3966283573, - -184380.98245245064, - -184529.99194847723, - -184415.93947968376, - -184490.68544655846, - -184353.56639420363, - -184403.17947942961, - -184239.7978809641, - -184472.87944490157, - -184437.15623543007, - -184323.3322352525, - -184343.2045702599, - -184626.3527931452, - -184462.3167709153, - -184533.35011545193, - -184436.2619308537, - -184431.31792950505, - -184608.74823234757, - -184525.2715713245, - -184325.9582852508, - -184428.10464539006, - -184371.6132084216, - -184211.15437910138, - -184572.96927713798, - -184583.2702726393, - -184430.24335061625, - -184403.36231750465, - -184453.03854239488, - -184385.02662899948, - -184588.89026853853, - -184470.32547589156, - -184590.07805586595, - -184541.99719453312, - -184491.53542994565, - -184482.47262135896, - -184411.4790215959, - -184521.32453058366, - -184314.30332101538, - -184366.10316420314, - -184303.13965177367, - -184460.4007301304, - -184666.42142408775, - -184598.78127871666, - -184634.43962006122, - -184510.82978744808, - -184295.7969173079, - -184270.03347038655, - -184562.56576027544, - -184335.1636910743, - -184393.67580475452, - -184415.05527906748, - -184359.19078144277, - -184517.4784958797, - -184361.13898158647, - -184483.3183891127, - -184530.67200001556, - -184319.54353745113, - -184442.3560432253, - -184343.06019309026, - -184499.12636936383, - -184309.25597490775, - -184609.18084080587, - -184650.4287460847, - -184514.18980174183, - -184624.57672919738, - -184479.1033492302, - -184519.87542979151, - -184441.9149540535, - -184632.72769793158, - -184497.03806767587, - -184384.12166117266, - -184280.1057777649, - -184496.8931498738, - -184398.13435960136, - -184297.99249258768, - -184338.27076041044, - -184415.7362226067, - -184546.95625114103, - -184457.04009611104, - -184372.91083005106, - -184347.8071741038, - -184518.7451596348, - -184406.7120236349, - -184293.26120611504, - -184266.78907644618, - -184209.51427339256, - -184398.74708779794, - -184614.44298991206, - -184632.3570707878, - -186007.6159161239, - -186163.37174399567, - -186107.7087016988, - -186053.46910530954, - -185967.29699299918, - -186292.72724037222, - -186455.910536921, - -186026.151084583, - -186855.24147507292, - -186711.62852341603, - -139341.949669956, - -139539.797746249, - -139146.21128232183, - -139565.22959641, - -139465.3572705693, - -139296.28092584724, - -139274.0018388218, - -139295.3614578835, - -139258.7541785887, - -139233.79058958867, - -139465.6696429816, - -139421.82453819446, - -139314.36540387178, - -139471.37099448388, - -139322.61723275625, - -139254.49879413686, - -139152.07069639352, - -139446.30071366948, - -139338.01794312976, - -139349.40202200913, - -139454.68894926444, - -139556.73393765689, - -139401.883376087, - -139542.7100989013, - -139525.78047562818, - -139405.61393328427, - -139426.94510950823, - -139521.39146743398, - -139421.50755701648, - -139349.08980886897, - -139525.91943066413, - -139272.999764756, - -139272.36405853787, - -139336.093312044, - -139246.6141244061, - -139523.06559060336, - -139247.63421479816, - -139207.23911923319, - -139476.1859444214, - -139329.5233097719, - -139294.17738416753, - -139215.67203308453, - -139343.36984284074, - -139356.00664369308, - -139261.90354299522, - -139184.40763990118, - -139349.4517755712, - -139476.30021379262, - -139542.46177825486, - -139219.37353035068, - -139431.9287754304, - -139403.71827377586, - -139622.15994571723, - -139284.25180573002, - -139218.83581593077, - -139644.58808539595, - -139222.4936281499, - -139420.3443880718, - -139486.84931904363, - -139275.2295283498, - -139592.2183367796, - -139230.0369023893, - -139470.57660551192, - -139300.0220610434, - -139449.34942189485, - -139256.2653134632, - -139514.16899338784, - -139255.36501145226, - -139347.38841428462, - -139398.2862961737, - -139186.35936738102, - -139422.8248009617, - -139371.6788113676, - -139225.554311968, - -139267.33349575038, - -139318.1970961605, - -139569.97881076875, - -139270.18681502272, - -139325.29900676035, - -139340.60702624888, - -139291.87542162067, - -139624.6153460218, - -139676.67233930697, - -139375.54836322943, - -139384.8347452151, - -139550.11749199033, - -139375.36967259427, - -139348.05547720563, - -139257.18421795493, - -139254.19065915552, - -139280.63467425137, - -139453.21013689402, - -139222.95188000842, - -139338.8615734688, - -139127.0662061807, - -139201.34117110627, - -139332.2127012205, - -139324.84427304813, - -139250.52794257455, - -139481.79335763532, - -139315.25978792255, - -139302.56149450256, - -139375.76431838053, - -139305.36694469122, - -139629.7013795666, - -139245.1631113287, - -139150.7296967715, - -139602.53344158875, - -139430.88631425935, - -139249.79431222109, - -139268.95938093786, - -139399.45535473176, - -139521.13313974865, - -139562.00160215882, - -139296.22896657095, - -139181.26970845836, - -139531.90105065668, - -139624.8964741382, - -139440.99814282567, - -139172.61805303066, - -139252.62835533492, - -139239.7146275747, - -139406.58475620614, - -139305.65388160577, - -139245.6143086338, - -139362.49801767562, - -139368.9630914053, - -139496.4003878001, - -139210.4343189794, - -139251.7462727586, - -137645.21150798537, - -139347.1583152886, - -139185.43947442787, - -139141.95977890037, - -139374.80029288903, - -139298.21212116178, - -139245.84191401702, - -139386.5195070693, - -139458.52947640378, - -139319.53739196222, - -139500.62502624292, - -139269.75368532154, - -139353.4017776092, - -139497.7060077906, - -139392.14969518423, - -139465.92291392805, - -139446.17035811715, - -139288.9652240138, - -139258.63230897923, - -139222.34616055127, - -139579.0114335206, - -139504.72005689488, - -139301.92562235743, - -139323.9460419651, - -139301.641083254, - -139487.4178243815, - -139368.99379823424, - -139341.07849414786, - -139230.70690965184, - -139322.4115244643, - -139499.0742565992, - -139299.58894052787, - -139361.88864313313, - -139552.7148175742, - -139319.57765505658, - -139452.5128782478, - -139262.00402649786, - -139325.02744581705, - -139337.2275268746, - -139407.11302883684, - -139273.62445480048, - -139199.82122981313, - -139293.78939414152, - -139312.25160916877, - -139309.58979877408, - -139287.7030189087, - -139455.60678241128, - -139238.1184562021, - -139561.07093915364, - -139356.6211330608, - -139481.56579861138, - -139205.18843565695, - -139293.35993355856, - -139500.82792815822, - -139381.53581003318, - -139272.1101007574, - -139204.18767959758, - -139466.64476026874, - -139244.23799759592, - -139412.313857633, - -139490.90714418553, - -139564.66187716788, - -139419.0209359383, - -139195.77514016427, - -139620.6116018754, - -139403.47462324586, - -139390.86121724633, - -139278.73799679236, - -139355.46728532106, - -139325.20445922078, - -139268.90384384684, - -139368.21065153804, - -139243.84566835393, - -139439.8644722435, - -139311.07528284538, - -139452.66971040476, - -139410.2270479437, - -139233.21359476962, - -139386.56646685992, - -139330.93814001975, - -139292.83803425037, - -139565.19409284645, - -139280.11347929307, - -139371.4788165129, - -139255.5205051406, - -139380.35416142584, - -139440.57369675537, - -139256.15369253952, - -139350.5393342178, - -138292.50237790353, - -139393.05546993954, - -139343.99282516513, - -139492.56377327073, - -139328.0534871222, - -139590.06090134796, - -139268.65204027394, - -162116.20043753972, - -162125.48737219273, - -186210.2538179402, - -186189.87064224097, - -185633.56148535747, - -186484.6927396635, - -185717.30202552347, - -185565.68090042786, - -185436.73528009508, - -185387.24181644092, - -186693.21580687084, - -186817.60492868512, - -186771.81868420233, - -186646.66034112757, - -187059.63779786762, - -186549.29909114336, - -186609.05910111836, - -188163.4372575625, - -188178.96030772812, - -188757.56169839122, - -188351.81043164252, - -188249.63103895306, - -188730.12048244115, - -188276.72026730192, - -188189.30416656632, - -188192.0034322741, - -188290.9601897545, - -188719.19122749128, - -184743.18095205686, - -186510.77814177045, - -186573.3663340251, - -186606.6604376666, - -186376.56840758125, - -186481.02628071915, - -186270.72457911135, - -186368.82373217016, - -186959.9607940277, - -186229.18141067243, - -186563.95497765776, - -186483.8946055219, - -186511.39743435007, - -186382.5747826665, - -187046.01116874782, - -185485.81598355123, - -185498.34392864152, - -185701.20064437657, - -185624.12085151995, - -185825.18129384934, - -185792.9261615262, - -185777.55867690372, - -185599.70858937444, - -185694.282919335, - -185472.77572732724, - -185549.58620082302, - -185819.18617559347, - -185751.22791972532, - -185694.7882635787, - -185592.74158341286, - -185714.6501823629, - -185796.95803472877, - -185665.73353903665, - -185590.6028889697, - -185680.08075913816, - -185578.91825066306, - -185742.93606300268, - -185770.52060652812, - -185623.07925557217, - -185822.61530116087, - -185511.56454960397, - -185722.02131296776, - -185684.72951200834, - -185546.35826834274, - -185650.08701435704, - -185542.62007957482, - -185750.34116926818, - -185562.20409519147, - -185578.7055139462, - -185625.67626786084, - -185642.09079542043, - -185662.28784714767, - -185541.54208441218, - -185668.33577293195, - -185750.3502888854, - -185861.49673175454, - -185708.1687654314, - -185618.98439702013, - -185518.24947672113, - -185835.7597285131, - -185773.82512637385, - -185512.78839085187, - -185652.0261395966, - -185746.51091015068, - -185873.04603168063, - -185361.677162874, - -185411.21735269792, - -185521.48335125647, - -186857.89701196033, - -185379.7874590432, - -185314.1328971909, - -185396.9854106273, - -185739.1249763607, - -185362.75844820152, - -185281.317667854, - -185272.70789378206, - -185291.36523286297, - -185174.38186064654, - -184746.1499818466, - -184689.754206081, - -184843.0177536058, - -184853.5029479663, - -184718.15641227114, - -184800.69552071634, - -184707.82276925643, - -184774.76972403165, - -184826.2852678662, - -184771.05300911746, - -184684.19434018733, - -185078.36462542813, - -186687.5390903128, - -186171.58567249685, - -187787.56778004483, - -187824.5134312553, - -187833.02563482567, - -187581.7153446357, - -187652.55658732413, - -187580.99353856346, - -187754.07494608234, - -189535.01243196902, - -189425.32230335136, - -189312.48116427055, - -189513.44740838156, - -189517.99575540732, - -189944.012554813, - -189496.79918659473, - -189469.04376733972, - -189362.47419392664, - -189382.47630280166, - -189485.70992618654, - -189559.7791311184, - -189500.13200693708, - -189363.56864523052, - -189453.44844629106, - -189572.48058974993, - -189475.58635906797, - -189526.51874136768, - -189367.89125734873, - -189541.99521682394, - -189567.65578797, - -189471.45745863195, - -189366.884398309, - -189599.46915367024, - -189455.07428863845, - -189511.27264576766, - -189580.51999570787, - -189452.41670386208, - -189357.50921074985, - -189441.34490278744, - -189338.2129481716, - -189539.74164709073, - -189596.23961239535, - -189439.38497924476, - -189423.64743936853, - -189409.86495387822, - -189539.70128887953, - -189667.71460354235, - -189593.34528908966, - -189550.91913873702, - -189351.29030582856, - -189944.03349898005, - -189421.9621471471, - -189523.16925353085, - -189362.616609502, - -189550.7519103663, - -189303.51340100932, - -189504.79772117123, - -189478.73813235975, - -189513.39599368742, - -189335.5119015967, - -189566.15070619906, - -189492.97056199546, - -189370.19960247193, - -185013.49245940326, - -184958.53058641133, - -184935.10362539484, - -185074.06093464053, - -184859.90571038926, - -185383.19785552978, - -185727.50454600956, - -185535.53248590635, - -186134.11497462608, - -185680.67525457422, - -185536.38613328367, - -185655.1626902235, - -185488.5778872063, - -186105.887330311, - -185976.58162628958, - -186073.11253527744, - -186128.44688249985, - -186033.4105802999, - -186002.9429366717, - -186045.44966286444, - -186081.69116184756, - -185660.47909749488, - -185707.75565992156, - -185700.99602275767, - -185718.84276913418, - -185902.6810428331, - -185956.2569658538, - -185833.31614885287, - -185851.9149913291, - -185927.02764805633, - -185956.9814913556, - -185864.94860133113, - -185974.76542021832, - -185843.3464556168, - -185802.44778285624, - -185754.544341611, - -186863.0905598625, - -186747.14508188295, - -186786.29748301074, - -186598.35931928424, - -185525.00035815442, - -185444.044824558, - -186566.67634397448, - -185354.45827997458, - -184622.6678207158, - -184757.69014603368, - -185572.97533470273, - -185426.46129555986, - -186389.46830649345, - -186349.721133472, - -186355.21655197296, - -186513.88131954975, - -186461.71104419266, - -186495.60474119912, - -186499.94535950987, - -186065.51198935235, - -186213.8074190881, - -186160.78639569957, - -186112.10093216717, - -187073.89756594264, - -186996.16233734277, - -186997.73649561932, - -186937.89091646543, - -186864.95551788062, - -186985.11266736986, - -187030.91302532048, - -186947.00283212372, - -186997.2675516971, - -186875.9473745203, - -186901.92526942323, - -186900.29593926048, - -187024.62336807686, - -187037.0011573454, - -186832.6725820172, - -186813.1846090411, - -186614.42390696477, - -186560.72865754293, - -186461.4445482228, - -186550.8345017166, - -186570.36775560552, - -186423.99947252453, - -186628.01342634475, - -186475.36638154497, - -186064.49513448935, - -186061.0704683533, - -186156.7436722801, - -186019.09209682065, - -186017.97165171077, - -184373.86341036516, - -187019.55647718406, - -186971.5333996734, - -187500.48780981993, - -186878.72794609106, - -187396.02141762438, - -188618.1767619867, - -186571.8229187881, - -186630.38236103597, - -187104.66672028726, - -187258.6264260895, - -187483.32473075076, - -188300.89497706314, - -188042.5665423474, - -188364.38063477044, - -187286.4447786102, - -187200.34425699944, - -187965.5292712589, - -188225.16941637502, - -188062.36969725473, - -188181.734542407, - -188155.6659757379, - -188111.17360157988, - -188128.15679037262, - -187472.995221879, - -187574.469287988, - -188062.32220423166, - -187894.01688021977, - -188099.19669860823, - -188601.02966071616, - -187946.30083110215, - -187939.07366045075, - -187903.16231886458, - -188040.85490399896, - -187860.1481306559, - -188160.71996131094, - -187432.15774098889, - -187525.83126370964, - -188031.27587781637, - -188070.40997344436, - -188048.3992797907, - -187895.89321173978, - -187936.34066587713, - -188155.82804223945, - -188130.31137840738, - -188120.22345911132, - -188032.87803354842, - -188172.4473275845, - -187808.99921337265, - -187967.87420157884, - -187734.2241532564, - -187631.17759388033, - -187665.10987331756, - -187571.98956801443, - -187705.53688735073, - -187482.80309790745, - -187551.0033509855, - -188658.0072073565, - -189077.79649620972, - -187731.77787177297, - -187759.8314365375, - -187692.0166453802, - -187044.02292752767, - -187058.71596401595, - -187088.50568167077, - -187073.6774906163, - -187239.5588897707, - -187170.77976082207, - -186801.35615984973, - -187206.43231087644, - -187147.2617761165, - -187156.6127847207, - -187288.92506628836, - -187242.12665091688, - -187173.12966849466, - -187092.16430615127, - -187263.40330149935, - -187369.76914685333, - -187198.53043071972, - -187165.6819904993, - -187252.84288585366, - -187210.98676202566, - -187153.50395988487, - -187277.2067933512, - -187342.80854711783, - -187068.89280375512, - -187238.5009002487, - -187216.975043701, - -187109.7384653588, - -187259.9476909209, - -187308.82684037564, - -187159.23609979774, - -187363.1881956749, - -187159.41832586098, - -187410.99982117375, - -187606.8809797769, - -187444.6011580884, - -187390.00271703285, - -188118.10121137855, - -188058.55113991152, - -188152.38460645571, - -187998.2545058029, - -187975.58317137446, - -188204.5488536757, - -188186.43905492313, - -187962.60318830537, - -188107.7357415216, - -188164.08029550806, - -188015.52564658516, - -188145.6956721136, - -188116.4163078441, - -188629.10826848733, - -188615.4770908332, - -187617.20728946448, - -187778.39851127946, - -188244.79326966844, - -188213.14960795594, - -188231.4342562094, - -188113.22548338465, - -188023.6918304611, - -188262.28974807056, - -188215.08406320887, - -188272.12758768487, - -188247.52374121372, - -188234.36159403733, - -188185.72950550105, - -188235.01025868888, - -188188.26732140826, - -187106.90783512246, - -187129.68155894056, - -187291.27141208755, - -187309.56083654592, - -188031.80187769613, - -187966.1524006884, - -187974.4559084142, - -187907.4340805515, - -187767.69283004745, - -187180.89797155827, - -187226.84036497626, - -187060.70491358606, - -187284.9913843901, - -187186.54130078974, - -187275.69818428368, - -187867.79057975026, - -187990.37417889741, - -187368.6219077213, - -186143.80639793802, - -187491.1668464797, - -186533.40398627482, - -187180.10508663693, - -188912.60302975413, - -185478.86967573757, - -186026.48205634058, - -186004.81625674714, - -185520.730759067, - -185998.5887411339, - -187137.15198455175, - -186802.3568031418, - -186868.89558539094, - -187655.25025753496, - -188776.08503380354, - -188714.40557555703, - -188312.61881360278, - -188175.30943800946, - -188163.88067313796, - -188226.39056838182, - -188209.27391620574, - -188335.63051938498, - -189088.68284567073, - -189075.73849338002, - -188951.38770398786, - -188963.77157590713, - -189065.25002395606, - -188951.75753479835, - -188905.5182702426, - -188940.43452731014, - -189039.75779005556, - -189206.12228753112, - -188851.90860081342, - -189009.33129113074, - -189075.7496586295, - -188914.1058596282, - -189044.50009148906, - -188978.63723458152, - -188869.1337570157, - -189039.16739681517, - -189001.4557504514, - -188915.3021854897, - -188715.59088057993, - -188811.45728948622, - -189093.52694899408, - -188064.28392279483, - -187758.21727978287, - -186958.81639775305, - -186907.28656468532, - -186927.36304929492, - -186672.81797529917, - -187707.60820000168, - -187504.85470640293, - -188023.84131581298, - -187790.5245520355, - -188012.06379015357, - -187675.9578640814, - -187970.69994692729, - -188070.52866315134, - -188065.10539432376, - -187968.263731226, - -187700.7506709641, - -187765.9490496175, - -188079.28387346116, - -187859.43582945326, - -187881.72894882134, - -187846.40461867992, - -187850.35451233227, - -188149.60791583278, - -188022.7222170089, - -188255.90003583845, - -188221.7088630824, - -188193.52566727533, - -188355.29507459403, - -188312.87042909442, - -188128.3711568641, - -188355.54500076355, - -188736.05243360804, - -188740.43423724885, - -188813.8225883926, - -189133.8473924533, - -188770.00276586786, - -187738.94090615874, - -187912.43204192858, - -188179.3106533003, - -188134.73671238107, - -188143.66245138436, - -188187.54601173053, - -187975.5749715801, - -187947.11070160166, - -188181.5560967198, - -187883.27494840516, - -188169.70603632976, - -187970.877541831, - -188133.03987872423, - -188110.62617021287, - -188151.5012872308, - -188211.38351583906, - -187925.41207692228, - -187993.2042355374, - -188267.4433579352, - -188341.5637869163, - -188290.85103842587, - -188325.80348101287, - -189041.39569706662, - -188572.92778198744, - -188651.52337605663, - -188170.50337793116, - -187892.03383253983, - -187909.65223383403, - -188044.8103796621, - -188041.9401363172, - -188262.9817529038, - -188256.1065241927, - -188209.65683125617, - -188114.23360095327, - -188697.0393909679, - -188681.5607578964, - -188730.09509530946, - -190034.47824283707, - -189435.73444291795, - -190501.98770180898, - -190447.71814332827, - -188084.4049082775, - -188259.3724547593, - -188206.0236343385, - -188263.0862416689, - -187803.69675157015, - -188242.03582545792, - -188340.80377890947, - -188113.01612090584, - -188417.0385262703, - -188371.1353376313, - -188321.03177579722, - -188339.34322755944, - -188251.23458842657, - -188337.78581776284, - -188397.17051714816, - -188454.9590132297, - -188208.58303294552, - -188169.8318157927, - -188266.84959804747, - -187741.94817842022, - -187915.18145302637, - -187730.29858536096, - -187855.06171209805, - -188047.300018304, - -187808.78158663612, - -188004.16215920547, - -188000.00859777548, - -188755.66928509064, - -188641.96581119657, - -188742.29461186353, - -188705.16194427633, - -189490.00008750655, - -189693.02311333298, - -190001.3370355461, - -190157.89391110622, - -190149.2470879302, - -189853.4918559908, - -188341.7325242664, - -188482.59835269416, - -188516.73245045255, - -188462.29234457048, - -188223.6915529377, - -189325.9475189374, - -189443.62330827498, - -189362.4367816456, - -189658.36156726885, - -188794.21431317774, - -188577.9696506949, - -188698.27076012257, - -188769.9281353376, - -188620.52703365445, - -188670.32476137517, - -188707.42534730173, - -188712.10885138786, - -188702.73035210292, - -188711.29676749153, - -188103.12207565852, - -189495.15496592113, - -188845.87523352558, - -189032.4074763674, - -189112.60837969606, - -189224.72431987463, - -189055.63729894848, - -189078.20075112823, - -188970.86331049414, - -188090.16004640074, - -188001.36342649613, - -188049.5792653426, - -188098.1789861639, - -188168.62826092765, - -188029.9456644019, - -188084.14766681893, - -187984.70011229935, - -188125.29346391422, - -187981.62287282626, - -188040.22076810958, - -187946.41481497037, - -188064.20365215855, - -188024.33796311452, - -188016.9967920004, - -188156.43008065908, - -187984.27632270768, - -188060.64962766727, - -188017.1144187662, - -188113.48002990385, - -187571.6016396001, - -187064.19611193764, - -188444.14506902872, - -188879.3624434629, - -188491.01308587843, - -188422.62348726718, - -188362.80673320158, - -188367.2149491498, - -188059.13848447741, - -188141.38815636735, - -188116.1496857662, - -188396.4771118219, - -188173.86388179136, - -188086.05933701512, - -188212.2979830604, - -188225.63058791048, - -188192.74355890218, - -188174.69316455667, - -188123.86206640746, - -187930.403868511, - -188034.7860958726, - -188020.54736677188, - -188377.8601678689, - -188278.16470975717, - -187965.47459509477, - -188379.13752876033, - -188291.99341747075, - -188172.93746177154, - -187617.11614566448, - -187526.08903537705, - -187674.11098333378, - -187674.84914594653, - -187730.26368818164, - -187736.67929052594, - -187773.52054137996, - -187501.71133436213, - -187634.29116306888, - -187558.68805862614, - -187669.9562295721, - -187771.99177388693, - -186119.52079627474, - -186288.95960552836, - -185999.16203666863, - -188055.39603818467, - -187504.9066256753, - -186969.2603064072, - -187082.62729634583, - -187036.27923026812, - -188255.60873041113, - -187976.477714238, - -187993.00429935096, - -188015.18762576373, - -188502.16698048013, - -188537.83259610005, - -188176.72236609916, - -188150.16400430968, - -188490.24496475342, - -188463.08599731518, - -187842.37642177322, - -189950.42776230097, - -190060.46897811978, - -189981.01291727906, - -189948.99978218455, - -189877.31094941634, - -190014.67649279692, - -190053.96902679597, - -189989.4594749927, - -190083.1171838038, - -190096.78467347255, - -190096.07678832914, - -189877.19470812628, - -190082.79529512883, - -189883.13957683812, - -190115.00855424744, - -189980.07865196207, - -190074.83957112802, - -190002.89388120713, - -190028.31976652934, - -190003.88761541533, - -189907.48300156422, - -189952.45096025168, - -189952.9122595734, - -189970.4446921895, - -190136.23241432256, - -189913.2901080308, - -189912.5972757215, - -190001.55681149926, - -190018.83290028255, - -190055.39543139332, - -190102.7516358813, - -189863.3993587257, - -190115.46594863496, - -190023.95702336595, - -190012.38051216485, - -189955.59784194958, - -190016.798744122, - -190038.4192383941, - -190021.38597195703, - -190027.5122056294, - -189925.09260238602, - -190005.9285941052, - -186723.40654902256, - -188894.53982702826, - -189183.9255548992, - -189128.86816413907, - -188774.29128529222, - -188377.4874670383, - -188384.8221014744, - -187892.99204450037, - -187939.69243235173, - -188060.7588005113, - -188141.4683259749, - -187985.66986119872, - -188016.84167383236, - -188137.77621320283, - -188059.75644058318, - -187963.3746181554, - -187912.61343497797, - -188088.04522687456, - -188075.4069209078, - -187967.12879439283, - -188090.49990946325, - -188001.86127453632, - -188048.6921698139, - -187956.53599492338, - -187898.34942572337, - -188006.12427452058, - -187862.9006513407, - -187947.29186367439, - -187806.00028568978, - -187983.9730009755, - -187934.93717959968, - -187909.29798849218, - -186621.876169047, - -186692.4367868679, - -186741.5982248406, - -186723.82204225528, - -186331.92093130833, - -186279.27655188824, - -186388.903534561, - -188283.31659324036, - -188239.9298258223, - -188237.88964578896, - -188331.29169328697, - -187886.85685091044, - -187819.40370573246, - -187820.46863147497, - -187870.61997418042, - -187807.5058878382, - -187709.49216077014, - -187741.85674802802, - -188209.98314272103, - -188113.20511465575, - -188169.53042942294, - -187971.1856885119, - -187943.5654100888, - -188015.82954131006, - -187985.37244124175, - -188948.66413662076, - -190096.89096654434, - -189974.37047163243, - -189985.50358982256, - -190018.75625555322, - -189881.52640402465, - -189982.52573305275, - -190303.37435690386, - -190129.35138968015, - -190197.68125067052, - -190162.71323384313, - -190060.9219493719, - -190109.05857624288, - -189342.43960965818, - -190542.72404693422, - -190528.42189584312, - -190387.50133943587, - -190448.01691882563, - -190574.95327101208, - -190449.33451776393, - -190511.44661767114, - -190529.03440203832, - -190537.75501553333, - -189951.22738006982, - -189973.1446726601, - -190025.6059146946, - -188716.242548552, - -189704.3634728571, - -189777.36801090316, - -189592.89736085432, - -188356.17431058898, - -188274.34719061715, - -188129.64780031645, - -188133.9859146477, - -188187.3712458545, - -187998.556032186, - -188653.13430381866, - -188590.65193490608, - -188642.5915163027, - -188608.96821789932, - -188491.18481576003, - -188453.79791390765, - -187621.10380116603, - -187575.41147213435, - -187588.09756598267, - -187647.5494085932, - -187611.58499095225, - -187862.42691907028, - -187942.80643346356, - -187906.52592987043, - -188604.68535202384, - -189306.6357714241, - -189427.61078841175, - -189277.59357979376, - -189487.23133315498, - -189451.93310388672, - -189248.95882783754, - -189230.47303573164, - -189293.00424421756, - -189366.6038676548, - -189332.9999406152, - -189276.45932175536, - -189403.28546952922, - -189217.14323216394, - -189198.15043086934, - -189325.62242567082, - -189384.22659187752, - -189317.61864053438, - -188066.67095698978, - -189098.95554895798, - -188975.88092212117, - -189003.23537626144, - -186773.96651147603, - -186680.0988857744, - -186763.42703853172, - -188808.86236120248, - -188878.37097806166, - -189092.3160336398, - -189091.72331575488, - -189115.96574922363, - -189174.7824324944, - -189157.24885475944, - -188896.42384657034, - -188965.84803500844, - -188977.29955893577, - -188347.30539835, - -188507.92896134197, - -188383.06499636912, - -188337.7090878203, - -188463.68731936606, - -188464.30136542933, - -188438.85061418812, - -188519.72994095754, - -188078.68826342997, - -188147.73696519702, - -188179.73130929295, - -188126.95002996654, - -188067.732082051, - -186989.19017429496, - -186022.8484731827, - -186582.35956467458, - -186644.40821102815, - -186276.30897092307, - -186380.05426090743, - -186366.66193073316, - -186249.20162775152, - -186530.9497347801, - -186838.07892423088, - -186782.58239993363, - -186703.07900031318, - -188115.43138405305, - -186304.48945547143, - -185894.3650318397, - -187307.28028177153, - -187076.1453172014, - -186960.017269483, - -187191.82408836586, - -187097.05438409094, - -187032.18336904267, - -187633.5780712459, - -186980.52193011073, - -186835.21868742444, - -186834.48131419005, - -186896.63197455366, - -186898.4857403215, - -186783.15141955295, - -187003.82345200694, - -186930.054845507, - -186868.36430568714, - -183454.4556818976, - -183948.96667538802, - -184137.3540563784, - -184055.31954335116, - -183942.6631635848, - -183991.55361005352, - -184151.48218769403, - -184043.4298278558, - -184098.23387283756, - -184011.24318851618, - -184221.4732984055, - -184107.8627639706, - -184141.2115983499, - -183965.70838288227, - -184080.74407013148, - -184054.17977045127, - -184095.92236913048, - -183427.52450741653, - -183468.11246198523, - -184220.86336669532, - -183448.23675261464, - -183478.30434363155, - -184155.19932672151, - -184060.82188045702, - -183991.8487036277, - -183408.7996719894, - -184153.1514375469, - -184022.7059931264, - -184061.19109231277, - -183653.6949449289, - -183453.94049617794, - -186017.78871449898, - -188244.00313072064, - -187642.58450439633, - -187676.73784619576, - -187746.50016018358, - -187763.7880342417, - -187815.17680412173, - -187877.05060775447, - -187920.4490734947, - -186347.05945545353, - -187220.9163611917, - -187132.94513084943, - -188062.16660663078, - -188144.67010069184, - -187401.67452925173, - -187525.18521744406, - -186669.07004417825, - -185614.40716294627, - -185192.79185703603, - -185593.93006590506, - -185273.47420901168, - -185211.40111909146, - -185190.66664916382, - -185277.53611586575, - -187274.1302045654, - -187343.49249793775, - -187394.75452353517, - -187300.93102998807, - -187259.70142610237, - -187299.8777924226, - -187244.80180643054, - -187332.91403683388, - -186658.96281459343, - -186713.4375646213, - -188457.13629440215, - -188477.92284249174, - -188531.03886595092, - -188486.4372749181, - -188377.38130930747, - -183282.65685712005, - -183361.18161794438, - -183464.893368499, - -183433.51219686866, - -183454.83768123688, - -183269.02525615806, - -183232.39642749276, - -183309.3093745461, - -182087.23736153383, - -182094.36855869577, - -184069.6521547393, - -184147.62949476115, - -186140.23856401135, - -186153.994068847, - -188437.17592704867, - -185830.8351587531, - -186746.85165138246, - -186884.75829816138, - -185821.64538848578, - -185774.3961361211, - -185320.20394035542, - -185425.12264167838, - -187587.3618641956, - -188355.0198765514, - -188303.63550310052, - -188084.8572338393, - -187395.58003873198, - -187322.44828818025, - -187189.01895715407, - -186418.97489203545, - -184966.2533605747, - -184939.83808412577, - -184993.21116610424, - -184884.01447443964, - -185033.33272861876, - -184992.49271023268, - -185018.8411711607, - -184014.45332893237, - -184934.65343953003, - -184979.51429673051, - -189116.30601221605, - -189212.36051423496, - -189174.68517565948, - -189131.0165825411, - -189167.72369075686, - -189167.94071155033, - -188427.09207581004, - -188324.23665222884, - -188418.21913144834, - -188441.4650250465, - -188445.5181910649, - -188467.52659245866, - -188309.0577119622, - -188432.27960119525, - -188509.53908534927, - -188525.32217186975, - -188384.74779075198, - -188435.01343296896, - -188370.95224479612, - -188400.71709087957, - -188465.6069223673, - -188308.00977643783, - -188406.39216122098, - -188320.2791584246, - -188088.18070606928, - -188328.50499043753, - -188334.61613365755, - -188337.0013544444, - -188418.8611254507, - -188272.04429126595, - -188319.53228907965, - -188852.30706541648, - -188766.82769508022, - -188762.09396253395, - -188673.21619043712, - -169378.16013668, - -169344.14125408427, - -169393.17968203666, - -169416.96099860338, - -169551.3818453157, - -169348.52705148203, - -169359.83740548883, - -169545.8449313544, - -169324.49667951552, - -169436.0497249682, - -169490.59569541228, - -169603.0032231782, - -169405.62489197458, - -169343.7298139408, - -169589.86991772245, - -169356.23498042687, - -169545.28212240088, - -169280.9450788244, - -169372.553645448, - -169549.46033044296, - -169468.52331958243, - -169320.2863155955, - -169441.31671768497, - -169381.24488365222, - -173635.00926671873, - -169571.96017328865, - -169386.7535787633, - -169419.55932408103, - -169652.86980383957, - -169606.2546200287, - -169566.43337423858, - -169642.84989518244, - -169277.37511423865, - -169446.0290591557, - -169479.8007415065, - -169640.66377360295, - -169398.552777607, - -169492.6505170808, - -169303.42487485384, - -169438.62470300702, - -169670.358202471, - -169518.63445990958, - -169458.16723794234, - -169435.0519460718, - -169391.18343571847, - -169379.72481367842, - -169331.45299684268, - -169407.90694092953, - -169482.87945843037, - -169285.9559721673, - -169264.42577758324, - -169392.70401915823, - -169615.727825337, - -169495.95591972838, - -169588.04616772282, - -169433.95314637333, - -169345.47056011425, - -169496.50719911815, - -169460.09445462836, - -173634.2922040698, - -169300.87184353019, - -169354.53427482693, - -173629.4910453442, - -169330.76943894773, - -169519.96951494063, - -169501.82029113118, - -169610.62571105798, - -169324.25162713093, - -169326.57314930166, - -169431.85987472688, - -169483.31429722917, - -169538.3541819729, - -169499.22972979312, - -169404.3866338821, - -169511.19498936835, - -169649.91351843745, - -169287.2120591798, - -169311.3089851137, - -169438.71859283923, - -169355.24062342444, - -169553.1803424696, - -168624.87506894136, - -169372.41900998444, - -169449.22305063045, - -169292.06106073438, - -169144.59176013063, - -169444.63655704536, - -169375.8571831571, - -169381.80418022617, - -169399.62068739222, - -169492.64094444556, - -169304.5215244161, - -169261.65588238483, - -169329.1993639435, - -169695.5695061532, - -168758.49492464514, - -169398.69256838647, - -169358.1076510309, - -169420.13524775338, - -169574.74287326206, - -169416.57296196205, - -169515.2950036648, - -169310.57562489106, - -169537.50719481107, - -169316.58449546693, - -169448.7580978541, - -169284.00204185088, - -169465.03979915124, - -169333.68269487692, - -169296.56143188913, - -169442.20170846063, - -169536.4914924849, - -169474.90139630102, - -169626.45864951386, - -169367.87410591237, - -169476.10791408707, - -169513.68386334792, - -169578.66391360908, - -169346.72799167415, - -169299.96427660287, - -169453.17177729314, - -169376.77103179775, - -169406.5342543557, - -169474.3421468556, - -178055.41538814097, - -178014.1671556615, - -177981.96991200637, - -177970.49030488016, - -178036.43547562294, - -177949.15006345935, - -182247.59705571106, - -178163.6646337293, - -178131.0253649996, - -178108.70633296893, - -178202.65946718425, - -178085.69550089262, - -188482.95193410772, - -188419.5246448583, - -186709.57387613264, - -186834.0978550618, - -188114.69040843635, - -188021.61315320883, - -188144.41832691527, - -184941.34178302911, - -185444.45812838196, - -185677.50351590122, - -185765.7596655601, - -184489.2856165779, - -184454.01464139723, - -184498.4737922646, - -184573.2021564755, - -184621.93570408592, - -184465.9277614155, - -184029.80810323294, - -184605.50077799056, - -184576.40010769488, - -184627.64145343105, - -184506.37513977927, - -184609.0831377138, - -184677.96396018367, - -184664.23676982484, - -184556.3775650089, - -184550.4233071596, - -184536.88599997063, - -184512.64018821175, - -184543.452959208, - -185776.6914500685, - -185822.29164402644, - -185696.655354225, - -185760.94872793366, - -185846.41148709282, - -185909.15469419034, - -185637.4693084021, - -185652.67346685063, - -185535.5286475488, - -185602.36617438102, - -185573.4220194495, - -185521.9131599804, - -185472.62564099822, - -185760.40751850946, - -185138.2952496597, - -184720.63687979916, - -185165.7311987436, - -185893.34313629338, - -185936.0348898676, - -185250.60864012758, - -185649.41923234705, - -185429.39968634545, - -185474.01141745676, - -185687.14488378543, - -185285.8440935564, - -185453.97411013974, - -185473.5944232423, - -185345.18748309344, - -185420.4043875232, - -185496.81537077486, - -185067.60944469785, - -185436.550641823, - -187619.79836570565, - -188121.44388568716, - -188058.76541098158, - -188420.2067400686, - -186640.57850765003, - -183787.8778325471, - -183620.92374765448, - -183585.59515960552, - -183702.47064300528, - -182420.8485208509, - -183654.7560552544, - -183693.60669998443, - -183744.1802364832, - -183628.01772203547, - -183575.58455289324, - -183564.13613035955, - -183676.65146323718, - -183629.47499298933, - -183721.38596098, - -183666.4888270363, - -183638.88510177907, - -183774.8403863521, - -183728.9159629604, - -187943.03068637176, - -187976.53087558964, - -187948.27627186524, - -187693.25148113363, - -185511.4642967856, - -185617.06228111294, - -184099.48942748536, - -185271.49815979396, - -185091.71032325653, - -185177.44259645653, - -185280.3717521528, - -185267.68557543933, - -184652.76724765133, - -184548.04804199652, - -184618.82194938904, - -184588.43758881366, - -184540.4465197977, - -184529.68677437576, - -184527.59148972368, - -184603.30224533824, - -184695.73622553676, - -183856.76291758567, - -183923.04167683766, - -183920.46827459653, - -183942.46072287185, - -183966.14944940363, - -184022.37986115966, - -183858.53808757465, - -183856.8165942456, - -183783.75192537752, - -184021.05886616785, - -183734.7000156707, - -183874.32018150846, - -183834.41121000051, - -184004.2014556012, - -183959.7185885655, - -183918.43052226157, - -183886.46074349398, - -183970.12618582664, - -184047.8385877452, - -186182.73800954662, - -186249.61481778725, - -186297.75486173076, - -186324.0305926026, - -186236.53912128153, - -186182.5712881453, - -185953.14899281866, - -185141.05742456802, - -185439.13268669933, - -185177.60111052875, - -185182.7983091269, - -184974.97222906543, - -184279.90057619184, - -186236.2314711706, - -185215.91952611177, - -188370.1764330157, - -180909.745155569, - -180709.71261549313, - -180902.77547837683, - -179952.33000867523, - -180842.29239043556, - -179943.77813433905, - -180787.81029715057, - -179964.11953050675, - -180735.5598518938, - -180724.51318886082, - -180764.8170700024, - -180785.9780778761, - -180804.75158568795, - -180845.41459382957, - -180819.41967854003, - -179924.4116050648, - -180765.59250306184, - -180738.89765472096, - -180692.9880617934, - -180666.9615653273, - -180723.1250971798, - -180874.4925506424, - -179940.5474174767, - -180670.7264006914, - -180770.5721985639, - -180897.94932214296, - -180816.50719117105, - -180840.88607907726, - -180682.41488442908, - -180792.44149952132, - -180803.10102321903, - -180659.778327287, - -180717.96359535548, - -183788.99096273613, - -183779.16247176562, - -184347.65849261818, - -183714.67737531645, - -186604.72926858248, - -186567.5091645483, - -187463.35892346295, - -187475.19460358928, - -184991.80627054124, - -183461.60321590066, - -183706.9123006825, - -183382.93836771394, - -182388.11368171035, - -182529.26628902787, - -182549.07931419823, - -182425.7209298557, - -182606.63936888328, - -182486.48502463632, - -182582.6931146041, - -182423.89628454405, - -182443.7956614858, - -182486.5877240622, - -182475.17256004427, - -182825.80593338294, - -180900.60175741656, - -180824.8780152111, - -179926.86668937167, - -180827.0478808366, - -179917.67228537184, - -179903.54516782166, - -179893.4393245515, - -180889.41939093173, - -178623.59690207575, - -178554.08466333893, - -178436.7908829831, - -178558.0937103395, - -178570.64648304324, - -178488.27744802684, - -178691.44886841782, - -178564.94630361674, - -178563.48522728076, - -178717.23295975232, - -178442.469710615, - -178533.43895398427, - -178405.40053992975, - -178581.996633066, - -178750.33119243302, - -178518.2432508357, - -178638.1301594935, - -178549.44571791714, - -178432.0352583338, - -178460.23443320673, - -178462.3041424345, - -178511.13389375104, - -178294.2997167077, - -178542.3251145037, - -178428.43265563578, - -178524.70063209053, - -178652.93553051475, - -178564.5275489163, - -178711.00834272362, - -178593.38928498706, - -178607.60033410153, - -178697.5378154587, - -178496.6439016545, - -178516.70514832705, - -178173.96397881166, - -178630.87310248002, - -178507.01579040708, - -178474.2039992179, - -178492.20167515153, - -178637.20991508843, - -178464.27180037618, - -178577.39055378566, - -178405.1247219723, - -178601.60635392906, - -178720.07863024718, - -178607.70179973924, - -177980.3058143678, - -178516.96872389078, - -178455.55225062207, - -178523.4874214946, - -178559.66565811823, - -178654.88321266344, - -178652.8764789972, - -178606.5230669658, - -178462.88979660024, - -178505.99092471664, - -178659.89626082158, - -178495.2300096829, - -178697.93002062794, - -178570.20722506093, - -178609.4919362779, - -178550.05784523298, - -178679.05433494938, - -178439.9217113105, - -178541.75133386956, - -178588.50198710954, - -178609.18224746437, - -178608.5732692418, - -178641.31909922665, - -178488.30962670548, - -178657.90280830112, - -183289.93151228954, - -183242.92238719485, - -183255.82906837002, - -182978.78721471297, - -183038.58157721706, - -182993.2503192717, - -183133.59169112245, - -183172.54648983607, - -183115.6076721331, - -185011.84033188224, - -184896.9494846697, - -184966.17232256278, - -184963.36474706372, - -184720.55315674286, - -184789.59237810186, - -184250.11601459378, - -184840.94461722943, - -184982.25190169932, - -184925.3424128911, - -185021.8294439658, - -183109.4455208243, - -183147.2630049226, - -183100.15820011563, - -183070.48614592486, - -184756.1452888642, - -184826.45735488343, - -183341.5026651699, - -183257.84783702332, - -183511.68520968122, - -183328.08397366235, - -185068.01671399627, - -184871.46409474593, - -185052.07634225543, - -185438.75158188608, - -185459.31088253466, - -183001.6851454487, - -183076.80405507874, - -183009.4590377982, - -182979.24860315252, - -183374.7939359946, - -185093.7368725669, - -184998.6633073986, - -185068.85971572844, - -184943.5809181066, - -185023.88959588853, - -185082.0833365548, - -185148.40604299065, - -184977.44409740437, - -184997.31464103883, - -185089.27598983576, - -185089.0086389262, - -184902.62901699232, - -185079.38925215916, - -185230.35763149426, - -185048.74105525186, - -185187.47949728227, - -185150.70672626782, - -185132.0865388388, - -185142.57079867384, - -184910.07141996681, - -185010.9809112164, - -185055.58177579596, - -183319.82671109284, - -183343.52858918067, - -183540.0801197569, - -183455.08344399888, - -182897.35332880451, - -183031.3680288819, - -182899.68496868006, - -182951.00775120725, - -183009.0203452414, - -182969.49503841982, - -182961.8930869576, - -183565.39955803388, - -184719.2933805017, - -184852.54846837025, - -184771.7014457759, - -183238.2725594145, - -183287.3196162057, - -183298.64678428596, - -183179.063213912, - -183301.19264459712, - -183496.95058249735, - -184843.89469543626, - -185486.61372523938, - -185440.07638832257, - -184624.17550004294, - -184691.42044326675, - -184697.7108009961, - -184564.4704663814, - -184692.4146787554, - -184745.86688139816, - -184745.63052333257, - -184606.98123665425, - -184673.6351594657, - -184648.9263016337, - -184634.4057762235, - -184588.40026682435, - -184728.63779550133, - -184697.06720197387, - -184658.08630104552, - -184751.42939384596, - -184915.37938012218, - -184915.80229910425, - -184809.226434392, - -184878.41272612265, - -184781.15000342295, - -183425.42042761206, - -183491.17842973955, - -183394.46490438026, - -183482.59900076909, - -184789.43054132286, - -184840.87093100656, - -184955.71478210148, - -184853.88088084952, - -183488.3327404413, - -183654.62815247447, - -183170.48934623392, - -183544.22509648418, - -183609.01332193392, - -183346.06901967287, - -183224.1180654994, - -186119.49203913865, - -186217.65823101738, - -184431.29788077172, - -183374.18390449428, - -183323.66280121214, - -183408.2842664633, - -183404.54218882136, - -184125.37656993855, - -183193.80563843125, - -183210.86534053346, - -183068.9782319114, - -183158.49383680677, - -183278.76592303222, - -183433.48674636218, - -183536.10312163807, - -183372.0424666985, - -183231.82462614574, - -183302.02623710444, - -176998.64399938524, - -177066.8720413106, - -177022.6135091292, - -183161.23163489092, - -183049.5712780777, - -183453.48204868875, - -187890.59895818657, - -189168.76930062557, - -189017.94980528016, - -189051.82394498357, - -188584.48243914515, - -188052.25455199185, - -188165.97775520477, - -188142.36563635623, - -188219.55657425546, - -188286.52887175203, - -189084.5439991584, - -190481.18414111834, - -190194.37548906854, - -190619.62304985526, - -190625.60337733393, - -190599.24045840377, - -190226.99435288858, - -190555.5337087257, - -190577.08701564785, - -190502.54227035303, - -190701.39607546074, - -190483.56699262653, - -190558.59312642895, - -190622.50020444766, - -191956.9509027277, - -189596.39277355725, - -189081.37240888822, - -189189.54697625263, - -189022.31890019495, - -189607.57795842667, - -189794.93841442053, - -189619.61208740424, - -189757.03297088, - -193534.58363562726, - -193746.06656836157, - -193536.88821662494, - -193690.75126823565, - -193828.1864987295, - -193694.47134159697, - -193908.71990085614, - -193926.73131627264, - -192467.37989371552, - -193876.98390154605, - -193937.14325502317, - -193799.02394631426, - -193774.27258889857, - -193975.47469840795, - -193668.5700211384, - -193863.922824815, - -193777.43216763728, - -193702.5372609475, - -193807.07780800795, - -193749.23407981847, - -193848.73115611952, - -193829.82350082346, - -194072.47921578164, - -193714.61436065382, - -193831.93364492635, - -194022.37644342383, - -193929.14922551668, - -193709.41847952036, - -193580.42749235677, - -193673.19657366312, - -193675.4846188424, - -193804.38388892714, - -193761.4245739493, - -193832.16706009684, - -193963.83892343825, - -193744.99083273322, - -193651.75122489312, - -193746.6309587092, - -193858.4367764975, - -193735.9695129494, - -193791.1955832733, - -193759.89400756784, - -193767.32774094612, - -193960.03946464113, - -193825.5996938444, - -193646.09114384378, - -194029.90647483527, - -193627.99896662962, - -193600.72359083666, - -193919.70824670978, - -193766.4906457397, - -194007.48964572605, - -193810.47215112645, - -193844.94572726413, - -194037.0391692495, - -193851.06434528634, - -193874.82215845535, - -193723.95168770116, - -193897.5631725786, - -193810.2074839169, - -193608.74043988352, - -193894.64693893815, - -193688.6584630469, - -193904.11476722118, - -193682.8928145957, - -193820.47172546384, - -193889.7955965534, - -193787.85515705598, - -193728.1477085373, - -193937.34499460776, - -193805.18800143278, - -193739.99240211275, - -193928.394955046, - -193797.7489289576, - -193622.61125641817, - -193580.10680370886, - -193821.88689952737, - -193875.7883864531, - -193843.667706734, - -190942.65455718772, - -190935.69915585697, - -190754.12935394185, - -190772.50006996628, - -190718.86652711377, - -190909.16845115123, - -190962.44360370797, - -190988.82032427454, - -189666.5672120893, - -189829.0928502695, - -189626.70216868905, - -189859.27408912993, - -189749.7157783643, - -189930.46843261595, - -190546.38147049418, - -190399.4126354747, - -190728.8379457946, - -190467.53947576138, - -190665.37836808496, - -190403.65729820394, - -190572.92069195924, - -190391.5963820497, - -190588.72561153484, - -189830.10127174208, - -189867.38685376107, - -189148.04361715776, - -189136.8179316544, - -189454.19264113074, - -189592.2520227959, - -189764.96604252383, - -189136.14569979953, - -189169.39385335796, - -189852.88038329795, - -189957.89952853756, - -189901.24368659954, - -189910.4178996724, - -189999.55141092496, - -189360.40048394818, - -189540.12165547063, - -189471.1548799475, - -189457.7383592478, - -189492.84011594678, - -189930.6622301241, - -190012.9729410129, - -189643.8250184186, - -189606.224952288, - -189100.93180802726, - -189069.94292362832, - -189166.93269470712, - -189710.98534421215, - -189909.66210198548, - -189800.87833115685, - -189358.71097730752, - -188372.40414795655, - -188307.97072896184, - -188449.08216930606, - -188896.90746870203, - -188488.92438829996, - -188410.6282062072, - -188423.00742554842, - -188342.75560755408, - -188474.5390069502, - -188893.76273750738, - -188383.44348380194, - -188919.52659774327, - -188450.24143295805, - -188339.98623365132, - -188920.24503447048, - -189954.8799487552, - -189224.8723192654, - -189437.85306139573, - -189128.61828617012, - -189076.00888676112, - -189229.93966087615, - -189057.92180438363, - -189159.80594753037, - -189221.1271062979, - -189275.09899359176, - -189796.53172043787, - -189179.26724934444, - -189209.43422944171, - -188434.3714432306, - -188735.4427305461, - -188852.55618795755, - -188648.26563955305, - -188750.48177969156, - -188633.9067049795, - -188963.22418785066, - -188921.29656857427, - -189021.56662713946, - -188962.55017746423, - -188997.33770734456, - -189023.01935678284, - -190261.8156757386, - -190001.24087948908, - -190205.95046477395, - -190299.55174747857, - -190144.7648684372, - -190362.44164700346, - -190189.73769569694, - -190267.11271629602, - -190205.97081794371, - -190270.2885900102, - -190214.73308856742, - -190326.65557216902, - -190414.88888080535, - -190199.32333034926, - -190282.24854628212, - -190312.73737813003, - -188873.8626963419, - -188920.2684739792, - -188858.41273348493, - -188379.0378458674, - -188512.27456350578, - -188638.8220475936, - -188851.4444004593, - -188856.0250278521, - -188992.6676338556, - -188567.034494689, - -188562.145978013, - -188709.5724031946, - -188583.43301745184, - -188633.37897797985, - -188513.3287395779, - -188486.02304199967, - -189455.44381807276, - -188895.9417109116, - -189700.65258162987, - -189511.31796618277, - -189314.42297487025, - -189274.3071301368, - -189387.76225415204, - -189390.8243694251, - -188565.08660170887, - -188585.1092319325, - -188535.84972231102, - -188428.1636080926, - -188480.76720246498, - -188497.23442699056, - -188477.61159047254, - -188560.29997725625, - -188469.464678068, - -188412.24447188206, - -188400.34769697144, - -188326.83417554572, - -188472.80747925534, - -188371.0306914976, - -188439.41147707586, - -188460.25442393898, - -188478.67324954533, - -188414.5465883974, - -188506.02275688382, - -189533.1271418779, - -189305.03128895749, - -189500.05954191848, - -190614.02637885386, - -190408.6976223534, - -190772.61217766535, - -190745.8656578664, - -190782.00210851693, - -190713.68513502888, - -190769.81695999636, - -190721.68694858113, - -190713.55530098, - -190715.47477903482, - -190587.36694516958, - -190653.71505993314, - -190733.79506238594, - -190759.5937266005, - -190665.1557136483, - -189551.6404319715, - -189175.80872704333, - -188999.41125879882, - -189583.71120295482, - -189736.44355789217, - -189721.16100992335, - -190794.8754551881, - -190767.60153448136, - -190528.3678224796, - -190527.9985717709, - -190651.3096880947, - -190850.62628139483, - -190767.53942386774, - -190178.30316847924, - -189906.9288545038, - -190398.25884468752, - -189902.1572291747, - -189756.1793300799, - -192960.00724960802, - -193032.32651674768, - -194526.8572523203, - -192970.64111818164, - -194540.51188655684, - -190076.97029283058, - -190578.37958836104, - -190633.09861453043, - -189612.56701675983, - -189584.85448124894, - -189639.9730804576, - -189726.2893258764, - -189663.43940283198, - -189589.25507494135, - -189614.62635399186, - -189158.38902759828, - -189507.12134144705, - -189695.59469139914, - -189747.88347755812, - -189662.8350739805, - -189704.61279866777, - -190468.9495086276, - -190691.40485899913, - -190602.30273507602, - -190690.3495420362, - -190742.67043381042, - -190516.9103386334, - -190625.0036216086, - -190467.63078097987, - -190711.89591260994, - -190681.55111231707, - -190714.2334944442, - -190728.0443911054, - -190260.22221289267, - -190672.9365789004, - -190463.41389632598, - -190574.5566659715, - -190503.87993822052, - -190597.1290096374, - -190738.17937622103, - -190736.14123626714, - -188844.49537900015, - -189352.91617699675, - -189293.61601165356, - -189198.92299734885, - -189188.6211538655, - -189248.80812324327, - -188903.04749914605, - -188991.53960870573, - -189277.4028354314, - -189224.98825033373, - -189320.46260078246, - -189230.83393577425, - -189282.98979945903, - -185674.87055856248, - -189767.3376516928, - -186429.02907093416, - -186471.6273977257, - -186557.56944473545, - -186373.05814148398, - -186421.09165944587, - -186389.60376488912, - -186551.00981625286, - -186485.36466106286, - -186416.7791946597, - -186425.80797049435, - -186507.88074432584, - -186483.2058758233, - -186446.32894291877, - -186578.13349791485, - -188294.34254262215, - -188903.12131841254, - -188974.1903070274, - -189013.00556954916, - -188990.05786341277, - -189283.6558680965, - -189156.776198667, - -189281.15801555838, - -189229.38188445318, - -188752.90976222482, - -189268.83368658138, - -189109.80505218275, - -189263.46207696153, - -190474.83424193788, - -190404.0846714618, - -189725.66534082082, - -190387.365071224, - -190322.7145666639, - -190610.7397637846, - -190530.50822368442, - -190565.46212922395, - -190634.5753037945, - -190356.45986323425, - -190391.1380994609, - -190429.80943282603, - -190464.96139017996, - -190289.1133185594, - -190367.6186600842, - -190422.79258775173, - -190454.50715953342, - -190902.48296050128, - -190846.00728882258, - -190768.94184870122, - -190917.1501459411, - -190904.19225035308, - -190869.11155008027, - -190847.3760969188, - -190833.92831575198, - -190914.59919810772, - -191003.5049998549, - -190987.6662291279, - -190918.1130413622, - -190978.42508732385, - -191045.33010704067, - -191118.3344811227, - -191028.42716404388, - -191087.25231874056, - -191063.94152141083, - -190533.19955587725, - -190467.77931488148, - -190736.1226796714, - -190650.8583482665, - -190695.986401139, - -190705.99136849152, - -190727.1717134085, - -190775.09420707048, - -189526.2394383325, - -189181.60084101505, - -189185.06032392784, - -189112.62460586315, - -190085.7072353487, - -190308.5994523768, - -190398.8378197505, - -190400.7504096945, - -189466.40250005975, - -188816.86933252332, - -190594.37588089012, - -190621.45203308872, - -190572.00478016632, - -190677.74061826518, - -190777.950647815, - -190643.4977867746, - -190238.15773232863, - -190074.67463959943, - -190367.91326419555, - -190399.54829885028, - -190275.09228250064, - -190306.22405632425, - -190162.3371470009, - -190432.7873200079, - -190532.19121997847, - -190494.93518483994, - -190497.28396928875, - -190620.24351137725, - -190664.86329969479, - -190574.09918967442, - -190591.03375007253, - -190520.7869251755, - -190351.42834427793, - -190301.86472867473, - -190168.79581539883, - -190379.19934607125, - -190296.38287072422, - -190225.95395946506, - -190265.65052037945, - -190191.99887281418, - -190181.16020360703, - -190253.12505174227, - -190294.27227855046, - -190268.58159355848, - -190340.03937897002, - -190049.21420073678, - -190111.19686576354, - -190243.76439905912, - -190016.1087708468, - -190165.94445480712, - -190306.18105336872, - -190346.03752427932, - -189619.67419571467, - -190167.53475611532, - -190315.310468642, - -190379.6458049226, - -190388.22574712188, - -190489.64234467523, - -189077.9073416021, - -189148.47818539297, - -189076.27522030505, - -190096.82864513667, - -190440.0090447352, - -190435.29393371142, - -190435.58900957322, - -190429.5710330078, - -191322.5198972912, - -191383.64086574878, - -190438.21639421294, - -190236.33574161452, - -190380.63617074298, - -190401.29010947546, - -190331.29312605906, - -190559.2179529797, - -190494.5809685014, - -190527.79502621465, - -190152.69203156038, - -189520.9274802002, - -190148.86085124593, - -190346.98044319588, - -190273.92525879134, - -190362.20891689835, - -190211.2410560863, - -190293.35532104713, - -189532.25620878863, - -189522.88266085237, - -190499.65023009953, - -190399.7332476172, - -190462.91341077103, - -190497.98956719536, - -190271.89947805196, - -189731.91642502818, - -189365.14372923566, - -189627.2693908589, - -189450.8103449795, - -189878.37777838547, - -189606.4880574026, - -189671.94160478926, - -189753.5036607848, - -189792.539377009, - -189709.64844401702, - -189709.42207181625, - -189560.8040860744, - -189639.18026060294, - -189579.70324669065, - -189605.1403288076, - -189479.9373604124, - -189676.83534590385, - -189809.71999294424, - -189641.32627110553, - -189671.34718930145, - -189694.57212468094, - -189642.2465612403, - -189589.32744394697, - -189692.93760685052, - -189782.31803998386, - -189551.69582469424, - -189632.7736323519, - -189649.24507055973, - -189551.3936761994, - -190415.83660361098, - -190295.38448827688, - -190278.06551487523, - -190602.566736292, - -190582.58999662191, - -190402.49114878004, - -190640.8143948027, - -190434.0622041177, - -190396.1118665038, - -190633.88684340264, - -190033.28449762813, - -189931.84776524975, - -189984.33860279026, - -189914.35806747197, - -189913.8177868138, - -190053.69755855628, - -189915.13218034807, - -189840.37838709482, - -190003.0113512847, - -189865.52199599275, - -189940.86916101858, - -189527.17241938802, - -189574.29060602633, - -189631.36291813108, - -188579.02593842897, - -188618.87056923824, - -188604.32311363696, - -189090.5718994998, - -189142.3179762273, - -189107.25327854278, - -189187.28747484853, - -189269.54448270632, - -189159.14568024248, - -189138.2076064306, - -188076.45815998927, - -189270.2207259438, - -189210.2926095509, - -188900.63432967928, - -188932.77198095532, - -189022.40118831143, - -189307.27750116092, - -189338.82125386308, - -189289.75729540995, - -189349.08753127913, - -189239.27466604387, - -189238.41421960684, - -189412.9721563485, - -189524.31705901856, - -189559.7460368871, - -189476.0747606827, - -189570.0168598492, - -189495.32258851867, - -188215.8616615981, - -188199.75814143405, - -188123.16757309233, - -188542.53301547328, - -188583.50114275728, - -188646.66744792875, - -188627.52790190434, - -188624.96953674362, - -188680.12739772093, - -188603.88153743022, - -188717.93046449387, - -188701.2044515723, - -188667.65399479453, - -188578.38898107715, - -188162.49129769465, - -188283.31886173566, - -188344.14937816412, - -188367.9220383512, - -188429.7191107016, - -188521.51772652115, - -188573.1166522805, - -188704.52880665567, - -188739.29930100363, - -188761.3774557424, - -188771.39763015826, - -187903.75952678625, - -187774.81306834565, - -187895.58897193626, - -187884.75183693127, - -187967.06818140898, - -187951.53704565333, - -187825.18842699032, - -187758.29365704863, - -187868.23432734396, - -187895.08998922407, - -187890.49062902073, - -187955.65971712122, - -187928.10424729847, - -187989.67935819595, - -187874.83194403967, - -187933.04952081686, - -187872.3771147445, - -187856.99852649588, - -187848.4223915153, - -187920.79346467156, - -187930.77700494797, - -187895.29714433412, - -187920.6210824505, - -187887.69961918573, - -187938.61799761548, - -187848.99743691334, - -187796.57704625433, - -187814.10684264067, - -187814.4228992428, - -188045.52612894526, - -188018.15484515057, - -188007.98228798102, - -187778.2567400219, - -187853.44280984605, - -187973.77791186082, - -187919.99609137262, - -187824.0586511038, - -190307.0714778582, - -190230.59833375542, - -190227.19725287892, - -190163.7718421069, - -190243.0796793292, - -190331.77132419008, - -190303.73582563325, - -190230.98203889182, - -190163.62860191637, - -190127.76616371796, - -190204.7291192877, - -190198.29510713098, - -190038.48386398226, - -190286.96585014055, - -189285.5038908931, - -189314.6925545715, - -189322.54633697437, - -190108.9160963181, - -189919.7044719638, - -189515.2170023079, - -189696.5583651094, - -189620.28942638537, - -189470.10195977517, - -190628.8763620154, - -190540.76510119194, - -190565.15412975918, - -190682.29055485144, - -190430.80151139415, - -190521.04186612897, - -190646.607620274, - -190837.33673650466, - -190630.24314895942, - -190642.08708267138, - -190796.54577428204, - -190481.11319650357, - -190589.098462086, - -190401.1922366718, - -190615.01500565186, - -190603.3594025055, - -190686.42496369162, - -190557.064280662, - -188092.88408938725, - -187956.81249239156, - -187979.11709276808, - -187979.482131256, - -187979.50818299758, - -187996.93410740836, - -187963.20107476946, - -187929.6211213274, - -187965.07830668992, - -187856.64089532907, - -187920.64538985988, - -196635.93024140774, - -196399.9604654788, - -196362.5620857767, - -196370.54701890302, - -196328.77006002006, - -196438.87708898322, - -196344.7214253337, - -196337.77592539776, - -196516.39975494708, - -196375.4820001025, - -196572.13617882138, - -196357.81249105308, - -196402.59115033425, - -196403.98426888036, - -196525.95899245862, - -196450.95791918522, - -196516.9695874955, - -196526.78985808208, - -196305.99375243418, - -196477.75824980924, - -196371.17169785398, - -196540.8496484741, - -196413.56960098774, - -196398.85033780828, - -196519.40403056843, - -196586.5152888427, - -196484.0741919208, - -196477.4423322067, - -196580.94705004548, - -196493.03467572184, - -196355.35715885067, - -196524.4255226339, - -196575.5793318735, - -196388.91149252217, - -197117.95006697494, - -196453.8097539728, - -196411.73181172024, - -196519.77480193917, - -196290.0514181662, - -196541.32332563752, - -196408.34816477957, - -196504.99785979235, - -196455.70087208258, - -196480.78836830918, - -196623.01283625938, - -196421.16774980287, - -196549.77754785056, - -196520.50848836853, - -196460.99820681041, - -196330.35222787867, - -196641.30269969517, - -196316.11984664403, - -196615.8921314892, - -196323.18575227895, - -196287.24588507827, - -196489.4637902344, - -196592.64448067575, - -196651.12796950675, - -196337.7964175994, - -196435.57903475765, - -196425.72291655725, - -196443.09441339519, - -196503.89361416345, - -196538.03796348278, - -196407.69176682775, - -196453.90366500575, - -196620.4564034161, - -196368.93578565225, - -196336.6452604692, - -196451.32659140672, - -196584.13722435836, - -196550.36163773743, - -196467.06908865008, - -196437.28763150718, - -196539.00158353732, - -196464.94812796215, - -196628.33337194961, - -196276.35492457935, - -196600.84524455655, - -196438.97737875086, - -196542.46186392213, - -196495.15646825332, - -196383.44533773506, - -196584.13630503832, - -196435.07942520038, - -196472.90803114063, - -196858.56777267455, - -196506.52317436016, - -196423.12115615146, - -196494.714181361, - -196335.97571939143, - -196257.5842439066, - -196450.63647772084, - -196295.25829369153, - -196549.37678044723, - -196353.43409226913, - -196392.21021078614, - -196509.71950499725, - -196444.19108020968, - -196816.3663020291, - -196254.53937207581, - -196401.17859141144, - -196582.62604443275, - -196375.1204955413, - -196306.78705593187, - -196556.263798411, - -196481.2520604121, - -196387.3684123011, - -196594.68433771073, - -196534.56974015787, - -196598.3252346663, - -196432.1174841255, - -196371.8701767749, - -196561.82015946324, - -196474.51192388064, - -196410.2165088565, - -196488.0490661285, - -196601.67402550596, - -196270.8076973989, - -191218.29792273082, - -190773.35143504693, - -190584.05715662817, - -190474.82891365502, - -190627.12273639874, - -190565.5574961089, - -190511.04042249869, - -190665.9029325363, - -190549.36495173737, - -190603.2646405981, - -190467.50067797417, - -190576.57553214984, - -190445.9979986217, - -190683.8285149941, - -190852.38090816615, - -190728.73035462684, - -190883.16828134973, - -190787.82297448965, - -190803.13129126374, - -192061.2139999865, - -192043.71626047432, - -191964.647756764, - -190891.79490739512, - -190894.2735892318, - -190940.53838586452, - -190816.47205959816, - -190853.98202544727, - -190769.52819472074, - -190711.82282255974, - -190786.15393264592, - -190715.2106409246, - -190927.8131014321, - -190983.24181297334, - -185652.40467809694, - -185945.5150238995, - -186214.06819645717, - -186216.50602458388, - -191856.6763200281, - -191865.84986712263, - -191865.61681838395, - -191828.29448063852, - -191764.30286109785, - -191718.61375219104, - -191653.1809436873, - -191743.9925516096, - -191796.13851196037, - -191702.30279357143, - -191702.69456493555, - -191978.06283560264, - -191767.79566278576, - -191879.5988250336, - -191816.39414215, - -191761.08538711286, - -191848.65283808287, - -191632.82192091842, - -187554.55535205672, - -187589.65761840937, - -187526.1000837456, - -188247.63095166776, - -188253.21810837943, - -188166.64910838503, - -188229.09502381584, - -188212.53536496227, - -188349.5439406991, - -188074.9390005927, - -188040.12515643216, - -187845.35077936196, - -189215.35398462103, - -189123.84104439258, - -189194.488756125, - -189196.6452778848, - -188323.24737628445, - -188332.4255229405, - -188370.9159487689, - -188370.28768893745, - -188283.69853709696, - -188297.15304957947, - -188298.3598862649, - -188283.09308279172, - -188237.7610465607, - -188292.3058890195, - -188271.55860805113, - -188027.126623048, - -187972.38221218612, - -188083.56553678407, - -188122.50775063198, - -187561.3376490592, - -187629.0390798209, - -187535.8662195509, - -187668.81541389253, - -187621.53310971783, - -187601.9133239069, - -188283.31658936644, - -188095.2939063459, - -188048.40563093848, - -188029.4813787521, - -188259.8008772253, - -187942.90402075808, - -188111.32098520146, - -188269.27401706978, - -188038.668261585, - -188021.35599826832, - -188145.63669386692, - -188154.92217313207, - -188285.04208775162, - -188032.76818274957, - -188202.108708612, - -188548.4840723725, - -188370.81304855144, - -188435.5287980957, - -188539.16539749154, - -188406.0852420654, - -188375.41608470536, - -188033.49918109106, - -188141.9406256535, - -188213.16505670684, - -188299.90754175812, - -188055.18840825645, - -188010.80106167274, - -188288.30179744438, - -188172.62871077625, - -188028.9956217424, - -187979.16806459098, - -188201.16967686315, - -188402.8210414287, - -188218.0680871657, - -188209.99551585125, - -188252.8925638619, - -189858.4613268521, - -188378.5507944686, - -188392.59520295658, - -188340.82295965083, - -188344.25051226772, - -188447.38244263985, - -188321.4992550657, - -188290.03028204778, - -188276.1905836357, - -188426.3163433966, - -188379.43972742173, - -188940.39294818317, - -188487.06747544595, - -188591.84517673572, - -188430.72620436488, - -188444.0235731584, - -188596.05013602367, - -188512.54177513707, - -188699.77662528763, - -188625.63379156328, - -188612.0962266196, - -188650.9029571649, - -188231.5422576223, - -188240.22615160185, - -188094.17418821002, - -188268.16708529167, - -188277.69161143652, - -188126.03656747416, - -187773.89161390605, - -187768.02879467254, - -188801.4210158928, - -188767.41641843505, - -188890.03400560268, - -187968.55426813365, - -188033.3870086141, - -188007.0926605345, - -188162.9565995668, - -188185.8360206985, - -188045.48630401408, - -188111.84876750235, - -188003.5861127096, - -188087.67081568346, - -188058.20794789607, - -188039.71959966994, - -188083.6924472722, - -187974.56083652587, - -188200.24848876594, - -188146.93600360025, - -188144.75157425427, - -188145.70803974595, - -188106.29213649518, - -188082.19662846022, - -187968.96276014342, - -188086.97635425016, - -188104.29806410245, - -188043.63936497684, - -188006.95668439232, - -188139.7614408556, - -187885.68037084257, - -188103.01400066275, - -188117.5227897902, - -188046.5415193328, - -187934.88019874017, - -187902.2258420666, - -188060.24566124828, - -188138.19385150683, - -187992.70459943428, - -188100.83145626815, - -187918.62888498866, - -188026.76554396577, - -187996.96960220046, - -187979.69368844153, - -188054.69156568003, - -187927.8824349312, - -187981.00449699291, - -189589.74977397075, - -189522.47085552436, - -188307.32313826354, - -188432.78907464017, - -188326.60982191455, - -188354.1811308593, - -188533.53409693413, - -187800.99882697721, - -187868.5464667596, - -187753.06096357654, - -187717.91851693625, - -187695.8720814455, - -187675.48095937257, - -187700.15324202535, - -187783.07389216768, - -187780.48748696045, - -187828.2195422653, - -187833.51705638343, - -187721.85004660045, - -187660.64237843428, - -187715.7343131632, - -187780.5533465789, - -187753.63706882135, - -190192.99199780272, - -189790.89938445395, - -190212.54156170116, - -189775.7899940225, - -189039.90533258254, - -189023.69513390047, - -189295.93670652222, - -189291.79965791342, - -189200.57330304422, - -189225.44343217573, - -189655.76464204327, - -189705.95770007666, - -189643.5524444072, - -189130.97364801675, - -189116.34404480382, - -187593.07759266367, - -187846.51677388168, - -187788.46861765772, - -187757.48312437613, - -187811.00235893583, - -187835.38918713373, - -188503.3820257475, - -188608.75666870267, - -188659.3952954119, - -188533.61152171314, - -188473.738548232, - -188446.22688801138, - -188324.66509707412, - -190227.9999344756, - -190209.6170070622, - -190419.3938255866, - -189358.54226131324, - -189455.7501465173, - -187851.21871572215, - -187789.48509271396, - -186169.3625546227, - -190884.92755364833, - -190852.65448954437, - -190676.0383364286, - -190794.98816362483, - -190875.6299963171, - -190881.4195072494, - -190800.5661891712, - -190967.90324167695, - -190796.21734701467, - -190849.80556299916, - -190850.39999002474, - -190705.93683743462, - -190771.58442055932, - -190703.81262351107, - -190937.47881374045, - -190805.20644104716, - -190692.507124959, - -190908.47378217717, - -190864.96463177202, - -190737.8835624348, - -190739.5724284781, - -190802.30922898772, - -190698.23881648583, - -190929.66979578658, - -190729.50539915852, - -190844.91909849216, - -190813.14436611588, - -190895.66896662925, - -190908.32604239337, - -190964.17059618633, - -190762.50171806797, - -190994.52260283855, - -190768.6419722291, - -190804.9616245743, - -190962.8796978228, - -190835.27084363703, - -190974.33881747143, - -190876.57184446702, - -190834.01009906843, - -190933.9534077934, - -190909.64976137923, - -190913.5105326216, - -190796.94141805047, - -190781.4409062239, - -190923.8425100799, - -191035.1109422804, - -190908.71441964828, - -190741.38638934697, - -190885.78296118212, - -190993.37192165887, - -190961.12960518763, - -190763.67489496517, - -191006.89775095775, - -190709.62985214093, - -190934.3591051317, - -190851.954708939, - -190837.31528721907, - -190807.84919101253, - -190878.46789065155, - -190967.49452304916, - -190762.08180819644, - -189505.9875498694, - -189535.1434064379, - -189668.16727616882, - -189616.60988648146, - -189638.23178416977, - -189570.86066694462, - -189576.08308589703, - -189155.14860018887, - -189239.60796500134, - -187880.24230509295, - -187644.4018088615, - -187728.90535634218, - -187852.92563407216, - -187906.33280999027, - -187894.400024042, - -187929.1853205998, - -187896.99301672008, - -187640.26178314057, - -187703.77673713973, - -188077.23734942425, - -187999.18462355132, - -188092.18378419022, - -188515.5010910575, - -188574.65523758496, - -190098.24210039582, - -190295.73742487756, - -190147.97551236962, - -190113.79330947442, - -189595.58720010423, - -191048.32021429407, - -191088.9053977869, - -191072.42749505086, - -188779.56731104586, - -188683.22659860307, - -188728.41122024317, - -188799.83721849287, - -188762.11742505888, - -188619.68472282932, - -188694.51829272378, - -188750.53984223565 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 933483.4567391834, - 95962.08383797004 - ], - "y": [ - -841989.31294275, - -188630.5751925975 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 933483.4567391834, - 95958.17194866823 - ], - "y": [ - -841989.31294275, - -188333.01761814565 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -366283.69394185964, - 96588.81767117835 - ], - "y": [ - -775095.2833023075, - -188120.26418891654 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -366283.69394185964, - 95948.88284577774 - ], - "y": [ - -775095.2833023075, - -188484.3860102188 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -366283.69394185964, - 95880.89608253656 - ], - "y": [ - -775095.2833023075, - -188495.23201231525 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -366283.69394185964, - 96750.96023331824 - ], - "y": [ - -775095.2833023075, - -188320.30928268767 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -366283.69394185964, - 96510.55405575983 - ], - "y": [ - -775095.2833023075, - -188483.56766699257 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -366283.69394185964, - 95767.91624828705 - ], - "y": [ - -775095.2833023075, - -187939.12845477546 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -181700.15961593334, - 96740.50167159707 - ], - "y": [ - -623621.8672748602, - -187818.23537279075 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -181700.15961593334, - 97209.95143029183 - ], - "y": [ - -623621.8672748602, - -187946.7603080632 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 429817.1381553038, - 95962.08383797004 - ], - "y": [ - -508933.80539782916, - -188630.5751925975 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 429817.1381553038, - 95958.17194866823 - ], - "y": [ - -508933.80539782916, - -188333.01761814565 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97361.55787856234 - ], - "y": [ - -785168.8110406864, - -188197.8301536245 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96730.38048016379 - ], - "y": [ - -785168.8110406864, - -188683.2303206299 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96981.97292405601 - ], - "y": [ - -785168.8110406864, - -188503.10517806208 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97064.56846526945 - ], - "y": [ - -785168.8110406864, - -188860.7645077761 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96996.94863760758 - ], - "y": [ - -785168.8110406864, - -188943.16984077886 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 95612.3798589922 - ], - "y": [ - -785168.8110406864, - -189195.75127467563 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97025.10002004895 - ], - "y": [ - -785168.8110406864, - -188593.0213982362 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97085.03905872672 - ], - "y": [ - -785168.8110406864, - -188664.20873805106 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97181.50823801635 - ], - "y": [ - -785168.8110406864, - -188389.7264047301 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97107.98327536366 - ], - "y": [ - -785168.8110406864, - -188531.62632111614 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96671.54609170722 - ], - "y": [ - -785168.8110406864, - -188870.3516127079 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96264.44273321965 - ], - "y": [ - -785168.8110406864, - -188193.26327558464 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97372.74334299575 - ], - "y": [ - -785168.8110406864, - -187318.35447427825 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97234.35747194423 - ], - "y": [ - -785168.8110406864, - -189806.69206404962 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97271.91592592461 - ], - "y": [ - -785168.8110406864, - -188090.2894991313 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97377.86830334815 - ], - "y": [ - -785168.8110406864, - -188100.01616886404 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97325.9129722734 - ], - "y": [ - -785168.8110406864, - -188174.55996141888 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97061.7840428774 - ], - "y": [ - -785168.8110406864, - -188463.2031115645 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97215.01978405566 - ], - "y": [ - -785168.8110406864, - -188363.74532847013 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97358.31856309062 - ], - "y": [ - -785168.8110406864, - -187605.6195439504 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97190.77820654793 - ], - "y": [ - -785168.8110406864, - -188732.3518539843 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96441.85290714615 - ], - "y": [ - -785168.8110406864, - -184365.92318507173 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97203.18137378134 - ], - "y": [ - -785168.8110406864, - -188187.27869729063 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96615.52267587048 - ], - "y": [ - -785168.8110406864, - -188342.5253574899 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97362.57990476971 - ], - "y": [ - -785168.8110406864, - -187588.75004952576 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96430.3182329276 - ], - "y": [ - -785168.8110406864, - -189081.41342393393 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97216.0877466562 - ], - "y": [ - -785168.8110406864, - -188060.79254294612 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97087.72560216134 - ], - "y": [ - -785168.8110406864, - -188845.78996045736 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96827.37265721356 - ], - "y": [ - -785168.8110406864, - -188800.35117287276 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97471.93322774443 - ], - "y": [ - -785168.8110406864, - -188205.98013851763 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96478.42530029602 - ], - "y": [ - -785168.8110406864, - -188992.01175242575 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97500.18404094946 - ], - "y": [ - -785168.8110406864, - -188221.79324811854 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96989.78155035034 - ], - "y": [ - -785168.8110406864, - -188559.27230275373 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 98448.42923749553 - ], - "y": [ - -785168.8110406864, - -188136.72692104083 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97143.83269179585 - ], - "y": [ - -785168.8110406864, - -187550.377833089 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97369.40146033755 - ], - "y": [ - -785168.8110406864, - -188302.59803287973 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97339.71103793576 - ], - "y": [ - -785168.8110406864, - -187581.63192013613 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96553.64509810388 - ], - "y": [ - -785168.8110406864, - -187717.56726598475 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97302.65739635656 - ], - "y": [ - -785168.8110406864, - -188480.64988687172 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97335.30821090189 - ], - "y": [ - -785168.8110406864, - -188160.1723451082 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96554.76711541406 - ], - "y": [ - -785168.8110406864, - -188798.2366179604 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97344.39094759998 - ], - "y": [ - -785168.8110406864, - -188090.79273053954 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 98269.13543855402 - ], - "y": [ - -785168.8110406864, - -187779.636684694 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97120.93183600294 - ], - "y": [ - -785168.8110406864, - -188782.71424431694 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97096.28494217026 - ], - "y": [ - -785168.8110406864, - -187419.76550716007 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96822.6506902651 - ], - "y": [ - -785168.8110406864, - -188621.19074517605 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97442.83746991267 - ], - "y": [ - -785168.8110406864, - -187478.37592567242 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96832.47969398995 - ], - "y": [ - -785168.8110406864, - -187971.61344319995 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97815.81719436 - ], - "y": [ - -785168.8110406864, - -187778.30145997382 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 98066.53944077659 - ], - "y": [ - -785168.8110406864, - -187625.15506672708 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97949.99254977489 - ], - "y": [ - -785168.8110406864, - -186611.5059282818 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97258.58975162834 - ], - "y": [ - -785168.8110406864, - -188003.31924616438 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97072.87553268592 - ], - "y": [ - -785168.8110406864, - -188139.1086900214 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97177.44060503879 - ], - "y": [ - -785168.8110406864, - -188172.13924848195 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 98940.06816975218 - ], - "y": [ - -785168.8110406864, - -187348.161691788 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 98016.83324711236 - ], - "y": [ - -785168.8110406864, - -188223.82733587097 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97830.47996234937 - ], - "y": [ - -785168.8110406864, - -188730.91358476676 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97767.76658830828 - ], - "y": [ - -785168.8110406864, - -187886.4063756375 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96641.47157063635 - ], - "y": [ - -785168.8110406864, - -188597.83399210958 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97299.95033359852 - ], - "y": [ - -785168.8110406864, - -188057.1917578529 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97365.44574077036 - ], - "y": [ - -785168.8110406864, - -188218.10363143042 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97290.08489077912 - ], - "y": [ - -785168.8110406864, - -188210.32065825685 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97322.93543564298 - ], - "y": [ - -785168.8110406864, - -188129.95134955403 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97060.5787311115 - ], - "y": [ - -785168.8110406864, - -188196.78625864437 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97049.53534278259 - ], - "y": [ - -785168.8110406864, - -188493.78120901805 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97242.69405553193 - ], - "y": [ - -785168.8110406864, - -188034.45615562776 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 98081.17812602762 - ], - "y": [ - -785168.8110406864, - -188161.6224994722 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97249.66244594876 - ], - "y": [ - -785168.8110406864, - -188173.13991697345 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97854.52508088839 - ], - "y": [ - -785168.8110406864, - -188249.23314484346 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97955.02720756274 - ], - "y": [ - -785168.8110406864, - -188327.77303545873 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97077.71122197901 - ], - "y": [ - -785168.8110406864, - -188516.92372013946 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96385.16496434633 - ], - "y": [ - -785168.8110406864, - -189362.5154690305 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97510.89358759671 - ], - "y": [ - -785168.8110406864, - -188432.70004235505 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 98459.92232309152 - ], - "y": [ - -785168.8110406864, - -188115.43097167817 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97615.68830856765 - ], - "y": [ - -785168.8110406864, - -188400.87592482337 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 98138.33403478275 - ], - "y": [ - -785168.8110406864, - -188482.24258789566 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97827.98206777098 - ], - "y": [ - -785168.8110406864, - -188788.26218175198 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96467.8745823571 - ], - "y": [ - -785168.8110406864, - -189293.36061735288 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 95886.51435711926 - ], - "y": [ - -785168.8110406864, - -189227.5443430391 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 98461.45076976992 - ], - "y": [ - -785168.8110406864, - -188131.32433438205 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 98367.57183739317 - ], - "y": [ - -785168.8110406864, - -188109.2701383384 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96854.14568860013 - ], - "y": [ - -785168.8110406864, - -188095.6269492578 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97266.32321649927 - ], - "y": [ - -785168.8110406864, - -188368.0469139002 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97363.0231077364 - ], - "y": [ - -785168.8110406864, - -188160.44816852582 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97395.40628065314 - ], - "y": [ - -785168.8110406864, - -188198.66663852846 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96172.41683035072 - ], - "y": [ - -785168.8110406864, - -188806.49024330094 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96250.45766620964 - ], - "y": [ - -785168.8110406864, - -189163.69044909158 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 95520.1645763566 - ], - "y": [ - -785168.8110406864, - -185208.78508001886 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 98448.70225290018 - ], - "y": [ - -785168.8110406864, - -188125.1114877186 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96321.45254240566 - ], - "y": [ - -785168.8110406864, - -188534.0512551924 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97264.50790734109 - ], - "y": [ - -785168.8110406864, - -188177.51543305253 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97236.52009824176 - ], - "y": [ - -785168.8110406864, - -188133.61205856866 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97339.43922054533 - ], - "y": [ - -785168.8110406864, - -188047.21116345978 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97243.18425457999 - ], - "y": [ - -785168.8110406864, - -188112.59605802642 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97315.50747893736 - ], - "y": [ - -785168.8110406864, - -188194.2363318084 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97215.05533166551 - ], - "y": [ - -785168.8110406864, - -188117.56111774204 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96750.67919465902 - ], - "y": [ - -785168.8110406864, - -188690.07025037165 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96758.2131173848 - ], - "y": [ - -785168.8110406864, - -188656.54845148328 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96298.09511180542 - ], - "y": [ - -785168.8110406864, - -188969.58942661897 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 95861.24531062585 - ], - "y": [ - -785168.8110406864, - -188902.73804542943 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96714.78752865449 - ], - "y": [ - -785168.8110406864, - -189437.10887228855 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97410.9196281361 - ], - "y": [ - -785168.8110406864, - -188334.74393636227 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96859.54396498862 - ], - "y": [ - -785168.8110406864, - -189186.06009143573 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96181.25693811684 - ], - "y": [ - -785168.8110406864, - -188965.52824986106 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96930.48088011655 - ], - "y": [ - -785168.8110406864, - -188960.47562263405 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97770.14515646077 - ], - "y": [ - -785168.8110406864, - -188470.92069224652 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97490.27494702111 - ], - "y": [ - -785168.8110406864, - -188476.5108117482 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97286.18570891903 - ], - "y": [ - -785168.8110406864, - -188140.7416293255 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97389.10178705663 - ], - "y": [ - -785168.8110406864, - -188146.4029455515 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97331.16186692334 - ], - "y": [ - -785168.8110406864, - -188071.56456675925 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96488.13453110759 - ], - "y": [ - -785168.8110406864, - -188736.90081401754 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96074.87019613585 - ], - "y": [ - -785168.8110406864, - -188963.01391432688 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97074.27772427908 - ], - "y": [ - -785168.8110406864, - -188834.10272951444 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96074.67218939119 - ], - "y": [ - -785168.8110406864, - -189003.73857407318 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97117.04988156656 - ], - "y": [ - -785168.8110406864, - -187984.04010321392 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96276.76290288504 - ], - "y": [ - -785168.8110406864, - -188504.82116380852 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96138.27909570166 - ], - "y": [ - -785168.8110406864, - -188905.6100788483 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97145.57365835275 - ], - "y": [ - -785168.8110406864, - -188469.95350641874 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96646.8046235456 - ], - "y": [ - -785168.8110406864, - -188517.84736046946 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 95954.7235059804 - ], - "y": [ - -785168.8110406864, - -188304.5177743197 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97344.23333565774 - ], - "y": [ - -785168.8110406864, - -188106.72693407602 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97312.16899856621 - ], - "y": [ - -785168.8110406864, - -188224.97547898805 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97226.77467613107 - ], - "y": [ - -785168.8110406864, - -188062.4324835948 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97363.94242415007 - ], - "y": [ - -785168.8110406864, - -188068.27323340887 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96602.40260405943 - ], - "y": [ - -785168.8110406864, - -188836.55324492624 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 95405.95241141658 - ], - "y": [ - -785168.8110406864, - -189360.7972441431 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97026.79872519187 - ], - "y": [ - -785168.8110406864, - -188481.55600240765 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96882.48118360608 - ], - "y": [ - -785168.8110406864, - -188657.5093365336 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96170.99341163754 - ], - "y": [ - -785168.8110406864, - -188989.48748180468 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96129.26226123162 - ], - "y": [ - -785168.8110406864, - -186433.20819659182 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97352.31659100096 - ], - "y": [ - -785168.8110406864, - -187618.5955755901 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96609.21495158957 - ], - "y": [ - -785168.8110406864, - -188608.14004422975 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 98432.06023611217 - ], - "y": [ - -785168.8110406864, - -188103.543164194 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96466.10004162915 - ], - "y": [ - -785168.8110406864, - -188244.1581110861 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 95721.84547331538 - ], - "y": [ - -785168.8110406864, - -189169.82807631438 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97171.80979185148 - ], - "y": [ - -785168.8110406864, - -187562.6954412684 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96673.26868148368 - ], - "y": [ - -785168.8110406864, - -188597.59464444526 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97242.36535343947 - ], - "y": [ - -785168.8110406864, - -188094.93147997395 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96662.13325458604 - ], - "y": [ - -785168.8110406864, - -188497.24015716757 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 95361.48898776405 - ], - "y": [ - -785168.8110406864, - -186541.63161815086 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96723.71649615404 - ], - "y": [ - -785168.8110406864, - -189066.48960328338 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96577.78689065653 - ], - "y": [ - -785168.8110406864, - -188746.57951263554 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96304.89053116819 - ], - "y": [ - -785168.8110406864, - -188974.92632111761 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96020.02948032114 - ], - "y": [ - -785168.8110406864, - -188911.8607199644 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 94721.83869654656 - ], - "y": [ - -785168.8110406864, - -188919.7029759385 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97298.65959230787 - ], - "y": [ - -785168.8110406864, - -188102.7775258803 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96640.12295334176 - ], - "y": [ - -785168.8110406864, - -188377.38150042814 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96271.64391619014 - ], - "y": [ - -785168.8110406864, - -188087.26616295817 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96408.13622599524 - ], - "y": [ - -785168.8110406864, - -188979.0014231341 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97309.18348925584 - ], - "y": [ - -785168.8110406864, - -188075.4320336564 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97289.56699193796 - ], - "y": [ - -785168.8110406864, - -188078.45265644975 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97270.2903153982 - ], - "y": [ - -785168.8110406864, - -188154.95367904997 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96874.40221688445 - ], - "y": [ - -785168.8110406864, - -189231.2675484738 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96746.46975225132 - ], - "y": [ - -785168.8110406864, - -188515.5389473062 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96348.29844805674 - ], - "y": [ - -785168.8110406864, - -188291.51205377275 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96668.17509388815 - ], - "y": [ - -785168.8110406864, - -188851.13864683165 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96090.94263214861 - ], - "y": [ - -785168.8110406864, - -187819.11455949367 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96360.12432055575 - ], - "y": [ - -785168.8110406864, - -189285.9657250609 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96792.48106870924 - ], - "y": [ - -785168.8110406864, - -188590.74143741513 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96829.16589823875 - ], - "y": [ - -785168.8110406864, - -188592.58854995444 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96813.03260829017 - ], - "y": [ - -785168.8110406864, - -188149.64184463344 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96852.64814433026 - ], - "y": [ - -785168.8110406864, - -188010.31234546934 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97324.36613168383 - ], - "y": [ - -785168.8110406864, - -188060.2135347956 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97379.06355223498 - ], - "y": [ - -785168.8110406864, - -188203.78076926843 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96719.96913872726 - ], - "y": [ - -785168.8110406864, - -188646.02879834978 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96565.3052812955 - ], - "y": [ - -785168.8110406864, - -188429.88264305083 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96062.65271303893 - ], - "y": [ - -785168.8110406864, - -188690.19852216193 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96318.63129865125 - ], - "y": [ - -785168.8110406864, - -189267.9620036595 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96775.11425416196 - ], - "y": [ - -785168.8110406864, - -188566.821774848 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97357.37235340624 - ], - "y": [ - -785168.8110406864, - -188252.50921945827 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97277.72395289454 - ], - "y": [ - -785168.8110406864, - -188121.3122975104 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97289.76170017247 - ], - "y": [ - -785168.8110406864, - -188198.51232125357 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97321.48237207504 - ], - "y": [ - -785168.8110406864, - -188108.59779207408 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97227.68741107298 - ], - "y": [ - -785168.8110406864, - -188127.2678753391 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97204.20955384977 - ], - "y": [ - -785168.8110406864, - -188081.2142320706 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96229.06326601339 - ], - "y": [ - -785168.8110406864, - -188533.7358044206 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97325.19271104848 - ], - "y": [ - -785168.8110406864, - -187599.9393852977 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97617.21646735941 - ], - "y": [ - -785168.8110406864, - -188530.48273097305 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 98449.27256362812 - ], - "y": [ - -785168.8110406864, - -188098.39897942072 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96581.33099308431 - ], - "y": [ - -785168.8110406864, - -188674.40626418887 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97228.58212383334 - ], - "y": [ - -785168.8110406864, - -188083.60697520856 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97299.24309043337 - ], - "y": [ - -785168.8110406864, - -188148.15947986252 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97252.41548140156 - ], - "y": [ - -785168.8110406864, - -188022.57383190584 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97357.81547028142 - ], - "y": [ - -785168.8110406864, - -188130.72283528827 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97236.43218292532 - ], - "y": [ - -785168.8110406864, - -188048.00492761855 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97305.00730192695 - ], - "y": [ - -785168.8110406864, - -188170.03703741357 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97195.88804075729 - ], - "y": [ - -785168.8110406864, - -188251.20192635697 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97218.59509104007 - ], - "y": [ - -785168.8110406864, - -188251.14135969765 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96261.3196088678 - ], - "y": [ - -785168.8110406864, - -189072.52109977874 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 93808.41622785716 - ], - "y": [ - -785168.8110406864, - -189421.3965259288 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96850.96393927754 - ], - "y": [ - -785168.8110406864, - -188487.8442985911 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96537.12189876002 - ], - "y": [ - -785168.8110406864, - -188909.27353199496 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96361.20003453246 - ], - "y": [ - -785168.8110406864, - -188597.87223608652 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96470.92604424445 - ], - "y": [ - -785168.8110406864, - -187913.85881532487 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96487.89609305817 - ], - "y": [ - -785168.8110406864, - -188652.52674561567 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96645.9713144198 - ], - "y": [ - -785168.8110406864, - -188835.22735785999 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96399.42211136232 - ], - "y": [ - -785168.8110406864, - -188894.10833929706 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96412.58182949589 - ], - "y": [ - -785168.8110406864, - -189390.9934105709 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 95545.86201701668 - ], - "y": [ - -785168.8110406864, - -189304.65399711 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96748.01232561683 - ], - "y": [ - -785168.8110406864, - -188772.49683122957 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96556.53529112086 - ], - "y": [ - -785168.8110406864, - -187066.75929757126 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96657.04377656122 - ], - "y": [ - -785168.8110406864, - -188572.61534136938 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96611.79891677048 - ], - "y": [ - -785168.8110406864, - -188424.95815413288 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97214.1761793492 - ], - "y": [ - -785168.8110406864, - -188285.79535372727 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96131.39404043475 - ], - "y": [ - -785168.8110406864, - -186683.14575150548 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96721.96485809215 - ], - "y": [ - -785168.8110406864, - -188557.7500853805 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96569.72587527646 - ], - "y": [ - -785168.8110406864, - -189297.14028084598 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96176.22696258772 - ], - "y": [ - -785168.8110406864, - -189158.03047828437 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96122.91322426367 - ], - "y": [ - -785168.8110406864, - -188273.612045506 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96198.64527732105 - ], - "y": [ - -785168.8110406864, - -187641.16543157026 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97964.68713880659 - ], - "y": [ - -785168.8110406864, - -188244.37359244894 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97183.30733835287 - ], - "y": [ - -785168.8110406864, - -188328.36296298457 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 92882.88036181602 - ], - "y": [ - -785168.8110406864, - -186973.0577066971 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 93947.1652778539 - ], - "y": [ - -785168.8110406864, - -188676.80334905128 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96330.25949972049 - ], - "y": [ - -785168.8110406864, - -188706.18078984448 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97170.81081425113 - ], - "y": [ - -785168.8110406864, - -188123.2736693611 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 95845.43465437011 - ], - "y": [ - -785168.8110406864, - -188699.20817216582 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 94883.17834351698 - ], - "y": [ - -785168.8110406864, - -188902.71776057317 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96709.27952791477 - ], - "y": [ - -785168.8110406864, - -188705.66239081704 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96667.2918950391 - ], - "y": [ - -785168.8110406864, - -188651.89978288996 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 95837.80625601206 - ], - "y": [ - -785168.8110406864, - -188031.4228654602 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96820.63808370597 - ], - "y": [ - -785168.8110406864, - -188507.5871274623 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96806.18517489852 - ], - "y": [ - -785168.8110406864, - -188473.15080842157 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97280.51740997269 - ], - "y": [ - -785168.8110406864, - -187558.11023642388 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96714.28622859313 - ], - "y": [ - -785168.8110406864, - -189344.7791897772 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96088.28655554891 - ], - "y": [ - -785168.8110406864, - -188568.03135249048 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96842.71240942011 - ], - "y": [ - -785168.8110406864, - -189006.15667271154 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96636.80398752526 - ], - "y": [ - -785168.8110406864, - -188907.33441810505 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96814.47946325276 - ], - "y": [ - -785168.8110406864, - -188872.08380899028 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96686.4149689825 - ], - "y": [ - -785168.8110406864, - -189090.95733044946 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96733.90105315663 - ], - "y": [ - -785168.8110406864, - -188466.8921120741 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96744.78801527941 - ], - "y": [ - -785168.8110406864, - -188916.39990961482 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96492.3193299354 - ], - "y": [ - -785168.8110406864, - -188890.76276156757 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96406.73123341237 - ], - "y": [ - -785168.8110406864, - -189031.25167023003 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96335.82539154506 - ], - "y": [ - -785168.8110406864, - -190718.20336678185 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96082.8637414932 - ], - "y": [ - -785168.8110406864, - -188924.92880801545 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96567.91127200374 - ], - "y": [ - -785168.8110406864, - -189611.13910755786 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96501.22061638958 - ], - "y": [ - -785168.8110406864, - -189371.07705115504 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96231.57047597128 - ], - "y": [ - -785168.8110406864, - -187862.73468047418 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96447.73644124497 - ], - "y": [ - -785168.8110406864, - -188350.84668912945 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96907.51876847682 - ], - "y": [ - -785168.8110406864, - -188435.49777233123 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96140.78208609398 - ], - "y": [ - -785168.8110406864, - -189286.4104808909 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96791.93089613823 - ], - "y": [ - -785168.8110406864, - -189329.86947105004 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96773.1294794952 - ], - "y": [ - -785168.8110406864, - -188827.20853608186 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97215.55371993229 - ], - "y": [ - -785168.8110406864, - -188656.4246604865 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96989.24436251477 - ], - "y": [ - -785168.8110406864, - -188224.81397464138 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96715.92227964214 - ], - "y": [ - -785168.8110406864, - -188371.826375027 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96692.76062085203 - ], - "y": [ - -785168.8110406864, - -188530.07168880716 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96896.91552525175 - ], - "y": [ - -785168.8110406864, - -188684.380536833 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96737.85869639236 - ], - "y": [ - -785168.8110406864, - -188809.10200272722 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 95444.01440252263 - ], - "y": [ - -785168.8110406864, - -189064.02055466248 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96447.8287589237 - ], - "y": [ - -785168.8110406864, - -188910.5188593822 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96639.08049903584 - ], - "y": [ - -785168.8110406864, - -187504.5939470865 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97213.58157620984 - ], - "y": [ - -785168.8110406864, - -188238.2747120987 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96349.45899615414 - ], - "y": [ - -785168.8110406864, - -189055.06434900622 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96911.82889073166 - ], - "y": [ - -785168.8110406864, - -188985.5661371472 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96584.25000074002 - ], - "y": [ - -785168.8110406864, - -188817.42461554098 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97638.83972944805 - ], - "y": [ - -785168.8110406864, - -188328.4992507085 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97141.32121371166 - ], - "y": [ - -785168.8110406864, - -188032.35686812358 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97589.68831697167 - ], - "y": [ - -785168.8110406864, - -188989.35923942667 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96754.87507754394 - ], - "y": [ - -785168.8110406864, - -188537.1492944953 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 97436.04173144014 - ], - "y": [ - -785168.8110406864, - -188332.10285588854 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96829.7050884141 - ], - "y": [ - -785168.8110406864, - -188224.61386277262 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96707.30691234408 - ], - "y": [ - -785168.8110406864, - -188398.43069892912 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96535.511292164 - ], - "y": [ - -785168.8110406864, - -188690.45660123866 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96405.25838544288 - ], - "y": [ - -785168.8110406864, - -188764.5244681029 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96596.4969197861 - ], - "y": [ - -785168.8110406864, - -188476.21098523034 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 96957.15143187257 - ], - "y": [ - -785168.8110406864, - -188906.10027535562 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894216.5057303684, - 98108.28736915902 - ], - "y": [ - -785168.8110406864, - -188598.92292480564 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -340099.1897493526, - 97092.03590641617 - ], - "y": [ - 438056.862237691, - -188338.53308343157 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 458352.946828549, - 95739.18477075809 - ], - "y": [ - -427115.71569997055, - -188035.09619434597 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 458352.946828549, - 95638.78273951489 - ], - "y": [ - -427115.71569997055, - -187471.21704082517 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 683996.0178905013, - 96868.09370002619 - ], - "y": [ - -459779.53796019853, - -187485.8021358164 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 683996.0178905013, - 96840.061255232 - ], - "y": [ - -459779.53796019853, - -187835.19770223383 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 233201.9544420003, - 97740.36484145897 - ], - "y": [ - 796480.9210348161, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -884245.3767823352, - 97740.36484145897 - ], - "y": [ - 16228.446847255995, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -347699.8273738099, - 97228.17238280359 - ], - "y": [ - -10117.113578631543, - -188471.24794147993 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -347699.8273738099, - 96287.81181504241 - ], - "y": [ - -10117.113578631543, - -188922.89599843553 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 465403.5083914787, - 97228.17238280359 - ], - "y": [ - -53631.432702805796, - -188471.24794147993 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 183588.8342892922, - 97306.68660394431 - ], - "y": [ - 831976.0985445925, - -189190.69568859632 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 183588.8342892922, - 97519.14188663122 - ], - "y": [ - 831976.0985445925, - -188648.39727075843 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 183588.8342892922, - 96800.95464898097 - ], - "y": [ - 831976.0985445925, - -188995.8386599755 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 183588.8342892922, - 96931.14707892697 - ], - "y": [ - 831976.0985445925, - -188818.68200287974 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -554819.1953686934, - 96653.93028602129 - ], - "y": [ - 159844.88204567993, - -189419.4844744169 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -554819.1953686934, - 97306.68660394431 - ], - "y": [ - 159844.88204567993, - -189190.69568859632 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -554819.1953686934, - 97519.14188663122 - ], - "y": [ - 159844.88204567993, - -188648.39727075843 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -554819.1953686934, - 96800.95464898097 - ], - "y": [ - 159844.88204567993, - -188995.8386599755 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -554819.1953686934, - 96931.14707892697 - ], - "y": [ - 159844.88204567993, - -188818.68200287974 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 950439.392680525, - 96612.17178282065 - ], - "y": [ - -6243.166011681511, - -188681.37081393888 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 950439.392680525, - 94019.39320785269 - ], - "y": [ - -6243.166011681511, - -190034.5154898649 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 950439.392680525, - 96918.79607718707 - ], - "y": [ - -6243.166011681511, - -189093.07196799477 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 950439.392680525, - 95778.09112358528 - ], - "y": [ - -6243.166011681511, - -188332.3887565364 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 950439.392680525, - 94801.82599832956 - ], - "y": [ - -6243.166011681511, - -189148.08464521947 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 950439.392680525, - 94998.66487738185 - ], - "y": [ - -6243.166011681511, - -189778.0564884073 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 950439.392680525, - 95681.96009977852 - ], - "y": [ - -6243.166011681511, - -188895.1305372902 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 950439.392680525, - 95501.99445714205 - ], - "y": [ - -6243.166011681511, - -189361.39928674913 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 950439.392680525, - 95451.74998648891 - ], - "y": [ - -6243.166011681511, - -189514.26395840745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -956642.0026505338, - 97377.6500584912 - ], - "y": [ - -521021.30094780907, - -188424.82223649055 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -956642.0026505338, - 96918.79607718707 - ], - "y": [ - -521021.30094780907, - -189093.07196799477 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -956642.0026505338, - 96959.17409848377 - ], - "y": [ - -521021.30094780907, - -188154.87099078548 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 801315.0897775844, - 97453.56935622763 - ], - "y": [ - 694713.1899190526, - -188823.15900221813 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 856763.4161872992, - 97492.36374902399 - ], - "y": [ - -910162.6660223072, - -188236.33672313037 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 856763.4161872992, - 97452.67144706869 - ], - "y": [ - -910162.6660223072, - -188290.4882788216 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 543040.1381149603, - 97467.97384514623 - ], - "y": [ - -774909.9996208384, - -188591.75199645569 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -190477.9447491629, - 96643.07015445872 - ], - "y": [ - 320117.776495078, - -188345.75062919507 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -190477.9447491629, - 96616.28197124632 - ], - "y": [ - 320117.776495078, - -189486.94419473826 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -190477.9447491629, - 96611.07880435153 - ], - "y": [ - 320117.776495078, - -189045.68105489522 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -316220.8201520302, - 95591.49480913648 - ], - "y": [ - -547323.1177429256, - -188680.97177115767 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -316220.8201520302, - 96743.02101349403 - ], - "y": [ - -547323.1177429256, - -187854.13914095613 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -316220.8201520302, - 96450.68991158345 - ], - "y": [ - -547323.1177429256, - -187620.89247314315 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 470707.5911725738, - 96877.98110658897 - ], - "y": [ - 654473.3768154809, - -187749.7848825597 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 470707.5911725738, - 97082.82303991095 - ], - "y": [ - 654473.3768154809, - -187628.5971893858 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 470707.5911725738, - 98237.07311872549 - ], - "y": [ - 654473.3768154809, - -186283.60700347682 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 470707.5911725738, - 97435.85714721317 - ], - "y": [ - 654473.3768154809, - -186870.78214397354 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -40084.87664969729, - 96347.73945345664 - ], - "y": [ - -554026.6105989073, - -189075.78000835242 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -40084.87664969729, - 98753.0342330029 - ], - "y": [ - -554026.6105989073, - -189556.635346552 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -40084.87664969729, - 97389.05654094371 - ], - "y": [ - -554026.6105989073, - -190524.42466711518 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -40084.87664969729, - 97350.06903114164 - ], - "y": [ - -554026.6105989073, - -189972.3782485477 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -40084.87664969729, - 97254.23934987192 - ], - "y": [ - -554026.6105989073, - -190110.09263707226 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -40084.87664969729, - 96919.826641072 - ], - "y": [ - -554026.6105989073, - -189723.06164490216 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -40084.87664969729, - 97357.32608817489 - ], - "y": [ - -554026.6105989073, - -190104.18934124312 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -40084.87664969729, - 97311.70614692672 - ], - "y": [ - -554026.6105989073, - -191447.36757318178 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -40084.87664969729, - 96312.49145069612 - ], - "y": [ - -554026.6105989073, - -189487.1728230268 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 330812.40467371355, - 97740.36484145897 - ], - "y": [ - 40335.22057385208, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 332347.5294036897, - 97740.36484145897 - ], - "y": [ - 774172.9920404115, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -968835.1525967998, - 97740.36484145897 - ], - "y": [ - -279877.61613975046, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 902764.2360196946, - 97342.74090899815 - ], - "y": [ - 585072.4377650085, - -188337.61728350184 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 896641.9692342175, - 97676.19241492003 - ], - "y": [ - 405049.85986093513, - -188634.22396120222 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 896641.9692342175, - 97533.87560124022 - ], - "y": [ - 405049.85986093513, - -188577.10958302955 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 896641.9692342175, - 96983.61207113188 - ], - "y": [ - 405049.85986093513, - -188609.33112603877 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 896641.9692342175, - 97042.01258952515 - ], - "y": [ - 405049.85986093513, - -187678.114505735 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -21448.410189587543, - 97651.32746016643 - ], - "y": [ - 232440.3037218077, - -187393.45287008572 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -21448.410189587543, - 97136.55546326986 - ], - "y": [ - 232440.3037218077, - -187444.98398375107 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -21448.410189587543, - 97605.64203060168 - ], - "y": [ - 232440.3037218077, - -187212.75750088846 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -21448.410189587543, - 97499.57548817585 - ], - "y": [ - 232440.3037218077, - -187430.50547179487 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -21448.410189587543, - 97615.00090956 - ], - "y": [ - 232440.3037218077, - -187206.375494998 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -21448.410189587543, - 97672.92128722146 - ], - "y": [ - 232440.3037218077, - -187142.3027271855 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 957697.1302399324, - 97634.83104178979 - ], - "y": [ - -25362.31872866912, - -189125.41464985392 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 95512.48672079766 - ], - "y": [ - -248481.98492127337, - -185759.04101010459 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 95520.58581704031 - ], - "y": [ - -248481.98492127337, - -184987.91450924633 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96295.26828740547 - ], - "y": [ - -248481.98492127337, - -186636.99979215744 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96282.43445699873 - ], - "y": [ - -248481.98492127337, - -187026.07843949736 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96568.35948892368 - ], - "y": [ - -248481.98492127337, - -186362.3442443084 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96305.70007753118 - ], - "y": [ - -248481.98492127337, - -184641.7612714999 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96281.6988740464 - ], - "y": [ - -248481.98492127337, - -186631.89998789044 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96634.97232577665 - ], - "y": [ - -248481.98492127337, - -185684.77267411654 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96658.50723704832 - ], - "y": [ - -248481.98492127337, - -185952.0045384303 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96327.25960947742 - ], - "y": [ - -248481.98492127337, - -184904.78554636845 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96412.87128274282 - ], - "y": [ - -248481.98492127337, - -184466.17568020654 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 95612.05251687022 - ], - "y": [ - -248481.98492127337, - -187733.16720291993 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96308.17494820403 - ], - "y": [ - -248481.98492127337, - -186005.44685669165 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96460.09274444025 - ], - "y": [ - -248481.98492127337, - -185619.78884854354 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96049.36643690022 - ], - "y": [ - -248481.98492127337, - -185702.8268145955 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96412.62955632774 - ], - "y": [ - -248481.98492127337, - -186641.42486820777 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96616.7559403405 - ], - "y": [ - -248481.98492127337, - -186086.34378531418 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96519.5204681799 - ], - "y": [ - -248481.98492127337, - -186293.45287911844 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97093.69642855125 - ], - "y": [ - -248481.98492127337, - -186774.72272855093 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96679.99009179635 - ], - "y": [ - -248481.98492127337, - -186590.54840473336 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 95633.12109295135 - ], - "y": [ - -248481.98492127337, - -185178.65674855074 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96619.3340165115 - ], - "y": [ - -248481.98492127337, - -185915.41451703524 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96150.03424362313 - ], - "y": [ - -248481.98492127337, - -185024.2525256191 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 95937.7713444444 - ], - "y": [ - -248481.98492127337, - -187101.25689315388 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96585.71992460922 - ], - "y": [ - -248481.98492127337, - -186246.8336915767 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96491.68898578656 - ], - "y": [ - -248481.98492127337, - -185785.58597568647 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 95350.83394336532 - ], - "y": [ - -248481.98492127337, - -186910.03493563386 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96134.20248253406 - ], - "y": [ - -248481.98492127337, - -184853.0590167661 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96072.38567279669 - ], - "y": [ - -248481.98492127337, - -186226.79838547923 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96772.82588738113 - ], - "y": [ - -248481.98492127337, - -186901.84865346336 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96977.58687203821 - ], - "y": [ - -248481.98492127337, - -186721.96101630855 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96304.58681365351 - ], - "y": [ - -248481.98492127337, - -184537.33337450697 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96251.19968281969 - ], - "y": [ - -248481.98492127337, - -185045.17257071825 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96108.91834438108 - ], - "y": [ - -248481.98492127337, - -185015.8206856978 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96778.70350523331 - ], - "y": [ - -248481.98492127337, - -186804.32931589548 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96382.02705846845 - ], - "y": [ - -248481.98492127337, - -184581.5176270497 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 94634.35092199444 - ], - "y": [ - -248481.98492127337, - -185481.01398954104 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96601.97537172223 - ], - "y": [ - -248481.98492127337, - -186732.67988941015 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96473.43688595422 - ], - "y": [ - -248481.98492127337, - -184625.82608792314 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96422.64317562626 - ], - "y": [ - -248481.98492127337, - -186816.72669112886 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96431.47888012671 - ], - "y": [ - -248481.98492127337, - -184583.06480907716 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96636.83424445745 - ], - "y": [ - -248481.98492127337, - -185882.0659107163 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96056.19248735494 - ], - "y": [ - -248481.98492127337, - -185038.89476309827 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96515.11905526402 - ], - "y": [ - -248481.98492127337, - -185605.49639890593 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96660.38035113053 - ], - "y": [ - -248481.98492127337, - -186050.83831655356 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 95774.24926109349 - ], - "y": [ - -248481.98492127337, - -185545.91429343188 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97585.87618383576 - ], - "y": [ - -248481.98492127337, - -185541.4531936617 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96583.5257472604 - ], - "y": [ - -248481.98492127337, - -186168.82581792577 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 95122.89837108535 - ], - "y": [ - -248481.98492127337, - -186748.98809619094 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96605.90599322402 - ], - "y": [ - -248481.98492127337, - -186212.79235782122 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96038.36554774032 - ], - "y": [ - -248481.98492127337, - -185138.3043013017 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96031.4993704607 - ], - "y": [ - -248481.98492127337, - -185886.66303952422 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96675.71260270195 - ], - "y": [ - -248481.98492127337, - -185943.81351701595 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97049.512435505 - ], - "y": [ - -248481.98492127337, - -187223.2607479505 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96433.845799983 - ], - "y": [ - -248481.98492127337, - -186155.98693221714 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 95897.07037264043 - ], - "y": [ - -248481.98492127337, - -186745.5325164879 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96960.27176327427 - ], - "y": [ - -248481.98492127337, - -185873.2153007946 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96307.85692216411 - ], - "y": [ - -248481.98492127337, - -184956.02375735843 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96242.35848519257 - ], - "y": [ - -248481.98492127337, - -184916.01122916443 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96819.81129369602 - ], - "y": [ - -248481.98492127337, - -187298.0167096983 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97249.8102467086 - ], - "y": [ - -248481.98492127337, - -186400.0437673064 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96108.87427334944 - ], - "y": [ - -248481.98492127337, - -186436.31884006507 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97349.66316971318 - ], - "y": [ - -248481.98492127337, - -186909.73673779095 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97012.3360267975 - ], - "y": [ - -248481.98492127337, - -185995.1502748551 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96330.17839103569 - ], - "y": [ - -248481.98492127337, - -184615.0971850325 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 98400.16393508099 - ], - "y": [ - -248481.98492127337, - -187360.11530786066 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96728.43531848033 - ], - "y": [ - -248481.98492127337, - -185731.06588292573 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 95819.22417527653 - ], - "y": [ - -248481.98492127337, - -185203.40536363234 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97357.92552252565 - ], - "y": [ - -248481.98492127337, - -186738.0081330498 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96299.78998071494 - ], - "y": [ - -248481.98492127337, - -184452.34215766398 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97385.46389592621 - ], - "y": [ - -248481.98492127337, - -186427.8924649136 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97411.8360170104 - ], - "y": [ - -248481.98492127337, - -185642.1433378504 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97204.89839977278 - ], - "y": [ - -248481.98492127337, - -186666.6053800214 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96463.30750173924 - ], - "y": [ - -248481.98492127337, - -185815.18416524283 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96598.60562028212 - ], - "y": [ - -248481.98492127337, - -186758.5541269017 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 95896.43296916565 - ], - "y": [ - -248481.98492127337, - -187178.7309685011 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96091.45432140626 - ], - "y": [ - -248481.98492127337, - -185344.84167674318 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97311.35174306807 - ], - "y": [ - -248481.98492127337, - -186299.91453282413 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96200.70472225144 - ], - "y": [ - -248481.98492127337, - -184913.47542316676 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97500.53674710442 - ], - "y": [ - -248481.98492127337, - -186120.90133707918 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96082.33537164425 - ], - "y": [ - -248481.98492127337, - -186355.57333992186 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96477.12621197902 - ], - "y": [ - -248481.98492127337, - -186189.16120161928 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96347.4403938442 - ], - "y": [ - -248481.98492127337, - -184489.52291589003 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96763.1280194511 - ], - "y": [ - -248481.98492127337, - -186020.49632337195 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96773.35799206587 - ], - "y": [ - -248481.98492127337, - -185978.46454360176 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96670.27291581893 - ], - "y": [ - -248481.98492127337, - -186423.1890183184 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 94870.7294183785 - ], - "y": [ - -248481.98492127337, - -186357.39136631842 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96530.4881400899 - ], - "y": [ - -248481.98492127337, - -186197.9689961989 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 95996.08028297019 - ], - "y": [ - -248481.98492127337, - -185022.86408063665 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 95648.0622321095 - ], - "y": [ - -248481.98492127337, - -187501.80648056217 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 95765.59330845765 - ], - "y": [ - -248481.98492127337, - -184448.27042316197 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96347.57634764894 - ], - "y": [ - -248481.98492127337, - -185456.1454266718 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96313.51649151853 - ], - "y": [ - -248481.98492127337, - -186332.64294302047 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96240.89790514634 - ], - "y": [ - -248481.98492127337, - -184782.3347015735 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97253.59328958677 - ], - "y": [ - -248481.98492127337, - -186335.73632380622 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96585.02524485815 - ], - "y": [ - -248481.98492127337, - -186471.46349538234 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97110.64567914454 - ], - "y": [ - -248481.98492127337, - -186139.010172475 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96401.05087142391 - ], - "y": [ - -248481.98492127337, - -186316.0422884422 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97634.16117706981 - ], - "y": [ - -248481.98492127337, - -185427.96582922543 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97632.23610323192 - ], - "y": [ - -248481.98492127337, - -185447.0419864294 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96476.9266197321 - ], - "y": [ - -248481.98492127337, - -184490.70631354378 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96143.59715704634 - ], - "y": [ - -248481.98492127337, - -184939.12159409848 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96442.3959926909 - ], - "y": [ - -248481.98492127337, - -185499.81083646082 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97173.67520609817 - ], - "y": [ - -248481.98492127337, - -185420.27932112452 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97452.54296459325 - ], - "y": [ - -248481.98492127337, - -186178.47202606747 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 98764.71093073962 - ], - "y": [ - -248481.98492127337, - -185579.11398649425 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 94675.58068459465 - ], - "y": [ - -248481.98492127337, - -162543.04429998007 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96584.45858311476 - ], - "y": [ - -248481.98492127337, - -185402.97734600544 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96074.51018899358 - ], - "y": [ - -248481.98492127337, - -184648.39875714693 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96941.3855747379 - ], - "y": [ - -248481.98492127337, - -185873.0454380232 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96481.93148257826 - ], - "y": [ - -248481.98492127337, - -185520.70192438262 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96194.20097196527 - ], - "y": [ - -248481.98492127337, - -185045.13302486815 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96410.63417003947 - ], - "y": [ - -248481.98492127337, - -184686.93743150224 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96268.58433157318 - ], - "y": [ - -248481.98492127337, - -184749.34739859024 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96844.08726268722 - ], - "y": [ - -248481.98492127337, - -184975.0257556787 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96732.61589548577 - ], - "y": [ - -248481.98492127337, - -186494.74258418888 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97054.54306076036 - ], - "y": [ - -248481.98492127337, - -186002.60660400984 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96736.36947326055 - ], - "y": [ - -248481.98492127337, - -185421.69274864852 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 95950.87856285187 - ], - "y": [ - -248481.98492127337, - -184586.8813999643 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96058.5884161396 - ], - "y": [ - -248481.98492127337, - -185681.38668976224 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96074.46008448287 - ], - "y": [ - -248481.98492127337, - -186353.07679074036 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96373.61215631547 - ], - "y": [ - -248481.98492127337, - -185564.40303426507 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96774.68889401545 - ], - "y": [ - -248481.98492127337, - -186002.1139085686 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 95954.6226953649 - ], - "y": [ - -248481.98492127337, - -185305.14466217102 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97375.91125894338 - ], - "y": [ - -248481.98492127337, - -185778.17229121647 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96762.60907180404 - ], - "y": [ - -248481.98492127337, - -186985.55167581502 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96892.63356474544 - ], - "y": [ - -248481.98492127337, - -186263.96942212473 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96499.75723381033 - ], - "y": [ - -248481.98492127337, - -185857.1772490468 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96294.09088720444 - ], - "y": [ - -248481.98492127337, - -185285.2393191878 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96966.39468034501 - ], - "y": [ - -248481.98492127337, - -187056.932365551 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96109.50994722702 - ], - "y": [ - -248481.98492127337, - -184676.4950788661 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96088.99615148573 - ], - "y": [ - -248481.98492127337, - -184930.69103318956 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96447.29551553998 - ], - "y": [ - -248481.98492127337, - -185654.1953572347 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 95819.44644735986 - ], - "y": [ - -248481.98492127337, - -184539.2197937198 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96218.35482989937 - ], - "y": [ - -248481.98492127337, - -185426.67525594652 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 95899.18906383448 - ], - "y": [ - -248481.98492127337, - -185125.95912239008 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96769.01595020863 - ], - "y": [ - -248481.98492127337, - -186228.52516030474 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96274.30300397708 - ], - "y": [ - -248481.98492127337, - -185197.58467855424 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96042.0069575773 - ], - "y": [ - -248481.98492127337, - -184440.56367975674 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97385.79270355738 - ], - "y": [ - -248481.98492127337, - -185759.1915587864 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96229.39248836122 - ], - "y": [ - -248481.98492127337, - -185972.1252497052 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96126.32784334563 - ], - "y": [ - -248481.98492127337, - -186192.2420612465 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96635.17803046739 - ], - "y": [ - -248481.98492127337, - -185572.22568055146 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96526.03756640776 - ], - "y": [ - -248481.98492127337, - -184521.98992331282 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96032.39838433285 - ], - "y": [ - -248481.98492127337, - -184716.55236438496 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97463.6827927217 - ], - "y": [ - -248481.98492127337, - -187315.42788165333 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 95854.85581067526 - ], - "y": [ - -248481.98492127337, - -186517.17238975927 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96404.04885412315 - ], - "y": [ - -248481.98492127337, - -185020.17742510125 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96940.5437378161 - ], - "y": [ - -248481.98492127337, - -186047.50278945875 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96906.44900909 - ], - "y": [ - -248481.98492127337, - -186067.006560711 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96406.17290872385 - ], - "y": [ - -248481.98492127337, - -185935.95217366592 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97193.59098538685 - ], - "y": [ - -248481.98492127337, - -187267.3268205127 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97229.6312230193 - ], - "y": [ - -248481.98492127337, - -186480.07163780744 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96433.95166449582 - ], - "y": [ - -248481.98492127337, - -185251.66599737256 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97275.9101009866 - ], - "y": [ - -248481.98492127337, - -186588.42377164616 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96243.29294451735 - ], - "y": [ - -248481.98492127337, - -185212.56249281162 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97395.09075685765 - ], - "y": [ - -248481.98492127337, - -185768.74376793872 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96491.31294403854 - ], - "y": [ - -248481.98492127337, - -184566.5211927391 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96377.89286649457 - ], - "y": [ - -248481.98492127337, - -184641.3699119499 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 96395.26906016511 - ], - "y": [ - -248481.98492127337, - -184521.26817218866 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 482919.71377339005, - 97324.02537320471 - ], - "y": [ - -248481.98492127337, - -187072.0455521363 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -922113.7465409437, - 97620.07637011069 - ], - "y": [ - -560953.9048498886, - -187795.37604648358 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -115988.0603293435, - 97651.32746016643 - ], - "y": [ - -519433.26064300345, - -187393.45287008572 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -115988.0603293435, - 97136.55546326986 - ], - "y": [ - -519433.26064300345, - -187444.98398375107 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -115988.0603293435, - 97605.64203060168 - ], - "y": [ - -519433.26064300345, - -187212.75750088846 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -115988.0603293435, - 97499.57548817585 - ], - "y": [ - -519433.26064300345, - -187430.50547179487 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -115988.0603293435, - 97615.00090956 - ], - "y": [ - -519433.26064300345, - -187206.375494998 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -115988.0603293435, - 97672.92128722146 - ], - "y": [ - -519433.26064300345, - -187142.3027271855 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 320720.9523268768, - 96147.39169169297 - ], - "y": [ - 184701.89774695545, - -189725.6419856943 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -183915.13182539286, - 97643.64988982778 - ], - "y": [ - 893827.7421553927, - -187757.4125399983 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -183915.13182539286, - 97033.93508477152 - ], - "y": [ - 893827.7421553927, - -187976.81833544138 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -183915.13182539286, - 97602.881367329 - ], - "y": [ - 893827.7421553927, - -187648.12160933763 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 467586.5371865227, - 97306.68660394431 - ], - "y": [ - -828817.328114863, - -189190.69568859632 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 467586.5371865227, - 97519.14188663122 - ], - "y": [ - -828817.328114863, - -188648.39727075843 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 467586.5371865227, - 96800.95464898097 - ], - "y": [ - -828817.328114863, - -188995.8386599755 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 467586.5371865227, - 96931.14707892697 - ], - "y": [ - -828817.328114863, - -188818.68200287974 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 155810.07246206168, - 97155.50811563137 - ], - "y": [ - 750487.891196061, - -188696.13322752403 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 155810.07246206168, - 96918.79607718707 - ], - "y": [ - 750487.891196061, - -189093.07196799477 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 155810.07246206168, - 96612.17178282065 - ], - "y": [ - 750487.891196061, - -188681.37081393888 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -255273.7184953122, - 98171.17574764158 - ], - "y": [ - 508993.2816321345, - -188070.50402783387 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 683377.9850822419, - 96541.43397278279 - ], - "y": [ - 540210.7149106248, - -189274.10474049454 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 683377.9850822419, - 96167.45474416234 - ], - "y": [ - 540210.7149106248, - -189265.0331807753 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 683377.9850822419, - 95870.52327035548 - ], - "y": [ - 540210.7149106248, - -189023.51159242663 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 683377.9850822419, - 96926.74644690406 - ], - "y": [ - 540210.7149106248, - -189150.0722038921 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 683377.9850822419, - 96878.0650637567 - ], - "y": [ - 540210.7149106248, - -188785.27223021127 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 683377.9850822419, - 96356.62202527624 - ], - "y": [ - 540210.7149106248, - -189202.4647666379 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -820786.1217632035, - 97610.48729478249 - ], - "y": [ - -373173.5110220982, - -188283.2622476873 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -820786.1217632035, - 97375.10606040448 - ], - "y": [ - -373173.5110220982, - -188647.58850257998 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -820786.1217632035, - 98168.55916640947 - ], - "y": [ - -373173.5110220982, - -187775.4606762898 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -514479.34659976815, - 97401.99871940678 - ], - "y": [ - -303596.317152965, - -189047.84983436737 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -514479.34659976815, - 96722.2929728447 - ], - "y": [ - -303596.317152965, - -188214.95290711892 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -514479.34659976815, - 97054.36607374287 - ], - "y": [ - -303596.317152965, - -187829.60079496383 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -514479.34659976815, - 96603.25260090239 - ], - "y": [ - -303596.317152965, - -188860.81131323622 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -158992.66117613608, - 98932.31091884513 - ], - "y": [ - 414595.30767788057, - -187594.8777657927 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -158992.66117613608, - 98926.20655583622 - ], - "y": [ - 414595.30767788057, - -188109.5947916895 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -158992.66117613608, - 98881.20399257346 - ], - "y": [ - 414595.30767788057, - -188135.7951117508 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -158992.66117613608, - 98873.6590998779 - ], - "y": [ - 414595.30767788057, - -188126.67429510137 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -158992.66117613608, - 98776.08147395353 - ], - "y": [ - 414595.30767788057, - -188068.89540782082 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -158992.66117613608, - 98916.08043593282 - ], - "y": [ - 414595.30767788057, - -188138.17806449422 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -158992.66117613608, - 98775.64297666437 - ], - "y": [ - 414595.30767788057, - -188113.8147030654 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -158992.66117613608, - 98833.5386160878 - ], - "y": [ - 414595.30767788057, - -188119.49823623613 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -158992.66117613608, - 98779.4951496633 - ], - "y": [ - 414595.30767788057, - -188123.9780570342 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -158992.66117613608, - 98769.87019965112 - ], - "y": [ - 414595.30767788057, - -188121.51859750494 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -158992.66117613608, - 98763.69912444155 - ], - "y": [ - 414595.30767788057, - -188082.81454332572 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -158992.66117613608, - 98715.38337956829 - ], - "y": [ - 414595.30767788057, - -188023.85098966694 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -158992.66117613608, - 98838.01226486915 - ], - "y": [ - 414595.30767788057, - -188038.4334288893 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -158992.66117613608, - 98731.25835265023 - ], - "y": [ - 414595.30767788057, - -188097.6602407291 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -158992.66117613608, - 98794.9356782363 - ], - "y": [ - 414595.30767788057, - -188124.65543545736 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -158992.66117613608, - 98875.12446310604 - ], - "y": [ - 414595.30767788057, - -188079.8329504583 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -158992.66117613608, - 98845.6917714939 - ], - "y": [ - 414595.30767788057, - -188129.3743830729 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 674390.0901959051, - 97598.41715003968 - ], - "y": [ - 19484.603545775193, - -187109.55145493208 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 674390.0901959051, - 97191.15673842629 - ], - "y": [ - 19484.603545775193, - -186870.85476427 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -545638.2423811845, - 97554.49945784982 - ], - "y": [ - -461024.5494484895, - -188380.61838572615 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 604934.7306536661, - 97136.55546326986 - ], - "y": [ - -47611.78987915504, - -187444.98398375107 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 604934.7306536661, - 97605.64203060168 - ], - "y": [ - -47611.78987915504, - -187212.75750088846 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 604934.7306536661, - 97651.32746016643 - ], - "y": [ - -47611.78987915504, - -187393.45287008572 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 604934.7306536661, - 97499.57548817585 - ], - "y": [ - -47611.78987915504, - -187430.50547179487 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 604934.7306536661, - 97615.00090956 - ], - "y": [ - -47611.78987915504, - -187206.375494998 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 604934.7306536661, - 97672.92128722146 - ], - "y": [ - -47611.78987915504, - -187142.3027271855 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -162966.46759127188, - 96994.3545714313 - ], - "y": [ - 88180.55865862906, - -187896.4403547719 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -162966.46759127188, - 96415.73464421919 - ], - "y": [ - 88180.55865862906, - -186832.87175251383 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -162966.46759127188, - 96234.84158094184 - ], - "y": [ - 88180.55865862906, - -188228.79178433472 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 914467.6632273761, - 97792.47295206528 - ], - "y": [ - 988228.6950640721, - -188560.0382335581 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -881198.5201276346, - 97740.36484145897 - ], - "y": [ - 357677.7559037796, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 393875.6303361353, - 96462.81227754163 - ], - "y": [ - 121526.15548473045, - -189116.42239682464 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -173691.57445018858, - 97740.36484145897 - ], - "y": [ - 698793.2608907002, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 97852.29653105894 - ], - "y": [ - -487152.4830132172, - -187271.2309208508 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 97497.28727853562 - ], - "y": [ - -487152.4830132172, - -188311.63055655325 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 97343.57538035887 - ], - "y": [ - -487152.4830132172, - -187739.67693354897 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 97366.39316478191 - ], - "y": [ - -487152.4830132172, - -187063.92444055318 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 97781.84828947709 - ], - "y": [ - -487152.4830132172, - -187917.59257197715 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 98514.4612858039 - ], - "y": [ - -487152.4830132172, - -187718.91875175654 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 98281.43831840085 - ], - "y": [ - -487152.4830132172, - -187835.8854861633 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 97921.70930511011 - ], - "y": [ - -487152.4830132172, - -186803.90033266746 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 97902.18401137421 - ], - "y": [ - -487152.4830132172, - -186803.59234443662 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 98983.632695647 - ], - "y": [ - -487152.4830132172, - -187788.5747429511 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 99203.2809335762 - ], - "y": [ - -487152.4830132172, - -187893.88302668915 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 98509.44614370928 - ], - "y": [ - -487152.4830132172, - -187975.0076209473 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 96494.98600367835 - ], - "y": [ - -487152.4830132172, - -188925.1717325238 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 98740.78608913493 - ], - "y": [ - -487152.4830132172, - -188021.2228785292 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 99612.16066233935 - ], - "y": [ - -487152.4830132172, - -187932.34492398132 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 100399.53610597138 - ], - "y": [ - -487152.4830132172, - -188182.1801783731 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 99242.27473376936 - ], - "y": [ - -487152.4830132172, - -187688.50752132258 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 97873.62352691275 - ], - "y": [ - -487152.4830132172, - -188117.50710319917 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 98601.01896303026 - ], - "y": [ - -487152.4830132172, - -187793.53772320974 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 97723.80989181406 - ], - "y": [ - -487152.4830132172, - -188261.16935105162 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 98367.93488464183 - ], - "y": [ - -487152.4830132172, - -187834.80609488173 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 98698.73643764145 - ], - "y": [ - -487152.4830132172, - -188539.05431916684 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 98474.73668821216 - ], - "y": [ - -487152.4830132172, - -187997.42121583116 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 97769.5225019777 - ], - "y": [ - -487152.4830132172, - -187612.6161505803 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 98424.79828892439 - ], - "y": [ - -487152.4830132172, - -187887.72467534128 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 98849.99134497087 - ], - "y": [ - -487152.4830132172, - -187994.01573117293 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 97153.8202347327 - ], - "y": [ - -487152.4830132172, - -186612.36184898173 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 97784.87511330319 - ], - "y": [ - -487152.4830132172, - -187574.2721654691 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 98488.59232974793 - ], - "y": [ - -487152.4830132172, - -188185.43487919736 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 97835.98880603131 - ], - "y": [ - -487152.4830132172, - -187645.64505814915 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 98697.76296828069 - ], - "y": [ - -487152.4830132172, - -187791.77040384425 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 98425.30418388022 - ], - "y": [ - -487152.4830132172, - -187981.65234561847 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 97352.5478411118 - ], - "y": [ - -487152.4830132172, - -188328.62880040111 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 99087.60514794616 - ], - "y": [ - -487152.4830132172, - -186953.31740903624 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 99562.51936967154 - ], - "y": [ - -487152.4830132172, - -188465.46750448947 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 97438.32392949228 - ], - "y": [ - -487152.4830132172, - -187228.86858406416 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 99581.18821252153 - ], - "y": [ - -487152.4830132172, - -187937.28779075225 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 98484.49246054886 - ], - "y": [ - -487152.4830132172, - -187728.251997722 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 98589.19418356709 - ], - "y": [ - -487152.4830132172, - -187741.77573005384 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 99047.9458477898 - ], - "y": [ - -487152.4830132172, - -187158.59874792627 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 97904.87372888521 - ], - "y": [ - -487152.4830132172, - -187975.58965748092 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 98685.34030967425 - ], - "y": [ - -487152.4830132172, - -187927.83620065072 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 97236.56543939441 - ], - "y": [ - -487152.4830132172, - -186563.98191544128 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 101734.4186530189, - 98552.63522931661 - ], - "y": [ - -487152.4830132172, - -187904.33904992894 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 102890.59825682867, - 97306.68660394431 - ], - "y": [ - -955940.2429958172, - -189190.69568859632 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 102890.59825682867, - 97519.14188663122 - ], - "y": [ - -955940.2429958172, - -188648.39727075843 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 102890.59825682867, - 96931.14707892697 - ], - "y": [ - -955940.2429958172, - -188818.68200287974 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -709061.166520672, - 97440.7506574999 - ], - "y": [ - -701703.5223337576, - -186517.6751626997 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -704117.2696122591, - 97375.10606040448 - ], - "y": [ - 229654.94053449653, - -188647.58850257998 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -704117.2696122591, - 96448.97691094204 - ], - "y": [ - 229654.94053449653, - -188788.84774377767 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -704117.2696122591, - 96722.2929728447 - ], - "y": [ - 229654.94053449653, - -188214.95290711892 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 82695.01147360781, - 97272.57643613985 - ], - "y": [ - -395110.0598072463, - -187457.0743764612 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 82695.01147360781, - 96709.59744547942 - ], - "y": [ - -395110.0598072463, - -187427.58017047317 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 82695.01147360781, - 98547.70620576198 - ], - "y": [ - -395110.0598072463, - -186780.2984968334 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 82695.01147360781, - 97115.24870623546 - ], - "y": [ - -395110.0598072463, - -187516.61720349116 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 892639.6045231073, - 96930.11819667481 - ], - "y": [ - 257602.165830513, - -188036.28044668204 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 892639.6045231073, - 97074.16623154836 - ], - "y": [ - 257602.165830513, - -187566.1094978599 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 892639.6045231073, - 96568.92366528956 - ], - "y": [ - 257602.165830513, - -187881.7928789883 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -407373.19441791973, - 98713.83774017166 - ], - "y": [ - 121612.0765485973, - -187307.95076337553 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -407373.19441791973, - 98345.9554260893 - ], - "y": [ - 121612.0765485973, - -187950.03622824297 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -407373.19441791973, - 97740.55752143663 - ], - "y": [ - 121612.0765485973, - -187244.0460795401 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -542090.163883535, - 97988.18684320113 - ], - "y": [ - 406139.1365539877, - -187306.8260455551 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -542090.163883535, - 99349.28939642792 - ], - "y": [ - 406139.1365539877, - -186941.09836380862 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 383602.4527648727, - 96556.14889918086 - ], - "y": [ - 873399.66086256, - -187281.55271362027 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 383602.4527648727, - 99625.77747749203 - ], - "y": [ - 873399.66086256, - -184627.2559353374 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 383602.4527648727, - 98427.86290460796 - ], - "y": [ - 873399.66086256, - -187265.23927959087 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 587710.1196072107, - 97740.36484145897 - ], - "y": [ - 948537.932093139, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 326147.5533448339, - 97468.41119559384 - ], - "y": [ - 925076.9258288649, - -187879.37136154508 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -995533.7825129096, - 97532.46968364714 - ], - "y": [ - -94842.01072127352, - -187821.3765527352 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -995533.7825129096, - 97025.5243570638 - ], - "y": [ - -94842.01072127352, - -188384.35926426292 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 97403.19800982128 - ], - "y": [ - -172396.12733221232, - -187883.60479267285 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99189.38105820611 - ], - "y": [ - -172396.12733221232, - -187489.15417484118 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99130.3078520612 - ], - "y": [ - -172396.12733221232, - -186717.18778761072 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98512.10297397664 - ], - "y": [ - -172396.12733221232, - -186287.99929102132 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98519.8177010953 - ], - "y": [ - -172396.12733221232, - -187805.10710923118 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99017.67985713482 - ], - "y": [ - -172396.12733221232, - -187648.9973224916 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 97619.72683427205 - ], - "y": [ - -172396.12733221232, - -186146.62535800086 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98914.83209812317 - ], - "y": [ - -172396.12733221232, - -187493.66055654176 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98147.84267591721 - ], - "y": [ - -172396.12733221232, - -187627.45216360627 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 97949.55637290105 - ], - "y": [ - -172396.12733221232, - -187246.44784323307 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99502.83924873942 - ], - "y": [ - -172396.12733221232, - -186544.6994452667 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98872.0205731119 - ], - "y": [ - -172396.12733221232, - -188210.8583614681 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98390.87404103394 - ], - "y": [ - -172396.12733221232, - -187744.5423702615 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99053.11429206465 - ], - "y": [ - -172396.12733221232, - -188036.86055892534 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 102016.60254936705 - ], - "y": [ - -172396.12733221232, - -179133.13735543872 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98075.21405525423 - ], - "y": [ - -172396.12733221232, - -187953.2923392146 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99162.58751241713 - ], - "y": [ - -172396.12733221232, - -187258.52951028265 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99982.38307176298 - ], - "y": [ - -172396.12733221232, - -186551.5718918603 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98292.59127337417 - ], - "y": [ - -172396.12733221232, - -186296.09077217794 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 100060.98457894419 - ], - "y": [ - -172396.12733221232, - -185926.73089974615 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99185.22072761349 - ], - "y": [ - -172396.12733221232, - -185395.93395849012 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 97947.04358444022 - ], - "y": [ - -172396.12733221232, - -185879.15090298475 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 97474.60738990385 - ], - "y": [ - -172396.12733221232, - -186605.81963314634 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99170.7047386012 - ], - "y": [ - -172396.12733221232, - -186705.75237789055 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98052.15218821482 - ], - "y": [ - -172396.12733221232, - -186345.44096085647 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98616.68136712202 - ], - "y": [ - -172396.12733221232, - -186875.28527664224 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99500.63364741569 - ], - "y": [ - -172396.12733221232, - -187527.73357511935 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98316.9751512879 - ], - "y": [ - -172396.12733221232, - -187567.52052119686 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99176.98993944687 - ], - "y": [ - -172396.12733221232, - -187774.1615382006 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99162.04598470115 - ], - "y": [ - -172396.12733221232, - -187413.64255787656 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 97788.31675277463 - ], - "y": [ - -172396.12733221232, - -186699.2701887279 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 100348.89954635833 - ], - "y": [ - -172396.12733221232, - -185739.58717722545 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99148.26930216937 - ], - "y": [ - -172396.12733221232, - -187270.5390270905 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 100486.82668676783 - ], - "y": [ - -172396.12733221232, - -185576.15263923115 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99758.98817475478 - ], - "y": [ - -172396.12733221232, - -186350.72668639437 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 96889.7794321626 - ], - "y": [ - -172396.12733221232, - -185754.93903104283 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99026.6226858807 - ], - "y": [ - -172396.12733221232, - -187305.67084880813 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99069.25619307961 - ], - "y": [ - -172396.12733221232, - -187046.43325413764 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 101823.31476410347 - ], - "y": [ - -172396.12733221232, - -184234.61115541728 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98379.14339417113 - ], - "y": [ - -172396.12733221232, - -186972.57418070477 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 101380.81652138675 - ], - "y": [ - -172396.12733221232, - -183824.5305223081 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99254.27452910501 - ], - "y": [ - -172396.12733221232, - -188073.66592800152 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99227.13583415966 - ], - "y": [ - -172396.12733221232, - -187728.06688195525 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98212.04884196128 - ], - "y": [ - -172396.12733221232, - -188874.14340416354 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99094.77135415385 - ], - "y": [ - -172396.12733221232, - -188459.36009707808 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98915.86627395742 - ], - "y": [ - -172396.12733221232, - -190374.15560172813 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98121.78812235915 - ], - "y": [ - -172396.12733221232, - -189063.428793386 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99010.43098706538 - ], - "y": [ - -172396.12733221232, - -188003.3208638465 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99006.76819217965 - ], - "y": [ - -172396.12733221232, - -187986.19049612174 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98421.28339426052 - ], - "y": [ - -172396.12733221232, - -189149.42833616625 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98918.94691074 - ], - "y": [ - -172396.12733221232, - -188614.21318785282 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98809.12475691538 - ], - "y": [ - -172396.12733221232, - -188591.14091919875 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99070.331362437 - ], - "y": [ - -172396.12733221232, - -187899.4374158756 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 97874.19535094783 - ], - "y": [ - -172396.12733221232, - -187973.27776270141 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98942.96036569965 - ], - "y": [ - -172396.12733221232, - -188306.96972666128 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98368.76399286573 - ], - "y": [ - -172396.12733221232, - -188623.6166852075 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 97911.02555719024 - ], - "y": [ - -172396.12733221232, - -188689.9069400571 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98818.24534258251 - ], - "y": [ - -172396.12733221232, - -188243.41945504982 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99191.65795239966 - ], - "y": [ - -172396.12733221232, - -187366.96961790608 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99272.95214509276 - ], - "y": [ - -172396.12733221232, - -188433.4935194492 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98629.16309416488 - ], - "y": [ - -172396.12733221232, - -188344.57017201104 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98896.61825153053 - ], - "y": [ - -172396.12733221232, - -188096.6720864056 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 97353.8831923671 - ], - "y": [ - -172396.12733221232, - -190042.38359170523 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98413.72450899602 - ], - "y": [ - -172396.12733221232, - -187776.081074906 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99048.52954857876 - ], - "y": [ - -172396.12733221232, - -188131.29016873462 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99860.44427206193 - ], - "y": [ - -172396.12733221232, - -188443.1461449862 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99875.65907184825 - ], - "y": [ - -172396.12733221232, - -186553.62133220496 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98991.31426615387 - ], - "y": [ - -172396.12733221232, - -188002.51793235893 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98545.72335094343 - ], - "y": [ - -172396.12733221232, - -187969.50621106548 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99143.15955432564 - ], - "y": [ - -172396.12733221232, - -187790.99540247666 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 97910.12779784399 - ], - "y": [ - -172396.12733221232, - -187346.30214189566 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98656.64266720755 - ], - "y": [ - -172396.12733221232, - -188420.23770977926 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98406.94597948619 - ], - "y": [ - -172396.12733221232, - -189713.61547225437 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 97476.14534117641 - ], - "y": [ - -172396.12733221232, - -189579.9504364677 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 97524.08090876219 - ], - "y": [ - -172396.12733221232, - -189111.4078263055 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99171.65872471192 - ], - "y": [ - -172396.12733221232, - -187949.63698018505 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99548.50572708945 - ], - "y": [ - -172396.12733221232, - -188522.7223023232 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 97949.35571979226 - ], - "y": [ - -172396.12733221232, - -187937.26783141587 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99391.34679357102 - ], - "y": [ - -172396.12733221232, - -188130.4537181713 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98722.02495329459 - ], - "y": [ - -172396.12733221232, - -187934.23814137233 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99374.50165106604 - ], - "y": [ - -172396.12733221232, - -188172.74538859082 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 97825.10446462789 - ], - "y": [ - -172396.12733221232, - -188739.05313596342 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 97650.77807951198 - ], - "y": [ - -172396.12733221232, - -188776.96293003074 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99091.39852136569 - ], - "y": [ - -172396.12733221232, - -187409.36259250416 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98663.5728126574 - ], - "y": [ - -172396.12733221232, - -188147.54710943915 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98159.03165818081 - ], - "y": [ - -172396.12733221232, - -188912.98663177204 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99060.55516943279 - ], - "y": [ - -172396.12733221232, - -187872.6633840466 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99070.36691418258 - ], - "y": [ - -172396.12733221232, - -187983.6774823736 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 94807.18741906618 - ], - "y": [ - -172396.12733221232, - -191242.41426244462 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99956.68584656977 - ], - "y": [ - -172396.12733221232, - -186152.69967393065 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99881.38194405592 - ], - "y": [ - -172396.12733221232, - -189386.63393714104 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99269.75421848508 - ], - "y": [ - -172396.12733221232, - -187511.94987432053 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98657.65560967932 - ], - "y": [ - -172396.12733221232, - -188311.50521847996 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99187.14420424569 - ], - "y": [ - -172396.12733221232, - -187429.57924484243 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99130.37213728795 - ], - "y": [ - -172396.12733221232, - -188069.86804999335 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98433.94367818839 - ], - "y": [ - -172396.12733221232, - -187683.73338858323 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98598.39852284717 - ], - "y": [ - -172396.12733221232, - -188441.93108825223 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99397.67295607875 - ], - "y": [ - -172396.12733221232, - -188229.31889099232 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 100062.94026884029 - ], - "y": [ - -172396.12733221232, - -187736.63135462272 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99683.93197275087 - ], - "y": [ - -172396.12733221232, - -187992.83317437719 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98942.47918301482 - ], - "y": [ - -172396.12733221232, - -188118.8223297085 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98372.2920372052 - ], - "y": [ - -172396.12733221232, - -187582.59747798453 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99106.89445006047 - ], - "y": [ - -172396.12733221232, - -187476.39314391202 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99057.76069575727 - ], - "y": [ - -172396.12733221232, - -187234.4612318493 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98225.6719769043 - ], - "y": [ - -172396.12733221232, - -188221.49233807725 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98965.17216239334 - ], - "y": [ - -172396.12733221232, - -188309.63351146277 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99161.06627467804 - ], - "y": [ - -172396.12733221232, - -187764.81958165232 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 100038.45200630881 - ], - "y": [ - -172396.12733221232, - -188226.41949047343 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99231.69745173643 - ], - "y": [ - -172396.12733221232, - -188297.22695862473 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99643.13410786055 - ], - "y": [ - -172396.12733221232, - -186800.93628583517 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99121.89628822553 - ], - "y": [ - -172396.12733221232, - -188080.7633837035 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98896.0953062042 - ], - "y": [ - -172396.12733221232, - -187297.44363830626 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98996.3949186886 - ], - "y": [ - -172396.12733221232, - -187963.97664086308 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99010.23040006083 - ], - "y": [ - -172396.12733221232, - -187969.50842343477 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99067.43224177675 - ], - "y": [ - -172396.12733221232, - -188021.3687563727 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98982.5538246546 - ], - "y": [ - -172396.12733221232, - -187972.53307352384 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99326.93888038411 - ], - "y": [ - -172396.12733221232, - -188078.52295971283 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 97455.17599729972 - ], - "y": [ - -172396.12733221232, - -188978.81025809547 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98980.69875328755 - ], - "y": [ - -172396.12733221232, - -188226.32844361593 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99685.34161040152 - ], - "y": [ - -172396.12733221232, - -187679.47433074287 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 100612.93716200726 - ], - "y": [ - -172396.12733221232, - -188763.44516650846 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99244.69832153102 - ], - "y": [ - -172396.12733221232, - -187724.4325574573 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99226.22079845401 - ], - "y": [ - -172396.12733221232, - -187610.1377688772 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99091.55472439228 - ], - "y": [ - -172396.12733221232, - -187354.91901122752 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99026.64548034257 - ], - "y": [ - -172396.12733221232, - -187993.51411086737 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98688.75667619119 - ], - "y": [ - -172396.12733221232, - -187185.02879405092 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99060.11730816362 - ], - "y": [ - -172396.12733221232, - -188028.29034553113 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99629.11999021804 - ], - "y": [ - -172396.12733221232, - -188188.52643226265 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99571.7539254891 - ], - "y": [ - -172396.12733221232, - -187803.06549553943 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99395.9830884571 - ], - "y": [ - -172396.12733221232, - -188463.31349680066 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99183.91384425001 - ], - "y": [ - -172396.12733221232, - -187834.08698576453 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99022.60912279715 - ], - "y": [ - -172396.12733221232, - -187975.40467572561 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 98991.26055747598 - ], - "y": [ - -172396.12733221232, - -187987.12541376214 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -534018.0751121859, - 99097.9010589485 - ], - "y": [ - -172396.12733221232, - -187517.9128709205 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -830220.9718566176, - 98904.92041991555 - ], - "y": [ - 160389.7146379405, - -188097.1885506176 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -830220.9718566176, - 98790.64444216965 - ], - "y": [ - 160389.7146379405, - -188083.10255481664 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 736765.1546685816, - 98653.03461351694 - ], - "y": [ - -373730.5674296345, - -188183.12236589222 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 736765.1546685816, - 98528.28228471124 - ], - "y": [ - -373730.5674296345, - -188158.79572465117 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 736765.1546685816, - 96470.76012407262 - ], - "y": [ - -373730.5674296345, - -189953.43285506195 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 736765.1546685816, - 98077.79681744472 - ], - "y": [ - -373730.5674296345, - -187785.39966082262 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 736765.1546685816, - 99214.362436891 - ], - "y": [ - -373730.5674296345, - -188776.05672438274 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -377702.94197033683, - 98581.61307739322 - ], - "y": [ - 505960.80348878325, - -187556.7890851402 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -377702.94197033683, - 97662.82472168292 - ], - "y": [ - 505960.80348878325, - -187788.15822833957 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -377702.94197033683, - 97762.19782518726 - ], - "y": [ - 505960.80348878325, - -187203.12559746174 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -377702.94197033683, - 98322.0050156767 - ], - "y": [ - 505960.80348878325, - -188208.85344747134 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 662042.6234050796, - 97740.36484145897 - ], - "y": [ - 722670.2405123094, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 487333.2756261608, - 97740.36484145897 - ], - "y": [ - -884989.3737237633, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 793285.0618945669, - 97740.36484145897 - ], - "y": [ - 5179.2626380713355, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 884802.6012272596, - 97740.36484145897 - ], - "y": [ - 701035.689142802, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -600937.0920693981, - 97468.41119559384 - ], - "y": [ - 499722.50452963763, - -187879.37136154508 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 379335.77436914813, - 97228.17238280359 - ], - "y": [ - 106126.88316707186, - -188471.24794147993 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -840629.2261889379, - 97740.36484145897 - ], - "y": [ - -820824.4388997552, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 360724.37328794546, - 98186.65877994802 - ], - "y": [ - 928534.9602815487, - -188387.13883004195 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 360724.37328794546, - 98241.1113495342 - ], - "y": [ - 928534.9602815487, - -187775.03036984504 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 360724.37328794546, - 98809.36210538005 - ], - "y": [ - 928534.9602815487, - -188034.61082553468 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 360724.37328794546, - 98799.40792106478 - ], - "y": [ - 928534.9602815487, - -188046.35626590863 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 360724.37328794546, - 98692.54803294275 - ], - "y": [ - 928534.9602815487, - -188101.37584040826 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 881922.3999063373, - 97740.36484145897 - ], - "y": [ - 218781.86384893983, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -78715.90056435295, - 98857.10511058902 - ], - "y": [ - 11373.293613078373, - -188094.00217598723 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -188072.50905787342, - 98692.54803294275 - ], - "y": [ - 41947.26905584045, - -188101.37584040826 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -188072.50905787342, - 98818.13714193161 - ], - "y": [ - 41947.26905584045, - -188407.58725157817 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 93214.08443516676, - 97358.46679886585 - ], - "y": [ - 425564.55518506933, - -188482.5310615353 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 212406.3833148444, - 96071.64726551576 - ], - "y": [ - -285905.4255897964, - -190270.05275175368 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 42356.860080162485, - 98184.18254674674 - ], - "y": [ - -144410.63028630795, - -188517.9738436573 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 864742.738718304, - 98932.31091884513 - ], - "y": [ - -740040.9963485603, - -187594.8777657927 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 864742.738718304, - 98926.20655583622 - ], - "y": [ - -740040.9963485603, - -188109.5947916895 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 864742.738718304, - 98881.20399257346 - ], - "y": [ - -740040.9963485603, - -188135.7951117508 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 864742.738718304, - 98873.6590998779 - ], - "y": [ - -740040.9963485603, - -188126.67429510137 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 864742.738718304, - 98776.08147395353 - ], - "y": [ - -740040.9963485603, - -188068.89540782082 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 864742.738718304, - 98916.08043593282 - ], - "y": [ - -740040.9963485603, - -188138.17806449422 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 864742.738718304, - 98775.64297666437 - ], - "y": [ - -740040.9963485603, - -188113.8147030654 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 864742.738718304, - 98833.5386160878 - ], - "y": [ - -740040.9963485603, - -188119.49823623613 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 864742.738718304, - 98779.4951496633 - ], - "y": [ - -740040.9963485603, - -188123.9780570342 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 864742.738718304, - 98769.87019965112 - ], - "y": [ - -740040.9963485603, - -188121.51859750494 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 864742.738718304, - 98763.69912444155 - ], - "y": [ - -740040.9963485603, - -188082.81454332572 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 864742.738718304, - 98715.38337956829 - ], - "y": [ - -740040.9963485603, - -188023.85098966694 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 864742.738718304, - 98838.01226486915 - ], - "y": [ - -740040.9963485603, - -188038.4334288893 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 864742.738718304, - 98731.25835265023 - ], - "y": [ - -740040.9963485603, - -188097.6602407291 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 864742.738718304, - 98794.9356782363 - ], - "y": [ - -740040.9963485603, - -188124.65543545736 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 864742.738718304, - 98875.12446310604 - ], - "y": [ - -740040.9963485603, - -188079.8329504583 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 864742.738718304, - 98845.6917714939 - ], - "y": [ - -740040.9963485603, - -188129.3743830729 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -78921.56012487228, - 98420.51887894224 - ], - "y": [ - 513842.68831132515, - -188362.35931727977 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 909323.2027302729, - 99085.54243090276 - ], - "y": [ - 135508.08662869086, - -188526.0290014248 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 909323.2027302729, - 99105.27578480003 - ], - "y": [ - 135508.08662869086, - -188562.5678949605 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98161.02751086211 - ], - "y": [ - -191699.3365552453, - -188777.68796030607 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98705.71088691853 - ], - "y": [ - -191699.3365552453, - -188198.9950582187 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 97375.10606040448 - ], - "y": [ - -191699.3365552453, - -188647.58850257998 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98721.31378803315 - ], - "y": [ - -191699.3365552453, - -188204.97639419296 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98128.91359559372 - ], - "y": [ - -191699.3365552453, - -188894.20780772806 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98293.07266113821 - ], - "y": [ - -191699.3365552453, - -188877.75447919974 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 97827.63907828067 - ], - "y": [ - -191699.3365552453, - -189462.90626881117 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98054.0065827654 - ], - "y": [ - -191699.3365552453, - -188932.21737437064 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 96722.2929728447 - ], - "y": [ - -191699.3365552453, - -188214.95290711892 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98251.89202247094 - ], - "y": [ - -191699.3365552453, - -188795.16991496552 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98211.55320628641 - ], - "y": [ - -191699.3365552453, - -188977.4576085 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 97401.99871940678 - ], - "y": [ - -191699.3365552453, - -189047.84983436737 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 96475.17933169345 - ], - "y": [ - -191699.3365552453, - -190074.33054887285 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98168.55916640947 - ], - "y": [ - -191699.3365552453, - -187775.4606762898 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98568.00044350624 - ], - "y": [ - -191699.3365552453, - -188697.3813039972 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98364.36914082733 - ], - "y": [ - -191699.3365552453, - -188898.08155878072 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98331.41182590384 - ], - "y": [ - -191699.3365552453, - -189113.8715419739 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98163.10895570937 - ], - "y": [ - -191699.3365552453, - -188845.84495555653 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 97554.9960699299 - ], - "y": [ - -191699.3365552453, - -189204.34458726516 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98038.14058948433 - ], - "y": [ - -191699.3365552453, - -189029.22851713432 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98858.81885856122 - ], - "y": [ - -191699.3365552453, - -188216.02236323402 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 96255.92043157357 - ], - "y": [ - -191699.3365552453, - -190233.5032244461 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98120.00401419179 - ], - "y": [ - -191699.3365552453, - -188846.81963719826 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 99907.08283776883 - ], - "y": [ - -191699.3365552453, - -186096.45797461583 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 97770.11547186453 - ], - "y": [ - -191699.3365552453, - -189624.14425346788 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98260.97237711879 - ], - "y": [ - -191699.3365552453, - -188972.66635322545 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98649.88742805325 - ], - "y": [ - -191699.3365552453, - -188756.88925757885 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98112.09979592523 - ], - "y": [ - -191699.3365552453, - -188954.19885795217 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98728.80932783807 - ], - "y": [ - -191699.3365552453, - -188231.47750730137 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98743.18237840163 - ], - "y": [ - -191699.3365552453, - -188228.14569705023 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 96497.28753916033 - ], - "y": [ - -191699.3365552453, - -190039.66227026214 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 99041.0309662276 - ], - "y": [ - -191699.3365552453, - -188955.70075548417 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98538.18176070268 - ], - "y": [ - -191699.3365552453, - -188817.15343371764 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98404.5074674531 - ], - "y": [ - -191699.3365552453, - -188911.31765919903 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98168.58123872355 - ], - "y": [ - -191699.3365552453, - -188817.64018552104 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 99485.28366531829 - ], - "y": [ - -191699.3365552453, - -188387.0195355698 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98727.3121423661 - ], - "y": [ - -191699.3365552453, - -188217.19279192775 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98706.38695246876 - ], - "y": [ - -191699.3365552453, - -188215.48726479657 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98212.5660722969 - ], - "y": [ - -191699.3365552453, - -188940.66433230025 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 96338.9907537572 - ], - "y": [ - -191699.3365552453, - -189435.39611651178 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 94647.79050717162 - ], - "y": [ - -191699.3365552453, - -190181.63074577937 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -72851.75443980707, - 98994.41997788764 - ], - "y": [ - -191699.3365552453, - -188605.13434911743 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 296865.7210732206, - 96237.3014003704 - ], - "y": [ - 970316.6821376963, - -190160.9077330154 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 201690.5001386915, - 94688.11906145522 - ], - "y": [ - -838140.8058459905, - -189966.56620810815 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 201690.5001386915, - 96639.48963731402 - ], - "y": [ - -838140.8058459905, - -189999.31667014628 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 201690.5001386915, - 95635.79388111227 - ], - "y": [ - -838140.8058459905, - -188266.23380139962 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 201690.5001386915, - 95971.63945756324 - ], - "y": [ - -838140.8058459905, - -189466.79866331397 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 201690.5001386915, - 96148.36985614852 - ], - "y": [ - -838140.8058459905, - -188990.40385466997 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -809602.3854719092, - 98932.31091884513 - ], - "y": [ - -466086.6372245687, - -187594.8777657927 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -809602.3854719092, - 98926.20655583622 - ], - "y": [ - -466086.6372245687, - -188109.5947916895 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -809602.3854719092, - 98881.20399257346 - ], - "y": [ - -466086.6372245687, - -188135.7951117508 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -809602.3854719092, - 98873.6590998779 - ], - "y": [ - -466086.6372245687, - -188126.67429510137 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -809602.3854719092, - 98776.08147395353 - ], - "y": [ - -466086.6372245687, - -188068.89540782082 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -809602.3854719092, - 98916.08043593282 - ], - "y": [ - -466086.6372245687, - -188138.17806449422 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -809602.3854719092, - 98775.64297666437 - ], - "y": [ - -466086.6372245687, - -188113.8147030654 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -809602.3854719092, - 98833.5386160878 - ], - "y": [ - -466086.6372245687, - -188119.49823623613 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -809602.3854719092, - 98779.4951496633 - ], - "y": [ - -466086.6372245687, - -188123.9780570342 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -809602.3854719092, - 98769.87019965112 - ], - "y": [ - -466086.6372245687, - -188121.51859750494 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -809602.3854719092, - 98763.69912444155 - ], - "y": [ - -466086.6372245687, - -188082.81454332572 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -809602.3854719092, - 98715.38337956829 - ], - "y": [ - -466086.6372245687, - -188023.85098966694 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -809602.3854719092, - 98838.01226486915 - ], - "y": [ - -466086.6372245687, - -188038.4334288893 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -809602.3854719092, - 98731.25835265023 - ], - "y": [ - -466086.6372245687, - -188097.6602407291 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -809602.3854719092, - 98794.9356782363 - ], - "y": [ - -466086.6372245687, - -188124.65543545736 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -809602.3854719092, - 98875.12446310604 - ], - "y": [ - -466086.6372245687, - -188079.8329504583 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -809602.3854719092, - 98845.6917714939 - ], - "y": [ - -466086.6372245687, - -188129.3743830729 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 455089.0566991821, - 98932.31091884513 - ], - "y": [ - 786495.8184204455, - -187594.8777657927 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 455089.0566991821, - 98926.20655583622 - ], - "y": [ - 786495.8184204455, - -188109.5947916895 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 455089.0566991821, - 98881.20399257346 - ], - "y": [ - 786495.8184204455, - -188135.7951117508 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 455089.0566991821, - 98873.6590998779 - ], - "y": [ - 786495.8184204455, - -188126.67429510137 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 455089.0566991821, - 98776.08147395353 - ], - "y": [ - 786495.8184204455, - -188068.89540782082 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 455089.0566991821, - 98916.08043593282 - ], - "y": [ - 786495.8184204455, - -188138.17806449422 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 455089.0566991821, - 97265.23793720463 - ], - "y": [ - 786495.8184204455, - -188104.07716877718 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 455089.0566991821, - 98833.5386160878 - ], - "y": [ - 786495.8184204455, - -188119.49823623613 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 455089.0566991821, - 98779.4951496633 - ], - "y": [ - 786495.8184204455, - -188123.9780570342 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 455089.0566991821, - 98769.87019965112 - ], - "y": [ - 786495.8184204455, - -188121.51859750494 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 455089.0566991821, - 98763.69912444155 - ], - "y": [ - 786495.8184204455, - -188082.81454332572 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 455089.0566991821, - 98715.38337956829 - ], - "y": [ - 786495.8184204455, - -188023.85098966694 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 455089.0566991821, - 98838.01226486915 - ], - "y": [ - 786495.8184204455, - -188038.4334288893 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 455089.0566991821, - 98731.25835265023 - ], - "y": [ - 786495.8184204455, - -188097.6602407291 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 455089.0566991821, - 98794.9356782363 - ], - "y": [ - 786495.8184204455, - -188124.65543545736 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 455089.0566991821, - 98875.12446310604 - ], - "y": [ - 786495.8184204455, - -188079.8329504583 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 455089.0566991821, - 98845.6917714939 - ], - "y": [ - 786495.8184204455, - -188129.3743830729 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -421789.7677491984, - 96877.98110658897 - ], - "y": [ - -136641.84111491195, - -187749.7848825597 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -421789.7677491984, - 97082.82303991095 - ], - "y": [ - -136641.84111491195, - -187628.5971893858 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -421789.7677491984, - 96888.812856475 - ], - "y": [ - -136641.84111491195, - -188549.88759442163 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -421789.7677491984, - 96702.93382964614 - ], - "y": [ - -136641.84111491195, - -188275.44850877777 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -421789.7677491984, - 96685.11446346446 - ], - "y": [ - -136641.84111491195, - -188155.0331583998 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -421789.7677491984, - 96692.14973493623 - ], - "y": [ - -136641.84111491195, - -188220.5960329952 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -730099.8140962289, - 97854.41540216467 - ], - "y": [ - 551026.796179372, - -188295.15735575298 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -730099.8140962289, - 96886.64740803099 - ], - "y": [ - 551026.796179372, - -188327.76182227116 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 941129.1135389946, - 97740.36484145897 - ], - "y": [ - -118245.65945172361, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 869007.5350815292, - 97740.36484145897 - ], - "y": [ - -429303.758173051, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 717990.2465833629, - 96012.22372465217 - ], - "y": [ - 289274.8799673728, - -189229.17376885633 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 717990.2465833629, - 95855.37346994528 - ], - "y": [ - 289274.8799673728, - -188397.25088022946 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 717990.2465833629, - 96019.51490257688 - ], - "y": [ - 289274.8799673728, - -188984.20542329797 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 717990.2465833629, - 95928.73602388412 - ], - "y": [ - 289274.8799673728, - -189302.6007381189 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 197134.69020416553, - 95655.37022945724 - ], - "y": [ - 370829.5671062389, - -189570.55632521573 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 197134.69020416553, - 96175.94057358746 - ], - "y": [ - 370829.5671062389, - -189768.79952321426 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894718.6391275503, - 98401.53156330762 - ], - "y": [ - 112566.34725016635, - -187278.70253330644 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894718.6391275503, - 95386.7915315098 - ], - "y": [ - 112566.34725016635, - -186223.42382426502 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894718.6391275503, - 95383.19508052658 - ], - "y": [ - 112566.34725016635, - -185538.47106454833 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -894718.6391275503, - 92604.63107627998 - ], - "y": [ - 112566.34725016635, - -181316.88675453834 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -723155.4734128875, - 98932.31091884513 - ], - "y": [ - 938564.7538542207, - -187594.8777657927 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -723155.4734128875, - 98926.20655583622 - ], - "y": [ - 938564.7538542207, - -188109.5947916895 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -723155.4734128875, - 98881.20399257346 - ], - "y": [ - 938564.7538542207, - -188135.7951117508 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -723155.4734128875, - 98873.6590998779 - ], - "y": [ - 938564.7538542207, - -188126.67429510137 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -723155.4734128875, - 98776.08147395353 - ], - "y": [ - 938564.7538542207, - -188068.89540782082 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -723155.4734128875, - 98916.08043593282 - ], - "y": [ - 938564.7538542207, - -188138.17806449422 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -723155.4734128875, - 98775.64297666437 - ], - "y": [ - 938564.7538542207, - -188113.8147030654 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -723155.4734128875, - 98833.5386160878 - ], - "y": [ - 938564.7538542207, - -188119.49823623613 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -723155.4734128875, - 98779.4951496633 - ], - "y": [ - 938564.7538542207, - -188123.9780570342 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -723155.4734128875, - 98769.87019965112 - ], - "y": [ - 938564.7538542207, - -188121.51859750494 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -723155.4734128875, - 98763.69912444155 - ], - "y": [ - 938564.7538542207, - -188082.81454332572 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -723155.4734128875, - 98715.38337956829 - ], - "y": [ - 938564.7538542207, - -188023.85098966694 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -723155.4734128875, - 98838.01226486915 - ], - "y": [ - 938564.7538542207, - -188038.4334288893 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -723155.4734128875, - 98731.25835265023 - ], - "y": [ - 938564.7538542207, - -188097.6602407291 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -723155.4734128875, - 98794.9356782363 - ], - "y": [ - 938564.7538542207, - -188124.65543545736 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -723155.4734128875, - 98875.12446310604 - ], - "y": [ - 938564.7538542207, - -188079.8329504583 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -723155.4734128875, - 98845.6917714939 - ], - "y": [ - 938564.7538542207, - -188129.3743830729 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -8379.412339935, - 95893.574265848 - ], - "y": [ - -458932.0946854003, - -188577.68911072935 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 153864.8390642192, - 97740.36484145897 - ], - "y": [ - -979024.3953836804, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 712361.2951724086, - 97740.36484145897 - ], - "y": [ - 935855.7791733175, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 914316.0572963407, - 97740.36484145897 - ], - "y": [ - 392777.02472150634, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -919652.1895690879, - 97740.36484145897 - ], - "y": [ - -634539.2530658016, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 626046.287861095, - 97740.36484145897 - ], - "y": [ - -733324.4431803057, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -671624.2805811912, - 97740.36484145897 - ], - "y": [ - -721643.7739481903, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -564517.9022853523, - 97228.17238280359 - ], - "y": [ - 227876.3792840539, - -188471.24794147993 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -564517.9022853523, - 96287.81181504241 - ], - "y": [ - 227876.3792840539, - -188922.89599843553 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -836089.2335397754, - 97228.17238280359 - ], - "y": [ - -232102.3256213983, - -188471.24794147993 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -836089.2335397754, - 96287.81181504241 - ], - "y": [ - -232102.3256213983, - -188922.89599843553 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -727307.2831803005, - 96026.40843242637 - ], - "y": [ - -971248.6088668206, - -189429.78822251226 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -727307.2831803005, - 96114.05896419227 - ], - "y": [ - -971248.6088668206, - -189243.0403538959 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -63184.91059391906, - 95834.93768300924 - ], - "y": [ - 715376.7179565134, - -189251.3089257868 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -63184.91059391906, - 95619.17778565394 - ], - "y": [ - 715376.7179565134, - -188563.19407494835 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -63184.91059391906, - 96108.40628370653 - ], - "y": [ - 715376.7179565134, - -188854.39170410443 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -63184.91059391906, - 95731.71785167878 - ], - "y": [ - 715376.7179565134, - -189260.15851219348 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -63184.91059391906, - 95777.00472574684 - ], - "y": [ - 715376.7179565134, - -189231.4279713372 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -63184.91059391906, - 95353.54589236321 - ], - "y": [ - 715376.7179565134, - -188786.31293626514 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -63184.91059391906, - 95800.17831353597 - ], - "y": [ - 715376.7179565134, - -189104.52316957942 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -63184.91059391906, - 95203.24310226098 - ], - "y": [ - 715376.7179565134, - -189182.68148483842 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -63184.91059391906, - 95930.34153333298 - ], - "y": [ - 715376.7179565134, - -189072.0465506361 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -63184.91059391906, - 95903.12103009703 - ], - "y": [ - 715376.7179565134, - -188705.65600489438 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 168229.98075621086, - 96914.4073833856 - ], - "y": [ - 959367.4194005737, - -189967.28432425318 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 168229.98075621086, - 97103.69288164194 - ], - "y": [ - 959367.4194005737, - -189454.98816233617 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 168229.98075621086, - 96898.52471952 - ], - "y": [ - 959367.4194005737, - -189757.15706957557 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 168229.98075621086, - 96820.8105552239 - ], - "y": [ - 959367.4194005737, - -189951.737106575 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 168229.98075621086, - 96112.34947297389 - ], - "y": [ - 959367.4194005737, - -188991.42081728007 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 168229.98075621086, - 96008.4744666249 - ], - "y": [ - 959367.4194005737, - -189636.0078208734 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 168229.98075621086, - 96893.41939654587 - ], - "y": [ - 959367.4194005737, - -190209.4983373492 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 168229.98075621086, - 96865.8409444725 - ], - "y": [ - 959367.4194005737, - -190012.9068404736 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 168229.98075621086, - 97240.38028997074 - ], - "y": [ - 959367.4194005737, - -189864.05117757033 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 168229.98075621086, - 96876.82259242256 - ], - "y": [ - 959367.4194005737, - -190050.28712576124 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 168229.98075621086, - 96619.39742322621 - ], - "y": [ - 959367.4194005737, - -188866.95996207467 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 168229.98075621086, - 96882.99940588712 - ], - "y": [ - 959367.4194005737, - -189208.00816211943 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 168229.98075621086, - 96861.44317975816 - ], - "y": [ - 959367.4194005737, - -189099.37048930768 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 168229.98075621086, - 96768.5817251259 - ], - "y": [ - 959367.4194005737, - -188483.7955207067 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 168229.98075621086, - 96559.08563953191 - ], - "y": [ - 959367.4194005737, - -188865.2383597738 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 168229.98075621086, - 96649.40356388739 - ], - "y": [ - 959367.4194005737, - -188899.90215259913 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 168229.98075621086, - 96625.72014898527 - ], - "y": [ - 959367.4194005737, - -188841.91500915465 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 645979.5543442839, - 97992.50506999153 - ], - "y": [ - -373546.1317002338, - -188310.94209393 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 438081.87126206444, - 97617.39505268811 - ], - "y": [ - -700231.0711965273, - -189567.91347630875 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 438081.87126206444, - 96070.12571463303 - ], - "y": [ - -700231.0711965273, - -189475.84370340698 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 826920.9352810534, - 95866.20481677107 - ], - "y": [ - -963576.0897303212, - -189256.76102591655 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 826920.9352810534, - 95662.62644960554 - ], - "y": [ - -963576.0897303212, - -189118.55548115997 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 826920.9352810534, - 96100.86678198376 - ], - "y": [ - -963576.0897303212, - -189287.09541988553 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -909596.9341151802, - 95405.1846400074 - ], - "y": [ - -112653.8955686256, - -189836.02265256474 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -909596.9341151802, - 98524.57731541038 - ], - "y": [ - -112653.8955686256, - -188267.79946330914 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 631265.6698211387, - 98061.51654616423 - ], - "y": [ - 100376.22156342186, - -188734.64348648756 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 631265.6698211387, - 98127.50014794023 - ], - "y": [ - 100376.22156342186, - -188499.89103916325 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 631265.6698211387, - 98433.46713226559 - ], - "y": [ - 100376.22156342186, - -188424.26831552497 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 631265.6698211387, - 98303.3954720316 - ], - "y": [ - 100376.22156342186, - -188471.16226267573 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 777914.9540390078, - 98184.18254674674 - ], - "y": [ - -326112.20207237767, - -188517.9738436573 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -547642.2852201579, - 97740.36484145897 - ], - "y": [ - 981521.6684350774, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 526877.4573910712, - 97740.36484145897 - ], - "y": [ - -482595.47826915927, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -38327.955008397694, - 97740.36484145897 - ], - "y": [ - 648660.3447864088, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 418566.19868298183, - 96465.29272664362 - ], - "y": [ - 843644.3832424028, - -188555.01680973297 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 418566.19868298183, - 96421.49499570957 - ], - "y": [ - 843644.3832424028, - -189062.6660397884 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 197973.49488166915, - 95652.29809552783 - ], - "y": [ - 732209.4835010477, - -189368.04321790536 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 197973.49488166915, - 95574.25352251745 - ], - "y": [ - 732209.4835010477, - -189207.12335782725 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 184766.2002418735, - 97306.68660394431 - ], - "y": [ - -153041.8691462083, - -189190.69568859632 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 184766.2002418735, - 97519.14188663122 - ], - "y": [ - -153041.8691462083, - -188648.39727075843 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 184766.2002418735, - 96800.95464898097 - ], - "y": [ - -153041.8691462083, - -188995.8386599755 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 184766.2002418735, - 96931.14707892697 - ], - "y": [ - -153041.8691462083, - -188818.68200287974 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 715784.4905156529, - 94671.14162737239 - ], - "y": [ - -599028.9563257105, - -189901.5373675402 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 715784.4905156529, - 96918.79607718707 - ], - "y": [ - -599028.9563257105, - -189093.07196799477 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 715784.4905156529, - 96959.17409848377 - ], - "y": [ - -599028.9563257105, - -188154.87099078548 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -516221.8913464849, - 97196.83695998523 - ], - "y": [ - -296776.4651412641, - -187627.1081749794 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -516221.8913464849, - 97409.25368271414 - ], - "y": [ - -296776.4651412641, - -187857.75124697632 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -516221.8913464849, - 97234.04346137235 - ], - "y": [ - -296776.4651412641, - -187760.40303329699 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -516221.8913464849, - 97434.01515339047 - ], - "y": [ - -296776.4651412641, - -187858.44732430877 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -516221.8913464849, - 97272.13864563021 - ], - "y": [ - -296776.4651412641, - -187957.10022871735 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -434623.4691013651, - 95962.08383797004 - ], - "y": [ - 859557.5830612996, - -188630.5751925975 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -434623.4691013651, - 95958.17194866823 - ], - "y": [ - 859557.5830612996, - -188333.01761814565 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -5596.113939467129, - 97155.50811563137 - ], - "y": [ - 965780.9909117548, - -188696.13322752403 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -5596.113939467129, - 96918.79607718707 - ], - "y": [ - 965780.9909117548, - -189093.07196799477 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -5596.113939467129, - 95778.09112358528 - ], - "y": [ - 965780.9909117548, - -188332.3887565364 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -5596.113939467129, - 95567.54268381129 - ], - "y": [ - 965780.9909117548, - -188486.6627500266 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -5596.113939467129, - 95681.96009977852 - ], - "y": [ - 965780.9909117548, - -188895.1305372902 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -5596.113939467129, - 95501.99445714205 - ], - "y": [ - 965780.9909117548, - -189361.39928674913 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -5596.113939467129, - 95451.74998648891 - ], - "y": [ - 965780.9909117548, - -189514.26395840745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -400567.27083104127, - 97324.16299961129 - ], - "y": [ - 477161.9168648309, - -188672.58677714274 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -400567.27083104127, - 97481.45108043253 - ], - "y": [ - 477161.9168648309, - -188275.58704858087 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 663904.7617724848, - 95459.71080597503 - ], - "y": [ - -632418.384718779, - -187965.95478834442 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 663904.7617724848, - 95638.78273951489 - ], - "y": [ - -632418.384718779, - -187471.21704082517 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 663904.7617724848, - 95521.93192587548 - ], - "y": [ - -632418.384718779, - -189024.27048204138 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 663904.7617724848, - 96559.7026621268 - ], - "y": [ - -632418.384718779, - -188563.84477598095 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -897623.4682337678, - 97740.36484145897 - ], - "y": [ - -365382.38695398584, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -857957.9247302185, - 97740.36484145897 - ], - "y": [ - -239563.19322688025, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 517837.1986306305, - 97740.36484145897 - ], - "y": [ - -239304.6913621528, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 232161.74846487082, - 97740.36484145897 - ], - "y": [ - 432969.83003249887, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -321727.77392575116, - 96622.87666955806 - ], - "y": [ - -615440.0230895698, - -189010.6567271695 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -321727.77392575116, - 96449.25631444062 - ], - "y": [ - -615440.0230895698, - -189191.62724059867 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 538787.438030321, - 94919.54440569754 - ], - "y": [ - -554931.4032421844, - -189723.8971601925 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 538787.438030321, - 94171.18973519026 - ], - "y": [ - -554931.4032421844, - -190283.4150628221 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 617187.9259473727, - 97228.17238280359 - ], - "y": [ - 896897.3146678181, - -188471.24794147993 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 704105.6988044545, - 96959.17409848377 - ], - "y": [ - -346647.9730130474, - -188154.87099078548 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 704105.6988044545, - 96918.79607718707 - ], - "y": [ - -346647.9730130474, - -189093.07196799477 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -169312.1842001153, - 98378.94284214679 - ], - "y": [ - 64189.91681325048, - -188285.74392279977 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -169312.1842001153, - 94645.87712676502 - ], - "y": [ - 64189.91681325048, - -190048.63972499638 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -169312.1842001153, - 95834.93768300924 - ], - "y": [ - 64189.91681325048, - -189251.3089257868 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -169312.1842001153, - 95619.17778565394 - ], - "y": [ - 64189.91681325048, - -188563.19407494835 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -169312.1842001153, - 96108.40628370653 - ], - "y": [ - 64189.91681325048, - -188854.39170410443 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -169312.1842001153, - 95731.71785167878 - ], - "y": [ - 64189.91681325048, - -189260.15851219348 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -169312.1842001153, - 95777.00472574684 - ], - "y": [ - 64189.91681325048, - -189231.4279713372 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -169312.1842001153, - 95353.54589236321 - ], - "y": [ - 64189.91681325048, - -188786.31293626514 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -169312.1842001153, - 95800.17831353597 - ], - "y": [ - 64189.91681325048, - -189104.52316957942 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -169312.1842001153, - 95203.24310226098 - ], - "y": [ - 64189.91681325048, - -189182.68148483842 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -169312.1842001153, - 95930.34153333298 - ], - "y": [ - 64189.91681325048, - -189072.0465506361 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 739393.8950776226, - 96735.91203018947 - ], - "y": [ - -38732.925036637054, - -186790.41009242184 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 739393.8950776226, - 97334.69528656456 - ], - "y": [ - -38732.925036637054, - -187248.01430917686 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 739393.8950776226, - 95915.62243658677 - ], - "y": [ - -38732.925036637054, - -186364.1134175767 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 739393.8950776226, - 94473.57318014126 - ], - "y": [ - -38732.925036637054, - -184046.07233791953 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 739393.8950776226, - 96498.2979299931 - ], - "y": [ - -38732.925036637054, - -187468.17123172226 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 739393.8950776226, - 97046.83129228091 - ], - "y": [ - -38732.925036637054, - -187004.07979892765 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 27058.202771294447, - 97136.55546326986 - ], - "y": [ - -537662.0371003775, - -187444.98398375107 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 27058.202771294447, - 97605.64203060168 - ], - "y": [ - -537662.0371003775, - -187212.75750088846 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 27058.202771294447, - 97651.32746016643 - ], - "y": [ - -537662.0371003775, - -187393.45287008572 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 27058.202771294447, - 97499.57548817585 - ], - "y": [ - -537662.0371003775, - -187430.50547179487 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 27058.202771294447, - 97615.00090956 - ], - "y": [ - -537662.0371003775, - -187206.375494998 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 27058.202771294447, - 97672.92128722146 - ], - "y": [ - -537662.0371003775, - -187142.3027271855 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 21387.915970575654, - 96532.6646683294 - ], - "y": [ - 966495.4235025916, - -188726.61235021544 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -96792.91913518484, - 98932.31091884513 - ], - "y": [ - 783870.0048633596, - -187594.8777657927 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -96792.91913518484, - 98926.20655583622 - ], - "y": [ - 783870.0048633596, - -188109.5947916895 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -96792.91913518484, - 98881.20399257346 - ], - "y": [ - 783870.0048633596, - -188135.7951117508 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -96792.91913518484, - 98873.6590998779 - ], - "y": [ - 783870.0048633596, - -188126.67429510137 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -96792.91913518484, - 98776.08147395353 - ], - "y": [ - 783870.0048633596, - -188068.89540782082 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -96792.91913518484, - 98916.08043593282 - ], - "y": [ - 783870.0048633596, - -188138.17806449422 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -96792.91913518484, - 98775.64297666437 - ], - "y": [ - 783870.0048633596, - -188113.8147030654 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -96792.91913518484, - 98833.5386160878 - ], - "y": [ - 783870.0048633596, - -188119.49823623613 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -96792.91913518484, - 98779.4951496633 - ], - "y": [ - 783870.0048633596, - -188123.9780570342 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -96792.91913518484, - 98769.87019965112 - ], - "y": [ - 783870.0048633596, - -188121.51859750494 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -96792.91913518484, - 98763.69912444155 - ], - "y": [ - 783870.0048633596, - -188082.81454332572 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -96792.91913518484, - 98715.38337956829 - ], - "y": [ - 783870.0048633596, - -188023.85098966694 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -96792.91913518484, - 98838.01226486915 - ], - "y": [ - 783870.0048633596, - -188038.4334288893 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -96792.91913518484, - 98731.25835265023 - ], - "y": [ - 783870.0048633596, - -188097.6602407291 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -96792.91913518484, - 98794.9356782363 - ], - "y": [ - 783870.0048633596, - -188124.65543545736 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -96792.91913518484, - 98875.12446310604 - ], - "y": [ - 783870.0048633596, - -188079.8329504583 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -96792.91913518484, - 98845.6917714939 - ], - "y": [ - 783870.0048633596, - -188129.3743830729 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -21227.49778743449, - 96214.62212633847 - ], - "y": [ - -74587.61620013266, - -188040.02763009068 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 276976.17238035274, - 96146.8337078855 - ], - "y": [ - 831651.3050455592, - -188376.78890401422 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 276976.17238035274, - 95343.9410888273 - ], - "y": [ - 831651.3050455592, - -189797.29543539853 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 276976.17238035274, - 95506.46666204746 - ], - "y": [ - 831651.3050455592, - -188727.56930522466 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 276976.17238035274, - 95380.57975889063 - ], - "y": [ - 831651.3050455592, - -189767.66077987218 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 276976.17238035274, - 95213.69401511893 - ], - "y": [ - 831651.3050455592, - -189402.54379102314 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 276976.17238035274, - 94761.32003739124 - ], - "y": [ - 831651.3050455592, - -189855.4536758818 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 276976.17238035274, - 96370.41426861439 - ], - "y": [ - 831651.3050455592, - -188921.83564302602 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -755074.7222507059, - 97598.41715003968 - ], - "y": [ - -34707.954877353455, - -187109.55145493208 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -755074.7222507059, - 97191.15673842629 - ], - "y": [ - -34707.954877353455, - -186870.85476427 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -3151.853730977372, - 96556.18686331193 - ], - "y": [ - 132464.72896881544, - -188744.70646205018 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 447205.8626187305, - 97740.36484145897 - ], - "y": [ - 244292.06611394117, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -409297.7949012127, - 96600.23269030724 - ], - "y": [ - -723699.6589583688, - -188570.19383203107 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 721040.7630583367, - 95312.03621158424 - ], - "y": [ - -289391.2403450825, - -187452.2953444194 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 721040.7630583367, - 95103.86724211255 - ], - "y": [ - -289391.2403450825, - -186432.95981047777 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 721040.7630583367, - 94154.4683582202 - ], - "y": [ - -289391.2403450825, - -184493.4638333277 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -551799.6409460857, - 96651.05281133259 - ], - "y": [ - 382873.505401377, - -189681.03829755695 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -495134.76313686476, - 95926.00835539421 - ], - "y": [ - -182000.41286751878, - -189180.69142051495 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -495134.76313686476, - 96918.79607718707 - ], - "y": [ - -182000.41286751878, - -189093.07196799477 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -495134.76313686476, - 96959.17409848377 - ], - "y": [ - -182000.41286751878, - -188154.87099078548 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -566236.2561708712, - 95794.56902475153 - ], - "y": [ - 714299.0223519965, - -189494.99190465917 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -383589.25783163536, - 95275.96542639584 - ], - "y": [ - 26156.182082637035, - -189418.3150618224 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 520674.05570668046, - 92619.51334005372 - ], - "y": [ - 294215.4611805308, - -189406.1804548177 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 520674.05570668046, - 95388.1231928088 - ], - "y": [ - 294215.4611805308, - -188956.60901643464 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -379083.4425797596, - 97740.36484145897 - ], - "y": [ - 200268.81118485073, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 714780.540659039, - 96533.09552389133 - ], - "y": [ - -640258.5646004735, - -188286.47377093224 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 792749.3740975467, - 96602.4666381394 - ], - "y": [ - 45655.76911556612, - -187847.91597445504 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 792749.3740975467, - 95710.95963260993 - ], - "y": [ - 45655.76911556612, - -187772.9366644242 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -695748.732719113, - 96173.23715080458 - ], - "y": [ - -792789.8279053174, - -189454.44287559506 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -695748.732719113, - 96169.80106348639 - ], - "y": [ - -792789.8279053174, - -189336.90265698743 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -841161.2589156998, - 97740.36484145897 - ], - "y": [ - 101492.81294258627, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -195189.11757277558, - 97740.36484145897 - ], - "y": [ - -146176.85529026692, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 431924.74953544035, - 97740.36484145897 - ], - "y": [ - -30810.42899432007, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 876253.9237453884, - 96919.26178312073 - ], - "y": [ - 435382.93784721714, - -189688.38226235847 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 876253.9237453884, - 96999.24006270662 - ], - "y": [ - 435382.93784721714, - -189642.32271672558 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 876253.9237453884, - 96911.02758063171 - ], - "y": [ - 435382.93784721714, - -189773.80511431769 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -969676.0286274004, - 96767.7608495193 - ], - "y": [ - -322459.2340622958, - -188623.37539469652 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -814469.2956539985, - 97228.17238280359 - ], - "y": [ - -174970.74177023242, - -188471.24794147993 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -814469.2956539985, - 95402.18303854323 - ], - "y": [ - -174970.74177023242, - -188059.06910793387 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -203858.51979069636, - 96616.28197124632 - ], - "y": [ - 26905.66458774213, - -189486.94419473826 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -203858.51979069636, - 96643.07015445872 - ], - "y": [ - 26905.66458774213, - -188345.75062919507 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -203858.51979069636, - 96611.07880435153 - ], - "y": [ - 26905.66458774213, - -189045.68105489522 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 987883.3246678433, - 95963.6655367038 - ], - "y": [ - -947156.7174291624, - -186490.92481183048 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 987883.3246678433, - 96323.93164666534 - ], - "y": [ - -947156.7174291624, - -188035.43847485105 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 987883.3246678433, - 96035.94449947504 - ], - "y": [ - -947156.7174291624, - -187899.97545537198 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 987883.3246678433, - 95826.13450428299 - ], - "y": [ - -947156.7174291624, - -188759.4892448286 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -754434.0508021094, - 95894.3821805092 - ], - "y": [ - 548994.2918747881, - -189867.76456386773 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -754434.0508021094, - 96167.45474416234 - ], - "y": [ - 548994.2918747881, - -189265.0331807753 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -754434.0508021094, - 96878.0650637567 - ], - "y": [ - 548994.2918747881, - -188785.27223021127 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -754434.0508021094, - 96926.74644690406 - ], - "y": [ - 548994.2918747881, - -189150.0722038921 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -754434.0508021094, - 95735.81320135522 - ], - "y": [ - 548994.2918747881, - -189966.51788839934 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -877967.6203988978, - 96785.2273252981 - ], - "y": [ - 933396.9389264802, - -187864.57873495863 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -616004.2932641512, - 96844.44949459478 - ], - "y": [ - -298576.4863351168, - -188459.5042273985 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -616004.2932641512, - 96868.09370002619 - ], - "y": [ - -298576.4863351168, - -187485.8021358164 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -616004.2932641512, - 96840.061255232 - ], - "y": [ - -298576.4863351168, - -187835.19770223383 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 650337.6304247482, - 97740.36484145897 - ], - "y": [ - 981905.2432800552, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 615619.3556276786, - 97740.36484145897 - ], - "y": [ - 672698.2694803685, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -205710.37365605726, - 97228.17238280359 - ], - "y": [ - 269049.57331865886, - -188471.24794147993 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -205710.37365605726, - 96287.81181504241 - ], - "y": [ - 269049.57331865886, - -188922.89599843553 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -452877.2624604085, - 96450.55318015978 - ], - "y": [ - 82853.81087077859, - -188339.61248515616 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 170430.45436057568, - 96234.86536056163 - ], - "y": [ - 867446.6458449088, - -188482.4680775093 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 170430.45436057568, - 95388.1231928088 - ], - "y": [ - 867446.6458449088, - -188956.60901643464 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 66750.84993936031, - 95910.45905898156 - ], - "y": [ - 730782.4794822566, - -190059.0897295911 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -76184.7834570475, - 97740.36484145897 - ], - "y": [ - 636929.57350753, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 223240.49951923918, - 97740.36484145897 - ], - "y": [ - 529693.9688298834, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 47468.46409605654, - 97740.36484145897 - ], - "y": [ - -258215.03400263525, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 47468.46409605654, - 97216.8097752767 - ], - "y": [ - -258215.03400263525, - -188449.63396273268 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -900078.2113245784, - 97740.36484145897 - ], - "y": [ - -697221.9707553786, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -707282.1263826032, - 97740.36484145897 - ], - "y": [ - 508239.4434232529, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 498738.2468210295, - 97740.36484145897 - ], - "y": [ - -22932.213957937318, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 623681.4455269715, - 95733.15082062641 - ], - "y": [ - -441964.9317826, - -188564.80121031718 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -903849.429763719, - 97651.32746016643 - ], - "y": [ - 173346.7010389238, - -187393.45287008572 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -903849.429763719, - 97136.55546326986 - ], - "y": [ - 173346.7010389238, - -187444.98398375107 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -903849.429763719, - 97605.64203060168 - ], - "y": [ - 173346.7010389238, - -187212.75750088846 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -903849.429763719, - 97499.57548817585 - ], - "y": [ - 173346.7010389238, - -187430.50547179487 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -903849.429763719, - 97615.00090956 - ], - "y": [ - 173346.7010389238, - -187206.375494998 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -903849.429763719, - 97672.92128722146 - ], - "y": [ - 173346.7010389238, - -187142.3027271855 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -761921.4177536746, - 98127.50014794023 - ], - "y": [ - -532732.7823888039, - -188499.89103916325 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -761921.4177536746, - 97623.71573684271 - ], - "y": [ - -532732.7823888039, - -188934.75013167982 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -761921.4177536746, - 98303.3954720316 - ], - "y": [ - -532732.7823888039, - -188471.16226267573 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -289319.9518633871, - 98932.31091884513 - ], - "y": [ - 922786.3563789611, - -187594.8777657927 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -289319.9518633871, - 98926.20655583622 - ], - "y": [ - 922786.3563789611, - -188109.5947916895 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -289319.9518633871, - 98881.20399257346 - ], - "y": [ - 922786.3563789611, - -188135.7951117508 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -289319.9518633871, - 98873.6590998779 - ], - "y": [ - 922786.3563789611, - -188126.67429510137 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -289319.9518633871, - 98776.08147395353 - ], - "y": [ - 922786.3563789611, - -188068.89540782082 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -289319.9518633871, - 98916.08043593282 - ], - "y": [ - 922786.3563789611, - -188138.17806449422 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -289319.9518633871, - 98775.64297666437 - ], - "y": [ - 922786.3563789611, - -188113.8147030654 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -289319.9518633871, - 98833.5386160878 - ], - "y": [ - 922786.3563789611, - -188119.49823623613 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -289319.9518633871, - 98779.4951496633 - ], - "y": [ - 922786.3563789611, - -188123.9780570342 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -289319.9518633871, - 98769.87019965112 - ], - "y": [ - 922786.3563789611, - -188121.51859750494 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -289319.9518633871, - 98763.69912444155 - ], - "y": [ - 922786.3563789611, - -188082.81454332572 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -289319.9518633871, - 98715.38337956829 - ], - "y": [ - 922786.3563789611, - -188023.85098966694 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -289319.9518633871, - 98838.01226486915 - ], - "y": [ - 922786.3563789611, - -188038.4334288893 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -289319.9518633871, - 98731.25835265023 - ], - "y": [ - 922786.3563789611, - -188097.6602407291 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -289319.9518633871, - 98794.9356782363 - ], - "y": [ - 922786.3563789611, - -188124.65543545736 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -289319.9518633871, - 98875.12446310604 - ], - "y": [ - 922786.3563789611, - -188079.8329504583 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -289319.9518633871, - 98845.6917714939 - ], - "y": [ - 922786.3563789611, - -188129.3743830729 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 430326.2401265009, - 96556.18686331193 - ], - "y": [ - -644701.2051098609, - -188744.70646205018 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 526519.186730167, - 97740.36484145897 - ], - "y": [ - 94435.49249267735, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 628334.3788628908, - 97740.36484145897 - ], - "y": [ - -347927.73612048425, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 141499.46505001077, - 97740.36484145897 - ], - "y": [ - -590558.1079634632, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -25360.886258957606, - 97740.36484145897 - ], - "y": [ - 436659.297220233, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -709849.9682138389, - 97740.36484145897 - ], - "y": [ - -123683.88473853997, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 472144.8048529735, - 97740.36484145897 - ], - "y": [ - -688526.3661659575, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 642676.881996413, - 97532.46968364714 - ], - "y": [ - 316655.25208180136, - -187821.3765527352 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 642676.881996413, - 97358.46679886585 - ], - "y": [ - 316655.25208180136, - -188482.5310615353 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 985082.8450351985, - 97532.46968364714 - ], - "y": [ - 916492.8733069033, - -187821.3765527352 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 985082.8450351985, - 97358.46679886585 - ], - "y": [ - 916492.8733069033, - -188482.5310615353 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 767568.1344808547, - 96003.07301754713 - ], - "y": [ - -386181.65959297324, - -189407.17407776418 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 767568.1344808547, - 95855.84606940606 - ], - "y": [ - -386181.65959297324, - -189594.04877099616 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -439114.2156817536, - 90620.59321338178 - ], - "y": [ - -487813.6298938742, - -189928.77888545024 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -439114.2156817536, - 94139.8012458913 - ], - "y": [ - -487813.6298938742, - -190063.494640501 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -439114.2156817536, - 94032.80335215264 - ], - "y": [ - -487813.6298938742, - -190324.0838511919 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -439114.2156817536, - 93807.67468704915 - ], - "y": [ - -487813.6298938742, - -190002.50380021115 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -439114.2156817536, - 94732.86002550159 - ], - "y": [ - -487813.6298938742, - -189351.62227285848 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 712395.3589967475, - 96955.0168977828 - ], - "y": [ - -354283.3441196564, - -188667.17352392792 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -67881.32275742265, - 96373.51181593174 - ], - "y": [ - 596646.8317409, - -189386.891690723 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 324337.7237462275, - 96024.31193605777 - ], - "y": [ - 522818.3144789189, - -188871.73421564943 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 177913.9037321007, - 96039.53114090665 - ], - "y": [ - -384164.92908829, - -187862.98846391006 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 177913.9037321007, - 96558.40139577903 - ], - "y": [ - -384164.92908829, - -187369.8494239768 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -475020.10876459733, - 96648.53242134354 - ], - "y": [ - 320792.0802057198, - -188047.51511369456 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -475020.10876459733, - 96344.26723680123 - ], - "y": [ - 320792.0802057198, - -188898.55180012845 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -475020.10876459733, - 96248.28034246547 - ], - "y": [ - 320792.0802057198, - -189023.57039513884 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 829759.5568487745, - 96483.28090692386 - ], - "y": [ - 779329.0476945671, - -189300.64988114213 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 621840.5604610262, - 96054.44520130524 - ], - "y": [ - 45889.27917682817, - -189304.23943329643 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 241848.8026121215, - 96524.24227801626 - ], - "y": [ - -253784.5924087889, - -189802.91324633866 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 241848.8026121215, - 96583.58536032659 - ], - "y": [ - -253784.5924087889, - -189198.96904724132 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 241848.8026121215, - 95881.63940456003 - ], - "y": [ - -253784.5924087889, - -190149.611876793 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 272875.8067462236, - 95096.87780489783 - ], - "y": [ - -934164.0465042376, - -189688.97127087243 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 272875.8067462236, - 94429.634403017 - ], - "y": [ - -934164.0465042376, - -190162.42457619242 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -434770.8766206291, - 96769.24653086865 - ], - "y": [ - -656028.3240911526, - -189121.32206798793 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 806359.0699789898, - 95885.77494615254 - ], - "y": [ - 248447.30831388495, - -185673.72485317432 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 806359.0699789898, - 97401.66966851291 - ], - "y": [ - 248447.30831388495, - -187602.98284577316 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 806359.0699789898, - 96529.94166735753 - ], - "y": [ - 248447.30831388495, - -187118.0943589478 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 806359.0699789898, - 96400.6315649038 - ], - "y": [ - 248447.30831388495, - -187049.29511418982 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -863812.5608722302, - 96701.50888855853 - ], - "y": [ - -189224.20790707073, - -188760.63914555783 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -863812.5608722302, - 96563.36738665988 - ], - "y": [ - -189224.20790707073, - -188352.16461745944 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -863812.5608722302, - 96663.0086169134 - ], - "y": [ - -189224.20790707073, - -188788.10931841948 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 675721.386773738, - 96404.13831153684 - ], - "y": [ - 822378.6475941191, - -188307.55943122407 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -792990.950272441, - 97358.46679886585 - ], - "y": [ - -411076.1745670002, - -188482.5310615353 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -792990.950272441, - 97532.46968364714 - ], - "y": [ - -411076.1745670002, - -187821.3765527352 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 79002.14739262879, - 95923.70592479738 - ], - "y": [ - 632391.1711196257, - -185447.3982690385 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 79002.14739262879, - 95540.24503251979 - ], - "y": [ - 632391.1711196257, - -185647.43874032347 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 79002.14739262879, - 95920.065981809 - ], - "y": [ - 632391.1711196257, - -186600.68816277097 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 79002.14739262879, - 95963.6655367038 - ], - "y": [ - 632391.1711196257, - -186490.92481183048 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 267310.8001232671, - 96456.96747554903 - ], - "y": [ - -234070.1943759147, - -190030.77698961753 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 267310.8001232671, - 96427.6516351581 - ], - "y": [ - -234070.1943759147, - -189844.44305599996 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 267310.8001232671, - 96826.02448370877 - ], - "y": [ - -234070.1943759147, - -189312.96716657415 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -49360.913627868984, - 95922.0581596575 - ], - "y": [ - -988385.3949405677, - -188863.83470003767 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -49360.913627868984, - 95802.9629154136 - ], - "y": [ - -988385.3949405677, - -190030.6059389626 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -49360.913627868984, - 95957.78104570328 - ], - "y": [ - -988385.3949405677, - -188831.9884617397 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -49360.913627868984, - 96331.52105283472 - ], - "y": [ - -988385.3949405677, - -188800.5645587159 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 81010.32478152437, - 96392.03219267243 - ], - "y": [ - -256534.5830081587, - -188270.16098356986 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 81010.32478152437, - 96039.53114090665 - ], - "y": [ - -256534.5830081587, - -187862.98846391006 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 81010.32478152437, - 95481.26094749449 - ], - "y": [ - -256534.5830081587, - -188288.73056814942 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 81010.32478152437, - 96072.651127653 - ], - "y": [ - -256534.5830081587, - -188325.90735821644 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 698548.8043876948, - 96107.71912624051 - ], - "y": [ - -581501.1925851901, - -187036.11661907207 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 698548.8043876948, - 95682.31879557903 - ], - "y": [ - -581501.1925851901, - -187430.4310402768 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 698548.8043876948, - 96011.6169628847 - ], - "y": [ - -581501.1925851901, - -187168.63791618857 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -777612.1742197457, - 98745.28871415959 - ], - "y": [ - 101762.26026891544, - -188085.78649439852 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -777612.1742197457, - 98737.9075507478 - ], - "y": [ - 101762.26026891544, - -188069.8757916443 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -777612.1742197457, - 98260.19273313228 - ], - "y": [ - 101762.26026891544, - -188377.16521032414 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 25182.32358250505, - 97358.46679886585 - ], - "y": [ - -640495.1551968363, - -188482.5310615353 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 25182.32358250505, - 97532.46968364714 - ], - "y": [ - -640495.1551968363, - -187821.3765527352 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 92403.72030892958 - ], - "y": [ - -204040.0324043048, - -181388.6636291559 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 92552.59924319923 - ], - "y": [ - -204040.0324043048, - -186958.0626639662 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 94130.55860663287 - ], - "y": [ - -204040.0324043048, - -187792.11829844635 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 92453.32910364396 - ], - "y": [ - -204040.0324043048, - -186964.88142731908 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 92636.97281790803 - ], - "y": [ - -204040.0324043048, - -186890.040734751 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 94694.68806398017 - ], - "y": [ - -204040.0324043048, - -187516.96845806637 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 93639.94569899137 - ], - "y": [ - -204040.0324043048, - -187371.3989655883 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 94259.03278558327 - ], - "y": [ - -204040.0324043048, - -187673.56257634406 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 91080.58784143622 - ], - "y": [ - -204040.0324043048, - -188468.66418560426 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 93850.41662442079 - ], - "y": [ - -204040.0324043048, - -187827.28797163125 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 92357.81244688503 - ], - "y": [ - -204040.0324043048, - -188015.37292595976 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 92015.08959235293 - ], - "y": [ - -204040.0324043048, - -186963.61210988168 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 92793.59818111316 - ], - "y": [ - -204040.0324043048, - -186909.75756834846 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 94015.54400806065 - ], - "y": [ - -204040.0324043048, - -188500.0586157652 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 93415.0685794173 - ], - "y": [ - -204040.0324043048, - -187625.4001681701 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 92661.92845541582 - ], - "y": [ - -204040.0324043048, - -186957.07730695538 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 92700.30450697383 - ], - "y": [ - -204040.0324043048, - -187126.5717021234 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 92811.56373493784 - ], - "y": [ - -204040.0324043048, - -187092.89589648045 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 88980.87619367571 - ], - "y": [ - -204040.0324043048, - -187547.0278070721 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 93666.16904241925 - ], - "y": [ - -204040.0324043048, - -186215.06335089865 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 92727.31906879041 - ], - "y": [ - -204040.0324043048, - -186961.92845610308 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 92625.18394918887 - ], - "y": [ - -204040.0324043048, - -187072.4040574778 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 92710.21548334243 - ], - "y": [ - -204040.0324043048, - -186908.50557712573 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 92730.67067426581 - ], - "y": [ - -204040.0324043048, - -187018.58994966594 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 92599.58217260841 - ], - "y": [ - -204040.0324043048, - -186937.57642460006 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 92761.81424118878 - ], - "y": [ - -204040.0324043048, - -187082.89602712472 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 92651.26372829395 - ], - "y": [ - -204040.0324043048, - -186995.12405826268 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 92548.69810217191 - ], - "y": [ - -204040.0324043048, - -187033.26399727527 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 94753.5297564697 - ], - "y": [ - -204040.0324043048, - -187917.0637720583 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 92642.4602856306 - ], - "y": [ - -204040.0324043048, - -187031.77413979647 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 91676.43793576607 - ], - "y": [ - -204040.0324043048, - -188265.26483815484 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 92695.15487336805 - ], - "y": [ - -204040.0324043048, - -186858.39035521806 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 93155.38758721903 - ], - "y": [ - -204040.0324043048, - -188079.2339962156 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 89305.71197876369 - ], - "y": [ - -204040.0324043048, - -187486.7108342232 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 94890.65745591454 - ], - "y": [ - -204040.0324043048, - -187583.99768382817 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 93887.36045593988 - ], - "y": [ - -204040.0324043048, - -187642.49697600745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 93682.44991506475 - ], - "y": [ - -204040.0324043048, - -186233.90314590227 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 92689.24617566908 - ], - "y": [ - -204040.0324043048, - -187072.79060259266 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 93904.56333636155 - ], - "y": [ - -204040.0324043048, - -187621.1473503119 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 92764.63612228677 - ], - "y": [ - -204040.0324043048, - -187006.72435799113 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 93226.39690794115 - ], - "y": [ - -204040.0324043048, - -187790.78028682835 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -459999.322682785, - 93143.11311426201 - ], - "y": [ - -204040.0324043048, - -187892.14861530808 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -530206.2725823066, - 94983.58739011025 - ], - "y": [ - 267036.07940844476, - -188892.18297269146 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -530206.2725823066, - 93345.5384733388 - ], - "y": [ - 267036.07940844476, - -188905.7409194041 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -530206.2725823066, - 93475.56240329082 - ], - "y": [ - 267036.07940844476, - -189138.7526208499 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -530206.2725823066, - 93855.61888073095 - ], - "y": [ - 267036.07940844476, - -189186.7934963984 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -530206.2725823066, - 95749.39705457314 - ], - "y": [ - 267036.07940844476, - -188827.6268164547 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -530206.2725823066, - 94465.17063363985 - ], - "y": [ - 267036.07940844476, - -188634.27361204935 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -530206.2725823066, - 92913.17761014139 - ], - "y": [ - 267036.07940844476, - -188976.67306946605 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -530206.2725823066, - 91312.64033973779 - ], - "y": [ - 267036.07940844476, - -188450.6558889738 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -530206.2725823066, - 92365.60828492136 - ], - "y": [ - 267036.07940844476, - -188410.6730522339 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -530206.2725823066, - 93034.01413382801 - ], - "y": [ - 267036.07940844476, - -188982.28023135234 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -285897.65920436603, - 95922.0581596575 - ], - "y": [ - 577995.7473875738, - -188863.83470003767 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -285897.65920436603, - 96232.6883024668 - ], - "y": [ - 577995.7473875738, - -188901.95839418104 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -898957.63764533, - 97197.31119879312 - ], - "y": [ - 969717.6194514378, - -188293.05528383492 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -898957.63764533, - 97345.58098981141 - ], - "y": [ - 969717.6194514378, - -188304.60597921925 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -898957.63764533, - 97401.66966851291 - ], - "y": [ - 969717.6194514378, - -187602.98284577316 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -338463.1555088351, - 96319.04144083924 - ], - "y": [ - -176993.74511697164, - -189027.32662829437 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -338463.1555088351, - 94787.68098338218 - ], - "y": [ - -176993.74511697164, - -188703.02110051003 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 96392.03219267243 - ], - "y": [ - 327564.2604767903, - -188270.16098356986 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94304.28587484072 - ], - "y": [ - 327564.2604767903, - -189670.30367153513 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95375.71980775791 - ], - "y": [ - 327564.2604767903, - -187994.90708299744 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 96010.91751038717 - ], - "y": [ - 327564.2604767903, - -188227.91479363065 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94846.74238052499 - ], - "y": [ - 327564.2604767903, - -188959.37304124728 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95360.36419013362 - ], - "y": [ - 327564.2604767903, - -188384.46387554856 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95443.67008227661 - ], - "y": [ - 327564.2604767903, - -188423.99184216498 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95781.4838692387 - ], - "y": [ - 327564.2604767903, - -188238.2147196666 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95621.74045129302 - ], - "y": [ - 327564.2604767903, - -189253.3339606655 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94709.05739456239 - ], - "y": [ - 327564.2604767903, - -189185.39353573837 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95069.66525755977 - ], - "y": [ - 327564.2604767903, - -189354.40611590687 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95628.14642198732 - ], - "y": [ - 327564.2604767903, - -189275.31015895875 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94459.15082891459 - ], - "y": [ - 327564.2604767903, - -189331.45564091532 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95527.20667464145 - ], - "y": [ - 327564.2604767903, - -188567.58941515462 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94762.37057915328 - ], - "y": [ - 327564.2604767903, - -189030.19349696804 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94658.19240918643 - ], - "y": [ - 327564.2604767903, - -189196.05341570152 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94716.98202491149 - ], - "y": [ - 327564.2604767903, - -189004.60313990066 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94759.00609204093 - ], - "y": [ - 327564.2604767903, - -189177.62541549082 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94646.88730549908 - ], - "y": [ - 327564.2604767903, - -189238.99357410418 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95292.52782742439 - ], - "y": [ - 327564.2604767903, - -188534.02363205954 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95093.22706462545 - ], - "y": [ - 327564.2604767903, - -189103.72355039057 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 98085.07588417802 - ], - "y": [ - 327564.2604767903, - -188253.45353298465 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95163.75908553116 - ], - "y": [ - 327564.2604767903, - -188413.92210597807 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 96006.77287976355 - ], - "y": [ - 327564.2604767903, - -188679.23184501874 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95274.60828290615 - ], - "y": [ - 327564.2604767903, - -188187.00891794523 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94773.27914431288 - ], - "y": [ - 327564.2604767903, - -189002.36578898947 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94843.32769305678 - ], - "y": [ - 327564.2604767903, - -189314.34425935848 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94756.04785280023 - ], - "y": [ - 327564.2604767903, - -189077.88806110198 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94693.04021624882 - ], - "y": [ - 327564.2604767903, - -189112.1678726178 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95274.55463163379 - ], - "y": [ - 327564.2604767903, - -188644.9068178371 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94205.42306946588 - ], - "y": [ - 327564.2604767903, - -188854.15596558747 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94740.62358451245 - ], - "y": [ - 327564.2604767903, - -189111.59184893724 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94914.46333674647 - ], - "y": [ - 327564.2604767903, - -188992.06395225637 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95731.94340542807 - ], - "y": [ - 327564.2604767903, - -189040.44316666905 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94554.58874211222 - ], - "y": [ - 327564.2604767903, - -189146.26340260505 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 96091.204926268 - ], - "y": [ - 327564.2604767903, - -188960.36420407722 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95643.38624755875 - ], - "y": [ - 327564.2604767903, - -188977.27182089942 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95405.5970323345 - ], - "y": [ - 327564.2604767903, - -190700.1111637919 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94965.90340529142 - ], - "y": [ - 327564.2604767903, - -189013.04796735963 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94090.45690331612 - ], - "y": [ - 327564.2604767903, - -189379.49234130658 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 92687.32405817328 - ], - "y": [ - 327564.2604767903, - -188621.49299553412 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94400.56846677243 - ], - "y": [ - 327564.2604767903, - -189304.65394903507 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94532.99011271482 - ], - "y": [ - 327564.2604767903, - -189125.53360787733 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94838.88278888688 - ], - "y": [ - 327564.2604767903, - -189135.01597268603 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94912.71843664766 - ], - "y": [ - 327564.2604767903, - -189115.81575099364 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94702.53619375687 - ], - "y": [ - 327564.2604767903, - -189157.19198902682 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94259.06712940332 - ], - "y": [ - 327564.2604767903, - -188738.48340001726 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95687.5583436565 - ], - "y": [ - 327564.2604767903, - -188921.90699962387 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94745.48610069028 - ], - "y": [ - 327564.2604767903, - -189360.31796682146 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94924.7628056497 - ], - "y": [ - 327564.2604767903, - -189070.91343901315 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94836.83100987966 - ], - "y": [ - 327564.2604767903, - -190093.18905705298 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94635.31494511566 - ], - "y": [ - 327564.2604767903, - -189047.08598048709 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95171.36460552194 - ], - "y": [ - 327564.2604767903, - -189299.65616548483 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94428.00833897035 - ], - "y": [ - 327564.2604767903, - -189095.541722688 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 91875.6118444357 - ], - "y": [ - 327564.2604767903, - -188344.0930836277 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94818.5478788063 - ], - "y": [ - 327564.2604767903, - -189171.19029766714 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94803.47505405096 - ], - "y": [ - 327564.2604767903, - -189042.28405360697 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94609.06856092627 - ], - "y": [ - 327564.2604767903, - -189119.99497062556 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95243.05174065192 - ], - "y": [ - 327564.2604767903, - -188237.25251034857 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94579.1668497888 - ], - "y": [ - 327564.2604767903, - -189195.42176761568 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94710.98077661607 - ], - "y": [ - 327564.2604767903, - -189062.39520516488 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94636.4031377064 - ], - "y": [ - 327564.2604767903, - -189376.82012229282 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95594.04154313843 - ], - "y": [ - 327564.2604767903, - -188752.9247450727 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94853.46116542409 - ], - "y": [ - 327564.2604767903, - -189405.91331066622 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95262.41295878915 - ], - "y": [ - 327564.2604767903, - -189552.3086334869 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94996.61867838957 - ], - "y": [ - 327564.2604767903, - -189502.59770853355 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95427.51893881544 - ], - "y": [ - 327564.2604767903, - -189170.9678004025 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95141.30835602302 - ], - "y": [ - 327564.2604767903, - -189264.0420911513 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95135.73958053072 - ], - "y": [ - 327564.2604767903, - -189503.85032749924 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94811.20964058898 - ], - "y": [ - 327564.2604767903, - -189204.769419827 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95308.98963794683 - ], - "y": [ - 327564.2604767903, - -188590.4523846817 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95213.77887412795 - ], - "y": [ - 327564.2604767903, - -188232.11752967277 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94550.01100453151 - ], - "y": [ - 327564.2604767903, - -189226.9114919114 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94616.6585852082 - ], - "y": [ - 327564.2604767903, - -189164.54245151358 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94915.01791906256 - ], - "y": [ - 327564.2604767903, - -189027.77132385422 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94779.60175355068 - ], - "y": [ - 327564.2604767903, - -189230.86162244383 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95651.87929649846 - ], - "y": [ - 327564.2604767903, - -189066.13649801663 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94969.43121341393 - ], - "y": [ - 327564.2604767903, - -188975.60125457792 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94871.66004225804 - ], - "y": [ - 327564.2604767903, - -189062.5039727102 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94698.2564749882 - ], - "y": [ - 327564.2604767903, - -189350.8806358681 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 98122.6370414771 - ], - "y": [ - 327564.2604767903, - -188269.15616936548 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94609.75573408123 - ], - "y": [ - 327564.2604767903, - -188968.20482936336 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95744.51531875192 - ], - "y": [ - 327564.2604767903, - -188815.02865766146 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95569.49080974681 - ], - "y": [ - 327564.2604767903, - -189043.76513096062 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94553.34862649688 - ], - "y": [ - 327564.2604767903, - -189256.66974275385 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94068.90013805934 - ], - "y": [ - 327564.2604767903, - -189395.66537570828 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94911.10914154527 - ], - "y": [ - 327564.2604767903, - -189168.39200200443 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 93841.09081628201 - ], - "y": [ - 327564.2604767903, - -189180.9410564133 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95055.96301467503 - ], - "y": [ - 327564.2604767903, - -189294.69067324145 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94973.76103672285 - ], - "y": [ - 327564.2604767903, - -189527.4692278551 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 93860.33853556491 - ], - "y": [ - 327564.2604767903, - -188818.7674323714 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94666.08189515283 - ], - "y": [ - 327564.2604767903, - -189257.13683550936 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94804.05777877627 - ], - "y": [ - 327564.2604767903, - -189100.23306250124 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95192.48874345585 - ], - "y": [ - 327564.2604767903, - -189550.2287127826 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94682.03972500942 - ], - "y": [ - 327564.2604767903, - -189290.7525839601 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94318.87336662205 - ], - "y": [ - 327564.2604767903, - -189267.28726523466 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 98071.86657727559 - ], - "y": [ - 327564.2604767903, - -188239.65910895087 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95074.67859421566 - ], - "y": [ - 327564.2604767903, - -187509.8701143695 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95052.34933786246 - ], - "y": [ - 327564.2604767903, - -187500.4930551508 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94847.03071224976 - ], - "y": [ - 327564.2604767903, - -189204.5507592727 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94712.39449672872 - ], - "y": [ - 327564.2604767903, - -189093.8532022557 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94681.03509595625 - ], - "y": [ - 327564.2604767903, - -189171.2221999843 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94662.70335696908 - ], - "y": [ - 327564.2604767903, - -189071.60158787234 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94530.9667988148 - ], - "y": [ - 327564.2604767903, - -189093.08976506037 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94394.743184273 - ], - "y": [ - 327564.2604767903, - -189407.5843037053 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 93236.21560331441 - ], - "y": [ - 327564.2604767903, - -189481.84477904785 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95228.59152965351 - ], - "y": [ - 327564.2604767903, - -188480.6248001793 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95599.18088294458 - ], - "y": [ - 327564.2604767903, - -187643.83786716606 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 92172.3185204082 - ], - "y": [ - 327564.2604767903, - -188410.19015950867 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94730.79640190289 - ], - "y": [ - 327564.2604767903, - -189244.75125275418 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95015.49625623692 - ], - "y": [ - 327564.2604767903, - -189322.13919379382 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94674.89580671789 - ], - "y": [ - 327564.2604767903, - -189036.37157464225 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95460.7576657949 - ], - "y": [ - 327564.2604767903, - -188851.6819268115 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95481.26094749449 - ], - "y": [ - 327564.2604767903, - -188288.73056814942 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94694.88936601186 - ], - "y": [ - 327564.2604767903, - -189227.67375761928 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94637.44384110306 - ], - "y": [ - 327564.2604767903, - -189075.98850339456 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94023.65044193376 - ], - "y": [ - 327564.2604767903, - -188744.13909734573 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94711.8919185092 - ], - "y": [ - 327564.2604767903, - -189286.49138647597 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94639.7976547818 - ], - "y": [ - 327564.2604767903, - -189153.23345672205 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94969.34668009236 - ], - "y": [ - 327564.2604767903, - -187858.47857020143 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94867.71860626241 - ], - "y": [ - 327564.2604767903, - -189295.42475244775 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 96039.53114090665 - ], - "y": [ - 327564.2604767903, - -187862.98846391006 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94499.29954296813 - ], - "y": [ - 327564.2604767903, - -189309.40406356056 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94412.16071475198 - ], - "y": [ - 327564.2604767903, - -189446.06561523385 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94500.6446202604 - ], - "y": [ - 327564.2604767903, - -189270.95690073894 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94316.72565507321 - ], - "y": [ - 327564.2604767903, - -189371.36833568558 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94747.77428662438 - ], - "y": [ - 327564.2604767903, - -189045.81476778517 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94831.09840327874 - ], - "y": [ - 327564.2604767903, - -189090.02633489924 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94872.79287174557 - ], - "y": [ - 327564.2604767903, - -189167.51060793153 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94598.10840219341 - ], - "y": [ - 327564.2604767903, - -188997.7891351952 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94789.93569354182 - ], - "y": [ - 327564.2604767903, - -189166.2520355059 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94645.92150016353 - ], - "y": [ - 327564.2604767903, - -189128.02287472552 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94772.43466967792 - ], - "y": [ - 327564.2604767903, - -189377.71392390993 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94783.49907630085 - ], - "y": [ - 327564.2604767903, - -189261.63282785052 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94624.56371474003 - ], - "y": [ - 327564.2604767903, - -189189.44204252012 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95782.49090316397 - ], - "y": [ - 327564.2604767903, - -188832.0659363745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94352.71458049152 - ], - "y": [ - 327564.2604767903, - -189372.78444553076 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94039.43659745945 - ], - "y": [ - 327564.2604767903, - -189522.90111062877 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94724.12280359474 - ], - "y": [ - 327564.2604767903, - -189215.01194453132 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94549.95722461416 - ], - "y": [ - 327564.2604767903, - -189188.26284097042 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95172.62949097781 - ], - "y": [ - 327564.2604767903, - -190170.23694941032 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94748.03678735308 - ], - "y": [ - 327564.2604767903, - -189137.65822856384 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95142.30696566738 - ], - "y": [ - 327564.2604767903, - -189532.13206147918 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94079.97573473441 - ], - "y": [ - 327564.2604767903, - -189244.33702691298 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 92867.65170326555 - ], - "y": [ - 327564.2604767903, - -189342.90886317022 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95137.86898625335 - ], - "y": [ - 327564.2604767903, - -189601.42301397282 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94657.09089040948 - ], - "y": [ - 327564.2604767903, - -189001.4148694418 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94592.18007251328 - ], - "y": [ - 327564.2604767903, - -189031.42372914587 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 91386.79521336866 - ], - "y": [ - 327564.2604767903, - -188346.60400362083 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94302.9983659527 - ], - "y": [ - 327564.2604767903, - -189432.19725203505 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95035.60486780475 - ], - "y": [ - 327564.2604767903, - -189383.60172976655 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95213.0622434433 - ], - "y": [ - 327564.2604767903, - -188396.23465801778 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95306.71022996533 - ], - "y": [ - 327564.2604767903, - -188159.4341766519 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94700.77181220899 - ], - "y": [ - 327564.2604767903, - -188977.16363192897 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94617.81259757694 - ], - "y": [ - 327564.2604767903, - -188924.8418972556 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94535.68576734806 - ], - "y": [ - 327564.2604767903, - -189025.99171597915 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94750.88896059677 - ], - "y": [ - 327564.2604767903, - -189271.29959663784 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94470.20509490756 - ], - "y": [ - 327564.2604767903, - -188897.62049298765 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94511.66669647257 - ], - "y": [ - 327564.2604767903, - -188978.69804431516 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94490.98493329533 - ], - "y": [ - 327564.2604767903, - -188947.4139822555 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94846.70037648812 - ], - "y": [ - 327564.2604767903, - -189026.34351702797 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94034.72001872609 - ], - "y": [ - 327564.2604767903, - -188711.72538129365 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94559.50779408682 - ], - "y": [ - 327564.2604767903, - -189104.3400123642 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94466.7376842554 - ], - "y": [ - 327564.2604767903, - -189226.8573059561 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95513.58278963793 - ], - "y": [ - 327564.2604767903, - -188884.40182536017 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94305.51369188944 - ], - "y": [ - 327564.2604767903, - -189212.70822393885 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94851.28150629238 - ], - "y": [ - 327564.2604767903, - -189665.23911238607 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94772.25786639804 - ], - "y": [ - 327564.2604767903, - -188941.9994408223 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94518.72288699445 - ], - "y": [ - 327564.2604767903, - -189434.8299251847 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 92600.87220891484 - ], - "y": [ - 327564.2604767903, - -188586.70146604645 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94385.63245566067 - ], - "y": [ - 327564.2604767903, - -189292.63817566453 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 96765.01998356344 - ], - "y": [ - 327564.2604767903, - -188468.64488827685 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94624.67668233525 - ], - "y": [ - 327564.2604767903, - -188955.28240884622 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 95320.26347648272 - ], - "y": [ - 327564.2604767903, - -188530.70142542297 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 94187.4208589902 - ], - "y": [ - 327564.2604767903, - -188888.66487646574 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 96407.8149457741 - ], - "y": [ - 327564.2604767903, - -189282.2219107152 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -441941.0409727664, - 93866.57023587385 - ], - "y": [ - 327564.2604767903, - -189684.28770806687 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 507573.35056005995, - 96732.86821624868 - ], - "y": [ - 376214.41089156637, - -188955.7460585158 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 690145.8497871232, - 95848.64233101926 - ], - "y": [ - 303277.8993777547, - -188128.57240646365 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 690145.8497871232, - 96229.66105626737 - ], - "y": [ - 303277.8993777547, - -187792.9688123335 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 690145.8497871232, - 98178.17510730785 - ], - "y": [ - 303277.8993777547, - -187942.22047264426 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 690145.8497871232, - 96273.17959649833 - ], - "y": [ - 303277.8993777547, - -188476.1018531056 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 690145.8497871232, - 92820.89814897874 - ], - "y": [ - 303277.8993777547, - -187953.14158568936 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 690145.8497871232, - 96599.13805686972 - ], - "y": [ - 303277.8993777547, - -188243.55188231324 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 690145.8497871232, - 95659.94479562767 - ], - "y": [ - 303277.8993777547, - -188224.56475781766 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 690145.8497871232, - 96357.58676902352 - ], - "y": [ - 303277.8993777547, - -187566.37581145845 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 690145.8497871232, - 95689.95404916865 - ], - "y": [ - 303277.8993777547, - -188187.95018705592 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 690145.8497871232, - 95858.68960868126 - ], - "y": [ - 303277.8993777547, - -188277.6495023525 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 690145.8497871232, - 95814.95649081406 - ], - "y": [ - 303277.8993777547, - -188172.14856838898 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 690145.8497871232, - 97069.64943071302 - ], - "y": [ - 303277.8993777547, - -187507.9968975285 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 690145.8497871232, - 95560.28088297267 - ], - "y": [ - 303277.8993777547, - -188728.81774535606 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -89085.74572926975, - 96806.8541605258 - ], - "y": [ - 549892.402684508, - -188290.08218015765 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 915263.3573844782, - 96947.40675273385 - ], - "y": [ - -44412.02884230089, - -188107.46199151454 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 915263.3573844782, - 96920.50398772888 - ], - "y": [ - -44412.02884230089, - -188848.55062442037 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 915263.3573844782, - 96767.50358245717 - ], - "y": [ - -44412.02884230089, - -188717.3203540903 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 915263.3573844782, - 96817.66055571858 - ], - "y": [ - -44412.02884230089, - -187899.4158525461 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 713479.5856259892, - 97237.89195347154 - ], - "y": [ - 541172.2541876618, - -187856.58036489805 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 713479.5856259892, - 96947.40675273385 - ], - "y": [ - 541172.2541876618, - -188107.46199151454 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 713479.5856259892, - 96817.66055571858 - ], - "y": [ - 541172.2541876618, - -187899.4158525461 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 713479.5856259892, - 96888.97576383248 - ], - "y": [ - 541172.2541876618, - -188204.3724056574 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 713479.5856259892, - 97141.56965571626 - ], - "y": [ - 541172.2541876618, - -188169.14538504407 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 713479.5856259892, - 97272.16196531034 - ], - "y": [ - 541172.2541876618, - -187899.237151973 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 713479.5856259892, - 97095.49525391203 - ], - "y": [ - 541172.2541876618, - -188069.92329870115 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 713479.5856259892, - 96704.00303777175 - ], - "y": [ - 541172.2541876618, - -188430.55900018988 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 713479.5856259892, - 97189.19276118421 - ], - "y": [ - 541172.2541876618, - -187701.5703586604 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 713479.5856259892, - 97208.55798356787 - ], - "y": [ - 541172.2541876618, - -187761.59383487626 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 713479.5856259892, - 97237.84080032888 - ], - "y": [ - 541172.2541876618, - -187872.25388739264 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 713479.5856259892, - 97406.36037264415 - ], - "y": [ - 541172.2541876618, - -187753.2084302758 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 713479.5856259892, - 97126.32920940703 - ], - "y": [ - 541172.2541876618, - -187765.59237745742 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 713479.5856259892, - 97194.39851002919 - ], - "y": [ - 541172.2541876618, - -187809.27238686706 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 713479.5856259892, - 96183.9812972283 - ], - "y": [ - 541172.2541876618, - -188024.30685571092 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 713479.5856259892, - 96795.31918949624 - ], - "y": [ - 541172.2541876618, - -188424.35361027447 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 713479.5856259892, - 97051.71285679028 - ], - "y": [ - 541172.2541876618, - -187977.63799550864 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 713479.5856259892, - 96645.4446535775 - ], - "y": [ - 541172.2541876618, - -188680.41340104947 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 713479.5856259892, - 97016.89968225527 - ], - "y": [ - 541172.2541876618, - -188480.5260935519 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 713479.5856259892, - 98970.15914526228 - ], - "y": [ - 541172.2541876618, - -184929.26330034356 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -767480.6633687961, - 96164.31165177577 - ], - "y": [ - -871317.3856770733, - -191630.47589507297 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -767480.6633687961, - 96955.80310269099 - ], - "y": [ - -871317.3856770733, - -189739.38463051288 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -767480.6633687961, - 96766.57575414197 - ], - "y": [ - -871317.3856770733, - -189873.68737482626 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -767480.6633687961, - 96880.45975619479 - ], - "y": [ - -871317.3856770733, - -189708.2272477365 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -767480.6633687961, - 97320.49185837018 - ], - "y": [ - -871317.3856770733, - -187892.65214688177 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -767480.6633687961, - 96510.18842656737 - ], - "y": [ - -871317.3856770733, - -187863.91165705194 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -767480.6633687961, - 97003.43303968408 - ], - "y": [ - -871317.3856770733, - -189505.58704021748 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -767480.6633687961, - 96660.51533943972 - ], - "y": [ - -871317.3856770733, - -189880.0757312348 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -767480.6633687961, - 96966.02647052168 - ], - "y": [ - -871317.3856770733, - -189842.1324431489 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -767480.6633687961, - 96859.70450714213 - ], - "y": [ - -871317.3856770733, - -188854.43713783327 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -767480.6633687961, - 96932.30642163414 - ], - "y": [ - -871317.3856770733, - -189536.13208955494 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -767480.6633687961, - 96852.77079415339 - ], - "y": [ - -871317.3856770733, - -188299.83165938678 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -359558.8897121338, - 96039.53114090665 - ], - "y": [ - 569631.0496447363, - -187862.98846391006 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -359558.8897121338, - 95460.7576657949 - ], - "y": [ - 569631.0496447363, - -188851.6819268115 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -359558.8897121338, - 96081.2975453023 - ], - "y": [ - 569631.0496447363, - -189105.21478588888 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 202408.6912441687, - 97015.25817987997 - ], - "y": [ - 576377.5612561785, - -189296.96733505363 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 202408.6912441687, - 96839.05193444177 - ], - "y": [ - 576377.5612561785, - -189498.98953316532 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -472765.09146025503, - 96392.03219267243 - ], - "y": [ - -957608.7704076947, - -188270.16098356986 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -472765.09146025503, - 97817.707556705 - ], - "y": [ - -957608.7704076947, - -188836.9731938192 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -472765.09146025503, - 96743.47300321168 - ], - "y": [ - -957608.7704076947, - -189477.9687240938 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -472765.09146025503, - 96633.1960028662 - ], - "y": [ - -957608.7704076947, - -189686.82438527062 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -472765.09146025503, - 95731.94340542807 - ], - "y": [ - -957608.7704076947, - -189040.44316666905 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -472765.09146025503, - 96072.651127653 - ], - "y": [ - -957608.7704076947, - -188325.90735821644 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -224465.75825735682, - 96915.22190900354 - ], - "y": [ - -773571.3315946127, - -189266.72814157297 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 40079.99249920036, - 96645.1229128067 - ], - "y": [ - 79467.55808399919, - -189703.45302802385 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 850913.531484576, - 97004.95986761729 - ], - "y": [ - -511913.7106276921, - -189135.00336817247 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 850913.531484576, - 96566.99750987656 - ], - "y": [ - -511913.7106276921, - -189278.65997138573 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -907282.0446569585, - 96241.34047154605 - ], - "y": [ - -363660.75017817743, - -189241.36313499292 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 843622.9094645538, - 96094.8508150237 - ], - "y": [ - 258840.60215001003, - -189561.96308897558 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 843622.9094645538, - 96329.29923380495 - ], - "y": [ - 258840.60215001003, - -189390.3446237331 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 115292.52144101188, - 96303.92041500923 - ], - "y": [ - 774502.1446493892, - -191279.9278832995 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 115292.52144101188, - 95909.7739787418 - ], - "y": [ - 774502.1446493892, - -193001.23653771952 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -604109.0475752635, - 96400.51278286969 - ], - "y": [ - -807273.5584057267, - -187859.86995225446 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -604109.0475752635, - 95574.39534418302 - ], - "y": [ - -807273.5584057267, - -189738.0525135467 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -604109.0475752635, - 95694.79665191291 - ], - "y": [ - -807273.5584057267, - -189517.96720841108 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 284988.9338097777, - 96078.87408767999 - ], - "y": [ - 281063.3683157227, - -190973.23484101656 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 284988.9338097777, - 96745.54904144225 - ], - "y": [ - 281063.3683157227, - -189777.8358685715 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 284988.9338097777, - 96885.45509832901 - ], - "y": [ - 281063.3683157227, - -188921.5431373296 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 284988.9338097777, - 96570.03585592323 - ], - "y": [ - 281063.3683157227, - -190144.75403043907 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 284988.9338097777, - 96847.7893432129 - ], - "y": [ - 281063.3683157227, - -188947.86956916028 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -401281.38711647975, - 96580.26314007488 - ], - "y": [ - 74526.5651385103, - -189742.155668336 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -401281.38711647975, - 96283.38222595652 - ], - "y": [ - 74526.5651385103, - -189692.5200326185 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -401281.38711647975, - 96330.75641404516 - ], - "y": [ - 74526.5651385103, - -190156.38084035812 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -401281.38711647975, - 96505.76788267054 - ], - "y": [ - 74526.5651385103, - -189713.56303116062 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -486049.0391869989, - 95933.78130606312 - ], - "y": [ - -44382.38128250083, - -187405.71770728158 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -486049.0391869989, - 95969.93628717288 - ], - "y": [ - -44382.38128250083, - -187389.66797592156 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -623176.5609360784, - 96392.03219267243 - ], - "y": [ - 444682.40044604125, - -188270.16098356986 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -623176.5609360784, - 96241.8368167467 - ], - "y": [ - 444682.40044604125, - -188640.45100665794 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -623176.5609360784, - 96516.24082699847 - ], - "y": [ - 444682.40044604125, - -187622.41354491585 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -623176.5609360784, - 96352.37619288662 - ], - "y": [ - 444682.40044604125, - -188826.8178670996 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 978318.5934822272, - 95527.20667464145 - ], - "y": [ - -299820.94540707394, - -188567.58941515462 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 978318.5934822272, - 95977.4908427389 - ], - "y": [ - -299820.94540707394, - -189837.0067281555 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 978318.5934822272, - 96086.9490860762 - ], - "y": [ - -299820.94540707394, - -189774.66595851514 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 978318.5934822272, - 96094.51833331272 - ], - "y": [ - -299820.94540707394, - -189615.88052612924 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 978318.5934822272, - 96758.39095887466 - ], - "y": [ - -299820.94540707394, - -189272.23379027276 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 978318.5934822272, - 96034.32749733706 - ], - "y": [ - -299820.94540707394, - -190029.28538193705 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 978318.5934822272, - 96026.76816689323 - ], - "y": [ - -299820.94540707394, - -189844.7798702007 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 978318.5934822272, - 96158.4488359556 - ], - "y": [ - -299820.94540707394, - -189790.5959091938 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 978318.5934822272, - 96072.651127653 - ], - "y": [ - -299820.94540707394, - -188325.90735821644 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 978318.5934822272, - 96031.66005598055 - ], - "y": [ - -299820.94540707394, - -189991.2311607774 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -822372.6879477986, - 97015.25817987997 - ], - "y": [ - -852890.6146932214, - -189296.96733505363 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -822372.6879477986, - 97015.25817987997 - ], - "y": [ - -852890.6146932214, - -189296.96733505363 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -822372.6879477986, - 96839.05193444177 - ], - "y": [ - -852890.6146932214, - -189498.98953316532 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -822372.6879477986, - 96864.42186310086 - ], - "y": [ - -852890.6146932214, - -189682.05578414822 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -822372.6879477986, - 96587.15552488458 - ], - "y": [ - -852890.6146932214, - -189987.64885100897 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 625086.0530151355, - 96788.89525885877 - ], - "y": [ - 163635.05716330896, - -189360.52446627786 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 398851.1180425776, - 97189.5131054329 - ], - "y": [ - 910905.3678832464, - -188528.04369924997 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 398851.1180425776, - 97669.69791198618 - ], - "y": [ - 910905.3678832464, - -188875.90551008 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -982531.8952967137, - 97278.5656163335 - ], - "y": [ - 648026.9528531422, - -188016.10442522762 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 829256.0232519812, - 96896.58750176255 - ], - "y": [ - 140476.45945029764, - -188167.02460559944 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 829256.0232519812, - 97154.72425616732 - ], - "y": [ - 140476.45945029764, - -188123.19483452023 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 829256.0232519812, - 96987.80225378742 - ], - "y": [ - 140476.45945029764, - -189105.2816803546 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 829256.0232519812, - 96695.54475332797 - ], - "y": [ - 140476.45945029764, - -188987.74156072343 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 157263.60815314978, - 96726.40817559678 - ], - "y": [ - -303089.9316090217, - -189303.08944739285 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 157263.60815314978, - 96767.46602322998 - ], - "y": [ - -303089.9316090217, - -189317.7229192206 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 157263.60815314978, - 96813.4343547639 - ], - "y": [ - -303089.9316090217, - -189250.6861714318 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 157263.60815314978, - 96791.18101461837 - ], - "y": [ - -303089.9316090217, - -188349.47236547497 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 157263.60815314978, - 96817.66055571858 - ], - "y": [ - -303089.9316090217, - -187899.4158525461 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 850940.5457161552, - 95443.67008227661 - ], - "y": [ - 702957.956639624, - -188423.99184216498 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 850940.5457161552, - 95141.30835602302 - ], - "y": [ - 702957.956639624, - -189264.0420911513 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 850940.5457161552, - 95262.41295878915 - ], - "y": [ - 702957.956639624, - -189552.3086334869 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 850940.5457161552, - 95292.52782742439 - ], - "y": [ - 702957.956639624, - -188534.02363205954 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 850940.5457161552, - 95274.55463163379 - ], - "y": [ - 702957.956639624, - -188644.9068178371 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 850940.5457161552, - 95389.10664694483 - ], - "y": [ - 702957.956639624, - -189577.61389462257 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 850940.5457161552, - 95093.22706462545 - ], - "y": [ - 702957.956639624, - -189103.72355039057 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 850940.5457161552, - 94205.42306946588 - ], - "y": [ - 702957.956639624, - -188854.15596558747 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 850940.5457161552, - 95308.98963794683 - ], - "y": [ - 702957.956639624, - -188590.4523846817 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 850940.5457161552, - 95527.20667464145 - ], - "y": [ - 702957.956639624, - -188567.58941515462 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 850940.5457161552, - 95360.36419013362 - ], - "y": [ - 702957.956639624, - -188384.46387554856 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 850940.5457161552, - 95472.00274613315 - ], - "y": [ - 702957.956639624, - -188477.95331527485 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 850940.5457161552, - 95405.5970323345 - ], - "y": [ - 702957.956639624, - -190700.1111637919 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 850940.5457161552, - 95935.5419641612 - ], - "y": [ - 702957.956639624, - -189378.03325846698 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 850940.5457161552, - 95035.60486780475 - ], - "y": [ - 702957.956639624, - -189383.60172976655 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 850940.5457161552, - 95320.26347648272 - ], - "y": [ - 702957.956639624, - -188530.70142542297 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 850940.5457161552, - 96072.651127653 - ], - "y": [ - 702957.956639624, - -188325.90735821644 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -652873.5736363298, - 96253.58305118927 - ], - "y": [ - 535360.6304546237, - -189231.051408616 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -652873.5736363298, - 96263.70637434645 - ], - "y": [ - 535360.6304546237, - -189290.40865383588 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -165877.75686732464, - 96534.04849627241 - ], - "y": [ - -582178.1698576073, - -186632.56137489137 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 400648.1628683858, - 97358.46679886585 - ], - "y": [ - -122981.7689829138, - -188482.5310615353 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 400648.1628683858, - 97532.46968364714 - ], - "y": [ - -122981.7689829138, - -187821.3765527352 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -844246.5819693888, - 96198.74714645866 - ], - "y": [ - 975052.8974165997, - -189396.51935593525 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -844246.5819693888, - 96023.10216322435 - ], - "y": [ - 975052.8974165997, - -189490.2551625836 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -484658.3050507276, - 97066.1566770924 - ], - "y": [ - -580163.7149676814, - -189589.28553677927 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 27244.414390010574, - 96512.6439304231 - ], - "y": [ - -763095.0042941425, - -189048.4956879801 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 27244.414390010574, - 96656.65493202257 - ], - "y": [ - -763095.0042941425, - -189131.92422966988 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -235998.43433836033, - 98642.78682170947 - ], - "y": [ - -24819.552881023334, - -188104.6983502157 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -235998.43433836033, - 98026.80584910973 - ], - "y": [ - -24819.552881023334, - -187704.763876957 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -235998.43433836033, - 97317.9470175812 - ], - "y": [ - -24819.552881023334, - -189015.4951605007 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -235998.43433836033, - 97272.16196531034 - ], - "y": [ - -24819.552881023334, - -187899.237151973 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -235998.43433836033, - 97558.53189592143 - ], - "y": [ - -24819.552881023334, - -188563.3727238801 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -235998.43433836033, - 97141.56965571626 - ], - "y": [ - -24819.552881023334, - -188169.14538504407 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -235998.43433836033, - 97354.04987112107 - ], - "y": [ - -24819.552881023334, - -188868.86823729656 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -235998.43433836033, - 98156.10361722215 - ], - "y": [ - -24819.552881023334, - -188185.3569399699 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 832880.6118917629, - 97559.12810431966 - ], - "y": [ - -173346.57451710323, - -187448.3572804437 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 832880.6118917629, - 97016.89968225527 - ], - "y": [ - -173346.57451710323, - -188480.5260935519 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 990684.9044964272, - 98672.80035077463 - ], - "y": [ - -417201.7659561833, - -188272.94824742872 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 990684.9044964272, - 97608.46722365031 - ], - "y": [ - -417201.7659561833, - -189247.54195982916 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 990684.9044964272, - 97720.70350653208 - ], - "y": [ - -417201.7659561833, - -189033.53333615928 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 990684.9044964272, - 97761.99442165645 - ], - "y": [ - -417201.7659561833, - -189071.23203874825 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 990684.9044964272, - 96752.4665017377 - ], - "y": [ - -417201.7659561833, - -188876.74592565937 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 990684.9044964272, - 97746.8391580485 - ], - "y": [ - -417201.7659561833, - -189238.02623730994 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 990684.9044964272, - 97819.4972376039 - ], - "y": [ - -417201.7659561833, - -189115.05770210535 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 990684.9044964272, - 97811.11864279254 - ], - "y": [ - -417201.7659561833, - -189231.03855465443 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 990684.9044964272, - 97693.57749236286 - ], - "y": [ - -417201.7659561833, - -189259.5246750294 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 990684.9044964272, - 97735.9507021614 - ], - "y": [ - -417201.7659561833, - -189305.01453652733 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 990684.9044964272, - 97384.36803091576 - ], - "y": [ - -417201.7659561833, - -189185.22678595383 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 990684.9044964272, - 97155.80752875579 - ], - "y": [ - -417201.7659561833, - -189778.15834495376 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 990684.9044964272, - 97787.10318478926 - ], - "y": [ - -417201.7659561833, - -189298.76112672515 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -878821.3304950048, - 96806.8541605258 - ], - "y": [ - 440051.72985487495, - -188290.08218015765 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -878821.3304950048, - 96725.27797613826 - ], - "y": [ - 440051.72985487495, - -188757.12524904165 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -878821.3304950048, - 96947.40675273385 - ], - "y": [ - 440051.72985487495, - -188107.46199151454 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -878821.3304950048, - 96656.51605951994 - ], - "y": [ - 440051.72985487495, - -188126.8200295349 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -878821.3304950048, - 96621.34244090467 - ], - "y": [ - 440051.72985487495, - -188760.00770833693 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -878821.3304950048, - 96787.80852813035 - ], - "y": [ - 440051.72985487495, - -188933.22539579918 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -458711.1024669723, - 97481.5752702023 - ], - "y": [ - 167007.07363240785, - -188674.7471497121 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -458711.1024669723, - 96896.58750176255 - ], - "y": [ - 167007.07363240785, - -188167.02460559944 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -458711.1024669723, - 97154.72425616732 - ], - "y": [ - 167007.07363240785, - -188123.19483452023 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -458711.1024669723, - 96763.64967872995 - ], - "y": [ - 167007.07363240785, - -188336.20643323814 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -458711.1024669723, - 98517.20808727229 - ], - "y": [ - 167007.07363240785, - -188180.73220770183 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -458711.1024669723, - 97409.50882998393 - ], - "y": [ - 167007.07363240785, - -188519.90581438286 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 802251.3174304304, - 96746.40104686156 - ], - "y": [ - 844123.2156411576, - -187932.28950243027 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -504542.1352043298, - 96387.0378486012 - ], - "y": [ - -441582.8475081609, - -188952.85593883562 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 561261.9310804654, - 96137.27428645456 - ], - "y": [ - -202506.6013903658, - -189097.48187960163 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 97633.05212708894, - 96447.65576692639 - ], - "y": [ - -716399.6943027051, - -188308.2995444295 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 97633.05212708894, - 96500.05485471405 - ], - "y": [ - -716399.6943027051, - -188124.98331170535 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 97633.05212708894, - 96602.41413482858 - ], - "y": [ - -716399.6943027051, - -188393.99052171747 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 97633.05212708894, - 96347.26384012886 - ], - "y": [ - -716399.6943027051, - -188347.58050575748 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 97633.05212708894, - 96798.05259841571 - ], - "y": [ - -716399.6943027051, - -188876.59928470026 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 502900.9484947351, - 97123.64353111561 - ], - "y": [ - 256931.79497122642, - -189345.9124851909 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -405277.08141188713, - 98810.40128605721 - ], - "y": [ - 666829.5187873732, - -188180.15644195993 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -405277.08141188713, - 98748.83379870633 - ], - "y": [ - 666829.5187873732, - -189045.54815632163 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -405277.08141188713, - 98766.84037371344 - ], - "y": [ - 666829.5187873732, - -188937.80405805522 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -405277.08141188713, - 98595.68155874425 - ], - "y": [ - 666829.5187873732, - -188767.47226676266 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 15427.685521914647, - 97358.46679886585 - ], - "y": [ - 227772.45012929238, - -188482.5310615353 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 15427.685521914647, - 97532.46968364714 - ], - "y": [ - 227772.45012929238, - -187821.3765527352 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 942482.3561708895, - 95432.28216788654 - ], - "y": [ - 894017.2524725694, - -187601.13526565803 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 942482.3561708895, - 95102.33265077158 - ], - "y": [ - 894017.2524725694, - -187830.46815133246 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 324668.65708667634, - 96969.06747778888 - ], - "y": [ - 826749.0806877838, - -186931.52009524958 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 280237.001949774, - 98047.49514396398 - ], - "y": [ - -149638.04410942073, - -187722.01964145992 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 280237.001949774, - 97477.31474980435 - ], - "y": [ - -149638.04410942073, - -188625.28745242656 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -823020.539712868, - 97384.80366070305 - ], - "y": [ - 892984.7573596186, - -188602.07939852623 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -823020.539712868, - 98571.74309474658 - ], - "y": [ - 892984.7573596186, - -188156.60345261396 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -970779.9930329554, - 95476.30474211962 - ], - "y": [ - -446380.38475321437, - -189331.9915999827 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -970779.9930329554, - 96247.39210484998 - ], - "y": [ - -446380.38475321437, - -188984.34951568441 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -970779.9930329554, - 95988.61012463992 - ], - "y": [ - -446380.38475321437, - -189094.7454633695 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -486550.24362551223, - 97164.97647400496 - ], - "y": [ - 348686.85801109846, - -189479.30333773256 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 231074.82024078374, - 97510.69098668513 - ], - "y": [ - 555197.2759476387, - -188834.4604537936 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 231074.82024078374, - 98349.87077216271 - ], - "y": [ - 555197.2759476387, - -187923.30486023927 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 231074.82024078374, - 98009.1006468227 - ], - "y": [ - 555197.2759476387, - -188635.053643839 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -547870.9118915705, - 96616.28197124632 - ], - "y": [ - 858631.2968465331, - -189486.94419473826 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -547870.9118915705, - 96611.07880435153 - ], - "y": [ - 858631.2968465331, - -189045.68105489522 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -547870.9118915705, - 96643.07015445872 - ], - "y": [ - 858631.2968465331, - -188345.75062919507 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -702264.0646188254, - 96860.00354930486 - ], - "y": [ - -535266.8793977569, - -188696.782377594 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -702264.0646188254, - 97218.18359466371 - ], - "y": [ - -535266.8793977569, - -189006.25883621728 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -702264.0646188254, - 96656.51605951994 - ], - "y": [ - -535266.8793977569, - -188126.8200295349 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -702264.0646188254, - 97154.72425616732 - ], - "y": [ - -535266.8793977569, - -188123.19483452023 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -702264.0646188254, - 96987.80225378742 - ], - "y": [ - -535266.8793977569, - -189105.2816803546 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -702264.0646188254, - 96947.40675273385 - ], - "y": [ - -535266.8793977569, - -188107.46199151454 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -702264.0646188254, - 96791.18101461837 - ], - "y": [ - -535266.8793977569, - -188349.47236547497 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -702264.0646188254, - 96532.6513290047 - ], - "y": [ - -535266.8793977569, - -189387.78435538372 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 158951.22444749888, - 96476.99449429182 - ], - "y": [ - 347729.6376490493, - -189801.49095297614 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 158951.22444749888, - 96460.3440809962 - ], - "y": [ - 347729.6376490493, - -189489.71907673345 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -573579.8815497239, - 96817.66055571858 - ], - "y": [ - 155824.0474256294, - -187899.4158525461 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -573579.8815497239, - 96896.58750176255 - ], - "y": [ - 155824.0474256294, - -188167.02460559944 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -573579.8815497239, - 96656.51605951994 - ], - "y": [ - 155824.0474256294, - -188126.8200295349 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -573579.8815497239, - 97154.72425616732 - ], - "y": [ - 155824.0474256294, - -188123.19483452023 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -573579.8815497239, - 96987.80225378742 - ], - "y": [ - 155824.0474256294, - -189105.2816803546 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -573579.8815497239, - 96947.40675273385 - ], - "y": [ - 155824.0474256294, - -188107.46199151454 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -573579.8815497239, - 96791.18101461837 - ], - "y": [ - 155824.0474256294, - -188349.47236547497 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -573579.8815497239, - 96695.54475332797 - ], - "y": [ - 155824.0474256294, - -188987.74156072343 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -573579.8815497239, - 96532.6513290047 - ], - "y": [ - 155824.0474256294, - -189387.78435538372 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 291482.05335721734, - 93363.71919768747 - ], - "y": [ - 289323.7154408901, - -190382.19427593888 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 291482.05335721734, - 93502.02146333765 - ], - "y": [ - 289323.7154408901, - -190294.21864983928 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 291482.05335721734, - 93218.26568575818 - ], - "y": [ - 289323.7154408901, - -190368.25817851265 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96605.96850560357 - ], - "y": [ - 229215.98538537679, - -189554.68072761627 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96834.80703834713 - ], - "y": [ - 229215.98538537679, - -189522.66677498195 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 95965.26838759349 - ], - "y": [ - 229215.98538537679, - -189623.56254580448 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 94954.26355620637 - ], - "y": [ - 229215.98538537679, - -188251.55613681383 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96061.1094111204 - ], - "y": [ - 229215.98538537679, - -189916.311805951 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 98472.89573129527 - ], - "y": [ - 229215.98538537679, - -188292.3869375497 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96860.00354930486 - ], - "y": [ - 229215.98538537679, - -188696.782377594 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96947.40675273385 - ], - "y": [ - 229215.98538537679, - -188107.46199151454 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 98477.25442843478 - ], - "y": [ - 229215.98538537679, - -188271.77595069932 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96663.3347349886 - ], - "y": [ - 229215.98538537679, - -189041.9225197264 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97182.40630309808 - ], - "y": [ - 229215.98538537679, - -189199.17908190106 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 98498.41434807747 - ], - "y": [ - 229215.98538537679, - -188285.76996994668 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96705.80879914662 - ], - "y": [ - 229215.98538537679, - -189537.7817031003 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96932.7889750408 - ], - "y": [ - 229215.98538537679, - -189352.73404518928 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96884.50148839512 - ], - "y": [ - 229215.98538537679, - -189471.04120599278 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96614.16469347998 - ], - "y": [ - 229215.98538537679, - -189679.53787245677 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96666.70966909935 - ], - "y": [ - 229215.98538537679, - -189408.21023611428 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96700.68589331902 - ], - "y": [ - 229215.98538537679, - -188999.3408802612 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96896.58750176255 - ], - "y": [ - 229215.98538537679, - -188167.02460559944 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96888.97576383248 - ], - "y": [ - 229215.98538537679, - -188204.3724056574 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96643.9005120101 - ], - "y": [ - 229215.98538537679, - -189645.5000292996 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96541.9681406362 - ], - "y": [ - 229215.98538537679, - -189431.51059923717 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97087.54671590365 - ], - "y": [ - 229215.98538537679, - -189615.4869081341 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96751.41823297429 - ], - "y": [ - 229215.98538537679, - -189750.14044068835 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97088.14880740178 - ], - "y": [ - 229215.98538537679, - -189801.76573120884 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96691.22132401943 - ], - "y": [ - 229215.98538537679, - -189558.55733558614 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96817.66055571858 - ], - "y": [ - 229215.98538537679, - -187899.4158525461 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96809.66561279182 - ], - "y": [ - 229215.98538537679, - -189504.89278882294 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96774.85380189044 - ], - "y": [ - 229215.98538537679, - -189522.26639614848 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96773.12113524246 - ], - "y": [ - 229215.98538537679, - -189536.3625339415 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96537.39245144221 - ], - "y": [ - 229215.98538537679, - -189750.30848512865 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96631.60109535737 - ], - "y": [ - 229215.98538537679, - -189442.69507087598 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96479.84660377468 - ], - "y": [ - 229215.98538537679, - -190034.61897906184 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97272.16196531034 - ], - "y": [ - 229215.98538537679, - -187899.237151973 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96957.50399046045 - ], - "y": [ - 229215.98538537679, - -188801.60294815066 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96802.58799326436 - ], - "y": [ - 229215.98538537679, - -189834.3163791867 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96813.4343547639 - ], - "y": [ - 229215.98538537679, - -189250.6861714318 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97026.39229748285 - ], - "y": [ - 229215.98538537679, - -189257.69084732296 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97321.50714071444 - ], - "y": [ - 229215.98538537679, - -188954.66274327494 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96685.14736048535 - ], - "y": [ - 229215.98538537679, - -189640.1945004268 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96659.44539572205 - ], - "y": [ - 229215.98538537679, - -190115.39552164622 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96476.29445285945 - ], - "y": [ - 229215.98538537679, - -188306.66890581805 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 98504.94937934296 - ], - "y": [ - 229215.98538537679, - -188312.41502651962 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96505.43473450017 - ], - "y": [ - 229215.98538537679, - -189659.46917226465 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96630.14481112546 - ], - "y": [ - 229215.98538537679, - -189317.8406785239 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97079.77003968997 - ], - "y": [ - 229215.98538537679, - -189302.72898643688 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97164.16435672548 - ], - "y": [ - 229215.98538537679, - -189169.03781422778 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96758.34868779706 - ], - "y": [ - 229215.98538537679, - -189731.85447908618 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96814.38545725966 - ], - "y": [ - 229215.98538537679, - -189446.80721719595 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97131.06442362265 - ], - "y": [ - 229215.98538537679, - -189275.603776678 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96587.63072624992 - ], - "y": [ - 229215.98538537679, - -189693.2055888678 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96701.44181961339 - ], - "y": [ - 229215.98538537679, - -189753.59627716336 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96868.32753094017 - ], - "y": [ - 229215.98538537679, - -189523.92981689292 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96485.2623043036 - ], - "y": [ - 229215.98538537679, - -189582.96181379963 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96544.79575713704 - ], - "y": [ - 229215.98538537679, - -190328.62833538937 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96879.06539514555 - ], - "y": [ - 229215.98538537679, - -189786.84207760714 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96650.5251142157 - ], - "y": [ - 229215.98538537679, - -189751.89635663538 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97056.66087663827 - ], - "y": [ - 229215.98538537679, - -188815.1944085261 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97018.7876594228 - ], - "y": [ - 229215.98538537679, - -189224.11613190582 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96726.97841332003 - ], - "y": [ - 229215.98538537679, - -189796.11674781732 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96785.79342645025 - ], - "y": [ - 229215.98538537679, - -189932.6237612485 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96719.79877048176 - ], - "y": [ - 229215.98538537679, - -189552.86218391886 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96656.51605951994 - ], - "y": [ - 229215.98538537679, - -188126.8200295349 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96500.3647531615 - ], - "y": [ - 229215.98538537679, - -189830.91246389045 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96920.00376965974 - ], - "y": [ - 229215.98538537679, - -189498.42730696275 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96805.25180958064 - ], - "y": [ - 229215.98538537679, - -189646.04277723422 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96511.27388316976 - ], - "y": [ - 229215.98538537679, - -189493.25493438917 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97143.69979917424 - ], - "y": [ - 229215.98538537679, - -188868.21171990343 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96785.52822630318 - ], - "y": [ - 229215.98538537679, - -189430.8749071048 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96751.7242293975 - ], - "y": [ - 229215.98538537679, - -189418.3979333305 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 98488.89658362548 - ], - "y": [ - 229215.98538537679, - -188294.41257727327 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96527.82964364873 - ], - "y": [ - 229215.98538537679, - -188804.39291762855 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96815.18595416151 - ], - "y": [ - 229215.98538537679, - -189383.2134141077 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96727.94539580634 - ], - "y": [ - 229215.98538537679, - -189408.30108345978 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96877.61190695128 - ], - "y": [ - 229215.98538537679, - -189622.2992613024 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96674.53853073626 - ], - "y": [ - 229215.98538537679, - -189336.00050606855 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96755.77967969238 - ], - "y": [ - 229215.98538537679, - -189494.18089072162 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97629.85915951653 - ], - "y": [ - 229215.98538537679, - -189346.3496150686 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96896.55417266351 - ], - "y": [ - 229215.98538537679, - -189517.63745548116 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96874.61155723894 - ], - "y": [ - 229215.98538537679, - -189562.47650992335 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96781.7373211774 - ], - "y": [ - 229215.98538537679, - -189732.76841517194 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96671.25152661269 - ], - "y": [ - 229215.98538537679, - -189536.8343224868 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96934.94898597764 - ], - "y": [ - 229215.98538537679, - -189457.759153216 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97005.77074047142 - ], - "y": [ - 229215.98538537679, - -189532.57203367492 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96964.78110583073 - ], - "y": [ - 229215.98538537679, - -189507.00155087592 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96640.3915108683 - ], - "y": [ - 229215.98538537679, - -189055.85878078622 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96561.11544487227 - ], - "y": [ - 229215.98538537679, - -190253.9554374968 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96787.83212641206 - ], - "y": [ - 229215.98538537679, - -189453.52787322368 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97117.91370467145 - ], - "y": [ - 229215.98538537679, - -189199.04942802034 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96752.7630566314 - ], - "y": [ - 229215.98538537679, - -189518.1963457777 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97904.95870247688 - ], - "y": [ - 229215.98538537679, - -188415.7452673843 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97287.61876639193 - ], - "y": [ - 229215.98538537679, - -188922.00741313785 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96977.41506513029 - ], - "y": [ - 229215.98538537679, - -189565.95036095765 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96672.9812022687 - ], - "y": [ - 229215.98538537679, - -189599.43976925078 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96586.3268270632 - ], - "y": [ - 229215.98538537679, - -189447.3213721349 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96797.33031385214 - ], - "y": [ - 229215.98538537679, - -189592.0253847243 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96770.78381407568 - ], - "y": [ - 229215.98538537679, - -189704.67210231442 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96767.69056492882 - ], - "y": [ - 229215.98538537679, - -189429.51527102874 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96916.62444917303 - ], - "y": [ - 229215.98538537679, - -189549.2248295347 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96736.187248987 - ], - "y": [ - 229215.98538537679, - -189732.63425983736 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96497.40326486343 - ], - "y": [ - 229215.98538537679, - -189156.18143433816 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96981.69606403777 - ], - "y": [ - 229215.98538537679, - -189593.73394135686 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97757.99670975313 - ], - "y": [ - 229215.98538537679, - -189255.76286114688 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97360.13554374868 - ], - "y": [ - 229215.98538537679, - -188480.57065962657 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96792.24969134637 - ], - "y": [ - 229215.98538537679, - -189396.15620173485 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97386.8040364756 - ], - "y": [ - 229215.98538537679, - -189119.4502426223 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97041.45585776801 - ], - "y": [ - 229215.98538537679, - -189099.2895300957 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96624.01938254207 - ], - "y": [ - 229215.98538537679, - -189372.92718386388 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96974.28350714296 - ], - "y": [ - 229215.98538537679, - -189530.79236599515 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97156.22383491664 - ], - "y": [ - 229215.98538537679, - -189323.80480814414 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96954.62064886169 - ], - "y": [ - 229215.98538537679, - -189638.78145869536 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97046.79482101345 - ], - "y": [ - 229215.98538537679, - -189285.81117966407 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 95844.28052724677 - ], - "y": [ - 229215.98538537679, - -189920.08786925004 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96795.23928720718 - ], - "y": [ - 229215.98538537679, - -189568.58179882303 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96772.56610132441 - ], - "y": [ - 229215.98538537679, - -189490.09496069627 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96821.18944890518 - ], - "y": [ - 229215.98538537679, - -189529.25512316148 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97037.54167528427 - ], - "y": [ - 229215.98538537679, - -189325.65832119124 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97304.17187437204 - ], - "y": [ - 229215.98538537679, - -188851.56730320977 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97045.7174310999 - ], - "y": [ - 229215.98538537679, - -189408.06502858872 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97031.3088470609 - ], - "y": [ - 229215.98538537679, - -189515.4108281232 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96645.4446535775 - ], - "y": [ - 229215.98538537679, - -188680.41340104947 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96973.7313647934 - ], - "y": [ - 229215.98538537679, - -189356.0500464047 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96827.27721865964 - ], - "y": [ - 229215.98538537679, - -188887.3973668111 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96836.63104835567 - ], - "y": [ - 229215.98538537679, - -189225.07031019146 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96915.11359133502 - ], - "y": [ - 229215.98538537679, - -188770.14684657753 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96603.10265344591 - ], - "y": [ - 229215.98538537679, - -189474.47554588024 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96572.35122948136 - ], - "y": [ - 229215.98538537679, - -189774.7476661943 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97218.18359466371 - ], - "y": [ - 229215.98538537679, - -189006.25883621728 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96562.71215702499 - ], - "y": [ - 229215.98538537679, - -189656.34211244347 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96669.45654037285 - ], - "y": [ - 229215.98538537679, - -189485.92172726392 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96608.97450213194 - ], - "y": [ - 229215.98538537679, - -189381.9654969643 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96780.12324046777 - ], - "y": [ - 229215.98538537679, - -189641.00924985827 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96759.8367076845 - ], - "y": [ - 229215.98538537679, - -189677.82690449522 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96729.07888575827 - ], - "y": [ - 229215.98538537679, - -189393.09189406977 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96451.36476325426 - ], - "y": [ - 229215.98538537679, - -189725.99119278492 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96426.58864894029 - ], - "y": [ - 229215.98538537679, - -187911.2710909405 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96654.61006042475 - ], - "y": [ - 229215.98538537679, - -189560.62472315767 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 98502.39684963804 - ], - "y": [ - 229215.98538537679, - -188296.21414801962 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96710.20852553143 - ], - "y": [ - 229215.98538537679, - -189686.30027570974 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97529.59178857305 - ], - "y": [ - 229215.98538537679, - -189068.82122443494 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 98492.45967203799 - ], - "y": [ - 229215.98538537679, - -188278.08712796614 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96763.64967872995 - ], - "y": [ - 229215.98538537679, - -188336.20643323814 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97097.47714912827 - ], - "y": [ - 229215.98538537679, - -189634.1669562323 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96726.40817559678 - ], - "y": [ - 229215.98538537679, - -189303.08944739285 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96949.62066620833 - ], - "y": [ - 229215.98538537679, - -189557.7983769141 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96872.36708461096 - ], - "y": [ - 229215.98538537679, - -189363.34000394432 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97572.7954448912 - ], - "y": [ - 229215.98538537679, - -187689.0483805537 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96534.13113359883 - ], - "y": [ - 229215.98538537679, - -189640.61261352964 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96670.03282167818 - ], - "y": [ - 229215.98538537679, - -189583.51700064118 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96915.56474058192 - ], - "y": [ - 229215.98538537679, - -189321.36395637903 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96690.79996780091 - ], - "y": [ - 229215.98538537679, - -189328.29367726677 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97081.73959470788 - ], - "y": [ - 229215.98538537679, - -188925.91974127013 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96645.28675952984 - ], - "y": [ - 229215.98538537679, - -189730.37815090845 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96845.49984264001 - ], - "y": [ - 229215.98538537679, - -188921.42443902968 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96791.42873166909 - ], - "y": [ - 229215.98538537679, - -189511.2209653839 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96848.6019348336 - ], - "y": [ - 229215.98538537679, - -189692.25637540634 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96653.33167046132 - ], - "y": [ - 229215.98538537679, - -189322.72491470815 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96798.09730894824 - ], - "y": [ - 229215.98538537679, - -189703.6139847984 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96830.20824198317 - ], - "y": [ - 229215.98538537679, - -189590.25078595642 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96974.68588435129 - ], - "y": [ - 229215.98538537679, - -188547.46824695042 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96920.50398772888 - ], - "y": [ - 229215.98538537679, - -188848.55062442037 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97141.56965571626 - ], - "y": [ - 229215.98538537679, - -188169.14538504407 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 95329.09589374838 - ], - "y": [ - 229215.98538537679, - -189621.15970611246 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96625.20312840438 - ], - "y": [ - 229215.98538537679, - -189554.07262256934 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96583.08101942415 - ], - "y": [ - 229215.98538537679, - -188935.33612228493 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97317.9470175812 - ], - "y": [ - 229215.98538537679, - -189015.4951605007 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96848.58357963007 - ], - "y": [ - 229215.98538537679, - -189468.52121776558 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96685.21610856292 - ], - "y": [ - 229215.98538537679, - -189726.9839142311 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96647.86296497285 - ], - "y": [ - 229215.98538537679, - -189604.051822791 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96749.19177745887 - ], - "y": [ - 229215.98538537679, - -189172.60980398947 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96667.27172199388 - ], - "y": [ - 229215.98538537679, - -189516.1723814726 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96915.00366898013 - ], - "y": [ - 229215.98538537679, - -189606.13981497308 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 95683.09108910317 - ], - "y": [ - 229215.98538537679, - -189818.32592583625 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96463.21403142411 - ], - "y": [ - 229215.98538537679, - -189832.11385822124 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96884.74639022724 - ], - "y": [ - 229215.98538537679, - -188799.02956322636 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97951.06604016566 - ], - "y": [ - 229215.98538537679, - -189141.57950872142 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96603.17113805444 - ], - "y": [ - 229215.98538537679, - -189643.42341201042 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 95950.60579597944 - ], - "y": [ - 229215.98538537679, - -189659.6677604097 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96582.65960470523 - ], - "y": [ - 229215.98538537679, - -189525.22410298133 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96319.04144083924 - ], - "y": [ - 229215.98538537679, - -189027.32662829437 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97016.89968225527 - ], - "y": [ - 229215.98538537679, - -188480.5260935519 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96864.74890763631 - ], - "y": [ - 229215.98538537679, - -189794.1589935236 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96899.74561231451 - ], - "y": [ - 229215.98538537679, - -189493.67651902192 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96767.43202743762 - ], - "y": [ - 229215.98538537679, - -189257.11848075397 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96984.0156607433 - ], - "y": [ - 229215.98538537679, - -189190.8420644383 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96697.59306293263 - ], - "y": [ - 229215.98538537679, - -189427.21294576538 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96742.76428952735 - ], - "y": [ - 229215.98538537679, - -189688.7712261936 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96935.54268135317 - ], - "y": [ - 229215.98538537679, - -189402.41667130496 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 95574.39534418302 - ], - "y": [ - 229215.98538537679, - -189738.0525135467 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96991.60346683899 - ], - "y": [ - 229215.98538537679, - -188695.04808894158 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96580.8583468943 - ], - "y": [ - 229215.98538537679, - -189566.4665127886 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96987.80225378742 - ], - "y": [ - 229215.98538537679, - -189105.2816803546 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96480.30494028228 - ], - "y": [ - 229215.98538537679, - -187695.57614406702 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97026.73007218333 - ], - "y": [ - 229215.98538537679, - -188758.55641030593 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96873.58873560156 - ], - "y": [ - 229215.98538537679, - -189744.39363754724 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97154.72425616732 - ], - "y": [ - 229215.98538537679, - -188123.19483452023 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97214.28101702654 - ], - "y": [ - 229215.98538537679, - -188470.03479631987 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96962.13430709024 - ], - "y": [ - 229215.98538537679, - -189424.87314537496 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96445.14131578358 - ], - "y": [ - 229215.98538537679, - -189689.52817768222 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96952.0852964525 - ], - "y": [ - 229215.98538537679, - -189447.98748217383 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96485.30175383571 - ], - "y": [ - 229215.98538537679, - -189736.91566883595 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 98188.17126174309 - ], - "y": [ - 229215.98538537679, - -187803.1415402722 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 98087.3338631131 - ], - "y": [ - 229215.98538537679, - -188615.64024283146 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97264.08371499478 - ], - "y": [ - 229215.98538537679, - -188516.52943830803 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96567.84669526415 - ], - "y": [ - 229215.98538537679, - -189681.64351749184 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96692.64254266855 - ], - "y": [ - 229215.98538537679, - -189583.2115684275 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96954.5126568193 - ], - "y": [ - 229215.98538537679, - -188560.8123839254 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96442.24721615986 - ], - "y": [ - 229215.98538537679, - -188808.58568177576 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96675.1674827983 - ], - "y": [ - 229215.98538537679, - -189710.93255919393 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96911.71700742826 - ], - "y": [ - 229215.98538537679, - -189406.02024615998 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96559.09520602223 - ], - "y": [ - 229215.98538537679, - -189499.59645998385 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96964.90990095795 - ], - "y": [ - 229215.98538537679, - -189483.72175297773 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96368.1267297445 - ], - "y": [ - 229215.98538537679, - -189357.24837546385 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96354.29226248538 - ], - "y": [ - 229215.98538537679, - -189474.95530109046 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 95704.0871202312 - ], - "y": [ - 229215.98538537679, - -189782.36536876537 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96138.82096969092 - ], - "y": [ - 229215.98538537679, - -189258.09496306165 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96702.30104154837 - ], - "y": [ - 229215.98538537679, - -189596.714753665 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 95863.078617055 - ], - "y": [ - 229215.98538537679, - -188890.3664574394 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96928.70418989572 - ], - "y": [ - 229215.98538537679, - -188764.91305512202 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96875.43456713467 - ], - "y": [ - 229215.98538537679, - -189282.2159957167 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96712.85163544948 - ], - "y": [ - 229215.98538537679, - -188923.44433292217 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96210.68445716402 - ], - "y": [ - 229215.98538537679, - -188971.43179267063 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97643.43217333438 - ], - "y": [ - 229215.98538537679, - -188253.40886764217 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96875.38177626212 - ], - "y": [ - 229215.98538537679, - -189394.1110529634 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97277.67379891923 - ], - "y": [ - 229215.98538537679, - -188553.8667206884 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97650.21348938807 - ], - "y": [ - 229215.98538537679, - -188247.0553738609 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97380.97035221593 - ], - "y": [ - 229215.98538537679, - -188500.12824679536 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96767.46602322998 - ], - "y": [ - 229215.98538537679, - -189317.7229192206 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 95912.88033660327 - ], - "y": [ - 229215.98538537679, - -188900.62386161956 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96875.44858847588 - ], - "y": [ - 229215.98538537679, - -188881.29006931305 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97090.26472678532 - ], - "y": [ - 229215.98538537679, - -189122.419390301 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96986.78948010856 - ], - "y": [ - 229215.98538537679, - -189049.75416535302 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96355.34401319342 - ], - "y": [ - 229215.98538537679, - -190290.13307072833 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 98484.83314214389 - ], - "y": [ - 229215.98538537679, - -188263.30442852018 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96480.80058099459 - ], - "y": [ - 229215.98538537679, - -189655.53739052103 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96582.01402568171 - ], - "y": [ - 229215.98538537679, - -189593.4766049247 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96882.04031575473 - ], - "y": [ - 229215.98538537679, - -189658.27998301366 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96747.25944879792 - ], - "y": [ - 229215.98538537679, - -189608.43740396632 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96853.94619098958 - ], - "y": [ - 229215.98538537679, - -189240.7395503507 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 95902.58151687872 - ], - "y": [ - 229215.98538537679, - -189401.6122354161 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 98205.92395781298 - ], - "y": [ - 229215.98538537679, - -187798.89120280318 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97674.61704340234 - ], - "y": [ - 229215.98538537679, - -189230.37339317877 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96816.42131470822 - ], - "y": [ - 229215.98538537679, - -189545.16625437708 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96625.30102032366 - ], - "y": [ - 229215.98538537679, - -189612.82599109344 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96574.89605254125 - ], - "y": [ - 229215.98538537679, - -189466.51428955715 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96695.54475332797 - ], - "y": [ - 229215.98538537679, - -188987.74156072343 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97026.03297053343 - ], - "y": [ - 229215.98538537679, - -189424.6200709084 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96755.84845242432 - ], - "y": [ - 229215.98538537679, - -189622.41040500058 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96494.99482485962 - ], - "y": [ - 229215.98538537679, - -189883.7142335665 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96639.0949732792 - ], - "y": [ - 229215.98538537679, - -189350.129160721 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96550.01108530164 - ], - "y": [ - 229215.98538537679, - -189397.67019498325 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96575.31613115326 - ], - "y": [ - 229215.98538537679, - -189374.36013442566 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96810.72873758491 - ], - "y": [ - 229215.98538537679, - -189312.9879746982 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96896.94014138209 - ], - "y": [ - 229215.98538537679, - -189387.4220162738 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96693.47055992209 - ], - "y": [ - 229215.98538537679, - -189456.31330892164 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96951.68482481911 - ], - "y": [ - 229215.98538537679, - -188757.97295287042 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97105.86446933058 - ], - "y": [ - 229215.98538537679, - -189874.7197630853 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96683.343489294 - ], - "y": [ - 229215.98538537679, - -188938.53921387976 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96700.50651493037 - ], - "y": [ - 229215.98538537679, - -189174.94373042753 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97613.5093531771 - ], - "y": [ - 229215.98538537679, - -188249.57030670525 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97632.10124528216 - ], - "y": [ - 229215.98538537679, - -188260.60515116138 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96831.69055597908 - ], - "y": [ - 229215.98538537679, - -188336.6986691293 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96828.99548296859 - ], - "y": [ - 229215.98538537679, - -187680.87764689644 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97813.18960016311 - ], - "y": [ - 229215.98538537679, - -187251.2510294042 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97805.18437428074 - ], - "y": [ - 229215.98538537679, - -187262.66438443118 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96640.17245945708 - ], - "y": [ - 229215.98538537679, - -189570.2833336003 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96731.09231285357 - ], - "y": [ - 229215.98538537679, - -189763.14706397685 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96542.83564645311 - ], - "y": [ - 229215.98538537679, - -189566.8655000776 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 95421.91735289371 - ], - "y": [ - 229215.98538537679, - -189779.29013892455 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96934.21301456064 - ], - "y": [ - 229215.98538537679, - -189298.26902639432 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96053.80630400538 - ], - "y": [ - 229215.98538537679, - -189143.0578281467 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96579.76590487406 - ], - "y": [ - 229215.98538537679, - -189430.35956357492 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96621.95641731111 - ], - "y": [ - 229215.98538537679, - -189539.6584614828 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96695.15836873942 - ], - "y": [ - 229215.98538537679, - -189404.9591139528 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96467.60417095249 - ], - "y": [ - 229215.98538537679, - -189661.95294361803 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97510.01962082756 - ], - "y": [ - 229215.98538537679, - -188758.00763305573 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96836.22412942452 - ], - "y": [ - 229215.98538537679, - -189602.10511057184 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96686.3684942306 - ], - "y": [ - 229215.98538537679, - -189832.73284060266 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97774.42866113664 - ], - "y": [ - 229215.98538537679, - -187986.2925046758 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96427.1842433544 - ], - "y": [ - 229215.98538537679, - -189638.5204736213 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96602.9455448259 - ], - "y": [ - 229215.98538537679, - -189307.41763655184 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 98341.41820230329 - ], - "y": [ - 229215.98538537679, - -187325.8474831565 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96759.39098466327 - ], - "y": [ - 229215.98538537679, - -188953.73820219914 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96654.14513994215 - ], - "y": [ - 229215.98538537679, - -189477.09111556568 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97094.20573290615 - ], - "y": [ - 229215.98538537679, - -188608.7669540309 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96534.89129183585 - ], - "y": [ - 229215.98538537679, - -189663.5967077643 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97845.68054608024 - ], - "y": [ - 229215.98538537679, - -187902.1950427761 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96714.32338601344 - ], - "y": [ - 229215.98538537679, - -189204.27918840424 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97354.04987112107 - ], - "y": [ - 229215.98538537679, - -188868.86823729656 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 98362.46614454236 - ], - "y": [ - 229215.98538537679, - -187963.18284034188 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96555.05094020838 - ], - "y": [ - 229215.98538537679, - -189589.51983073587 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96417.4243506057 - ], - "y": [ - 229215.98538537679, - -190125.8549583156 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96624.55409529047 - ], - "y": [ - 229215.98538537679, - -189597.31022038838 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96913.27672047008 - ], - "y": [ - 229215.98538537679, - -189659.42206924004 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96613.64565810803 - ], - "y": [ - 229215.98538537679, - -187522.90987740675 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96882.63562796098 - ], - "y": [ - 229215.98538537679, - -189314.3318274669 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97785.31723795002 - ], - "y": [ - 229215.98538537679, - -189123.09886013696 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96921.65832155356 - ], - "y": [ - 229215.98538537679, - -189438.33583540513 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96574.44776110545 - ], - "y": [ - 229215.98538537679, - -189190.64141113937 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96826.02448370877 - ], - "y": [ - 229215.98538537679, - -189312.96716657415 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96722.32663398494 - ], - "y": [ - 229215.98538537679, - -189506.4879067685 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96695.61808666041 - ], - "y": [ - 229215.98538537679, - -189996.88173583825 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97113.91196565128 - ], - "y": [ - 229215.98538537679, - -189506.9208114558 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96976.68282643448 - ], - "y": [ - 229215.98538537679, - -188577.0164252054 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96054.400615084 - ], - "y": [ - 229215.98538537679, - -189355.94588633478 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96278.15788483768 - ], - "y": [ - 229215.98538537679, - -189514.97306091062 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96861.56370770434 - ], - "y": [ - 229215.98538537679, - -189411.36286505614 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97796.07080948977 - ], - "y": [ - 229215.98538537679, - -188802.23079391493 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96611.246762707 - ], - "y": [ - 229215.98538537679, - -189518.63063531838 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96530.79253993953 - ], - "y": [ - 229215.98538537679, - -189595.0859664761 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 95901.82083235442 - ], - "y": [ - 229215.98538537679, - -188849.11552920155 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96962.41375364321 - ], - "y": [ - 229215.98538537679, - -188741.18667656466 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96900.49410984787 - ], - "y": [ - 229215.98538537679, - -189712.08090202446 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96440.3614255588 - ], - "y": [ - 229215.98538537679, - -190133.98681796715 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96738.66732022622 - ], - "y": [ - 229215.98538537679, - -189423.36465952417 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97200.14076518768 - ], - "y": [ - 229215.98538537679, - -190181.23310247317 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96926.75612600744 - ], - "y": [ - 229215.98538537679, - -188309.38290130332 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96532.6513290047 - ], - "y": [ - 229215.98538537679, - -189387.78435538372 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96651.84522301337 - ], - "y": [ - 229215.98538537679, - -189261.45093796574 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97627.58936686792 - ], - "y": [ - 229215.98538537679, - -188229.01322122104 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97563.98838997139 - ], - "y": [ - 229215.98538537679, - -188225.00588929723 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96560.8916778657 - ], - "y": [ - 229215.98538537679, - -187746.04762354173 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96729.69482051903 - ], - "y": [ - 229215.98538537679, - -189649.05343454154 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 96715.7628390581 - ], - "y": [ - 229215.98538537679, - -189292.69033396387 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -662208.9345963952, - 97379.01812972916 - ], - "y": [ - 229215.98538537679, - -190439.80952772064 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 113379.54184456533, - 95933.78130606312 - ], - "y": [ - -118967.65056689085, - -187405.71770728158 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 113379.54184456533, - 95969.93628717288 - ], - "y": [ - -118967.65056689085, - -187389.66797592156 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 718826.5521028038, - 94205.42306946588 - ], - "y": [ - 710262.5151851682, - -188854.15596558747 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 670560.6168920255, - 94485.92993817783 - ], - "y": [ - -838054.4841425869, - -190167.4618217757 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 670560.6168920255, - 95302.46268343864 - ], - "y": [ - -838054.4841425869, - -189777.63112573957 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 381475.48544957186, - 95505.88427993505 - ], - "y": [ - -896069.0167068348, - -188400.0367418278 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -964533.0899372523, - 95182.96656441354 - ], - "y": [ - 980573.850637422, - -189502.7870754483 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -964533.0899372523, - 95083.07696160226 - ], - "y": [ - 980573.850637422, - -189631.87542889913 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -964533.0899372523, - 95260.63775038713 - ], - "y": [ - 980573.850637422, - -189379.6564968773 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -573964.3844729715, - 95343.04710668822 - ], - "y": [ - -951730.5169718482, - -189825.04437502267 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -573964.3844729715, - 95077.9137547502 - ], - "y": [ - -951730.5169718482, - -189697.85110122422 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -573964.3844729715, - 95200.52568374142 - ], - "y": [ - -951730.5169718482, - -189730.2105260354 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -641961.420259417, - 97358.46679886585 - ], - "y": [ - -540573.4524308392, - -188482.5310615353 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -641961.420259417, - 97532.46968364714 - ], - "y": [ - -540573.4524308392, - -187821.3765527352 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 940801.7662788922, - 95457.42674465815 - ], - "y": [ - 362491.91229326796, - -188642.19864755738 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 940801.7662788922, - 98692.43143064567 - ], - "y": [ - 362491.91229326796, - -186804.33417873908 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 444032.79606093984, - 97571.51683328462 - ], - "y": [ - 739083.9627370343, - -189138.6052683931 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 444032.79606093984, - 97321.50714071444 - ], - "y": [ - 739083.9627370343, - -188954.66274327494 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 444032.79606093984, - 97304.17187437204 - ], - "y": [ - 739083.9627370343, - -188851.56730320977 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 444032.79606093984, - 97558.53189592143 - ], - "y": [ - 739083.9627370343, - -188563.3727238801 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 444032.79606093984, - 97529.59178857305 - ], - "y": [ - 739083.9627370343, - -189068.82122443494 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 444032.79606093984, - 97573.23040616274 - ], - "y": [ - 739083.9627370343, - -189186.61889509932 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 444032.79606093984, - 97317.9470175812 - ], - "y": [ - 739083.9627370343, - -189015.4951605007 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 444032.79606093984, - 97722.41636121254 - ], - "y": [ - 739083.9627370343, - -189212.86844851545 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 444032.79606093984, - 96711.97005754894 - ], - "y": [ - 739083.9627370343, - -188462.65509945378 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 444032.79606093984, - 96888.97576383248 - ], - "y": [ - 739083.9627370343, - -188204.3724056574 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 444032.79606093984, - 97182.40630309808 - ], - "y": [ - 739083.9627370343, - -189199.17908190106 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 444032.79606093984, - 98202.27708314388 - ], - "y": [ - 739083.9627370343, - -188255.37224721114 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -484224.4518047343, - 97358.46679886585 - ], - "y": [ - -875175.6763282787, - -188482.5310615353 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -484224.4518047343, - 97532.46968364714 - ], - "y": [ - -875175.6763282787, - -187821.3765527352 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -149110.68317453036, - 97358.46679886585 - ], - "y": [ - 761101.2880335036, - -188482.5310615353 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -149110.68317453036, - 97532.46968364714 - ], - "y": [ - 761101.2880335036, - -187821.3765527352 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 975774.1818193704, - 97820.56830441093 - ], - "y": [ - -542593.2626462264, - -188039.00270855022 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 975774.1818193704, - 98259.11178546748 - ], - "y": [ - -542593.2626462264, - -188214.46720173355 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 975774.1818193704, - 97235.2488696914 - ], - "y": [ - -542593.2626462264, - -188543.17964185297 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 975774.1818193704, - 97297.7274926661 - ], - "y": [ - -542593.2626462264, - -188551.65872850412 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 975774.1818193704, - 97293.5203062695 - ], - "y": [ - -542593.2626462264, - -187924.76781139948 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 975774.1818193704, - 98708.3190257109 - ], - "y": [ - -542593.2626462264, - -188265.91476313816 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 975774.1818193704, - 97802.97859779913 - ], - "y": [ - -542593.2626462264, - -188620.13710179558 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 975774.1818193704, - 97828.5668503006 - ], - "y": [ - -542593.2626462264, - -188797.5960817814 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 975774.1818193704, - 97770.18528248275 - ], - "y": [ - -542593.2626462264, - -188675.01145983627 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 975774.1818193704, - 97622.16011647054 - ], - "y": [ - -542593.2626462264, - -189585.23416607562 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 975774.1818193704, - 96887.45716809586 - ], - "y": [ - -542593.2626462264, - -189073.2131275974 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 975774.1818193704, - 97090.03432996322 - ], - "y": [ - -542593.2626462264, - -187778.6034982877 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 975774.1818193704, - 97697.42848707616 - ], - "y": [ - -542593.2626462264, - -188715.31186791277 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 975774.1818193704, - 97701.66892815946 - ], - "y": [ - -542593.2626462264, - -188783.67793234484 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 975774.1818193704, - 97585.79298176516 - ], - "y": [ - -542593.2626462264, - -188686.17124409127 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 975774.1818193704, - 96404.13831153684 - ], - "y": [ - -542593.2626462264, - -188307.55943122407 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 975774.1818193704, - 97486.26616142577 - ], - "y": [ - -542593.2626462264, - -188717.35827303602 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 975774.1818193704, - 96505.5934631506 - ], - "y": [ - -542593.2626462264, - -189175.1779532503 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 975774.1818193704, - 97579.4448614383 - ], - "y": [ - -542593.2626462264, - -188752.45189673398 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 975774.1818193704, - 97691.63703682291 - ], - "y": [ - -542593.2626462264, - -188617.7522841282 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 900636.500591634, - 96515.60149309262 - ], - "y": [ - 653538.7381658673, - -187330.48424043634 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 725677.6911089884, - 96526.16766938524 - ], - "y": [ - -41310.81616053112, - -190049.08294096706 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 725677.6911089884, - 96542.88730412883 - ], - "y": [ - -41310.81616053112, - -190134.12788602014 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 328217.0229704833, - 95826.70973681552 - ], - "y": [ - -276889.34631344833, - -189436.51072175297 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 328217.0229704833, - 95195.45569059276 - ], - "y": [ - -276889.34631344833, - -188825.24595688403 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 328217.0229704833, - 95229.32767677493 - ], - "y": [ - -276889.34631344833, - -188748.41080724396 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 328217.0229704833, - 94971.08522590312 - ], - "y": [ - -276889.34631344833, - -188632.32322923772 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 328217.0229704833, - 95259.91296974945 - ], - "y": [ - -276889.34631344833, - -188755.87124533966 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 328217.0229704833, - 95151.27865865134 - ], - "y": [ - -276889.34631344833, - -188739.89476481508 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 328217.0229704833, - 95457.42579193789 - ], - "y": [ - -276889.34631344833, - -188763.09490078397 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 431602.0630810575, - 96817.66055571858 - ], - "y": [ - -789429.4666513097, - -187899.4158525461 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 431602.0630810575, - 96806.8541605258 - ], - "y": [ - -789429.4666513097, - -188290.08218015765 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 431602.0630810575, - 96791.18101461837 - ], - "y": [ - -789429.4666513097, - -188349.47236547497 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -96395.66533854649, - 96625.91253011048 - ], - "y": [ - -969264.7181389591, - -187046.38487493325 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -96395.66533854649, - 96516.24082699847 - ], - "y": [ - -969264.7181389591, - -187622.41354491585 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -230307.1527079439, - 96650.26887770933 - ], - "y": [ - -199631.75714235005, - -187967.45205088542 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -230307.1527079439, - 95953.43758977612 - ], - "y": [ - -199631.75714235005, - -188236.06352852797 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -230307.1527079439, - 96414.9173008834 - ], - "y": [ - -199631.75714235005, - -187916.56938459937 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -866085.6054143156, - 96657.44331032071 - ], - "y": [ - -899703.0741891128, - -188277.7110845498 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -866085.6054143156, - 96774.09206013042 - ], - "y": [ - -899703.0741891128, - -187856.57507774787 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 728757.2302041758, - 98370.08752364217 - ], - "y": [ - 11381.849727401639, - -186309.0004789828 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 728757.2302041758, - 98185.39228188255 - ], - "y": [ - 11381.849727401639, - -186448.0761262461 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 728757.2302041758, - 97572.7954448912 - ], - "y": [ - 11381.849727401639, - -187689.0483805537 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 185469.61189416988, - 96888.97576383248 - ], - "y": [ - -597056.648969767, - -188204.3724056574 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 185469.61189416988, - 96866.57408532791 - ], - "y": [ - -597056.648969767, - -187372.14693328072 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 185469.61189416988, - 97930.86589331932 - ], - "y": [ - -597056.648969767, - -186713.31626898306 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 185469.61189416988, - 96177.19856058512 - ], - "y": [ - -597056.648969767, - -188161.6300058421 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 185469.61189416988, - 97176.04373508078 - ], - "y": [ - -597056.648969767, - -187294.3067848806 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 185469.61189416988, - 97153.25597882869 - ], - "y": [ - -597056.648969767, - -187587.45047793945 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 506079.2433519592, - 95574.39534418302 - ], - "y": [ - -147378.84394593493, - -189738.0525135467 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 506079.2433519592, - 95838.54674259001 - ], - "y": [ - -147378.84394593493, - -189873.55077472897 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 506079.2433519592, - 96532.8341303869 - ], - "y": [ - -147378.84394593493, - -187521.8824872184 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 186411.39583669396, - 98997.74271020413 - ], - "y": [ - -998483.13613964, - -188348.79948910305 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 186411.39583669396, - 99362.59751327203 - ], - "y": [ - -998483.13613964, - -189862.6413098155 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 186411.39583669396, - 99276.9196152002 - ], - "y": [ - -998483.13613964, - -189857.14185344288 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 186411.39583669396, - 99226.83402346286 - ], - "y": [ - -998483.13613964, - -189824.66753653612 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 186411.39583669396, - 99522.14887276676 - ], - "y": [ - -998483.13613964, - -189879.5254089133 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 661913.0057686664, - 97465.09518672612 - ], - "y": [ - -634279.3874322197, - -190932.80865181403 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -134443.11900166151, - 96648.9363700922 - ], - "y": [ - -521723.8195950371, - -189214.1812788162 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 6274.1707185636205, - 97362.29677323089 - ], - "y": [ - 833605.513880483, - -192162.3269836861 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 6274.1707185636205, - 97352.27827718583 - ], - "y": [ - 833605.513880483, - -192524.44290793836 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 6274.1707185636205, - 97314.13790026988 - ], - "y": [ - 833605.513880483, - -192115.1138136991 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 505074.68310500745, - 95480.79812433262 - ], - "y": [ - 353085.1610704648, - -188972.92135698648 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -640937.7577869985, - 97358.46679886585 - ], - "y": [ - -183570.00335379926, - -188482.5310615353 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -640937.7577869985, - 97532.46968364714 - ], - "y": [ - -183570.00335379926, - -187821.3765527352 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 348115.135016678, - 98668.36393861687 - ], - "y": [ - -107725.31857915646, - -188186.38974025362 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 348115.135016678, - 97272.16196531034 - ], - "y": [ - -107725.31857915646, - -187899.237151973 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 348115.135016678, - 97838.4175081634 - ], - "y": [ - -107725.31857915646, - -189043.94703463372 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 348115.135016678, - 97754.15865943547 - ], - "y": [ - -107725.31857915646, - -188886.17592031375 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 348115.135016678, - 97321.50714071444 - ], - "y": [ - -107725.31857915646, - -188954.66274327494 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 348115.135016678, - 97287.61876639193 - ], - "y": [ - -107725.31857915646, - -188922.00741313785 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 348115.135016678, - 97387.10298484987 - ], - "y": [ - -107725.31857915646, - -189232.21457982747 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 348115.135016678, - 97354.04987112107 - ], - "y": [ - -107725.31857915646, - -188868.86823729656 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 752993.026601618, - 96987.80225378742 - ], - "y": [ - 899733.8398479873, - -189105.2816803546 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 752993.026601618, - 97218.18359466371 - ], - "y": [ - 899733.8398479873, - -189006.25883621728 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 752993.026601618, - 98517.20808727229 - ], - "y": [ - 899733.8398479873, - -188180.73220770183 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 752993.026601618, - 96947.40675273385 - ], - "y": [ - 899733.8398479873, - -188107.46199151454 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -798864.8616855099, - 96947.40675273385 - ], - "y": [ - -582787.3823669469, - -188107.46199151454 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -798864.8616855099, - 96987.80225378742 - ], - "y": [ - -582787.3823669469, - -189105.2816803546 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -798864.8616855099, - 96791.18101461837 - ], - "y": [ - -582787.3823669469, - -188349.47236547497 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -862762.1182790956, - 96888.97576383248 - ], - "y": [ - -494752.4029342287, - -188204.3724056574 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -862762.1182790956, - 97017.6751012583 - ], - "y": [ - -494752.4029342287, - -187820.75210574528 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -862762.1182790956, - 96866.57408532791 - ], - "y": [ - -494752.4029342287, - -187372.14693328072 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -862762.1182790956, - 97930.86589331932 - ], - "y": [ - -494752.4029342287, - -186713.31626898306 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -862762.1182790956, - 96177.19856058512 - ], - "y": [ - -494752.4029342287, - -188161.6300058421 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -862762.1182790956, - 97176.04373508078 - ], - "y": [ - -494752.4029342287, - -187294.3067848806 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -862762.1182790956, - 97153.25597882869 - ], - "y": [ - -494752.4029342287, - -187587.45047793945 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -356820.70111571206, - 97715.03542524244 - ], - "y": [ - 951061.619790907, - -187459.03461725367 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -356820.70111571206, - 97428.2088550206 - ], - "y": [ - 951061.619790907, - -188430.993490856 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 177560.89683188248, - 96010.91751038717 - ], - "y": [ - 892548.3513514869, - -188227.91479363065 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 177560.89683188248, - 96392.03219267243 - ], - "y": [ - 892548.3513514869, - -188270.16098356986 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 177560.89683188248, - 97045.79560002222 - ], - "y": [ - 892548.3513514869, - -187553.03431553903 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 177560.89683188248, - 96039.53114090665 - ], - "y": [ - 892548.3513514869, - -187862.98846391006 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 177560.89683188248, - 96558.40139577903 - ], - "y": [ - 892548.3513514869, - -187369.8494239768 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 177560.89683188248, - 96072.651127653 - ], - "y": [ - 892548.3513514869, - -188325.90735821644 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -697806.9091883699, - 97717.63943455054 - ], - "y": [ - 943135.0387208643, - -187734.42575994402 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 228554.08877429407, - 96392.03219267243 - ], - "y": [ - -392684.0079784355, - -188270.16098356986 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 228554.08877429407, - 97512.25460842131 - ], - "y": [ - -392684.0079784355, - -187621.21937398304 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 228554.08877429407, - 97068.03081922044 - ], - "y": [ - -392684.0079784355, - -187659.66124892057 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 228554.08877429407, - 97443.46951981564 - ], - "y": [ - -392684.0079784355, - -187626.4788257705 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 228554.08877429407, - 97329.89355877684 - ], - "y": [ - -392684.0079784355, - -188263.86255790308 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 228554.08877429407, - 97519.79955646732 - ], - "y": [ - -392684.0079784355, - -187368.52340470123 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -104591.68288544696, - 97844.94572301708 - ], - "y": [ - 277405.723798744, - -187348.7681817943 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -104591.68288544696, - 97678.1464428742 - ], - "y": [ - 277405.723798744, - -187682.18281394336 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 596758.7520509677, - 98526.54572504741 - ], - "y": [ - 852722.9520124804, - -186584.2836090355 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 684264.4055752846, - 98430.07797759793 - ], - "y": [ - -9577.618462380588, - -188630.62199919912 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 684264.4055752846, - 97500.16873207534 - ], - "y": [ - -9577.618462380588, - -189687.1717524016 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 684264.4055752846, - 96981.97321773143 - ], - "y": [ - -9577.618462380588, - -189392.44618215397 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 38860.38466092723, - 94617.5959694371 - ], - "y": [ - -196380.71636330645, - -187036.08464524065 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -293966.9337601134, - 95301.3607194778 - ], - "y": [ - -843456.7971308902, - -185139.07792481993 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -293966.9337601134, - 95227.77092314835 - ], - "y": [ - -843456.7971308902, - -185139.72357748792 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -293966.9337601134, - 95402.52158220478 - ], - "y": [ - -843456.7971308902, - -185172.0562297005 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -293966.9337601134, - 95276.97798041081 - ], - "y": [ - -843456.7971308902, - -185223.1558109515 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -293966.9337601134, - 94853.13681242797 - ], - "y": [ - -843456.7971308902, - -185302.5690199798 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 205575.50894640197, - 96400.51278286969 - ], - "y": [ - 984973.4491142076, - -187859.86995225446 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 205575.50894640197, - 96480.30494028228 - ], - "y": [ - 984973.4491142076, - -187695.57614406702 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 205575.50894640197, - 96019.73206058989 - ], - "y": [ - 984973.4491142076, - -187760.736691232 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -238955.24483877773, - 95949.12131101474 - ], - "y": [ - -385401.5701649929, - -187476.2628433151 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -238955.24483877773, - 95997.16066474574 - ], - "y": [ - -385401.5701649929, - -187427.76982279553 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -238955.24483877773, - 95427.65531943327 - ], - "y": [ - -385401.5701649929, - -187674.51102416526 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -238955.24483877773, - 96645.63733017922 - ], - "y": [ - -385401.5701649929, - -188223.1502255291 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -238955.24483877773, - 96622.44802724649 - ], - "y": [ - -385401.5701649929, - -188223.8025959115 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -238955.24483877773, - 96637.20944908995 - ], - "y": [ - -385401.5701649929, - -188238.87170758605 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -238955.24483877773, - 96402.067408069 - ], - "y": [ - -385401.5701649929, - -187003.89280649187 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -887559.5147387895, - 96546.81074094832 - ], - "y": [ - 168756.03714719633, - -186542.96075744857 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -887559.5147387895, - 96396.69753430235 - ], - "y": [ - 168756.03714719633, - -186761.60951942398 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -887559.5147387895, - 96935.23882458691 - ], - "y": [ - 168756.03714719633, - -187272.80604379578 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -887559.5147387895, - 96582.14749337402 - ], - "y": [ - 168756.03714719633, - -187924.91100981052 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -810392.7287200175, - 96220.7703218342 - ], - "y": [ - -941058.7217523911, - -184843.25042613945 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -384269.55450074596, - 96400.51278286969 - ], - "y": [ - 173992.82715078935, - -187859.86995225446 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -384269.55450074596, - 96480.30494028228 - ], - "y": [ - 173992.82715078935, - -187695.57614406702 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -384269.55450074596, - 96019.73206058989 - ], - "y": [ - 173992.82715078935, - -187760.736691232 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 825928.0205778476, - 96871.32320011256 - ], - "y": [ - -928462.3937940064, - -186903.6585095412 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -630743.5726622504, - 96963.41552878823 - ], - "y": [ - -650586.8280954399, - -187363.62555888496 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 602845.2465308853, - 96210.59439600962 - ], - "y": [ - -316288.188440164, - -185290.586235629 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 602845.2465308853, - 96315.24613181091 - ], - "y": [ - -316288.188440164, - -185165.9576632683 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 96028.2888002032 - ], - "y": [ - -138.98425530056713, - -187636.6401471091 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 95489.22963590887 - ], - "y": [ - -138.98425530056713, - -187838.56400906073 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 95828.46924619444 - ], - "y": [ - -138.98425530056713, - -187819.29574656484 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 95482.44304451962 - ], - "y": [ - -138.98425530056713, - -188059.9314632963 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 95066.06523441382 - ], - "y": [ - -138.98425530056713, - -188290.363652496 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 95163.75908553116 - ], - "y": [ - -138.98425530056713, - -188413.92210597807 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 95488.52095752831 - ], - "y": [ - -138.98425530056713, - -187943.2258883462 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 96006.77287976355 - ], - "y": [ - -138.98425530056713, - -188679.23184501874 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 95443.67008227661 - ], - "y": [ - -138.98425530056713, - -188423.99184216498 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 95274.60828290615 - ], - "y": [ - -138.98425530056713, - -188187.00891794523 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 95505.50501741502 - ], - "y": [ - -138.98425530056713, - -188099.9720945511 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 95274.55463163379 - ], - "y": [ - -138.98425530056713, - -188644.9068178371 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 95360.36419013362 - ], - "y": [ - -138.98425530056713, - -188384.46387554856 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 95292.52782742439 - ], - "y": [ - -138.98425530056713, - -188534.02363205954 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 95472.00274613315 - ], - "y": [ - -138.98425530056713, - -188477.95331527485 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 95308.98963794683 - ], - "y": [ - -138.98425530056713, - -188590.4523846817 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 95397.10356995185 - ], - "y": [ - -138.98425530056713, - -187941.9237365848 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 95504.42605081353 - ], - "y": [ - -138.98425530056713, - -188412.73187816486 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 95949.84954429526 - ], - "y": [ - -138.98425530056713, - -188208.82409906888 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 95527.20667464145 - ], - "y": [ - -138.98425530056713, - -188567.58941515462 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 95213.0622434433 - ], - "y": [ - -138.98425530056713, - -188396.23465801778 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 95306.71022996533 - ], - "y": [ - -138.98425530056713, - -188159.4341766519 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 95320.26347648272 - ], - "y": [ - -138.98425530056713, - -188530.70142542297 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 95510.02889292239 - ], - "y": [ - -138.98425530056713, - -187463.4585977219 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -223735.95682974058, - 96072.651127653 - ], - "y": [ - -138.98425530056713, - -188325.90735821644 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -641913.5259541672, - 96156.074298552 - ], - "y": [ - -149172.65446396644, - -186479.6446350026 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -641913.5259541672, - 96344.83157727902 - ], - "y": [ - -149172.65446396644, - -187298.47957976593 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -641913.5259541672, - 96192.16190696902 - ], - "y": [ - -149172.65446396644, - -186539.61527157956 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 860516.1611720189, - 96534.04849627241 - ], - "y": [ - -972626.8602657677, - -186632.56137489137 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 857326.5405612354, - 95914.16367038043 - ], - "y": [ - -488546.23140684003, - -186056.69045446397 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 857326.5405612354, - 95991.06452640316 - ], - "y": [ - -488546.23140684003, - -185951.46023938467 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 857326.5405612354, - 95745.4694082097 - ], - "y": [ - -488546.23140684003, - -186802.7182162248 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 857326.5405612354, - 96072.76062132008 - ], - "y": [ - -488546.23140684003, - -185550.27627308652 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -606908.4936988576, - 96296.57518040262 - ], - "y": [ - 718066.3755134307, - -187045.1102206911 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -606908.4936988576, - 96237.23840449286 - ], - "y": [ - 718066.3755134307, - -187073.15041134102 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -606908.4936988576, - 96100.16964314734 - ], - "y": [ - 718066.3755134307, - -187254.26535223567 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -606908.4936988576, - 96577.18594978366 - ], - "y": [ - 718066.3755134307, - -187989.30944414838 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -606908.4936988576, - 96564.47351993735 - ], - "y": [ - 718066.3755134307, - -188000.4487104779 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 327038.5420484947, - 96828.99548296859 - ], - "y": [ - -329842.4340128823, - -187680.87764689644 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 900407.8115062198, - 96768.15156923435 - ], - "y": [ - 859589.5780032114, - -187906.78280195483 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 900407.8115062198, - 96405.88036665124 - ], - "y": [ - 859589.5780032114, - -186681.1635380391 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 900407.8115062198, - 96370.19303826737 - ], - "y": [ - 859589.5780032114, - -186905.37079495806 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 570248.7195378274, - 97409.25368271414 - ], - "y": [ - 900770.1960220302, - -187857.75124697632 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 570248.7195378274, - 97234.04346137235 - ], - "y": [ - 900770.1960220302, - -187760.40303329699 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 570248.7195378274, - 97545.38850460328 - ], - "y": [ - 900770.1960220302, - -187920.62374587829 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 570248.7195378274, - 97434.01515339047 - ], - "y": [ - 900770.1960220302, - -187858.44732430877 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -196417.42374274827, - 96249.72659060232 - ], - "y": [ - 325060.2886201035, - -187659.66132080328 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -196417.42374274827, - 97705.70304050583 - ], - "y": [ - 325060.2886201035, - -187484.91206357404 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -196417.42374274827, - 96625.91253011048 - ], - "y": [ - 325060.2886201035, - -187046.38487493325 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -196417.42374274827, - 96516.24082699847 - ], - "y": [ - 325060.2886201035, - -187622.41354491585 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -196417.42374274827, - 96647.32091240633 - ], - "y": [ - 325060.2886201035, - -186546.9811101811 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -196417.42374274827, - 96573.99731256816 - ], - "y": [ - 325060.2886201035, - -187389.5387646811 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -196417.42374274827, - 96536.36409486223 - ], - "y": [ - 325060.2886201035, - -186874.71930400067 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 302746.5200068291, - 94888.48155674861 - ], - "y": [ - 848396.560279614, - -185839.00663893652 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 302746.5200068291, - 95501.8125864358 - ], - "y": [ - 848396.560279614, - -185362.02426270678 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -185247.41886056017, - 96398.60994140033 - ], - "y": [ - 888292.8972825181, - -186743.67631044146 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -185247.41886056017, - 97087.09725827706 - ], - "y": [ - 888292.8972825181, - -186943.91875814958 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 661833.7999114355, - 95858.67269394762 - ], - "y": [ - 621808.7016435225, - -185611.65728113687 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 342718.2897794898, - 94889.58026607656 - ], - "y": [ - -427243.4059970509, - -189084.9074632962 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 342718.2897794898, - 95744.0722676581 - ], - "y": [ - -427243.4059970509, - -187484.60913141377 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 342718.2897794898, - 96100.16964314734 - ], - "y": [ - -427243.4059970509, - -187254.26535223567 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 342718.2897794898, - 96577.18594978366 - ], - "y": [ - -427243.4059970509, - -187989.30944414838 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 342718.2897794898, - 96564.47351993735 - ], - "y": [ - -427243.4059970509, - -188000.4487104779 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 21877.881505122376, - 96817.66055571858 - ], - "y": [ - 681698.0658289792, - -187899.4158525461 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 21877.881505122376, - 96539.2876843912 - ], - "y": [ - 681698.0658289792, - -186793.02846859442 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 21877.881505122376, - 96488.71126504915 - ], - "y": [ - 681698.0658289792, - -186643.42136934042 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 897967.5960706323, - 96574.07459048775 - ], - "y": [ - -544882.6051615201, - -187063.1911515589 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 426984.0513968357, - 94476.68554039652 - ], - "y": [ - -238668.58589913577, - -188748.28453514946 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 426984.0513968357, - 94952.05763640381 - ], - "y": [ - -238668.58589913577, - -188439.97049711825 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 426984.0513968357, - 94960.14806309502 - ], - "y": [ - -238668.58589913577, - -187368.1489177038 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -910074.4476692642, - 95868.93237525053 - ], - "y": [ - 168749.41483386618, - -185263.2297970409 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 290487.3206044216, - 95682.31879557903 - ], - "y": [ - -89607.81465368229, - -187430.4310402768 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 290487.3206044216, - 96011.6169628847 - ], - "y": [ - -89607.81465368229, - -187168.63791618857 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 290487.3206044216, - 96107.71912624051 - ], - "y": [ - -89607.81465368229, - -187036.11661907207 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -648161.226738482, - 96229.66105626737 - ], - "y": [ - -702869.8868079968, - -187792.9688123335 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -648161.226738482, - 96357.58676902352 - ], - "y": [ - -702869.8868079968, - -187566.37581145845 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -648161.226738482, - 98178.17510730785 - ], - "y": [ - -702869.8868079968, - -187942.22047264426 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -648161.226738482, - 96273.17959649833 - ], - "y": [ - -702869.8868079968, - -188476.1018531056 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -96665.56418908923, - 97358.46679886585 - ], - "y": [ - 800160.8210043467, - -188482.5310615353 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -96665.56418908923, - 97532.46968364714 - ], - "y": [ - 800160.8210043467, - -187821.3765527352 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -597264.9068567748, - 96072.76062132008 - ], - "y": [ - 622638.0385672044, - -185550.27627308652 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -837885.1665043108, - 95844.61270594754 - ], - "y": [ - -929952.2855720208, - -185482.56088321618 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -837885.1665043108, - 95987.03936165375 - ], - "y": [ - -929952.2855720208, - -185326.3459551552 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 882596.9345251996, - 96947.40675273385 - ], - "y": [ - -800941.8133173318, - -188107.46199151454 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 882596.9345251996, - 96896.58750176255 - ], - "y": [ - -800941.8133173318, - -188167.02460559944 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 882596.9345251996, - 97154.72425616732 - ], - "y": [ - -800941.8133173318, - -188123.19483452023 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 381868.0890948134, - 94066.51607848209 - ], - "y": [ - -845799.5709180704, - -185673.3450969795 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 381868.0890948134, - 93666.16904241925 - ], - "y": [ - -845799.5709180704, - -186215.06335089865 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 381868.0890948134, - 93682.44991506475 - ], - "y": [ - -845799.5709180704, - -186233.90314590227 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 381868.0890948134, - 93976.18462674941 - ], - "y": [ - -845799.5709180704, - -185642.18789406322 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 978774.8671757412, - 97272.16196531034 - ], - "y": [ - 902372.4385321912, - -187899.237151973 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 978774.8671757412, - 96656.51605951994 - ], - "y": [ - 902372.4385321912, - -188126.8200295349 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 978774.8671757412, - 96358.25249911078 - ], - "y": [ - 902372.4385321912, - -186143.89671308498 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 978774.8671757412, - 96321.80373689976 - ], - "y": [ - 902372.4385321912, - -186797.5306394901 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 978774.8671757412, - 96114.11946368766 - ], - "y": [ - 902372.4385321912, - -186312.18585102723 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 978774.8671757412, - 95768.86401324993 - ], - "y": [ - 902372.4385321912, - -185867.34727359438 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 978774.8671757412, - 96245.67690227392 - ], - "y": [ - 902372.4385321912, - -186375.3612237879 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 978774.8671757412, - 97449.2228277016 - ], - "y": [ - 902372.4385321912, - -187561.3991996525 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 978774.8671757412, - 96791.18101461837 - ], - "y": [ - 902372.4385321912, - -188349.47236547497 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -194279.80743491635, - 96763.64967872995 - ], - "y": [ - 479812.5750510687, - -188336.20643323814 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -194279.80743491635, - 96400.51278286969 - ], - "y": [ - 479812.5750510687, - -187859.86995225446 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -194279.80743491635, - 96480.30494028228 - ], - "y": [ - 479812.5750510687, - -187695.57614406702 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -194279.80743491635, - 96019.73206058989 - ], - "y": [ - 479812.5750510687, - -187760.736691232 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -520404.53542439133, - 96919.80862750238 - ], - "y": [ - 891543.560257879, - -187194.3312948634 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 839521.0558089447, - 95714.35022151601 - ], - "y": [ - 309357.5824183621, - -185589.1946310685 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 288080.60505450726, - 96636.93741201112 - ], - "y": [ - 875070.4434268685, - -186662.39995437322 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -215057.2188755595, - 96668.40960032 - ], - "y": [ - -152933.8315019162, - -186235.288447879 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -215057.2188755595, - 96517.34543879435 - ], - "y": [ - -152933.8315019162, - -186405.03105329376 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -215057.2188755595, - 97008.15894636505 - ], - "y": [ - -152933.8315019162, - -186892.55000415185 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -215057.2188755595, - 96807.74423569046 - ], - "y": [ - -152933.8315019162, - -187294.12286925653 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -102229.42822348347, - 95387.72814612064 - ], - "y": [ - 94206.78527900539, - -186270.0295100747 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -102229.42822348347, - 95418.41077655359 - ], - "y": [ - 94206.78527900539, - -186078.48063323216 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -102229.42822348347, - 95472.67938384521 - ], - "y": [ - 94206.78527900539, - -186075.9211697261 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 376753.80948773184, - 98114.52152816013 - ], - "y": [ - 349569.01094111404, - -185912.47186195152 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 376753.80948773184, - 98111.97280969669 - ], - "y": [ - 349569.01094111404, - -185961.2957648515 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 376753.80948773184, - 97753.21078683695 - ], - "y": [ - 349569.01094111404, - -186232.2255226064 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 376753.80948773184, - 98142.06219207752 - ], - "y": [ - 349569.01094111404, - -185912.22434019603 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 376753.80948773184, - 97488.66800355395 - ], - "y": [ - 349569.01094111404, - -185580.70430677492 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 376753.80948773184, - 98144.87686544789 - ], - "y": [ - 349569.01094111404, - -185946.11501890482 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -25705.236251931663, - 96528.57510021586 - ], - "y": [ - -533399.1458938323, - -187393.59499414876 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -25705.236251931663, - 96901.55938078823 - ], - "y": [ - -533399.1458938323, - -187309.87049034002 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 235382.84267939447, - 94256.97992301545 - ], - "y": [ - -397745.37628812244, - -187472.30498547002 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 235382.84267939447, - 94390.62485294472 - ], - "y": [ - -397745.37628812244, - -188817.03562402542 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 235382.84267939447, - 94474.18506646619 - ], - "y": [ - -397745.37628812244, - -187333.3919005783 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -768077.3568489492, - 96818.20189981317 - ], - "y": [ - -484725.09919369535, - -187868.89767386837 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -768077.3568489492, - 96638.80405463175 - ], - "y": [ - -484725.09919369535, - -186633.25689314547 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -13964.755390297512, - 95888.00973910451 - ], - "y": [ - 144159.2999215613, - -185460.96898446843 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -13964.755390297512, - 95799.49717635973 - ], - "y": [ - 144159.2999215613, - -185628.17632635156 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 660747.1133854709, - 95761.360020285 - ], - "y": [ - 694026.5122361657, - -186311.45221873518 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 660747.1133854709, - 95802.05331128874 - ], - "y": [ - 694026.5122361657, - -187196.24604930566 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -435531.37121292826, - 96973.49939574185 - ], - "y": [ - -882195.7653029837, - -187276.60266658547 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -435531.37121292826, - 96633.26092124682 - ], - "y": [ - -882195.7653029837, - -186565.47062728266 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 988256.9959860345, - 97052.8332660283 - ], - "y": [ - -254949.26705717092, - -187852.313928534 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 988256.9959860345, - 97011.81451068369 - ], - "y": [ - -254949.26705717092, - -187557.78543535888 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 988256.9959860345, - 97113.70285257122 - ], - "y": [ - -254949.26705717092, - -187719.1913994157 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 988256.9959860345, - 97210.3004088966 - ], - "y": [ - -254949.26705717092, - -187972.83650257328 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 988256.9959860345, - 97188.26787866931 - ], - "y": [ - -254949.26705717092, - -187960.29676871523 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 988256.9959860345, - 97011.81451068369 - ], - "y": [ - -254949.26705717092, - -187557.78543535888 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 988256.9959860345, - 97113.70285257122 - ], - "y": [ - -254949.26705717092, - -187719.1913994157 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 988256.9959860345, - 97056.56327204366 - ], - "y": [ - -254949.26705717092, - -187911.10264278692 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 988256.9959860345, - 97626.44431224155 - ], - "y": [ - -254949.26705717092, - -188630.8453506235 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 988256.9959860345, - 97350.90150160708 - ], - "y": [ - -254949.26705717092, - -187496.3832271789 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 988256.9959860345, - 97188.26787866931 - ], - "y": [ - -254949.26705717092, - -187960.29676871523 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 988256.9959860345, - 97350.90150160708 - ], - "y": [ - -254949.26705717092, - -187496.3832271789 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 988256.9959860345, - 97162.69508453069 - ], - "y": [ - -254949.26705717092, - -188349.65680053786 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 988256.9959860345, - 97210.3004088966 - ], - "y": [ - -254949.26705717092, - -187972.83650257328 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 28339.46953594202, - 97817.20098235017 - ], - "y": [ - -462491.0589268401, - -185809.88961724282 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 28339.46953594202, - 96022.18132064518 - ], - "y": [ - -462491.0589268401, - -186934.3360415499 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 28339.46953594202, - 95599.18088294458 - ], - "y": [ - -462491.0589268401, - -187643.83786716606 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 967043.4622880626, - 95375.71980775791 - ], - "y": [ - -430007.8911960938, - -187994.90708299744 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 967043.4622880626, - 95781.4838692387 - ], - "y": [ - -430007.8911960938, - -188238.2147196666 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 967043.4622880626, - 95680.02527851156 - ], - "y": [ - -430007.8911960938, - -187629.56098631225 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 967043.4622880626, - 95894.41366117746 - ], - "y": [ - -430007.8911960938, - -187007.5772303797 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 967043.4622880626, - 95794.3620644187 - ], - "y": [ - -430007.8911960938, - -187291.49824795782 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 926635.0133391499, - 96845.07860198681 - ], - "y": [ - -536448.641531344, - -186121.19306263936 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 926635.0133391499, - 97276.29878619949 - ], - "y": [ - -536448.641531344, - -187012.46365318543 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 926635.0133391499, - 97481.0467852597 - ], - "y": [ - -536448.641531344, - -186679.30936474973 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -535039.744551085, - 96200.64224390368 - ], - "y": [ - -564353.4323777468, - -185419.46969980895 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -666783.5869524132, - 96069.95563247148 - ], - "y": [ - 349059.9686039351, - -185379.2656174194 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -212732.11676849678, - 96759.80185472532 - ], - "y": [ - -514225.7770431149, - -186901.45563588393 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -212732.11676849678, - 97151.48266936177 - ], - "y": [ - -514225.7770431149, - -187807.15683063408 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -359443.6248692099, - 97525.66398682565 - ], - "y": [ - 757689.3317536355, - -187994.28122602464 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -359443.6248692099, - 98129.8335044742 - ], - "y": [ - 757689.3317536355, - -187308.64998441696 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -150943.60975530808, - 95869.4969027973 - ], - "y": [ - -430408.69367142377, - -188350.75252464804 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -150943.60975530808, - 95947.6612354604 - ], - "y": [ - -430408.69367142377, - -186863.31396841115 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 942137.0889056928, - 97219.2344849453 - ], - "y": [ - 86268.5009564601, - -187720.11017674877 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 942137.0889056928, - 97524.9702327776 - ], - "y": [ - 86268.5009564601, - -187287.84841348106 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 942137.0889056928, - 96743.02101349403 - ], - "y": [ - 86268.5009564601, - -187854.13914095613 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 942137.0889056928, - 97462.76341227313 - ], - "y": [ - 86268.5009564601, - -187014.84911061524 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 942137.0889056928, - 97570.78852224046 - ], - "y": [ - 86268.5009564601, - -187234.71318697152 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 942137.0889056928, - 97965.90473223805 - ], - "y": [ - 86268.5009564601, - -187204.27240844848 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 942137.0889056928, - 98426.11814680099 - ], - "y": [ - 86268.5009564601, - -187291.09671769937 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 942137.0889056928, - 97400.88013760047 - ], - "y": [ - 86268.5009564601, - -187094.25690049428 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 942137.0889056928, - 97830.50425286932 - ], - "y": [ - 86268.5009564601, - -187609.4187582251 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 942137.0889056928, - 97563.51909740941 - ], - "y": [ - 86268.5009564601, - -187718.59193484212 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 942137.0889056928, - 97959.05424320973 - ], - "y": [ - 86268.5009564601, - -186509.34289278075 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 942137.0889056928, - 97250.30982328247 - ], - "y": [ - 86268.5009564601, - -188147.50652534553 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 263248.3851843943, - 97598.41715003968 - ], - "y": [ - -156068.9752368236, - -187109.55145493208 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 263248.3851843943, - 97191.15673842629 - ], - "y": [ - -156068.9752368236, - -186870.85476427 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 263248.3851843943, - 96876.62587606598 - ], - "y": [ - -156068.9752368236, - -186342.25549461835 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 263248.3851843943, - 97177.84417040872 - ], - "y": [ - -156068.9752368236, - -186442.0690847481 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 435040.8329212534, - 98932.31091884513 - ], - "y": [ - -246207.73709491672, - -187594.8777657927 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 435040.8329212534, - 98926.20655583622 - ], - "y": [ - -246207.73709491672, - -188109.5947916895 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 435040.8329212534, - 98881.20399257346 - ], - "y": [ - -246207.73709491672, - -188135.7951117508 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 435040.8329212534, - 98873.6590998779 - ], - "y": [ - -246207.73709491672, - -188126.67429510137 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 435040.8329212534, - 98776.08147395353 - ], - "y": [ - -246207.73709491672, - -188068.89540782082 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 435040.8329212534, - 98916.08043593282 - ], - "y": [ - -246207.73709491672, - -188138.17806449422 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 435040.8329212534, - 98775.64297666437 - ], - "y": [ - -246207.73709491672, - -188113.8147030654 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 435040.8329212534, - 98833.5386160878 - ], - "y": [ - -246207.73709491672, - -188119.49823623613 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 435040.8329212534, - 98779.4951496633 - ], - "y": [ - -246207.73709491672, - -188123.9780570342 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 435040.8329212534, - 98769.87019965112 - ], - "y": [ - -246207.73709491672, - -188121.51859750494 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 435040.8329212534, - 98763.69912444155 - ], - "y": [ - -246207.73709491672, - -188082.81454332572 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 435040.8329212534, - 98715.38337956829 - ], - "y": [ - -246207.73709491672, - -188023.85098966694 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 435040.8329212534, - 98838.01226486915 - ], - "y": [ - -246207.73709491672, - -188038.4334288893 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 435040.8329212534, - 98731.25835265023 - ], - "y": [ - -246207.73709491672, - -188097.6602407291 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 435040.8329212534, - 98794.9356782363 - ], - "y": [ - -246207.73709491672, - -188124.65543545736 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 435040.8329212534, - 98875.12446310604 - ], - "y": [ - -246207.73709491672, - -188079.8329504583 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 435040.8329212534, - 98845.6917714939 - ], - "y": [ - -246207.73709491672, - -188129.3743830729 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -268079.75936596474, - 97044.98522321004 - ], - "y": [ - 478973.0794877556, - -186558.77337581848 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -268079.75936596474, - 96890.44446357607 - ], - "y": [ - 478973.0794877556, - -186655.24842534095 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 403899.78181010886, - 95746.74077759727 - ], - "y": [ - 119281.5836990242, - -185972.4842459763 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 403899.78181010886, - 95514.38455692613 - ], - "y": [ - 119281.5836990242, - -185153.37826635112 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 403899.78181010886, - 96085.91161839501 - ], - "y": [ - 119281.5836990242, - -185765.32519087984 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 403899.78181010886, - 95540.81075134124 - ], - "y": [ - 119281.5836990242, - -185186.70637920234 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 403899.78181010886, - 95161.64737314533 - ], - "y": [ - 119281.5836990242, - -185070.59019309614 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -405306.02044891764, - 97743.37633435942 - ], - "y": [ - 388189.0314436558, - -187673.30496193952 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -405306.02044891764, - 97368.18786729996 - ], - "y": [ - 388189.0314436558, - -187761.64483234545 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -405306.02044891764, - 97400.16397729573 - ], - "y": [ - 388189.0314436558, - -187256.5867709403 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -405306.02044891764, - 97615.97056569872 - ], - "y": [ - 388189.0314436558, - -187366.18291352072 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -405306.02044891764, - 97788.7651245566 - ], - "y": [ - 388189.0314436558, - -187524.54517428228 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -405306.02044891764, - 97923.16505107327 - ], - "y": [ - 388189.0314436558, - -187510.56934074408 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -405306.02044891764, - 97749.77214743374 - ], - "y": [ - 388189.0314436558, - -187529.40680193529 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -405306.02044891764, - 97737.47168433828 - ], - "y": [ - 388189.0314436558, - -187454.64105987392 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -88739.66357379004, - 97643.42074759667 - ], - "y": [ - -524230.97112853, - -187519.31181360115 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -88739.66357379004, - 97749.29069670282 - ], - "y": [ - -524230.97112853, - -187123.06288107514 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -88739.66357379004, - 98137.79198213125 - ], - "y": [ - -524230.97112853, - -187477.63157623674 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -88739.66357379004, - 97782.44112987598 - ], - "y": [ - -524230.97112853, - -187257.24688779732 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -88739.66357379004, - 97566.10709216155 - ], - "y": [ - -524230.97112853, - -186882.32732606877 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -655098.6365330735, - 97247.41509419652 - ], - "y": [ - -17390.03349064716, - -185744.03743667188 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -655098.6365330735, - 98703.6866543077 - ], - "y": [ - -17390.03349064716, - -185647.84002902228 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -655098.6365330735, - 97300.96068285858 - ], - "y": [ - -17390.03349064716, - -186969.98767638186 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -655098.6365330735, - 97415.93818773415 - ], - "y": [ - -17390.03349064716, - -185902.72286645 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 286552.26150755887, - 97789.92707115466 - ], - "y": [ - -791736.2387877613, - -187303.182190925 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 286552.26150755887, - 96750.40498635444 - ], - "y": [ - -791736.2387877613, - -188126.80564361744 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 286552.26150755887, - 97809.32654645263 - ], - "y": [ - -791736.2387877613, - -187360.58931040493 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 286552.26150755887, - 97809.59302628535 - ], - "y": [ - -791736.2387877613, - -186921.38953855107 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 286552.26150755887, - 97788.58031988013 - ], - "y": [ - -791736.2387877613, - -186929.557108324 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 286552.26150755887, - 97768.46861576667 - ], - "y": [ - -791736.2387877613, - -187311.67435395776 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 286552.26150755887, - 97504.52578621544 - ], - "y": [ - -791736.2387877613, - -187395.2983959365 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -252963.25799429885, - 96578.02421964555 - ], - "y": [ - -249018.1239022182, - -187080.93819916193 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -252963.25799429885, - 96409.96532967011 - ], - "y": [ - -249018.1239022182, - -186222.8395883536 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 486620.05816211493, - 96325.12988946559 - ], - "y": [ - 425687.551390582, - -187442.89148744586 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 486620.05816211493, - 96767.96478692938 - ], - "y": [ - 425687.551390582, - -188140.00051928166 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 486620.05816211493, - 96753.02617057231 - ], - "y": [ - 425687.551390582, - -188151.46145141035 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 486620.05816211493, - 96869.39684947954 - ], - "y": [ - 425687.551390582, - -187564.53232755137 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -328431.293413165, - 95763.40443589797 - ], - "y": [ - 541551.3039466413, - -188215.09477527425 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -328431.293413165, - 95719.63523794102 - ], - "y": [ - 541551.3039466413, - -187376.35249447948 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -328431.293413165, - 95771.1095203462 - ], - "y": [ - 541551.3039466413, - -188189.81482384 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -328431.293413165, - 95203.1376507783 - ], - "y": [ - 541551.3039466413, - -188034.83047066652 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -328431.293413165, - 96270.15699232905 - ], - "y": [ - 541551.3039466413, - -187747.06924668472 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -328431.293413165, - 95244.0575474311 - ], - "y": [ - 541551.3039466413, - -188800.80256482895 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -328431.293413165, - 96476.2244248884 - ], - "y": [ - 541551.3039466413, - -187102.12973368363 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -328431.293413165, - 96533.83917036175 - ], - "y": [ - 541551.3039466413, - -187917.99657074743 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 986835.0736272966, - 95627.6655653288 - ], - "y": [ - 777474.9590574694, - -185057.76047148168 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 986835.0736272966, - 96487.74751288781 - ], - "y": [ - 777474.9590574694, - -186486.71688355424 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 986835.0736272966, - 95709.93291907338 - ], - "y": [ - 777474.9590574694, - -185130.529001914 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 986835.0736272966, - 95658.32063821593 - ], - "y": [ - 777474.9590574694, - -185147.71919034136 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -41600.750115048155, - 97536.70985088356 - ], - "y": [ - -308779.8303713793, - -187135.60577403157 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -41600.750115048155, - 98229.18483310309 - ], - "y": [ - -308779.8303713793, - -187646.46474410285 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -41600.750115048155, - 97334.69528656456 - ], - "y": [ - -308779.8303713793, - -187248.01430917686 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 629509.3608464187, - 95989.76467211267 - ], - "y": [ - -585205.0374690447, - -185284.9406615433 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -653765.5633018771, - 97600.72228126202 - ], - "y": [ - -109038.59249090897, - -186286.42140426437 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -653765.5633018771, - 97959.01602952153 - ], - "y": [ - -109038.59249090897, - -186595.59491334032 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -653765.5633018771, - 98371.01061870782 - ], - "y": [ - -109038.59249090897, - -187638.170551301 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -653765.5633018771, - 97789.64547242364 - ], - "y": [ - -109038.59249090897, - -186478.24245183423 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 487810.7120183575, - 95737.0210501743 - ], - "y": [ - -476955.21757166047, - -187993.35866484616 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 487810.7120183575, - 96247.5730261708 - ], - "y": [ - -476955.21757166047, - -187229.13331112568 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 79696.72280020501, - 96716.89120782126 - ], - "y": [ - 89599.82920407894, - -187938.08243107222 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 79696.72280020501, - 96085.91161839501 - ], - "y": [ - 89599.82920407894, - -185765.32519087984 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 93058.14653318057, - 97052.70205106144 - ], - "y": [ - -202663.00039897067, - -186825.88912431858 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 93058.14653318057, - 96826.71329736618 - ], - "y": [ - -202663.00039897067, - -186708.8994492446 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 93058.14653318057, - 96991.17451689237 - ], - "y": [ - -202663.00039897067, - -187164.0688469574 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 792119.881503258, - 97052.70205106144 - ], - "y": [ - 40745.30815238342, - -186825.88912431858 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 792119.881503258, - 96991.17451689237 - ], - "y": [ - 40745.30815238342, - -187164.0688469574 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 167826.07426211916, - 96760.3513556949 - ], - "y": [ - -984531.7167255103, - -187461.08290298193 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 167826.07426211916, - 96464.55718535923 - ], - "y": [ - -984531.7167255103, - -187221.3523749667 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 167826.07426211916, - 96534.278171482 - ], - "y": [ - -984531.7167255103, - -186992.1811585919 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 167826.07426211916, - 96405.88296277358 - ], - "y": [ - -984531.7167255103, - -187142.28778417234 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 167826.07426211916, - 97516.13365436997 - ], - "y": [ - -984531.7167255103, - -187056.31471454934 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -38509.35045387782, - 94593.1532092616 - ], - "y": [ - -972130.0647174548, - -186746.17776224224 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -38509.35045387782, - 94062.66633331862 - ], - "y": [ - -972130.0647174548, - -187434.38846414318 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -38509.35045387782, - 93616.21500771031 - ], - "y": [ - -972130.0647174548, - -187826.61084050385 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 464766.31972976757, - 96780.96571153034 - ], - "y": [ - 273270.0597006592, - -187003.93902302586 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 464766.31972976757, - 96527.45528447787 - ], - "y": [ - 273270.0597006592, - -187742.596093895 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 502981.5468323673, - 95617.05222697879 - ], - "y": [ - -599291.6704083991, - -185540.26300420432 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 502981.5468323673, - 96115.57754246322 - ], - "y": [ - -599291.6704083991, - -185199.27035351453 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 868139.6588996886, - 95481.26094749449 - ], - "y": [ - 750002.6005460201, - -188288.73056814942 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 868139.6588996886, - 96350.897783121 - ], - "y": [ - 750002.6005460201, - -186980.8144633269 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 868139.6588996886, - 95443.67008227661 - ], - "y": [ - 750002.6005460201, - -188423.99184216498 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 868139.6588996886, - 95360.36419013362 - ], - "y": [ - 750002.6005460201, - -188384.46387554856 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 868139.6588996886, - 95505.50501741502 - ], - "y": [ - 750002.6005460201, - -188099.9720945511 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 868139.6588996886, - 95828.46924619444 - ], - "y": [ - 750002.6005460201, - -187819.29574656484 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 868139.6588996886, - 95163.75908553116 - ], - "y": [ - 750002.6005460201, - -188413.92210597807 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 868139.6588996886, - 95489.22963590887 - ], - "y": [ - 750002.6005460201, - -187838.56400906073 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 868139.6588996886, - 95274.60828290615 - ], - "y": [ - 750002.6005460201, - -188187.00891794523 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 868139.6588996886, - 95527.20667464145 - ], - "y": [ - 750002.6005460201, - -188567.58941515462 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 868139.6588996886, - 95397.10356995185 - ], - "y": [ - 750002.6005460201, - -187941.9237365848 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 868139.6588996886, - 95228.59152965351 - ], - "y": [ - 750002.6005460201, - -188480.6248001793 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 868139.6588996886, - 95594.04154313843 - ], - "y": [ - 750002.6005460201, - -188752.9247450727 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 868139.6588996886, - 95243.05174065192 - ], - "y": [ - 750002.6005460201, - -188237.25251034857 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 868139.6588996886, - 95213.77887412795 - ], - "y": [ - 750002.6005460201, - -188232.11752967277 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 868139.6588996886, - 95713.33557938566 - ], - "y": [ - 750002.6005460201, - -186369.47424236263 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 868139.6588996886, - 95510.02889292239 - ], - "y": [ - 750002.6005460201, - -187463.4585977219 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 868139.6588996886, - 96022.18132064518 - ], - "y": [ - 750002.6005460201, - -186934.3360415499 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 868139.6588996886, - 95306.71022996533 - ], - "y": [ - 750002.6005460201, - -188159.4341766519 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 868139.6588996886, - 96072.651127653 - ], - "y": [ - 750002.6005460201, - -188325.90735821644 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -170207.19763056102, - 95448.68746731608 - ], - "y": [ - 756890.1641414585, - -184908.1166309739 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -170207.19763056102, - 95293.92851935429 - ], - "y": [ - 756890.1641414585, - -184198.70078145587 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -443329.20444239624, - 96424.48707246192 - ], - "y": [ - 264180.56110761315, - -186439.9649841702 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -525909.7546974054, - 96039.53114090665 - ], - "y": [ - 804859.604823416, - -187862.98846391006 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -525909.7546974054, - 96558.40139577903 - ], - "y": [ - 804859.604823416, - -187369.8494239768 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 578051.3518156023, - 96049.17164979059 - ], - "y": [ - -178356.25676065582, - -185019.88314560454 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 61547.78938514394, - 97598.41715003968 - ], - "y": [ - 707865.61845407, - -187109.55145493208 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 61547.78938514394, - 97200.7730276014 - ], - "y": [ - 707865.61845407, - -187639.15760068822 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 61547.78938514394, - 97446.90168966807 - ], - "y": [ - 707865.61845407, - -186765.58714734673 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 61547.78938514394, - 97965.90473223805 - ], - "y": [ - 707865.61845407, - -187204.27240844848 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 61547.78938514394, - 97959.05424320973 - ], - "y": [ - 707865.61845407, - -186509.34289278075 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 522257.1386652817, - 96440.9774229316 - ], - "y": [ - -119638.06642065445, - -187686.9419411423 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 522257.1386652817, - 97474.17223906965 - ], - "y": [ - -119638.06642065445, - -187048.28032769196 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 522257.1386652817, - 96627.09595023748 - ], - "y": [ - -119638.06642065445, - -186794.89125618731 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 522257.1386652817, - 96508.0649915055 - ], - "y": [ - -119638.06642065445, - -186822.41511138683 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 522257.1386652817, - 96252.73601927159 - ], - "y": [ - -119638.06642065445, - -187563.39014736656 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 577392.8090613643, - 97191.15673842629 - ], - "y": [ - 896088.1357434693, - -186870.85476427 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 577392.8090613643, - 97598.41715003968 - ], - "y": [ - 896088.1357434693, - -187109.55145493208 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 577392.8090613643, - 96912.8602518081 - ], - "y": [ - 896088.1357434693, - -187385.0923661435 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 577392.8090613643, - 96640.9561634297 - ], - "y": [ - 896088.1357434693, - -186888.21059285887 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 577392.8090613643, - 96548.78849614567 - ], - "y": [ - 896088.1357434693, - -185829.80948671233 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 577392.8090613643, - 97092.6033555316 - ], - "y": [ - 896088.1357434693, - -187041.9723647092 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 577392.8090613643, - 96137.93531003897 - ], - "y": [ - 896088.1357434693, - -185125.23152722794 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 577392.8090613643, - 97681.82650463261 - ], - "y": [ - 896088.1357434693, - -187095.6197581376 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 577392.8090613643, - 96900.36956234596 - ], - "y": [ - 896088.1357434693, - -185897.53117830772 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 577392.8090613643, - 99054.93251049488 - ], - "y": [ - 896088.1357434693, - -185769.0972955552 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 577392.8090613643, - 97621.5308801509 - ], - "y": [ - 896088.1357434693, - -186826.48542049516 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 577392.8090613643, - 96840.81091989319 - ], - "y": [ - 896088.1357434693, - -185756.5836062822 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 577392.8090613643, - 97398.68149419299 - ], - "y": [ - 896088.1357434693, - -186973.73232271746 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 577392.8090613643, - 96052.90997742687 - ], - "y": [ - 896088.1357434693, - -185101.1509899331 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 577392.8090613643, - 97140.91541633583 - ], - "y": [ - 896088.1357434693, - -186015.29034764567 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 577392.8090613643, - 96883.35271778212 - ], - "y": [ - 896088.1357434693, - -186628.54466062496 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 577392.8090613643, - 96961.63219735424 - ], - "y": [ - 896088.1357434693, - -185868.99053592625 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 577392.8090613643, - 96593.15685874 - ], - "y": [ - 896088.1357434693, - -185892.3867642372 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 577392.8090613643, - 96942.49668912489 - ], - "y": [ - 896088.1357434693, - -185982.92772953527 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 577392.8090613643, - 97329.44637332104 - ], - "y": [ - 896088.1357434693, - -186563.35158898422 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 577392.8090613643, - 97283.72077280736 - ], - "y": [ - 896088.1357434693, - -186333.64344871804 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 665091.1247342328, - 96411.51796021752 - ], - "y": [ - 764306.5082644378, - -188137.57555694113 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 665091.1247342328, - 96339.24938310328 - ], - "y": [ - 764306.5082644378, - -186649.44372244837 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 786778.6542879742, - 97736.94813016456 - ], - "y": [ - 738347.6293918168, - -185398.36138060363 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 786778.6542879742, - 97910.96993785165 - ], - "y": [ - 738347.6293918168, - -186628.42409363462 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 786778.6542879742, - 96786.0414096176 - ], - "y": [ - 738347.6293918168, - -185328.69791728977 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 786778.6542879742, - 99128.8683145138 - ], - "y": [ - 738347.6293918168, - -185645.35316113118 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 815950.3189379036, - 97910.96993785165 - ], - "y": [ - 298009.30941031687, - -186628.42409363462 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 815950.3189379036, - 99128.8683145138 - ], - "y": [ - 298009.30941031687, - -185645.35316113118 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 815950.3189379036, - 96786.0414096176 - ], - "y": [ - 298009.30941031687, - -185328.69791728977 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 38830.39103194141, - 96211.67174914089 - ], - "y": [ - 876862.1278722695, - -185190.4973312962 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 38830.39103194141, - 95720.51419720666 - ], - "y": [ - 876862.1278722695, - -184810.0609463012 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 38830.39103194141, - 96607.09318109117 - ], - "y": [ - 876862.1278722695, - -185673.16887228226 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 38830.39103194141, - 95599.53684369884 - ], - "y": [ - 876862.1278722695, - -184555.20493347468 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -635979.9761410847, - 97078.78573950223 - ], - "y": [ - -996033.6480989374, - -186603.54049738206 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -635979.9761410847, - 95886.98258580548 - ], - "y": [ - -996033.6480989374, - -185000.47819436324 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -635979.9761410847, - 96463.65900406071 - ], - "y": [ - -996033.6480989374, - -185769.4575393162 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -635979.9761410847, - 96509.39820433313 - ], - "y": [ - -996033.6480989374, - -185778.33475206984 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -635979.9761410847, - 96509.4296845907 - ], - "y": [ - -996033.6480989374, - -185864.6939073649 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -635979.9761410847, - 96099.61138898744 - ], - "y": [ - -996033.6480989374, - -185242.38515533158 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -651013.7192327545, - 97122.96681206446 - ], - "y": [ - 960523.7131412292, - -185902.13729941534 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -651013.7192327545, - 95950.47769478709 - ], - "y": [ - 960523.7131412292, - -184710.20690531647 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -651013.7192327545, - 98675.12932763455 - ], - "y": [ - 960523.7131412292, - -186336.77161351635 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -651013.7192327545, - 97289.15046436754 - ], - "y": [ - 960523.7131412292, - -186119.94401614703 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 811131.8183294842, - 97014.53523334138 - ], - "y": [ - -380830.05584140925, - -185893.69281000222 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 811131.8183294842, - 97526.53767625983 - ], - "y": [ - -380830.05584140925, - -187563.04088038372 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 811131.8183294842, - 97181.11827309501 - ], - "y": [ - -380830.05584140925, - -186983.54442722624 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 811131.8183294842, - 98660.63217404629 - ], - "y": [ - -380830.05584140925, - -187703.92647279546 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 811131.8183294842, - 98412.44821844941 - ], - "y": [ - -380830.05584140925, - -185743.6029551579 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 811131.8183294842, - 97765.48056752425 - ], - "y": [ - -380830.05584140925, - -185968.90039689335 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 811131.8183294842, - 97130.87354039263 - ], - "y": [ - -380830.05584140925, - -186108.22088459652 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 811131.8183294842, - 97611.64317798252 - ], - "y": [ - -380830.05584140925, - -186089.89882082163 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 811131.8183294842, - 96607.81846515763 - ], - "y": [ - -380830.05584140925, - -185308.25354167318 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 811131.8183294842, - 97565.68134613338 - ], - "y": [ - -380830.05584140925, - -186216.4074492947 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 190593.36686297934, - 97878.18936700777 - ], - "y": [ - 166563.21910749128, - -186691.95573974657 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 190593.36686297934, - 98088.69457083048 - ], - "y": [ - 166563.21910749128, - -186418.54900034756 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 190593.36686297934, - 102537.64337792993 - ], - "y": [ - 166563.21910749128, - -184684.6304903929 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 190593.36686297934, - 97336.72314742803 - ], - "y": [ - 166563.21910749128, - -186003.21438929535 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 190593.36686297934, - 97384.85502032931 - ], - "y": [ - 166563.21910749128, - -186109.56426562366 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 190593.36686297934, - 97739.50461726454 - ], - "y": [ - 166563.21910749128, - -186120.97182205616 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 190593.36686297934, - 97790.18756915494 - ], - "y": [ - 166563.21910749128, - -186324.3395864327 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 190593.36686297934, - 98423.75905911079 - ], - "y": [ - 166563.21910749128, - -186722.7974234636 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 588024.254014322, - 92914.29701391104 - ], - "y": [ - 534859.9422349943, - -140718.26168474945 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 588024.254014322, - 94521.0965568673 - ], - "y": [ - 534859.9422349943, - -162271.2627223581 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 316053.7349427122, - 96813.45598094136 - ], - "y": [ - -132114.9342579806, - -186085.13248614842 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 316053.7349427122, - 96835.92874774396 - ], - "y": [ - -132114.9342579806, - -186068.28536481576 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 316053.7349427122, - 96172.09176973494 - ], - "y": [ - -132114.9342579806, - -185427.49168366197 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 587577.2507856083, - 96100.97014585767 - ], - "y": [ - 80900.4134705249, - -184985.73631769797 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 587577.2507856083, - 95705.40993449507 - ], - "y": [ - 80900.4134705249, - -184766.12089212818 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 351301.77422378736, - 96845.07860198681 - ], - "y": [ - -579394.7183499117, - -186121.19306263936 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 351301.77422378736, - 97276.29878619949 - ], - "y": [ - -579394.7183499117, - -187012.46365318543 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 351301.77422378736, - 97481.0467852597 - ], - "y": [ - -579394.7183499117, - -186679.30936474973 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 848868.644806498, - 96827.38300101372 - ], - "y": [ - 819699.6980095763, - -185693.59243815514 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 848868.644806498, - 96461.24693139427 - ], - "y": [ - 819699.6980095763, - -186460.20786475393 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 848868.644806498, - 96535.82894445845 - ], - "y": [ - 819699.6980095763, - -186037.59716773787 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -299923.25938496925, - 96054.16110461712 - ], - "y": [ - 386546.83880120324, - -185450.5833065486 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -299923.25938496925, - 96003.46856538253 - ], - "y": [ - 386546.83880120324, - -185396.0966615638 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -299923.25938496925, - 96117.67522368413 - ], - "y": [ - 386546.83880120324, - -185276.4054007422 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -360885.8773834229, - 96380.27321562011 - ], - "y": [ - 821573.6475867204, - -184847.09039631113 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -345441.7571526054, - 96039.52555482746 - ], - "y": [ - 981695.7421767967, - -184823.61753243406 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -345441.7571526054, - 96091.70581400175 - ], - "y": [ - 981695.7421767967, - -184778.45025064657 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -345441.7571526054, - 96269.04428473447 - ], - "y": [ - 981695.7421767967, - -185109.39166642443 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 437694.3292319815, - 97245.37390852053 - ], - "y": [ - 614305.8973532458, - -185556.4843562863 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 947333.3380176532, - 96333.93226534751 - ], - "y": [ - 77534.99257079021, - -186719.88216859457 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 947333.3380176532, - 96524.6669755778 - ], - "y": [ - 77534.99257079021, - -186773.59087394056 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 947333.3380176532, - 96558.43883318681 - ], - "y": [ - 77534.99257079021, - -186505.48261010222 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 947333.3380176532, - 97209.46385807885 - ], - "y": [ - 77534.99257079021, - -187516.20202739417 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 947333.3380176532, - 96281.59320080571 - ], - "y": [ - 77534.99257079021, - -188001.86892294977 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 947333.3380176532, - 96876.62587606598 - ], - "y": [ - 77534.99257079021, - -186342.25549461835 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 947333.3380176532, - 97681.82650463261 - ], - "y": [ - 77534.99257079021, - -187095.6197581376 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 916183.0371557598, - 97191.15673842629 - ], - "y": [ - 626708.9342158604, - -186870.85476427 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 916183.0371557598, - 97598.41715003968 - ], - "y": [ - 626708.9342158604, - -187109.55145493208 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 916183.0371557598, - 97177.84417040872 - ], - "y": [ - 626708.9342158604, - -186442.0690847481 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 916183.0371557598, - 97329.44637332104 - ], - "y": [ - 626708.9342158604, - -186563.35158898422 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 388152.5796828631, - 97334.199382075 - ], - "y": [ - 952690.7658094943, - -186684.80121130878 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 388152.5796828631, - 96164.9303846309 - ], - "y": [ - 952690.7658094943, - -184705.8070100957 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -789394.6420817033, - 95667.80679021226 - ], - "y": [ - 116504.86283671646, - -184864.84138353547 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -789394.6420817033, - 95658.32343165908 - ], - "y": [ - 116504.86283671646, - -184566.07730183762 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -84551.7835832943, - 95648.34307354958 - ], - "y": [ - -420122.1368730317, - -186337.80196089507 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -84551.7835832943, - 95901.87035986596 - ], - "y": [ - -420122.1368730317, - -185906.65861356055 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -84551.7835832943, - 95796.6220412549 - ], - "y": [ - -420122.1368730317, - -186150.906960568 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -84551.7835832943, - 95732.4030502184 - ], - "y": [ - -420122.1368730317, - -186089.31929989046 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -84551.7835832943, - 96335.57621806604 - ], - "y": [ - -420122.1368730317, - -186474.6235265719 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 946906.6064106144, - 95737.0210501743 - ], - "y": [ - -538892.5293056685, - -187993.35866484616 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 946906.6064106144, - 96247.5730261708 - ], - "y": [ - -538892.5293056685, - -187229.13331112568 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 608890.8180953821, - 96407.22560594323 - ], - "y": [ - 171879.1916242357, - -186468.51753357225 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 608890.8180953821, - 96440.07084499848 - ], - "y": [ - 171879.1916242357, - -186122.9165758566 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 677591.4524686069, - 96991.17451689237 - ], - "y": [ - -584452.5975392128, - -187164.0688469574 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 677591.4524686069, - 97052.70205106144 - ], - "y": [ - -584452.5975392128, - -186825.88912431858 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 521072.90601517487, - 95514.95574487532 - ], - "y": [ - 573054.9331839461, - -186174.69969704037 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -178216.50664417076, - 97878.18936700777 - ], - "y": [ - 884904.7618596369, - -186691.95573974657 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -178216.50664417076, - 97384.85502032931 - ], - "y": [ - 884904.7618596369, - -186109.56426562366 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -178216.50664417076, - 98088.69457083048 - ], - "y": [ - 884904.7618596369, - -186418.54900034756 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -178216.50664417076, - 97790.18756915494 - ], - "y": [ - 884904.7618596369, - -186324.3395864327 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -14463.351502338017, - 96947.40675273385 - ], - "y": [ - 72455.83117650512, - -188107.46199151454 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -14463.351502338017, - 96817.66055571858 - ], - "y": [ - 72455.83117650512, - -187899.4158525461 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -14463.351502338017, - 96400.51278286969 - ], - "y": [ - 72455.83117650512, - -187859.86995225446 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -14463.351502338017, - 96656.51605951994 - ], - "y": [ - 72455.83117650512, - -188126.8200295349 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -14463.351502338017, - 97154.72425616732 - ], - "y": [ - 72455.83117650512, - -188123.19483452023 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -14463.351502338017, - 97559.12810431966 - ], - "y": [ - 72455.83117650512, - -187448.3572804437 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 554892.5945752865, - 97442.1178182285 - ], - "y": [ - 829740.9884726934, - -187820.43378501857 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 554892.5945752865, - 96871.98342831364 - ], - "y": [ - 829740.9884726934, - -186775.64544110073 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -387963.4681192348, - 96189.19527054564 - ], - "y": [ - -331959.35190203565, - -185619.5302422243 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -387963.4681192348, - 97753.78297929207 - ], - "y": [ - -331959.35190203565, - -185704.2175677414 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -387963.4681192348, - 96341.35508815081 - ], - "y": [ - -331959.35190203565, - -185937.20459336432 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -387963.4681192348, - 95819.77591622746 - ], - "y": [ - -331959.35190203565, - -185523.5880471388 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -387963.4681192348, - 95836.41008943335 - ], - "y": [ - -331959.35190203565, - -185073.60125989263 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -387963.4681192348, - 96259.9082581497 - ], - "y": [ - -331959.35190203565, - -185681.62401491503 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -387963.4681192348, - 96624.18025269137 - ], - "y": [ - -331959.35190203565, - -185755.25804511458 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -387963.4681192348, - 96869.39684947954 - ], - "y": [ - -331959.35190203565, - -187564.53232755137 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -387963.4681192348, - 96595.38846744089 - ], - "y": [ - -331959.35190203565, - -185742.32278142963 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -387963.4681192348, - 96273.9014736457 - ], - "y": [ - -331959.35190203565, - -185812.36978806616 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -387963.4681192348, - 97698.15736668535 - ], - "y": [ - -331959.35190203565, - -186839.17366214117 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -387963.4681192348, - 96237.38326345755 - ], - "y": [ - -331959.35190203565, - -185460.24572993352 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -387963.4681192348, - 96272.62459980143 - ], - "y": [ - -331959.35190203565, - -185767.89203574616 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -387963.4681192348, - 96297.69636707871 - ], - "y": [ - -331959.35190203565, - -185411.53656573629 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -387963.4681192348, - 95372.37969661041 - ], - "y": [ - -331959.35190203565, - -186079.66390792772 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -387963.4681192348, - 96464.1710890281 - ], - "y": [ - -331959.35190203565, - -185233.48683497915 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -387963.4681192348, - 96300.0043841075 - ], - "y": [ - -331959.35190203565, - -184948.90466462815 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -387963.4681192348, - 95976.46298115156 - ], - "y": [ - -331959.35190203565, - -185247.7806087925 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -387963.4681192348, - 96423.89730001795 - ], - "y": [ - -331959.35190203565, - -186549.85209355422 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -387963.4681192348, - 95705.40993449507 - ], - "y": [ - -331959.35190203565, - -184766.12089212818 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -387963.4681192348, - 97225.12273154467 - ], - "y": [ - -331959.35190203565, - -186917.39214776302 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -387963.4681192348, - 96380.40661308727 - ], - "y": [ - -331959.35190203565, - -186657.063249416 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 717447.7001192871, - 96196.257368652 - ], - "y": [ - -428399.58301674377, - -186137.98831876533 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 180005.58774911758, - 97687.97327166176 - ], - "y": [ - -679954.6677934721, - -187630.12975349987 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 180005.58774911758, - 97598.41715003968 - ], - "y": [ - -679954.6677934721, - -187109.55145493208 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 180005.58774911758, - 97764.93718471118 - ], - "y": [ - -679954.6677934721, - -187687.3081902085 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 180005.58774911758, - 97964.99194759796 - ], - "y": [ - -679954.6677934721, - -187525.68775441864 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 180005.58774911758, - 97077.67459906588 - ], - "y": [ - -679954.6677934721, - -187326.55715253745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 180005.58774911758, - 96053.464316358 - ], - "y": [ - -679954.6677934721, - -189245.3547860996 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 180005.58774911758, - 97681.82650463261 - ], - "y": [ - -679954.6677934721, - -187095.6197581376 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 698099.5531065653, - 95950.13199504191 - ], - "y": [ - 84986.55436247282, - -184795.0131029055 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 698099.5531065653, - 95847.60434582221 - ], - "y": [ - 84986.55436247282, - -184934.10299478343 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 698099.5531065653, - 96119.17908740342 - ], - "y": [ - 84986.55436247282, - -184595.03593603414 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -656436.9674364273, - 95905.42580827077 - ], - "y": [ - -490268.42281844106, - -185557.18603881687 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -656436.9674364273, - 95919.99780721203 - ], - "y": [ - -490268.42281844106, - -184826.82895671725 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -580427.8565184487, - 96185.37627813521 - ], - "y": [ - -223739.6026945686, - -185703.95718490216 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -580427.8565184487, - 95946.3884071162 - ], - "y": [ - -223739.6026945686, - -185294.42224015918 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -580427.8565184487, - 96244.27988515895 - ], - "y": [ - -223739.6026945686, - -185575.41563245628 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -580427.8565184487, - 96196.74025182828 - ], - "y": [ - -223739.6026945686, - -185794.81985080332 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -580427.8565184487, - 96174.10171537164 - ], - "y": [ - -223739.6026945686, - -186172.60986329245 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -580427.8565184487, - 96538.8108213843 - ], - "y": [ - -223739.6026945686, - -185661.8516968439 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -580427.8565184487, - 97589.77077865561 - ], - "y": [ - -223739.6026945686, - -185638.24577050543 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -580427.8565184487, - 96255.53165206172 - ], - "y": [ - -223739.6026945686, - -185965.40347835567 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -580427.8565184487, - 96989.12139942696 - ], - "y": [ - -223739.6026945686, - -186004.1374210784 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -580427.8565184487, - 96386.3485642869 - ], - "y": [ - -223739.6026945686, - -185781.3584731582 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -580427.8565184487, - 96209.17705200447 - ], - "y": [ - -223739.6026945686, - -185664.76866772544 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -580427.8565184487, - 96404.94279951866 - ], - "y": [ - -223739.6026945686, - -185815.6127283012 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -580427.8565184487, - 95582.13652811556 - ], - "y": [ - -223739.6026945686, - -184723.17471127305 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -580427.8565184487, - 96075.92114230867 - ], - "y": [ - -223739.6026945686, - -186009.95200031195 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -580427.8565184487, - 96933.47649225005 - ], - "y": [ - -223739.6026945686, - -186195.38531040744 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -580427.8565184487, - 96208.32555016727 - ], - "y": [ - -223739.6026945686, - -185753.05619845918 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -580427.8565184487, - 96486.76296481364 - ], - "y": [ - -223739.6026945686, - -185703.19314166557 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -580427.8565184487, - 96310.8706914388 - ], - "y": [ - -223739.6026945686, - -186594.9114183287 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -580427.8565184487, - 96156.77295171334 - ], - "y": [ - -223739.6026945686, - -185580.15593113314 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -580427.8565184487, - 96208.35637264428 - ], - "y": [ - -223739.6026945686, - -185541.68129385356 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -580427.8565184487, - 96987.0677801975 - ], - "y": [ - -223739.6026945686, - -186549.16628896404 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -580427.8565184487, - 96412.81309344785 - ], - "y": [ - -223739.6026945686, - -185479.2357860194 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 345722.8774127468, - 95605.5078529397 - ], - "y": [ - 406002.0457023177, - -184578.21753488245 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 345722.8774127468, - 95576.46893477392 - ], - "y": [ - 406002.0457023177, - -184618.35740420443 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 345722.8774127468, - 95889.53071914573 - ], - "y": [ - 406002.0457023177, - -184441.46870504398 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 345722.8774127468, - 95560.7221366576 - ], - "y": [ - 406002.0457023177, - -184568.61994464282 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 345722.8774127468, - 95552.49574202929 - ], - "y": [ - 406002.0457023177, - -184661.85928366336 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 345722.8774127468, - 95550.8641318485 - ], - "y": [ - 406002.0457023177, - -184523.38966404533 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -150377.71014886748, - 96405.3198620752 - ], - "y": [ - 665655.8201887235, - -185717.16624584142 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -150377.71014886748, - 95915.425645233 - ], - "y": [ - 665655.8201887235, - -185483.3295420938 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -150377.71014886748, - 96264.80700176922 - ], - "y": [ - 665655.8201887235, - -186417.94305405728 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 155998.46897914205, - 96174.34018844058 - ], - "y": [ - -527494.4459784911, - -186246.51492087843 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 155998.46897914205, - 95670.97648775595 - ], - "y": [ - -527494.4459784911, - -184845.9682979859 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 155998.46897914205, - 95372.88665283406 - ], - "y": [ - -527494.4459784911, - -184540.75647463603 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 65171.48029580055, - 96759.80185472532 - ], - "y": [ - 982085.9587471285, - -186901.45563588393 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 65171.48029580055, - 97151.48266936177 - ], - "y": [ - 982085.9587471285, - -187807.15683063408 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -181637.07161457854, - 95667.97156819428 - ], - "y": [ - -488694.0909168389, - -184666.37763325783 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -181637.07161457854, - 96281.8187118494 - ], - "y": [ - -488694.0909168389, - -185185.18619115572 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -181637.07161457854, - 96786.33551603762 - ], - "y": [ - -488694.0909168389, - -186199.38823877013 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 308041.3932794368, - 95652.45140521994 - ], - "y": [ - -583140.1465101166, - -184507.9099237428 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -287412.34625400434, - 97878.18936700777 - ], - "y": [ - 354225.66150667076, - -186691.95573974657 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -287412.34625400434, - 97384.85502032931 - ], - "y": [ - 354225.66150667076, - -186109.56426562366 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -287412.34625400434, - 98088.69457083048 - ], - "y": [ - 354225.66150667076, - -186418.54900034756 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -287412.34625400434, - 97790.18756915494 - ], - "y": [ - 354225.66150667076, - -186324.3395864327 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -656253.5214717102, - 96204.29166956923 - ], - "y": [ - 216506.6744153916, - -187003.43820973596 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -656253.5214717102, - 96273.36385473177 - ], - "y": [ - 216506.6744153916, - -186545.16136884323 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -656253.5214717102, - 96163.50814490586 - ], - "y": [ - 216506.6744153916, - -186951.0722009215 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -648310.0496600611, - 96142.15372609507 - ], - "y": [ - 154619.27963724674, - -186588.34259437467 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -648310.0496600611, - 96246.21706337249 - ], - "y": [ - 154619.27963724674, - -185936.8747686248 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -648310.0496600611, - 95604.22358935632 - ], - "y": [ - 154619.27963724674, - -186443.85498753583 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -648310.0496600611, - 96630.39978608028 - ], - "y": [ - 154619.27963724674, - -186141.55895141896 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -648310.0496600611, - 95933.78130606312 - ], - "y": [ - 154619.27963724674, - -187405.71770728158 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -648310.0496600611, - 95969.93628717288 - ], - "y": [ - 154619.27963724674, - -187389.66797592156 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -746381.2366853913, - 96866.28592075064 - ], - "y": [ - 25136.598539379218, - -186647.18276851127 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -746381.2366853913, - 96564.72992711587 - ], - "y": [ - 25136.598539379218, - -185889.87833542484 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -19364.354844584097, - 95596.36627113551 - ], - "y": [ - -433884.56447279954, - -184523.06400318502 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -19364.354844584097, - 96182.32358713142 - ], - "y": [ - -433884.56447279954, - -185073.57268297486 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -19364.354844584097, - 96286.66809125463 - ], - "y": [ - -433884.56447279954, - -185077.8905521608 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -19364.354844584097, - 95814.45750461605 - ], - "y": [ - -433884.56447279954, - -184685.0000328583 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97301.69481913165 - ], - "y": [ - 234279.8583667003, - -187192.2975120381 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 96886.2262880243 - ], - "y": [ - 234279.8583667003, - -187002.80523749278 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 96912.85156473947 - ], - "y": [ - 234279.8583667003, - -187003.69318072736 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97085.38663455553 - ], - "y": [ - 234279.8583667003, - -186907.3329708996 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97355.69179208958 - ], - "y": [ - 234279.8583667003, - -187388.2617066739 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97043.19055357405 - ], - "y": [ - 234279.8583667003, - -186950.9060841143 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97406.83103336953 - ], - "y": [ - 234279.8583667003, - -187426.40772893745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97508.64091238416 - ], - "y": [ - 234279.8583667003, - -188015.87833895627 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97596.85822151981 - ], - "y": [ - 234279.8583667003, - -187456.03533027926 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97281.93703232154 - ], - "y": [ - 234279.8583667003, - -186718.14847004472 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97339.53315472855 - ], - "y": [ - 234279.8583667003, - -187192.52823779927 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97182.15385952276 - ], - "y": [ - 234279.8583667003, - -187430.84477593255 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 98255.45010528169 - ], - "y": [ - 234279.8583667003, - -188090.9736323963 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 96708.5597033612 - ], - "y": [ - 234279.8583667003, - -187057.4226896695 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97342.9103563253 - ], - "y": [ - 234279.8583667003, - -187299.00679136443 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97298.42341187966 - ], - "y": [ - 234279.8583667003, - -187898.09108993356 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 98020.16838808233 - ], - "y": [ - 234279.8583667003, - -187800.71024494842 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97476.84212265511 - ], - "y": [ - 234279.8583667003, - -187578.7945424208 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97585.2552421273 - ], - "y": [ - 234279.8583667003, - -187852.2157456399 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97850.09960847285 - ], - "y": [ - 234279.8583667003, - -188445.4527261622 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97800.77052809988 - ], - "y": [ - 234279.8583667003, - -187821.0464781729 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97497.40137546581 - ], - "y": [ - 234279.8583667003, - -187538.8698057885 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97172.85679925286 - ], - "y": [ - 234279.8583667003, - -187904.2446480533 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97230.27471512488 - ], - "y": [ - 234279.8583667003, - -187707.84632557898 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97465.08902518246 - ], - "y": [ - 234279.8583667003, - -187515.5351218408 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97572.7293771363 - ], - "y": [ - 234279.8583667003, - -187294.31909113945 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97060.83487204376 - ], - "y": [ - 234279.8583667003, - -188304.55925484645 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97373.64682205649 - ], - "y": [ - 234279.8583667003, - -186927.86579355603 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97530.9950602946 - ], - "y": [ - 234279.8583667003, - -187675.71540639747 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97230.78206970361 - ], - "y": [ - 234279.8583667003, - -187132.18270199542 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97683.2450611929 - ], - "y": [ - 234279.8583667003, - -186661.11383538053 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97367.93418176113 - ], - "y": [ - 234279.8583667003, - -187238.4395913106 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97194.9145170215 - ], - "y": [ - 234279.8583667003, - -186711.99171266862 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 98030.3922687115 - ], - "y": [ - 234279.8583667003, - -187274.8884360902 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 98164.50513674611 - ], - "y": [ - 234279.8583667003, - -187605.70324073057 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97211.33338583425 - ], - "y": [ - 234279.8583667003, - -187459.62733920277 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97167.07602680264 - ], - "y": [ - 234279.8583667003, - -187350.64454981094 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 98102.01760177093 - ], - "y": [ - 234279.8583667003, - -187987.25877007708 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97473.4025173577 - ], - "y": [ - 234279.8583667003, - -187340.14536462337 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 96869.55087283194 - ], - "y": [ - 234279.8583667003, - -188133.99953381368 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 98618.6314379455 - ], - "y": [ - 234279.8583667003, - -187908.8502698971 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97980.37305163042 - ], - "y": [ - 234279.8583667003, - -187974.06713440962 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 98040.98610521741 - ], - "y": [ - 234279.8583667003, - -188174.96094340537 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97099.06003533595 - ], - "y": [ - 234279.8583667003, - -187654.68501915902 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 98609.76983635421 - ], - "y": [ - 234279.8583667003, - -187919.67545603745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97732.09002327014 - ], - "y": [ - 234279.8583667003, - -188033.5893052449 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97154.99065747266 - ], - "y": [ - 234279.8583667003, - -187179.74870279036 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97218.35146138504 - ], - "y": [ - 234279.8583667003, - -187958.6837154068 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97299.95816584109 - ], - "y": [ - 234279.8583667003, - -187098.08472081405 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97300.96068285858 - ], - "y": [ - 234279.8583667003, - -186969.98767638186 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97626.13132471772 - ], - "y": [ - 234279.8583667003, - -187817.05963383534 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97112.35613433391 - ], - "y": [ - 234279.8583667003, - -187227.08326375764 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97560.98718189307 - ], - "y": [ - 234279.8583667003, - -187840.08914857774 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97185.7097878747 - ], - "y": [ - 234279.8583667003, - -187243.47707715337 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97559.13458489727 - ], - "y": [ - 234279.8583667003, - -187358.05164964797 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97201.16002150408 - ], - "y": [ - 234279.8583667003, - -187870.53601201336 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97516.02947908005 - ], - "y": [ - 234279.8583667003, - -187247.9917175175 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97270.02110151788 - ], - "y": [ - 234279.8583667003, - -187825.62181611278 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97433.41068898393 - ], - "y": [ - 234279.8583667003, - -187383.08957187168 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97833.68675936971 - ], - "y": [ - 234279.8583667003, - -186137.40837100832 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97325.64609840355 - ], - "y": [ - 234279.8583667003, - -187368.8604475479 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97103.12815964877 - ], - "y": [ - 234279.8583667003, - -186975.18042715648 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 97473.72704771126 - ], - "y": [ - 234279.8583667003, - -187218.33649070092 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -625569.4912948359, - 96893.86441244776 - ], - "y": [ - 234279.8583667003, - -187115.92005878876 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 185128.5230804234, - 95331.67170746473 - ], - "y": [ - -703929.9198451278, - -188577.08388106618 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 733527.2827753351, - 96586.20076828018 - ], - "y": [ - -763867.361534357, - -185632.1535476023 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 733527.2827753351, - 96137.68930318531 - ], - "y": [ - -763867.361534357, - -185003.46048722725 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -502221.2423468795, - 97194.9145170215 - ], - "y": [ - 943963.3176441911, - -186711.99171266862 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -502221.2423468795, - 97299.95816584109 - ], - "y": [ - 943963.3176441911, - -187098.08472081405 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -502221.2423468795, - 97300.96068285858 - ], - "y": [ - 943963.3176441911, - -186969.98767638186 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -233364.95639678233, - 96950.1808551135 - ], - "y": [ - -325456.00848321256, - -186782.64173592345 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -233364.95639678233, - 97299.95816584109 - ], - "y": [ - -325456.00848321256, - -187098.08472081405 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -233364.95639678233, - 97300.96068285858 - ], - "y": [ - -325456.00848321256, - -186969.98767638186 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -941688.012740526, - 96390.43113801478 - ], - "y": [ - 172395.02771845582, - -187389.2021586 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 561686.4496072094, - 96858.54175843939 - ], - "y": [ - 749192.7196467996, - -188364.15112362726 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 561686.4496072094, - 97167.39841072715 - ], - "y": [ - 749192.7196467996, - -188088.5917691664 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 561686.4496072094, - 97743.58448295263 - ], - "y": [ - 749192.7196467996, - -187984.06459012086 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 561686.4496072094, - 97449.0985514171 - ], - "y": [ - 749192.7196467996, - -188713.3588507996 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 561686.4496072094, - 97642.36452938811 - ], - "y": [ - 749192.7196467996, - -188624.00866552212 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 561686.4496072094, - 97990.33956338989 - ], - "y": [ - 749192.7196467996, - -188363.5387691212 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 961212.1187088809, - 98636.37989407925 - ], - "y": [ - 624359.6727765179, - -187634.18143546607 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 961212.1187088809, - 97499.45757321935 - ], - "y": [ - 624359.6727765179, - -186777.46669602653 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 961212.1187088809, - 97494.95806383107 - ], - "y": [ - 624359.6727765179, - -186820.56521939114 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 961212.1187088809, - 96707.92401672102 - ], - "y": [ - 624359.6727765179, - -186867.77653250156 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 961212.1187088809, - 97387.15964980441 - ], - "y": [ - 624359.6727765179, - -186618.4433734245 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 961212.1187088809, - 96595.88973241366 - ], - "y": [ - 624359.6727765179, - -187699.43272561228 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 755173.4644584443, - 96547.16032979287 - ], - "y": [ - 480229.27434392227, - -185956.04238149663 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 755173.4644584443, - 96300.87116130441 - ], - "y": [ - 480229.27434392227, - -185637.3755433982 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -476509.16832876677, - 97788.7651245566 - ], - "y": [ - -696677.5803865421, - -187524.54517428228 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -476509.16832876677, - 97368.18786729996 - ], - "y": [ - -696677.5803865421, - -187761.64483234545 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -476509.16832876677, - 97615.97056569872 - ], - "y": [ - -696677.5803865421, - -187366.18291352072 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -476509.16832876677, - 97749.77214743374 - ], - "y": [ - -696677.5803865421, - -187529.40680193529 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -476509.16832876677, - 97737.47168433828 - ], - "y": [ - -696677.5803865421, - -187454.64105987392 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 287186.1271102667, - 95667.97156819428 - ], - "y": [ - 293712.9911647245, - -184666.37763325783 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 287186.1271102667, - 96281.8187118494 - ], - "y": [ - 293712.9911647245, - -185185.18619115572 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 287186.1271102667, - 96004.06807647034 - ], - "y": [ - 293712.9911647245, - -185160.1993215984 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 287186.1271102667, - 96786.33551603762 - ], - "y": [ - 293712.9911647245, - -186199.38823877013 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -561334.5561021474, - 97878.18936700777 - ], - "y": [ - 387741.5291431936, - -186691.95573974657 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -561334.5561021474, - 97384.85502032931 - ], - "y": [ - 387741.5291431936, - -186109.56426562366 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -561334.5561021474, - 98088.69457083048 - ], - "y": [ - 387741.5291431936, - -186418.54900034756 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -561334.5561021474, - 97790.18756915494 - ], - "y": [ - 387741.5291431936, - -186324.3395864327 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 485523.02644619404, - 97334.69528656456 - ], - "y": [ - -232458.25080596138, - -187248.01430917686 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 485523.02644619404, - 97343.70893048414 - ], - "y": [ - -232458.25080596138, - -187466.71062113094 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 485523.02644619404, - 98022.64385800273 - ], - "y": [ - -232458.25080596138, - -188115.28176793884 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 485523.02644619404, - 97909.08890877801 - ], - "y": [ - -232458.25080596138, - -187716.48506167036 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 485523.02644619404, - 96735.91203018947 - ], - "y": [ - -232458.25080596138, - -186790.41009242184 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 485523.02644619404, - 97379.30529940335 - ], - "y": [ - -232458.25080596138, - -188144.50874112692 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 485523.02644619404, - 97912.68866754905 - ], - "y": [ - -232458.25080596138, - -187644.81497540837 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 485523.02644619404, - 97483.5508578201 - ], - "y": [ - -232458.25080596138, - -187452.13970792587 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 485523.02644619404, - 97453.80616460227 - ], - "y": [ - -232458.25080596138, - -187779.38447152777 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 485523.02644619404, - 97390.56459064402 - ], - "y": [ - -232458.25080596138, - -187503.58157137837 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 485523.02644619404, - 97854.95892464767 - ], - "y": [ - -232458.25080596138, - -187819.7552003765 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 485523.02644619404, - 98229.18483310309 - ], - "y": [ - -232458.25080596138, - -187646.46474410285 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 485523.02644619404, - 97689.45585714692 - ], - "y": [ - -232458.25080596138, - -187727.83570354496 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 485523.02644619404, - 96459.9064706218 - ], - "y": [ - -232458.25080596138, - -187950.17000928946 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97368.18786729996 - ], - "y": [ - -387304.96830664296, - -187761.64483234545 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 98220.8617121839 - ], - "y": [ - -387304.96830664296, - -187918.25825739285 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97743.37633435942 - ], - "y": [ - -387304.96830664296, - -187673.30496193952 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97896.16988465277 - ], - "y": [ - -387304.96830664296, - -188059.71110303834 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97276.66123026267 - ], - "y": [ - -387304.96830664296, - -188071.01532488095 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97720.29522867472 - ], - "y": [ - -387304.96830664296, - -188007.70634351147 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97788.7651245566 - ], - "y": [ - -387304.96830664296, - -187524.54517428228 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97988.47049740942 - ], - "y": [ - -387304.96830664296, - -188127.41684105122 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 96786.33551603762 - ], - "y": [ - -387304.96830664296, - -186199.38823877013 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97334.69528656456 - ], - "y": [ - -387304.96830664296, - -187248.01430917686 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 98169.99665670788 - ], - "y": [ - -387304.96830664296, - -188138.2687240919 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97706.1575554865 - ], - "y": [ - -387304.96830664296, - -187963.5766486151 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97314.87265253808 - ], - "y": [ - -387304.96830664296, - -188544.97753253547 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97929.82001151697 - ], - "y": [ - -387304.96830664296, - -187850.79133717477 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97400.16397729573 - ], - "y": [ - -387304.96830664296, - -187256.5867709403 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97928.27341274354 - ], - "y": [ - -387304.96830664296, - -188029.4838038799 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97615.97056569872 - ], - "y": [ - -387304.96830664296, - -187366.18291352072 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97923.16505107327 - ], - "y": [ - -387304.96830664296, - -187510.56934074408 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97607.80752654132 - ], - "y": [ - -387304.96830664296, - -187927.5772533455 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97786.29869250092 - ], - "y": [ - -387304.96830664296, - -188053.78221453892 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97805.14139405916 - ], - "y": [ - -387304.96830664296, - -187985.91644521983 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 98093.39526957169 - ], - "y": [ - -387304.96830664296, - -188319.77932730978 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97448.93124443709 - ], - "y": [ - -387304.96830664296, - -188058.86903379706 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97659.20648661858 - ], - "y": [ - -387304.96830664296, - -187950.90711760413 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97773.13707838414 - ], - "y": [ - -387304.96830664296, - -188156.86956179672 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97290.81332207196 - ], - "y": [ - -387304.96830664296, - -188229.6880717756 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97691.44923546405 - ], - "y": [ - -387304.96830664296, - -187953.60593885268 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97536.70985088356 - ], - "y": [ - -387304.96830664296, - -187135.60577403157 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 98040.70809859729 - ], - "y": [ - -387304.96830664296, - -188484.82353855815 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97682.17810885303 - ], - "y": [ - -387304.96830664296, - -188095.58751833517 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97902.9875639131 - ], - "y": [ - -387304.96830664296, - -187872.1074932044 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 98103.51583993803 - ], - "y": [ - -387304.96830664296, - -187955.31108521658 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97737.47168433828 - ], - "y": [ - -387304.96830664296, - -187454.64105987392 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97433.16878255778 - ], - "y": [ - -387304.96830664296, - -188110.34340208996 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 98011.69742537098 - ], - "y": [ - -387304.96830664296, - -188020.26106810436 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97956.78235187841 - ], - "y": [ - -387304.96830664296, - -188084.40086565504 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97712.75424892707 - ], - "y": [ - -387304.96830664296, - -188071.6303022562 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -374210.50593961857, - 97337.3673240496 - ], - "y": [ - -387304.96830664296, - -188480.56911294378 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 712593.3587444853, - 96357.32745947987 - ], - "y": [ - 2464.0321624218586, - -189671.69440695026 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 712593.3587444853, - 96262.42166171632 - ], - "y": [ - 2464.0321624218586, - -189769.90898797516 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 712593.3587444853, - 95826.03997621946 - ], - "y": [ - 2464.0321624218586, - -190284.9707253069 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -482613.4945723788, - 98066.1726574899 - ], - "y": [ - -546694.4807160796, - -188031.62889293503 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -482613.4945723788, - 97701.3804478227 - ], - "y": [ - -546694.4807160796, - -186743.00019037828 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -482613.4945723788, - 98084.85055027793 - ], - "y": [ - -546694.4807160796, - -188003.55552109788 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -482613.4945723788, - 97165.59160948182 - ], - "y": [ - -546694.4807160796, - -188363.56661918454 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -452038.74419801694, - 97497.40137546581 - ], - "y": [ - -18247.514801625897, - -187538.8698057885 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -452038.74419801694, - 97476.84212265511 - ], - "y": [ - -18247.514801625897, - -187578.7945424208 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -452038.74419801694, - 97172.85679925286 - ], - "y": [ - -18247.514801625897, - -187904.2446480533 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -452038.74419801694, - 97585.2552421273 - ], - "y": [ - -18247.514801625897, - -187852.2157456399 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -452038.74419801694, - 98255.45010528169 - ], - "y": [ - -18247.514801625897, - -188090.9736323963 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -452038.74419801694, - 97482.29772041427 - ], - "y": [ - -18247.514801625897, - -187746.85639765018 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -452038.74419801694, - 97230.27471512488 - ], - "y": [ - -18247.514801625897, - -187707.84632557898 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -452038.74419801694, - 97465.08902518246 - ], - "y": [ - -18247.514801625897, - -187515.5351218408 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -452038.74419801694, - 98030.3922687115 - ], - "y": [ - -18247.514801625897, - -187274.8884360902 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -452038.74419801694, - 98164.50513674611 - ], - "y": [ - -18247.514801625897, - -187605.70324073057 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -452038.74419801694, - 98102.01760177093 - ], - "y": [ - -18247.514801625897, - -187987.25877007708 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -452038.74419801694, - 98040.98610521741 - ], - "y": [ - -18247.514801625897, - -188174.96094340537 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -452038.74419801694, - 97300.96068285858 - ], - "y": [ - -18247.514801625897, - -186969.98767638186 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -452038.74419801694, - 97299.95816584109 - ], - "y": [ - -18247.514801625897, - -187098.08472081405 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -452038.74419801694, - 96893.86441244776 - ], - "y": [ - -18247.514801625897, - -187115.92005878876 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -535310.6977113642, - 98201.32974009505 - ], - "y": [ - 194804.46059409328, - -188346.87533387216 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 381373.32463077886, - 98883.68742329624 - ], - "y": [ - 772791.1447093579, - -187903.51839239706 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 381373.32463077886, - 98667.49767503393 - ], - "y": [ - 772791.1447093579, - -188043.9321563204 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 381373.32463077886, - 97488.73626458432 - ], - "y": [ - 772791.1447093579, - -188112.71027176845 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -974324.3390105796, - 97162.69508453069 - ], - "y": [ - 235715.32964076058, - -188349.65680053786 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 806644.7911977044, - 96010.7115980084 - ], - "y": [ - -491094.78861466685, - -188550.03414205718 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 127035.20726680085, - 95771.1095203462 - ], - "y": [ - 4389.73784561969, - -188189.81482384 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 127035.20726680085, - 95763.40443589797 - ], - "y": [ - 4389.73784561969, - -188215.09477527425 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 127035.20726680085, - 95244.0575474311 - ], - "y": [ - 4389.73784561969, - -188800.80256482895 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -613747.5981969669, - 96872.15210964113 - ], - "y": [ - 833497.7104795736, - -189449.1232264199 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -613747.5981969669, - 96379.22200820879 - ], - "y": [ - 833497.7104795736, - -189768.43355961813 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -613747.5981969669, - 96906.24888628504 - ], - "y": [ - 833497.7104795736, - -188740.94405652286 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -613747.5981969669, - 96854.63537850163 - ], - "y": [ - 833497.7104795736, - -189567.65591494428 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -613747.5981969669, - 97264.45498533218 - ], - "y": [ - 833497.7104795736, - -188309.81027713025 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -613747.5981969669, - 98010.49563338193 - ], - "y": [ - 833497.7104795736, - -188392.79233416848 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -613747.5981969669, - 97612.43902974202 - ], - "y": [ - 833497.7104795736, - -189319.79863515618 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -825092.242771966, - 97623.61756268641 - ], - "y": [ - 408212.97885851806, - -189378.6089809849 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -825092.242771966, - 97499.04801278567 - ], - "y": [ - 408212.97885851806, - -189178.14899455837 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -825092.242771966, - 97608.46277176453 - ], - "y": [ - 408212.97885851806, - -188386.42729721224 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -825092.242771966, - 97167.39841072715 - ], - "y": [ - 408212.97885851806, - -188088.5917691664 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -825092.242771966, - 95934.14872105536 - ], - "y": [ - 408212.97885851806, - -189445.19176040665 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -825092.242771966, - 97455.35219073194 - ], - "y": [ - 408212.97885851806, - -187087.48998708234 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 820212.0126397252, - 97335.19348886795 - ], - "y": [ - 49207.25516157076, - -188826.42779028194 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -911815.111465116, - 98225.34302642361 - ], - "y": [ - -33771.355710310316, - -188553.87487120138 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -911815.111465116, - 98229.77888928792 - ], - "y": [ - -33771.355710310316, - -187941.06540326262 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -911815.111465116, - 98675.12932763455 - ], - "y": [ - -33771.355710310316, - -186336.77161351635 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 489670.6800430286, - 97482.53862767345 - ], - "y": [ - 496911.4186762655, - -189771.93099297164 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 489670.6800430286, - 97276.46828922024 - ], - "y": [ - 496911.4186762655, - -188529.93400312582 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 489670.6800430286, - 97499.88151314572 - ], - "y": [ - 496911.4186762655, - -189358.06753687156 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 959231.5187373273, - 95737.0210501743 - ], - "y": [ - 154504.9866469945, - -187993.35866484616 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 959231.5187373273, - 96247.5730261708 - ], - "y": [ - 154504.9866469945, - -187229.13331112568 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -927929.0330374057, - 96991.17451689237 - ], - "y": [ - -912578.2146259764, - -187164.0688469574 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -927929.0330374057, - 97052.70205106144 - ], - "y": [ - -912578.2146259764, - -186825.88912431858 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 588029.7165107527, - 96299.26984037684 - ], - "y": [ - -452817.84163980297, - -188609.42242236514 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 588029.7165107527, - 96500.32458861038 - ], - "y": [ - -452817.84163980297, - -188787.1864357604 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 588029.7165107527, - 96778.83528846483 - ], - "y": [ - -452817.84163980297, - -188843.1765843312 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 588029.7165107527, - 96483.80491367223 - ], - "y": [ - -452817.84163980297, - -188754.528514879 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -426997.16687418986, - 97878.18936700777 - ], - "y": [ - 887978.6196577046, - -186691.95573974657 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -426997.16687418986, - 98088.69457083048 - ], - "y": [ - 887978.6196577046, - -186418.54900034756 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -426997.16687418986, - 102537.64337792993 - ], - "y": [ - 887978.6196577046, - -184684.6304903929 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -426997.16687418986, - 97336.72314742803 - ], - "y": [ - 887978.6196577046, - -186003.21438929535 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -426997.16687418986, - 97384.85502032931 - ], - "y": [ - 887978.6196577046, - -186109.56426562366 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -426997.16687418986, - 97739.50461726454 - ], - "y": [ - 887978.6196577046, - -186120.97182205616 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -426997.16687418986, - 97790.18756915494 - ], - "y": [ - 887978.6196577046, - -186324.3395864327 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -426997.16687418986, - 98423.75905911079 - ], - "y": [ - 887978.6196577046, - -186722.7974234636 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 712085.8290284196, - 100136.85344995526 - ], - "y": [ - -661416.3336804246, - -188094.74107414478 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 712085.8290284196, - 99551.68465587133 - ], - "y": [ - -661416.3336804246, - -188088.6155039975 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 712085.8290284196, - 100437.39062185503 - ], - "y": [ - -661416.3336804246, - -188060.38234672905 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 712085.8290284196, - 99551.98543303015 - ], - "y": [ - -661416.3336804246, - -188067.26794690712 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 712085.8290284196, - 99562.25712118535 - ], - "y": [ - -661416.3336804246, - -187621.21847052537 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 435772.6139411109, - 99359.06703624275 - ], - "y": [ - -428227.62305677007, - -188157.58246492682 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -440084.7440775184, - 98574.50972172228 - ], - "y": [ - -98018.59328603357, - -188516.84498886167 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -440084.7440775184, - 98667.49767503393 - ], - "y": [ - -98018.59328603357, - -188043.9321563204 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -440084.7440775184, - 98883.68742329624 - ], - "y": [ - -98018.59328603357, - -187903.51839239706 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -440084.7440775184, - 98538.96596090084 - ], - "y": [ - -98018.59328603357, - -187915.12744256484 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -440084.7440775184, - 99762.90131115422 - ], - "y": [ - -98018.59328603357, - -188443.7578148925 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 710759.9155269597, - 98977.8256826855 - ], - "y": [ - 661880.6475154626, - -188116.10771085072 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 710759.9155269597, - 97325.59157415244 - ], - "y": [ - 661880.6475154626, - -187264.47609357847 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -215550.8344180117, - 100141.87894949828 - ], - "y": [ - -117998.84324321552, - -188176.21031836848 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -215550.8344180117, - 99845.35414701192 - ], - "y": [ - -117998.84324321552, - -188170.57903762278 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 891032.4039561477, - 98971.68304848456 - ], - "y": [ - -483940.39773233776, - -188294.6644996429 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 790332.191399174, - 99673.93123472382 - ], - "y": [ - 945279.7207307717, - -188036.63953174325 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 790332.191399174, - 99291.99320881635 - ], - "y": [ - 945279.7207307717, - -188101.5543653428 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 963066.2603491714, - 99276.35931151945 - ], - "y": [ - 493187.76874040184, - -188248.6764013949 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -685442.0011943391, - 99120.91791864607 - ], - "y": [ - -998343.7313215322, - -188319.83415129757 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 57957.366801817625, - 98129.8335044742 - ], - "y": [ - 213652.26322442287, - -187308.64998441696 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 57957.366801817625, - 99397.55134035554 - ], - "y": [ - 213652.26322442287, - -188097.50692052435 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -730374.7417052435, - 97698.15736668535 - ], - "y": [ - 392420.49640112574, - -186839.17366214117 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -47892.04997571828, - 97598.41715003968 - ], - "y": [ - -399813.58192147256, - -187109.55145493208 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -47892.04997571828, - 97965.90473223805 - ], - "y": [ - -399813.58192147256, - -187204.27240844848 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -47892.04997571828, - 98426.11814680099 - ], - "y": [ - -399813.58192147256, - -187291.09671769937 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 610875.7945680574, - 97740.36484145897 - ], - "y": [ - 847862.16445857, - -187808.73897039745 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 632616.1117033211, - 99184.60882109228 - ], - "y": [ - 252398.00249854306, - -188134.4762723594 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 632616.1117033211, - 99142.08519452307 - ], - "y": [ - 252398.00249854306, - -188272.49029985358 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 632616.1117033211, - 99316.2243501031 - ], - "y": [ - 252398.00249854306, - -188206.77019901376 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -105937.42716478017, - 98622.91972235353 - ], - "y": [ - -122681.34997729407, - -188508.96860365788 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -105937.42716478017, - 98628.35943001318 - ], - "y": [ - -122681.34997729407, - -188262.8988252888 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 993726.2469277983, - 97052.70205106144 - ], - "y": [ - -220228.04861147137, - -186825.88912431858 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 993726.2469277983, - 96991.17451689237 - ], - "y": [ - -220228.04861147137, - -187164.0688469574 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 669797.903895613, - 96995.58808119217 - ], - "y": [ - 366595.0386351318, - -187569.11179548127 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 669797.903895613, - 96874.32517213062 - ], - "y": [ - 366595.0386351318, - -186292.02017205243 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 669797.903895613, - 96984.11595684849 - ], - "y": [ - 366595.0386351318, - -187472.02889830602 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 669797.903895613, - 97109.16179890749 - ], - "y": [ - 366595.0386351318, - -187099.9147383517 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 669797.903895613, - 97136.19437689305 - ], - "y": [ - 366595.0386351318, - -186900.76235636437 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -610474.3031996711, - 97491.9260662067 - ], - "y": [ - 478391.1169981494, - -188027.44881588852 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -359953.17372292135, - 96341.35508815081 - ], - "y": [ - -477039.16144049476, - -185937.20459336432 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 800919.0893525608, - 95591.49480913648 - ], - "y": [ - -66359.28264260315, - -188680.97177115767 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 800919.0893525608, - 96362.21507081333 - ], - "y": [ - -66359.28264260315, - -188432.67762655424 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 800919.0893525608, - 96805.5627237504 - ], - "y": [ - -66359.28264260315, - -188121.5471579039 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 800919.0893525608, - 96743.02101349403 - ], - "y": [ - -66359.28264260315, - -187854.13914095613 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 288707.8838759225, - 98077.79681744472 - ], - "y": [ - -666477.8792067101, - -187785.39966082262 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 288707.8838759225, - 98078.46725482005 - ], - "y": [ - -666477.8792067101, - -188432.80628645205 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 288707.8838759225, - 97340.80449807804 - ], - "y": [ - -666477.8792067101, - -187926.7782463939 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 288707.8838759225, - 98528.28228471124 - ], - "y": [ - -666477.8792067101, - -188158.79572465117 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 288707.8838759225, - 97488.0322813689 - ], - "y": [ - -666477.8792067101, - -189762.7876085155 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -788593.7694426945, - 96435.9592073502 - ], - "y": [ - 927578.3245770739, - -189266.35842376057 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -699791.7379094269, - 97411.333447029 - ], - "y": [ - 223346.97203642075, - -186732.12278519588 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -576254.7272775868, - 97430.46651931974 - ], - "y": [ - 417199.34494340996, - -188614.55061231283 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -576254.7272775868, - 97362.69630546733 - ], - "y": [ - 417199.34494340996, - -188647.95316923055 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -576254.7272775868, - 97147.4098591697 - ], - "y": [ - 417199.34494340996, - -187592.5524397363 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -576254.7272775868, - 96935.63520473371 - ], - "y": [ - 417199.34494340996, - -188932.9501046265 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -576254.7272775868, - 97289.22073553668 - ], - "y": [ - 417199.34494340996, - -188606.43169921683 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -576254.7272775868, - 97850.12598200802 - ], - "y": [ - 417199.34494340996, - -188170.21924476055 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -576254.7272775868, - 97597.36616865019 - ], - "y": [ - 417199.34494340996, - -188549.55255864532 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 962442.7194031442, - 96412.37649005053 - ], - "y": [ - -588673.8683068216, - -187962.6323277363 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 962442.7194031442, - 97375.63672739729 - ], - "y": [ - -588673.8683068216, - -187191.96052360526 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 193663.74090908578, - 96830.34367432375 - ], - "y": [ - -579415.6741968989, - -186920.5220397891 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 193663.74090908578, - 96727.0857416317 - ], - "y": [ - -579415.6741968989, - -186786.62616005604 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 193663.74090908578, - 96968.7576874346 - ], - "y": [ - -579415.6741968989, - -186385.05781979268 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 97743.37633435942 - ], - "y": [ - -326642.1044466499, - -187673.30496193952 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 97788.7651245566 - ], - "y": [ - -326642.1044466499, - -187524.54517428228 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 97706.1575554865 - ], - "y": [ - -326642.1044466499, - -187963.5766486151 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 97773.13707838414 - ], - "y": [ - -326642.1044466499, - -188156.86956179672 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 98028.98765417963 - ], - "y": [ - -326642.1044466499, - -188061.28832562154 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 97254.19037202669 - ], - "y": [ - -326642.1044466499, - -187390.1456922822 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 98343.20918176853 - ], - "y": [ - -326642.1044466499, - -188062.07603085358 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 97314.87265253808 - ], - "y": [ - -326642.1044466499, - -188544.97753253547 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 97448.93124443709 - ], - "y": [ - -326642.1044466499, - -188058.86903379706 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 97720.29522867472 - ], - "y": [ - -326642.1044466499, - -188007.70634351147 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 98178.54170307206 - ], - "y": [ - -326642.1044466499, - -188037.6869183598 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 98199.86102071151 - ], - "y": [ - -326642.1044466499, - -188212.0229575658 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 97368.18786729996 - ], - "y": [ - -326642.1044466499, - -187761.64483234545 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 97400.16397729573 - ], - "y": [ - -326642.1044466499, - -187256.5867709403 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 97928.27341274354 - ], - "y": [ - -326642.1044466499, - -188029.4838038799 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 98220.8617121839 - ], - "y": [ - -326642.1044466499, - -187918.25825739285 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 97691.44923546405 - ], - "y": [ - -326642.1044466499, - -187953.60593885268 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 97744.85805549823 - ], - "y": [ - -326642.1044466499, - -187930.06229443732 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 98056.94048479544 - ], - "y": [ - -326642.1044466499, - -188090.36866231312 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 97615.97056569872 - ], - "y": [ - -326642.1044466499, - -187366.18291352072 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 97951.56325025932 - ], - "y": [ - -326642.1044466499, - -188036.00538210757 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 98093.39526957169 - ], - "y": [ - -326642.1044466499, - -188319.77932730978 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 97888.06964139262 - ], - "y": [ - -326642.1044466499, - -188133.31477841723 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 97749.77214743374 - ], - "y": [ - -326642.1044466499, - -187529.40680193529 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 97737.47168433828 - ], - "y": [ - -326642.1044466499, - -187454.64105987392 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 98115.52004533702 - ], - "y": [ - -326642.1044466499, - -188173.70843883988 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 192898.7761189127, - 97337.3673240496 - ], - "y": [ - -326642.1044466499, - -188480.56911294378 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -636627.180160112, - 99023.4635169911 - ], - "y": [ - -650987.8956618933, - -187844.47640926004 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -636627.180160112, - 97788.7651245566 - ], - "y": [ - -650987.8956618933, - -187524.54517428228 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -636627.180160112, - 99401.61250638886 - ], - "y": [ - -650987.8956618933, - -187872.30401330232 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -636627.180160112, - 97749.77214743374 - ], - "y": [ - -650987.8956618933, - -187529.40680193529 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 823874.0941544147, - 97878.18936700777 - ], - "y": [ - 764290.832324826, - -186691.95573974657 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 823874.0941544147, - 97384.85502032931 - ], - "y": [ - 764290.832324826, - -186109.56426562366 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 823874.0941544147, - 98088.69457083048 - ], - "y": [ - 764290.832324826, - -186418.54900034756 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 823874.0941544147, - 97790.18756915494 - ], - "y": [ - 764290.832324826, - -186324.3395864327 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 787091.7877283216, - 97878.18936700777 - ], - "y": [ - -965373.510477915, - -186691.95573974657 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 787091.7877283216, - 97384.85502032931 - ], - "y": [ - -965373.510477915, - -186109.56426562366 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 787091.7877283216, - 98088.69457083048 - ], - "y": [ - -965373.510477915, - -186418.54900034756 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 787091.7877283216, - 97790.18756915494 - ], - "y": [ - -965373.510477915, - -186324.3395864327 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -678923.3564325646, - 98987.744183523 - ], - "y": [ - 7794.401001574247, - -187796.24083019167 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -678923.3564325646, - 99579.00966292991 - ], - "y": [ - 7794.401001574247, - -187732.98575521674 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -678923.3564325646, - 98635.38198452107 - ], - "y": [ - 7794.401001574247, - -187983.71489758827 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -536139.8345770207, - 100098.40192877872 - ], - "y": [ - -692135.5560318063, - -188083.6875223691 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 483038.4019771743, - 98017.95961808166 - ], - "y": [ - 862693.8081331758, - -187897.73274734168 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 483038.4019771743, - 99022.78768529206 - ], - "y": [ - 862693.8081331758, - -188059.30925306716 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -615542.8321597268, - 96435.29713124092 - ], - "y": [ - -737450.0551246805, - -189142.09064355088 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -615542.8321597268, - 96392.03219267243 - ], - "y": [ - -737450.0551246805, - -188270.16098356986 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -615542.8321597268, - 96931.12324851674 - ], - "y": [ - -737450.0551246805, - -188583.01081795827 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -615542.8321597268, - 95651.87929649846 - ], - "y": [ - -737450.0551246805, - -189066.13649801663 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -615542.8321597268, - 95594.04154313843 - ], - "y": [ - -737450.0551246805, - -188752.9247450727 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -615542.8321597268, - 96463.50079272543 - ], - "y": [ - -737450.0551246805, - -187487.7635363833 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -615542.8321597268, - 96120.0822298696 - ], - "y": [ - -737450.0551246805, - -189713.64541984547 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -615542.8321597268, - 96240.44430881485 - ], - "y": [ - -737450.0551246805, - -189555.82412272718 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -615542.8321597268, - 96101.99869734746 - ], - "y": [ - -737450.0551246805, - -189852.59554859076 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -615542.8321597268, - 96315.36819369205 - ], - "y": [ - -737450.0551246805, - -189218.8087403817 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -615542.8321597268, - 95937.25203342551 - ], - "y": [ - -737450.0551246805, - -190167.76777641778 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -615542.8321597268, - 96235.33414286007 - ], - "y": [ - -737450.0551246805, - -189645.6152674434 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -615542.8321597268, - 96530.33748860421 - ], - "y": [ - -737450.0551246805, - -188532.9554546275 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -615542.8321597268, - 96182.08723044166 - ], - "y": [ - -737450.0551246805, - -189523.58352465904 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -615542.8321597268, - 96258.26403190757 - ], - "y": [ - -737450.0551246805, - -189343.14144035138 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -425154.8175794468, - 98709.8651975024 - ], - "y": [ - -475462.72028761625, - -188235.48072958956 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -425154.8175794468, - 99109.15521458666 - ], - "y": [ - -475462.72028761625, - -188180.02447286362 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 389129.0935796654, - 100640.4787093486 - ], - "y": [ - -878946.7812968763, - -188078.15933603563 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 389129.0935796654, - 100235.20982182995 - ], - "y": [ - -878946.7812968763, - -187990.69685232927 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -622531.8936491543, - 102213.573130387 - ], - "y": [ - -960923.7018518934, - -188502.1043309098 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -622531.8936491543, - 100665.20298807592 - ], - "y": [ - -960923.7018518934, - -188206.01901300566 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -622531.8936491543, - 101380.72545035236 - ], - "y": [ - -960923.7018518934, - -188368.05619089317 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -942230.4813874803, - 99856.27897972005 - ], - "y": [ - -309835.924111922, - -187629.39631769145 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -942230.4813874803, - 99786.36456658994 - ], - "y": [ - -309835.924111922, - -187643.6924245978 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -942230.4813874803, - 99683.00699846164 - ], - "y": [ - -309835.924111922, - -187638.51851489613 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -702245.1002356531, - 97369.40146033755 - ], - "y": [ - -581931.2077126874, - -188302.59803287973 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 167597.5150278466, - 98812.91818171015 - ], - "y": [ - -193151.43113910628, - -187804.318709099 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 426236.00695759256, - 97843.27029212235 - ], - "y": [ - -320810.1968006805, - -188499.9137700682 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 426236.00695759256, - 97167.39841072715 - ], - "y": [ - -320810.1968006805, - -188088.5917691664 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 426236.00695759256, - 97743.58448295263 - ], - "y": [ - -320810.1968006805, - -187984.06459012086 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 426236.00695759256, - 97449.0985514171 - ], - "y": [ - -320810.1968006805, - -188713.3588507996 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 426236.00695759256, - 97728.72992702796 - ], - "y": [ - -320810.1968006805, - -188417.0795439115 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 102710.81065561782, - 98904.72563619397 - ], - "y": [ - 735584.2491990248, - -188684.44500197342 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 102710.81065561782, - 98942.09530630929 - ], - "y": [ - 735584.2491990248, - -188616.47166411072 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 102710.81065561782, - 98891.2416273708 - ], - "y": [ - 735584.2491990248, - -189238.12878373484 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 772772.6984495806, - 97368.18786729996 - ], - "y": [ - 571406.0633091565, - -187761.64483234545 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 772772.6984495806, - 97400.16397729573 - ], - "y": [ - 571406.0633091565, - -187256.5867709403 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 772772.6984495806, - 97615.97056569872 - ], - "y": [ - 571406.0633091565, - -187366.18291352072 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 772772.6984495806, - 97923.16505107327 - ], - "y": [ - 571406.0633091565, - -187510.56934074408 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 772772.6984495806, - 97788.7651245566 - ], - "y": [ - 571406.0633091565, - -187524.54517428228 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 772772.6984495806, - 97749.77214743374 - ], - "y": [ - 571406.0633091565, - -187529.40680193529 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 772772.6984495806, - 97737.47168433828 - ], - "y": [ - 571406.0633091565, - -187454.64105987392 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 966475.7136151139, - 98417.88816057792 - ], - "y": [ - -31191.862881997156, - -187745.42964825404 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 787936.2857831245, - 98932.31091884513 - ], - "y": [ - -482301.2879788475, - -187594.8777657927 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 787936.2857831245, - 98926.20655583622 - ], - "y": [ - -482301.2879788475, - -188109.5947916895 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 787936.2857831245, - 98881.20399257346 - ], - "y": [ - -482301.2879788475, - -188135.7951117508 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 787936.2857831245, - 98873.6590998779 - ], - "y": [ - -482301.2879788475, - -188126.67429510137 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 787936.2857831245, - 98776.08147395353 - ], - "y": [ - -482301.2879788475, - -188068.89540782082 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 787936.2857831245, - 98916.08043593282 - ], - "y": [ - -482301.2879788475, - -188138.17806449422 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 787936.2857831245, - 98775.64297666437 - ], - "y": [ - -482301.2879788475, - -188113.8147030654 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 787936.2857831245, - 98833.5386160878 - ], - "y": [ - -482301.2879788475, - -188119.49823623613 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 787936.2857831245, - 98779.4951496633 - ], - "y": [ - -482301.2879788475, - -188123.9780570342 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 787936.2857831245, - 98769.87019965112 - ], - "y": [ - -482301.2879788475, - -188121.51859750494 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 787936.2857831245, - 98763.69912444155 - ], - "y": [ - -482301.2879788475, - -188082.81454332572 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 787936.2857831245, - 98715.38337956829 - ], - "y": [ - -482301.2879788475, - -188023.85098966694 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 787936.2857831245, - 98838.01226486915 - ], - "y": [ - -482301.2879788475, - -188038.4334288893 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 787936.2857831245, - 98731.25835265023 - ], - "y": [ - -482301.2879788475, - -188097.6602407291 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 787936.2857831245, - 98794.9356782363 - ], - "y": [ - -482301.2879788475, - -188124.65543545736 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 787936.2857831245, - 98875.12446310604 - ], - "y": [ - -482301.2879788475, - -188079.8329504583 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 787936.2857831245, - 98845.6917714939 - ], - "y": [ - -482301.2879788475, - -188129.3743830729 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 417358.92862643854, - 96813.45598094136 - ], - "y": [ - -273644.2666449306, - -186085.13248614842 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 417358.92862643854, - 96835.92874774396 - ], - "y": [ - -273644.2666449306, - -186068.28536481576 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 417358.92862643854, - 97299.95816584109 - ], - "y": [ - -273644.2666449306, - -187098.08472081405 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 417358.92862643854, - 97300.96068285858 - ], - "y": [ - -273644.2666449306, - -186969.98767638186 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 417358.92862643854, - 96172.09176973494 - ], - "y": [ - -273644.2666449306, - -185427.49168366197 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 530081.4122312207, - 97988.12714007127 - ], - "y": [ - -564572.1511337791, - -187642.84655158204 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 530081.4122312207, - 98185.14683392025 - ], - "y": [ - -564572.1511337791, - -188287.79217814526 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 530081.4122312207, - 97299.95816584109 - ], - "y": [ - -564572.1511337791, - -187098.08472081405 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - 530081.4122312207, - 97300.96068285858 - ], - "y": [ - -564572.1511337791, - -186969.98767638186 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -761342.1567954683, - 98502.26373555082 - ], - "y": [ - -879096.8240374251, - -188549.32629648288 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -761342.1567954683, - 98563.51548863579 - ], - "y": [ - -879096.8240374251, - -188250.077786393 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -290976.6678246506, - 98515.43976060345 - ], - "y": [ - 379673.6622571082, - -188161.7726015361 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -290976.6678246506, - 96994.13649214181 - ], - "y": [ - 379673.6622571082, - -187116.7595416007 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -532125.9656384134, - 98899.25788886541 - ], - "y": [ - 793099.5767054925, - -187821.31284373655 - ] - }, - { - "line": { - "color": "blue" - }, - "mode": "lines", - "name": "Line DataFrame 1", - "type": "scatter", - "x": [ - -532125.9656384134, - 98911.1768536842 - ], - "y": [ - 793099.5767054925, - -187704.11156844525 + -8.70931314589988, + 12.357392504358657, + -8.7260826919713, + 4.065662271629381, + 11.294776229121352, + -4.877931126317019, + 10.735464773050758, + 1.9766510721255532, + -14.105337760358532, + 1.2006505986338571, + -3.6207033444239403, + -14.257892192218716, + -8.873848187901249, + -8.587682700115721, + 4.143478005080861, + -16.49575122113392, + -7.341442978207376, + 13.518267765132038, + 3.3062214109117107, + -10.550472542112104, + -13.43842367977979, + -17.775724172886815, + -16.88866457323332, + -20.078458535264446, + -13.609089026692189, + 15.214928548030311, + -4.696595772523521, + -11.034798616634593, + -15.133094058459976, + 12.062508703553217, + 12.264858481554377, + 8.160790367423271, + -14.017523904948444, + -9.351947080727468, + -21.044655379361654, + -11.812617437253277, + -16.66777117612361, + 4.854968322661051, + -0.8717312459872724, + -15.864865885806555, + -10.341430318799459, + 6.364427526291246, + -9.779926270341624, + 12.007482847799901, + 5.837901720619523, + 13.238289425446844, + -14.892826048440316, + 8.856427933715622, + 4.463646735471876, + -9.319094966806064, + 5.54577061950271, + 7.434816853042825, + 4.419861800187942, + 8.13056547226624, + -18.90667680998491, + 12.088650427686154, + -16.51737999240955, + -21.808337431736717, + 10.99395947595549, + 12.56133355227103, + 10.346063966531668, + 15.372542787508928, + 11.817896192030677, + 3.856271667229114, + 13.994654703623123, + 2.9343925315942663, + 12.534847587601611, + 13.857943359616616, + 9.554993646994419, + -19.082548783402974, + 9.818094885655874, + 13.019268697290483, + 3.036991151725595, + 15.638529308307785, + -15.120708026130123, + 14.47648272320709, + 11.259746152967812, + -1.3794830129963682, + 16.026250170033155, + 15.564078242959852, + 9.046492633179005, + 8.482889237255252, + 13.13334138439849, + 4.922850862135011, + -0.7961280922069971, + -0.4996169964954393, + 0.05568140637087626, + 3.903929720733026, + -0.46294198742947523, + 3.6953497415283403, + 0.18662774037102353, + -9.818550566141576, + 10.55842539554966, + 3.678222001524373, + 0.053550297367818356, + 0.856621852687763, + 1.3912104527253701, + -0.4770555615368528, + 2.615400798349391, + 4.267118850106493, + 0.19554905389570348, + 2.9394073765534405, + 11.767112148395785, + 14.833519421498904, + 0.7384287997164202, + 1.5156603317139905, + -0.3322021397899909, + 5.1789753436846775, + 2.6724256762134506, + 1.8367614336416924, + -0.45136395640744087, + 8.81221207135692, + 15.619567609992188, + 0.6600766914421633, + 2.504070335996154, + 5.036301217583687, + 10.125420984567317, + 2.3475194746754497, + 1.8578277047182765, + 16.22703998820127, + 10.330950595269826, + -2.7658971358148947, + -1.3469441536515045, + 1.1884262032218091, + 1.34723325947132, + -7.899634721756038, + 13.436293495916102, + 4.876856900595087, + 2.2165170496703444, + 4.688434393568661, + 1.5781068877957782, + 10.664924867260249, + -1.9650770136308156, + 3.4031726727872074, + 4.46791567217323, + 2.423269620133291, + -1.3214351689180779, + -0.6852965869211495, + 1.5519172594409865, + -14.833371203957313, + 3.3083445120368262, + 3.2264285628784295, + 2.4091441663593947, + -1.068433738119321, + 5.2801480504009435, + -22.29012892624258, + -20.36215617292208, + 7.913823981349797, + 13.222084019474261, + 12.138422273046151, + -0.67044427073447, + 3.023087990068201, + 3.5667918078441505, + 4.259583645214979, + 9.10959051456911, + -6.382156388167953, + 0.2433322479630976, + 0.02380349387082925, + 8.699575474266641, + 12.517071438970168, + -1.146229319688388, + 3.9370581924207073, + 0.5444623587075397, + 4.0915415204171675, + 4.545978277158587, + 3.4401847524258296, + 4.94332601132337, + -1.192610228575491, + 4.507364771453263, + 1.031823335220865, + 0.7348280496172432, + 3.634152715842353, + 16.329629911080218, + -3.1009710458980595, + -20.811748719318366, + -12.895238590095774, + -17.002840880938518, + -18.003098440617467, + 16.701297491241327, + -12.480679773055163, + -7.382931085378695, + -19.421273330321846, + -20.691366867499276, + -9.645100687981396, + -19.88295886227899, + -1.9168963496698936, + -10.390701474402691, + 1.5398298287809027, + 3.0899835481113476, + -9.922275324532277, + -19.826918228187647, + -1.557939548523383, + -8.463521824269321, + -8.011035787283092, + -12.78697697521233, + -9.305441849488401, + 1.8524320463766142, + -11.773686494743433, + -17.665719101726783, + -14.072787864498226, + -11.097063964411257, + -13.61492915791775, + -21.62141110792667, + -20.386059685612544, + -11.094633503074649, + 4.5578433839924655, + 14.117319922685468, + -20.164417924327868, + 6.667110055897602, + 11.890236135239256, + -21.652278956892705, + 11.007447112644039, + -3.5930927319462813, + -18.6964820290189, + 3.084027228630518, + 0.97624240082111, + -11.766265266493022, + 14.24741948194107, + -17.979596873501833, + -6.820653777368942, + -10.77574769400655, + -21.745942294135354, + -3.531764696083626, + -10.92073044683601, + 14.869539287780078, + -18.821957729217324, + -22.421792234858035, + -6.745269020436412, + -21.149513383400866, + 6.858066475130007, + 8.104064627387435, + 5.619239138287458, + -19.989999481225084, + -22.614370116233452, + 5.779903158930537, + -14.690034116642924, + -19.923354296149782, + -5.526254591027005, + -8.098925907478591, + -9.576328369821745, + -18.706584753985204, + 0.48854393504266813, + -1.1039008970779172, + -15.401206383320957, + -12.304562961281185, + -18.06631769066562, + -15.149575442226098, + -10.871376901885002, + -7.778928421150651, + -8.752639112894949, + -15.903931115499725, + 15.609346006545493, + 1.5684760085920115, + -8.484597070741174, + -5.358300982736624, + -15.633581302070548, + 10.042667039743908, + -5.026990040957724, + -19.098378201640987, + -12.667427561341837, + -8.143815192571171, + -17.044979383409984, + -5.989201968263571, + 2.363041898277314, + 11.077943004444244, + 4.869763475100926, + -6.891484104463479, + 11.228732658549816, + -11.300917366159346, + -10.968335135708738, + 3.562939649882624, + -1.0682502288603475, + -9.777165755904662, + 1.7239387147090457, + -12.871013065755452, + 14.967139301367737, + -3.0291294985260704, + -13.422449302999599, + -17.286588360084316, + 7.9355349788978415, + -17.12555340084468, + -19.59883316402109, + -20.43662854571034, + 8.21393396333229, + 13.376046786916863, + -8.462507797486271, + 12.493705074878276, + -19.681819792477782, + 16.02685507047808, + 2.104592168482062, + -20.89283130051644, + -17.307425668424838, + -21.494525576807252, + 10.006171063011177, + 0.21220123988181472, + -20.993335047761455, + -1.3818741523014602, + 6.719216204864578, + -17.469818897962714, + 15.50842228219919, + 4.681434482402857, + 9.082369476186, + 11.790746027326676, + -16.88850776851199, + -8.459815579199368, + -13.712982036242966, + -9.13963699288518, + 10.555938436544011, + -6.3910984391749635, + -14.409926567080209, + -12.98892143086912, + 10.932611287510872, + -18.68338908240872, + -12.620772053109167, + -7.01079485915003, + -16.196594781142146, + -18.49803243754904, + -3.709575119780668, + -7.296028518713889, + -15.80676283008967, + -6.298434965886316, + 7.093355773757125, + -17.4962316246469, + 11.690563392102176, + -15.116993281123253, + -3.034696504248963, + -13.908851939488352, + 4.133263320515565, + -9.379632668231089, + -3.7125233612740947, + 3.947054364112706, + 15.897727748859731, + -20.177657876026064, + -4.706734631277135, + -4.00309733359404, + -19.651474048276775, + -1.4923075915022013, + -5.608873812184631, + 3.1332077429638634, + 14.09475540936056, + -11.67638321800429, + 11.49537123276815, + 4.46094807351154, + -22.038311752593305, + -9.119484339706066, + -12.77939001745422, + 13.787941597861545, + -16.133541414710997, + -20.343425721138352, + -19.1453352760063, + -10.728995901369837, + -12.827619657844297, + -12.261340069009742, + -7.9391584995377364, + -8.695070081779994, + -12.800156967487696, + -15.292661853197743, + -5.03321986359075, + -12.17454724263504, + -18.17962214270138, + 1.4502256073328483, + -17.779940043559343, + -21.135681044425418, + -4.645162072696039, + -7.347029070418839, + -7.527058336170182, + -1.9964816595471717, + -7.823569674801347, + -14.593758817239356, + -9.279228283652973, + -13.45733067489019, + -16.656508006139845, + -0.6624460657751019, + -1.6670677064266997, + -16.923732291878377, + -13.432933117193492, + -12.716616283024235, + -12.576267823874279, + -4.988851174421002, + -18.604913420528128, + -14.219844714485582, + -5.49676867848029, + -1.782262802725937, + -6.043547508660142, + -16.187835821681944, + -17.55721376048522, + -9.903426371738261, + -15.42783370989261, + -8.467677097413748, + 13.055924620493657, + -11.30389562151104, + 2.401716763258838, + 13.186981664800506, + -6.154949374809172, + 11.682472035258993, + -0.2904245132883371, + -0.4066190229151898, + -6.089232444725925, + -16.171254207712238, + -12.641486554711227, + -8.924539853173204, + 2.6594948351133105, + -17.399809247665026, + 12.946886580090768, + 0.9296285821773804, + -8.165134748977561, + -8.31123907060137, + -14.827710046890484, + -18.77373065630167, + 13.454883339680299, + -5.335036210575371, + -12.918878789025223, + -8.786027517833004, + -13.073799543345432, + 13.525214186802927, + 14.1424983821946, + 14.568357886697154, + -13.422176469509925, + -13.775765496084412, + 8.387901149093713, + -3.2021831256890922, + -12.174437423792877, + -13.131805829829121, + -11.222157816000808, + -7.297077243601035, + 14.470594296805228, + 3.784022178353783, + 15.9435485636315, + -16.9272715960945, + 11.276910781514232, + 5.030557141304843, + 5.281623231902232, + 9.463974500180829, + 6.91603816914483, + 10.087304118769962, + -16.26485387584271, + -18.539285817819707, + 12.36789644876426, + 10.074147960343135, + -17.621025032978338, + -20.63061229727116, + -22.0372705783538, + 13.652308260668319, + 13.554212564980395, + 11.262722144984231, + 1.0820851096858084, + 0.3351226422782401, + 11.257550918740437, + 14.81007903132706, + 13.16529376284697, + 11.747579677576784, + -17.230274581024116, + -20.99368417153712, + 11.039454894775762, + 5.448264249663503, + 0.8433811243550915, + -13.12269150574086, + -15.084685984163059, + 1.001446291610431, + -2.979824350857239, + 16.034607951559245, + 14.646230575375679, + 10.746949145559208, + 2.0750960065294444, + 1.9210624105784522, + 17.091860288961655, + -4.8014607974495505, + -4.121682094168807, + -9.211712305067408, + -0.9647141359114324, + -12.770043278028636, + -22.14947240734907, + -21.662760215424292, + 10.042245008033184, + 9.00591792915805, + -8.114924620385013, + -4.09014144613155, + 17.441033667083897, + 14.210332439646615, + -5.205440506820717, + -22.424846474687104, + -19.333643113939573, + -15.6485410514355, + -17.602424048420065, + 16.452169485318528, + -10.315126466090584, + -19.211557661416975, + -11.574766578920022, + -2.836225991117213, + 3.525145431665082, + 5.369682545555909, + -7.233663409839164, + -3.830378203270949, + -8.70415109596094, + -5.564640261992574, + -0.24304139083144172, + -20.286273678708202, + -19.227328493292394, + -8.644619795574375, + -12.01044336192099, + 3.5635661792162865, + 6.0655381802650865, + 16.27121152709186, + 8.921549326543447, + 11.940944669003084, + 10.862739022277392, + 12.500834520805466, + -2.834194264885367, + -4.849203406582981, + -1.8783040633672548, + -5.9138526823356266, + 1.2672067779403606, + 1.9527502164133757, + 15.16111670911235, + -7.228500587324407, + -8.223763239439526, + -12.93018385197875, + -4.130858921918941, + -12.560295003820366, + 12.495171965866554, + -20.344640829601293, + 7.620310212411023, + 5.971239979286481, + 6.156588825490022, + 8.169773290644287, + 5.746694681873156, + -17.289323099523585, + -6.926326206032475, + -6.341107086583359, + -9.622695772412136, + 2.4822510615899143, + 0.8238680595058228, + -14.002763598385519, + -6.4793879657592806, + -6.178625902126945, + -8.021165590309865, + 16.47227486042157, + 1.0597336630653893, + -3.239099820874423, + 11.764837233757895, + -17.208626664696368, + 4.9942257378006065, + 12.698764574124928, + 7.0907603766426215, + 10.212933849734718, + 2.3693097894164348, + 5.614858725722992, + -0.09033420362344827, + -0.29399017359151897, + -11.864982489192727, + -15.041400491254338, + 17.055148995726, + 16.041813776705418, + -0.7417165954447063, + 8.571520874518438, + 8.034520839978383, + 5.953088650224671, + -19.493438139991042, + -17.680271835579358, + -21.709865075054704, + -18.98434991865462, + 9.479003699248967, + 15.360819858645495, + 13.553752573797507, + -18.012269836447572, + -20.67399971981301, + 14.142723120662852, + 4.158855987079716, + -19.30823670467353, + 1.345571334092393, + -3.765932094845125, + 8.450856515397396, + -15.483504593073866, + 16.917009682577252, + 16.710656712387618, + 4.931777769677826, + 8.423106436504714, + 9.362651807048024, + -17.09384139910882, + -6.3020986051103085, + -15.512660010110848, + -16.253458215614497, + 9.216705572804882, + -5.90915471623139, + -12.491614119138562, + 10.608264638226434, + -11.207167007021848, + -5.492779155501329, + -6.7591565356014, + -17.76062376092856, + -7.997026832563643, + 8.541739412405914, + -20.004160335697236, + 9.60797710877932, + -0.9552211375723392, + -16.06949059338767, + 5.5986955025103615, + -9.801914302966575, + -6.387257207079732, + 4.182109903014407, + 14.913534821560878, + 16.0907165727309, + -2.651460477752816, + -3.122504065930367, + 6.282395561912272, + 0.05304739933493979, + 14.52797473671664, + 12.782916372914405, + 9.900486173985867, + 6.7117061951169745, + 16.55342736700985, + 15.207573339010693, + -21.192548496878892, + -9.935989549568063, + -11.421331187302464, + -19.236373535869173, + -2.889253833789248, + -7.00867095864509, + -3.45112685549332, + -7.581652107499191, + -7.763126090292656, + -6.810269075767733 + ], + "y": [ + -11.41784983119164, + -0.3191505947266975, + 14.563425157507346, + -14.928767740995028, + 12.441412417665292, + 7.376415353965956, + 3.1129060197666063, + 2.4908144892083617, + 15.021482056662148, + 5.897594291101676, + 9.169651932528753, + -11.095225685990275, + 6.693421850634913, + 17.163084400516215, + -6.199672663045915, + -9.54475726221417, + 7.606682919608337, + -8.643131136849384, + 4.4281959742181645, + -13.039917034599503, + -13.354513757095816, + 11.615308535874595, + 8.319431909230527, + 6.747021989871167, + 20.151129500861902, + -1.014117560634313, + 4.085374440780235, + 1.6983783682866247, + 17.704182771702758, + -1.836988980241852, + -5.410646669470725, + 5.905584742205971, + 16.9116407836773, + 13.909649050767086, + 7.392943235225893, + -9.191426851740902, + 10.566212120275992, + 5.845138209038488, + -15.932478831348119, + 8.42095163109347, + -4.181749506074347, + 5.616088042149204, + -13.49113086692568, + 6.2948126612798845, + 6.056565991339081, + -3.3158603968515785, + 5.773101343260647, + 1.910696527206486, + -14.101186632430181, + 17.923977436957234, + 8.917560715652067, + -13.47987385198965, + 8.811181639309124, + 7.056190518170468, + -4.152181388798178, + 9.461127802230648, + 16.485115557937508, + -1.738626111239635, + 8.679631193800969, + 10.752214832019265, + 13.360092859217884, + 10.384122617117338, + 7.3790355399426995, + -9.605448470353792, + 11.031621934991103, + -15.30414419254827, + 12.936896688477757, + -4.9201950168038575, + -6.44799110247403, + -4.522168668775065, + 17.086728149022562, + 5.670674427131997, + -1.933629726538972, + 7.224926490329623, + -9.033684219439134, + 6.762715777282194, + 9.382733033619129, + -16.407119973387434, + 8.771990720473475, + -3.5321037127623613, + 16.81988748065873, + 14.128778297663642, + 14.402004531741376, + 19.10560462635729, + 18.06774414259654, + 17.24649423926348, + 19.705241285603314, + 15.313781231311406, + 16.65288149533023, + 19.890667328757683, + 15.187491838181332, + 13.465769372913718, + 12.002018544424272, + 15.799421584936406, + 20.72323475585315, + 21.04587969061181, + 19.784811122815363, + 19.22959731105091, + 13.826408481082314, + 18.767952289812886, + 18.923223236650237, + 18.967765523636846, + 17.082484524005473, + 11.73220387244621, + 16.763848269032998, + 14.45042316563831, + 15.416673504931964, + 17.04525839776579, + 15.198173033933289, + 15.509850138532327, + 20.422046276551164, + 15.348587334764682, + -1.4367253891208716, + 18.230755152738165, + 15.96080110929009, + 18.591443566385063, + 17.7984951942672, + 20.2870334481428, + 20.266847151047724, + 6.168592644825372, + 12.929917572172492, + -16.188840259217496, + 17.45326422341904, + 15.891006930342767, + 18.94508784767475, + 10.519721483283934, + 13.129230606375554, + 16.52347396583559, + 19.316441539819415, + 17.808924366013617, + 21.1696840444441, + 16.61831528214116, + -7.976749825501475, + 19.290346621460948, + 16.15731021460754, + 21.13336581239527, + 18.234061804870244, + 15.856463382283577, + 13.784212418396557, + -1.6621571889152875, + 18.01643640847642, + 16.36563488724154, + 14.483331231403675, + 16.218797803880534, + 17.97344143563745, + 3.2435804153559262, + -1.7190425033339873, + -11.538314826060407, + 14.968050808360838, + 13.268802148583784, + 18.60267962239572, + 20.241728533750628, + 20.79853884709638, + 19.918504409491106, + -8.075294952812861, + -9.043276446002867, + 15.933681725807805, + 17.696627605097554, + 12.882281213462367, + 15.84746212104952, + 19.671110638083217, + 17.726574132118806, + 14.563940628397631, + 16.82537621991663, + 15.685902967095739, + 14.741924159224842, + 17.288374628006324, + 16.955054852390468, + 19.417153998704617, + 15.121700721238964, + 20.01606645238458, + 14.037141024682432, + 3.1544494401128524, + -13.066661108968566, + 4.745329252150413, + -8.940121902174184, + 7.359370399973077, + 7.860345828704119, + -1.0483669419973778, + -7.239415659631179, + 21.38196294430897, + 11.756915677045937, + 8.766139719613324, + 21.267192965189107, + 4.000910950487333, + -3.050984643079521, + 19.113938239837466, + -5.727282121791605, + -5.014213553729322, + -14.635024378506934, + 8.565962804238229, + -15.890185356621734, + -4.731768730493457, + 1.6977476489656436, + 18.154860779828756, + 18.653276009869735, + -10.497077346193414, + 18.288498919448255, + 0.7431060248201902, + 15.886827429789896, + 17.675491799855113, + 17.91680762187519, + 3.2801266702880763, + 2.682790066877558, + 6.919921812362842, + -10.352351904705175, + -0.2167048632130567, + -1.4437986078242833, + -13.213591629517639, + -9.095416110157403, + 2.200082949398928, + -10.977681433120315, + -4.139923708678614, + 13.755204787793724, + -9.389375362580894, + -4.650678621741309, + 13.14269509207124, + -7.08587920068209, + -1.3993516846995084, + -5.791712433332692, + -6.6247330469256465, + -1.329606090751159, + 3.2313711640535168, + 9.361342440809858, + 0.09293232147749464, + 1.209753793553072, + -0.48006248890437775, + 6.970146957973679, + 10.658134422431962, + -10.745486365243181, + -2.630122160653607, + -13.37817835195691, + -2.6488870588261384, + 1.1284637138203344, + -7.849639953321988, + 18.205149271954912, + 11.194279832169235, + 18.11772973076478, + 18.36869277547518, + 17.01996907089426, + 11.595139790769299, + -7.13790715441922, + 8.315845491584616, + 15.240022562465837, + 0.39921210150761577, + 15.456749694177255, + 10.683686813836902, + 19.259948835927116, + 20.292814361341577, + -15.13948322261798, + 11.845588325612976, + 5.160496908475858, + -13.419203553399395, + 21.208861475687293, + -1.722835548838387, + 17.442848322188567, + -10.116396077525179, + 19.497724196889425, + 12.754326143960697, + 19.297972378051927, + 15.550864910877822, + -7.424206763444326, + 16.346818810590605, + 0.3714925176070536, + -8.336425792587137, + -11.851964883592148, + 15.481065975422577, + -1.6608044293760673, + 14.536521168193532, + 18.749575040736318, + -14.784209689560061, + -10.765615145602576, + 15.823112383588235, + -16.107136771139988, + 2.905998540799444, + 3.4067017305617755, + -9.996322178397245, + 14.68692773332524, + 6.62722182039912, + -8.00184431026471, + 3.0133512901104416, + -4.992963192827679, + 5.065105885279123, + -10.738172367472357, + -4.848489410736379, + 15.742705654242956, + 2.7142673474102605, + -7.740250027484222, + 0.6549196038858884, + -15.481322262367849, + 9.9270695544927, + 0.8165423895756174, + 6.154284321913229, + 9.736984239596191, + 4.5636886300375465, + 0.957578190014004, + -5.085998787236029, + -3.42059900122231, + -9.972130387891122, + 1.8662812888160822, + 1.3915121325117346, + -0.7897807487357376, + 3.867034254303558, + 14.660023764695653, + 10.723050937671145, + 9.058664593148738, + 15.92515851367293, + 17.192715010497217, + 2.1783236015756544, + 13.556809084666387, + 16.61552754959879, + -1.05163940544016, + 6.600757008000865, + -3.4904908702143596, + -1.3510602959274558, + 12.541822085749827, + 9.993919349668218, + 22.451348423362106, + -4.453520432336367, + -2.737929922909383, + 20.929839497344, + -0.38977616922758296, + 2.4761426404672013, + -3.5658825848012548, + 7.917490080628118, + 6.316864787134258, + 2.302973690967117, + 2.0018042499974964, + -15.718792057509107, + -16.671786382411057, + -0.2712384574698234, + 7.928407480010116, + -6.123839096600868, + -17.75345309979954, + 11.059371438887155, + -6.111187613432292, + 2.792614522565272, + -13.430216856829446, + 22.569969063829703, + 12.35995628928166, + 10.933227463611694, + -8.647443133101893, + 9.298780186928086, + 7.104101159161629, + -11.39984200097884, + 13.621527099783169, + 8.995856150249049, + 16.803115192697085, + 10.592206668431514, + -1.9774734854256746, + 13.175545340601293, + 20.460968550160327, + 4.123014882661909, + -15.589877724228934, + 5.642890983127066, + -9.952608788794125, + -8.027540649214833, + -15.245004444152267, + -12.013371409411429, + -8.489446195769464, + 7.740284024415618, + 2.118950875491419, + 8.528902493244408, + 22.1115530105183, + -14.689872352838838, + -15.730989259150421, + -11.715116762578333, + -16.100362768181665, + -12.72139878404941, + 0.30177859190882206, + -8.84370468778664, + -8.79150611597912, + -14.130351738362913, + -12.48992128848705, + -11.037333912370942, + -11.638205856093446, + 14.505756784524383, + -13.764879078951406, + -12.615899599100104, + 13.384150927324999, + -8.156655997559467, + 20.455257782435655, + -13.222703067642193, + -10.415070747007382, + -12.049238335779727, + -11.054362849273527, + -2.29826269288487, + -12.886462232672827, + -8.962574775452547, + -2.604066672961298, + 16.078387958536506, + -16.360725881299764, + 13.839564531885683, + 9.174864958103376, + 4.919768640720008, + 4.2130750579698475, + 4.101848982924817, + 9.690925923418042, + -11.744992766532496, + -12.698211541781175, + 4.194904762733609, + -4.106378991622533, + -7.400154004532124, + -6.6930990946675495, + 3.4439382386814943, + -12.302528127312577, + -13.292069671287392, + -10.774500868334462, + 8.990022300149276, + -0.04352563651214125, + 1.6391872487208237, + 0.504982924224546, + 1.920744405013267, + 18.28180496454909, + -3.8614397542849295, + -6.859599605804259, + -3.4534760131959032, + -7.0968268976059985, + -11.01675292462399, + 5.863529078603385, + -15.904988146291458, + -3.8384112563004393, + -2.880988053557643, + -11.892204745738725, + -13.116468577073746, + 5.829409441710796, + 7.462056618188281, + -4.374446904936558, + 4.910742427380435, + 2.2862185828963737, + -11.664393213523676, + -14.23523543135729, + -12.422118088881579, + 8.938100151401368, + 7.742192455313083, + -4.303139873798181, + -1.5118495976447555, + 11.676701598709945, + 11.370588014134997, + 14.088120902236506, + -3.551830416019878, + 0.7047065127334191, + 9.038760739212032, + 8.360793323455896, + 15.992541251517293, + -9.32085385524294, + -15.997752088226333, + 15.327026748623167, + 11.592669628746695, + -7.226419867543482, + -6.477102282615005, + -5.646043711423109, + -3.8886481272351925, + 4.372486305461426, + -1.4379178178425596, + -1.4425445909517411, + -10.81042580912902, + -6.2593714609761815, + -16.10780131409305, + -14.472775071887039, + -1.4285436402094343, + -5.932149619974707, + 14.767233791165753, + 17.383012919612007, + 17.793796128062674, + 4.465129675313559, + -16.73740628526125, + -13.883035825147553, + 8.358374475986748, + -5.305916009062771, + -1.6958707182869648, + 5.402907007667126, + -3.3418825609902427, + -11.29234486182441, + -9.859605488067325, + -10.51850244110427, + -9.137995914259335, + 1.3912666665754576, + 2.1956684246829385, + -11.24334686975556, + 4.479700722985545, + 6.283133275145741, + -7.663941780080888, + 10.013353150820242, + 1.1675351373220524, + -8.560329019195615, + 11.019231894500201, + 20.679356598004702, + -5.604837463318379, + -7.6127595670645505, + -5.1689120628515735, + -15.112705528427458, + -15.704248476240835, + -7.2437152921068275, + 2.606777360852669, + -9.501494765019928, + 0.3487538143716118, + 3.5750093576229536, + 6.955454609372014, + 4.533380670144705, + -12.815773744324012, + -11.560932832329058, + -1.5838117775480958, + -12.563721614285875, + -7.191672826830745, + -10.877664984855699, + -9.264580390810654, + -6.544841250435663, + -2.092282979040595, + -2.229840974733451, + -4.930437010354747, + -11.666001141543395, + -6.788614306827233, + -5.061312454241081, + -8.037705508396558, + -3.4856970302562065, + -5.084769748144755, + 5.761312303766434, + 7.3392480990631235, + -0.21275192955190647, + 12.562034505438607, + -13.289357761350335, + -4.224096997078707, + -15.046861827955759, + -12.943459755203083, + -5.666385925283225, + 13.124838098488237, + 17.39378749907511, + 20.005484246747542, + 20.19044152278915, + -8.959712560695248, + 7.2628399837274245, + -1.3539356618448246, + 22.30931842201065, + -15.82253266396615, + -13.007901951342296, + 3.057344673704041, + -15.6883445079686, + -0.6457974802125008, + -10.90056189569408, + -5.328887492705765, + 0.8171930358840568, + -9.5871294091661, + -12.576677283266495, + 0.6717530029196913, + -13.083035600058789, + -15.039225888857187, + -12.904548579206185, + -16.40188908183957, + 5.081672141197279, + 1.9637307033203717, + 4.053067206800075, + 5.70560209996295, + -11.788105138110016, + -10.210094274413706, + -5.810879984265869, + -8.903823997123547, + 1.9311378293970232, + -3.6299632351379643, + 6.612356435898742, + 3.058246733183386, + -11.984368454287786, + -4.214243832496144, + 4.753799496196119, + -6.794048016799521, + -4.831987792200215, + 2.069421512594827, + -15.74961543883628, + -0.6038874973527248, + 2.6835145948445223, + -6.047965183738679, + -1.5891407097654695, + -10.080675555238377, + 0.03081158009237195, + 3.5652763931909393, + 3.535429334045448, + -3.380320358295136, + 3.3720009773173993, + 16.40909862876928, + 11.740285647534707, + 10.271599739081877, + 10.15798883846539, + 18.647618505991836, + -0.24052084790888673, + 14.322218902949006, + -3.796144110693343, + -5.416392097389759, + 21.994882085341327, + -6.480360143131765, + -3.7384427182958966, + 21.92974993447186, + -2.7658430560231495, + 2.77885309140947, + -4.882469985148913, + 6.7657793056473725, + 2.5222424384617113, + 4.019933376936817, + -16.787552544072025, + -16.856805274678862, + -2.4479939519338654, + 9.862183182215059, + 5.820481650095663, + 4.998308370682041, + -14.041780289094081, + 21.0132610212424, + 22.924746987035036, + 10.038326449843389, + 13.727303787440793, + -7.397820564553798, + 9.71706183696487, + 7.837269659316131, + 8.604227898026458, + -0.22142264816660884, + 3.5809436333777107, + -14.248065303563243, + -6.745753018806202, + 22.697040180978924, + 21.174580092028506, + -10.680153816736555, + -13.927652348215837, + -1.1287029101082857, + 22.671018755703376 ] } ], "layout": { - "showlegend": true, + "hovermode": "closest", + "margin": { + "b": 0, + "l": 0, + "r": 0, + "t": 0 + }, + "showlegend": false, "template": { "data": { "bar": [ @@ -90566,18 +10076,13 @@ } } }, - "title": { - "text": "Overlayed Scatter Plot" - }, "xaxis": { - "title": { - "text": "X-axis Label" - } + "showgrid": false, + "zeroline": false }, "yaxis": { - "title": { - "text": "Y-axis Label" - } + "showgrid": false, + "zeroline": false } } } @@ -90586,6 +10091,180 @@ "output_type": "display_data" } ], + "source": [ + "edge_x = []\n", + "edge_y = []\n", + "\n", + "for edge in g.get_edgelist():\n", + " source, target = edge\n", + " x0, y0 = layout[source]\n", + " x1, y1 = layout[target]\n", + " edge_x.append(x0)\n", + " edge_x.append(x1)\n", + " edge_x.append(None)\n", + " edge_y.append(y0)\n", + " edge_y.append(y1)\n", + " edge_y.append(None)\n", + "\n", + "edge_trace = go.Scatter(\n", + " x=edge_x,\n", + " y=edge_y,\n", + " line=dict(width=0.5, color=\"#888\"),\n", + " hoverinfo=\"none\",\n", + " mode=\"lines\",\n", + ")\n", + "\n", + "node_x = []\n", + "node_y = []\n", + "\n", + "for node_position in layout:\n", + " x, y = node_position\n", + " node_x.append(x)\n", + " node_y.append(y)\n", + "\n", + "node_trace = go.Scatter(\n", + " x=node_x,\n", + " y=node_y,\n", + " mode=\"markers\",\n", + " hoverinfo=\"text\",\n", + " marker=dict(\n", + " showscale=True,\n", + " colorscale=\"YlGnBu\",\n", + " size=10,\n", + " colorbar=dict(\n", + " thickness=15, title=\"Node Connections\", xanchor=\"left\", titleside=\"right\"\n", + " ),\n", + " ),\n", + ")\n", + "\n", + "# Create a Plotly figure\n", + "fig = go.Figure(\n", + " data=[edge_trace, node_trace],\n", + " layout=go.Layout(\n", + " showlegend=False,\n", + " hovermode=\"closest\",\n", + " margin=dict(b=0, l=0, r=0, t=0),\n", + " xaxis=dict(showgrid=False, zeroline=False),\n", + " yaxis=dict(showgrid=False, zeroline=False),\n", + " ),\n", + ")\n", + "\n", + "# Show the plot\n", + "fig.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 66, + "id": "f23dbd06", + "metadata": {}, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'company_df' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32mc:\\Users\\trimr\\Projekte\\aki_prj23_transparenzregister\\src\\aki_prj23_transparenzregister\\utils\\networkx\\sql_alchemy_to_networkx.ipynb Cell 23\u001b[0m line \u001b[0;36m1\n\u001b[1;32m----> 1\u001b[0m person_relations_df[[\u001b[39m\"\u001b[39m\u001b[39mfrom_x\u001b[39m\u001b[39m\"\u001b[39m, \u001b[39m\"\u001b[39m\u001b[39mfrom_y\u001b[39m\u001b[39m\"\u001b[39m]] \u001b[39m=\u001b[39m (company_df\u001b[39m.\u001b[39mset_index(\u001b[39m\"\u001b[39m\u001b[39mid\u001b[39m\u001b[39m\"\u001b[39m, drop\u001b[39m=\u001b[39m\u001b[39mTrue\u001b[39;00m))\u001b[39m.\u001b[39mloc[person_relations_df[\u001b[39m\"\u001b[39m\u001b[39mcompany_id\u001b[39m\u001b[39m\"\u001b[39m], [\u001b[39m\"\u001b[39m\u001b[39mx\u001b[39m\u001b[39m\"\u001b[39m, \u001b[39m\"\u001b[39m\u001b[39my\u001b[39m\u001b[39m\"\u001b[39m]]\n\u001b[0;32m 2\u001b[0m person_relations_df\u001b[39m.\u001b[39mhead()\u001b[39m.\u001b[39mT\n", + "\u001b[1;31mNameError\u001b[0m: name 'company_df' is not defined" + ] + } + ], + "source": [ + "person_relations_df[[\"from_x\", \"from_y\"]] = (company_df.set_index(\"id\", drop=True)).loc[person_relations_df[\"company_id\"], [\"x\", \"y\"]]\n", + "person_relations_df.head().T" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "f3a4e1c1", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "b9a7841b", + "metadata": {}, + "outputs": [], + "source": [ + "company_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "6ddddb3e", + "metadata": {}, + "outputs": [], + "source": [ + "df_temp_df: pd.DataFrame = company_df.set_index(\"id\", drop=True)\n", + "person_relations_df[[\"company_from_x\", \"company_from_y\"]] = df_temp_df.loc[person_relations_df[\"company_id\"] , [\"x\", \"y\"]].reset_index(drop=True)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4b999165", + "metadata": {}, + "outputs": [], + "source": [ + "df_person_tmp: pd.DataFrame = person_df.set_index(\"id\", drop=True)\n", + "person_relations_df[[\"to_person_x\", \"to_person_y\"]] = df_person_tmp.loc[person_relations_df[\"person_id\"] , [\"x\", \"y\"]].reset_index(drop=True)\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "ef674aaf", + "metadata": {}, + "outputs": [], + "source": [ + "person_relations_df" + ] + }, + { + "cell_type": "markdown", + "id": "d7eb8ef9", + "metadata": {}, + "source": [ + "# Für Company_relation anpassen:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "4420b55f", + "metadata": {}, + "outputs": [], + "source": [ + "df_temp_df: pd.DataFrame = company_df.set_index(\"id\", drop=True)\n", + "company_relations_df[[\"company_from_x\", \"company_from_y\"]] = df_temp_df.loc[company_relations_df[\"company_from_id\"] , [\"x\", \"y\"]].reset_index(drop=True)\n", + "\n", + "\n", + "company_relations_df[[\"company_to_x\", \"company_to_y\"]] = df_temp_df.loc[company_relations_df[\"company_to_id\"] , [\"x\", \"y\"]].reset_index(drop=True)\n", + "company_relations_df" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "1ba09996", + "metadata": {}, + "outputs": [], + "source": [ + "company_relations_df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "0bd027cd", + "metadata": {}, + "outputs": [], "source": [ "import plotly.express as px\n", "import plotly.graph_objects as go\n", @@ -90656,7 +10335,7 @@ }, { "cell_type": "code", - "execution_count": 61, + "execution_count": null, "id": "aba6f3786cd18e89", "metadata": { "ExecuteTime": { diff --git a/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx_v2.ipynb b/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx_v2.ipynb new file mode 100644 index 0000000..af6b13f --- /dev/null +++ b/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx_v2.ipynb @@ -0,0 +1,834 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "68a5fc0a3d3f7c63", + "metadata": { + "collapsed": false + }, + "source": [ + "# Relation queries via SQLAlchemy for networkx" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "b6eea59adeae27d4", + "metadata": { + "ExecuteTime": { + "end_time": "2023-10-07T13:25:27.888866200Z", + "start_time": "2023-10-07T13:25:27.704284300Z" + }, + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "'c:\\\\Users\\\\trimr\\\\Projekte\\\\aki_prj23_transparenzregister'" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import os.path\n", + "\n", + "import pandas as pd\n", + "\n", + "if not os.path.exists(\"src\"):\n", + " %cd \"../\"\n", + "os.path.abspath(\".\")" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "eb9498d3", + "metadata": {}, + "outputs": [], + "source": [ + "from aki_prj23_transparenzregister.utils.sql import entities\n", + "from sqlalchemy.orm import aliased\n", + "from sqlalchemy import func, text\n", + "\n", + "# Alias for Company table for the base company\n", + "to_company = aliased(entities.Company, name=\"to_company\")\n", + "\n", + "# Alias for Company table for the head company\n", + "from_company = aliased(entities.Company, name=\"from_company\")" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "6a317af6", + "metadata": {}, + "outputs": [], + "source": [ + "from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider\n", + "from aki_prj23_transparenzregister.utils.sql.connector import get_session\n", + "\n", + "session = get_session(JsonFileConfigProvider(\"secrets.json\"))" + ] + }, + { + "cell_type": "markdown", + "id": "814d5edb", + "metadata": {}, + "source": [ + "# All Company Relations" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "2d17651a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'SELECT to_company.id AS id_company_to, to_company.name AS name_company_to, relation.relation AS relation_type, from_company.name AS name_company_from, from_company.id AS id_company_from \\nFROM company AS to_company JOIN (relation JOIN company_relation ON relation.id = company_relation.id) ON relation.company_id = to_company.id JOIN company AS from_company ON company_relation.company2_id = from_company.id'" + ] + }, + "execution_count": 32, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Query to fetch relations between companies\n", + "relations_company_query = (\n", + " session.query(\n", + " to_company.id.label(\"id_company_to\"),\n", + " to_company.name.label(\"name_company_to\"),\n", + " entities.CompanyRelation.relation.label(\"relation_type\"),\n", + " from_company.name.label(\"name_company_from\"),\n", + " from_company.id.label(\"id_company_from\"),\n", + " )\n", + " .join(\n", + " entities.CompanyRelation,\n", + " entities.CompanyRelation.company_id == to_company.id,\n", + " )\n", + " .join(\n", + " from_company,\n", + " entities.CompanyRelation.company2_id == from_company.id,\n", + " )\n", + ")\n", + "str(relations_company_query)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "f1f0f2de", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "89.3 ms ± 1.99 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" + ] + } + ], + "source": [ + "# str(relations_query.filter((entities.CompanyRelation.company_id == 2) or (entities.CompanyRelation.company2_id == 2)))\n", + "%timeit pd.read_sql_query(str(relations_company_query), session.bind)" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "id": "444cd402", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
id_company_toname_company_torelation_typename_company_fromid_company_from
052. Schaper Objekt GmbH & Co. Kiel KGKOMMANDITISTMulti-Center Warenvertriebs GmbH2213
132Alb-Windkraft GmbH & Co. KGKOMMANDITISTEnBW Windkraftprojekte GmbH845
234Anneliese Köster GmbH & Co. KGKOMMANDITISTINDUS Holding Aktiengesellschaft1903
374AURELIUS Equity Opportunities SE & Co. KGaAHAFTENDER_GESELLSCHAFTERAURELIUS Management SE163
477Aurelius KGHAFTENDER_GESELLSCHAFTERAurelius Verwaltungs GmbH80
..................
5733137Zalando BTD 011 SE & Co. KGHAFTENDER_GESELLSCHAFTERZalando SE3112
5743137Zalando BTD 011 SE & Co. KGKOMMANDITISTZalando Operations GmbH3103
5753138zLabels Creation & Sales GmbH & Co. KGHAFTENDER_GESELLSCHAFTERzLabels GmbH3113
5763145Zalando Customer Care International SE & Co. KGHAFTENDER_GESELLSCHAFTERZalando SE3112
5773145Zalando Customer Care International SE & Co. KGKOMMANDITISTZalando Operations GmbH3103
\n", + "

578 rows × 5 columns

\n", + "
" + ], + "text/plain": [ + " id_company_to name_company_to \\\n", + "0 5 2. Schaper Objekt GmbH & Co. Kiel KG \n", + "1 32 Alb-Windkraft GmbH & Co. KG \n", + "2 34 Anneliese Köster GmbH & Co. KG \n", + "3 74 AURELIUS Equity Opportunities SE & Co. KGaA \n", + "4 77 Aurelius KG \n", + ".. ... ... \n", + "573 3137 Zalando BTD 011 SE & Co. KG \n", + "574 3137 Zalando BTD 011 SE & Co. KG \n", + "575 3138 zLabels Creation & Sales GmbH & Co. KG \n", + "576 3145 Zalando Customer Care International SE & Co. KG \n", + "577 3145 Zalando Customer Care International SE & Co. KG \n", + "\n", + " relation_type name_company_from \\\n", + "0 KOMMANDITIST Multi-Center Warenvertriebs GmbH \n", + "1 KOMMANDITIST EnBW Windkraftprojekte GmbH \n", + "2 KOMMANDITIST INDUS Holding Aktiengesellschaft \n", + "3 HAFTENDER_GESELLSCHAFTER AURELIUS Management SE \n", + "4 HAFTENDER_GESELLSCHAFTER Aurelius Verwaltungs GmbH \n", + ".. ... ... \n", + "573 HAFTENDER_GESELLSCHAFTER Zalando SE \n", + "574 KOMMANDITIST Zalando Operations GmbH \n", + "575 HAFTENDER_GESELLSCHAFTER zLabels GmbH \n", + "576 HAFTENDER_GESELLSCHAFTER Zalando SE \n", + "577 KOMMANDITIST Zalando Operations GmbH \n", + "\n", + " id_company_from \n", + "0 2213 \n", + "1 845 \n", + "2 1903 \n", + "3 163 \n", + "4 80 \n", + ".. ... \n", + "573 3112 \n", + "574 3103 \n", + "575 3113 \n", + "576 3112 \n", + "577 3103 \n", + "\n", + "[578 rows x 5 columns]" + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "company_relations = pd.read_sql_query(str(relations_company_query), session.bind)\n", + "company_relations" + ] + }, + { + "cell_type": "markdown", + "id": "b27d6532", + "metadata": {}, + "source": [ + "# All person relations" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "id": "52af1d30", + "metadata": {}, + "outputs": [], + "source": [ + "relations_person_query = (\n", + " session.query(\n", + " entities.Company.id.label(\"id_company\"),\n", + " entities.Company.name.label(\"name_company\"),\n", + " entities.PersonRelation.relation.label(\"relation_type\"),\n", + " entities.Person.id.label(\"id_person\"),\n", + " entities.Person.lastname.label(\"lastname\"),\n", + " entities.Person.firstname.label(\"firstname\"),\n", + " entities.Person.date_of_birth.label(\"date_of_birth\"),\n", + " )\n", + " .join(\n", + " entities.PersonRelation,\n", + " entities.PersonRelation.company_id == entities.Company.id,\n", + " )\n", + " .join(\n", + " entities.Person,\n", + " entities.PersonRelation.person_id == entities.Person.id,\n", + " )\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "4f5ab3b2", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "259 ms ± 23 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" + ] + } + ], + "source": [ + "%timeit pd.read_sql_query(str(relations_person_query), session.bind)" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "id": "c78b3e65", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
id_companyname_companyrelation_typeid_personlastnamefirstnamedate_of_birth
010 10 24 Telefondienste GmbHGESCHAEFTSFUEHRER1TetauNicolas1971-01-02
110 10 24 Telefondienste GmbHPROKURIST2DammastLutz1966-12-06
221. Staiger Grundstücksverwaltung GmbH & Co. KGKOMMANDITIST3TutschRosemarie1941-10-09
321. Staiger Grundstücksverwaltung GmbH & Co. KGKOMMANDITIST4StaigerMarc1969-10-22
421. Staiger Grundstücksverwaltung GmbH & Co. KGKOMMANDITIST5StaigerMichaela1971-03-03
........................
148913144Wohnungsbaugesellschaft mit beschränkter Haftu...GESCHAEFTSFUEHRER878WeirichTorsten1975-07-21
148923144Wohnungsbaugesellschaft mit beschränkter Haftu...GESCHAEFTSFUEHRER1840BrusinskiBastian1980-10-29
148933145Zalando Customer Care International SE & Co. KGPROKURIST9359PapeUte1978-12-13
148943146zebotec GmbHGESCHAEFTSFUEHRER9628NeffWerner1981-11-24
148953146zebotec GmbHGESCHAEFTSFUEHRER9629MorrisRichard1971-01-02
\n", + "

14896 rows × 7 columns

\n", + "
" + ], + "text/plain": [ + " id_company name_company \\\n", + "0 1 0 10 24 Telefondienste GmbH \n", + "1 1 0 10 24 Telefondienste GmbH \n", + "2 2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", + "3 2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", + "4 2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", + "... ... ... \n", + "14891 3144 Wohnungsbaugesellschaft mit beschränkter Haftu... \n", + "14892 3144 Wohnungsbaugesellschaft mit beschränkter Haftu... \n", + "14893 3145 Zalando Customer Care International SE & Co. KG \n", + "14894 3146 zebotec GmbH \n", + "14895 3146 zebotec GmbH \n", + "\n", + " relation_type id_person lastname firstname date_of_birth \n", + "0 GESCHAEFTSFUEHRER 1 Tetau Nicolas 1971-01-02 \n", + "1 PROKURIST 2 Dammast Lutz 1966-12-06 \n", + "2 KOMMANDITIST 3 Tutsch Rosemarie 1941-10-09 \n", + "3 KOMMANDITIST 4 Staiger Marc 1969-10-22 \n", + "4 KOMMANDITIST 5 Staiger Michaela 1971-03-03 \n", + "... ... ... ... ... ... \n", + "14891 GESCHAEFTSFUEHRER 878 Weirich Torsten 1975-07-21 \n", + "14892 GESCHAEFTSFUEHRER 1840 Brusinski Bastian 1980-10-29 \n", + "14893 PROKURIST 9359 Pape Ute 1978-12-13 \n", + "14894 GESCHAEFTSFUEHRER 9628 Neff Werner 1981-11-24 \n", + "14895 GESCHAEFTSFUEHRER 9629 Morris Richard 1971-01-02 \n", + "\n", + "[14896 rows x 7 columns]" + ] + }, + "execution_count": 38, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "person_relations = pd.read_sql_query(str(relations_person_query), session.bind)\n", + "person_relations" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "id": "9887d1f0", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
id_companyname_companyrelation_typeid_personlastnamefirstnamedate_of_birth
0c_10 10 24 Telefondienste GmbHGESCHAEFTSFUEHRERp_1TetauNicolas1971-01-02
1c_10 10 24 Telefondienste GmbHPROKURISTp_2DammastLutz1966-12-06
2c_21. Staiger Grundstücksverwaltung GmbH & Co. KGKOMMANDITISTp_3TutschRosemarie1941-10-09
3c_21. Staiger Grundstücksverwaltung GmbH & Co. KGKOMMANDITISTp_4StaigerMarc1969-10-22
4c_21. Staiger Grundstücksverwaltung GmbH & Co. KGKOMMANDITISTp_5StaigerMichaela1971-03-03
\n", + "
" + ], + "text/plain": [ + " id_company name_company \\\n", + "0 c_1 0 10 24 Telefondienste GmbH \n", + "1 c_1 0 10 24 Telefondienste GmbH \n", + "2 c_2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", + "3 c_2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", + "4 c_2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", + "\n", + " relation_type id_person lastname firstname date_of_birth \n", + "0 GESCHAEFTSFUEHRER p_1 Tetau Nicolas 1971-01-02 \n", + "1 PROKURIST p_2 Dammast Lutz 1966-12-06 \n", + "2 KOMMANDITIST p_3 Tutsch Rosemarie 1941-10-09 \n", + "3 KOMMANDITIST p_4 Staiger Marc 1969-10-22 \n", + "4 KOMMANDITIST p_5 Staiger Michaela 1971-03-03 " + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "person_relations['id_company'] = person_relations['id_company'].apply(lambda x: f\"c_{x}\")\n", + "person_relations['id_person'] = person_relations['id_person'].apply(lambda x: f\"p_{x}\")\n", + "person_relations.head()" + ] + }, + { + "cell_type": "markdown", + "id": "f448841c", + "metadata": {}, + "source": [ + "# Person relations filtered and fitted that are nodes not leaves" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "52dad02d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
person_id
02520
14993
23202
34611
44095
......
18043565
18053510
1806530
1807536
18084617
\n", + "

1809 rows × 1 columns

\n", + "
" + ], + "text/plain": [ + " person_id\n", + "0 2520\n", + "1 4993\n", + "2 3202\n", + "3 4611\n", + "4 4095\n", + "... ...\n", + "1804 3565\n", + "1805 3510\n", + "1806 530\n", + "1807 536\n", + "1808 4617\n", + "\n", + "[1809 rows x 1 columns]" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "from sqlalchemy import func, text\n", + "\n", + "# Subquery to group and count the relations without joins\n", + "grouped_relations_subquery = (\n", + " session.query(\n", + " entities.PersonRelation.person_id,\n", + " )\n", + " .group_by(entities.PersonRelation.person_id)\n", + " .having(func.count() > 1)\n", + ")\n", + "pd.DataFrame(grouped_relations_subquery.all())" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.4" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} From e45f3a3b984dc27e7c2d97eed17485777686c389 Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 24 Oct 2023 11:31:46 +0200 Subject: [PATCH 13/36] Added 3D Network --- .../networkx/sql_alchemy_to_networkx_v2.ipynb | 20012 +++++++++++++++- 1 file changed, 19956 insertions(+), 56 deletions(-) diff --git a/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx_v2.ipynb b/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx_v2.ipynb index af6b13f..d509c4d 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx_v2.ipynb +++ b/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx_v2.ipynb @@ -12,7 +12,15 @@ }, { "cell_type": "code", - "execution_count": 5, + "execution_count": null, + "id": "8bf2b286", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": 37, "id": "b6eea59adeae27d4", "metadata": { "ExecuteTime": { @@ -28,7 +36,7 @@ "'c:\\\\Users\\\\trimr\\\\Projekte\\\\aki_prj23_transparenzregister'" ] }, - "execution_count": 5, + "execution_count": 37, "metadata": {}, "output_type": "execute_result" } @@ -40,12 +48,12 @@ "\n", "if not os.path.exists(\"src\"):\n", " %cd \"../\"\n", - "os.path.abspath(\".\")" + "os.path.abspath(\".\") " ] }, { "cell_type": "code", - "execution_count": 6, + "execution_count": 38, "id": "eb9498d3", "metadata": {}, "outputs": [], @@ -63,7 +71,7 @@ }, { "cell_type": "code", - "execution_count": 8, + "execution_count": 39, "id": "6a317af6", "metadata": {}, "outputs": [], @@ -84,7 +92,7 @@ }, { "cell_type": "code", - "execution_count": 32, + "execution_count": 40, "id": "2d17651a", "metadata": {}, "outputs": [ @@ -94,7 +102,7 @@ "'SELECT to_company.id AS id_company_to, to_company.name AS name_company_to, relation.relation AS relation_type, from_company.name AS name_company_from, from_company.id AS id_company_from \\nFROM company AS to_company JOIN (relation JOIN company_relation ON relation.id = company_relation.id) ON relation.company_id = to_company.id JOIN company AS from_company ON company_relation.company2_id = from_company.id'" ] }, - "execution_count": 32, + "execution_count": 40, "metadata": {}, "output_type": "execute_result" } @@ -123,7 +131,7 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 41, "id": "f1f0f2de", "metadata": {}, "outputs": [ @@ -131,7 +139,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "89.3 ms ± 1.99 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" + "91.3 ms ± 3.56 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" ] } ], @@ -142,7 +150,7 @@ }, { "cell_type": "code", - "execution_count": 33, + "execution_count": 42, "id": "444cd402", "metadata": {}, "outputs": [ @@ -311,7 +319,7 @@ "[578 rows x 5 columns]" ] }, - "execution_count": 33, + "execution_count": 42, "metadata": {}, "output_type": "execute_result" } @@ -331,7 +339,7 @@ }, { "cell_type": "code", - "execution_count": 34, + "execution_count": 43, "id": "52af1d30", "metadata": {}, "outputs": [], @@ -359,7 +367,7 @@ }, { "cell_type": "code", - "execution_count": 21, + "execution_count": 44, "id": "4f5ab3b2", "metadata": {}, "outputs": [ @@ -367,7 +375,7 @@ "name": "stdout", "output_type": "stream", "text": [ - "259 ms ± 23 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" + "248 ms ± 8.94 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n" ] } ], @@ -377,7 +385,7 @@ }, { "cell_type": "code", - "execution_count": 38, + "execution_count": 45, "id": "c78b3e65", "metadata": {}, "outputs": [ @@ -557,7 +565,7 @@ "[14896 rows x 7 columns]" ] }, - "execution_count": 38, + "execution_count": 45, "metadata": {}, "output_type": "execute_result" } @@ -569,7 +577,112 @@ }, { "cell_type": "code", - "execution_count": 39, + "execution_count": 46, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
id_company_toname_company_torelation_typename_company_fromid_company_from
0c_52. Schaper Objekt GmbH & Co. Kiel KGKOMMANDITISTMulti-Center Warenvertriebs GmbHc_2213
1c_32Alb-Windkraft GmbH & Co. KGKOMMANDITISTEnBW Windkraftprojekte GmbHc_845
2c_34Anneliese Köster GmbH & Co. KGKOMMANDITISTINDUS Holding Aktiengesellschaftc_1903
3c_74AURELIUS Equity Opportunities SE & Co. KGaAHAFTENDER_GESELLSCHAFTERAURELIUS Management SEc_163
4c_77Aurelius KGHAFTENDER_GESELLSCHAFTERAurelius Verwaltungs GmbHc_80
\n", + "
" + ], + "text/plain": [ + " id_company_to name_company_to \\\n", + "0 c_5 2. Schaper Objekt GmbH & Co. Kiel KG \n", + "1 c_32 Alb-Windkraft GmbH & Co. KG \n", + "2 c_34 Anneliese Köster GmbH & Co. KG \n", + "3 c_74 AURELIUS Equity Opportunities SE & Co. KGaA \n", + "4 c_77 Aurelius KG \n", + "\n", + " relation_type name_company_from id_company_from \n", + "0 KOMMANDITIST Multi-Center Warenvertriebs GmbH c_2213 \n", + "1 KOMMANDITIST EnBW Windkraftprojekte GmbH c_845 \n", + "2 KOMMANDITIST INDUS Holding Aktiengesellschaft c_1903 \n", + "3 HAFTENDER_GESELLSCHAFTER AURELIUS Management SE c_163 \n", + "4 HAFTENDER_GESELLSCHAFTER Aurelius Verwaltungs GmbH c_80 " + ] + }, + "execution_count": 46, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "company_relations['id_company_from'] = company_relations['id_company_from'].apply(lambda x: f\"c_{x}\")\n", + "company_relations['id_company_to'] = company_relations['id_company_to'].apply(lambda x: f\"c_{x}\")\n", + "company_relations.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 47, "id": "9887d1f0", "metadata": {}, "outputs": [ @@ -674,7 +787,7 @@ "4 KOMMANDITIST p_5 Staiger Michaela 1971-03-03 " ] }, - "execution_count": 39, + "execution_count": 47, "metadata": {}, "output_type": "execute_result" } @@ -686,17 +799,59 @@ ] }, { - "cell_type": "markdown", - "id": "f448841c", + "cell_type": "code", + "execution_count": 48, "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "578" + ] + }, + "execution_count": 48, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Person relations filtered and fitted that are nodes not leaves" + "len(company_relations)" ] }, { "cell_type": "code", - "execution_count": 23, - "id": "52dad02d", + "execution_count": 49, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "14896" + ] + }, + "execution_count": 49, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(person_relations)" + ] + }, + { + "cell_type": "markdown", + "id": "c7322d77", + "metadata": {}, + "source": [ + "# Filter Methods\n", + "\n", + "## Relation Type" + ] + }, + { + "cell_type": "code", + "execution_count": 116, + "id": "377b28ca", "metadata": {}, "outputs": [ { @@ -720,93 +875,19838 @@ " \n", " \n", " \n", - " person_id\n", + " id_company\n", + " name_company\n", + " relation_type\n", + " id_person\n", + " lastname\n", + " firstname\n", + " date_of_birth\n", + " \n", + " \n", + " \n", + " \n", + " 576\n", + " c_53\n", + " 1. Freiburger Solarfonds Beteiligungs-KG\n", + " HAFTENDER_GESELLSCHAFTER\n", + " p_545\n", + " Wetzel\n", + " Jürgen\n", + " 1962-11-15\n", + " \n", + " \n", + " 802\n", + " c_77\n", + " Aurelius KG\n", + " HAFTENDER_GESELLSCHAFTER\n", + " p_758\n", + " Esser\n", + " Peter\n", + " 1957-04-14\n", + " \n", + " \n", + " 1591\n", + " c_253\n", + " Bayer Design Fritz Bayer GmbH & Co KG\n", + " HAFTENDER_GESELLSCHAFTER\n", + " p_1313\n", + " Neubauer\n", + " Michael Georg\n", + " 1966-02-17\n", + " \n", + " \n", + " 2055\n", + " c_301\n", + " Bayern Immobilien Höller/Lechner KG\n", + " HAFTENDER_GESELLSCHAFTER\n", + " p_1706\n", + " Höller\n", + " Erwin\n", + " 1956-09-25\n", + " \n", + " \n", + " 2338\n", + " c_388\n", + " Bayern-Osteuropa OHG Travel Consulting Marketing\n", + " HAFTENDER_GESELLSCHAFTER\n", + " p_1891\n", + " Guwa\n", + " Eugen\n", + " 1975-03-03\n", + " \n", + " \n", + " ...\n", + " ...\n", + " ...\n", + " ...\n", + " ...\n", + " ...\n", + " ...\n", + " ...\n", + " \n", + " \n", + " 11295\n", + " c_2316\n", + " Nordex-Glas oHG\n", + " HAFTENDER_GESELLSCHAFTER\n", + " p_7348\n", + " Karaarslan\n", + " Sevgi\n", + " 1984-03-14\n", + " \n", + " \n", + " 11768\n", + " c_2444\n", + " \"PETER G. OHG,\" - Men & Women\n", + " HAFTENDER_GESELLSCHAFTER\n", + " p_7647\n", + " Greis\n", + " Leonie\n", + " 1949-08-06\n", + " \n", + " \n", + " 11769\n", + " c_2444\n", + " \"PETER G. OHG,\" - Men & Women\n", + " HAFTENDER_GESELLSCHAFTER\n", + " p_7648\n", + " Greis\n", + " Daniela\n", + " 1968-04-18\n", + " \n", + " \n", + " 11837\n", + " c_2470\n", + " REWE-Markt Ströer OHG\n", + " HAFTENDER_GESELLSCHAFTER\n", + " p_7679\n", + " Ströer\n", + " Silvio\n", + " 1976-04-14\n", + " \n", + " \n", + " 12119\n", + " c_2538\n", + " Sartorius KG\n", + " HAFTENDER_GESELLSCHAFTER\n", + " p_7864\n", + " Sartorius\n", + " Meik\n", + " 1981-07-10\n", + " \n", + " \n", + "\n", + "

272 rows × 7 columns

\n", + "" + ], + "text/plain": [ + " id_company name_company \\\n", + "576 c_53 1. Freiburger Solarfonds Beteiligungs-KG \n", + "802 c_77 Aurelius KG \n", + "1591 c_253 Bayer Design Fritz Bayer GmbH & Co KG \n", + "2055 c_301 Bayern Immobilien Höller/Lechner KG \n", + "2338 c_388 Bayern-Osteuropa OHG Travel Consulting Marketing \n", + "... ... ... \n", + "11295 c_2316 Nordex-Glas oHG \n", + "11768 c_2444 \"PETER G. OHG,\" - Men & Women \n", + "11769 c_2444 \"PETER G. OHG,\" - Men & Women \n", + "11837 c_2470 REWE-Markt Ströer OHG \n", + "12119 c_2538 Sartorius KG \n", + "\n", + " relation_type id_person lastname firstname \\\n", + "576 HAFTENDER_GESELLSCHAFTER p_545 Wetzel Jürgen \n", + "802 HAFTENDER_GESELLSCHAFTER p_758 Esser Peter \n", + "1591 HAFTENDER_GESELLSCHAFTER p_1313 Neubauer Michael Georg \n", + "2055 HAFTENDER_GESELLSCHAFTER p_1706 Höller Erwin \n", + "2338 HAFTENDER_GESELLSCHAFTER p_1891 Guwa Eugen \n", + "... ... ... ... ... \n", + "11295 HAFTENDER_GESELLSCHAFTER p_7348 Karaarslan Sevgi \n", + "11768 HAFTENDER_GESELLSCHAFTER p_7647 Greis Leonie \n", + "11769 HAFTENDER_GESELLSCHAFTER p_7648 Greis Daniela \n", + "11837 HAFTENDER_GESELLSCHAFTER p_7679 Ströer Silvio \n", + "12119 HAFTENDER_GESELLSCHAFTER p_7864 Sartorius Meik \n", + "\n", + " date_of_birth \n", + "576 1962-11-15 \n", + "802 1957-04-14 \n", + "1591 1966-02-17 \n", + "2055 1956-09-25 \n", + "2338 1975-03-03 \n", + "... ... \n", + "11295 1984-03-14 \n", + "11768 1949-08-06 \n", + "11769 1968-04-18 \n", + "11837 1976-04-14 \n", + "12119 1981-07-10 \n", + "\n", + "[272 rows x 7 columns]" + ] + }, + "execution_count": 116, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import pandas as pd\n", + "\n", + "def filter_relation_type(df: pd.DataFrame, selected_relation_type):\n", + " df = df.loc[df[\"relation_type\"] == selected_relation_type]\n", + " return df\n", + "\n", + "relation_type_set = set(company_relations[\"relation_type\"].unique())\n", + "relation_type_set\n", + "# {'HAFTENDER_GESELLSCHAFTER', 'INHABER', 'KOMMANDITIST', 'LIQUIDATOR'}\n", + "test_df = filter_relation_type(person_relations, \"HAFTENDER_GESELLSCHAFTER\")\n", + "test_df" + ] + }, + { + "cell_type": "markdown", + "id": "400e5768", + "metadata": {}, + "source": [ + "## Discard only Leaves/One Conenctions" + ] + }, + { + "cell_type": "code", + "execution_count": 111, + "id": "99851ebf", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", " \n", " \n", " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", " \n", " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", - " \n", - " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", " \n", " \n", "
id_company_toname_company_torelation_typename_company_fromid_company_from
02520c_258Aurubis Stolberg GmbH & Co. KGKOMMANDITISTAurubis AGc_307
14993c_258Aurubis Stolberg GmbH & Co. KGHAFTENDER_GESELLSCHAFTERAurubis Stolberg Verwaltungs-GmbHc_353
23202c_370Aurubis Stolberg Asset GmbH & Co. KGHAFTENDER_GESELLSCHAFTERAurubis Stolberg GmbH & Co. KGc_258
34611c_370Aurubis Stolberg Asset GmbH & Co. KGKOMMANDITISTAurubis Stolberg Asset Verwaltungs-GmbHc_371
44095c_403BayWa r.e. Windparkportfolio 1 GmbH & Co. KGHAFTENDER_GESELLSCHAFTERBayWa r.e. Wind Verwaltungs GmbHc_435
..................
18043565377c_3136Zalando BTD 009 SE & Co. KGKOMMANDITISTZalando Operations GmbHc_3103
18053510378c_3137Zalando BTD 011 SE & Co. KGHAFTENDER_GESELLSCHAFTERZalando SEc_3112
1806530379c_3137Zalando BTD 011 SE & Co. KGKOMMANDITISTZalando Operations GmbHc_3103
1807536380c_3145Zalando Customer Care International SE & Co. KGHAFTENDER_GESELLSCHAFTERZalando SEc_3112
18084617381c_3145Zalando Customer Care International SE & Co. KGKOMMANDITISTZalando Operations GmbHc_3103
\n", - "

1809 rows × 1 columns

\n", + "

382 rows × 5 columns

\n", "
" ], "text/plain": [ - " person_id\n", - "0 2520\n", - "1 4993\n", - "2 3202\n", - "3 4611\n", - "4 4095\n", - "... ...\n", - "1804 3565\n", - "1805 3510\n", - "1806 530\n", - "1807 536\n", - "1808 4617\n", + " id_company_to name_company_to \\\n", + "0 c_258 Aurubis Stolberg GmbH & Co. KG \n", + "1 c_258 Aurubis Stolberg GmbH & Co. KG \n", + "2 c_370 Aurubis Stolberg Asset GmbH & Co. KG \n", + "3 c_370 Aurubis Stolberg Asset GmbH & Co. KG \n", + "4 c_403 BayWa r.e. Windparkportfolio 1 GmbH & Co. KG \n", + ".. ... ... \n", + "377 c_3136 Zalando BTD 009 SE & Co. KG \n", + "378 c_3137 Zalando BTD 011 SE & Co. KG \n", + "379 c_3137 Zalando BTD 011 SE & Co. KG \n", + "380 c_3145 Zalando Customer Care International SE & Co. KG \n", + "381 c_3145 Zalando Customer Care International SE & Co. KG \n", "\n", - "[1809 rows x 1 columns]" + " relation_type name_company_from \\\n", + "0 KOMMANDITIST Aurubis AG \n", + "1 HAFTENDER_GESELLSCHAFTER Aurubis Stolberg Verwaltungs-GmbH \n", + "2 HAFTENDER_GESELLSCHAFTER Aurubis Stolberg GmbH & Co. KG \n", + "3 KOMMANDITIST Aurubis Stolberg Asset Verwaltungs-GmbH \n", + "4 HAFTENDER_GESELLSCHAFTER BayWa r.e. Wind Verwaltungs GmbH \n", + ".. ... ... \n", + "377 KOMMANDITIST Zalando Operations GmbH \n", + "378 HAFTENDER_GESELLSCHAFTER Zalando SE \n", + "379 KOMMANDITIST Zalando Operations GmbH \n", + "380 HAFTENDER_GESELLSCHAFTER Zalando SE \n", + "381 KOMMANDITIST Zalando Operations GmbH \n", + "\n", + " id_company_from \n", + "0 c_307 \n", + "1 c_353 \n", + "2 c_258 \n", + "3 c_371 \n", + "4 c_435 \n", + ".. ... \n", + "377 c_3103 \n", + "378 c_3112 \n", + "379 c_3103 \n", + "380 c_3112 \n", + "381 c_3103 \n", + "\n", + "[382 rows x 5 columns]" ] }, - "execution_count": 23, + "execution_count": 111, "metadata": {}, "output_type": "execute_result" } ], + "source": [ + "def filter_relation_with_more_than_one_connection(df: pd.DataFrame, id_column_name_to, id_column_name_from):\n", + " # print(df.columns.values)\n", + " tmp_df = pd.DataFrame(columns= df.columns.values)\n", + " # print(tmp_df)\n", + " for _index, row in df.iterrows():\n", + " count = 0\n", + " id = row[id_column_name_to]\n", + " for _index_sub, row_sub in df.iterrows():\n", + " if id == row_sub[id_column_name_to]:\n", + " count = count + 1\n", + " if id == row_sub[id_column_name_from]:\n", + " count = count + 1\n", + " if count > 1:\n", + " break\n", + " \n", + " if count > 1:\n", + " # tmp_df = pd.concat([tmp_df, pd.DataFrame(row)])+\n", + " tmp_df.loc[len(tmp_df)] = row\n", + " # print(row)\n", + " count = 0\n", + " else:\n", + " count = 0\n", + " continue\n", + " # print(tmp_df)\n", + " count = 0\n", + " return tmp_df\n", + "\n", + "tmp_df = filter_relation_with_more_than_one_connection(company_relations, \"id_company_to\", \"id_company_from\")\n", + "tmp_df\n", + "# Für Companys 10 sekunden\n", + "# tmp_df = filter_relation_with_more_than_one_connection(person_relations, \"id_company\", \"id_person\")\n", + "# tmp_df\n", + "# Für Person über 4 min\n", + "# print(len(company_relations[\"id_company_to\"].unique()))" + ] + }, + { + "cell_type": "markdown", + "id": "564d0f79", + "metadata": {}, + "source": [ + "## Filter Leaves with SQL" + ] + }, + { + "cell_type": "code", + "execution_count": 113, + "id": "3bca9fea", + "metadata": {}, + "outputs": [ + { + "ename": "PendingRollbackError", + "evalue": "Can't reconnect until invalid transaction is rolled back. (Background on this error at: https://sqlalche.me/e/14/8s2b)", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mPendingRollbackError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32mc:\\Users\\trimr\\Projekte\\aki_prj23_transparenzregister\\src\\aki_prj23_transparenzregister\\utils\\networkx\\sql_alchemy_to_networkx_v2.ipynb Cell 23\u001b[0m line \u001b[0;36m1\n\u001b[0;32m 3\u001b[0m \u001b[39m# Subquery to group and count the relations without joins\u001b[39;00m\n\u001b[0;32m 4\u001b[0m grouped_person_relations_subquery \u001b[39m=\u001b[39m (\n\u001b[0;32m 5\u001b[0m session\u001b[39m.\u001b[39mquery(\n\u001b[0;32m 6\u001b[0m entities\u001b[39m.\u001b[39mPersonRelation\u001b[39m.\u001b[39mperson_id,\n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 15\u001b[0m \u001b[39m.\u001b[39mhaving(func\u001b[39m.\u001b[39mcount() \u001b[39m>\u001b[39m \u001b[39m1\u001b[39m)\n\u001b[0;32m 16\u001b[0m )\n\u001b[1;32m---> 18\u001b[0m grouped_person_relations \u001b[39m=\u001b[39m pd\u001b[39m.\u001b[39mDataFrame(grouped_person_relations_subquery\u001b[39m.\u001b[39;49mall())\n\u001b[0;32m 19\u001b[0m grouped_person_relations\n", + "File \u001b[1;32mc:\\Users\\trimr\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\aki-prj23-transparenzregister-IY2hcXvW-py3.11\\Lib\\site-packages\\sqlalchemy\\orm\\query.py:2773\u001b[0m, in \u001b[0;36mQuery.all\u001b[1;34m(self)\u001b[0m\n\u001b[0;32m 2757\u001b[0m \u001b[39mdef\u001b[39;00m \u001b[39mall\u001b[39m(\u001b[39mself\u001b[39m):\n\u001b[0;32m 2758\u001b[0m \u001b[39m \u001b[39m\u001b[39m\"\"\"Return the results represented by this :class:`_query.Query`\u001b[39;00m\n\u001b[0;32m 2759\u001b[0m \u001b[39m as a list.\u001b[39;00m\n\u001b[0;32m 2760\u001b[0m \n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 2771\u001b[0m \u001b[39m :ref:`faq_query_deduplicating`\u001b[39;00m\n\u001b[0;32m 2772\u001b[0m \u001b[39m \"\"\"\u001b[39;00m\n\u001b[1;32m-> 2773\u001b[0m \u001b[39mreturn\u001b[39;00m \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49m_iter()\u001b[39m.\u001b[39mall()\n", + "File \u001b[1;32mc:\\Users\\trimr\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\aki-prj23-transparenzregister-IY2hcXvW-py3.11\\Lib\\site-packages\\sqlalchemy\\orm\\query.py:2916\u001b[0m, in \u001b[0;36mQuery._iter\u001b[1;34m(self)\u001b[0m\n\u001b[0;32m 2913\u001b[0m params \u001b[39m=\u001b[39m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m_params\n\u001b[0;32m 2915\u001b[0m statement \u001b[39m=\u001b[39m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m_statement_20()\n\u001b[1;32m-> 2916\u001b[0m result \u001b[39m=\u001b[39m \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49msession\u001b[39m.\u001b[39;49mexecute(\n\u001b[0;32m 2917\u001b[0m statement,\n\u001b[0;32m 2918\u001b[0m params,\n\u001b[0;32m 2919\u001b[0m execution_options\u001b[39m=\u001b[39;49m{\u001b[39m\"\u001b[39;49m\u001b[39m_sa_orm_load_options\u001b[39;49m\u001b[39m\"\u001b[39;49m: \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49mload_options},\n\u001b[0;32m 2920\u001b[0m )\n\u001b[0;32m 2922\u001b[0m \u001b[39m# legacy: automatically set scalars, unique\u001b[39;00m\n\u001b[0;32m 2923\u001b[0m \u001b[39mif\u001b[39;00m result\u001b[39m.\u001b[39m_attributes\u001b[39m.\u001b[39mget(\u001b[39m\"\u001b[39m\u001b[39mis_single_entity\u001b[39m\u001b[39m\"\u001b[39m, \u001b[39mFalse\u001b[39;00m):\n", + "File \u001b[1;32mc:\\Users\\trimr\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\aki-prj23-transparenzregister-IY2hcXvW-py3.11\\Lib\\site-packages\\sqlalchemy\\orm\\session.py:1717\u001b[0m, in \u001b[0;36mSession.execute\u001b[1;34m(self, statement, params, execution_options, bind_arguments, _parent_execute_state, _add_event, **kw)\u001b[0m\n\u001b[0;32m 1715\u001b[0m \u001b[39melse\u001b[39;00m:\n\u001b[0;32m 1716\u001b[0m conn \u001b[39m=\u001b[39m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m_connection_for_bind(bind)\n\u001b[1;32m-> 1717\u001b[0m result \u001b[39m=\u001b[39m conn\u001b[39m.\u001b[39;49m_execute_20(statement, params \u001b[39mor\u001b[39;49;00m {}, execution_options)\n\u001b[0;32m 1719\u001b[0m \u001b[39mif\u001b[39;00m compile_state_cls:\n\u001b[0;32m 1720\u001b[0m result \u001b[39m=\u001b[39m compile_state_cls\u001b[39m.\u001b[39morm_setup_cursor_result(\n\u001b[0;32m 1721\u001b[0m \u001b[39mself\u001b[39m,\n\u001b[0;32m 1722\u001b[0m statement,\n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 1726\u001b[0m result,\n\u001b[0;32m 1727\u001b[0m )\n", + "File \u001b[1;32mc:\\Users\\trimr\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\aki-prj23-transparenzregister-IY2hcXvW-py3.11\\Lib\\site-packages\\sqlalchemy\\engine\\base.py:1710\u001b[0m, in \u001b[0;36mConnection._execute_20\u001b[1;34m(self, statement, parameters, execution_options)\u001b[0m\n\u001b[0;32m 1706\u001b[0m util\u001b[39m.\u001b[39mraise_(\n\u001b[0;32m 1707\u001b[0m exc\u001b[39m.\u001b[39mObjectNotExecutableError(statement), replace_context\u001b[39m=\u001b[39merr\n\u001b[0;32m 1708\u001b[0m )\n\u001b[0;32m 1709\u001b[0m \u001b[39melse\u001b[39;00m:\n\u001b[1;32m-> 1710\u001b[0m \u001b[39mreturn\u001b[39;00m meth(\u001b[39mself\u001b[39;49m, args_10style, kwargs_10style, execution_options)\n", + "File \u001b[1;32mc:\\Users\\trimr\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\aki-prj23-transparenzregister-IY2hcXvW-py3.11\\Lib\\site-packages\\sqlalchemy\\sql\\elements.py:334\u001b[0m, in \u001b[0;36mClauseElement._execute_on_connection\u001b[1;34m(self, connection, multiparams, params, execution_options, _force)\u001b[0m\n\u001b[0;32m 330\u001b[0m \u001b[39mdef\u001b[39;00m \u001b[39m_execute_on_connection\u001b[39m(\n\u001b[0;32m 331\u001b[0m \u001b[39mself\u001b[39m, connection, multiparams, params, execution_options, _force\u001b[39m=\u001b[39m\u001b[39mFalse\u001b[39;00m\n\u001b[0;32m 332\u001b[0m ):\n\u001b[0;32m 333\u001b[0m \u001b[39mif\u001b[39;00m _force \u001b[39mor\u001b[39;00m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39msupports_execution:\n\u001b[1;32m--> 334\u001b[0m \u001b[39mreturn\u001b[39;00m connection\u001b[39m.\u001b[39;49m_execute_clauseelement(\n\u001b[0;32m 335\u001b[0m \u001b[39mself\u001b[39;49m, multiparams, params, execution_options\n\u001b[0;32m 336\u001b[0m )\n\u001b[0;32m 337\u001b[0m \u001b[39melse\u001b[39;00m:\n\u001b[0;32m 338\u001b[0m \u001b[39mraise\u001b[39;00m exc\u001b[39m.\u001b[39mObjectNotExecutableError(\u001b[39mself\u001b[39m)\n", + "File \u001b[1;32mc:\\Users\\trimr\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\aki-prj23-transparenzregister-IY2hcXvW-py3.11\\Lib\\site-packages\\sqlalchemy\\engine\\base.py:1577\u001b[0m, in \u001b[0;36mConnection._execute_clauseelement\u001b[1;34m(self, elem, multiparams, params, execution_options)\u001b[0m\n\u001b[0;32m 1565\u001b[0m compiled_cache \u001b[39m=\u001b[39m execution_options\u001b[39m.\u001b[39mget(\n\u001b[0;32m 1566\u001b[0m \u001b[39m\"\u001b[39m\u001b[39mcompiled_cache\u001b[39m\u001b[39m\"\u001b[39m, \u001b[39mself\u001b[39m\u001b[39m.\u001b[39mengine\u001b[39m.\u001b[39m_compiled_cache\n\u001b[0;32m 1567\u001b[0m )\n\u001b[0;32m 1569\u001b[0m compiled_sql, extracted_params, cache_hit \u001b[39m=\u001b[39m elem\u001b[39m.\u001b[39m_compile_w_cache(\n\u001b[0;32m 1570\u001b[0m dialect\u001b[39m=\u001b[39mdialect,\n\u001b[0;32m 1571\u001b[0m compiled_cache\u001b[39m=\u001b[39mcompiled_cache,\n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 1575\u001b[0m linting\u001b[39m=\u001b[39m\u001b[39mself\u001b[39m\u001b[39m.\u001b[39mdialect\u001b[39m.\u001b[39mcompiler_linting \u001b[39m|\u001b[39m compiler\u001b[39m.\u001b[39mWARN_LINTING,\n\u001b[0;32m 1576\u001b[0m )\n\u001b[1;32m-> 1577\u001b[0m ret \u001b[39m=\u001b[39m \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49m_execute_context(\n\u001b[0;32m 1578\u001b[0m dialect,\n\u001b[0;32m 1579\u001b[0m dialect\u001b[39m.\u001b[39;49mexecution_ctx_cls\u001b[39m.\u001b[39;49m_init_compiled,\n\u001b[0;32m 1580\u001b[0m compiled_sql,\n\u001b[0;32m 1581\u001b[0m distilled_params,\n\u001b[0;32m 1582\u001b[0m execution_options,\n\u001b[0;32m 1583\u001b[0m compiled_sql,\n\u001b[0;32m 1584\u001b[0m distilled_params,\n\u001b[0;32m 1585\u001b[0m elem,\n\u001b[0;32m 1586\u001b[0m extracted_params,\n\u001b[0;32m 1587\u001b[0m cache_hit\u001b[39m=\u001b[39;49mcache_hit,\n\u001b[0;32m 1588\u001b[0m )\n\u001b[0;32m 1589\u001b[0m \u001b[39mif\u001b[39;00m has_events:\n\u001b[0;32m 1590\u001b[0m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39mdispatch\u001b[39m.\u001b[39mafter_execute(\n\u001b[0;32m 1591\u001b[0m \u001b[39mself\u001b[39m,\n\u001b[0;32m 1592\u001b[0m elem,\n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 1596\u001b[0m ret,\n\u001b[0;32m 1597\u001b[0m )\n", + "File \u001b[1;32mc:\\Users\\trimr\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\aki-prj23-transparenzregister-IY2hcXvW-py3.11\\Lib\\site-packages\\sqlalchemy\\engine\\base.py:1808\u001b[0m, in \u001b[0;36mConnection._execute_context\u001b[1;34m(self, dialect, constructor, statement, parameters, execution_options, *args, **kw)\u001b[0m\n\u001b[0;32m 1806\u001b[0m conn \u001b[39m=\u001b[39m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m_dbapi_connection\n\u001b[0;32m 1807\u001b[0m \u001b[39mif\u001b[39;00m conn \u001b[39mis\u001b[39;00m \u001b[39mNone\u001b[39;00m:\n\u001b[1;32m-> 1808\u001b[0m conn \u001b[39m=\u001b[39m \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49m_revalidate_connection()\n\u001b[0;32m 1810\u001b[0m context \u001b[39m=\u001b[39m constructor(\n\u001b[0;32m 1811\u001b[0m dialect, \u001b[39mself\u001b[39m, conn, execution_options, \u001b[39m*\u001b[39margs, \u001b[39m*\u001b[39m\u001b[39m*\u001b[39mkw\n\u001b[0;32m 1812\u001b[0m )\n\u001b[0;32m 1813\u001b[0m \u001b[39mexcept\u001b[39;00m (exc\u001b[39m.\u001b[39mPendingRollbackError, exc\u001b[39m.\u001b[39mResourceClosedError):\n", + "File \u001b[1;32mc:\\Users\\trimr\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\aki-prj23-transparenzregister-IY2hcXvW-py3.11\\Lib\\site-packages\\sqlalchemy\\engine\\base.py:650\u001b[0m, in \u001b[0;36mConnection._revalidate_connection\u001b[1;34m(self)\u001b[0m\n\u001b[0;32m 648\u001b[0m \u001b[39mif\u001b[39;00m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m__can_reconnect \u001b[39mand\u001b[39;00m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39minvalidated:\n\u001b[0;32m 649\u001b[0m \u001b[39mif\u001b[39;00m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m_transaction \u001b[39mis\u001b[39;00m \u001b[39mnot\u001b[39;00m \u001b[39mNone\u001b[39;00m:\n\u001b[1;32m--> 650\u001b[0m \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49m_invalid_transaction()\n\u001b[0;32m 651\u001b[0m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m_dbapi_connection \u001b[39m=\u001b[39m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39mengine\u001b[39m.\u001b[39mraw_connection(\n\u001b[0;32m 652\u001b[0m _connection\u001b[39m=\u001b[39m\u001b[39mself\u001b[39m\n\u001b[0;32m 653\u001b[0m )\n\u001b[0;32m 654\u001b[0m \u001b[39mreturn\u001b[39;00m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m_dbapi_connection\n", + "File \u001b[1;32mc:\\Users\\trimr\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\aki-prj23-transparenzregister-IY2hcXvW-py3.11\\Lib\\site-packages\\sqlalchemy\\engine\\base.py:622\u001b[0m, in \u001b[0;36mConnection._invalid_transaction\u001b[1;34m(self)\u001b[0m\n\u001b[0;32m 620\u001b[0m \u001b[39mdef\u001b[39;00m \u001b[39m_invalid_transaction\u001b[39m(\u001b[39mself\u001b[39m):\n\u001b[0;32m 621\u001b[0m \u001b[39mif\u001b[39;00m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39minvalidated:\n\u001b[1;32m--> 622\u001b[0m \u001b[39mraise\u001b[39;00m exc\u001b[39m.\u001b[39mPendingRollbackError(\n\u001b[0;32m 623\u001b[0m \u001b[39m\"\u001b[39m\u001b[39mCan\u001b[39m\u001b[39m'\u001b[39m\u001b[39mt reconnect until invalid \u001b[39m\u001b[39m%s\u001b[39;00m\u001b[39mtransaction is rolled \u001b[39m\u001b[39m\"\u001b[39m\n\u001b[0;32m 624\u001b[0m \u001b[39m\"\u001b[39m\u001b[39mback.\u001b[39m\u001b[39m\"\u001b[39m\n\u001b[0;32m 625\u001b[0m \u001b[39m%\u001b[39m (\n\u001b[0;32m 626\u001b[0m \u001b[39m\"\u001b[39m\u001b[39msavepoint \u001b[39m\u001b[39m\"\u001b[39m\n\u001b[0;32m 627\u001b[0m \u001b[39mif\u001b[39;00m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m_nested_transaction \u001b[39mis\u001b[39;00m \u001b[39mnot\u001b[39;00m \u001b[39mNone\u001b[39;00m\n\u001b[0;32m 628\u001b[0m \u001b[39melse\u001b[39;00m \u001b[39m\"\u001b[39m\u001b[39m\"\u001b[39m\n\u001b[0;32m 629\u001b[0m ),\n\u001b[0;32m 630\u001b[0m code\u001b[39m=\u001b[39m\u001b[39m\"\u001b[39m\u001b[39m8s2b\u001b[39m\u001b[39m\"\u001b[39m,\n\u001b[0;32m 631\u001b[0m )\n\u001b[0;32m 632\u001b[0m \u001b[39melse\u001b[39;00m:\n\u001b[0;32m 633\u001b[0m \u001b[39massert\u001b[39;00m \u001b[39mnot\u001b[39;00m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m_is_future\n", + "\u001b[1;31mPendingRollbackError\u001b[0m: Can't reconnect until invalid transaction is rolled back. (Background on this error at: https://sqlalche.me/e/14/8s2b)" + ] + } + ], "source": [ "from sqlalchemy import func, text\n", "\n", "# Subquery to group and count the relations without joins\n", - "grouped_relations_subquery = (\n", + "grouped_person_relations_subquery = (\n", " session.query(\n", " entities.PersonRelation.person_id,\n", + " entities.Company.name.label(\"name_company\"),\n", + " entities.PersonRelation.relation.label(\"relation_type\"),\n", + " entities.Person.id.label(\"id_person\"),\n", + " entities.Person.lastname.label(\"lastname\"),\n", + " entities.Person.firstname.label(\"firstname\"),\n", + " entities.Person.date_of_birth.label(\"date_of_birth\"),\n", " )\n", " .group_by(entities.PersonRelation.person_id)\n", " .having(func.count() > 1)\n", ")\n", - "pd.DataFrame(grouped_relations_subquery.all())" + "\n", + "grouped_person_relations = pd.DataFrame(grouped_person_relations_subquery.all())\n", + "grouped_person_relations" + ] + }, + { + "cell_type": "code", + "execution_count": 115, + "id": "3ca72027", + "metadata": {}, + "outputs": [ + { + "ename": "PendingRollbackError", + "evalue": "Can't reconnect until invalid transaction is rolled back. (Background on this error at: https://sqlalche.me/e/14/8s2b)", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mPendingRollbackError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32mc:\\Users\\trimr\\Projekte\\aki_prj23_transparenzregister\\src\\aki_prj23_transparenzregister\\utils\\networkx\\sql_alchemy_to_networkx_v2.ipynb Cell 24\u001b[0m line \u001b[0;36m1\n\u001b[0;32m 3\u001b[0m \u001b[39m# Subquery to group and count the relations without joins\u001b[39;00m\n\u001b[0;32m 4\u001b[0m grouped_company_relations_subquery \u001b[39m=\u001b[39m (\n\u001b[0;32m 5\u001b[0m session\u001b[39m.\u001b[39mquery(\n\u001b[0;32m 6\u001b[0m to_company\u001b[39m.\u001b[39mid\u001b[39m.\u001b[39mlabel(\u001b[39m\"\u001b[39m\u001b[39mid_company_to\u001b[39m\u001b[39m\"\u001b[39m),\n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 13\u001b[0m \u001b[39m.\u001b[39mhaving(func\u001b[39m.\u001b[39mcount() \u001b[39m>\u001b[39m \u001b[39m1\u001b[39m)\n\u001b[0;32m 14\u001b[0m )\n\u001b[1;32m---> 16\u001b[0m pd\u001b[39m.\u001b[39mDataFrame(grouped_company_relations_subquery\u001b[39m.\u001b[39;49mall())\n\u001b[0;32m 17\u001b[0m \u001b[39m# grouped_company_relations\u001b[39;00m\n", + "File \u001b[1;32mc:\\Users\\trimr\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\aki-prj23-transparenzregister-IY2hcXvW-py3.11\\Lib\\site-packages\\sqlalchemy\\orm\\query.py:2773\u001b[0m, in \u001b[0;36mQuery.all\u001b[1;34m(self)\u001b[0m\n\u001b[0;32m 2757\u001b[0m \u001b[39mdef\u001b[39;00m \u001b[39mall\u001b[39m(\u001b[39mself\u001b[39m):\n\u001b[0;32m 2758\u001b[0m \u001b[39m \u001b[39m\u001b[39m\"\"\"Return the results represented by this :class:`_query.Query`\u001b[39;00m\n\u001b[0;32m 2759\u001b[0m \u001b[39m as a list.\u001b[39;00m\n\u001b[0;32m 2760\u001b[0m \n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 2771\u001b[0m \u001b[39m :ref:`faq_query_deduplicating`\u001b[39;00m\n\u001b[0;32m 2772\u001b[0m \u001b[39m \"\"\"\u001b[39;00m\n\u001b[1;32m-> 2773\u001b[0m \u001b[39mreturn\u001b[39;00m \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49m_iter()\u001b[39m.\u001b[39mall()\n", + "File \u001b[1;32mc:\\Users\\trimr\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\aki-prj23-transparenzregister-IY2hcXvW-py3.11\\Lib\\site-packages\\sqlalchemy\\orm\\query.py:2916\u001b[0m, in \u001b[0;36mQuery._iter\u001b[1;34m(self)\u001b[0m\n\u001b[0;32m 2913\u001b[0m params \u001b[39m=\u001b[39m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m_params\n\u001b[0;32m 2915\u001b[0m statement \u001b[39m=\u001b[39m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m_statement_20()\n\u001b[1;32m-> 2916\u001b[0m result \u001b[39m=\u001b[39m \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49msession\u001b[39m.\u001b[39;49mexecute(\n\u001b[0;32m 2917\u001b[0m statement,\n\u001b[0;32m 2918\u001b[0m params,\n\u001b[0;32m 2919\u001b[0m execution_options\u001b[39m=\u001b[39;49m{\u001b[39m\"\u001b[39;49m\u001b[39m_sa_orm_load_options\u001b[39;49m\u001b[39m\"\u001b[39;49m: \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49mload_options},\n\u001b[0;32m 2920\u001b[0m )\n\u001b[0;32m 2922\u001b[0m \u001b[39m# legacy: automatically set scalars, unique\u001b[39;00m\n\u001b[0;32m 2923\u001b[0m \u001b[39mif\u001b[39;00m result\u001b[39m.\u001b[39m_attributes\u001b[39m.\u001b[39mget(\u001b[39m\"\u001b[39m\u001b[39mis_single_entity\u001b[39m\u001b[39m\"\u001b[39m, \u001b[39mFalse\u001b[39;00m):\n", + "File \u001b[1;32mc:\\Users\\trimr\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\aki-prj23-transparenzregister-IY2hcXvW-py3.11\\Lib\\site-packages\\sqlalchemy\\orm\\session.py:1717\u001b[0m, in \u001b[0;36mSession.execute\u001b[1;34m(self, statement, params, execution_options, bind_arguments, _parent_execute_state, _add_event, **kw)\u001b[0m\n\u001b[0;32m 1715\u001b[0m \u001b[39melse\u001b[39;00m:\n\u001b[0;32m 1716\u001b[0m conn \u001b[39m=\u001b[39m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m_connection_for_bind(bind)\n\u001b[1;32m-> 1717\u001b[0m result \u001b[39m=\u001b[39m conn\u001b[39m.\u001b[39;49m_execute_20(statement, params \u001b[39mor\u001b[39;49;00m {}, execution_options)\n\u001b[0;32m 1719\u001b[0m \u001b[39mif\u001b[39;00m compile_state_cls:\n\u001b[0;32m 1720\u001b[0m result \u001b[39m=\u001b[39m compile_state_cls\u001b[39m.\u001b[39morm_setup_cursor_result(\n\u001b[0;32m 1721\u001b[0m \u001b[39mself\u001b[39m,\n\u001b[0;32m 1722\u001b[0m statement,\n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 1726\u001b[0m result,\n\u001b[0;32m 1727\u001b[0m )\n", + "File \u001b[1;32mc:\\Users\\trimr\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\aki-prj23-transparenzregister-IY2hcXvW-py3.11\\Lib\\site-packages\\sqlalchemy\\engine\\base.py:1710\u001b[0m, in \u001b[0;36mConnection._execute_20\u001b[1;34m(self, statement, parameters, execution_options)\u001b[0m\n\u001b[0;32m 1706\u001b[0m util\u001b[39m.\u001b[39mraise_(\n\u001b[0;32m 1707\u001b[0m exc\u001b[39m.\u001b[39mObjectNotExecutableError(statement), replace_context\u001b[39m=\u001b[39merr\n\u001b[0;32m 1708\u001b[0m )\n\u001b[0;32m 1709\u001b[0m \u001b[39melse\u001b[39;00m:\n\u001b[1;32m-> 1710\u001b[0m \u001b[39mreturn\u001b[39;00m meth(\u001b[39mself\u001b[39;49m, args_10style, kwargs_10style, execution_options)\n", + "File \u001b[1;32mc:\\Users\\trimr\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\aki-prj23-transparenzregister-IY2hcXvW-py3.11\\Lib\\site-packages\\sqlalchemy\\sql\\elements.py:334\u001b[0m, in \u001b[0;36mClauseElement._execute_on_connection\u001b[1;34m(self, connection, multiparams, params, execution_options, _force)\u001b[0m\n\u001b[0;32m 330\u001b[0m \u001b[39mdef\u001b[39;00m \u001b[39m_execute_on_connection\u001b[39m(\n\u001b[0;32m 331\u001b[0m \u001b[39mself\u001b[39m, connection, multiparams, params, execution_options, _force\u001b[39m=\u001b[39m\u001b[39mFalse\u001b[39;00m\n\u001b[0;32m 332\u001b[0m ):\n\u001b[0;32m 333\u001b[0m \u001b[39mif\u001b[39;00m _force \u001b[39mor\u001b[39;00m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39msupports_execution:\n\u001b[1;32m--> 334\u001b[0m \u001b[39mreturn\u001b[39;00m connection\u001b[39m.\u001b[39;49m_execute_clauseelement(\n\u001b[0;32m 335\u001b[0m \u001b[39mself\u001b[39;49m, multiparams, params, execution_options\n\u001b[0;32m 336\u001b[0m )\n\u001b[0;32m 337\u001b[0m \u001b[39melse\u001b[39;00m:\n\u001b[0;32m 338\u001b[0m \u001b[39mraise\u001b[39;00m exc\u001b[39m.\u001b[39mObjectNotExecutableError(\u001b[39mself\u001b[39m)\n", + "File \u001b[1;32mc:\\Users\\trimr\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\aki-prj23-transparenzregister-IY2hcXvW-py3.11\\Lib\\site-packages\\sqlalchemy\\engine\\base.py:1577\u001b[0m, in \u001b[0;36mConnection._execute_clauseelement\u001b[1;34m(self, elem, multiparams, params, execution_options)\u001b[0m\n\u001b[0;32m 1565\u001b[0m compiled_cache \u001b[39m=\u001b[39m execution_options\u001b[39m.\u001b[39mget(\n\u001b[0;32m 1566\u001b[0m \u001b[39m\"\u001b[39m\u001b[39mcompiled_cache\u001b[39m\u001b[39m\"\u001b[39m, \u001b[39mself\u001b[39m\u001b[39m.\u001b[39mengine\u001b[39m.\u001b[39m_compiled_cache\n\u001b[0;32m 1567\u001b[0m )\n\u001b[0;32m 1569\u001b[0m compiled_sql, extracted_params, cache_hit \u001b[39m=\u001b[39m elem\u001b[39m.\u001b[39m_compile_w_cache(\n\u001b[0;32m 1570\u001b[0m dialect\u001b[39m=\u001b[39mdialect,\n\u001b[0;32m 1571\u001b[0m compiled_cache\u001b[39m=\u001b[39mcompiled_cache,\n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 1575\u001b[0m linting\u001b[39m=\u001b[39m\u001b[39mself\u001b[39m\u001b[39m.\u001b[39mdialect\u001b[39m.\u001b[39mcompiler_linting \u001b[39m|\u001b[39m compiler\u001b[39m.\u001b[39mWARN_LINTING,\n\u001b[0;32m 1576\u001b[0m )\n\u001b[1;32m-> 1577\u001b[0m ret \u001b[39m=\u001b[39m \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49m_execute_context(\n\u001b[0;32m 1578\u001b[0m dialect,\n\u001b[0;32m 1579\u001b[0m dialect\u001b[39m.\u001b[39;49mexecution_ctx_cls\u001b[39m.\u001b[39;49m_init_compiled,\n\u001b[0;32m 1580\u001b[0m compiled_sql,\n\u001b[0;32m 1581\u001b[0m distilled_params,\n\u001b[0;32m 1582\u001b[0m execution_options,\n\u001b[0;32m 1583\u001b[0m compiled_sql,\n\u001b[0;32m 1584\u001b[0m distilled_params,\n\u001b[0;32m 1585\u001b[0m elem,\n\u001b[0;32m 1586\u001b[0m extracted_params,\n\u001b[0;32m 1587\u001b[0m cache_hit\u001b[39m=\u001b[39;49mcache_hit,\n\u001b[0;32m 1588\u001b[0m )\n\u001b[0;32m 1589\u001b[0m \u001b[39mif\u001b[39;00m has_events:\n\u001b[0;32m 1590\u001b[0m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39mdispatch\u001b[39m.\u001b[39mafter_execute(\n\u001b[0;32m 1591\u001b[0m \u001b[39mself\u001b[39m,\n\u001b[0;32m 1592\u001b[0m elem,\n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 1596\u001b[0m ret,\n\u001b[0;32m 1597\u001b[0m )\n", + "File \u001b[1;32mc:\\Users\\trimr\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\aki-prj23-transparenzregister-IY2hcXvW-py3.11\\Lib\\site-packages\\sqlalchemy\\engine\\base.py:1808\u001b[0m, in \u001b[0;36mConnection._execute_context\u001b[1;34m(self, dialect, constructor, statement, parameters, execution_options, *args, **kw)\u001b[0m\n\u001b[0;32m 1806\u001b[0m conn \u001b[39m=\u001b[39m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m_dbapi_connection\n\u001b[0;32m 1807\u001b[0m \u001b[39mif\u001b[39;00m conn \u001b[39mis\u001b[39;00m \u001b[39mNone\u001b[39;00m:\n\u001b[1;32m-> 1808\u001b[0m conn \u001b[39m=\u001b[39m \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49m_revalidate_connection()\n\u001b[0;32m 1810\u001b[0m context \u001b[39m=\u001b[39m constructor(\n\u001b[0;32m 1811\u001b[0m dialect, \u001b[39mself\u001b[39m, conn, execution_options, \u001b[39m*\u001b[39margs, \u001b[39m*\u001b[39m\u001b[39m*\u001b[39mkw\n\u001b[0;32m 1812\u001b[0m )\n\u001b[0;32m 1813\u001b[0m \u001b[39mexcept\u001b[39;00m (exc\u001b[39m.\u001b[39mPendingRollbackError, exc\u001b[39m.\u001b[39mResourceClosedError):\n", + "File \u001b[1;32mc:\\Users\\trimr\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\aki-prj23-transparenzregister-IY2hcXvW-py3.11\\Lib\\site-packages\\sqlalchemy\\engine\\base.py:650\u001b[0m, in \u001b[0;36mConnection._revalidate_connection\u001b[1;34m(self)\u001b[0m\n\u001b[0;32m 648\u001b[0m \u001b[39mif\u001b[39;00m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m__can_reconnect \u001b[39mand\u001b[39;00m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39minvalidated:\n\u001b[0;32m 649\u001b[0m \u001b[39mif\u001b[39;00m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m_transaction \u001b[39mis\u001b[39;00m \u001b[39mnot\u001b[39;00m \u001b[39mNone\u001b[39;00m:\n\u001b[1;32m--> 650\u001b[0m \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49m_invalid_transaction()\n\u001b[0;32m 651\u001b[0m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m_dbapi_connection \u001b[39m=\u001b[39m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39mengine\u001b[39m.\u001b[39mraw_connection(\n\u001b[0;32m 652\u001b[0m _connection\u001b[39m=\u001b[39m\u001b[39mself\u001b[39m\n\u001b[0;32m 653\u001b[0m )\n\u001b[0;32m 654\u001b[0m \u001b[39mreturn\u001b[39;00m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m_dbapi_connection\n", + "File \u001b[1;32mc:\\Users\\trimr\\AppData\\Local\\pypoetry\\Cache\\virtualenvs\\aki-prj23-transparenzregister-IY2hcXvW-py3.11\\Lib\\site-packages\\sqlalchemy\\engine\\base.py:622\u001b[0m, in \u001b[0;36mConnection._invalid_transaction\u001b[1;34m(self)\u001b[0m\n\u001b[0;32m 620\u001b[0m \u001b[39mdef\u001b[39;00m \u001b[39m_invalid_transaction\u001b[39m(\u001b[39mself\u001b[39m):\n\u001b[0;32m 621\u001b[0m \u001b[39mif\u001b[39;00m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39minvalidated:\n\u001b[1;32m--> 622\u001b[0m \u001b[39mraise\u001b[39;00m exc\u001b[39m.\u001b[39mPendingRollbackError(\n\u001b[0;32m 623\u001b[0m \u001b[39m\"\u001b[39m\u001b[39mCan\u001b[39m\u001b[39m'\u001b[39m\u001b[39mt reconnect until invalid \u001b[39m\u001b[39m%s\u001b[39;00m\u001b[39mtransaction is rolled \u001b[39m\u001b[39m\"\u001b[39m\n\u001b[0;32m 624\u001b[0m \u001b[39m\"\u001b[39m\u001b[39mback.\u001b[39m\u001b[39m\"\u001b[39m\n\u001b[0;32m 625\u001b[0m \u001b[39m%\u001b[39m (\n\u001b[0;32m 626\u001b[0m \u001b[39m\"\u001b[39m\u001b[39msavepoint \u001b[39m\u001b[39m\"\u001b[39m\n\u001b[0;32m 627\u001b[0m \u001b[39mif\u001b[39;00m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m_nested_transaction \u001b[39mis\u001b[39;00m \u001b[39mnot\u001b[39;00m \u001b[39mNone\u001b[39;00m\n\u001b[0;32m 628\u001b[0m \u001b[39melse\u001b[39;00m \u001b[39m\"\u001b[39m\u001b[39m\"\u001b[39m\n\u001b[0;32m 629\u001b[0m ),\n\u001b[0;32m 630\u001b[0m code\u001b[39m=\u001b[39m\u001b[39m\"\u001b[39m\u001b[39m8s2b\u001b[39m\u001b[39m\"\u001b[39m,\n\u001b[0;32m 631\u001b[0m )\n\u001b[0;32m 632\u001b[0m \u001b[39melse\u001b[39;00m:\n\u001b[0;32m 633\u001b[0m \u001b[39massert\u001b[39;00m \u001b[39mnot\u001b[39;00m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m_is_future\n", + "\u001b[1;31mPendingRollbackError\u001b[0m: Can't reconnect until invalid transaction is rolled back. (Background on this error at: https://sqlalche.me/e/14/8s2b)" + ] + } + ], + "source": [ + "from sqlalchemy import func, text\n", + "\n", + "# Subquery to group and count the relations without joins\n", + "grouped_company_relations_subquery = (\n", + " session.query(\n", + " to_company.id.label(\"id_company_to\"),\n", + " to_company.name.label(\"name_company_to\"),\n", + " entities.CompanyRelation.relation.label(\"relation_type\"),\n", + " from_company.name.label(\"name_company_from\"),\n", + " from_company.id.label(\"id_company_from\"),\n", + " )\n", + " .group_by(entities.PersonRelation.person_id)\n", + " .having(func.count() > 1)\n", + ")\n", + "\n", + "grouped_company_relations = pd.DataFrame(grouped_company_relations_subquery.all())\n", + "grouped_company_relations" + ] + }, + { + "cell_type": "markdown", + "id": "79b65773", + "metadata": {}, + "source": [ + "# Create Graph" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [], + "source": [ + "COLOR_COMPANY = \"blue\"\n", + "COLOR_PERSON = \"red\"" + ] + }, + { + "cell_type": "code", + "execution_count": 124, + "id": "32c73840", + "metadata": {}, + "outputs": [], + "source": [ + "def create_edge_and_node_list(person_relations: pd.DataFrame, company_relations:pd.DataFrame):\n", + " nodes = {}\n", + " edges = []\n", + "\n", + " # Iterate over person relations\n", + " for _index, row in person_relations.iterrows():\n", + " if node:= nodes.get(row['id_company']) is None:\n", + " nodes[row['id_company']] = {\n", + " \"id\": row['id_company'],\n", + " 'name': row['name_company'],\n", + " 'color': COLOR_COMPANY\n", + " }\n", + " if node:= nodes.get(row['id_person']) is None:\n", + " nodes[row['id_person']] = {\n", + " \"id\": row['id_person'],\n", + " 'firstname': row['firstname'],\n", + " 'lastname': row['lastname'],\n", + " 'date_of_birth': row['date_of_birth'],\n", + " 'color': COLOR_PERSON\n", + " } \n", + " edges.append({'from': row['id_person'], 'to': row['id_company'], 'type': row['relation_type']})\n", + "\n", + " for _index, row in company_relations.iterrows():\n", + " if node:= nodes.get(row['id_company_from']) is None:\n", + " nodes[row['id_company_from']] = {\n", + " \"id\": row['id_company_from'],\n", + " 'name': row['name_company_from'],\n", + " 'color': COLOR_COMPANY\n", + " }\n", + " if node:= nodes.get(row['id_company_to']) is None:\n", + " nodes[row['id_company_to']] = {\n", + " \"id\": row['id_company_to'],\n", + " 'name': row['name_company_to'],\n", + " 'color': COLOR_COMPANY\n", + " } \n", + " edges.append({'from': row['id_company_from'], 'to': row['id_company_to'], 'type': row['relation_type']})\n", + " return nodes, edges\n" + ] + }, + { + "cell_type": "code", + "execution_count": 117, + "id": "4fc00a99", + "metadata": {}, + "outputs": [], + "source": [ + "tmp_company = filter_relation_with_more_than_one_connection(company_relations, \"id_company_to\", \"id_company_from\")\n", + "tmp_persons = filter_relation_type(person_relations, \"HAFTENDER_GESELLSCHAFTER\")" + ] + }, + { + "cell_type": "code", + "execution_count": 125, + "id": "389de28c", + "metadata": {}, + "outputs": [], + "source": [ + "nodes, edges = create_edge_and_node_list(tmp_persons, tmp_company)" + ] + }, + { + "cell_type": "code", + "execution_count": 126, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "617" + ] + }, + "execution_count": 126, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(nodes)" + ] + }, + { + "cell_type": "code", + "execution_count": 127, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "654" + ] + }, + "execution_count": 127, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(edges)" + ] + }, + { + "cell_type": "code", + "execution_count": 128, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import networkx as nx\n", + "import matplotlib.pyplot as plt\n", + "\n", + "fig = plt.figure(figsize=(12, 12))\n", + "ax = plt.subplot(111)\n", + "ax.set_title(\"Graph - Shapes\", fontsize=10)\n", + "\n", + "# create edges from dataframe\n", + "df_edges = pd.DataFrame(edges)\n", + "graph = nx.from_pandas_edgelist(df_edges, source=\"from\", target=\"to\", edge_attr=\"type\")\n", + "\n", + "# update node attributes from dataframe\n", + "# nodes_attr = nodes.set_index(\"index\").to_dict(orient=\"index\")\n", + "nx.set_node_attributes(graph, nodes)\n", + "nx.draw(graph)" + ] + }, + { + "cell_type": "code", + "execution_count": 204, + "id": "7882f12f", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " degree eigenvector degree betweeness closeness pagerank\n", + "0 0.001623 3.388902e-73 0.001623 0.000000 0.001623 0.001621\n", + "1 0.001623 3.388902e-73 0.001623 0.000000 0.001623 0.001621\n", + "2 0.001623 3.388902e-73 0.001623 0.000000 0.001623 0.001621\n", + "3 0.001623 3.388902e-73 0.001623 0.000000 0.001623 0.001621\n", + "4 0.001623 3.388902e-73 0.001623 0.000000 0.001623 0.001621\n", + ".. ... ... ... ... ... ...\n", + "612 0.003247 3.465457e-45 0.003247 0.000073 0.013350 0.001170\n", + "613 0.003247 1.353699e-45 0.003247 0.000102 0.009851 0.001243\n", + "614 0.003247 1.283357e-35 0.003247 0.000004 0.013799 0.001048\n", + "615 0.003247 1.283357e-35 0.003247 0.000004 0.013799 0.001048\n", + "616 0.003247 1.283357e-35 0.003247 0.000004 0.013799 0.001048\n", + "\n", + "[617 rows x 6 columns]\n", + "{'p_545': 'red', 'c_53': 'blue', 'p_758': 'red', 'c_77': 'blue', 'p_1313': 'red', 'c_253': 'blue', 'p_1706': 'red', 'c_301': 'blue', 'p_1891': 'red', 'c_388': 'blue', 'p_1892': 'red', 'p_1899': 'red', 'c_392': 'blue', 'p_2332': 'red', 'c_523': 'blue', 'p_2331': 'red', 'p_2457': 'red', 'c_574': 'blue', 'p_2458': 'red', 'p_2499': 'red', 'c_598': 'blue', 'p_2500': 'red', 'p_3171': 'red', 'c_770': 'blue', 'p_3382': 'red', 'c_827': 'blue', 'p_3486': 'red', 'p_3519': 'red', 'p_3530': 'red', 'p_3531': 'red', 'p_3541': 'red', 'p_3591': 'red', 'c_895': 'blue', 'c_992': 'blue', 'p_4319': 'red', 'c_1132': 'blue', 'p_4470': 'red', 'c_1201': 'blue', 'p_4905': 'red', 'c_1379': 'blue', 'p_4906': 'red', 'p_4919': 'red', 'c_1390': 'blue', 'p_5038': 'red', 'c_1444': 'blue', 'p_5084': 'red', 'c_1466': 'blue', 'p_5203': 'red', 'c_1552': 'blue', 'p_5204': 'red', 'p_6056': 'red', 'c_1913': 'blue', 'c_2014': 'blue', 'p_6596': 'red', 'c_2081': 'blue', 'p_6597': 'red', 'p_6598': 'red', 'p_6599': 'red', 'p_6600': 'red', 'p_6601': 'red', 'p_6602': 'red', 'p_6603': 'red', 'p_6604': 'red', 'p_6605': 'red', 'p_6606': 'red', 'p_6607': 'red', 'p_6608': 'red', 'p_6609': 'red', 'p_6610': 'red', 'p_6611': 'red', 'p_6612': 'red', 'p_6613': 'red', 'p_6614': 'red', 'p_6615': 'red', 'p_6616': 'red', 'p_6617': 'red', 'p_6618': 'red', 'p_6619': 'red', 'p_6620': 'red', 'p_6621': 'red', 'p_6622': 'red', 'p_6623': 'red', 'p_6624': 'red', 'p_6625': 'red', 'p_6626': 'red', 'p_6627': 'red', 'p_6628': 'red', 'p_6629': 'red', 'p_6630': 'red', 'p_6631': 'red', 'p_6632': 'red', 'p_6633': 'red', 'p_6634': 'red', 'p_6635': 'red', 'p_6636': 'red', 'p_6637': 'red', 'p_6638': 'red', 'p_6639': 'red', 'p_6640': 'red', 'p_6641': 'red', 'p_6642': 'red', 'p_6643': 'red', 'p_6644': 'red', 'p_6645': 'red', 'p_6646': 'red', 'p_6647': 'red', 'p_6648': 'red', 'p_6649': 'red', 'p_6650': 'red', 'p_6651': 'red', 'p_6652': 'red', 'p_6653': 'red', 'p_6654': 'red', 'p_6655': 'red', 'p_6656': 'red', 'p_6657': 'red', 'p_6658': 'red', 'p_6659': 'red', 'p_6660': 'red', 'p_6661': 'red', 'p_6662': 'red', 'p_6663': 'red', 'p_6664': 'red', 'p_6665': 'red', 'p_6666': 'red', 'p_6667': 'red', 'p_6668': 'red', 'p_6669': 'red', 'p_6670': 'red', 'p_6671': 'red', 'p_6672': 'red', 'p_6673': 'red', 'p_6674': 'red', 'p_6675': 'red', 'p_6676': 'red', 'p_6677': 'red', 'p_6678': 'red', 'p_6679': 'red', 'p_6680': 'red', 'p_6681': 'red', 'p_6682': 'red', 'p_6683': 'red', 'p_6684': 'red', 'p_6685': 'red', 'p_6686': 'red', 'p_6687': 'red', 'p_6688': 'red', 'p_6689': 'red', 'p_6690': 'red', 'p_6691': 'red', 'p_6692': 'red', 'p_6693': 'red', 'p_6694': 'red', 'p_6695': 'red', 'p_6696': 'red', 'p_6697': 'red', 'p_6698': 'red', 'p_6699': 'red', 'p_6700': 'red', 'p_6701': 'red', 'p_6702': 'red', 'p_6703': 'red', 'p_6704': 'red', 'p_6705': 'red', 'p_6706': 'red', 'p_6707': 'red', 'p_6708': 'red', 'p_6709': 'red', 'p_6710': 'red', 'p_6711': 'red', 'p_6712': 'red', 'p_6713': 'red', 'p_6714': 'red', 'p_6715': 'red', 'p_6716': 'red', 'p_6717': 'red', 'p_6718': 'red', 'p_6719': 'red', 'p_6720': 'red', 'p_6721': 'red', 'p_6722': 'red', 'p_6723': 'red', 'p_6724': 'red', 'p_6725': 'red', 'p_6726': 'red', 'p_6727': 'red', 'p_6728': 'red', 'p_6729': 'red', 'p_6730': 'red', 'p_6731': 'red', 'p_6732': 'red', 'p_6733': 'red', 'p_6734': 'red', 'p_6735': 'red', 'p_6736': 'red', 'p_6737': 'red', 'p_6738': 'red', 'p_6739': 'red', 'p_6740': 'red', 'p_6741': 'red', 'p_6742': 'red', 'p_6743': 'red', 'p_6744': 'red', 'p_6745': 'red', 'p_6746': 'red', 'p_6747': 'red', 'p_6748': 'red', 'p_6749': 'red', 'p_6750': 'red', 'p_6751': 'red', 'p_6752': 'red', 'p_6753': 'red', 'p_6754': 'red', 'p_6755': 'red', 'p_6756': 'red', 'p_6757': 'red', 'p_6758': 'red', 'p_6759': 'red', 'p_6760': 'red', 'p_6761': 'red', 'p_6762': 'red', 'p_6763': 'red', 'p_6764': 'red', 'p_6765': 'red', 'p_6766': 'red', 'p_6767': 'red', 'p_6768': 'red', 'p_6769': 'red', 'p_6770': 'red', 'p_6771': 'red', 'p_6772': 'red', 'p_6773': 'red', 'p_6774': 'red', 'p_6775': 'red', 'p_6776': 'red', 'p_6777': 'red', 'p_6778': 'red', 'p_6779': 'red', 'p_6780': 'red', 'p_6781': 'red', 'p_6782': 'red', 'p_6783': 'red', 'p_6784': 'red', 'p_6785': 'red', 'p_6786': 'red', 'p_6787': 'red', 'p_6788': 'red', 'p_6789': 'red', 'p_6790': 'red', 'p_6791': 'red', 'p_6792': 'red', 'p_6793': 'red', 'p_6794': 'red', 'p_6795': 'red', 'p_6796': 'red', 'p_6797': 'red', 'p_6798': 'red', 'p_6799': 'red', 'p_6800': 'red', 'p_6801': 'red', 'p_6802': 'red', 'p_6803': 'red', 'p_6804': 'red', 'p_6805': 'red', 'p_6806': 'red', 'p_6807': 'red', 'p_6808': 'red', 'p_6809': 'red', 'p_6810': 'red', 'p_6811': 'red', 'p_6812': 'red', 'p_6813': 'red', 'p_6814': 'red', 'p_6815': 'red', 'p_6816': 'red', 'p_6817': 'red', 'p_6818': 'red', 'p_6819': 'red', 'p_6820': 'red', 'p_6821': 'red', 'p_7347': 'red', 'c_2316': 'blue', 'p_7348': 'red', 'p_7647': 'red', 'c_2444': 'blue', 'p_7648': 'red', 'p_7679': 'red', 'c_2470': 'blue', 'p_7864': 'red', 'c_2538': 'blue', 'c_307': 'blue', 'c_258': 'blue', 'c_353': 'blue', 'c_370': 'blue', 'c_371': 'blue', 'c_435': 'blue', 'c_403': 'blue', 'c_455': 'blue', 'c_400': 'blue', 'c_482': 'blue', 'c_633': 'blue', 'c_572': 'blue', 'c_498': 'blue', 'c_484': 'blue', 'c_494': 'blue', 'c_536': 'blue', 'c_568': 'blue', 'c_493': 'blue', 'c_539': 'blue', 'c_406': 'blue', 'c_567': 'blue', 'c_459': 'blue', 'c_582': 'blue', 'c_587': 'blue', 'c_588': 'blue', 'c_401': 'blue', 'c_487': 'blue', 'c_610': 'blue', 'c_704': 'blue', 'c_667': 'blue', 'c_666': 'blue', 'c_709': 'blue', 'c_732': 'blue', 'c_765': 'blue', 'c_724': 'blue', 'c_742': 'blue', 'c_746': 'blue', 'c_841': 'blue', 'c_752': 'blue', 'c_2293': 'blue', 'c_925': 'blue', 'c_839': 'blue', 'c_852': 'blue', 'c_954': 'blue', 'c_843': 'blue', 'c_900': 'blue', 'c_859': 'blue', 'c_868': 'blue', 'c_850': 'blue', 'c_871': 'blue', 'c_879': 'blue', 'c_908': 'blue', 'c_948': 'blue', 'c_930': 'blue', 'c_846': 'blue', 'c_832': 'blue', 'c_939': 'blue', 'c_845': 'blue', 'c_867': 'blue', 'c_949': 'blue', 'c_981': 'blue', 'c_985': 'blue', 'c_955': 'blue', 'c_896': 'blue', 'c_967': 'blue', 'c_840': 'blue', 'c_971': 'blue', 'c_906': 'blue', 'c_978': 'blue', 'c_811': 'blue', 'c_983': 'blue', 'c_984': 'blue', 'c_634': 'blue', 'c_991': 'blue', 'c_600': 'blue', 'c_996': 'blue', 'c_1191': 'blue', 'c_1004': 'blue', 'c_1112': 'blue', 'c_1009': 'blue', 'c_1220': 'blue', 'c_1011': 'blue', 'c_1048': 'blue', 'c_1012': 'blue', 'c_1013': 'blue', 'c_1014': 'blue', 'c_1015': 'blue', 'c_1016': 'blue', 'c_1017': 'blue', 'c_1018': 'blue', 'c_1027': 'blue', 'c_1030': 'blue', 'c_1031': 'blue', 'c_1045': 'blue', 'c_1046': 'blue', 'c_1047': 'blue', 'c_1062': 'blue', 'c_1064': 'blue', 'c_1065': 'blue', 'c_1066': 'blue', 'c_1067': 'blue', 'c_1079': 'blue', 'c_1080': 'blue', 'c_1081': 'blue', 'c_1091': 'blue', 'c_1092': 'blue', 'c_1229': 'blue', 'c_1103': 'blue', 'c_1899': 'blue', 'c_1104': 'blue', 'c_1105': 'blue', 'c_1106': 'blue', 'c_1122': 'blue', 'c_1123': 'blue', 'c_1124': 'blue', 'c_1147': 'blue', 'c_1148': 'blue', 'c_1157': 'blue', 'c_1159': 'blue', 'c_1172': 'blue', 'c_1173': 'blue', 'c_1175': 'blue', 'c_1176': 'blue', 'c_1197': 'blue', 'c_1198': 'blue', 'c_1200': 'blue', 'c_1094': 'blue', 'c_1206': 'blue', 'c_1162': 'blue', 'c_1218': 'blue', 'c_1219': 'blue', 'c_1231': 'blue', 'c_1233': 'blue', 'c_1238': 'blue', 'c_1240': 'blue', 'c_1248': 'blue', 'c_1249': 'blue', 'c_1250': 'blue', 'c_1251': 'blue', 'c_2379': 'blue', 'c_1270': 'blue', 'c_2327': 'blue', 'c_2944': 'blue', 'c_1293': 'blue', 'c_1235': 'blue', 'c_1264': 'blue', 'c_1383': 'blue', 'c_1386': 'blue', 'c_1355': 'blue', 'c_1420': 'blue', 'c_1430': 'blue', 'c_1496': 'blue', 'c_1903': 'blue', 'c_1512': 'blue', 'c_1869': 'blue', 'c_1537': 'blue', 'c_1603': 'blue', 'c_1981': 'blue', 'c_1547': 'blue', 'c_1679': 'blue', 'c_1579': 'blue', 'c_1583': 'blue', 'c_1744': 'blue', 'c_1597': 'blue', 'c_1743': 'blue', 'c_1604': 'blue', 'c_1811': 'blue', 'c_1683': 'blue', 'c_1624': 'blue', 'c_30': 'blue', 'c_1668': 'blue', 'c_2034': 'blue', 'c_1731': 'blue', 'c_1657': 'blue', 'c_1742': 'blue', 'c_1557': 'blue', 'c_2597': 'blue', 'c_1754': 'blue', 'c_1875': 'blue', 'c_1641': 'blue', 'c_92': 'blue', 'c_1952': 'blue', 'c_1778': 'blue', 'c_1813': 'blue', 'c_1847': 'blue', 'c_1784': 'blue', 'c_1781': 'blue', 'c_1873': 'blue', 'c_1844': 'blue', 'c_1919': 'blue', 'c_1975': 'blue', 'c_1928': 'blue', 'c_1691': 'blue', 'c_1779': 'blue', 'c_1930': 'blue', 'c_1934': 'blue', 'c_1935': 'blue', 'c_1572': 'blue', 'c_1695': 'blue', 'c_1976': 'blue', 'c_2021': 'blue', 'c_2136': 'blue', 'c_2020': 'blue', 'c_2022': 'blue', 'c_2041': 'blue', 'c_2082': 'blue', 'c_2193': 'blue', 'c_2042': 'blue', 'c_2044': 'blue', 'c_2060': 'blue', 'c_2080': 'blue', 'c_2084': 'blue', 'c_2003': 'blue', 'c_2093': 'blue', 'c_3065': 'blue', 'c_2094': 'blue', 'c_1492': 'blue', 'c_2095': 'blue', 'c_41': 'blue', 'c_2096': 'blue', 'c_2126': 'blue', 'c_2144': 'blue', 'c_2159': 'blue', 'c_2171': 'blue', 'c_2195': 'blue', 'c_2254': 'blue', 'c_2222': 'blue', 'c_2269': 'blue', 'c_2256': 'blue', 'c_2255': 'blue', 'c_2382': 'blue', 'c_2265': 'blue', 'c_2405': 'blue', 'c_2100': 'blue', 'c_2266': 'blue', 'c_2407': 'blue', 'c_2402': 'blue', 'c_2309': 'blue', 'c_444': 'blue', 'c_2179': 'blue', 'c_2264': 'blue', 'c_2312': 'blue', 'c_2340': 'blue', 'c_2342': 'blue', 'c_2454': 'blue', 'c_1954': 'blue', 'c_2376': 'blue', 'c_1715': 'blue', 'c_2400': 'blue', 'c_2363': 'blue', 'c_2411': 'blue', 'c_2413': 'blue', 'c_2453': 'blue', 'c_2230': 'blue', 'c_2462': 'blue', 'c_3112': 'blue', 'c_2467': 'blue', 'c_3103': 'blue', 'c_2589': 'blue', 'c_2476': 'blue', 'c_2552': 'blue', 'c_2639': 'blue', 'c_2520': 'blue', 'c_2568': 'blue', 'c_2569': 'blue', 'c_2543': 'blue', 'c_2493': 'blue', 'c_2595': 'blue', 'c_2670': 'blue', 'c_2628': 'blue', 'c_2627': 'blue', 'c_2570': 'blue', 'c_2661': 'blue', 'c_2544': 'blue', 'c_2689': 'blue', 'c_468': 'blue', 'c_2699': 'blue', 'c_636': 'blue', 'c_2700': 'blue', 'c_2997': 'blue', 'c_2756': 'blue', 'c_2781': 'blue', 'c_2764': 'blue', 'c_415': 'blue', 'c_2818': 'blue', 'c_2825': 'blue', 'c_2826': 'blue', 'c_2715': 'blue', 'c_2708': 'blue', 'c_2874': 'blue', 'c_2767': 'blue', 'c_2899': 'blue', 'c_2911': 'blue', 'c_2912': 'blue', 'c_2934': 'blue', 'c_2998': 'blue', 'c_2984': 'blue', 'c_3009': 'blue', 'c_3017': 'blue', 'c_3022': 'blue', 'c_3024': 'blue', 'c_3102': 'blue', 'c_3094': 'blue', 'c_3025': 'blue', 'c_3036': 'blue', 'c_3106': 'blue', 'c_3040': 'blue', 'c_3031': 'blue', 'c_3041': 'blue', 'c_589': 'blue', 'c_3044': 'blue', 'c_3047': 'blue', 'c_3057': 'blue', 'c_3062': 'blue', 'c_3073': 'blue', 'c_3071': 'blue', 'c_3074': 'blue', 'c_3075': 'blue', 'c_3098': 'blue', 'c_3101': 'blue', 'c_3070': 'blue', 'c_3107': 'blue', 'c_3126': 'blue', 'c_3134': 'blue', 'c_3136': 'blue', 'c_3137': 'blue', 'c_3145': 'blue'}\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA7YAAAPDCAYAAACHFZfqAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy81sbWrAAAACXBIWXMAAA9hAAAPYQGoP6dpAADrzklEQVR4nOzdd3RU5eL18T2TSa+k01vovfcOgiCogNKkKDas2FGvDb12xI4oKiAgiCAd6R2CdBJ6C51U0ttk5rx/8JorPzsEToZ8P2tlkUzOzOwzC0L2POVYDMMwBAAAAACAi7KaHQAAAAAAgKtBsQUAAAAAuDSKLQAAAADApVFsAQAAAAAujWILAAAAAHBpFFsAAAAAgEuj2AIAAAAAXBrFFgAAAADg0ii2AAAAAACXRrEFAOBPdOzYUaNHjzbluUeMGKHbbrvNlOcGAMDVUGwBAMXShQsX9PjjjysqKkpeXl6KiIhQmzZtNGHCBGVnZ5sd76p99dVXatCggfz8/BQUFKRGjRrprbfeMjsWAAAuyWZ2AAAA/q/jx4+rTZs2CgoK0ptvvql69erJ09NTMTEx+vLLL1W2bFn16dPnD+9rt9vl7u5+nRP/O998841Gjx6tjz/+WB06dFBeXp727t2r2NhYs6MBAOCSGLEFABQ7Dz30kGw2m7Zv364777xTtWrVUpUqVXTrrbdq8eLF6t27d+GxFotFEyZMUJ8+feTr66v//ve/cjgcGjlypCpXrixvb2/VqFFDH3300WXP8etU39dee01hYWEKCAjQgw8+qPz8/MuOczqdevbZZxUcHKzIyEi9+uqrV31+CxYs0J133qmRI0cqKipKderU0aBBg/Tf//73d8e+//77Kl26tEJCQvTwww/LbrcXfu+7775T06ZN5e/vr8jISA0ePFgJCQmF31+7dq0sFosWL16s+vXry8vLSy1btvxdgd64caPatWsnb29vlS9fXo899piysrIKv//555+rWrVqhSPn/fv3v+rXAACAokSxBQAUK8nJyVq+fLkefvhh+fr6/uExFovlsq9fffVV3X777YqJidE999wjp9OpcuXKafbs2dq/f79efvllvfDCC/rhhx8uu9+qVat04MABrV27Vt9//73mzp2r11577bJjpkyZIl9fX23dulXvvvuuxo4dqxUrVlzVOUZGRio6OlonT578y+PWrFmjY8eOac2aNZoyZYomT56syZMnF37fbrfr9ddf1549ezRv3jzFxcVpxIgRv3ucZ555RuPGjdO2bdsUFham3r17FxbkY8eOqUePHurXr5/27t2rWbNmaePGjXrkkUckSdu3b9djjz2msWPH6tChQ/r555/Vvn37qzp/AACKnAEAQDESHR1tSDLmzp172e0hISGGr6+v4evrazz77LOFt0syRo8e/beP+/DDDxv9+vUr/Hr48OFGcHCwkZWVVXjbhAkTDD8/P8PhcBiGYRgdOnQw2rZte9njNGvWzHjuueeu6Nx+de7cOaNly5aGJKN69erG8OHDjVmzZhU+76/5KlasaBQUFBTedscddxgDBgz408fdtm2bIcnIyMgwDMMw1qxZY0gyZs6cWXhMcnKy4e3tbcyaNcswDMMYOXKkcf/991/2OBs2bDCsVquRk5NjzJkzxwgICDDS09Ov6pwBALiWGLEFALiEX375Rbt371adOnWUl5d32feaNm36u+M/++wzNWnSRGFhYfLz89OXX36pU6dOXXZMgwYN5OPjU/h1q1atlJmZqdOnTxfeVr9+/cvuU7p06cum+/7Whg0b5OfnV/gxffr0PzyudOnS2rJli2JiYvT444+roKBAw4cPV48ePeR0OguPq1Onjtzc3P70uXfs2KHevXurQoUK8vf3V4cOHSTpd+fZqlWrws+Dg4NVo0YNHThwQJK0Z88eTZ48+bLc3bt3l9Pp1IkTJ9StWzdVrFhRVapU0dChQzV9+vQbYvMuAMCNhc2jAADFSlRUlCwWiw4dOnTZ7VWqVJEkeXt7/+4+/3fK8syZM/X0009r3LhxatWqlfz9/fXee+9p69at/zrP/92IymKxXFY+f6tp06bavXt34dcRERF/+dh169ZV3bp19dBDD+nBBx9Uu3bttG7dOnXq1OlvnzsrK0vdu3dX9+7dNX36dIWFhenUqVPq3r3779YJ/5XMzEw98MADeuyxx373vQoVKsjDw0M7d+7U2rVrtXz5cr388st69dVXtW3bNgUFBf3j5wEA4Fqi2AIAipWQkBB169ZNn376qR599NE/XWf7VzZt2qTWrVvroYceKrzt2LFjvztuz549ysnJKSzL0dHR8vPzU/ny5a8ou7e3t6Kioq7ovrVr15akyzZt+isHDx5UcnKy3n777cK827dv/8Njo6OjVaFCBUnSxYsXdfjwYdWqVUuS1LhxY+3fv/8vc9tsNnXt2lVdu3bVK6+8oqCgIK1evVp9+/b9x+cHAMC1xFRkAECx8/nnn6ugoEBNmzbVrFmzdODAAR06dEjTpk3TwYMHL5ue+0eqVaum7du3a9myZTp8+LBeeuklbdu27XfH5efna+TIkdq/f7+WLFmiV155RY888ois1mv73+OoUaP0+uuva9OmTTp58qSio6M1bNgwhYWFXTZt+K/8Opr6ySef6Pjx41qwYIFef/31Pzx27NixWrVqlWJjYzVixAiFhobqtttukyQ999xz2rx5sx555BHt3r1bR44c0fz58ws3j1q0aJE+/vhj7d69WydPntTUqVPldDpVo0aNInktAAAoChRbAECxU7VqVe3atUtdu3bV888/rwYNGqhp06b65JNP9PTTT/9pgfvVAw88oL59+2rAgAFq0aKFkpOTLxu9/VWXLl1UrVo1tW/fXgMGDFCfPn2K5HI+f6dr166Kjo7WHXfcoerVq6tfv37y8vLSqlWrFBIS8o8eIywsTJMnT9bs2bNVu3Ztvf3223r//ff/8Ni3335bjz/+uJo0aaILFy5o4cKF8vDwkHRpDfG6det0+PBhtWvXTo0aNdLLL7+sMmXKSJKCgoI0d+5cde7cWbVq1dIXX3yh77//XnXq1CmaFwMAgCJgMQzDMDsEAADX24gRI5Samqp58+aZHeWaWbt2rTp16qSLFy+yHhYAcENjxBYAAAAA4NIotgAAAAAAl8ZUZAAAAACAS2PEFgAAAADg0ii2AAAAAACXRrEFAAAAALg0ii0AAAAAwKVRbAEAAAAALo1iCwAAAABwaRRbAAAAAIBLo9gCAAAAAFwaxRYAAAAA4NIotgAAAAAAl0axBQAAAAC4NIotAAAAAMClUWwBAAAAAC6NYgsAAAAAcGkUWwAAAACAS6PYAgAAAABcGsUWAAAAAODSKLYAAAAAAJdGsQUAAAAAuDSKLQAAAADApVFsAQAAAAAujWILAAAAAHBpFFsAAAAAgEuj2AIAAAAAXBrFFgAAAADg0ii2AAAAAACXRrEFAAAAALg0ii0AAAAAwKVRbAEAAAAALo1iCwAAAABwaRRbAAAAAIBLo9gCAAAAAFwaxRYAAAAA4NIotgAAAAAAl0axBQAAAAC4NIotAAAAAMClUWwBAAAAAC6NYgsAAAAAcGkUWwAAAACAS6PYAgAAAABcGsUWAAAAAODSKLYAAAAAAJdGsQUAAAAAuDSKLQAAAADApVFsAQAAAAAujWILAAAAAHBpFFsAAAAAgEuj2AIAAAAAXBrFFgAAAADg0ii2AAAAAACXRrEFAAAAALg0ii0AAAAAwKVRbAEAAAAALo1iCwAAAABwaRRbAAAAAIBLo9gCAAAAAFwaxRYAAAAA4NIotgAAAAAAl0axBQAAAAC4NIotAAAAAMClUWwBAAAAAC6NYgsAAAAAcGkUWwAAAACAS6PYAgAAAABcGsUWAAAAAODSKLYAAAAAAJdGsQUAAAAAuDSKLQAAAADApVFsAQAAAAAujWILAAAAAHBpFFsAAAAAgEuj2AIAAAAAXBrFFgAAAADg0ii2AAAAAACXRrEFAAAAALg0ii0AAAAAwKVRbAEAAAAALo1iCwAAAABwaRRbAAAAAIBLo9gCAAAAAFwaxRYAAAAA4NIotgAAAAAAl0axBQAAAAC4NIotAJQA32w6oZfmx8rhNMyOAgAAUOQotgBQAizYsEvfL1qlXHuB2VEAAACKHMUWAEqAYbU8dGLaS0o8f9bsKAAAAEWOYgsAJUC71i3kzM1QdHS02VEAAACKHMUWAEqAsLAwVa1alWILAABuSBRbACghWrZsSbEFAAA3JIotAJQQLVu21M6dO5Wbm2t2FAAAgCJFsQWAEqJly5ay2+3atWuX2VEAAACKFMUWAEqI+vXry8vLi+nIAADghkOxBYASwsPDQ02aNKHY4rrLL3DqQhpT4AEA1w7FFgBKkFatWlFscd29OjtaT03fpHOpOWZHAQDcoCi2AFCCtGzZUqdOndK5c+fMjoIS5MiWZfpl9RKF+HmYHQUAcIOi2AJACdK0eQsFdRiub5b9YnYUlCDxu9eoie2sPG1uZkcBANygKLYAUIK4+QWrWbdbdd4twuwoKCEMw1BsbKzq1q1rdhQAwA3MZnYAAMD1U66Uj94b1knlSnmbHQUlxPnz53Xx4kXVq1fP7CgAgBsYxRYASpgG5YPMjoASJDY2VpIYsQUAXFNMRQYAANdMTEyMvL29VblyZbOjAABuYBRbAABwzcTGxqpOnTqyWvmVAwBw7fC/DAAAV8jpNJSYkWd2jGKNjaMAANcDxRYAgCv02eqDGj1lnXbFJV12u8NpmJSoeHE6ndq3bx8bRwEArjmKLQAAV8gj47yWzJ2lvIsXCm/7fEWsHpy6VSeSskxMVjycOHFCOTk5jNgCAK45ii0AAFfoluY1lLrmGyWcPl54W/SaZfp5/hz5eriZmKx4iImJkcSOyACAa4/L/QAAcIXKlCkjHx8fHTlypPC201sWqVmpUgoP8DIxWfEQGxurUqVKqXTp0mZHAQDc4BixBQDgClksFkVFRRUWW7vdrl9++UWtW7c2OZn5nE5DC895q8JN98hisZgdBwBwg2PEFgCAq1CtWrXCYrt3715lZ2dTbCWl59qV6hEqvyrlzI4CACgBGLEFAOAq/LbYbt68WR4eHmrcuLHJqczn7Wbo9Jy31Tcy3ewoAIASgGILAMBVqFatmk6fPq2cnBxt2rRJTZo0kZcX62sPHz6snDMH1aFxLbOjAABKAIotAABXoVq1apKk48ePa/PmzWrTpo3JiYqHX3dErlOnjslJAAAlAcUWAICr8Gux3bJli06fPs362v8vNjZWZcuWValSpcyOAgAoASi2AABchYiICPn5+Wnt2rWSpFatWpkbqJiIiYlRvXr1zI4BACghKLYAAFwFi8WiatWqac+ePapSpYoiIyPNjlQsxMbGqm7dumbHAACUEBRbAACuUrVq1XTy5EmmIf9/GRkZiouLY8QWAHDdUGwBALhKFStVUrY8Kbb/3759+ySJEVsAwHVDsQUA4Cod9aml8P4vy1KuvtlRioXY2FhZrVbVqsWlfgAA14fN7AAAALi6YX26ybklTu0aM0IpXdo4KioqSt7e3mZHAQCUEBbDMAyzQwAAgBtHly5dVKpUKf34449mRwEAlBBMRQYAAEUqJiaG9bUAgOuKYgsAAIpMQkKCEhMT2REZAHBdUWwBAECRiYmJkcSOyACA64tiCwAAikxsbKw8PT0VFRVldhQAQAlCsQUAAEUmJjZWtWvXlpubm9lRAAAlCJf7AQAARSKvwKHtHvUV2Lqa2VEAACUMxRYAABQJN4tFvbp1VJVQH7OjAABKGK5jCwAAAABwaayxBQAAAAC4NIotAAAAAMClUWwBAAAAAC6NYgsAAAAAcGkUWwAAAACAS6PYAgAAAABcGsUWAFDsOJyGuBodAAD4pyi2AIBipcDh1KjvftFLc3aaHQUAALgIm9kBAAD4LavFos2rlyrMx03q38TsOABckMNpyOE05GFjDAcoKfjXDgAoVqxWi2pl75Pt6HqzowBwQUlJSWr9wjT1nbBJOfkOs+MAuE4otgCAYicyMlLx8fFmxwDgQpKSkvT888+rYsWKOnH4oE7HHZeV33SBEoOpyACAYiciIkIXLlwwOwYAF5CUlKRx48bpk08+kcViUdeuXbXgpze1OiZGnjY3s+MBuE54HwsAUOxERkYqKSlJBQUFZkcBUExl5No17MOFqt5lgD799FM99thjOnHihOLj49WlSxfVrVvX7IgAriNGbAEAxU5kZKQMw1BiYqJKly5tdhwAxVBmXoEsvkFq1/N2ff3ULIWGhmrr1q3aunWrFixYYHY8ANeZxeBCgQCAYmbbtm1q3ry5du7cqUaNGpkdB0AxlWt3yNNmlcVikSQNHjxYv/zyiw4fPiwrC2yBEoV/8QCAYicyMlKS2EAKLiMtx64xc/fqp11nzI5Soni5uxWW2rNnz2r27Nl69NFHKbVACcS/egBAsRMeHi5JbCAFl5GTZ9fUmT9q5YathbclpOfqie+3adHecyYmKzkmTJggLy8vjRgxwuwoAExAsQUAFDuenp4qVaoUI7ZwGW72LJ2f/bq6VfjfLryLl63QzDnzdfwMf4+vtdzcXE2cOFF33323AgMDzY4DwAQUWwBAscQlf+BKEhISJP1vtoFhGPri/TcUlbBej/Vknfi1NmPGDCUnJ+vRRx81OwoAk7ArMgCgWIqMjGTEFi4jMTFRkhQWFiZJWrFihX755RctW7bMzFglgmEY+vCTT9WzZ09Vq1bN7DgATEKxBQAUS5GRkYzYwmX8ttgahqHXX39dzZs3V7du3UxOduP7eOlupVS7RU8Nbmt2FAAmotgCAIqlUhFltSsuyewYwD+SkJAgd3d3BQYGav369dq4caMWLlxYuGMvrp16Vcpo6IC+6tGphtlRAJiIYgsAKJYOBTaVs0lN7T2TqvrlgsyOA/ylxMREhYWFyWKx6PXXX1fDhg3Vq1cvs2OVCJ1rRqhzzQizYwAwGcUWAFAs1Q5yKmbfSZX29zA7CvC3fi22W7Zs0apVq/Tjjz8yWgsA15HFMAzD7BAAAPxfixYtUu/evXXu3DmVLl3a7DjAX7rjjjuUmpoqDw8PxcXFKSYmRlar+RefMAxDX244rtIBnurTsJzZcQDgmjH/Jy4AAH/g191lf92UByjOEhMTZbPZtGTJEr344ovFotRKUr7Dqfkb9+jpdycqJyfH7DgAcM0Uj5+6AAD8H79eD/TX64MCxVliYqIOHz6sqKgo3XnnnWbHKeRpc9OYblE6vegzvfjii2bHAYBrhmILACiWGLGFKzl//ryOHz+uF154QTZb8drCpH2z+vrvq//R+PHjtXbtWrPjAMA1QbEFABRLvr6+8vb2ZsQWxV5GTp4KqrZTSIVquuuuu8yO84dGjx6tDh06aMSIEUpNSzM7DgAUOYotAKBYslgsCg8Pp9ii2Fu056wim/dSk2EvyN3d3ew4f8hqterbb79VbtO71O29FcrMKzA7EgAUqeI1VwYAgN8ICwtjKjKKvZ4Nyut0Wnvd3rCs2VH+UqVKleTt46v8/HxxUQwANxqKLQCg2GLEFq4g0Ntdz3avaXaMv7Vp0ybFffeClq9YIX+v4jmyDABXiqnIAIBiixFboOh88cUXqlatmrp07mx2FAAochRbAECxxYgtUDSSkpI0e/ZsPfDAA8XmGrsAUJT4yQYAKLbCw8MZsQWKwOTJkyVJw4cPNzcIAFwjFFsAQLEVFhamtLQ05eXlmR0FcFlOp1MTJ07UHXfcodDQULPjAMA1QbEFABRb4eHhksSoLXAVVq9eraNHj+rBBx80OwoAXDMUWwBAsRUWFiaJYgtcjYkTJ6pOnTpq06aN2VEA4Jqh2AIAiq1fR2zZQAq4MufPn9e8efP04IMPymKxmB0HAK4Zii0AoNhixBa4Oh9Mmi5P3wANHTrU7CgAcE1RbAEAxZa3t7f8/PwYsQWuQEJGrnbkRajVfWMVGBhodhwAuKZsZgcAAODP2B1Ohd/+vNanldKTZocBXEyIr6du79xSDcsHmR0FAK45i2EYhtkhAAD4Iw6noVcX7lPFYB/d266K2XEAAEAxRbEFAAAAALg01tgCAAAAAFwaxRYAAAAA4NIotgAAAAAAl0axBQAAAAC4NIotAAAAAMClUWwBAAAAAC6NYgsAAAAAcGkUWwAAAACAS6PYAgAAAABcGsUWAAAAAODSKLYAAAAAAJdGsQUAAAAAuDSKLQAAwDWSnmuXw2mYHQMAbngUWwAAgGvgYlaeRny+Uu8vO2B2FAC44VFsAQAAroHDB2K1ZuEPsifGmR0FAG54FFsAAIBrYOb0afI8sFRjBt9kdhQAuOFRbAEAAIqY3W7XjBkzNHjwYNlsNrPjAMANj2ILAABQxJYvX66EhAQNGzbM7CgAUCJYDMNgqz4AAIAiNHDgQO3bt0979+6VxWIxOw4A3PAYsQUAAChCqampmjdvnoYNG0apBYDrhGILAABQhH788UfZ7XYNGTLE7CgAUGIwFRkAAKAItW/fXt7e3lq2bJnZUQCgxGDEFgAAoIicOHFCGzZs0NChQ82OAgAlCsUWAACgiEybNk2+vr66/fbbzY4CACUKxRYAAKAIGIahqVOnqn///vL19TU7DgCUKBRbAACAIrBxc7SOnohjGjIAmIDNowAAAK6Sw2mo+YszlZSYpKMTRsnd3WZ2JAAoURixBQAAuEr2/DxdOBWnsmGlZLO5mR0HAEoc3k4EAAC4SkuWLNG5GS9oxb59slgsZse54c3aeEA7zuXowU7VVSXMz+w4AIoBRmwBAACu0pQpU9S0aVPVrl3b7Cg3PMMw9PHHH2nx4kW8iQCgEMUWAADgKiQmJmrJkiUaPny42VFKhPnz52vz7Il6u38jVQ5l92kAl7B5FAAAwFX45JNP9OSTT+r8+fMKDQ01O84NLScnR7Vq1VKdOnW0aBEjtgD+hzW2AAAAV2Hq1Knq1asXpfY6eOedd3T+/HmtWLGCUgvgMkxFBgAAuEL79+/X9u3bNWzYMLOj3PCOHz+ut99+W08//bSqVatmdhwAxQxTkQEAAK7Q888/r4kTJ+r8+fPy9PQ0O84N7bbbbtOOHTt08OBB+fqythbA5ZiKDAAAcAUcDoemTZumQYMGUWqvsaVLl2r+/Pn64YcfKLUA/hAjtgAAAFdg1apV6tq1q6Kjo9WiRQuz49yw8vLyVLduXVWoUEErV65kbS2AP8SILQAAwBWYOnWqqlevrubNm5sd5Yb2wQcfKC4uTvPnz6fUAvhTbB4FAADwL2VmZmrOnDkaNmwYZesaOn36tN544w099thjql27ttlxABRjFFsAAIB/ae7cucrKytJdd91ldhSXZRiGPl55SM99PlspKSl/eMzTTz8tf39/vfLKK9c5HQBXQ7EFAAD4l6ZOnapOnTqpYsWKZkdxWQVOQ9sOn9HEWQsVFham9u3b691339WBAwdkGIZWr16tH374Qe+9954CAgLMjlsiPPj1Wv1nXozZMYArwuZRAAAA/8Lp06dVsWJFffPNNxoxYoTZcVxadn6BEuMvaPnPS7Vo0SKtWLFCOTk5qtSsi5yN71Sps1u0a8E3TPe+DsaPH683NySqY4cOmv14d7PjAP8aI7YAAAD/wgsztyjslid0e9++ZkdxeT4eNlUsX0733Xef5s+fr+TkZC1evFh1WneV1d1Deb4RysvLMzvmDe/dd9/Vk08+qXtqGPr+kW5mxwGuCCO2AAAA/8L4lYd1MiFV4wc1YyTxGnE6DX3/8wbde0dP9e7VUzNnzpTVynjMtfDGG2/opZde0ssvv6xXX32Vv9NwWRRbAAAAFEvz5s1Tv3799Oijj2r8+PGUriJkGIZeffVVjR07VmPHjtVLL71kdiTgqvDWFwAAAIql2267TZ9++qk++ugjffDBB2bHuWEYhqEXX3xRY8eO1dtvv02pxQ3BZnYAAAAA4M+MGjVKZ86c0dNPP60yZcpo0KBBvzvG4XDo6JkEncsy1Kl2GRNSug7DMPTMM89o3Lhx+uCDD/TEE0+YHQkoEkxFBgAAQLFmGIaG3n2vVmaXV/kAN4Wc2aSUlBQlJycrJSVFqampCmx3l+4YdJdeGdhO5Ur5mB25WDIMQ48//rg++eQTffrpp3r44YfNjgQUGYotAAAAir341Cz1/Wi5Uk8fVc2L0QoJCVFwcLCCg4MVEhIiu3ewrBHVdV/n2jfUWtysvAK9+/N+Na0cqt71r3w02ul06uGHH9YXX3yhiRMn6v777y/ClID5mIoMAACAYi8iyFfLx/SWp80qm1vJ2SbmyPE4TZw8Q0a/bldcbE8nZ+nuVz/Vmm+n6uuvv9Y999xTxCkB85WcnwpAEYpLylJmXoHZMQAAKFF8PW0lqtRK0uqlC5S69EM9c2vzK36MmdtPy+4TqqfHUWpx42IqMvAvpWbn67mZW5Vy5phmvzzC7DgAAOAG1rZtWwUHB2vBggVX/BgpWflafTBBvRuUlqfNrQjTAcVHyXrLCygCgd7usied1MJJ4zRhwgSz4wAAgBvU+fPntXnzZvXr1++qHifY10P9m5Sj1OKGxhpb4F+yWCz65tm75H92mx555BFVrFhRPXv2NDsWAAC4wfz0009yc3NTnz59zI4CFHtMRQb+ocy8AiVn5qliiK+kS9fM69u3r1avXq0NGzaoYcOG5gYEAAA3lC5dushms2nZsmVmRwGKPaYiA//QxHVHNfi/UzV73iJJkpubm2bMmKHq1avrlltu0ZkzZ0xOCAAAbhRJSUlat27dVU9DBkoKii3wDzUu56+CpJO68/beGjRokBISEuTr66tFixbJarXqlltuUUZGhtkxAQDADWD+/PkyDEO33Xab2VEAl0CxBf6hTrXLKnrKW5o2bZpWrFihWrVqaerUqYqMjNTixYt1/PhxDRw4UAUFf30ZIKeT2f8AAODP5eQ79MnWZDW+9R6Fh4ebHQdwCRRb4F+wWCwaMmSIDhw4oJtvvlnDhw9Xjx495O/vrx9//FHLli3T448/rj9buv76rPV6dMY2pWTlX+fkAADAVZxMyZIlIEIFkXXNjgK4DIotcAXCwsI0bdo0LV68WAcOHFCdOnW0f/9+ffbZZ/r88881fvz4390nLS1NX3z4rvb+skle7vzTAwAAf6xmZIC6hmVp/7TXdPr0abPjAC6BXZGBq5SRkaEXX3xRn376qZo1a6a6devq22+/1Zw5c3T77bcXHvfQQw/pu+++0/79+1W+fHkTEwMAgOIuIyNDFStW1PDhw//wDXMAl6PYAkVk8+bNuvfee3XkyBFVr15dx48f17p169S8eXNt3rxZbdu21YcffqjHHnvM7KgAAMAFvPzyyxo3bpxOnTqlkJAQs+MAxRrFFihCeXl5euutt/Tmm2/KZrPJ09NTW7duVd++feXj46MtW7bIzc3N7JgAAMAFJCYmqmLFinr22Wf16quvmh0HKNYotsA1sG/fPg0fPly7Yg8qtPso5cTt1oap76tBgwZmRwMAAC7kscce0/Tp03Xy5En5+fmZHQcottjBBrgG6tSpo61bt2rIk6/Js3JjlWo3hHW1AADgX3vqqaeUnp6uSZMmXfVjORwOvfTVPL22YK9y7Y4iSAcUHxRb4Bpxc3PTV2NHa1jzsspdN0kdO3ZUfHy82bEAAIALqVixou4YMlzjlh/UvpNX9ntEZmamPv74Y1WrVk0fTZqqPYfjlFfgLOKkgLmYigxcB/v371fXrl3l7++vlStXMnoLAAD+sU8WbtXEpduVdGyveldw6q677lK7du1ktf71GNXZs2f1ySefaOLEicrIyNCdd96pp556Sg0bNZab1XKd0gPXB8UWuE6OHTumLl26SJJWrVqlqlWrmpwIAAC4gly7Q1+t2K2TmxdpzvTJiouLU4UKFTRkyBDdddddql279mXH7969Wx988IG+//57+fj46P7779ejjz6qChUqmHQGwLVHsQWuo9OnT6tr167KyMjQypUrf/cfEQAAwF8xDEObNm3StGnTNGvWLKWmpqpx48a6ZeAI5fpGatucL7Rm9WpVqFBBo0eP1siRIxUQEGB2bOCao9gC11l8fLxuuukmnTt3TsuWLVPjxo3NjgQAAFxQXl6elixZou+++04bjeryC45Q4MkNGnPfAPXr1082m83siMB1Q7EFTJCSkqIePXro8OHDWrJkiVq3bm12JAAA4MLWxJzUxmMpeqZXPXm5U2hR8lBsAZOkp6erd+/e2rFjhxYsWKDOnTubHQkAAABwSVzuBzBJQECAli5dqrZt26pnz55avHix2ZEAAAAAl0SxBUzk4+Oj+fPnq2fPnrrttts0e/ZssyMBAAAALodiC5jM09NTP/zwgwYMGKCBAwdq8uTJZkcCAAAAXAory4FiwGazaerUqfL19dXdd9+trKwsPfzww2bHAgAAAFwCxRYoJqxWq7744gv5+vrq+Skrtc9aWZ+P6ml2LAAAAKDYo9gCxYjFYtG4ceOU+vF8BUWUMzsOAAAA4BK43A8AAAAAwKWxeRQAAAAAwKVRbAEAAAAALo1iCwAAAABwaRRbAAAAAIBLo9gCAAAAAFwaxRYAAAAA4NIotgAAAAAAl0axBQAAAAC4NIotAAAAAMClUWwBAAAAAC6NYgsAAAAAcGkUWwAAAACAS6PYAgAAAABcGsUWAAAAAODSKLYAAAAAAJdGsQUAAAAAuDSKLQAAAADApVFsAQAAAAAujWILAAAAQJKUX+DUqgPxyrU7zI4C/Cs2swMAAAAAMF9WVpaG/udDuQVGKqlXNw1oVsHsSMA/xogtAAAAUMJt3rxZDRs21LJvx8vf20M31Y40OxLwr1BsAQAAgBIqLy9PY8aMUbt27RQSEqJdv2zWN88NVSlfD7OjAf8KU5EBAACAEmjXrl0aNmyYDh06pDfeeEPPPPOMbDbqAVwTI7YAAABACVJQUKA33nhDzZs3l5ubm7Zv367nn3+eUguXxt9eAAAAoIQ4ePCghg0bph07duj555/Xyy+/LA8Pph3D9TFiCwAAANzgnE6nxo8fr0aNGik9PV2bN2/WG2+8QanFDYNiCwAAANzATpw4oc6dO+vJJ5/Ugw8+qF27dqlFixZmxwKKFFORAQAA4JLsDqdOJmcrKtzP7CjFUnpOvoZ/tFDrpn+sgIyTWrNmjTp27Gh2LOCasBiGYZgdAgAAAPi3npm0RDny0P09mqp+uSCz4xQr8fHxGvzoCzrmV0elA721fOxd8vf3NzsWcM0wFRkAAAAu5+LFi5r23ovaFb2JEdv/Y968eapbt65i1y3SE12q6ec376XU4oZHsQUAAIDLGTNmjLLOH9MPr90rHw9W10lSRkaGRo4cqdtvv12tW7dWTEyMHh/SW4He7mZHA645fgoAAADApWzYsEFffvmlPv30U5UtW9bsOMXCxo0bNWzYMCUmJurrr7/W3XffLYvFYnYs4LphjS0AAABcRl5enho1aqTAwEBt3LhRbm5uZkcyVX5+vl555RW98847at26taZOnaoqVaqYHQu47hixBQAAgMt45513dOTIEe3cubPEl9rY2Fjddddd2r9/v958800988wzJf41QcnFGlsAAAC4hEOHDum///2vnnnmGdWrV8/sOKZxOp0aP368mjZtKrvdrq1bt2rMmDGUWpRoTEUGAABAsWcYhjp16qQzZ84oJiZG3t7e/+h++QVOedhunLGcU6dOacSIEVqzZo2eeOIJvfnmm/Ly8jI7FmA6piIDAACg2Pv222+1bt06rVix4h+X2nkbdumn3RfUt1193drQtTeZMgxD06dP1yOPPCJ/f3+tXLlSXbp0MTsWUGzcOG9fAQAA4IaUkJCgp59+WsOGDVPXrl3/0X22bdume4fcoe1b1qt8sM81TnhtpaSkaMCAARo6dKhuueUWxcTEUGqB/4MRWwAAABRrTzzxhKxWq8aNG/ePjl+zZo369Omj+vXra9Fnz6pUqVLXOOG189yUVZq1drcyNm3TzJkzNWDAALMjAcUSxRYAAABFzjAMJWflK9TP86oe5+eff9aMGTM0ZcoUhYaG/u3x8+bN08CBA9WxY0fNmTNHvr6+V/X8ZpoyZYq+nrZJZeq30Y8rV6lpLS7jA/wZpiIDAACgyH277qD+M2ODthxNuOLH+OVovB6bd1xNB47W0KFD//b4KVOmqF+/furTp48WLFjgsqXW6XTqP//5j0aMGKHbKhna8sZASi3wNyi2AAAAKHJ55w9r5tRvFOxecMWPMWP6NGVlpmv4XUNksVj+8tiPPvpII0aM0MiRI/X999/Lw8Pjip/XTIfPpajfkBF688039d577+mrL7+Ur/fVjXoDJQHFFgAAAEUuSNlK2/S9yocFXdH9z507p0nvvaKBEYl6pFfTPz3OMAy9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SlORRURE0pgD1yIIqFmbN2qWfqFSC7D9rgPetbry0+Q3sbW1pXTp0vhU74CNqxcWi0UjtiIi/8DJyYkGDRrQoEEDvvzySy5fvsymTZuYeyKWB3Em4hPNODvYGh1T/oZGbEVERNKYhCQzF+9HUST7i09/2x56l/tRcbxR0ffp93rM2kJ0ki3L362Nna3WixQReRXxiWbik8y4OWpMMC1TsRUREUmnEpLMJJktONlrhEFERNI3FVsRERERERGxapqXJCIiIiIiIlZNxVZERERERESsmoqtiIiIiEgaNOf3i4z4fht6clDkn6nYioiIiIikQUfP32DWkpVUr16do0ePGh1HJE1TsRURERERSYO+6VGdHz9+nfDwcCpUqMA777zD/fv3jY4lkiap2IqIiIiIpEF2tjbUr1eP4OBgvvrqK3766ScKFSrEjBkzSExMNDpesjObLWw+dZuHT+KNjiJWSMVWRERERCQNs7e354MPPuDcuXO0b9+e/v37U6ZMGXbs2GF0tGSTkJDAB2OmMW7uTyzYd9noOGKFVGxFRERERKyAt7c3c+bMISgoCE9PT+rWrcvrr7/OlStXjI72r5w9e5aAgABmjx9GNjdb2pXPbXQksUIqtiIiIiIiVqRcuXLs3buXpUuXEhgYSKk6rWgwegWX7kUaHe2lmM1mZsyYQZkyZQgPD2ffnt/5edz75M3ianQ0sUImi9YPFwPFxcXx8/aDrLmYyMhW5SidJ5PRkURERESsRmRkJG+M+54zYQnkt9xm4+yx2NvbGx3rH/148DJjv1vF6cUjee+dt5g4cSIuLi5GxxIrpmIrqer+/fsEBgayb98+9u3bR1BQEI6lm5C5VF3ebVGVj1uUMzqiiIiIiFWJTzQz64e1DHmzA02aNObHH3/E0dHR6FjP1W7mTg4cO8k75TwY8W53o+NIOqBiKynGbDZz9uzZpyU2MDCQc+fOAZArVy4CAgIICAggIuoJn89exo1je8jqldng1CIiIiLWaePGjbRp04ZatWqxevVqnJ2djY70t67df0zNpq9T3MeRdevWGR1H0gEVW0kWiUlmzt16SNjl00+L7P79+3n48CE2NjaUKlXqaZENCAggT548mEwmACZPnsznn3/O48ePDb4KEREREeu2Y8cOmjdvzmuvvcbatWtxc3MzOtLf+vnnn2nfvj1btmyhfv36RscR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xsHVw+gohvLx8SE2NpaoqCijo4iIiDylYisiIvICbli8aNqyLWEWN6OjGMrHxwdA05FFRCRN0T62IiIiL+CDRiU5VSovZfNkMjqKof632BYsWNDgNCIiIn9QsRUREXkBjna2lPPN2AtHwX+LrVZGFhGRtERTkUVEROSFZcmSBRtHV+7c1VRkERFJO1RsRURE5IU9STDj32UMeyM0ei0iImmHpiKLiIjIC3Oxt6VH2yYUzZGxV4cWEZG0xWTRRnQiIiIiIiJixTQVWURERERERKyaiq2IiIiIiIhYNRVbERERERERsWoqtiIiIiIiImLVVGxFRERERETEqqnYioiIiIiIiFVTsRURERERERGrpmIrIiIiIiIiVk3FVkRERERERKyaiq2IiIiIiIhYNRVbERERERERsWoqtiIiIiIiImLVVGxFRERERETEqqnYioiIiIiIiFVTsRURERERERGrpmIrIiIiIiIiVk3FVkRERERERKyaiq2IiIiIiIhYNRVbERERERERsWoqtiIiIiIiImLVVGxFRERERETEqqnYioiIiIiIiFVTsRURERERERGrpmIrIiIiIiIiVk3FVkRERERERKyaiq2IiIiIiIhYNRVbERERERERsWoqtiIiIiIiImLVVGxFRERERETEqqnYioiIiIiIiFVTsRURERERERGrpmIrIiIiIiIiVk3FVkRERERERKyaiq2IiIiIiIhYNRVbERERERERsWoqtiIiIiIiImLVVGxFRERERETEqqnYioiIiIiIiFVTsRURERERERGrpmIrIiIiIiIiVk3FVkRERERERKyaiq2IiIiIiIhYNRVbERERERERsWoqtiIiIiIiImLVVGxFRERERETEqqnYioiIiIiIiFVTsRURERERERGrpmIrIiIiIiIiVk3FVkRERERERKyaiq2IiIiIiIhYNRVbERERERERsWoqtiIiIiIiImLVVGxFRERERETEqqnYioiIiIiIiFVTsRURERERERGrpmIrIiIiIiIiVk3FVkRERERERKyaiq2IiIiIiIhYNRVbERERERERsWoqtiIiIiIiImLVVGxFRERERETEqqnYioiIiIiIiFVTsRURERERERGrpmIrIiIiIiIiVk3FVkRERERERKyaiq2IiIiIiIhYNRVbERERERERsWoqtiIiIiIiImLVVGxFRERERETEqqnYioiIiIiIiFVTsRURERERERGrpmIrIiIiIiIiVk3FVkRERERERKyaiq2IiIiIiIhYNRVbERERERERsWoqtiIiIiIiImLVVGxFRERERETEqqnYioiIiIiIiFVTsRURERERERGrpmIrIiIiIiIiVk3FVkRERERERKyaiq2IiIiIiIhYNRVbERERERERsWoqtiIiIiIiImLVVGxFRERERETEqqnYioiIiIiIiFVTsRURERERERGrpmIrIiIiIiIiVu3/Afu2P6dR1msbAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "import networkx as nx\n", + "import matplotlib.pyplot as plt\n", + "\n", + "fig = plt.figure(figsize=(12, 12))\n", + "ax = plt.subplot(111)\n", + "ax.set_title(\"Graph - Shapes\", fontsize=10)\n", + "\n", + "# create edges from dataframe\n", + "df_edges = pd.DataFrame(edges)\n", + "graph = nx.from_pandas_edgelist(df_edges, source=\"from\", target=\"to\", edge_attr=\"type\")\n", + "\n", + "# update node attributes from dataframe\n", + "# nodes_attr = nodes.set_index(\"index\").to_dict(orient=\"index\")\n", + "nx.set_node_attributes(graph, nodes)\n", + "# nx.set_node_attributes(graph, color = \"color\")\n", + "\n", + "measure_type = \"degree\"\n", + "measure_vector = {}\n", + "df = pd.DataFrame(columns=[\"degree\", \"eigenvector\", \"degree\", \"betweeness\", \"closeness\", \"pagerank\"])\n", + "\n", + "# if measure_type == \"eigenvector\":\n", + "# measure_vector = nx.eigenvector_centrality(graph)\n", + "# df[\"eigenvector\"] = measure_vector.values()\n", + "# if measure_type == \"degree\":# measure_vector = nx.degree_centrality(graph)\n", + "# df[\"degree\"] = measure_vector.values()\n", + "# if measure_type == \"betweeness\":\n", + "# measure_vector = nx.betweenness_centrality(graph)\n", + "# df[\"betweeness\"] = measure_vector.values()\n", + "# if measure_type == \"closeness\":\n", + "# measure_vector = nx.closeness_centrality(graph)\n", + "# df[\"closeness\"] = measure_vector.values()\n", + "# if measure_type == \"pagerank\":\n", + "# measure_vector = nx.pagerank(graph)\n", + "# df[\"pagerank\"] = measure_vector.values()\n", + "# if measure_type == \"average_degree\":\n", + "# measure_vector = nx.average_degree_connectivity(graph)\n", + " \n", + "\n", + "\n", + "df[\"eigenvector\"] = nx.eigenvector_centrality(graph).values()\n", + "df[\"degree\"] = nx.degree_centrality(graph).values()\n", + "df[\"betweeness\"] = nx.betweenness_centrality(graph).values()\n", + "df[\"closeness\"] = nx.closeness_centrality(graph).values()\n", + "df[\"pagerank\"] = nx.pagerank(graph).values()\n", + "print(df)\n", + "\n", + "# print(nx.get_node_attributes(graph, \"color\"))\n", + "# d = dict(graph.degree)\n", + "# print(d.values())\n", + "# nx.draw(graph, nodelist=d.keys(), node_size=[v * 100 for v in d.values()])\n", + "# print(df[\"pagerank\"].values)\n", + "nx.draw(graph, node_size=[v * 100 for v in df[\"pagerank\"].values])" + ] + }, + { + "cell_type": "code", + "execution_count": 152, + "id": "dadf7794", + "metadata": {}, + "outputs": [], + "source": [ + "import igraph as ig\n", + "# convert to igraph\n", + "h = ig.Graph.from_networkx(graph)" + ] + }, + { + "cell_type": "code", + "execution_count": 155, + "id": "51aff9d0", + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAA7YAAAH4CAYAAAB+N3GtAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMCwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy81sbWrAAAACXBIWXMAAA9hAAAPYQGoP6dpAAEAAElEQVR4nOzdd3hU1dbA4d+ZSe+9EEJIAiSB0EINBFCkKYqggoVqRVGwiw2vyLXx2VABu1hQioCIIFIUCL23VCAFQkIC6T1TzvdHyFyGVHoC630eHsmZU/Y5GUzWrLXXVlRVVRFCCCGEEEIIIZoozbUegBBCCCGEEEIIcSkksBVCCCGEEEII0aRJYCuEEEIIIYQQokmTwFYIIYQQQgghRJMmga0QQgghhBBCiCZNAlshhBBCCCGEEE2aBLZCCCGEEEIIIZo0CWyFEEIIIYQQQjRpEtgKIYQQQgghhGjSJLAVAGzYsAFFUdiwYcO1HkqNUlJSUBSFefPmNXjfDz744MoP7Drw5ptvoigKZ86cuSbXv5DvrRBCCCGEEDWRwPY6N2/ePBRFMf2xsbGhTZs2PPXUU2RmZl6Wa6xatYo333zzspyrMVy3KshXFIU9e/ZUe33ChAk4ODhc1Lmv1bO6VGVlZbRq1YrQ0FAqKiqqvX7rrbfi7OxMenr6NRidEEIIIYS40Ulge4N46623+Omnn/j888/p1asXc+fOJTIykpKSkks+96pVq5g+ffplGGXtAgICKC0tZezYsVf1upc7CL0aY74SbGxsmDt3LgkJCbz77rtmry1YsIDVq1fz9ttv06xZs2s0QiGEEEIIcSOTwPYGceuttzJmzBgeeeQR5s2bxzPPPENycjLLly+/1kNrkKpss1arvWrX7NSpE3/++Sd79+69ate8moqLiy9o/4EDB/LAAw/w7rvvkpiYCEBeXh7PPvss3bp1Y9KkSVdimCYXOl4hhBBCCHHjkMD2BtW/f38AkpOT69xv8eLFdOnSBVtbWzw8PBgzZgwnT540vT5hwgRmz54NYFbyXJvnnnsOd3d3VFU1bZs8eTKKovDpp5+atmVmZqIoCnPnzgWqz8Ns6HW/+uorgoODsba2plu3buzatavO+z3X5MmTcXV1bXDW9q+//qJPnz7Y29vj6OjI0KFDiYmJMb1e15gjIiK46667zM7Xvn17FEXh4MGDpm0LFy5EURTi4uJM2/bt28ett96Kk5MTDg4O3HLLLWzfvt3sXFUl6Rs3bmTSpEl4eXnRvHnzWu8lNTWVVq1aER4eblay/vHHH2NnZ8fjjz8OwMsvv8zp06f58ssv0Wjq/99JXl4eEyZMwNnZGRcXF8aPH09eXl61/arKvY8dO8Ztt92Go6Mjo0ePBiA6OpqRI0fSokULrK2t8ff359lnn6W0tNR0/B9//FHt2S1ZsgRFUao957CwMO699956xy6EEEIIIRovi2s9AHFtHDt2DAB3d/da95k3bx4PPvgg3bp149133yUzM5NZs2axZcsW9u3bh4uLCxMnTiQ9PZ21a9fy008/1XvdPn368PHHHxMTE0N4eDhQGahoNBqio6OZMmWKaRtA3759azxPQ677yy+/UFhYyMSJE1EUhZkzZ3LXXXeRlJSEpaVlvWN1cnLi2Wef5Y033mDv3r1ERETUuu9PP/3E+PHjGTx4MO+//z4lJSXMnTuXqKgo9u3bR8uWLescc58+ffj1119NX+fk5BATE2N6Lh06dDA9F09PT8LCwgCIiYmhT58+ODk58dJLL2FpacmXX37JTTfdxMaNG+nRo4fZdSZNmoSnpydvvPFGrRnQY8eO0b9/f9zc3Fi7di0eHh6m17y8vHjvvfeYOHEikydP5quvvuKZZ56hc+fO9T5PVVW588472bx5M48//jhhYWEsW7aM8ePH17i/Xq9n8ODBREVF8cEHH2BnZwdUfthSUlLCE088gbu7Ozt37uSzzz4jLS2NxYsXAxAVFYWiKGzatMns2Wk0GjZv3my6xunTp4mPj+epp56qd/xCCCGEEKIRU8V17fvvv1cBdd26derp06fVEydOqAsWLFDd3d1VW1tbNS0tTVVVVf33339VQP33339VVVXViooK1cvLSw0PD1dLS0tN5/vzzz9VQH3jjTdM25588km1oW+lrKwsFVDnzJmjqqqq5uXlqRqNRh05cqTq7e1t2m/KlCmqm5ubajQaVVVV1eTkZBVQv//++3qvW7Wvu7u7mpOTY9q+fPlyFVBXrFhR5xirnsXixYvVvLw81dXVVR02bJjp9fHjx6v29vamrwsLC1UXFxf10UcfNTvPqVOnVGdnZ7PttY158eLFKqDGxsaqqqqqf/zxh2ptba0OGzZMvffee037dejQQR0xYoTp6+HDh6tWVlbqsWPHTNvS09NVR0dHtW/fvqZtVe+DqKgoVa/Xm137P//5jwqop0+fVuPi4tRmzZqp3bp1M3t25zIajWrv3r1VQPX391cLCwtrfpDn+f3331VAnTlzpmmbXq9X+/TpU+17O378eBVQX3755WrnKSkpqbbt3XffVRVFUVNTU03b2rVrp44aNcr0dUREhDpy5EgVUOPi4lRVVdWlS5eqgHrgwIEG3YMQQgghhGicpBT5BjFgwAA8PT3x9/fnvvvuw8HBgWXLluHn51fj/rt37yYrK4tJkyZhY2Nj2j506FBCQ0NZuXLlRY3D09OT0NBQNm3aBMCWLVvQarW8+OKLZGZmcuTIEaAyu1aVdbtY9957L66urqav+/TpA0BSUlKDz+Hs7MwzzzzDH3/8wb59+2rcZ+3ateTl5XH//fdz5swZ0x+tVkuPHj34999/671O1diqnkt0dDTdunVj4MCBpux1Xl4ehw8fNu1rMBhYs2YNw4cPJygoyHQuX19fHnjgATZv3kxBQYHZdR599NFa5ykfPnyYfv360bJlS9atW2f27M6lKApubm4AREZGNrhD9KpVq7CwsOCJJ54wbdNqtUyePLnWY87dt4qtra3p78XFxZw5c4ZevXqhqqrZ96hPnz6mZ1dYWMiBAwd47LHH8PDwMG2Pjo7GxcXFVD0ghBBCCCGaJglsbxCzZ89m7dq1/Pvvv8TGxpKUlMTgwYNr3T81NRWAkJCQaq+FhoaaXr8Y5wYc0dHRdO3ala5du+Lm5kZ0dDQFBQUcOHDAFMBdrBYtWph9XRWo5ebmXtB5nn76aVxcXGqda1sVjPfv3x9PT0+zP2vWrCErK6vea3h7e9O6dWuz59KnTx/69u1Leno6SUlJbNmyBaPRaHoup0+fpqSkpMbvUVhYGEajkRMnTphtDwwMrHUMd9xxB46Ojvz99984OTnVut/SpUtZsWIF4eHhLF682DTm+qSmpuLr61stEK5p/AAWFhY1zgM+fvw4EyZMwM3NDQcHBzw9PenXrx8A+fn5pv369OlDRkYGR48eZevWrSiKQmRkZLX3X+/evRs0P1gIIYQQQjReMsf2BtG9e3e6du16rYcBVM5//Prrr0lKSjIFcIqiEBUVRXR0NM2aNTML4C5WbZlJ9ZzGVQ1RlbV98803a8zaGo1GoHKerY+PT7XXLSwa9s8sKiqK9evXU1payp49e3jjjTcIDw/HxcWF6Oho4uLicHBwaNB81tqcm+083913380PP/zA/PnzmThxYo37FBYWMmXKFLp06cK///5Lhw4deOKJJ9i3b1+D5i1fCGtr62oBp8FgYODAgeTk5DB16lRCQ0Oxt7fn5MmTTJgwwfS9gMrnCZVZ8KSkJCIiIrC3t6dPnz58+umnFBUVsW/fPt5+++3LOm4hhBBCCHH1SWArahQQEABAQkKCqYNylYSEBNPrwAWXC1cFrGvXrmXXrl28/PLLQGWjqLlz59KsWTPs7e3p0qVLnee5lDLlC/XMM8/wySefMH36dFxcXMxeCw4OBiobKw0YMKDO89Q15j59+vD999+zYMECDAYDvXr1QqPRmAL+uLg4evXqZQrYPT09sbOzIyEhodq54uPj0Wg0+Pv7N/ge/+///g8LCwsmTZqEo6MjDzzwQLV9Xn/9dTIyMli+fDmOjo589tln3HHHHXz44Yem72NtAgICWL9+PUVFRWZZ25rGX5tDhw6RmJjIDz/8wLhx40zb165dW23fFi1a0KJFC6Kjo0lKSjK97/r27ctzzz3H4sWLMRgMtTYoE0IIIYQQTYfU34kade3aFS8vL7744gvKy8tN2//66y/i4uIYOnSoaZu9vT1Ajcu21CQwMBA/Pz8+/vhjdDodvXv3BioDu2PHjvHbb7/Rs2fPejOdF3rdS1GVtV2+fDn79+83e23w4ME4OTnxzjvvoNPpqh17+vRp09/rGnNV4PX+++/ToUMHnJ2dTdvXr1/P7t27zbLYWq2WQYMGsXz5clJSUkzbMzMz+eWXX4iKiqqzpPh8iqLw1Vdfcc899zB+/Hj++OMPs9f37NnD7Nmzeeqpp0wfOtx+++2MGDGCGTNm1Fueftttt6HX601LOEFlBvazzz5r8Birgvpzs+6qqjJr1qwa9+/Tpw///PMPO3fuND27Tp064ejoyHvvvYetrW29H6AIIYQQQojGTwJbUSNLS0vef/99Dh48SL9+/Zg1axavvvoq99xzDy1btuTZZ5817VsVGEyZMoX58+ezYMGCes/fp08fEhISCA8PN819rSoVTUxMbFAZ8sVc91I8/fTTODs7c+DAAbPtTk5OzJ07l+joaCIiInj77bf56quveP311+ncuTPTp09v0JhbtWqFj48PCQkJZvfft29fUlJSqKioqPZc/vvf/2JhYUFUVBTvvPMOM2fOpFevXpSXlzNz5swLvkeNRsPPP//MoEGDGDVqFP/88w9QGYA+9thj+Pj48N///tfsmFmzZqHRaOpsAgWVc3h79+7Nyy+/zJNPPsns2bMZNGiQ2bzY+oSGhhIcHMwLL7zAO++8w+eff07//v1JS0urcf8+ffpw/PhxysvLTaXJWq2WXr16kZiYSI8ePbCysmrw9YUQQgghROMkga2o1YQJE1i4cCEVFRVMnTqVL7/8khEjRrB582azcty77rqLyZMns3r1asaOHcv9999f77mrArSqYAMq56JGRkaavV6Xi7nupXBxceGZZ56p8bUHHniA9evX4+fnx//93//x9NNPs2DBAjp16sSDDz7Y4DHX9Fy6dOmCnZ0dVlZW1dalbdeuHdHR0YSHh/Puu+8yffp0AgIC+Pfff6vt21CWlpamrPmdd97Jjh07+Oyzz9i7dy+zZs3C0dHRbH9/f3/efPNNVqxYwbJly2o9r0aj4Y8//mD06NH8/PPPvPbaa/j5+fHDDz9c0NhWrFhBp06dTPfbunVrfvzxxxr3r3qeoaGhZms2V22/1HncQgghhBCicVDUC+2kI4QQQgghhBBCNCKSsRVCCCGEEEII0aRJYCuEEEIIIYQQokmTwFYIIYQQQgghRJMmga0QQgghhBBCiCZNAlshhBBCCCGEEE2aBLZCCCGEEEIIIZo0CWyFEEIIIYQQQjRpEtgKIYQQQgghhGjSJLAVQgghhBBCCNGkSWArhBBCCCGEEKJJk8BWCCGEEEIIIUSTJoGtEEIIIYQQQogmTQJbIYQQQgghhBBNmgS2QgghhBBCCCGaNAlshRBCCCGEEEI0aRLYCiGEEEIIIYRo0iSwFUIIIYQQQgjRpElgK4QQQgghhBCiSZPAVgghhBBCCCFEkyaBrRBCCCGEEEKIJk0CWyGEEEIIIYQQTZoEtkIIIYQQQgghmjQJbIUQQgghhBBCNGkS2AohhBBCCCGEaNIksBVCCCGEEEII0aRJYCuEEEIIIYQQokmTwFYIIYQQQgghRJMmga0QQgghhBBCiCZNAlshhBBCCCGEEE2aBLZCCCGEEEIIIZo0CWyFEEIIIYQQQjRpEtgKIYQQQogLsmHDBhRFYcOGDdd6KDVKSUlBURTmzZvX4H0/+OCDi7pWY38W57rpppsIDw+/4teZN28eiqKQkpJyxa8lRBUJbIUQQgghBPC/gKTqj42NDW3atOGpp54iMzPzslxj1apVvPnmm5flXE3huuLC/PLLL3zyySfXehiiCZLAVgghhBBCmHnrrbf46aef+Pzzz+nVqxdz584lMjKSkpKSSz73qlWrmD59+mUYZe0CAgIoLS1l7NixV/y6ffv2pbS0lL59+172c9+IJLAVF8viWg9ACCGEEEI0Lrfeeitdu3YF4JFHHsHd3Z2PPvqI5cuXc//991/j0dWvKtt8NWg0mst6rbKyMqysrNBoJP8kxIWQfzFCCCGEEKJO/fv3ByA5ObnO/RYvXkyXLl2wtbXFw8ODMWPGcPLkSdPrEyZMYPbs2QBmJc+1ee6553B3d0dVVdO2yZMnoygKn376qWlbZmYmiqIwd+5coPoc24Ze96uvviI4OBhra2u6devGrl276rxfqH2O7ezZswkKCsLW1pbu3bsTHR3NTTfdxE033VTt2AULFvD666/j5+eHnZ0dBQUF5OTk8MILL9C+fXscHBxwcnLi1ltv5cCBAzVef+HChbz66qv4+Phgb2/PsGHDOHHiRI1jjo2N5eabb8bOzg4/Pz9mzpxZ731C5bN76qmnmD9/PiEhIdjY2NClSxc2bdrUoOPnzJlDu3btsLa2plmzZjz55JPk5eWZXr/ppptYuXIlqamppu9Ry5YtG3RuISRjK4QQQggh6nTs2DEA3N3da91n3rx5PPjgg3Tr1o13332XzMxMZs2axZYtW9i3bx8uLi5MnDiR9PR01q5dy08//VTvdfv06cPHH39MTEyMqelRdHQ0Go2G6OhopkyZYtoG1FoO3JDr/vLLLxQWFjJx4kQURWHmzJncddddJCUlYWlpWe9YzzV37lyeeuop+vTpw7PPPktKSgrDhw/H1dWV5s2bV9t/xowZWFlZ8cILL1BeXo6VlRWxsbH8/vvvjBw5ksDAQDIzM/nyyy/p168fsbGxNGvWzOwcb7/9NoqiMHXqVLKysvjkk08YMGAA+/fvx9bW1rRfbm4uQ4YM4a677mLUqFH89ttvTJ06lfbt23PrrbfWe28bN25k4cKFTJkyBWtra+bMmcOQIUPYuXNnnY2p3nzzTaZPn86AAQN44oknSEhIYO7cuezatYstW7ZgaWnJa6+9Rn5+PmlpaXz88ccAODg4NPSxixudKoQQQgghhKqq33//vQqo69atU0+fPq2eOHFCXbBggeru7q7a2tqqaWlpqqqq6r///qsC6r///quqqqpWVFSoXl5eanh4uFpaWmo6359//qkC6htvvGHa9uSTT6oN/RU0KytLBdQ5c+aoqqqqeXl5qkajUUeOHKl6e3ub9psyZYrq5uamGo1GVVVVNTk5WQXU77//vt7rVu3r7u6u5uTkmLYvX75cBdQVK1bUOcbzn0V5ebnq7u6uduvWTdXpdKb95s2bpwJqv379qh0bFBSklpSUmJ23rKxMNRgM1cZqbW2tvvXWW9XO4efnpxYUFJi2L1q0SAXUWbNmmbb169dPBdQff/zRtK28vFz18fFR77777jrvU1VVFVABdffu3aZtqampqo2NjTpixAjTtqr3UXJysqqqld9HKysrddCgQWb39Pnnn6uA+t1335m2DR06VA0ICKh3LEKcT0qRhRBCCCGEmQEDBuDp6Ym/vz/33XcfDg4OLFu2DD8/vxr33717N1lZWUyaNMlsvunQoUMJDQ1l5cqVFzUOT09PQkNDTaWuW7ZsQavV8uKLL5KZmcmRI0eAyoxtVFRUnWXN9bn33ntxdXU1fd2nTx8AkpKSLug8u3fvJjs7m0cffRQLi/8VR44ePdrs/OcaP368WVYVwNra2jTP1mAwkJ2djYODAyEhIezdu7faOcaNG4ejo6Pp63vuuQdfX19WrVpltp+DgwNjxowxfW1lZUX37t0bfJ+RkZF06dLF9HWLFi248847+fvvvzEYDDUes27dOioqKnjmmWfM5g4/+uijODk5XfT7Q4hzSSmyEEIIIYQwM3v2bNq0aYOFhQXe3t6EhITU2cwoNTUVgJCQkGqvhYaGsnnz5oseS58+fUzBWXR0NF27dqVr1664ubkRHR2Nt7c3Bw4c4IEHHrjoa0BlgHauqiA0Nzf3gs5T9SxatWpltt3CwqLW+aKBgYHVthmNRmbNmsWcOXNITk42CxprKglv3bq12deKotCqVatqa8k2b9682gcArq6uHDx4sNZ7qus6AG3atKGkpITTp0/j4+NT7fXa3h9WVlYEBQWZXhfiUkhgK4QQQgghzHTv3t3UFflai4qK4uuvvyYpKYno6Gj69OmDoihERUURHR1Ns2bNMBqNpgzrxdJqtTVuV89pXHWlnJ+tBXjnnXeYNm0aDz30EDNmzMDNzQ2NRsMzzzyD0Wi86Gtdy/sU4kqSUmQhrgNlOgOnC8sp09VcAiSEEEJcSQEBAQAkJCRUey0hIcH0OnDB5cJVAevatWvZtWuX6eu+ffsSHR1NdHQ09vb2ZuWxNbmUMuULUXWvR48eNduu1+urZU/r8ttvv3HzzTfz7bffct999zFo0CAGDBhg1kX4XFVl2VVUVeXo0aOXvavw+dcBSExMxM7ODk9PzxqPqe39UVFRQXJy8iW9P4SoIoGtEE3YrpQcJv68m7b/WU23d9bR9j+rmfjzbnan5FzroQkhhLiBdO3aFS8vL7744gvKy8tN2//66y/i4uIYOnSoaZu9vT1ArQHa+QIDA/Hz8+Pjjz9Gp9PRu3dvoDLgPXbsGL/99hs9e/Y0m89akwu97sXq2rUr7u7ufP311+j1etP2+fPnX1BZs1arrZZFXbx4sdnySef68ccfKSwsNH3922+/kZGR0aBOxxdi27ZtZnN8T5w4wfLlyxk0aFCt2eABAwZgZWXFp59+anZP3377Lfn5+dXeH/n5+Zd1zOLGIKXIQjRRP21P5Y3lh9FoFIxnf0YYVVgXl8WamExmDA9nTI+Auk8ihBBCXAaWlpa8//77PPjgg/Tr14/777/ftNxPy5YtefbZZ037VmVWp0yZwuDBg9Fqtdx33311nr9Pnz4sWLCA9u3bm+a+RkREYG9vT2JiYoPm117MdS+GlZUVb775JpMnT6Z///6MGjWKlJQU5s2bR3BwcIMzkrfffjtvvfUWDz74IL169eLQoUPMnz+foKCgGvd3c3MjKiqKBx98kMzMTD755BNatWrFo48+ejlvj/DwcAYPHmy23A/A9OnTaz3G09OTV155henTpzNkyBCGDRtGQkICc+bMoVu3bmbNrLp06cLChQt57rnn6NatGw4ODtxxxx2X9R7E9UkytkI0QbtScnhj+WFUwGA0/zTXYFRRgWm/H5bMrRBCiKtmwoQJLFy4kIqKCqZOncqXX37JiBEj2Lx5My4uLqb97rrrLiZPnszq1asZO3Ys999/f73nrio/joqKMm2zsLAgMjLS7PW6XMx1L9ZTTz3Fp59+yvHjx3nhhReIjo7mjz/+wMXFxaxrdF1effVVnn/+ef7++2+efvpp9u7dy8qVK/H39691/6FDh/Luu+8ya9YsbrnlFtavX4+dnd3lvDX69evHJ598wk8//cQbb7yBm5sbf/31Fx06dKjzuDfffJPPP/+c48eP8+yzz7Jo0SIee+wx1qxZY7ZO8KRJk3jggQf4/vvveeCBB5g8efJlHb+4fimqzBQXosmZ+PNu1sVlVQtqz6XVKAwM8+aLMXXPORJCCCHElWc0GvH09OSuu+7i66+/vmzn3bBhAzfffDOLFy/mnnvuuWznrYmiKDz55JN8/vnnV/Q6QlwMydgK0cSU6Qysjc2sM6iFysztmthT0lBKCCGEuMrKysqqzY/98ccfycnJ4aabbro2gxLiOidzbIVoxEpLSzly5Ajx8fHEx8eTkJBAbNIJjDdNbdDxRhUKy/TYWNbczEEIIYQQl9/27dt59tlnGTlyJO7u7uzdu5dvv/2W8PBwRo4cea2HJ8R1SQJbIa4xVVXJzMw0Ba5VQWx8fDypqammT3w9PT0JDQ0luIUfu1UjKPUXXGgUcLSRf+ZCCCHE1dSyZUv8/f359NNPycnJwc3NjXHjxvHee+9hZWV1rYcnxHVJ5tgKcZVUVFRw7Ngxs8C1KpCtamuv1WoJDg4mNDTU9CckJISQkBAyMzN5++23WbBgAX73vok2oDMqtXdWlDm2QgghhBDiRiGpHCEus+zs7Bqzr0lJSRgMlfNdnZ2dCQsLIzQ0lOHDh5uC2KCgoGqf5B44cIDHH3+cJUuW0Lx5cz777DM6DriLMd/vqXMcBoOR8T1r7pwohBBCCCHE9UQytkJcBL1eT0pKSo3Z1zNnzgCVnQNbtmxplnmt+ruXl1e969jt3r2bGTNm8McffxAUFMQrr7zCuHHjTIHvzztSmfZ75Tq25zaS0moUDEYj+eu+pItzKUuWLMHZ2fnKPQwhhBBCCCGuMQlshahDfn6+KWA9NwN75MgRdDodAPb29mZBa9WfVq1aYWtre8HX3Lp1KzNmzGD16tW0adOG1157jQceeAALi+oFFrtTcvhmczJrYk9hVCvn1A5q68MjUYEUpx5i+PDhNG/enFWrVtW67p0QQgghhBBNnQS2olEr0xkoLNPjaGNxxTr7Go1Gjh8/Xq10OCEhgYyMDNN+zZs3rzH76ufnV2/2tT6qqrJx40ZmzJjBP//8Q7t27Xj99dcZOXIkWm39913bc4qNjeXWW2/FYDCwatWqehdPF0IIIYQQoimSwFY0SrtScvhmcxJrYzNNmciBbb15NCqIri3dLuqcxcXFJCYmVisdTkxMpLS0FABra2tTs6Zzs69t2rTBwcHhct4iUBnQrl27lhkzZrB582Y6derEtGnTGD58OBrN5VlmOiMjg6FDh3L06FGWLl3KgAEDLst5hRBCCCGEaCwksBWNzk/bU3ljec1zR41GlRnDwxnTI6DGY1VVJT09vVr2NT4+nhMnTpj28/b2rjH72qJFiwZlSC+VqqqsXLmSGTNmsHPnTrp37860adMYOnToJWd/a1JYWMioUaNYt24d33zzDePHj7/s1xBCCCGEEOJakcBWNCq7UnIY9eU26npTKsD8B7vgVHGmWvY1Pj6eoqIiACwsLGjVqlW1ua8hISG4uLhcjdupxmg0smzZMv773/+yf/9+oqKimDZtGgMHDrwiAe25dDodTzzxBN9++y1vvfUWr7/++hW/phBCCCGEEFeDLPcjGpVvNidVy9SeTzUaGP7yp5xe9i4Arq6uhIWF0aFDB0aOHGkKYAMDA7G0tLxaQ6+TwWBg8eLF/Pe//yUmJob+/fvz77//0q9fv6sWXFpaWvL1118TEBDAG2+8wfHjx5kzZ06jeUZCCCGEEEJcLMnYikajTGeg7X9WU0dMa6Kg8s1gJzq0C8PDw6PRZh71ej3z58/nnXfeITExkSFDhjBt2jR69ep1Tcf1ww8/8MgjjzBgwAAWLVqEo6PjNR2PEEIIIYQQl+LydKcR4jIoLNM3KKgFUFHo0KUHnp6ejTKoraio4Ouvv6ZNmzZMmDCB0NBQdu7cyV9//XXNg1qA8ePHs2rVKrZs2UK/fv3Muj8LIYQQQgjR1EhgKxoNRxsLNA2MUTVK5f6NTVlZGbNnz6ZVq1ZMnDiRLl26sH//fpYvX063bt2u9fDMDBw4kOjoaDIzM4mMjCQuLu5aD0kIIYQQQoiLIoGtaDRsLLUMbOuNtp7oVqtRGNTW54qta3sxSkpK+PjjjwkKCmLKlCn06dOHw4cPs3jxYjp27Hith1erjh07sn37dhwdHenVqxebNm261kMSQgghhBDigklgKxqVR6KCMNZTj2w0qjwSFXiVRlS3wsJC3n//fVq2bMmLL77I4MGDiYuLY/78+bRt2/ZaD69B/P39iY6OJiIigoEDB7JgwYJrPSQhhBBCCCEuiAS2olHp1tKNGcPDUQCMBrPXtBoFBZgxPJyuLd2u2BjKdAZOF5ZTpjPUuk9eXh4zZsygZcuWTJs2jREjRnDkyBG+//572rRpc8XGdqW4uLjw119/MWrUKO6//37+7//+D+krJ4QQQgghmorGN0lR3PDG9AggxNuBEVM/wzKoKyoKGgUGhnnzSFTgFQtqd6Xk8M3mJNbGZmJUK+fxDmzrzaNRQaZrZmdn88knn/Dpp59SXl7Oo48+yksvvYS/v/8VGdPVZGVlxY8//kiLFi146aWXSE1NZdasWWi1jafkWwghhBBCiJrIcj+iUcrMzMTHx4dfF/3GLUNux9HG4orOqf1peypvLD9cbQ1drUbBaFR5qX8AKet+Ys6cORiNRh5//HFeeOEFfH19r9iYrqWvvvqKSZMmcfvtt/PLL79gZ2d3rYckhBBCCCFErSSwFY3SP//8wy233EJcXByhoaFX9Fq7UnIY9eU26vqHoKoqBUv+w+P3DOK5557D09Pzio6pMVi1ahUjR46kffv2rFix4oa4ZyGEEEII0TTJHFvRKMXExGBlZUWrVq2u+LW+2ZyEpp5OzBpFZcSrn/Puu+/eMAHebbfdxsaNG0lOTiYyMpIjR45c6yEJIYQQQghRIwlsRaMUExNDSEgIFhZXdhp4mc7A2thMs/Ljmqho2HAkp86GUtejrl27sn37diwsLIiMjGTbtm3XekhCCCGEEEJUI4GtaJRiYmJo167dFb9OYZmeemJaE6Nauf+NJjAwkK1btxIWFkb//v1ZtmzZtR6SEEIIIYQQZiSwFY2OqqpXLbB1tLGgnipkE41Suf+NyM3NjbVr13LHHXdw991389lnn13rIQkhhBBCXFGFhYU89NDD3HbbUOLj46/1cEQ9JLAVjc6pU6fIzc29KoGtjaWWgW290dTZOqqyO/Kgtj5XtDNzY2djY8OCBQt49tlnmTJlCs8//zxGo/FaD0sIIcQNqqCggI8++ojly5df66GI69QHH3zAvHk/sHr1VgYMGMCvv/5KSUnJtR6WqMWNmX4SjVpMTAzAVQlsAXo4F7NaBaWOzK3RqPJIVOBVGU9jptFo+PDDDwkICOCZZ57hxIkT/Pjjj9jY2FzroQkhhLhBbNmyhSVLlrBvzx42bNoEwN9//82gQYNM+xiNRjQayd+IS1NQUICqGoB8NBpHvvvuO3777TdGjhzJnXfeia2t7bUeojiH/IsXjU5MTAzW1tYEBwdf8WvFxsbywvgRuCevRaEyM3surUZBAWYMD6drS7crPp6mYsqUKSxZsoQVK1YwcOBAcnJyrvWQhBBC3AAKCwsZNGAAcz75hM2bNuFzdvu8efOoqKigqKgIHw8PLLVa+vTp06Bz7t69m9mzZ5OVlXXlBi6apLZt29KuXTvatGlN69atgcpg99tvv2XMmDEsWLCA0tLSazxKUUUCW9HoxMTEEBoailZ7Zct+09LSGDx4MM2bN+efL6ezeGIkA8O8TXNuNQoMDPNm8cRIxvQIuKJjaYpGjBjBP//8Q1xcHL169SI5OflaD0kIIcR1rqysjLLycqxVFQNQ6uiIAvz66688/OCDzJ8/n8zsbDyBbZs3U1FRYTo2Li6OjIwMs/MdO3aM3pGRPPXUU9w6cOBVvRdx6VRVNfseX24ZGRloNBpKSkoYO3Yst9xyi6kSoCrAHTt2LAsXLpQAtxGQwFY0OlejcVRubi5DhgxBq9WyevVqXFxc6NrSjS/GdCF2+hB2vTqA2OlD+GJMF8nU1qFqCSC9Xk9kZCS7d+++1kMSQghxnSosLKR/374YVRW9rS3twsPx8/dHBZoDm/79l27dumEBZAJWlpZYWVkBlXMl27ZtS3BgoNnPqh07dlCh19MMOHrs2DW4K3ExdDodGzZsIKhFC6ytrXnzzTevyHViYmI4dOgQZ9LSeOrxxwF44YUXuPnmm1HOzmHLz8/nm2++Ydy4cSxatEgC3GtIAlvRqFyNjsilpaUMGzaMU6dO8ffff9OsWTOz120stXg6Wt/QjaIuROvWrdm6dSsBAQH069ePlStXXushCSGEuA7t2bOHw/Hx+ADlZWUcPnyYE8nJeLq7k29rS++bbsLDw4PuvXoRFhbG4KFDTcfO++47fIDS8nJWr15t2l5QUEDLli0pdXJixD33MHPmTBYtWoSqNnAtQHHVVFRUsGPHDmbOnMmoUaN47rnnSElLwxuY9dFHl/16qqqaytO1Z79ev349M2fO5OjRo/Tu3RtFUSguLgYgLy+Pr7/+mnHjxrF48WLKysou+5hE3aR5lGhU0tPTyc/Pv2KBrV6v5/7772fPnj38888/hISEXJHr3Gi8vLz4999/uf/++xk2bBhz587lscceu9bDEkII0UQYDAY+/PBDMjIyeOWVV/Dy8qq2T0REBK6OjpwqLMQC8AYyS0sJDgnB3d2dnJwc3n//fSwsLPDz8zNrbBjUqhXx8fFYAf954w10Oh1vvvkmmzdvplWrVsTFxvLDDz+gBQxUBlFjxowxHZ+dnc1XX31FaGgoI0aMuNKPQ5xVUVHBnj172LRpE9u2bTMFkQCOjo7YWVmRWVHBuDvvvOzXLigowMLCgnbt2lFaWkqLFi1Mr6WkpPDLTz9RrtdjY2HBg48+ytGjR1FVlby8PL766isWLVrEvffey+233y5NNq8SCWxFoxIbGwtcmY7IqqoyadIk/vzzT5YvX07Pnj0v+zVuZHZ2dixdupSnn36aiRMnkpqayn//+19TqY4QQghxvqSkJE6cOMHRo0eZOnUq9hoNhw8dYu26ddX2dXJyYtKUKWzcuJGU5GTSTp7E3toaJycnzpw5w4EDB7BUFFzd3enQqROWlpZA5c9/CwsLOkVEsGfPHryB9955h4qKChITE3F2diY/Oxsf4BSV5YwpKSlm177jttvYvnMnKrB+/Xr69+9/hZ/MjauiooLdu3ebgtlzl9fR6XTs33+IkpISbr11EMtWrMDT05OOHTte9nFUzcf29fVl6NChTJo0ic2bN7Nq1Sp27dpFuV5f+eGKXk9MTAze3t44OzuTmppqCnC//PJLU4A7dOhQCXCvMAlsRaMSExODjY0NgYGXf2mdN998k6+//prvv/+eoeeUJ4nLR6vV8tlnnxEQEMBLL73E8ePH+fbbb01znIQQQogqBw4coEe3bpTrdPTu1QsA1WjkSGIiBoOBbdu2MX70aLy9vVm2YgXe3t60adOGHTt2EBIaSkDLllhZWaGqKunp6QA4qSoGvR7AFNhmZ2dTWFiIg4MD9mczfHYaDe+99x5aRaFnr140DwzkSEICNhoNzVq0YPLkyXz++efExcXRv39/4uPi8KJy7m5GRgb79u1j9uzZ9O3bl3Hjxl2Lx3ddKS8vZ9euXWzatInt27fXOk/19OnT5OfnAH6sW7eR0NBQxo8ff0WWdqp6TwE0a9YMKysr+vfvT//+/UlLS+P5559n/dq1hPn4YGVlRW5uLrm5uSiKYqogUFWV3Nxc3n77bSZMeJRevXrw++9LZZmgK0QCW9GoXKmOyF988QVvvfUW7777LhMmTLis5xbmFEXhxRdfxN/fn/Hjx5Oens7SpUtxdna+1kMTQghxjamqyooVKygvLycvL49ynQ4/ICEmhr59+5KUlESLli3ZsmUL7/z3vxQdP07S8eO8//77fPTRR6alABVFMQUHCQkJ5Jw+DUC5gwPtw8KAyoD2l19+MX1YbmlpSdfISEpLS9m/Zw++QMbZrroajQaDqmJjYcGrr73GokWLmDx5MhbAnDlzcHZyIvPsPWzcuJGnn3yS8rNdcTt06ECnTp2u3kO8TpSVlZkFsw2Zk+rk5ISiaFHVk7i6Nmfv3r3s3buXbt26MX78+Ms6xezcDtq+vr5mrzVv3pyFCxeSlpbGCy+8QHZ2tuk1VVVNX1tZWZ2tDEiiuNiRNWtWs3TpUkaPHn3Zxin+RwJb0ahcicZRS5cuZdKkSUyZMoWpU6de1nOL2t133334+voyfPhwoqKiWLVqFf7+/td6WEIIIa6h6dOn89b06ajAo48+ir+vL6fPnKFNQACRkZGcOHGC0tJSlixZgq+fH3+fPa6qHDUoKKjaOY1GI1ZAOeDt7Y29vT3Z2dmsW7eO5cuXM3DAANO+lpaWWFpaEhYezomUFALd3HBxceFofDzNgPTycoqLi9myZQsAesAHyDs7t9NLUdh5Nggznm0wdSWyhder0tJSdu7cyaZNm9i5c+cFNVhydnZm4MCBTJkyhZSUFGJjYzl16hQAu3btYteuXfTq1Ytx48aZPgC5FOdnbGvSvHlzvvjiC1577TUSExOrvV61FJGDgx3FxWkoigZ7e/tLHpuomaJK2zfRSKiqiouLCy+//DKvvPLKZTnnxo0bGTx4MMOHD+eXX36RHz7XQGxsLLfeeisGg4GVK1dekXkwQgghmoYAf3/K0tLIAtzc3NiwYQPPPfccRqORrdHRVOh0aDQaekVF8cknn/DEE08A4Ofnx8KFC9FqtQwfPtxs3mVFRQVJSUmmIMnHxwedTkdCQgJ+gMbPj5CzWVwAa2trysvLzcaVnJzMsWPHsNJq+W3ZMmbNmkVSUhIZJ05QptcTGBhIaUkJqCrBrVtjMBhIS0tj0qRJl+13lutVaWkpO3bsMAWz5z/7urRs2ZKePXvSs2fPahV9er2eNWvWMH/+fFP34ip9+vRh3LhxtGzZ8qLH/dxzz3Ho0CEAli9fjp2dXa37lpaW8uabb7J3716g8sOOwMBAkpOTMRqNlJeXs3nzVlTVgIeHN+npJ0yl8uLykcBWNBppaWn4+/uzfPlyhg0bdsnnO3ToEH369KFr166sXLkSa2vryzBKcTEyMjIYOnQoR48eZcmSJQwcOND0WpnOQGGZHkcbC1liSQghriNVy6NMmTQJjUbDxCef5OkpU6j6xTM0NJTHHnuM0tJS1q9fz4Z//8VVVckGoqKiGDRoEBqNhg0bNgDw7rvv0rVrV7OAo4pOp2PTxo24ATlAr969OZqYSHlpKd0iI82W77G1ta1xDmdJSQnDhg0jKyuLgwcPmu4hMzOTuJgYbKys6N2vH0ajEYBx48YxduzYy/zUrg8lJSVs376d6Ohodu7cacpc1sfCwoKOHTvSs2dPevToUa0EuCY6nY7Vq1fzyy+/cObMGdN2RVG4+eabGTt2LM2bN7/ge7jvvvvIzs7GxcWFxYsXN2gc//d//8e///5r2nb//fdjZWXF0qVLWbZsGeCDRpNFfn4+Dg4OFzwmUTcpRRaNRkxMDHB5OiKnpqYyZMgQgoKCWLp0qQS115ivry8bN25k1KhR3HbbbXzzzTe07XcH32xOYm1sJkYVNAoMbOvNo1FBdG3pdq2HLIQQ4hI9/9xzfPzJJ9gDRmDGjBnYARWAo5sbzZs3Z9WqVbz66qtER0fTvkMH0k+epK2XFzY2NmzevJknn3zSFNhu3LiRrl27EhwcbApsz5w5w9H4eGxsbbHQaMgzGrHQaLC0tKT92QohjUaDwWAwjau2xkR2dnZEREQwc+ZM0zZFUUhPS8NTVTlVXk5ycjIBAQFERETwwAMPXIGn1nQVFxebBbM6na5Bx7m4uNC9e3d69uxJly5d6syM1sTS0pI77riDwYMH8+eff7JgwQJyc3NRVZV//vmHDRs2cMsttzB27NgGBcpQ2cyqap5sQ4+xtLTk5ZdfxtnZmd9//x2AX3/9lbvvvptFixbx2muvsXnzNiZOfF+C2itEMrai0fjoo494/fXXKSoquqSS4TNnzhAVFUVFRQVbt27Fx8fnMo5SXAqdTscTTzzBwr3puA+ehFajwWD83/+CtBoFo1FlxvBwxvQIuIYjFUIIcan8vL0pysqi4OzXAQEBpJ84AUCHzp1xdXUFKgObPn36sGLFCqAy8Iw7G7g++fTT7Nu3j7KyMhwdHVm0aBHr1q3jww8/BGD39u3YFxVxksqyVUVR8PT0xMnJ6YLH26FDB/Ly8jh+/LjZ9pSUFI4ePYqFRkNE164EBgby6aefsn79epo3b06fPn0u4ulcH4qLi9m2bRubNm1i9+7dDQ5mg4KC6NGjh6nE+HJOFSsrK2PFihUsXLiQ/Px803atVsvgwYMZPXp0jesknys1NZVHHnkEgFtuuYWXX365wdc3Go0MGzaMrZs24R8YiJeXF7fccgvPP/+8lB9fYZKxFY1GTEwMYWFhl/Q/t+LiYm6//XZycnIkqG2ELC0teey191n31TZAMQtqAdPX034/TKi3o2RuhRCiCXtg3Dg++OADrLRaLCwsQFXp3bcvWq3WbI3zvLw8ioqKsLOzo6SkhNTUVEoLCrAA5s2bxyOPPEJ0dDSFhYXs27ePVq1amY61d3LiZFERCuDp6VlrB/7S0lL0ej2Ojo61jrdt27YsWLCg2vaWLVvi6emJhYUFtra2vPbaazw4YQKr/voLgMcee4yZM2diZWXFk5MmceL4cezs7SkqKOCDjz+mc+fOF/cAG6mioiKzYFZ/dnmlulhaWtKpUydTibG3t/cVG5+NjQ0jR45k6NCh/P777/z2228UFhZiMBhYtWoVa9as4dZbb+WBBx7Aw8OjxnOc2ziqoRnbKlu2bGHlypU0AxJjY/Hy8mL9+vXk5+fzxhtvyFI/V5AEtqLRuNSOyDqdjlGjRnH48GE2bNhg9oNPNB7fbkmulqk9n0aj8M3mZAlshRCiCfu///s/+vXrx4g778S1vJzU48fx9vHB1dXVrDQY4N9//2XIkCGsXr0aBwcH0s5u97W1NS2Zcvz4cd59911++eUXtFotOp2OwKAg3D08sLOzq7W8Mzc3l31792JUVVq3bk1AQPWKIE9PT/7+++8ajq5U1cn2oYceIjc3l00bNuAHnAS++uqryq7KLVrw888/4wQUAH6KwtNPPcWmsx2Wm7LCwkK2bt3Kpk2b2LNnT7XvX01cXV1NWdmIiIirHtDZ2dnxwAMPcOedd7JkyRKWLFlCSUkJer2eFStWsHr1au644w7uu+8+U/VAlbqW+qmPr68vWkUhXVXxcnIyvX93797NSy+9xNtvv31RFQWifhLYikZBVVViY2MZMWLERR//6KOPsmbNGlauXEnXrl0v8wjF5VCmM5jm1NbFYFRZE3uKMp1BGkoJIUQTFhgYiJWVFSfLyrBQFKytrTEYDFhYWFTL9G3duhU3NzdUVcXW1hZVVXF3d2fHjh0cTUzkzKlTpKSk8P333+Pn58fSRYvIKyqima8vbWv5YFyj0ZCXl4dRVfECcrKzCQgIoKysjMTERCwtLWndujXBwcFs3769znvp2bMnQUFBvP7663h4e3MiJQWFyuWA9u3bR/bZsteq0uuTqkrfFi0u7QFeQwUFBWbBbFXTrLoEBwebuhi3adOmUaxGYW9vz7hx4xg+fDi//fYby5Yto6ysDJ1Ox9KlS1m1ahXDhg1j1KhRpox/Q5b6qU2rVq0YOHgwKSkpBAcH8+677zJt2jSKi4uJj4/nmWee4b333qu3HFpcOAlsRaNw4sQJCgsLLzpj++qrr/LDDz/w888/M2jQoMs8OnG5FJbp6w1qqxjVyv0lsBVCiKbhzJkzLFq0iG7dutGtWzcAHp4wAeuyMkqAlsHBpmaOer0erVZrlvkrKCigbdu25OTk4O7ubtpeVFSEhaUlNlQ2ntqwYQNeXl7kFRXhTWV2LaxtW7Py5iqKouDj40PmyZPk6XS0PRtoHjlyhIqsLLKpDHz27dtX5715eXlx55138p///Aej0UhwcDCWlpacysig9Oy9eXh40KFDB8rLy00B8+w5cy7hiV59+fn5bNmyhY0bN7J///56g1lLS0s6d+5sKjG+GsFaVafqmJgYpk59laNHjzFq1F289dZbdU5Bc3Jy4qGHHuKuu+5i0aJF/PHHH5SXl1NWVsaiRYtYsWIFI0aM4J577rmkUmSAkJAQ9Ho95eXlhISE8NFHH/HKK6+we/duoqO3s3PnTv78889LWo5IVCeBrWgULqUj8qeffsp7773Hhx9+yOjRoy/30MRl5GhjgUahQcGtRqncXwghROO3Zs0a7hw6lDK9Hq2isHrNGvr06UN8XBz5gBaqlQrXVM4ae3ZOYtW6pGfOnCEnJ4fm/v7oDQbcra3R6XT07NmTn+bNI7OoiGY+PjUGtVXXsLW1pWdUFKqqmvaztLQkC1CpLEM+d21Vo9FIVlYWNjY2uLi4YGFhwcMPP8yMGTNMy9YoikJAQADBwcFmmWcvLy+srKyI3rCBw4cPY6ioYPmff178g70K8vLy2LJlC//++y8HDx6kvr6ybm5upkC2c+fOV7zEuKioiPj4eBISEoiPjyc+Pp68vDzy8vLYs2c34M23384jOTm5znVvq7i4uPDYY49xzz338Ouvv7Jy5Up0Oh2lpaX88ssvLF++HKhsQuXs7Iyb24VPizp37u6ZM2cICgpi2rRptG/fHvAlJiaGJ554gg8++OCyrAYiKslvjaJRiImJwc7OrsZ5L3VZuHAhzzzzDC+88ALPPffcFRqduFxsLLUMbOvNurisOufYajUKA8O8JVsrhBBNxHvvvINBr6cZkK6qvPbaazz11FPkFxfjDWRCrY2dzldYWAhUBhYH9u/HEshKTyfqpptMr/v4+NCle3d0Oh1WVlYNOu+5wW/r1q2xtbXF0tISGxsbs/0S4uM5eTZjFxERweTJk5k9ezYlJSVm+2k0GlNQW1ZWRkpKCl5eXtja2lJYUoI3mK1p2pjk5uayefNm1q1bR1xcXL3BbKtWrYiMjKRHjx60bt36ipUY63Q6kpKSTAFsfHw8aWlpNe5ra2uLhYU1en0mTk6VgWRKSgopKSksWLAAZ2dns2WEquZJV3Fzc+PJJ59k1KhR/Prrr/z111/o9Xpyc3PZsWMP5eXFhIXVXAlQn3MD29OnT9OsWTNat26Ni4sHeXkZWFvbk5OTw8CBA7n99tv54osvGkXZdlMnga1oFGJiYmjbtu0F/aNev349Y8eOZfTo0bz//vtXcHTicnokKog1MZl17mM0qjwSFXiVRiSEEOJi5eXl8dJLL5Gdm4uOygDW3c2NtLQ0Zs6cSYf27Tl06BDNmzWr7IzcAKWlpTg7O1NSUoIK2AClqoqlpaVpOZndu3ej0Wguep16rVZLQEAANjY2lJWVmV+/uJjmQBr/aypVUFBgto+iKGZluvExMZTl5pKWlkZ4eDiebm7k5Ocz/fXXL2p8V0JOTg7R0dH8/fffHDlypM59LS0t6dKliykzW1v34Euhqirp6elmQeyxY8fqXTLI0dGRkJAQQkJCeP7550lLS8PW1pZ9+/aRkJBgCtLz8/NZu3Yta9euxcLCgg4dOpiyueeWF3t6ejJlyhRGjRrF/Pnz+fnnnykvLwZ8OHYshcOHDxMeHn5B9+bp6Wn6e9V6uNbW1vz990oeffRRnJ2d2bfvEEVFWr7++mvuuOMO7rjjjgu6hqhOAlvRKFxoR+R9+/YxYsQIbr75Zr799lv5lKsJ6dbSjRnDw5n2+2E0GqXWdWylI7IQQjR+77zzDj99+y2oKkFBQbRr1471f/9NSU4O6enpREZGMnbcOLKyshq0LEyV/Px87OzsaNeuHdnZ2bT28zMLeHbt2oWjo6Mpu3sxVFWtFtQCBLVuzdH4eHzt7XF3dzeVRZ9/bLVtZ/+r0Wh4/Mknef755zlz5gxDBg3C1taWL7766oouc1OT7Oxs1q9fz5o1a0hNTa1zXxcXF3r37k1kZCQdO3aslsm+VHl5eaZy4qr/1vf9s7S0JDg4mJCQEEJDQwkNDcXPz6/WLGpltnUH27dvZ8+ePabvr16vZ+/evezdu5c5c+YQEBBAjx49iIyMJCwsDK1Wi4+PD88//zyDBw+mR4/elJScws8vkFdffZXZs2fj7+/f4Hs9P2NbpXv37owaNYoNGzZgYaEFKhuOSZfky0MCW3HNVXVEHjlyZIP2T0pK4tZbbyUkJIQlS5Y0uARJNB5jegQQ6u3IN5uTWX04HRQNGgUGhnnzSFSgBLVCCNFEODs7U342c6mqKjqdDo1Gw7lhX3p6OnZ2dmi1WrO5rPXRarX4+vrW2LwnPz+f0NBQ4uPjL3jMer2eA3v3kldQQHCrVtUa+Li4uNC1Z0+aN29eaxns+ULbtSMlJQV/Bwfeeust7rjjDl555RU+++gj9Ho9lorC+++/z0cffXTB471QZ86cYdWqVaxfv96sCVJNAgIC6NevH5GRkQQHB19U2W1NysvLOXr0KAkJCcTFxZGQkGC2hE5t/Pz8TAFsaGgoQUFBF/R7nqurK0OGDGHIkCFUVFRw4MABU6Cbmfm/arHU1FRSU1NZtGgRjo6OdO/encjISLp27Up4eDj//LOGqVOnYmlpSWlpKS+//DKzZs1qcOb6/Dm25xo7diybNm2iffu2ZGVl8eqrr9KvX78G36OonQS24po7fvw4xcXFDcrYZmVlMXjwYBwdHVm5cmWta9aJxq9rSze6tnSjd9/naRHchu+/mitzaoUQool58cUXyc/P559//sHZ2Rm9Xk/bDh3IyMgg0NkZe3t7VFWlpKQERVGwtbWltLS0Qeeub63U+kpWa5OXl0duQQHewMnU1Bo703p7ezc4qAWwsbFhwIABvPHGGxQUFPDAAw+wcvlyXPV60gGdql5Qxu9CZWZmsmTJEqKjo6sFUufSarWEh4fTv39/evToYdZ9+mIZjUZOnDhhlolNSkqq9/vn4uJiysRWlRZfzsyllZWVqUP3k08+SUpKCtu3b2f79u1m84oLCwtZv34969evR6vV0r59e1Mm9+jRo0Dl75+vvfYaH330UbW5ujU5txT5/O9HixYt6N+/P+vWrcPf37/GBlfi4ihqfbPFhbjCVq1axdChQ0lJSamzeVRhYSE333wzaWlpbN26laCgoKs4SnGldO/enY4dO/L1119f66EIIYSox8aNGzl58iQFBQW0bt2aW265BajM0P3444/89ttvprmnRqORwwcOcDo7G39/f9qEhADUOK/1YtjZ2VVr6NQQ5eXl7Nq+nTKdDl8fH9qdN3/SwcGBoqKiCzqnra0txxIScHBxMQVnh/bvJ/PMGTSKwktTp/L2229f1qlTVRnHHTt2kH92Dd2a2NnZ0a1bNwYOHEinTp0uel5ylezsbLNMbEJCQr3fBysrK1q3bm3KxIaEhOBTRzfrKy0vL4+dO3eaSpbrG39paSkGg4GoqCjefvvterPIer2e2267DVVVCQ0N5bPPPjN7PS0tjYcffhij0YiDgwM//fSTJGsuA8nYimsuJiYGe3v7Oj/JrKio4J577iExMZGNGzdKUHsdqaiouOQfskIIIa68pUuXcvfdd6Pwv/mkL774Ii+//DJubm48+uij9OvXjw8//JCkpCSKi4vJys7GGzh+4gStznbTLSsrw8LC4oLm3NakpKSEkydPkpmRgbevL35+fg06ztramu6RkZSVleHo6Gj2mlarvaCg1sbGpnKd0g8/pBkQC0RGRmJvb0+7Dh242cuL559/nq5du1JWVsby5csJCwujQ4cOF3Cn/3Pw4EGWLFnC/v376wzGPDw86N27N0OGDLmkEuPS0lISExPNlto5d85oTRRFoUWLFqYANiwsjJYtWza4edjV4OLiwqBBgxg0aBA6nY5Dhw6xbds2tm/fzqlTp8z2zcnJYf/evRipDIhdXFx45ZVX6vyQwsLCAldXV3Jycmp8Xs2bN2fgwIH8/fffFBUVsWTJEsaPH3+5b/OG03jeYeKGVV9HZKPRyEMPPcSGDRv466+/6Ny581UeobiSKioqZJ60EEI0AbGxsWgAS8CTyq7Bq1at4tChQ9x6663ce++9tGnThtmzZ7N48WK+//57HG1syCwrw8PFxeznvF6vR1GUepeZqUtFRQVxcXH4AHF5eTg7O5Ofn4+rqyt2dnZ1HmtlZVXjz55zy2f1ej0FBQU4OjpiaWlZbV8fHx9yc3PZv38/9jY2nCwrw0qrxcrKilatWjFt2jRsbGzIz89n+/btPDhuHPFHjmCh1bJn794GBbcGg4HNmzezYsUK4uLiTOvonk9RFPz9/enfvz+33XYbrq6u9Z67pmulpqaadSlOTU016/5cEzc3N8LCwkyBbJs2bRpUrttYWFpaEhERQUREBJMmTeL48eNs27aNHTt2EBMTQ05ODgrgTmW2esOGDbi7u/P444/XeV4PDw9ycnLIzc3FYDBUKzkePXo069atw2AwsHTpUkaMGCFNpC6RBLbimouJiamzjfpLL73EL7/8woIFC+jfv/9VHJm4GsrLyyWwFUKIJmDixIn89eefHD50iEKNBj9HR7y9vcnOzuatN9/kww8+4LGJExk3bhz3338/UVFRvPfee+zevbvGMsuGBLX5+fnk5+fj7e2NtbU1RUVF6HQ6XFxc0Gq1WFtYcEqvx9rCgoN791JSUYG1hQWRUVGXlCE0Go3s27WL/OJiHG1t6dqzp1lg4uzsbMrsKYpC527dTOuVvv3223Tt2pVvvvmGZ6dMoUynw8PDg5LCwsp1fg0GEhISag1si4uLWbduHatXryYpKanWwFKr1dKqVStuu+02BgwYcEE/S1VV5fTp02ZB7JEjR+otEa/KUJ/bpfjc+aRNnaIoBAQEEBAQwH333UdeXh4PP/wwpzMyKNTrCT9bXbhkyRLc3d3rbHzq4eFBYmIiRqORnJycas/J19eXIUOGsHLlSkpKSvjtt9946KGHruj9Xe8ksBXXlNFoJDY2lnvvvbfG1z/88EM+/PBDPv30U0aNGnWVRyeuBilFFkKIpsHT05M3Z8zgruHD0agq7dq3x2g0ciQuDtuiIo7n5rJw4UI2bNhAz549GT9+PJ999hkrV67kq6++Mlt6xWg0VgvEjEYjCfHxlBQVEdS6NdbW1uzZvRujqpKVnk5wSAh79+xBBQIDAwkODiaiWzfOnDmDq6srO3furAwc9Xp0Ot0lBbYGg4H84mJ8gFOlpVRUVGBra2sqoT5/Tquqqpw8fpzExETmzp1LTk4OCQkJlOl0+ABZZ86gKArF9vYMu/nmamuWpqen8/fff/Pvv//W2T3Y2tqadu3aMXz4cHr27NngEuPi4mKzcuKEhARycnLqPEaj0dCyZUvCwsJMgWyLFi1uqGZHLi4uTJs2zfT9dnNzIzc3F4CvvvoKNzc30zzz852/5E9NHwA88MAD/P333+j1epYtW8Zdd92Fi4vL5b+RG4QEtuKaSk1NpaSkpMaOyD///DMvvPACr7zyCpMnT74GoxNXg5QiCyFE41VcXMy999zD3j17ePypp9i9ezfWJSXkAYmJiXTq1Ak7e3vSz85Lrfqgsqr7bHh4OI888gjffvstH330EatWrSI+Nha9wUDbdu3MlvI5ffo0J9PT8QOOxsXRum1bjKqKL5BbVkZBQQEq4A0U5OUBYG9vbyp7DQkJ4VRaGkHe3tja2l7SfVtYWNDC359T6en4eXtjY2ODoig1zgt2cnLi+PHjFJaU4Av8+fvvRHTvjqenJ2kpKWTqdDgCBarKpq1b6dChAwaDgUOHDrF27Vq2bt1aZ/Mne3t7IiIiuOeee2jbtm29Y9fpdCQnJ5tlY0+cOFHvcd7e3maZ2FatWl3yc7wedOzYkQ4dOnDo0CFyc3Pp06cP0dHRAHzwwQe4uLjQpUuXasedG8hmZ2fXeG4vLy9uvfVWVqxYQVlZGYsXL+bRRx+tczxGo5FJk55k9ep1TJv2Mg8//PAl3N31Rboii2vqzz//5I477iA1NZUWLVqYtv/999/cfvvtjB07lm+//faadc0TV56LiwuvvfYaL7744rUeihBCiPMsWLCA+++/n2ZAka0tLYKDOXz4MBrA2dUVX19fPD09ycjIwMHBATe3mtchb9myJYf272fH7t1oqJyvqHp40KlTJ4xGI1lZWRgMBuLj4lABLw8P2nfsyLFjxyjIzaVFYCCOjo4c3r+f8vJyQsPDa73W1XJuA6yioiL27tpFhcFAmzZtTL/TGI1GTp8+TUlREeMffJCoqCj++ecf9u3bV+eavi4uLvTs2ZN77rmnzhUjVFUlIyPDLBN75MiRepdCsre3NwtiQ0JCrvnzbMz2799v+j2lefPmdOjQgVWrVgGVHbE//PBDWrdubXbM2rVrmTlzJgBPPPEEd911V43nPnPmDOPGjUOn02Ftbc1PP/1U5xzpHTt20LNnT8AXS8scystL5ffksyRjK66pmJgYHB0dzToi79q1i7vvvpvBgwfz1VdfyT/W65yUIgshROMVHh6OlYUF6Xo9vk5O+Pj44OjoyN6dO9Hn5hKbm0tkZKTZh9M1OXbsGDt278YNyAPOAO18fACIi40l49QpFCAkNBTAtBRMq1atzM7TpUcPoDKgi4uL58yZPAIDm9O8efPLe+Nnr1FcXIyNjU2NZc3nZm8dHBzo1acPer0eGxsbCgoKOHnyJJ07d+b5559n9+7dREdHs2nTplqv5+HhQb9+/Rg2bBjNmjWrcZ+CggJTAFu13E5BQUGd92FhYUFQUJApiA0NDcXPz++yLj10vevYsSPt27fn0KFDpKWlMXr0aPLz89myZQulpaW89tprzJo1y6wCoa61bM/l4eHB7bffzrJlyygvL2fhwoV1NqZq0aIFlpY26HQZ2Nq6UlBQgLOz8+W50SZOAltxTVV1RK4KXo8cOcJtt91G+/btWbRoUaNqDS+uDClFFkKIxqmqO+wff/5JYmIiqqqybds2VFVFq9VSbjCgQLUPoIuLi8nLy8PDw8P0waVWq6W5nx9pJ0/i4epKWHi46bXSoiKaU9llWaPR1BrUnXv+yqV+0gBfEhKO4Ofnd9k/CI85dIhTWVnYW1vTtWfPGjsjVzEajSiKgo2NDVZWViQcPoxFSQl/njzJyZMncXd3N+2rqiqqqqIoCs2aNWPgwIEMGjQIb29vs3NWVFRw9OhRUyAbHx9Penp6veNu1qyZWSa2VatW8nP2EimKwrhx40xZ219++YXPP/+cV199lZiYGHJzc3nllVf45JNPTHNkz51jW1dgC3DfffexatUqysvLWbFiBffcc4/Z8efy9fXlP/95nYULF+Lu7s6OHTsYNGjQ5bnRJk6iBnHNlOkMHDqSQsd27QE4deoUgwcPxsPDgz///LPeVv2i6TMYDBgMBvmBK4QQjUxpaSk9u3UjIysLOysrHnn8cTp27MiUKVOwsrLijz/+4Ndff8XOzs7s53VFRQW7d+xAZzTiaGtL9169TAFnaFgYbUJCqmUKg9q04VhCAj52dtWCu/Olp6cTGxuLAmg0FhiNGdjbuzQoqK2oqDCtXasoCsXFxRQWFuLp6VljQ6Qzp0/jDWSWl1NcXIyLi4tpSZyq7rkajYaSkhL27dpFmU5nmjestbAg7+x5zv2QvqCggAN796LX63FwcGD9hg106dIFo9HI8ePHzTKxSUlJ9a716+TkZJaJDQkJkSVjrpBzs7YnTpxg+/btvPXWWzz77LMcP36ckydP8vrrr/N///d/2NraXlBg6+bmxh133MFvv/1GRUUFCxYs4Kmnnqp1/+HDh7NhwwYAtm7dKoHtWTLHVlx1u1Jy+GZzEmtjMzGqoKDSv40HO398l5zE3Wzbtq3ekiZxfSgtLcXOzo6ff/6Z0aNHX+vhCCGEOCsrKwtvb2/8gJNA27ZtsbOzw9HREa1WS0BAAG3btsXLy4usrCx27tzJwYMHycjIIC8vDz8gQ1G4uX//y5pJPXToEKWZmZQBHs2a4e7ujpubW53ZVKhcWm7Xtm2U6fX4+vgQGBTEjm3bMKgqnm5udIyIqHbM0SNHSElNxc3JiY5duqDVajly5AhpqamoQMugIIKCgkhNTeXIkSP4ABUuLkR07Up5eTlpaWk4Ojqa5rv6+voSHx9PVno6NoAeiBowgIiICBISEiguLq7zHiwtLWndurUpgA0LCzOVbIur49y5tv7+/nz99ddkZ2czZcoUsrOzycrKwt7enu+++47Q0FDuuusuCgsL8fHx4aeffqrz3Hl5eYwdO5aysjIsLS2ZN28eXl5eNe5rMBhMyxHZ2Njw22+/ybQuJGMrrrKftqfyxvLDaDQKxrMfqagorI/PQu3xKE9PnipB7Q2kaqF5ydgKIUTj4uXlxcyZM/n0o4+wPn2a2NhYtICjgwMR3buTmppKamoqUDnX1MrKiri4ONwBBSi2tyc0IOCyB13Nmzfn0JkzaBQFLy8vXF1dG7T8TGFhIWV6Pd5AXnY2pb6+GM52XM4rLKzxmFatWxMUHIyiKKb7MBqNWAAG/rcOr5ubG1ZaLacMBtqcDUSsra0JDg4mJSWFo0ePApiaA+mBIiqf05kzZ9i7d2+N12/RooUpgA0JCSEwMLDeAF5cWednbTdu3Ej//v159913GT9+PAcPHgQs6NmzNxMmjEWr1aLX68nKyjKVn9fGxcWF4cOHs2DBAnQ6HfPnzycpKZlNm7Ywffo0hg8fbtpXq9XSs2dPVq9eTVlZGXv37iUyMhKj0ciyZctwcHBg0KBBN9yHHpKxFVfNrpQcRn25jbrecAqweGIkXVtKZ74bQVVG4Pfff+fOO++81sMRQghxnj179tC1a1e8gSxABXr37m1aBqYqW2lnZUVZ1YeVlpb07tu31l+q9Xo9ubm5ODk5XVSWSVVV4uPjOXnyJI42NnidnV/r7+9fa5Cr1+s5uHcveQUFBLdujb+/P/GxsRTm59OyVat6S6Cr6HQ6kpKSUBSFoKAgU5mxTqfDYDBgY2Njtn9CQgJnTpxAAdz9/fH392f71q0YAWcHB7r17AmAq6trtZLiqmWMROOyb98+XnrpJeB/WVutVsvs2bPPlg+7YWdnoFevbqSlpREfH4+VlR0PPzyegQMHEhERQYsWLWr891FQUMCYMWMoLS0lPz+fXbt2AX7Y2xdSWJhnOqaoqIjVq1fz5ZdfApiaukVHR3P48GEAvvzySx577LGr8kwaC8nYiqvmm81JaDQKBmPtoa1Go/DN5mQJbG8QVRlbKZ8RQojGqVOnTowbM4ZFv/6KajDg4+lpFrxlpqXRDEivqCAwMBCgzvJYVVXZt2sX+cXF2Fpa0r1XrwvOQiqKwulTpyrnv5aVUXjsGBoqf6a0adOmxmMsLCyI6N7dLGvWNjy8QdcrLi7m6JEjWFlZ0SYkhJCQkGr7WFpa1ngfgYGBVJxd1icwMBArKyt69uqFlZUVd955JxEREYSGhuLp6XnDZdeaqk6dOtWYtZ00aRI//fQTycnJBAZWLv2TlnYK8KOi4iQbNmzgyJEjALi7uxMREUFERASdO3c2NRdzcnLirrvuYv78+ZSVlQEa4CQWFm68/PLLlJeXc/LkSfLOruNc5dSpU5w6dYrc3FzAEUUxEBMTc9WeSWMhga24Ksp0BtOc2roYjCprYk9RpjNgY1nzp65lOgOFZXocbSyq7VPbaxdzjLjypBRZCCEaN61Wy7wff+TmW25hy5YtDBkyhLy8PI4dO0Zqaipefn4cPXoUG0tL/Pz8sLa25ujRo5zJyMC7eXOCgoLMzqeqKvnFxfgAp3Q6ysvLL6q81qdZM46fOIGtpSUVOh3WVM47rM/FBI9HExNRs7M5Cdg7ONQ6ZaqmUlMrKysGDR5M+/btadeuHaGhoWRmZpKfn8+gQYNkyZ0mSFEUxo4da8ra/vzzz/Tr1w+tVsvjjz/O/PnzAZg4cSL+/v58//33WFramK1Nm52dzdq1a1m7di1Quc5zVaA7dOhQPvnkEw4dOgRUflAUHBxca8n6uePq1q0bRuMe/P2b89xzz12J22/UJLAVV0Vhmb7eoLaKUa3c//wg8/ymUxoFBrb15tGoIFSo8bWoVh5sPnrmgo55NCrIlDGWoPfKqlqcXgJbIYRovFavXs2DDz6IFbB8yRI6dumCRqPBxcWFQYMGMXDgQIxGI4WFhWRmZpKamooPkJSUhL+/v1ngqtFoaNWqFempqTT38rroctvWbdrQ8myGOCkpCaPRSHBwcLX9DAaDaQ5weno6paWl+Pv7X1ClkKW1NVWL7NR2XEpKCseOHsXD1ZV77rsPf39/7O3tsbCwID8/n6ysLA4cOMCBAwdMpaJTp07lvffeu7AbF41CbVnbLl26mALbo0eP8t133zF9+nQcHR3Jyclhz5497Nu3j4MHD5p+B4LK909KSgpLly5Fq9We7aLsCFRw6tQpsrKy6dq1M05OTri7u9O8eeXazcXFxabuyHfddVed69/eCCSwFVeFo40FGoUGBbcaBSy1CqcLy00BZU1Np4wqrIvL4u+YTAC05722NjaTv2MyURRQG3jMurgs1sRk8kifQI7nlNQZ9IIEvpdKSpGFEKLxKykpAcAeMBiNQGUTpZycHHJycjAYDKSkpKCqamVAZ23NqfJyHGxsapzz2rJlS1q2bFlte3FxMTEHDmA0GmnTti1ubrVPS1IUxfShaGhoaI37lJWVsWfHDkp1Onx8fDh16hTWQHFBQY1dkGsTEhKCg4MDVlZWtXapTUtJwQvIzM1l+/btppLTKgaDgV3btlFUVoYW8AB27djR4DGIxqW2rG1YWBi2traUlpayZ88ejEYj/v7+QGVzqKCgIEaOHElFRQVxcXHs3buXvXv3kpiYiPHsvy2DwUBWVg6VfbNVwAGjsZTTp08TGBjIjz/+aHrvFxQUsGnTJoxGI9u3b2fixIk3dEm7BLbiqrCx1DKwrTfr4rLqnmOrgIeDNRH/XWsKKLsGuLIzJReg2rHnfn3+a6auy+ddrq5jqr7+OjrZLBA/N+idMTycEG/HerO9on5SiiyEEI3fiBEj+O9//8uaNWsICwvjt19/pbSsjA4RETg4OJCSkkJqcjIaKstxI7p3Jz8/HxcXlwsqtU1LS6OipAQLYN/evXQ6Z+7hxcjJyaFUp6MZkJuTA4AdmAKIhtJqtfWu2ODq7k5GZia2lpY4ODhUe720tJSisrLKecGAVbNm/Gf69Asah2hcasvadurUiW3btpGXl0dSUhKtWrWqduw///zDsWPHGD9+PKNHj2bNmjUsWbKEtLQ0oPI9V7lKVClQjFZriaenJ9nZ2fzxxx/cc889QOWc3Pbt23PgwAFOnjzJ8ePHCQgIuHoPoZGRwn5x1TwSFYSxnpStUYUzReVmAeWus0Ht1Xb+UA1GFRV4/ffDjPxyG+visqoFviO/3MbPO1Ip0xk4XVhOma7++T43MilFFkKIxk+j0fDaa6+xceNGnJycKCwsxLKiguTkZNM+ytk/qqpibW2Nl5fXBf+/3cnJiTIql8LRUjkP8UIVFRWZfra4ublhZ2VFOuDXogVBQUFY+/gQ0rbtBZ+3Pm3Dw+nevTvde/WqVoWkKAq+vr4EBgSQo9Xy/HPPcfzkSfr27XvZxyGunqqsbZWff/4Zg8FAxDnVADXNi12/fj233norTz31FD17RjJ69GhmzZplCmoBevToQmRkJ7777ju2bt1C//79cHJyAuD777+nqKjItG+vXr1Mf9+6detlvcemRjK24oqrKtdt7+fM7R2aseJgep37nx9QNtb1qGrL9r7++2Gm/X4YleqZXCldNielyEII0bT07duXDz74gArA92wznJYtW6KqKqqqmjoj1+f06dOUl5fj6+trKlf29fVFp9Nx7MgRNBpNg5fgqZKcnMyxY8fQaCzp1i0CR0dHekZFYTAYGtSgSlVVEuLjKczNxT8oCB8fnxr3q1rXVqvVkpmZSXJiIs1atGDIrbdib2+Pra0ttra22NnZkZyczOHDhxk3bhxLly6tdy1T0bTUlLXt2rWr6fU9e/YwatQo09eqqhIdHX32Kz9OnDiJr+//3meBgYEMGzaMW265xbSkFsBbb73FtGnTgMrfnd566y1mzpwJQGRkJHPnzgUqA9v777//St1uoyeBrbhizm/2dO5c1+td1W2eO6e3ra8j8acKpXT5HFKKLIQQTcvtt99OTEwMeXl5tGnThtLSUsrKyigrK6O0tNT09bl/r/pTVFREXl4ehw4d4sCBAwAUFhYSFhZmOn+LFi1o3rw5wAV3DD59OgdohtGYTl5eHo6Ojmg0mgafJy8vj7STJ2kGHImPrzWwrQrijUYjsQcP4qbXExMbi7WNjdm8YIPBwKYNG7BVVVatXEl8QgIBAQEcPXqU5s2b4+joeEH3JxofRVEYM2YMU6dOBWD+/Pl8+eWXeHt7k5mZyaFDhygvL0ev17NmzRpWrFhBamoqzZr5UVJSRps2lcsC9evXjzvvvJPw8PAaP/jo2bMnDz30EN999x1QuZbun3/+ye23346vry9BQUEkJSURHx9Pdnb2JZXwN2US2IoroqZmTzdKUHu+qkxubEahadv5c3bH9Lgx50NIKbIQQjQ9YWFh6PV6CgsL0ev1FBcXU1BQQEFBAWfOnOHkyZNkZWWRk5NDYWEhZWVl6PV60/HHjx8HwBsoLy2tdv6LXQKnRQs/YmJisbZ2wNPTs8Z96sqY2tjYYKHRkG404mZnV+M+RqMRvV6PVqvl2LFjoCikAxaKYpZhA8jPz0dVVXSAajTy8MMPc+zoUU6mp+Pm5MStd9zBww8/zM0333xR9ysah86dOxMeHs7hw4c5fvw40dHRRERE8Ndff6HT6ZgxYwYHDhw4uy5t5fu7bdswNBqNab5369atad++fZ3Xuf/++9m6dSvx8fEAfPrpp7Ro0YIOHToQGRlJUlISqqqyZcsWhg0bdmVvupFSVPVGDTfE5VZVZpuQWcDYb3c22hLixkYBFk+MJNzP+YYrU168eDGjRo0iLy8PZ2fnaz0cIYQQ51BVlalTp/Ld11/TOjSUNm3aUFhYSGlpqSlQPX36NKdPn8bHx6fWLsbl5eUUFRXh4uKCVqtFr9eTEBdHRXk5rUNDqzVbKioqQqvVVgsUGzpmqL5erU6n48CePRQUF9MmJMSUFT5fUVERhYWFeHp6YmFhnv/R6/Xs27WL/OJiXF1dyc3NxRXQOzgQ3r59taWLCgoK2LlzJxrAxtqaXn36sHnDBpz0erKp/PmvsbQkOSWFZs2aXfC9isZj7969pqytv78/Xbp04ffff69x3w4dOjBs2DBcXFx48cUXUVUVS0tL5syZU2O38HPl5eVx//33m/792dnZMWvWLCoqKnjggQfYv/8glpbWbN26ic6dO1/OW2wSJLAVl+z8kmNxYao6QVc1zbqRypTnz5/PmDFjKCkpuahfYIQQQlw5hw4donOHDhiobObUtUcPs/LZiooKNm/ahC1QrtHQp1+/asv7VFRUsGvbNkp1OtxdXOh8zvzDmhw/fpzExEQ0ikLniAhcz87jzcjI4PTp0/j5+V1UmeWpU6c4fPgwvkCRjQ09oqIu+Bw5OTns3bsXbyBHUdCpKlrAy8eHduHhtV63oKCA5s2bY2dnR1JSEklJSWgAZyCXynV4Gzo3WTROqqry9NNP8+uvC8nJySUoKMAsSLWxsWHgwIHccccdZt/rr776isWLFwOVWdtPP/202gcq55s/fz7z5s0zfe3p6ckHH3xA165dycgoBsp56qlH+eyzzy7nLTYJ0hVZXJDzu/3+tD2VUed1CG4smkprBqMKWYXltXZYvp7JHFshhGi8ysrKMAA+gIHK+bDVKAo1LZ6j0WhMjQFLdTq8gdyzpbnnqizd3E5CQgKqqpKTnY0nlYFCamoqu3btJSkpiZiYGHRZWRw6u87thXJycsJKqyUDcPHwqBxXaSk7t25l88aN5JxdDqgmVdlfR0dHHG1tyQS8fH1p27YtLYODCalhHV2j0Ujs4cOkHjuGs7MzdmdLm4OCgrj55puxtrIiF7DQai+69Fo0Hoqi0LlzZ86cycJodCMpKcXs9Tlz5jBlypRqH2BMmDDBtJTUkSNH+PXXX+u91t13321WHXH69GkmTZp0dlshoKu1IuF6J3NsRYOcn5Wtb33ZxqDxjajhqp7ntN8P4+NoQ1Rrj+uyPLm8vBytVlvtE34hhBDXXkREBO1CQ4mJj8fG0pJOnTrh6emJm5sbXl5e+Pj4cPfddxMdHU23bt3w9PTk2LFjpKSkcObMGcrLy7GwsMDHy4vc7GyCAgMxGo0YjUYsLS0xGo0kJiYCvpw4cQI/Pz/8W7TgcF4edhYWnDlzBvAlPz8JjaJQpKpoNZqL6ipsZ2dHz969KSsrM2WdMzIyKCwpwQM4nppaayl1VTBuaWlJt8hIrKys8PT0RFVVsrOz0VUuOGomNzeX9FOn8AWSEhPx8/MzlY9qtVoMBgM+wCmDgezs7Bt67dHrxe23346trSOlpZm4uHgSERFhWu4nPj4ef3//asdYWVnx0ksvMWXKFIxGI/Pnz6dnz560bt261uvY2Ngwfvx4Pv74Y9O24uJifH19cXZ2RqPRVPsA6UYhga2oV02NoK7l+rINpVGqLx3U1KjAIz/tvm7LkysqKiRbK4QQjZRWq+VwXBx6vd5UHllWVsb333/P4cOHOXr0KFlZWRQWFrJ27Vqg+hxXjUZDeIcOQOX81a3R0VTo9bRt1w4fHx/s7JwoKcnAwsKGvLw88vLy6NCpE87OzkRHb0Wny0CrtSY8PJS8vDx8fHwuerkcKysrs585Li4uAJwGWp0tea6PRqNBr9eTkZFhuk9vb2/8/f3x8/PDaDRy8uRJ4uLiOLh/PxmqyoBevVi5ciV5eXmmOcmrunVjzerVTBox4oacC3k98vT05Mcfv+O9997D2dnZrLJg7969DBw4sMbjQkJCuP/++5k/fz4Gg4GZM2cye/bsOn8/Gjx4ML/99hsnTpww2+7g4IDRaGTHjh1m/25vFDLHVtRpV0oOo77cdsWzn6pqPPuDqvYfVlqNcgGZYbXOczVFWo2C0aheV12UP/jgA95++21ycxv3hyRCCCEqjbrnHpYsWYIRsNRo6B4ZaeqRUFpayv7duynX6WgbHo6Xl5fZsSkpKRw9ehRvQO/qSucuXdDpdOTk5GBlZcWePXtwBMq1WvrcdBOlpaWcOXMGd3f3ao2ZLpfi4mL0ev1la2CoKAoeHh6EhobSrFkzLC0tufvuu6s1yBLXp4qKCkaPHk1eXh5arRYLCwvKy8txdXVl4cKFtX4oo9PpmDx5cmWnbeC+++7j4YcfrvNav/76q2n5n5q8//77REREXPzNNEFS1C9qVDWX9stNx9BornSAWBWE1n2dqqC2vuGoRkO957piVBWMhityaoNRRaWyPHnr0TNmc52bqvLycsnYCiFEE3L44EEsqJx3qzMaKS4upqKigoqKCnJyciguL8fdaOTkOZkknU5HcXEx7u7uWGm1lXNUz64Ra2lpibe3NzY2NihABf9b7sfOzo4WLVpcVFBrMBjIzc2tsUz4XPb29pe1K7+qqpw+fZro6GgWLlzIzz//zPjx43nppZdYtmwZ6enpN2yZ6I3AysqKoUOHApXvQY+z87lzc3NJTk6u9ThLS0umTp1qyrAuWrSI2NjYWvfPyMhgyZIldY5l27ZtFzr8Jk8ytsLMtehwrFXAcDmvVfWWblCpUt2Z3YsrZ/7fOTUK+LvYkJJTetGlU+dT+N/84aZeovyf//yH7777rlopjRBCiMbpr7/+4uEJE8jNyaFFQAA3DxjAd998g85gIDAwkNTkZIxAQEAArVu3pri4mD07d1JhMBAUFESLFi0wGo01fqh5+vRpcnJyaNasmVn35Yuxb9cusvPzsbe2pltkZKMoyTx+/DhHExNxdXHhkYkT6dSpE2FhYbRp00ZWBriOnD59mjFjxmA0GrG1taX07FrNjz32GCNHjqzz2HOzsH5+fnzxxRfY2NiY7VNcXMzTTz9Naqp5g1EHBweKiorIyckhNTkZT29vYmJibqjmZDfOnYp6XasOxwaV/wWj9dAo8J872gJVmdnqnNJ34VZ6Am09qV3NuRFiLYwqdAtwqfdc5hTT/m/c3hZNUeZlzeKeO+Sm3kG5oqLC1DVTCCFE46aqKm3btuWTzz5j0pQptAwOZs2aNRgNBtypnEPr6+cHQNrx4+Tn55OXl0eFwYAfkJOZiYWFRa2VOp6enoSEhJiCWqPRSFpaWp0di2tiNBrJzs/HGyguLzcFFpdCVVUKCwtN3fyrZGdnc+LECVNjKIDU1FR2bN7MkSNHSE9P59SpU6iqysmUFLyA7Lw8/vrrL7799lteeOEFhg8fzsSJE/nkk09YvXo1qampF9X5WTQOnp6e9O7dG8Dsvbdnz556jx01ahShZ7tsnzx5slqpscFgYMaMGaagtnnz5nQ9u4RWUVERnTp1Iu7QISxyc4mPj2fRokWX5Z6aimv/8ZW4osp0BgrL9DjaWNTaVbdMZyD6yGmmLT8MXKMOx4qCatCjaGt/S2o1CgPDvHmwVyBpOSV8szm5MiA+JxOqUaCgWTdcTu3BaNeizkuqKnhkH+CMe0cUBdRzM7fnZH13p+Zd8Bzjqmf45opYVKMjivbKfYZ0bgflIHd7Wns71vn9bkykFFkIIRq/zz77jG+//RYvL69qZbTe3t5knDhBnsFA/06dSDl6lGZAuqpSUFCAj48Px5OTSS8rI7RF3T+Xz7dzxw6KiosBaNeuHb6+vmavl5aWkp+fj5ubm9nPEo1GQ8uWLUk7fhwfD4/LMr81IT6etJMnsbGwoGvPntjY2JCbm8u+ffsAyMvJoX3HjhgMBo4cOYIvmGXUmjVrRrMWLThy9Cg2lpY4OTmZXjMajab1bVeuXAlUlmGHhoYSFhZGWFgYoaGhl7VkWlxZw4cPJzo6GgALCwv0ej2HDh2qt2mmVqvlpZde4vHHH6eiooJly5bRu3dvOnbsiKqqzJ492xQgOzo68uSTTzJu3EMkJSURHh7K0aNHcXFxIeP0aRSos/z5eiSlyNepmpbnOb9k9UqWHVcGqVoUlAYFhYoCRqNaZ7muAiyeGIkK9Te0UlUe7RvEN9HJaM5rOnVuE6ZPJ48koMvNnHQKJV3xAEVjOv7cgFlRKjepRiPKBZR0KKjmAfMV1BRLlJ966ik2b97M/v37r/VQhBBC1GD//v107twZd6DYwoKom24yvebn50ePHj3o0qULbdu2xcHBgXnz5vH0k0+i1Wpp37kzVlZWqKqKqqoNLok0Go0cO3aM1NRU3IE8KteNbdeunWkfnU7Hji1bKNPrcbS1pXuvXpc85efo0aOcSE3Fw92ddh06mI1326ZNOFZUcAro0KEDXl5eZGRkEBMTgx9Q4uhIlx49UFWVnVu3UlhailZRsFNVKgCfgACioqJo2bIlt99+Oz4+PiQkJBAXF0dcXBwpKSn1ZmmbNWtmCnLDwsIICgrC0tLyku5ZXBmqqjJx4sRqgWVDGzotXbqUuXPnAuDj48OXX37J33//zZw5c4DKYPn9999n3rx5Z5f98cLNzUBERGf69u3Ljz/+iLOz89kPQzTcc89dPPHEE5f7Nhsdydheh2pbnmddXBZrYjKZMTwcVaXaPpeTNTqyl73Nrc99xNaU/DqvUZWJ3bToK4rb3oGFRjGbc6ugYlThP0ND6drSjYk/764WrJ5PVY2cyCll8cRIvtmczF+H0lE0GjQK9A/x4t6uzYlq7ckrGRkM9rBCd2g5WksPTrQacfaiynnn43/bzwt666JyYftfippKlKu+3421i7KUIgshRONmb2+PVqMhz2jEzsKCzp0706NHD3r06EHz5s2BykB0z549LFu2jF27dtG9Vy+zcyiKUmPQqdfriTl0iPLSUlqFhprWkT19+jSpqalYA/mAhVZLYGCg2bEVFRWU6fX4Ahmlpahq7R+O5+fnU1BQgLe3tylbVl5ezpEjR9BqtbRq1YqjiYmczMjAG8g8c4aAoiKzrKpfy5YcSUzExcHBNE5vb2/ycnMpKymh1dl1RxVFoXO3buTk5GBra0tKUhJ2Gg0BAQFkZmaSmZnJjh07KC0txWg0Mn36dJ555hlKS0tJTEwkLi6O+Ph44uLiqpVgp6enk56ezvr164HKhkOtW7c2ZXXDwsLw9PS8bD09xMVTFIU777yTTz75xGz7nj17GhTYDh8+nC1btnDw4EFOnTrFjBkzTGviAjz77LN0MH34ogBZuLm1AiqbRt1yyy3s3r2bf/75F/Dgn3/WMXToUFpcYNVEUyMZ2+vM1Vqepz4KoEvZg0VARL1BXVUmdu2vX/LOomj8hzxGCZWfQKqqiquNwrHls1n0zmRuHjCItv9Z3aBgXKNA7PQh2FhqsbC2xdK/A8Off58dJ4pNWezixG083DuQP7+fhe2gpzlj7Vt3wGzQ09ZF5eMH+zPk0+gGP4/6mlBVvd6Aab8XrOr5NsbM7fjx40lKSjKV6wghhGh81q5dy7p16xg9ejQdzq5Jq6oq+/btIy4ujvXr19fbBNBgMBB7+DDFBQUEtmmDt7c3aWlpxMfHV2Y8nZzo0r07rq6uJCYmcuDAAbSAu4cHHTp1qnY+VVU5euQIOVlZ+LZoUesv7CUlJezYtg2DquJ6NqsKEBcXR97Jk5QDfgEBpKamYgOUAXZWVnTv1ataw6lzg+fy8nIsLCzQai9s2k9ubi6xhw5RWlGBK1Bha0t+YWG181R1V67K6MbFxXHkyJF6uzy7ubmZZXWlMdW1U1paygMPPEBRUZFpW1BQEF9++WWDjs/IyOCxxx4jJSWFkycz8PHxws/Pj/vvv5+HHnoIgGeeeYYdO3ag0+kYO3Ysf/75J/n5+djY2BAdvZmqhqYajQWxsYcICQm5AnfaeEjG9jrzzeakerOZVyJ4Op8KWLaMqLMMVzUa0Gi0zBgeTteWbvwd1Bu3we0pNhpNFcGKopBfruI+eBKz/z5I16j+Dc4wG1UoLNNjY6nFof0AnAdMZOfZoLbqdZugbvySpaXIoTWOlt6o9Zxc0VqQUAQ+zjYN7pisNGC/qtevxPdFo1H4KjqpUQa29c01EUIIce0NHDiQgQMHmm2b+tJL/N8HH2BtYUHXHj1qDZ4URUFVVbKzs8k8fRpfIDkxEW9vb9Pc15NAc0dHgoKCSEpKwsPDg3bt2lFaWoq/v3+t523dpg20aVPn2CsqKjCoKs2AnHMa+VhYWFAKGAFra2vcnJ3Jyc/HztqaiG7dauyiXBXUHj16lNSUFCwUhfadO5syuOfeb21Sk5Oxr6igDCgE7BSF3bt3ExERYVZWrCgKXl5eeHl50a9fP6Cy/DopKcksq5uenm52/pycHLZs2cKWLVuA/803PjfY9ff3v6E65V4rtra2DB482GxZnqSkJHJzc3F1da33eF9fX8aOHcu9994HeJKbG8fQoUOZMGECAGVlZSQkJODg4ECzZs148MEH+emnn85rUtUcK6scOnUKJz09XQJb0XSU6QwNmi97scGTtp6Aufp16sjUqiolidt5ekh7xvQIqJzvu7+w8oeGct6nliigwCGbdiRmFjQ8oAQcbSzYlZKD84CJKIpSbVmhqmZV9n0fbPBcWKMKOoPKwLberIvLqvOZaBUY2NYHT8MZfozToTmvSVXVM62qcK5b3UsT1cZgVFkTm8kjP+7i8b7BjSrAlVJkIYRoemJjY5n/ww+VZcB6PXl5eWaBbUVFBTEHDlBWVkZIu3a4ublVljQrChmqivfZEl8XFxe6d++OjY0N4eHhJCYmApVB3fmNoi6Ws7MzAQEBFOTmEnJOOXNQUBBWVlZoNBqaN29OcHAw2dnZleOsJwubkZaGCrioKkcTE+nes6fptaqgVqvVYjCYr4hw6tQpyioqqMrfuXt7ExgYyOuvv469vT09e/YkKiqKrl27VlviBSpLj0NCQsyCk/z8fFOQWxXwlpSUmF6vqTGVvb09ISEh0pjqKhg2bBhLly41+7Bj79693HLLLUBlefnzzz+Pvb09H330kVn5e9XxDg5OFBVlYWVlywsvvGD6UCIuLs7UjbtDhw44OTmd7ShuA2ixsVHRagsJCQnFycmJmJgYbr755qty39eKBLbXkcIy/RVdpudydUvWahT6tXLnpw//j0+3uPLaY/c1KNOM0cDsNYcaFFCqBj0RPpbYWGr5ZnNS5XI7dXRcrvf1c2iUyoD5kagg/o45RV3BplGFnoEuzPhqLYpvO1Q0plImBbgl1Iu1sZkNWu3oUqfq/hOfxfq4rEY151a6IgshRNOycOFC7rvvPtPX9tbWuLu7/+9re3sKCwvJzs/HB0hNSjKVx0LlGpzn7j9ixAhOnjxJfHy8aZuqqqSkpFBaWkpQUFCNQV5DKYpC67PzX8+l1WoJCPjfz0KdTkfz5s0pKCio95yuHh6cOnWK04DvOevtnputNRgMpnLiwsJC3NzcOHz4MA6Ak709Y8aP5/jx45SVlQGVz2X9+vWsX78eGxsbunXrRlRUFD169MDe3r7WsTg7O5vmPENlIHvixAmzrO75jamKi4vZu3ev2ZxNaUx1ZTRr1ozu3buzY8cO07Y9e/aYAtt7772XLVsOAGX4+/vzn//8x+x4GxsbduzYyh9//MHgwYPx9vY2vXbw4EHT36umCDz77LPs3DkWVVXp2LEdHh4epvdYTEzMlbrNRkMC2+uIo41Fg7OZF0JRQDVWdjS8kI7AtTEYVTYcyebBRx7j6y/m8MXX37I2xbfecStaC7adKOGnh9uzJiaz7p01Wro5Fpqy2HUtI1R1bqh/LmxVBhYgwM0O65gVlLe9A9VoMLtGVZn17R2a8eafcajeYShn66sVRTF1Zo5o4cqa2HrupWqMl9gMouq+pv1+mFBvx0aRua2oqMDOzu5aD0MIIUQDrVmzBgvAGigGvJo1w8rKCq1Wy/HjxyktLcXV1RUFOAWE+foSfHa9W83ZJkoajQYLCwuefvpp/vzzTxISEsyucerUKY4dO4YTkFBWRscGNNu5UNbW1pSXl5ttKywsxNnZmfz8/DqPDQ8Px93dne7duzNy5Eh++OEHsrOzTUGtpaUlOp2O7OxsDh48iBWAwYACGBQFVycnZs+eTVlZGbt372bz5s1s27bNlGktKysjOjqa6OhoLC0tiYiIICoqil69elXL6J2v6hkHBAQwZMgQAGlMdY3deeed1QJbVVXJzMzkxIkTqGoRoFbL8Fdp27Ytbdu2rbb90KFDpr937NgRgG7dutGrV3fT9i5dupCenk5ycjJJSUmUlpZe13OuJbC9jthYahuUzbwQCmdLZGvpaHgu1WhA0TSsiYJRhWlvvcMP333DtLfexmHs5w06TkUhxNuJGcPDmfb7YThvOR3N2ZLewn+/wca73wVnsevb16BCTnG5qYGVGnY7amYizs7OFNv5VG4zGmmpzeeRYX2YtjwGUKoF1lXfn/dXx9dwlStLo1GYveEoc0d3ueZr3UopshBCNC2PPfYYP373nWlak729Pa+88grvvfMOZ+LjOa2qlXMLhwyhc+fOxMbGsnr1ak6mplKVM+zVqxcvv/wyn376KceOHat2japSywrA5grNBS0vL8fR0ZHCwkLTNlVVsbS0xMHBwazhT018fX05ceIEq1ev5vPPP+f3339nyZIl6PV6U4Onqnm6ThoN/v7+TP/vf9m1axePPPIIUJmNi4qKIioqCp1Ox759+9i8eTNbt241Bdc6nY4dO3awY8cOPv74Yzp27GgKcj08PBp0r7a2tnTs2NEU/DSkMZVOpyM2NpbY2FjTNmlMdXG6dOmCn58fJ0+eBCrnQScnJ/Ptt98SFBSEtbU1Wq2Wl19+ucHnrKioIC4uDqhcDsjLywug2nuiZ8+eJCQkkJycjNFoJC4urkFdmZsqCWyvM49EBdWfzWwQlTE9AsgsKOOfhNMNCpTbuajE5DVsnVeNAp4uDjzxxBN8Onsujg1c71U1GqkoLmBMjwBCvR15ffFO4rL1pqDbqEL3lq7sUgvJzMy8oCy2RoFb3PJYc8YZzs/AGvSVQbuisOd4nul8ikYDnsEUai148/a2bPn1M5YsmM8fRxN5acURFNWIqtT+PDQKGIpzwcYJ6vhQ4HI2/DIYVf5NOE3YG6sZ1O7arnUrpchCCNG09OjRg41btvDkk08SHBzM4sWLURSFr774gqoc4M0330xERAQLFy5EVVWMRiNaKn+OBQYGMnPmTKZNm0ZKSkqN1/Dy8iIkJITS0lKzcuH65OXlcerUKTw8PBoU9NVUanvmzBkiIyPZv38/pec0mwIoKCggNzcXT09PU7VRbGwsDz30EB9++CFDhgxhzpw57Nq1CwAnJydcXV0xAM88/zwjRoxg7NixtY6le/fudO/enaeffprDhw8THR3N5s2byc7OBirLjPft28e+ffv4/PPPCQsLMwXGFzInWRpTXV0ajYZhw4aZ1qUFWLx4MTt37kSr1dKiRQtatWp1QRVsCQkJVFRUANC+fXvTdktLS7P53d27d0er1fLnn38Cle/X6zmwleV+rjO7UnL4zx+Hic0orH/n+pydC9qQN0jV0jp9X/6eTK1nnaW/WgX6h3rzzoj2WCkGvD3ccLtzKratetTTzVmlKH4rn9zTjtGjR5vW6zUa9GbX02oUDAYjIYX7+Hv2NCb+vJvVh9LrziarRoaEN0PZ8g1/7Uqg2L8njmG9KwNY1Ujp8cPYBnSo9zmcWfAqrz56L8+9OJWwN1Y36NmpqvFsYH71y3uqSqKv1bzbiG496NStJ3NmfXTNs8dCCCEuXl5eHnPnzsXT05Ndu3aRlJRkek2v12Nra0tYWBiTJ09m+vTppKWlXfA1Tp06xcnjx3Hz9MTBwYHi4mKanS2FNhqNRG/YgIXRSLmi0DsqqkEVQR07duTAgQPVtj/44IPMnz/fFDxUVFSwbfNmdEYjlopCzxrO/+ijj3LPPfewY8cO5s6dy6FDh9i/fz8egE9oKIfOZtguhNFoJD4+ni1bthAdHU1GRkaN+7Vq1coU5F7IhwF1ycvLIyEhodbGVDU5vzFVWFhYveXTN4KioiLuu+8+U/m7hYWFqfETVJYrP/XUUw0+3/z585k3bx4Azz//vKnsPDMzkzFjxpj2W7VqFWfOnGHcuHEAdO3alXffffdSb6fRksD2OlIV6NXbhKmBVIMB5QLWZ9v16gCOnMrjgW931d3lSFVRNArq2bVkfY1nOLhmIe6DJ1FncKeqOO/6lrZeNjz37uz61+tVVX57vBcqcM8XW+sppVb5bWIvJo0aQkVFBSdOnCAtI5OicgNhrVpi2e8x7FrXE3irRnQpe4j/5gWKjVp6vPtPXaNrVK72Wre7UnL4ZnMSfx/OAEWDRoGBba9t9lgIIcSl2blzJ9OnTzcFgwCurq58+OGH+Pv7c+rUKV588UVOnTp1wedWVZUN//yDl6pybmjn6eZGx4gIU2BrZTRSAkT16dOgwDY4OJj09PRq2VlLS0teeOEFZs6cicFgoKSkhK1btwKV5Y4ubm50qiHz1aFDB9566y0sLS155513mD59OlogMjKS6LPHXyxVVU1rv2/ZsqXWjHeLFi2IioqiT58+BAcHX7Z5sQ1pTFUTaUxVadasWabM6flefvllU0Ophpg6daqp+dePP/5oytj/8ccffPbZZ6b9fvrpJ7y9vbnvvvvIycnBzs6OZcuWXbdZdSlFvk7sSsnhjeWHUbl83YsVrdZsMfK6VHUK7tXam+f7+fHBxpPVy3mNxv91DFT/Vzp8SuuJ26BJlCduxaZNb2qaN2tUVXLWzOHum8P47rvvcLz1WP0BvGrkm83JfDGmC+VbfsC69/hqy+0oqhEjCrd6FeHnbMXBmHgCW/gRGRmJrZUFp0+lk5OTQ4ugrvU+V1XRYBnYFQtrW5Z+/z2q0btBZdkNfcYNdhHtk1Xg/9YksPCxyMs3jlqc+wFM1YLFRhXWxWWxJiazUXVtFkIIUb+SkhLee+89tm3bZra9b9++vPbaa2g0GjZs2MB7771Xa4OchrC1tiajrAyNomBUVbyB8rNBtEajoXtkJMnJyQR7eDS4f8OxY8e47777WLBgAYCpqY+lpSW//PILU6dO5d1338XOzg5rjQZXo5FTgOGcYM5oNHLq1CksLCw4cOAAo0ePZubMmbz55pt06NCBgwcPMnHixIu+7yqKohAcHExwcDATJkzgxIkTbN68mejoaI4cOWLa7/jx4/zyyy/88ssv+Pj4mDK5YWFhlxTQXK7GVFZWVrRq1eqGa0x15513mgW253bRDg0NbfB59Hq9ae6zp6cnPj4+pte2b99utm9WVhY+Pj60bduWzZs3U1JSQmpqKoHnLH11PZHA9jrRoOVyLoKiKJXzS+soLVZUI4Pa+ZpKSSff2hklP4PpC7di1yYSRaOpDCU1leW25/+Pq3IdVwWr1r3oZXUCvUcw29PKUDQaVKMRm9wjzJ58N4M/XIfSvy35RSWsjcuqv8xXo2VN7CnKdAaMCRvJTI6h10PTOFbuYDq3B/mcSEvjb6U9q2duxPup+eQl7yYovHLh7Dlz5qBY2ZkCsPqoKKRlnuGN117B/4G3yLHxq3PuLBcU1Na9jq2pe3Wde9VuR3IO87YmM6HXlfufXV0fwFR93Zi6NgshhKjb8uXLuf/eeyktLycwMJDg4GAsLS15+eWX6du3L1BZDnn70KGoQEhICP7+/hd8HUVR6NS1K1lZWbi4uJCZmUlxURFtgoNN+/j6+pKdnU1ubi5OTk4NXibo6NGjtG3bltjYWI4ePUpqaipQGUB0/X/2zjs+irJrw9fMJpuekEISCC10Qm8J3UYXXkEBERBR+eigIlgAKaIgiCCKoAgWihRBQXpTkFCS0AkESIAQkkA66W135vtjs0OWhOwGQpO5fi+vye7MM8/Mbnbnfs4592nRgnfffZcFCxbg5eND1PXr2Gu1/LlpE+vXr+fixYuEHD1KelYWIlDV15dbSUk0rl+fFq1asWXLFl5++eVSn68lVK5cmddee43XXnuNuLg4AgMDCQwM5Ny5c4pgunnzJhs2bGDDhg24ubnRtm1b2rdvT6NGjcz267WE4oyp4uPjTXrr3mlMlZeX91QaU1WqVElxzIbbwtbZ2ZmKFStaPM6lS5eUFj6NGjVS7iOzs7M5deqUybYJCQkA1K9fn8DAQMDQ9kcVtiqPLTn5enafiyszc6HCCAJm+7tKCOSd2UlOflPSc3Q42Voxpn93rp88wJfz+1CzXgPajV/MgfAkMxFWPX+fj+HKijdw9fBi6sxZ/Lrsey5dukDrb0bRqVMngoKC8PSpavG5SrKhv68oiuTGhPGM5hKHF31FeOR1/LoNQug4HFsfJ2U8QRTRVmvGX9lW+AddY+PGjYhSXqkMqBbMnU1OTg4tndLZqRNLFpmlWp0seVtJut0f916ZvuU8VqLAoFbV7mOUu2PJAowoCiwLvKoKWxUVFZXHnPPnz/NK797oZRk7ICE2lueee46vvvqKcuXKKdsFBgaiAZyAlJSUUgnbzMxMIiMjcXBwoGrVqlSpUgWg2LrN5ORkLly4gB2QlZZG05YtLTrGsWPHmDFjBtOmTSM9PZ3yQDKGSPTGjRuZN28ew4cP5/vvv6dylSpotVqys7NZuHAhM2bMYN++fXgBcRhqHPVZWdgAhwID+fjjj01Mgx4UXl5evPLKK7zyyiskJSVx+PBhAgMDOXXqlJIqnJyczJYtW9iyZQvOzs60adOGdu3a0bRp0zIzchQEAS8vL7y8vMrMmMooeJ90Y6o//viD/Px8oqKiiIi4gotLOZo0aUi9evVKFa0urn8twIkTJ0wWEMAQsQVM2gWdO3eOHj163OtpPNaowvYJJyQymcX/RJRa1Go1Avl6ucT9BGQ61vXmmTrlmbIptEg7H1EwRNnEi/+wRbDln6k7kBGUesm3hk9k//79hJw4Rd6FBLMiThCt0Fb3Z+asL2jepCFnggOZ9OFEhgwZwuzZs+nbty9vvfUWfV59jWBZsiiKakyRNn4QZmdn42BrzcmIaNw6Dje0MbpDuBt//2RTKDdytDTyq0sLC9ooaUQB/4q2fD/uWz744AO+/moars+9hbZRt6LnLkvICAUP31/qjYCMJINwDynIxTFl8zkQhDJPBzb2FDbbUkmSlUi7aiiloqKi8vgSGRmJXpaphKFn7fMdO7J8+fIi27344ot8t3AhOfn51CgQpkYKp2MWx4XQUOT0dG5gMCYqX778Xbc1ijMrKHHMwty6dYusrCz27dtHnz59OLh/PzoM38zGFM8pU6awdu1aMjMzWbVqFTdu3OC1Pn3o/r//sWLlSnZs3crxU6dwc3HBr2FDAgMDMXbIvVNoPAzc3d3p2bMnPXv2JC0tjSNHjhAYGMjx48eV+aSlpbFz50527tyJvb09AQEBtG/fnhYtWpR5pNTa2po6depQp04d5TFzxlSSJHHlyhWuXLnCtm3bAMPrX7duXSWq+yQZU928eZMVK1YAcPnyNSTJg5SUm9y6datUachwd2F7Zxoy3I7Y1qpVS4kWnzt37l5O4YlAFbZPMCa1iqVEJ5UsasGQVrvn/E0EQeazl+qz9VgER65nI4gGs5/Oft6I2Sls4zkcCoQamNZLfvj5T1x6vRhhdxcEUWThkqUMH/waGzduZM2aNYwYPY4ffl3DyeDDWFlZ4WRvS+alozjXbYO+xACwjjbVXbC11pgKWwcHVgYbaoBLikYLyDi1eIk3nvOmtQVtlCRJ5sqOZdSqVYuQkBAcm3bHulG3os7SsqGGuLZ0neqNWrLn3E2kUopbpf2PLJN56Sj2tVtBGa5iTnkA6cBp2fkW9xQ2RtpVYauioqLy+NK5c2eGvv02wUeOMGnMGEaOHFlkm8TERL788kv827QxeTwjI4OwM2eQBYEGjRvftdWJKIqkF/r52rVrJNy4gWfFikr01kitWrW4cuUKmZmZFjkD37p1i+PHjiEDS777jr/37ydPp6MCEAtKFC0nJ4cPP/yQb775hoyMDN4ZOxZvWea3NWt4f8IEgo8fJyEhAQ8PD0RR5LnnniPw4EH8/PxYsGCB2Xk8SJydnenSpQtdunQhKyuL4OBgAgMDCQoKUtJZs7Ky+Oeff/jnn3+wsbGhRYsWtGvXjlatWuHo6PhA5lWuXDkCAgIICAgALDOmyszM5Pjx4xw/flx5zGhMVbNmTeLj43n22WdNopOPA7Is8+233yqOyPXr+3HmzEmsrGxxdHSkXr16Fo+l1+sJDQ0FDOnbPj4+gOH6BQUFAYYFHqOBm1HYGhcXQkNDuXHjBsnJybi5/fcy41Rh+4Ryv2ZRhXe5M83WxMxIENh97iZ7zsczs1cDPnomgxd7vYKtRqD7rxt4569cw7aCqQAxzmnOvkjmfL+Czw+nW2SkJCCTnZrM5cuXiZMcGbLsEF5jVoEg0mZBEHWHfsXJywfIvnQMhzqtKTHaKWp4vqBkwShss7KysHdy4djNvBLrhsGQYm1fuzWvDmiLl4cb03vUZeqWsCKmWBREsl/yyWHhF2uYOHEi36zZhtfAd4tvl1SQLhyhqULz3Hj09xBoXf96XUYOG8q5UydYsGgxX1wsW8MFUYClB6+UibDV6XRs3LiRuV8tQH5ussV9jp1s1Y8nFRUVlccZKysrfly27K7Pp6SkMGLECDIzM4s8d/36dbKyssgHQkND8ff3L3aMeg0bcv36dZydnXF0dOTkyZP4YKgzrFChgom7rp2dnYnYNWfOmJ2djQxUBtIzM9m/fz9Lf/yRZd9/j2N6ukmN7sWLF1m9ejUjR45k3hdfEBkdjaO9PRUqVEAURby8vJRt9+/ff9djPkrs7e159tlnefbZZ8nNzeX48eMEBgZy5MgRMjIyAEN/eWNKsJWVFU2bNqVdu3a0adPGJL28rDFnTGX8l5KSYrKf0ZhqwYKFxMffRKOxZt++PUoa9IMkISGBiRMn4ujoyOeff46Li0ux2/37778EBwcD4OHhwYYNG3jzzTdJSkrCxsamVBHbiIgIxcG7cH3tpUuXlGvTrFkzjh07hk6nU1KRwVBnaxTF586do3379qU/6cecJzdR/SnHWKt4v4gClHe0MZGHRb4EBBEZQxRP51SBwL07EKR8xnz7B+amIIoCJ9KdqK5NR9brStxWIwp0qe+Ni6M9/8bKeA2cw8Ert5SUYxnIcPElqekQard8Fq+ofxAK9jMZRzDI3eRdi3HJTyqYx+2Irb2Lm4kzckkIooho4wBAzIF1xK36gOyIEGVvWZKo55zPr4ObsOGLd+jWrRvLly/HrU0fBLlk+3tBgF93HsEn9mCp4rUC0KPjM8RHXSbwwN8MGdjf7OtQWiQZdp+PY+iKEI5FJpvfoRgyMzNZtGgRtWvXpn///pRzcqCZp4hoJldAIwp09vNWo7UqKioqTzB79+6lVq1aHD58GFmW0el0SnqwRqOhefPm5AMVgPyCFNTiRKitrS2dO3fGy8sLKysrbK2tiQHsrK2LmB8ZU5Hz8vIIPnyY/X//XaSW04ixFrSCtzcZTk7UqFOHbdu20a9fP44eO2ZSFyvLMrIss3LlSsLDwwk5eZKffvqJ4GPHlDYrTxo2Nja0adOGDz74gN9//53Zs2fz4osvmohXnU5HSEgICxYs4NVXX2XChAls2rRJiQI+aIzGVP3792fGjBmsW7eOVatWMXnyZF555RX8/PyUhY309EygInp9PpMnT1YMwB4EV69e5bvvvqNt27as+fVXli1ZwsyZM4vdNjMzk8WLFyu/jx49GltbW7KystBqtVSpUgUHBweLj21JGnLr1q3x8PAAMHmtCkeyCxt3/ZdQhe0TiNEsqiwckCUZEjJyea5O+SIC8U5kSc/cv47h6+vLnn8OIFZpUmIqMNyul5w5uJNJfW6xc5FkhrarzqipX+H8wjAEQSiSoisVuConV+/EucN7+XVwEzrV8zIRmg1cJdYNa0XOhQNciU0gJ1+vfFlmZWXhaGtNMXHUu5y0rEQOv127HeeA3tjXDihIA5YQboQyvX8Hdq78jqSkJLRaLVm5OqyrtSjZDRnDtbep4c/Wb6fw+/DWeDhYG1r1lICITNbFw9StVYNjx47RvHlz9Hk5uOfEml04uBf+vhBP3x+OsCrI8i+IhIQEpk2bRpUqVXjnnXcICAjg+PHj7Nu3j8EBlc2+Zwzvg/+mW5+KiorK00KfXr3IT0rixo0bHD9+nP379xN8+DD5+fmMGTOGJUuW4Onmxg3Au8BM6m51scZ0WI1GQ7OWLalbty7N/P2LGAkZW/wkJCSQlpWFtywTcxeBI8syoihSv0EDmgcE4OrqSk5ODps3bwbg+eefp06dOqSmpnJw/34CDxwgKiqKgQMHYmNjw5tvvlmqFNLHGSsrK8X9ee3atcyfP5/evXub1DNLksTp06f57rvvGDBgAGPHjmX9+vV3XTh4EBgXI5599llGjBjBwoUL2bx5M4sWLWLMmBHY22fg4eGFVqtl/PjxXLhwocyOnZ2dzc6dOxk3bhzDhg1j06ZN6HQ6dEC+JBWbSi/LMh999BFXr14FDIKzbdu2REREKG2vHkR9rb+/P56engCkp6crEd769esr2/xX62xVYfuEERKZzMhVx8vUAVmS4Z+LCWaFsiBqCIrJ5ddVv+FYzsPiFjiSDHW8nZnStZZh1fMOASbrDau4vavk0aKaG4kejcBMtBNZwq7JiyRfDOH7Qc3ZP6YZ178ZxPX5fXC+cZzlh65ScdxavoutjN+0ncjthmLjU4/s7Gyc7GzwyI011NiWdAi9jva+zthaa5jx2z9ou3+EXQ3/2+ctiIg+DXl1WTBL9pzllVdeYfPmzegEK4vSbY1j6EUt1RwlsvZ8a/Z11cvQsbLI3r178fT05OTJkzTt3IeYhBSzCwf3giQbIuWfbAo1G7mNiIhg5MiRVKlShXnz5jFw4EAiIiJYs2YNzZo1Iycnh0/HvoHVyQ0IUCTKrBENKdozezVQHZFVVFRUnnAkvR6jFVBGaireQHp2NnXq1KFHjx5UrFiRH5Yvp3379tSoUeOurrwVKlQw6dFqb29PpUqVihgc2dvbKxHccuXKYSUIxACZ2dkmpkSFKS5CvGnTJkUIfP3118TGxmKt1yPqdFy8eJHjx4/TtUuX0l2MJwiNRkPDhg0ZNWoUq1evZtGiRfTv31+p5TRy4cIFfvzxR9544w2GDx/OypUruXr1qsWmXWWFsXZ07ty5REdH0qdPbzQaDWlpaUycONGkHvdeuHTpEl9//TX9+/fnq6++IiwsTHmudu3adOrShfcnTmTSpElF9p09ezaLFi0iJCSExMRExowZgyAIJmOUtr727NmzALi4uChp9wkJCVy+fBkw1Jl7eHiYLEoY05FdXFwUR/Lw8HClDve/hCpsnyBWHr1Gvx+O8G9EYpmOK0uSxUJZEEXeGj6aBXNnWZz+aqyXHPpsHeZ09CQ7Igi5wAxAFCD3Sghxqz5g+UdDSEi+xZ6wOPMiTdTgUKc1m7duB6CqTwXshHwcGr7AQW0L9obFK+JSkoGKDfEaNJc4p9o4ODjgGB1sXpiLGt7p0oCQyGR+PpNpaKVzR12uMaLs/MJw/g2LxtHREb9avqW6NllpybRv356LgdtJ3rUYZLlo9FzSI8syL3qms3rhTDQaDQsWLOD5YdPIaz8arU+9uxbqGgVjw5xzpAX/YYgKl/KLx9iCpziCgoLo06cPtWvXZuPGjUyePJmoqCi++eYbkz5p7777LhcuXOCPue/x+/DW+DnrTN4Hnep58fvw1mXuxqyioqKi8nAJCQkhOy8PHYZU4rp+ftwEvD08mDp1KmCov12xYoUSZb3bTXbjxo0Vk6OS8PDwUESVg4MDDg4OeAA6SSIx0fS+KS4ujoP793MiOLiIa3FaWho7duwADJHMsWPHkgnkYLhpdgQuXbzIvn37LLwaTy6CIFCnTh3efvttfv75Z5YuXcrgwYOpXr26yXZXrlxhxYoVDBs2jLfeeovly5dz8eLFhy5yXV1dmTdvnhLJzMnJYcqUKRw4cKBU42RmZvLXX38xcuRIRo8ezbZt20wWR3x9fRk9ejS///47O3fuZO7cucX2TD579iyC4ApYc+vWLQIDA5Fl+Z6F7dWrV5V69YYNGyoLM4Wjta1atQJQIrZQfDqyTqfj4MGDhIaGcvjwYSUa7e/f6qG0p3pQqO4sTwj3YhZl/EApyThBlvS4ZkWTYl/ZYnOn6ZM/ZOrkj2ky5jvSnKuVOB9Z0qOJv0BedntsrZ3p39GfWxEnGDW2Dz7VanDyeDC/rYxkzMYwcoFx73+A5P2SReeHILJz3wEkSUIURXxbdiQtYCgIxfRJFTWGutvqnchP3k/a8X9wFxxJ9O0Ish5BvP2noBEMrtFVE47QoloP3v75qKHVkRkH5eyqbck5c4hff1rGolO57A2LKzEdWSMKtPN15oVn2nP16lUkSeLFOs6MH96ar/ZcIujq7QipLIjU87DmrZe7EBcXx5AhQ/gnNArvgXMKBO3dX2MfbQ4Xf/+SI04VcH72LQTLE7EV7mzBI0kS27dv58svv+Tff/+lVq1aLFmyhMGDBxfbJmD16tX88MMP/Pjjj0oT9xddYtk5/X1i45NxtrNWa2pVVFRU/iMcOHAAnSThDYjlynEwMJCkpCS8vLyUtOJ58+aRmpqKKIo4ODgUazBlb29fJNqalJREdHQ0FStWpHz58kiShCzLJsIWwKtiRS5duoRWoyni/hp15QoeOh0xqakkJCSg1Wq5dvkyjuXKUbt2bTZs2EDPnj2xtrbmww8/JCoqisWLF+OJoVetT/nyfPXVV/j6+hYRef9VBEHA19cXX19fXn/9daKjozl06BCBgYEmKb/R0dGsXbuWtWvX4unpSbt27Wjfvj316tUrUhP9IHBwcGD27NnMmjWLQ4cOodPp+Pzzz0lLS6Nnz5533U+WZc6dO8f27dv5999/FQdjI7a2tjz33HN0796dOnXqWNR39sMPP2Tv3v3k5oKPjw9LliwhPDxcEba2trYWuXcbKS4NOTc3l4MHDyqPa7VatmzZoqQ/A/zwww/8+uuvpKWlkZSURGJiIsnJyUyePBknJyfAEA3+55/9gCchIaPo0aNHqfpNPy4I8sNeTlG5J4avOma2j2rxyJToHCzLxG/4lErPvkqee60ShZis15EVHkRb+Tx9+vRh9PT5uPb5tERLX1mWufX7JzSv6sr27duxtbUlJ19P3wGvs23TRnr1fJENGzbwzDPPGAwmRCuqTvjDMuElS0R91YfgI4do0aIFAe8v46amfMlux5Ieb30C19dMpVatWlxIzENf61nsa7dGEEVD3zpdHCfXzGPX6iUEtGlH3U92WGRbLEsSr9ueYOb0qfQeNoGT7s+Z/eCTd8/j+skDyLLMyJEj+e6771gVFMXUzaGAbGJypRENgj3v0Ap0F/7Bu88npDpWMXu+mZeO0sY9h9PlXzB7DuZY8lpjbhzbzbx58wgLC6NVq1ZMnDiRl1566a5fWBcuXKBFixb07t2bFStWKNdk1qxZLFiw4KGZUKioqKioPByuXbvGC888w424OH748UcGDRpk8vzYsWNZtGgRDjY2tG7fnvz8fDIzM3FycjL5LunZsye7d+/mypUrWFtb4+TkxOFDh3AFUgWB5i1bcubkSfJ0Ol4bMIB69eqxf/9+ZFkmNzcXSZKwtrY2cU4GuHjhAtejo7HVamn/zDMcOnCAcnl5xAJNmzbF3d2diRMn0rlzZ8BQp1jR05OMnBxsAcHampz8fOxtbAg5efI/U2t7r8THxysiNzQ01KRFjxFXV1fatm1Lu3btaNy4MVZWDza2ptfr+frrr9m5c6fy2ODBgxk0aJDJvVlqaip79+5lx44dxRpO1alTh+7du/Pss8/etSWVuXn8+uuvrFmzpshzjRs3Zt68eUUej46O5uuvv8bV1ZV69eqRlpZGWloahw8f5ubNm+Tn5+Pj40NWVha5ublm3b8Lk5WVxZHDh7EGNNbWtOnQweBpI0kcPHiY/PwcHBycuH79Gq6urqU+30eNGrF9AsjJ17PnfJzFPUBNKfmNLggCnn2nkVfQh7akrQWNhozjf7E19gJnzl/g65mfMfXHtYj+/dGIgsn8BGRk2eBMnHHlFIHXrXnp7fFU7fome8PikWoOpPL41zgYfpRpi1bwyy+/4OfnR15eHlLUSayqNStRxIvIpF88gpO9Ldu2baNB46bEa73NnAEgargpeBGXlELlyjm4SWmEbZqNYKVF6+DMjairNG3UADnhBh06dCAhPbdUPXhHvTOe5cuXs3nZfBybhOHWZRRWomBimGQUqLojq4gtELVTpkxh5syZJpH5O1874/XQtnkd2/w0Up2qmY+yixoc67alfD1PxAvx9/geMiIz4rdTJO/awHM1a7J06VLatm1b4odpVlYWffr0oUqVKixZssRk2/9qDzUVFRWVp52qVasSXlBveafBE8COv/7CG7iZm0tycjKXzp8nIycHVycnmvn7G0p/CiKEZ8+eJSoqCjAY7dhotaTl5WGl0ZCYmEhOfj7lMYhVo8A8d/YsN+PjcXF0pFHTpqSmpuLk5KTMpXadOnh6eTF69GgAjgcHE5uXhygISkrpunXr6NixI6Io4uTkxMo1a+jduzc5gJ0oUh6Iz83lzz//fOqFraenJ71796Z3796kpKRw5MgRDh48yMmTJxWTpJSUFLZu3crWrVtxcnKiVatWtGvXjhYtWty1vvp+0Gg0jB8/HhcXF9atWwfAihUrSE1NZcSIEZw9e5bt27dz6NChIunoDg4OvPDCC3Tv3p0aNWrc9zzeeustatasyZdffmmSVu/u7l7sPr169ODk6dPIgH9AgBJVNfQhPo5Ol0v16tWpXr06cXFxnDsXhq2tPc2bN1ZS+4vDyckJBwcHZMAOyBdFXnnlFZydnXF2dubNN98kNDSU/v37P5GiFlRh+0RwMDzxPgXJ3VGGFUSEAjt7QZah0BeRRhSQJJmZvRqSHfANM9YeRF+1GTPOiFgF9EeTHElWViY2leobIoyyTMbFw/Rp6IZ1+5p8ewpsG3TiQuXuXDp3E7mgtlUQRexr+rMiVoPL2UTmzp3Lu+++S9y/a/Cu0oSSRLkE5JzeRs3q1dm6dSujxn9kcQsfBAFZY0Nqaip2dnZYW1uj1VpTv051NEhcu3aNNm3aIAgC+/fuRJY0FqZpw/UrEYwePRpRFMk4tYM5H49jQ2gyl3OdlIiwv48d/yyeTPz5o8iyzFdffcX48eMBWLzvArKkLzlyLumxqt8JyUKDKhnYGxZvdjvzCAgCuHcdzdThrS0yeBo9ejRXr14lODi4SJN3VdiqqKio/HcxitPieP2tt5g+fTpuzs7o9XoycnLwAuLS05EkCY1GQ0BAAKGhoWRnZ+MBGLuX7t67l/fffx9RFJFlmdjr10nIz+ezYcOIj49HlmVuxscbxsvIIOToUXLy8/FwdaVJ8+bK3FxdXbl27RrvvfceK1as4MaNG9jZ2VG/fn0iIyOJiori6NGjtGnTBoBevXpx4MABzp8/fzuN08FB6bmqYsDV1ZXu3bvTvXt30tPTOXr0KIcOHSIkJESpo05PT2fPnj3s2bMHOzs7AgICaNeuHS1btrynqOjdEASBoUOH4uLiwtKlSwHYvHkzu3fvVgzCCtOwYUO6detGhw4dShSI90KHDh2oXLky7733npJ2v3//furVq8dLL71UdOEfSMRQC2skJSUFnS4X8CE+PpnnnnuO06fPIUmeZGXF4uzszBtvvIGTkxPW1tZ88cUXynl9+eWXSjbEihUr2L17N8OHD//P9bJVzaMec1YevcawlccezsGMX0KCoJj6yJKEdP0UU9s6IcswKygbm+otFKEnI6B3rYrWpz5Je5byZrmLhH3alfH+Tnw/cyIajYZ+oz/GtfNIBEFQRK1ySI0VgiDw7dEEmnbuQ0BAAHkxYaTs/h6gaM/TAhMl/dHVvNDIl/T0dI4dO0bGrUTLe7nKMnJeFomJiej1emV1tk2bNvz0008AvP322wDMnPYJWeFHzTooC0g8X8edAa/2QZZlJEni888/xzEnnsM/f05l8RaiYBCZh69loK/9HNqKdfnpp58UUXsk5Dh/hyeZbRMkaKzQedaxuPdtWfe41ZRgJFWYn3/+mV9++YXFixebWMwbUYWtioqKytPJtGnTWL16NWnp6YSeOYOzkxNJgkDVqlWVm+8ePXpw9OhRvLy8SBVFrKys6Nq1K+3bt8fNzU0xhNq2cyfXrl1j2LBhgEHMVPT2Jg5wtrcnJz8fLyAxJUWpwTVGbo8fP46dnR1169YlJTGRU6dOsWfnTmW7NWvWmNTtdujQgREjRjBp0iSio6O5dv06zZo1e0hX7cnDycmJTp06MX36dDZs2MAnn3zCs88+a+LFkZ2dzf79+/nss8/o06cPU6dOZffu3aSnp5fJHPR6PVWqVKFmzZomxzTi4uJCnz59WL58OfPnz6dTp05lLmqN+Pr6Uq1aNeV3SZL47rvvmD9/vol52up162jRtSuDBg1izpw5zJo1i759++Lh4YGtrSMQQ6VK3gwdOpThw98GYrGxseOzzz6jb9++dO3aleeff15ZJEhJSTFJ8R88eDCrVq36z4laUCO2jzWmaakPD41GpKpVGsHfjcfJ1goXR3tG/fMbXgO/MBgz3TEho1h16ziM2d9+wLWLoXz//fe4uLgwevRomr/7A+Id9aJFkPSM+XYjG1euxM/Pj7QT2/B11dL41ffYH3HLIKRliczwYGoIcQQH/sHIGdPYvHkzgiDwz55ddPJrxK6zsWbrhCvKiVzT5ZF0Kw17Ny+y8nToc7Np3bo1c+bMQRRFBg4cyI0bNwgNDcXmloRDndZmrprI9T2/EBUVhU6n43//+x9NmjThtamL8R44hxuiiFQQdjdGqh3qtMbaryFgMFcaNu59yg9bbvb1AYPTc27kCbRVGpfoIK0RBappM4nItrO4/sIcdxpJFUdoaCijR4/mrbfe4o033ih2m5SUlCfSmEBFRUVF5f45bKzzk2XS0tNxsrdHEASSkpJo1qwZOp2OrKwsbsTE4C5J3JQk0tPTycnJYf++feTpdERdvYqfnx/e3t7AbdPMevXr8+VXX7Fs2TLOnTlDQlISVatWRafTce3aNaysrKhSpQo5OTmEhobSuXNnvv/+e7yAa9HRtG7XjqNHj3IiJIQ6deowZsyYIvO/s/2NSsnY2dnRoUMHOnToQF5eHidOnCAwMJDDhw8rIjY/P58jR45w5MgRNBoNjRs3pn379rRp06bUC+Hx8fHs3LmTnTt33tXLw8fHh6+++uquKcFljV6vV9ryFDZG27lzJ5GRkUybNg0PDw9at26tOHMb2bFjBzY2NrRtG6BkNaxYsYJFixbRq1cvvLy8qFSpkrK9IAiUL1+ea9euKZkMZXUf+DijRmwfY5YFXkEs63CbBeglmch8J44fDaRJw/pcvHgRn46vG1JkS0CWJfwHf8zq1avp1KkT/fr146dfV5KgrVAkUnsngsaKVCdftuzYpaROnN73Jx1tI9GvHUfG9nlkRQRjXyuAm7V7UXn8BlZfs8fRtxFVq1Zl69atDG1X3aIWPi45cXj0nkTl8RsQXp6Dzzvr8Og9CfsqDThz5gw1a9bExsaGiRMnAuCSl0j15BBDrdAdywzGnrzPOt5kz28/oNPpqFmzJhMmTOC196bj2nFEsS7NBsMngU82hTJk4kwGDRpE7x7dLY7CypKEZ9JZs+er00scWb2gzD/MJBkCw4v/osjIyKBPnz7UrFmTb7/99q5jqBFbFRUVlaeXvn37glZLJlAOQ/3g9chITp08SUBAgOL06ujszE0MN+p9+vQhKSmJPJ1OaeVT+PutcDeIChUqcDEsjJzsbBo0aoSXlxdnz54lJjKSiIgIoqOjAQgODqZ79+54ursTB9hYWVG1alUiIyOxSU1l2pQpD/OyPBVotVpatWrFhAkTWL9+PXPmzKFnz54m9wR6vZ4TJ06wcOFC+vfvz/jx4/njjz+UnqzFodPpCAwMZNKkSQwaNIiVK1eaiFo3Nzc6duyoRIxjYmL46KOPirSDelBcvXpVqbH19/dn0qRJSnT4woULjBo1itDQ0CL7ybKs9K91cHCgdu3agKEXbVBQEM2bNzcRtUaMvWzz8vJIS0uzeJ45OTkP7ZqUNaqwfUwxGkaV3gW5bJBkcPPyYfv27axYvYZ8T7+S3XcBQdRwTV+O4aPGcP78eVq1akXdhk0sqk817C/y4eRpvPDCCzRt2hSAESNGUO25/jh2ex+7QinQgiiS4eKLe7/P0fu2Zvfu3TSq4EB3zzRkWVYE5+0TMqQwZ54/wAWHRtjX9DcZy75WAGM2X8G2QSf69u2LJEls2LABgFGjRvHv8s/R75xLdZtMkzTtqlapTG3jyIqphhQoBwcHPpy3lNe++xvX3lPNGk/Jkp7tl3NYsGABz7RrTdalI0XnXsw+ctRJwvZvoiURCFCk760sS8rqnOfLH8MDiPsPXXmcVUGmDoKyLDN8+HBiYmL4/fffS6yVUYWtioqKytPLM888w834ePr26cMtwNramnIYvq3c3d2ZO2sWR/79l8qVK/PXX38REhJC165dSUlJoX6DBkhubvR/7TW8vLyKHf/cuXPE3ryJY1YWl8LCCAkOJjk5uUiviODgYGxsbGjZqhVWgJ1ez7Fjx7DWaLgBVCtFOxaV0mNlZUWzZs0YN24ca9asYcGCBbzyyismr6tR2C1ZsoSBAwcyevRo1q5dqyxOxMTEsGzZMgYMGMCMGTMICQkxSTtv1aoVM2bM4LfffuPDDz9kwYIFijlSZGQk77zzjjLWg6RwW6S6devy3HPP8fXXXysZBykpKUycOJGtW7ea7BcVFcWtW7cAaNCgAYMHD1aeW7ly5V37BXt6epKTk0NOTk6JCwKFuXbtGlWrVqd8+fJ8/fXXpTi7xwNV2D6mpOfoHphhlCXIksT/DRlEREQEXXv2LpU4/W7pT7Rq1QqtVku3js9ZHIUUAH1OBp07d2bZsmVoNBr0btWI9m5rqP+9Q1gLGivD4/4D0JWrwr///ss7LzYnbtUHZIUH3T6uLBekJ8s4+D1T/FiiBhBw6zKKDq8MYenSpeTm5mJtbc3p06fR6/X837BhnA87r2hVQQBf3+pMmTJFEZEjvvqNz45kYlW1qWVuyqIGhzqt+fvAQYYNG0Zq8J8lphYXTJZKWeGEhoay4Yt3+X14azrW9VS60xbpXyyImHPHvlc+2RTKscjb/XZ//PFHfvvtN5YuXUqdOnVK3FcVtioqKipPN87Ozqz7/Xdyc3PZvmsX7Xv14ptvvuHkyZOkpqdjl5dHUlISPXv2pHmB8dPZs2fJzs6mUuXK9OvXz2S8mJgYTp8+zZUrV2jcuDHWVlbEAqKVFTLgBXhXrMjkKVPo0qULANevXyc2NpZOnTqhA27JMk2bNuXfwEC+/vprtu/e/VCvydOMKIo0aNCAESNGsHLlShYvXsxrr71WpGzp0qVLLF++vKAe1oGmTZuzZs0aUlJSlG28vLx44403WLVqFTNnzqRNmzZKnWmNGjX4+uuvqVChAmBIW3733Xe5dOnSAz0/Y/9aQHHSrlmzJosWLaJJkyaAIeq8cOFCvv76a6Xu9s7+ta1bt6ZWrVqAIWp75MgRk+Pk5eUxZ84cNmzYQGDgYQIDD7F+/XqL5rhr1y7i428APnz55df3eKaPDlXYPqZciiubovl7QZb05EQE8c/e3fj5+TFz6iSLDYgEZLSCxLZt29DpdDRu4EfmpSNFTaDuQCNAl/rejB01goSEBD744ANmzpyJU8teZlOgkfS4t+nL1q1bqVWrFvk3LpJz7RQyMrJerwhMwVyasuHk+eNcqpIOPWDAADZv3kyV5wfyc1Q5rKs1u53+K4gciEjGutuHODTuyriZC9lwVTQcz5w4LXxIBPaevY6joyM2adHkH1kJyGjuuOaypAdZJnP/MgKqe1C7dm0kSeJK8F52T+3LjTWTFYFt0bmWAWIhI6mTJ08ybtw4Ro4cyWuvvVbiftnZ2eTk5DyxdvIqKioqKmWHVqvlueee488//2Ts2LG0b98eWRBIhCI9cD//9FOuXL7M6dOnTYQMwF8bNyIlJHDlyhXi4+M5dvw4q1evRiMI2AFJwHvvv68IHSPBwcGMGzeO1atXs2TJEj7//HNatWrFO++8c9eIsMqDRRAEatWqxVtvvcVPP/3EsmXLGDJkiIkJVHj4VfLynEhIiOPWrVtoNBrat2/P7NmzWbFiBYMGDVLSce+kYsWKLFiwgOrVqwOGfrYTJkzg5MmTD+ycjMLWysrK5DxcXFz44osveOWVV5THtm3bxsSJE0lKSioibAVB4PXXX1ceuzNq+9VXX/HRRx9z+PARQAs48s8//1g0xxdeeAGt1g6IwdXVsUgrpMcdVdg+hqw8eo1By4PuPcZmjNjd9emSRaYoavhfbQfy8/PRarX8sHgRuZdDlIjgXZH0BPjYcup4MNVr1eVKbCLHTp6moXV8EcOpO9FJMj1r2bNgwQIaNWrEvn37kAQNDrVbmU+B1lhh5duCv7bvRBAEvBu2xa3zKEBA0JgKTHO1poKoYdf5m0TF3AAgNjYW64p1Efz7GyK94h1zETUIgoB7l1HsiLVClos2JTeHLMuU7zMVaranc+fOBP82nx624WRePKKMJ8syQsGx6r/Qh+Wb/2H58uXUrl2bV199lcjISLza9i0ihos7VlliNJKKS0ymX79++Pn5MX/+fLP7GW9G1IitioqKisqddO7cmTNnznDw4EE+/vhjk+esrawoX/Bd7uDgYPKcb/XqSlugKlWq0KhRIwYMGECTxo3JBmRRVNrz+Pv7K/sFBwcjCAIDBgxgxIgRD6Svqsr9UbVqVQYOHMiSJUtYsWIFw4YNw8enIhCHtbUt//d//8eaNWuYOnUqLVq0KLZ/8p24u7vz1Vdf0bChwcgzOzubyZMnK/XdZUl6ejrXr18HDBHjO99jGo2GESNG8OGHHyrPnT9/npEjR3LixAkAbG1tlUhtq1atlJ8jIiJMorY3b94ENIA1gqBDFHPw8/OzaJ41atRg8uSPaN++PRUqVDAR1U8CqrB9zCjshHyvEkSW9OReOU5TLhf7vAAgy0UyZWW9DmSZt5s48u2nHxB8JozXBg1Gr9eTdXKr2dRoWRDZ/tMChv4ShPTKl1QauxKPkSs5k++Fa+JZg6i6U/gV1L4m71rMGy+2Jzk5mb///hsHBwemffaFeTMo4zmJIlGx8Vy4cAG31n3Mtucp8TxkELT2tG7dmn379uH9zACQzAlWmRynyubTiIvB2OvPvesoOg8YQceOHfl+5kSsk68AAsi3zTFk4LpUDtd+n/Huoo1cvnyZypUr8/OKVWiqNkUysxxiGEcuU4EryTB8zDvEx8fz+++/K+2TSiI52ZC+rApbFRUVFZXiaNCgAe3atSuyIL38118JePFFJk2aRJ8+fUye27BpE1OnT+evv/6iZcuWyuN/btnCokWLOBgYqNzg+/r6KtG8U6dOKaY+Ko8/FSpUoG/fvly8eJ5t27Zx+fIlRowYcU9ZYI6OjsyePZtWrVoBBmfmzz77jO3bt5fpnC9evKj8bExDLo6OHTvy9ddfK+/NuLg4goKCuHjxIrVr18bKyhBguTNqu2LFCuXe7uOPP6ZKlYpUquRJ+/ZtePbZ9hbdmxl55plnFFOrO9OcH3dUYfuYURZOyILGChvfphyXq99lg4JetfLtBjwCMnL0aZJ2L2bhut3U/WQ7PZaH8rd7D179di/+/v4k71pcrDGTUCCU8sIP49p5JFF6F0UEG42ZbpVvhABImbdui1tZQh91CufgZWSc2qFY/NvY2LB9+3ak3NtGTeaQJQmNnM/mrdvJKFfdbJTX3FhyXpbhXEUrqNTYfGqxIN6387Agy0xasY+UlBSsK9RFEzCgoK+w6Z+phEEIu3UZxUdf/cjVq1d5sVefUtRkC+RcPVGG4lbmr43r+emnn6hRo4ZFe6gRWxUVFRWVe6FZs2b8tWULn3/+eZGoXMWKFZk2bRo9e/Y0edzd3Z3Ro0fTuvXt1n2CIChR2/z8fE6fPv3gJ69Sptja2tK9e/f7bh1oY2PD9OnT6dSpE2DoL7tgwQJ+++23MrtXurO+Ni0tja5dX8TXtxa//fabyba1atXiu+++o1GjRkRERBATk8L167FKxNdI4ajt5cuXOXz4MADe3t507dqVunXrotVqEUWxVOZYLVu2xNraGjC05SrrbL8HiSpsHyPK1AlZEIs45RZBknihXnlCJnUk7NNufD52MO5dRuFQK0ARU5IMR6IyuFT5RT788AMqnltDVnjQbcEpy7Sv7sL7z/hgU6uNIfp4pzFTIbclwd4FGYHc4HXMby3gceFPYk79S/369QGDiUOrVq1o1aoVUz7+kKzwo2ajr7Jeh1XcOey1Vmzbva/kfrlmEJDIunSE8m7lOHr0KL61/SwzgSoDZEHEvnZrcvL1tH37EzQaM3+essSBmyKiKHJg766i0fC77iaR8MfnpgZb9zNvGQaO/cikNsQcxoitWmOroqKiovKoKJyOHBQU9AhnovKo0Wg0TJgwwSQL4Oeff+b7779HsjDIUhKFhW3dunVZs2YNu3ZtJzIyh5EjxzB58mSTVj+urq7MmTOH2rVrIwh5gF7pGGJEEIS7OiQ3aNDAZNuEhASys7Mtmqu9vT2NGzdW9jP23n0SUIXtY8TB8MQyc0KWZdn8WKKGfWHxONlacTYmlal/nQOKGh9JBdW1y05nsGDBAlYO74DL7ulc/2YQN78dwNrRL7D+3zPmhRgodaI2Lfsx+N3JjBgxgnr16nHt2jVq1vFDtC/H+YvhvPDCC0ybNg1Pe9FsD1xEDekhm0lNTeXIwf0WG10VhyQLpIdswsPDA4DGfrUtjxoX12aolAiiyP6jJ7iS52h2gUMQNcQI5SnnXp6+L79E5qWj5o8v6bFJuICVIJdZ1FaQJeya9CjVPqqwVVFRgYLPzScoGqDy36Jp06ZKZCo4OFh9Lz7liKLI8OHDGTp0qPLYH3/8wWeffXZfqeqyLCutflxcXKhQoQL169cvCPxE4+TkQHBwMO+99x7vvvsuQUFByLKMlZUVW7duZcaMqSxYsICJEycWGTsgIEDpa3v58mUOHToEoNQNFyY2NtbiORc2V3uS0pFVYfuYsPLoNYatPFYmY8l6vcVpsTIC3V96hRnrAs2mQMt6Pa9M+o6zZ89y9NBBfv3hW7zLu6FH5LrkVqpIsyzpKd+uHyNGjKB2m25UGfgZeS99QeVxq6g8fgMXynegw9tTyKrcqsRzkWWZvDM7SDh/FGs7B2SNDXWddOZ7wd7x5WWsL07etRg54TLnz5+nevXq/PXnRrLDzQtGWa8jN+psqdyQi0MAzl++ZvEChyCKZOTqsba25rkKkvkUbFEk9u+V2DToiFvnkdytklsUStEgSNSw90I8OfmW1zUnJyfj5OSk3FCoqKg8fezbtw8XF1cqV/Z94G02VFSKw87OThEAcXFxREVFPeIZqTwOvPrqq7z//vuIokhsbCzTp03Dx8uLyMjIexovJiaG9HRDt5N69eohCALt2rUjMDCQDz/8kPbt2ynbnjt3jilTpjB8+HD+/vtvbG1t+eSTT3j33XeV+trCFBe1lSSpSMQWKFU6srHmGFRhq1JKChtGlQmiaLEokSWJC+dDOZssmI8QFrgPfzhpCuXLl+fcuXMcO3aMz+Z8ZXGf28JjSRUbUeHZ1/hb04TMctWVMQRRxL6mP9Hebc2vnsoScrlKePSeRIWxa6g8bhXnU0WLBKYxEitLErrIE8T99hEZp3YoKSf29vZYWVmRFrLJvCmUqOHWvyupGn8YZLlIiyJLoxKyLDPpQKrFq8ayLOP92iyWbz1Il2Y1cb28y3AsyVSIywUmXal7f0Cn1+PWeVSx9btGJBnGdqhi0RyM249Yfcykp21JpKSkqNFaFZWnnHnz5pGebkVMTDSLFi161NNReUoJCAhQfg4ODn6EM1F5nOjatStTp07lZkwM3kByWhpbt269p7HuTEM20qZNG7744gtWrlzJBx98QNWqVZXnrl69yuzZsxkyZAhbtmxRetoWh7+/P3Xq1AHgypUrHDp0CA8PD7y9vU22K42wLV++vEmv3Pj4eIv3fZSowvYxoCwMo8CQEmp0GM69HGy25lLW68i6dIS4hCSLhakgigwb/Q56vZ4vvviCihUrcvlC6D3VagqiiPVdDJIEjVXB4+bb89hUaYh9Tf/b5yCICAVC8s40YqPAS9m9mOvz++BxaCExS97mjTqQc/0cYGiODRAaGkpubi626TEkGY2z7hSsep1yzXu3b8zpjd8h/L0A+fqp28JZ6S1rJiIuy4V67hrci80hCALW5asw5e8EPgnMxF6XQS+3m/haZyqvvyxJ5EQEUTd6O18Ofwmnlr0QzNXjSnq+WLbO4jRsgH8vJdL3hyOsCrpmdtvk5GTVOEpF5SnH19cXQ2dRGU9Pz0c9HZWnFLXOVuVutG3bljeHDuUGUM7JiRdeeOGexjGmIUPxjshWVlZ06tSJpUuXMmPGDBPxe/PmTb755hsGDRrE2rVryczMLLL/nQ7Jq1atQpKkIunIpRG2gInZ2tGjR0u176PiiRW2Ofl6EtJzS5X++DhSloZR/tU9eEE6hUvCGV6q64S5ZFJBo8H71jmDA7CFAkYAZn32KZeibjJ1xkxsbW1ZvvR7Mi/fQxq1LJvvjWvJnIoxrEIUFWFsGpk9TtK6yeQlXMO95wQS24yl0uif+S2/JR69J+FWx9AewM3NTRGiqampZJzaQdyqD9BFHjcRjNkRIcSt/pBOvrasW7cOX19fok/+y/U104hZ+CrEhiKaOUdjdLao8LV8uUAQBLRe1Ymp/TKbUypwNd8J5/RrvF4lg+VdnYn/YxZThr9GyIlTONRuZT6iLRp6CLfxdTFvQlaAJBuk+CebQs1GblVhq6Ki8uabb9KqVSvatm2Nj4/Po56OylOKj48PFStWBAwL2sUJB5Wnl3nz5hEZGcnVqKgS2/SUhDFiKwiCElktDlEUadOmDd988w3z5s2jRYsWynMpKSksX76cAQMGsHz5cqW7hBF/f39FEBujtnemI9+PsDU6Lj/uPHHCNiQymeGrjuE3bSctZ+3Fb9pOhq+yPAXycSM9R1cmhlEaUcDVXkte7AUqNm6PVPvZQkLpjnpSSQ+yTP8aAsHb1/LJpI/IttB9OD8tiaYz99BhwSFW5jSl/6J9TF6wHM2lf0pluiDrdYZZWdin9p6R9GSFB6H7fQLX5/chZ+8iNO6V8Ro4B/ua/rePLwjY1/THsddUKnboR0pKCrIs4+XldXuo+AiSDm8gKyIEWZIQRBG7WgFU6/o224MvUKtWLU6fPo1eb7iO/+vZEyr4mTW/ut82QYUGuh3xFUUyXHxZFeXI6sMR2Nra0rx5c3b9/a/F11xG4Mi19FIvuoiiwLLAqyVucz/C9r+yqKWi8rTj4eGBo6MjdnZ2JCQkPOrpqDylFG77o9frOXHixCOekcrjRtWqVSlXrtw97ZuTk8OVK1eUcRwcHMzuIwgCjRs3Zvbs2SxevJhnnnlGuVfMyspi7dq1DBw4kG+++YYbN24o+xSO2q5cuVLp2WwkOjq6VPfqNWrUULJpTp8+/UQs+jxRwnbl0Wv0++EIe8PiFTEoybA3LN7iFMjHDSdbq/ty8TWil2R2n7/Jeb0n8Q0HsjcsvpCcNT1ARSkR8e+vmfN/PXB3dyckJAQxfL9ZwSOIGjSO5ZSUX0mG3edvsirOizmLf8bHXjb0frGEAnfkB42gscK+VgB5mWnIujwoX4NyHUcU35aoIP3ZqvXraCvWxcnJibi4OMDQDNy15f/wHjgHu+rNTeqBs11r4DVoLrH2NRBFEQ8PD3r27MlfO/Y8eOFeAsYI6j/pXmgr1sXR0ZGoyxdLlV5simWvrfG9WJLwvJca2//aopaKytNO4fTjxMTERzgTlaedwunIap2tSlkSERGhBDwKpxhbSq1atZgyZQo//fQT3bt3V0w38/Pz2bJlC0OGDOGLL77g6tWrtGzZUjnG1atXiYqKMhHkGRkZpKamWnxsQRCUqK1Op+PYsbIxuX2QPDHCtrDB0p0RJL0kW5wC+bhha62hjrdTmYwlyZBU9XkQ7m4EJQDfju7F5aA9hIWF8emnn5KVlUXC+aMk7VpckB5cfF0qglDURKlAuH3y1zmq6qLN1sQaTZSyDv56HwKrdAiiSJ5smKe2YVezkWkkPU4teykOduXKlSPd1hO79kMM1+AugtityygqNm5PXl4e27ZtQ8rNNFvn/DCQZQmbxt3x9fVF1uXRsqLWfI1tsVi+ECHJhmyEu1HaiO1/cVFLReVpx97eHjs7OwA1YqvySGncuDE2NjaAQdiWRd9SFRUwNY6611RmgEqVKvHee++xYsUK+vTpo3x2SpLEvn37GDZsGMOHDwdue8WsXLmS+vXrm4xT2nTkJ63tzxMjbC0xWLIkBfJxIyQymbAb6WUylizLZkWb8RoJgkDdunWZMGEC+/fvJzExkQqZEWRunkneleO3RacsIxjrVc1w4HoeaUF/3NUBWJZlXKQ09Dvnknh4A1mWtNEpSJsusp1RbFuALEnkZ6UjWGnRVm9ptiWOoLHCvnZrBCst1tbWpKam4tmhfxHjqGIORE7VNqSmpiKKInZaK8t6yz5gBFGDQ5029O0/kPLly/PB/1og35Pdl+WIgiEb4W6URtj+Vxe1VFSedgRBUHqGJyYmqj1EVR4ZWq2Wpk2bAobvp8uXLz/iGan8VygrYWvEw8OD4cOHs2rVKoYMGYKLiwsA2dnZLFv2M4sWLeLChQgAIiMjsbe3N9m/tMK2YcOGyhhBQUGKaH5ceSKEraUGS5akQD5uLAu8YrE5T0loRKF4E6U70EsyO0NvsGvv32RlZQGG66uzsueHZT+ReCGY2S9WZ2B9e0AuiDian58gCFh71cDJvzfIUlEhLMukH/uLs18OJCf6PH369EF/brd5EyNBJGn3YvRRp0xMoHIuB6OLDbOov2x2+BHyc7IQtPalcn8WtPbk5+dTpXpNdF71zQtiUYN97dY4u7qj0+nIysoiPWST+XN8CDdzMnAo+Bjt2rXD11HCO+ZA8S7PZTSXut7O2FoXf956vZ5bt25ZLGz/q4taKioqhpYSYKhDy8jIeMSzUXmaUdORVR4ERkdkOzs7qlSxvI2iOZydnRk4cCArV65k1KhRaDQaZFkHVFQyDsFgiFaY0gpba2tr5W8jIyOjyHiPGyXfqT8mlMZgyZgCebeb6scJo2AvC/OoUhn8CALdX3oFrZsPHu36oanaFAQRUYD645bySZAOwTkHECzqB3t72ALxIRSzjyDg3PJ/POPrxLZfv2XDhg04OjrifmUPSdU7gaQ3EY6yXgeihqx/fyLj5A4yTu5Aa++Ila0DOem3kPJzsa1UH8+BX5Q8KVFDWvAm9Ho9spylmD6ZQ5Yk5Lwsypcvz/UbCVQuhSDOyL0tFt2lW+Qc/AXb9kPueo5QmiTfe0XmyMH9ONvb4unpiWClxabqAdxb9MCqWjNDCnlBW6Ky4PyNNI5FJtOiWlHxaqzvsKTG1tK/kcKLWk/C376KiooBY8QWDFFbJ6eyKc1RUSktdwrbgQMHPsLZqPwXSExMVMos6tSpg0ZT9vcndnZ29O7dm5MnT3L58hVSUtKZOPE9kpKSCAsL48aNG1hZWSmR1tIKWzC4I+/fvx8wpCM3adKkDM+gbHkihK3RYMkS7WYuBfJxoiwckQv0CHW9nbhw07KUZlmScKjXHteOwwypy8JtM6h0uwr3N6GSjqvXE5xRjhGjx5KTmc7q1as5+fs3OPrux7N9f3TeDRBEEVmSyAoPIj1kE7kxYWi1WvIl0GFFfloKNlYiOfmQE32OzP3LcXj27buKxpTdi8mNKUgDkfLICj9q6HlbQvRV1uvICg/C0c6GhIQEBCttqQVx4abWxG7E+eZlygW8jFy5iXKOeVePk3JkA9blq+HWZVSRcygrZFkm73II+txs6nR+mdxqbUm2rwSCYR6Z4UFknt6Fp5gJL39RJoZXmoIIanHCNjnZkDJsLmKbkZHBnzv2IsnWFh3zSVrUUlFRMZCbm8vBg4a6rcDAwILetioqDx8vLy+qVatGZGQkYWFhpKamKmmeKir3QuE05HsxjrKUxMREgoKCqFevLm5ubkyePJmTJ08yadIkADQajSJsIyMjSz2+v78/Go0GvV7P4cOHGTFixEMxgL0XnggFaGutoZOfF3vD4kuMTIrIdPbzfmJubEsj2O+GXLDzxZtpWBL304gCDSs6cqrTMMP2dxohPcA3qqCxwrpaMzZLElnXjlKrdRcaVnBg69atXFkxCY2NHV4+VbgRddXgYAzYVG2EU8ve2Bc4ERtE71Hk4D/JjQkjKWgTuqQorBt0MdTF3iGM9XHhJnNID9mEfe3WxU3vNqKG7FPbyCxI5ZB1eWSHH8XOAkFMzBmc7G0NghbDF6W9vT1Xr5xCl3CVct6ViYuLR8q6hZ3WitysLGwzYolbFYlzwMvY1Wpl2WtQYOZlCQKQeWobTgEvE+vXvyBV/Lars1OdVjjWbsXMXg04GJ5g9u/MkNhc8rFLiqCWJGwvXbrE9u3b2bZtG//++y/5ElR5f4NFYvtJWtRSUVExcOLECXJzJUDD999/b9KuQkXlYePv709kZCSyLHPs2DFeeOGFRz0llSeYc+fOkZubi1arLZP62ruxc+dOxfCsW7duWFlZ0aJFC/z8/Dh//jy5ubnKtjdv3kSv15cqeuzo6EijRo04efIkN2/eJDIy8rFdhHwiamwBhrarjmSuxlaG4JVfcPLkyYc0q/ujzByRBcFiMyBJktFqbdBYmFr7IBBEEfua/qS0eItNoUnodDqef/553F2ciL1yEfT5uNZuifebC/Hq/zkONVuatNexr+mP16C5uDTvAUBqxAlSt83j+vw+XP9mENfn9yFx02xyY8KKFLnnRp8neddiQ33pHfW5sl6HLMvc2vM9mZFnTJ5Ls6RWVtQQd2ANmZmZVKxYEY1GQ0JCApn23pTvPQmPkSuxfuULKo9azv9m/0GLbv1wcHAwpOYKArJoZfnCgiCQE3PRbE2sLMvY5Kfh9so03J57y1CHfcd5GNsCTdkUilNmDHqzbpAWvtfu4oxcWNjm5OSwe/du3nnnHWrVqkWdOnX46KOP0Gg0zJs3j/AL5+lSv4JZF2eNKDxRi1oqKioGevToAWQDGeTn55OXl/eop6TyFKPW2aqUFXl5ecyY8TkHDx7k9OnQBxax1ev1bN++HQBRFOnevTtQtK9t4e3j4+NLfZzC7siHDx++x9k+eJ4YYduymhszezVAgCJmSxpRQADebGBHXswFWrRowbvvvktaWtojmaullIkjsoVCyCja0g/8RPDVpNLV5D4ACrfIyXepzN9//018fDxVq1alQvt+OPWeitazerFCz7ivS8fh2FY22Jjn5+cj6/KQsm4p0d67kXFqB3GrPiArPMjEkCorPIi4VR+QdmJbkX0sEcTp//yIkHQVvV5Peno6kiTh0KQbdj0m4VCntSLOZQROxuuIrPkKQq0OODbthtfAOdj7NrX4+smSRPyaj0ne80Oxc6LAmVoAdLblLIp4ynodv+4MImXP9wbBfBfRbGlM/24R1IgIg1vfiBEjcHd3p0uXLvz555907NiRv/76i6SkJHbu3MnYsWOpXr062ae2IZk5qiTJDG33eK4eqqio3J233nqLUaNGERAQgIuLC3v37n3UU1J5iqlfv77iABsSEqL0H1VRKS2RkZHcvBkNeJGYGIdWq30gxwkJCVHqeP39/U36gzdv3hw/P78i+9xLnW1AQABZWVmcOHGC4cNH8u677z2WbbGeqLy9QQFVqevlxLLAq+w+fxNJNtw8d6rnxdB2vrSo5sbkV0+ycOFCpk+fzvr161mwYAH9+vW77xTbnHw96Tk6nGytyiwqZHREfhgis4ZdNq5xx4mzzyK6DGooi0O+F/MhWcKpZS+lDvam3gGv1oMsG0fS49j8f+RcP1fquebGhJEbE4ZgpUXQ2iPnZVkkiPMTInFq2csk7Tn3Sgi3jv6BFB+BTqdDEARatmyJ6FWL8Co9CiLqphhTmt27jDIk9gpF08Lvft4S5XNjSHO0xz01jLSDP6Nt8hJWzm6Aoejamjzy0JbY0/hOBI0VjnXbkHj9bMF6SfGvQVV3eyKTssyO17KaG7bWhrqOI0eOKCnGZ8+eBSA9PZ1p06bRvXt36tevX+Q1l2WZDz74gJXz5zH0i1/Ze8sd8Y6/F40oIEkyM3s1KLaeV0VF5fFnzJgxjBs3DoANGzbQtWtXxEeYVaTy9GJlZUXz5s05ePAg6enpXLhwoUgfUBUVS6hWrRpt2rTn8OGDvPRSbxwcHB7IcbZu3ar8bMiAuY0gCAwePJiPPvrI5PHw8HBatmx51zHz8vK4du0aERERyr8rV65w7twFUlP1QDoLF35Nly6d6datW5mez/3yRAlbgBbV3GhRze2uQtPa2poJEybw6quv8u6779K/f3+WL1/OokWLqF27dqmPFxKZzLLAK4ozqyhAJz8v/q9d9fu6kS5LR2RLOLbzdzKPbcLO0Rn35qMsbntjEbJ0z31RjS1yNFpbrEVwbNnLYGhlgcgr3G/WnCi9G7Iur1T75sVdJnn3ElJ2f4eMiJyXBfp8ABo0aEBmZiaxsbH8/fffePRuhb0ZQyhZkbyluH6CgK0uE29vb2IdalCu/ZsF/YsF5fk8Cw2Xis5HwL3j8BLnY4moBYi7eZP+/fuza9cubt26haenJ926daNevXrs37+f3fv+Uf6GixO1H3/8MfPmzeObb75h7NjBHItMLnFRS0VF5cmkXr16NGzYkLNnz3L9+nWOHj1qkvamovIw8ff35+DBg4AhHVkVtir3glar5d9//yEhIcHQjeIBeNjExcUpKfOenp60aNGiyDbNmjVTam2NnDt3OyCUmZnJn3/+SXJyMrm5uURERBAVFVVsv1rDgmOm8nuFCg/OcPZeeeKErRFba02JkdPKlSuzceNGtm/fzpgxY2jYsCEffvghH3/8MXZ2dhYdY+XRa0zdHIooCooAlWTYGxbP7nNxzOzVgEEBVe9p/mXhiFwa3J5/k24tapN57SznspKRHNzv6Y9MqemUZSVimRNxlNSgP2+7+8pSkTrOkhBEERtHF7LTUvCs1apUotvYb/Zeha2l2FTyM0RqC+ZnNLESLv5NxtXTZGdnK5FIAMFKq2xb4vzvJXouCFx3rEOadxvKBfQuNtp7T+NieH01gkBZJJdczbQiMzKKd955hxdffJHmzZsjiiKvj5+OQ9em+E3bWexikSzLTJ48mTlz5rBgwQLGjh0LmF/UUlFReXLp27ev8hn6+++/q8JW5ZFxZ53tm2+++Qhno/Iko9Fo8Pb2fmDj79ixQ7kv7969e7GGUIIg8MYbb/Dhhx+SlZVFXFwceXl5zJw5k4iICA4fPlxQIibQtGkT3N3diz2Wt7c3rVq1JCgoiOTkPFxcXB9YFPp+eGKFraV0796d0NBQZs+ezRdffMHq1atZtGiR2dB5SGQyUzeHIlO0R6zx9082hVLXy8niaJFerycuLo6YmBiuREUjYH3PkU4jFqf/ShKXxEpUqOGCbO+OcB/HtUq/id7JCzCU+Do4OJJVvhq2vk0LBK+mVGnJsiSRnZaCoLUvdSTZ2F7HHKVJOb4Tx6bdcOtc0I7nDhMrarcme9diOLUDa2trHB0dycjIQG9d+nMpDYIALgG9DR9oZbQKaPxwLKuKCUEU2b7nH8o72SiPrTx6jYPaFuAtQXGLRS/V5+K25cyePZt58+bx7rvvFhnX3KKWiorKk0dAQACVK1fm+vXrhIaGcv78+WJrw1RUHjRubm7UqlWL8PBwIiIiSExMNOm3rKLyOKDT6dixYwdgiKR26dLlrts2bdqUmjVrsnz5r+TnZ3P16jXAEFW+desWUB5IIjU1lfLly1OlShVq1KhBzZo1qVmzJjVq1MDJyYmBAwciywLgSWpqHEuXLuXLL7984OdaGv7zwhbA3t6emTNnMmjQIEaPHk337t155ZVXWLBgAZUrVy52n2WBV4rU892JWKhXZ25uLrGxsURHRxMdHU1MTIzJf6Ojo7lx44aJEUGFt75FW75aicJEgCL1mYDSJsjiqKuoIcWhCskIcA9ayCh6BDCIWmNEUBDRV6iPW8WGShQXDPOSZckgoEs4mKzXkXM5GCtBRpeXZXG/WOO+WeFBJQrVu0Va0wvaBZnDppIfbp1HFR8VLfjdrcso8hMiyYu7TGqubPijL+W5lB7B8L8yTG15EGky4XHpirA1LhYhCCCYClPj39mUzaHcXLmRuXPn8v7775f5fFRUVB5PRFGkb9++zJ8/HzDU2k6dOvURz0rlacXf319p2xcSEvLY1RGqqBw5ckTpMtGmTZsiiy8RERGcPn2arl274uDgwJAhQ/jhh6WAJ5IUT1ZWFo6OjtSuXZu0tFNYWzuxcOFCOnXqhI2NTZHjSZJEcnIynp4epKRcRBStH2g0+l55KoStkTp16rBnzx7WrVvHe++9R7169ZgxYwbjxo3D2vp2TaKl9a96SWZnaCyeFf5Hws1Yk+ccHR2pVKkSlSpVom7durzwwgtUqlQJHx8fKlWqRKLgwv+tMy+sjB1D75yKJMObbaryy+FrxQrfYhHEe4rTyrJMXtxltF41CkSq6ShK2vEdwsiidFhRQ1rIZvLzDXWqWeFHsTfTL7bwvukhm+76dEmRVvvarUnetZiMUztKPISTJTW/kh6PXh+hcXA1Ec850eew9aln2bk8aVgYKR64PEhJ2bdksUjW62n95hQmThxQlrNVUVF5AnjhhRf45ZdfSE5OJjAwkJiYGHx8fB71tFSeQvz9/Vm9ejVgSEdWha3K40BOTg5Dhw7j3Lkw6tatqTz+4osvmmwXFRVF48ZNycrKoFatupw7dwZ/f38cHR1JT08F4NatWzRp0gRBEOjQoQ3e3t5FzKcKk5aWhk6no3Llynh4eDzwNOt75amzHRQEgf79+3PhwgXefvttPvjgA5o3b86hQ4eUbUpV/yqIZObpcXV1pVKlStSrV49WrVrRtm1b/Pz8qFChAra2tuTk5HDjxg3CwsI4fPgwX207iWihJL3bVj+XRtTeI7IkkfHrSMhIKjAoKnusbewQ7cshWGkNQtVMfa5c0Momedfiu0ZdC0da7xSWhVsN2fjcvWG2UidrRpgKGis0jm6m4rlWALaVG5jvffsEIgpY3mYKQ8r+4YhE9pyPM+vQLGisuKZ3ISdfbbGgovK0odVq6dWrF2D4nN+4ceOjnZDKU0udOnVwcXEB4MSJE8riu4rKo+SPP/5g9eqVnDoVz5YtOwGDgVOzZs1Mtrty5QpZWRmAN1evXuX9998nMTGRHj1eBHIRBJFy5coRGRlJbm4uALVq1Srx2ElJScrPdnZ2aLVapc3Q48R/MJRkGS4uLixcuJA33niDkSNH0q5dO958803mzp2Lk4urkuprDgGZyR+8T25WBpmZmUX+xcfHk5mZSVZW1u3Hc/PxHvMbgnifqZ+S3pASbInIuIdaTFmW0F09RsfnnyWosn+Z1XLecRRcX5mGmyAokc60oD9wDnjZEGm9Q1QaosdXSNnzfYmpxJZGWgu3GrqT0tT83pnGa4xiG0V4cefypCLJUN7BmoRMy77oRVHgx8ArFi8WSbJhcUmto1VRefro0aMHv/32Gzk5OezatYvBgwdTrly5Rz0tlacMjUZDixYt2LdvH1lZWZw7d44mTZo86mmpPOXUqFEDQ9ZkFA4Ohmhp586di7RHa9euHT169GTv3v1Ur16DsLAwRo0axeDBg7l8+TLW1ta4uLiQl3e7lK9atWolHruwsDUSHx9/v6dU5vw37rTvg2bNmnH48GGWLVvGRx99xObNm/niiy/oVK8pey/Elxhh0ogCnep5M2nQ3UP3xZGQnkvLWWXQhL7ApMmQamtGBNyTKBVIOvw7G1JuUHlc/3uaotkjFEpXVgyZRA1pQX9gVc7bpF9s9uVjpIVsIjfqTMljWupIbKZdkFwGdbKCLKFNi0bQ5ZLrUfp2U48KWZZNaqZNnpP0xGdYbg6ml2QOXEq4a734nYgCONk+9R9NKipPJU5OTnTv3p3169cTExPDV199xcyZMx/1tFSeQvz9/dm3bx9gSEdWha3KoyYgIIApUybzxx9/4OVlMHENCQmhb9++JnWxVlZWbNnyF+Hh4cyYMYO4uDhu3brFt99+i4uLC7Is4+npSUJCghKx/eeff3j55ZdxdHQs9tjFCdvHMWL71KUiF4dGo2H48OFcvHiRnj17MmzYMI6tnms2bVKSZIa28y318ZxsrbjfYK0RQRDK3KDozlTfOtWrIEtl5ZVbMsY0YeeAl0kP2cT1+X24/s0grs/vQ8LGT82KWihlpLWgXVBxyLo8ssKPIuuL9vKyGFFDrnNlItfNfGjXEG4L03vF8L4q/k0qiJpSG01JMrg7aM1upxEFOvt5q9FaFZWnmJdffpnQ0DDCwsL47LPPCQkJedRTUnkKadGihRIJCwoKesSzUXnSkCTpgaSwP/vss1SsWBGdTseJE6dZsWI17733XrHHqlWrFosXL1b62ypZhMCNGzdM+tBGR0fz8ccfk5mZWWQcgMTExCKPqcL2McfT05NffvmFAwcOkBt9nuTdi0GW0dxxg68xGNIys1cDi1v9FMbWWkMnP68i494LogDTe5Zt83BBEECWyQw1rFSGhZ4h/9aN2z1sHwYFacKyLg8p61apWvQYI60WbWumXZAlNb/mEEQRvWB1/yK5NMcUBGQKPsTu4ZiyLJe5EE/KNP8a3utikYqKyn8HLy8vrKysgUqATFRU1KOekspTiLOzM3Xr1gUMZjw3btx4xDNSeVK4cOEC3t4+2Ns7MGHCBK5du1Zm99DGFj9RUVEkJ6dx65aOTZs2MXv2bJPOK0acnZ357LPPGDhwoMnjer2e69evAygLOBcuXLiruC2cdmw03DWWWD5OqMK2GDp06MDJkyf5pP+zpGyYSv7VYwgFSZSyJFHLLpvfh7dmUEDVez7G0HbVzUaEzWGMbmkeQEuZwpFM19otsHat+EDawdz1+AVpwhrn8ghW5iN9hbE00irrdWRdOlKiaM6NPk/yrsXFCsTSfEhVGrkc5/IVzKeMlyHG1yvvZnip9pMLTMLKeq4lXS3xPheLVFRU/lusWbOS5s19ePvtofzvf/971NNReUoJCAhQflYzB1Qs5ffffychIQ6drhy//PIrQ4cOZciQISxZsoRTp06h091bkCMyMpLTp08DBgMnyAVSsbOz4+DBg3z11VdIxQQlNBoNQ4YM4dNPP0WrvX1PbRTCLVq0UMzSwsLCmDRpEllZpkGf6Oho5WdXV1fl58ctaivIDzUM9+QRFRXFu+++y6Yt2xC09tStUZWKXuXZs2fPfY/d/ZuDnL+Rdu8DyDJ+2aGct2tQ5sZOsiQRvaAvUn4uvoO/QF+hfqmFrVxgbnW/gri0vWfB4IrsNXBOiceWZZm4VR9Y1s/Wp56hH66x5leWC3r1Wl5rajT7kgERGblQfbEsS4BQ5osHsiwjZaagcSh3u/ewBfs8zEUMAC8nG74b0EwVtSoqKioqjw0RERGMHDkSMIjczz777BHPSOVJ4NChQ3To8CySpKNu3bpUqlTJ5HkHBwdatmxJ69atadmyJU5OTmbHTEhI4N1331Uip7Isk5CQgCRJeHl5KfdtPXv2ZOzYsXe9j9uzZw9z5841eaxx48YMHz6cjz76iLQ0gy5p0KABs2bNKhDQMGDAAEXENmvWjBMnTgAwa9YsWrZsaemleeCoEVszVKlShT/++IO1q1ciZd0iLPQM+/bt49q1a/c1bk6+njALRe2daw/GHHkh6gThaSLIZZsyaoxkSvm5CFZa9N5+9yR0TJyB7yMF12gq5TVoLo5NuiFYaZX2QHejxEirXme2XVCR8WLCyLl2CgQBWa9TrkeprouoURYgsqNClVRfWZLIuniEnOvnzEeZS7kOJQgCGgdXQDCbWny79uLhr3UlZOTSwMfloR9XRUVFRUXlbtSoUQM3N8OC66lTpxSjHRWVkmjbti0//7ycNm3aUKlSJezt7U2cizMzM9m/fz+zZ8+mT58+TJgwgQ0bNphERQvz999/83//938m6cAvvvgio0ePxtvb2+RedMuWLfz44493vV8snIVg5PTp0yxdupQpU6YoIjs0NJTJkyeTnZ0NQGpqqrJ9zZq3e+g+bhFb1XrUQvr168dbb71F8+bNOXj4KC3aP8/yJYv434v31rT750ORFsuHIq1kjL9Xbc4DqdgUNaSf2FogHq1LZ051R1shJaopajAIJkERT4KFEURAaZXj1mUUbp1HKk7JJUVyM07tID8h0jTSKklkhQeRHrLJYlErWGmxrdZE6YtbYgshS5D06LPTuT6/D4LW3lATrMvDppIftgPnmN09/o/PKd/rY8tfF6MIN7eZ8n8Pf71LbfGjoqKiovK4IQgC/v7+7Ny5k9zcXE6fPo2/v/+jnpbKE8DAgQPZv38/169fJysri/fffx+tVsuRI0cICQlRalMlSeL06dOcPn2aH374gcqVK9O6dWtatWpFpUqVWLx4Mfv37zcZu1mzZrz33ntkZ2ezb98+kpOTgdv33L///jt2dna8/vrrRebl7OxM+fLliwjSU6dOERMTw4gRI1iyZAkZGRmcPXuWTz75hBkzZpi0BqpXr57y8+PW8kdNRS4FNQI64/3cAGJwN6SUShKumVHMeqMj3VvWsXickMhk+v1w5L7jYhpRuOc6XePLXlg0y5IeQRDRJUaica+qCEGEskmRlWWZ+A2fIuty8er/+T2NeWearKzXgagheddiMk7tuOt+gpXWRERagk0lP4MoLmgdZC5FtzQpvLIkkbjkdSpX9ObixYt4eXmRlZWFXKMdbl1GFel7e+d5erw8BftaAaW8hjKyXDQNWkAueC8+3PTjwogCnJ/RVRW2KioqKiqPFYGBgcyYMQOAl156iTFjxjziGak8KRw9epRPPvkEgAoVKrBs2TK0Wi06nY7Q0FCOHj3KkSNHiI2NLXZ/o1AFQz2sIAiIosjXX39N/foG49jdu3fz5ZdfAuDu7m7Slmf48OH06dOnyLhTpkxRnL49PDyQJEkRx1ZWVvTp04etW7eSkZEBQJ06dbh48SJgSKNesGABw4YNAwx9dCdOnHh/F6oMUVORLWTl0WvonxtHbIGoBUOKbIpDZUZuDGfIZ8sttvVeFngFsQwckfWSbHlqqiwrKcuyJJEfc56cqLMm6bBysiEFwsq9ihINNP63bNY/ZBwbdiT32pnbacJSUQe3kigSvS5oD+TWZRQ2PvVMnyuUslxad2XHpt3wGjgH+5r+t6+FGRFZGpEpiCJuXhWV9JS4uDjS09PJOLWDhHVTcMy4rrTrEZCpICVSLWIjXumXEEWR9ON/WXysQkcFQJcap4wtSxJ25COWVtSW4XqY2uJHRUVFReVxpWnTplhZGRaag4ODH26HCJUnmoCAAKX/8Y0bN9iyZQtgEI9NmjRhxIgR/PLLLyxbtoyhQ4fSoEEDk5Rl43stPj6e/fsP8O+/h3B2dsbPz0/ZpmPHjtSpYwiuJSUl0a5dO+W5H374gW3bthWZV2HzJx8fH5YsWULDhg0B0Ol0rF27Fj8/PxwcHAAUUQsG8Vy+fHnl98ctYqsKWwsIiUxm6uZQQ33lHemzxp6e/2R40bjjyxw6dKjEsXLy9ew5H3ffjsjK8QXBshpbQQAEKlzeyvX5feiQf4I3KqUofWLj101BdK9i2O4ON1yhjCK2giBiX7s1orUNjexTsT/8PVmXjpZNW5mC9kBgiLR69J5E5fEbqDxuFZXHb8Cj96Qiwvdu2FTyU9KOhftNO74LsiQRE3mZkydPKg52bnVa4jdsAeX7zSTTxRdZlsmMCOHGb5O4uHwCQuJVXnzxRZYsWcLLz7e6t7pnQUB08SY1eBPXvxlE9DcDyJSsKPUrUIbmUnpJ4llv/V1vFnLy9SSk55KTX7pFEBUVFRUVlfvFwcGBBg0aAAZxYmyRoqJiDkEQGD58uHK/tnr1asWcqfA2VatW5dVXX2XEiBF4e3sXGSc2NhZZdkOny8fa2trk/k8URUaNGqX8fubMGfr376/8vnDhQvbu3WsyXmHxbG1tjZubG3PnzuXll19WHg8ODqZcuXKKeZSRihUr4uDggL29oXPK41ZjqwpbC7AkwqoRBXQ1O9CuXTvefvvtYhsZg6GOsIw0LVAQabU02iYI3KjRg2oDZkD5Grz++uuG2k45F+fmPQucec0crxgjq9IgiCJY23H06FEuHdpB4qbZXJ/fh/TV796XwDW2B3Jq3rNopPUO8ylzOLXsZXAwvgcsMcqS9Tryr4SYRI8dm3bDsddUMlx8TebtUKM53q/NovXrE3F3d2fnzp2MGDGCtSt/uefrJQgCLgG9sHatAKJV6WqoyxARGWSZjH+W8VqnACpV9eX1/xvN2t83kpqaSkhkMsNXHcNv2k5aztqL37SdDF91jGORyY9kvioqKioqTyeF62qDg4Mf4UxUnjRq1qxJx44dAUhPT+e3334rso1er2fVqlW88847SlqyVqtlxIgRdOvWDU9PTyARjUbDuHHjiuzv5+fH888/D0BaWho5OTn069cPMNyXzp07l0WLFuHv3wo3N082bNig7Jueno4kSVhZWTFy5EgmTZqEra0tADExMUWCW1FRUeTn5ytR24SEhMcqi0GtsTVDTr4ev2k7LRKjggDjK0UzdfJHiKLInDlzeOutt0xWRkozntnjIdOigpbqXq6sO1WKVICC1jIfdfJlZMcGuLh54DL0J4sETuHaXAEZd6t8EvOtLY7gyZLE9fl9kHV5uLu74+TkRGRkJAAevScZBOl9REktqYONWzOZ3KgzxT4vWGmpPH7DPYu94mqXi53Dqg+o4SLQrl07dh4Ph47jze6TtHYSDbztqVChAv/88w+2HcdiU73FPV4vmZyoUOLXT6PqhI2WL46UEaIAnf28GdrOl9y8fOZtPc7JeEM9tyxJ5CdEovX0RRAwmZtGFJAkmZm9GtxXH2kVFRUVFRVLuXbtGkOHDgUMqcl3tktRUSmJhIQEhgwZQl5eHlZWVixbtgwfHx/A0B92zpw5XLhwQdm+Vq1afPTRR+j1ekaPHk1+fj65ubnMnDmTZ555pthjxMfH8+abb5KXl4cgCDz//POcPHlSqZ1NSUnh+PHjgDcaTTLPPddB2dfGxoYKFSrg4+ODj48PWq2WnTt33jVI5+/vj06nU1r+bNiwQemD+6hRI7ZmKE2EVZYhxqEGJ06coGfPnvzf//0f7dq1U5opA5yNScXD0aZM5iYjcOxmPjsvljKCJYggCMzecxUbn3qk5+gsFnKG1GeZnPUfcHPNZBJKI2plifyrIbRs1oTy5cuTlJREZGQkGhs7RPtyZJzcViQNujTIsmw20ioIAl6vfa6kJhep2dXa31cE07iyVWybIcm0zdD58+dZunQpub5tzUeIJT12TXsQEhLCpk2bSE1N5VbQH/dxvQRsKjdAW7EudZ3y0JRBzbflR4YTUzrx/aDmhN1MZ9DPxziTxG33ZlFE6+VrELl3CG69ZDC6+mRTaKkjt2pKs4qKiorKvVClShUlRfTs2bNkZWU94hmpPE7IsszUqVNp0KAJy5YtK/J8+fLlFRMnnU7H8uXLkWWZLVu2MHLkSEXUiqLIoEGD+Oabb/D29uaLL75Q/HsGDBhgImrz8vIIDw9n+/btfPPNN8ycORO9Xq/Mp7BbMoCdnR0ajRa4iZOTs8n8cnNziYyM5NChQ6xfv55Vq1bdVdSCIWvBGJSCx6vOVo3YmqG0EVZZlon/7SNqOEPlypU5deoUcXFxjB49msavjOHzXREIAvcVsS2N+26J4+h1ZIUHkbT1q1JHKWO/G0y7dxdxNc+xSN3x3Q8oE7/mI7KjzgHgXKMp2kbdbrsOSxJ58VfRelUv6gpsLhJb4BpssStxMW7KNpX8cPZ/GbtSuw0XM76kR595C42Dq3JuuZeDuXV0Iw7ZcVhZWREfH1+qCLEx2m2ntSIvLw+dTofr82/h1LL3Pc9XlmVsIwPJ9W3Hw3BF1ogCnep58f2g5vfnDi7pqW6TybevNsLPr+Q+yyGRySwLvMKe83FIsiFa3MnPi/9rV50W1dzu+VxUVFRUVJ4evv32W/76y2DcOG3aNBOTHpWnm3PnzhXUYVdEFOPIzs5Cq9WabJOVlcUbb7zBrVu3AEPLnLCw220nK1asyIcffqgYQy1fvpy1a9cChoWVcePGce3aNcLDw4mIiCAyMhKdznzTT09PT/R6PUlJSWRnZ5OdnY2Liwsaze3ASPny5bl169ZdTXAlSVICN9nZ2eTl5eHs7Kzce9WuXZsGDRrg7OzMmTNn6NatG88++6yll69MUfvYmsHWWkMnPy/2hsVbZPikEQWeGTadatF7OXbsGElJSciyzI+b/sbLoUtBNO/+5lQWohYMdakOdVqjO+hCfuRxtL4tLIq+igK4u5bjcq5jqdKXk3ctVkStY9NulOtc0NamUE2ptrwhvTQvIRKtZ3WTlkMlT8pyUQumfXHzEyKx9qyGm3E+ZWGUJWrQOLoZXm9JIudKCKlHN5IbE4a1o6PS8NqrUjXLo+WiyBtDhxN54SyHDx8GwMaj8v3NUxDIrdaOzGN/Yd/8fyBLBT2HHwySJDO0nS9wu3b9nozURA2Xcx1p2KQZlSp40b17d7p168YLL7yAo6OjstnKo9eYujkUURSUxSRJhr1h8ew+F6emNKuoqKioWIS/v78ibIODg1Vhq6IQFxeHRqNFr4/F1dULa2vrItvY29vzxhtvsHDhQgATUdujRw+GDRuGnZ0dmZmZ7N27l3Xr1inPX79+nQkTJpidh4+PD87OzsrYFStWVKLD06dPJzg4uIgZFEDv3r15+eWXSUhIIDY2lpiYGGJiYoiNjWXTpk2cPXsWR8dy1Krly6lTZ5BlPb6+vtSoUQNZlrl06RKXLl3ixInTJCcn8OWXXxIUFETLli1LfS3vF1XYWsDQdtXZfS7Oom0lGS5l2bHp2++wtdaQm5tLaGgo7/95gch8CYR7Fw3ifUZ6i0UQydbJ5BzegKdvC/MxO0kiI/wISYnJVC5F+nLChpnIMYa6VtvK9RXXYe6oDzUKTq1XDeLWTCI/8TrkZ2Nf//ni+7tKehBEkvf8gFvHYaVPI5b0uHR4HdsqDYudz/0gFEqttfVtjm0NfwhZS8yBtej1ekP7gPxsZEmyaN6iAEu+WYCttYbs7Gz2HDjEuAM53G+kVZb0uFapRXPrKI7oqtzXWHdDI4Behj7V9ARtW8P66Bvsklvdl7uyIIqs+2MzgXt3sGPHDn744Qesra3p0KED3bp1o0rz55m6KxYZiohn4++fbAqlrpeTGrlVUXnESJJEaGgoVatWfWxqtVRUCtO4cWO0Wi15eXlK25+yCjSoPNmEhobi79+cW7du8dlnnxX7vsjMzOTcuXMmjwmCgJeXF6mpqcyfP5/w8HBiYmKK7Fs4uVanM5S11axZk5o1a1KrVi3lZwcHB2RZ5t133+X8+fPExsby119/8fLLLzN16lSmTJnCqVOniowfERGBRqPB29sbb29vmjVrpjz33Xc/AN5kZNwkPj4eWdYDFUhOTsXJKZ7Q0DBsbGxp3rwxOTm5QEVk2SCOH4WwVWtsLaBlNTc+7FrX4u0l2VCbC4aC7PqNmhAllbvv+tEyF7UY0lvzMtPIiT5HWtCf5ncQBJxiQpDzsix25ZUliezIk0ruv2OLlyyqKXVq1gM5OxUpP5esM7tI/3MGWeFBt48rS2RdOkrcqg/IOLGVrPDStw4SNFbYVmkIpdjvXrL3jf12adkfrU9dAgICcHV15WbMdcO8LXBSzrx4hNmffco/oVG8u/Ec7xzIpSzShwWNFbkedTmbqEO4t8TgosiySY/ktLBD3Fw5kXkjXuK9995j/Z+b77tlkChAz66dWLhwIZcuXSI8PJyvvvoKa2trpkyZwqhvNpjtkyyKAssCr97XPFRUVO6fwYOH0LhxY+rWbfDYtY9QUQGwtbVVepImJSVx5cqVRzshlccCSZI4fPgwDg4OVKtWja5duxbZ5vTp0wwbNqxI250jR0JYtWoV06fPYMeOHcWKWlEUqVGjBl27dqVdu3YcORLMv/8eJCMjg0aNGtGiRQsaNmyo9JwVBMGk/c/KlStJTU3FxsaGTz/9tEiKNMDly5fven69evUEbmJtbUfjxo1xcHBBo0nmpZd6cO1aNJLkTnZ2OgEBAUyfPoXGjb0ZM2YsPXv2tPQSlilqxNZChrSpxpydFyy67RcFcLK9fWnLosXPg1gVlPU6qlmnE1XQdubW/p/o/mI3AhNtixxTiYzuWkzGqb2IooiTlEaG4FKiQJH1OrIjgpF1eeQBGq2tUlNbEsb2PUkaawR9Pm5ubiReOgaXjiFYaanbsAmx166QmpyouE7nRJ7CvnbrUl8HQ6TW8kWH+3otJD0Ozf7HsS1zEQSBPn36cDr2BLnm5i1qSA36g/lXq/FLbksEWbqvhZI7EUSRDBdfymytSxCIWfwW//f2mzSoU4NqHdriM60fPj4+uLu7k6eX78sd3Fira2t9+xrUrFmTsWPHMnbsWJJT02n+xb9m/171kszu8zfJydebjKWiovJw+fPPzYA3N29Gc+jQIXr16vWop6SiUgR/f3+l3U9QUBA1atR4xDNSedRcuHCBpKQkAJo3b670dwWDwdPPP//Mxo0blaCIvb095cuX59q1a2RnZwGeyHI8+fn5ODo6KkEga2trJk+eTMuWLbG2tmbHjh2899575OZmAx7s3btPOa6TkxP169dX/tWpU4fOnTuze/duMjIy+PXXXxk3bhySJJGXl8edREVFkZubi41NUXPbmTM/5fz5c9jY2ODp6Unr1oYo7LBhwzh06BCpqZcRRSteffVVWrZsycSJE8vy8pYaVdhaiK21hs71vdh1NrZEQSHrdUixodyI9sPX11BL6GRr9WDSiO8XUUPK0Y3KrzaV/Nh9+ORtM6eCNBtZMkRGM47/RRW7fK5aWzNy6jw2Z5Qsao3HSAu+HQnu2rM3oaWoKRW09lRwdTBZxXJ1dqSajzcXL15CsNIiFQhz22pNDNbUj3FqkLGuOWmrBlmXxx9//IEoiri4N8DR7xlk7hDOssEFOPvCQewdHHAypnDfR0p7sciSwS27zIaTeKVnF5YsmFPs87aiwcBp7/k49Pfwd1G4Vrcwer2e48ePs2nnPmQaWTZWQYaFKmxVVB4dzz/fga1bt+Lk5Iqbm1oaoPJ4cmc/2wEDBjzC2ag8Dhw6dEj5uW3btsrPERERzJkzx8Q9uHHjxkycOJGMjAxGjhxJw4Z+xMTE0q3bYN5//30+++wzUlJSABg9ejRt27bl1q1bzJ8/nyNHjuDq6opGY41en0iFCvWVcdPT0zl69ChHjx4FwMrKCl9fX6ysrNDpdGzdupUePXqQnp6u7OPo6EhGRgZgyEQ8c+ZMsanDKSkpineJVCi7sVq1ajRq1AgPDw+8vb0fSdpxcaipyKVgaLvqZm/+BVHDzf2rqVmzJtOnTwduG1A9zJYq5pFJ3fsDof9sBgxmTl4D52BfK+C2mVNB2xoEAd2tmzSvUo5Lly7h4ODA2rAsZDPxMFmWyY+7Qm5MGKIoMmDAAK5fuWR5CrMsU7FeM6VZNYB91YY0e2cJ5/yGUnncKiqP32Bo3VOloUWR4CLH0Ou4bzev0iKI7Pr7X5o3b44kSWi8a+Pg9wzc0QTbsK3hMfu67XFuO9B8Cvc9IOt1ZF4KKnUad0njZV06wrTJH991m4SEBPLO7ERXytUejSggADN7NVDqYqOjo/npp5949dVX8fT0JCAggEUL5hX0azbPnRkWKioqD59x48bx/PPPExDQnBs3bjzq6aioFEuFChWoXNlg2hgWFkZaWtojnpHKo0SWZQIDAwFDynDr1q3R6/WsXbuWsWPHKqLW2tqa4cOHM3fuXLy8vKhRowadO3fGw8ODxo0b0bJlS/744w9F1AYEBNC9e3eCgoIYNmwYR44cAQyR2VmzZnLtWiRr1qxh6NChtG7dGmdn0/Y9Op2O8PBwxTVZlmXGjRvH0qVLlW0GDBhgst/8+fNNhK8RY1QYDG2BjOfq6emJp6cnTk5OZGdnK5HmR40qbEtBy2pu1Ms8A7JcRKQaayQ/692Qg3/+ipubGzNmzKB27dqGxt7tqiM9BiFbWZbJu3mZmys/QLp0gAoVKuDVoI1i5nSnI67R3ts54GXOWdc2CK86z2FbuQGCOZEvCFh7+rJm/QZ8fX357bffOHPyOHbJl7BM48uIHd/DoXFXRFHEsWk3yr82i0sZNiZOyvY1/fF6bda99Z8VNZB42WyNq0WztVQgyxIeLg4cO3aMvXv3Uq7Vy2YFqyzpkT1rmhhnlRWCxgqv5DPkRx4vG+Esakg/tpnRo0eTmppq8lRycjKTJ0+mevXqbPx+Lq00kQhQ5P1g/Pvyq+CsPCcK0KmeF6uGNMMjJYzx48dTv359KleuzNChQ4mMjGTUqFEcPHiQpPibdGlQwexikkYU6OznrUZrVVQeMdWrV1fKStTaRZXHmYCAAMAQvTp+/Pgjno3KoyQyMlIJvjRs2JCsrCwmTJjA8uXLFVFZvXp1vvvuO/r06aN8xgEMGTIEW1tD6d9ff/2lRH6dnZ0ZPXo03377LVOmTFHEbrly5ZgxYwYffPABVapUoUGDBrz66qt8+umnbNiwgeXLlzN+/Hi6dOlCpUqVisw1NzeXS5cuKb+vWrUKLy8v5ffExEQ+/vhjMjMzTfYrLGyNEV5PT0+sra3x9PQEDH8Lxnk+alRhW0r83XLR7ZxLp3peJjfcuVeO0cvxCoMCqtKyZUvi4uIYMmQI4eHh1KhRg92rlzCzVwMEKHKzXZpArizL92ReZNwXIP3UTirZ5iFJErGxsehrPWtW0BjFrav/S7g8+5bFdaaCKPLOhI+4fPkygpWWRct+pVd9N4tavAiCiCAIuHUZhX3jLrh3GQUIRcSd0ZipVNdF0iPLMlYnNxC368cyqVe1ZA5GE6jmTRrRtWtX+g98HZvq/mYFq2I+VYbIeoOznktsCEnlm6Ct3vK+r4MsyyTvWszSzz/k1KlTdOjQgdjYWFJTU5kxYwa+vr58/fXXjB49mqtXr7Lu8zFMbetETkSwEmE1CtgNw1uzfVx7zk3vworePgxzvcCVFR/zQmNfunXrxvr162nVqhXr1q0jISGBoKAgZs6cSbt27bC2trZoMeluKc0qKioPlypVqhic4lGFrcrjTeF05KCgoEc4E5VHjTFaC+Dm5sbw4cMJDQ0FDPeEr776Kt9++61SmlgYDw8P+vTpA5gGRvr168fkyZPZsmWL8lhAQABLly6lTZs2xc5DEASqVKlCt27dmDBhAj///DO///47M2bMoHXr4j1csrKyCA8PV35PSkpiyZKllC/vzW+//ab02y0uYluhQgXA0P/WSHx8fLHHedgI8r2qpKeU77//njFjxpCbm0u+ZKjNc7K1YvDA17h8+XKR1bujR4/So0cPkpKSqFOnDvNXbuavixnsPn8TSTbcxHf286ZCOVt+PhT5UM5BlmXiVn1AbkwYgpWWyuM3WNyPVs7NRLBxsFhkyZJE/Lop1OkxjBSHKkpfWkPvWF+Dp6+ZsWS9Dit9DrLWAakEF2C5QBiZiyTLsoxt4gWu7fyJGi4C58+fp1zLnjg/P6xIO6GypvC1B7B2cqPi6BUP7HjFHd9YN51/NYTsxGic/V9GU6jPa+Ht7vb7XceXJJqE/8rmPzYQGhpK586dyc7ORpZlcnNzGTVqFB988IGySrh3715eeuklWrRoQa8+/Zjw0RTSk+PJSk9lz5497Nq1i927d3Pjxg1sbW155pln6NKlC126dKFevXpm57Qq6BqfbAot0i9XIwpIkqz2sVVReYwYPnw4V65cQRRFtmzZUqx7p4rKoyY/P59XXnmF7OxsXFxcWLduHZpSGFCq/Hcwfmbdibe3Nx988AENGzYscf/MzEz69OmjRHd9fHy4efOmktZrY2PD8OHD6dGjxz0HN2RZZuLEiZw+fVp5zMbGBkmSyM/PR5Ik4uLiiI6OJjXVCkjB17cqNWrUwMfHh+TkZM6cOYObmxvu7u4AdO/enffee4+1a9eyfPlyAKZMmcIzzzxzT3MsS9TCslLi7e2NXq8nKSkJT09PJYWxX79+9O3bl4iICGrWrKls36pVK+Lj4xk8eDCrV6/mf63rM2vWLM7PeF8RxbbWGhLScx+asEXS49GuHxve7UqHzi9anMIrCAKURtTqdeQnXMPrtVmkCSAU6ApBFLH2qIIABrMkc8fVWKHXOFowP9F8xFSWSfhzFs0r2nEpJozzBZ5Ut0K2kH3jMk4tXsKxbtv7bnpzpxAUMLRrkoJWIyTdbi+jy85AliWzYtw4JrJUJF3cBElCFgRD255ixhQKxkk/uZOsS4F49f8cQRCKGJuZilrL5geG13bc+x+QlZXFzp07yc3NVWzm169fb2L//tdff9G3b1+ef/551qxZw5dffomUdYt2rQM4deoUsizTsGFDBg4cSOfOnWnfvr2StmMpgwKqUtfLiWWBV00WkzrV82JoO1+1f62KymNE9erVuXLlCpIkce3aNWrVqvWop6SiUgRra2uaNWtW4AibyqVLl6hXr96jnpbKQ+by5cscPHgQOzs7E8O7rl27MmLECKX9Tkns2LFDEbWAiVFq7dq1+eijj5Sa7nshJSWFsLAwvL29TYStMfIKEB4ezvXr15XfBUGjnE90dDQHDx4mL0/HtWvXadu2NXZ2dkrE1piKDI9PxFYVtqXE+GLeuHHD5AXt3r07Dg4OrF+/nkmTJpnsI4oiq1atYsSIEfzvf//jww8/5Ndff2Xv3r3YOhnGe5jOyYLGCk3V5ji7utOwbi2SSuGIW6oVI1GDtVd1oOh5GaOiZW2nJQiCwUn4TgEoS4ajyTKeL0/muizh4dqKnFNbybh6BkEQ8HWUuLBpNlSrg0P/r+5/HsqhJdr5OqO9GsgvB9YhyzLPP/88x44dI8+5MpZcBVnSk3v9HDZVSl79kwWB9JBNOLXsVfyogsF8ybl5d5yadcPc0oKxzZPFjehliVPHghjU5yUSExN56623GD16NKNHj+bVV19l/fr19OjRgzVr1vD666/TsGFDNBoNlStXVmo3qlevzjvvvEOnTp2oWLGi+WOaoUU1N1pUcyMnX2+ymKSiovJ4Ub16deXny5cvq8JW5bElICBAqYkMDg5Whe1TyNtv/x9hYYbsu+bNm+Pr68t7771313ThO7l69So//fRTkccFQWDAgAEMGjRIKc+wBJ1Ox9WrVzl//jxhYWGcP3/erBGftbU1eXn5gDdwk4EDB/LKK6+QkJDAuXPnuHjxYkH02BFIUVyRjfdmhVORH5f+46qwLSWFhW3jxo2Vx+3t7enZs2exwtZIu3btSEhIYODAgaxbt44qVaowd+5c3nvvPcU5ec/5uIcjbkWRrj17UauyN9FXjmFbvWWZ1nDKskx+wlWs3atASam9FrbnKU0qbML6T3Bo0h372q0LotG3xZsSnRZE7Gu3MvS93bWYjFM7FPe6pOirOJRV+xtJT3Z4ML99OQtZlhk/fjwODg7MmjWL+vXrk9/qTTIlfcnXCIPbdnPrWA7uPohr51FFUqZlvQ5Bo6GV5iqBHpUK2veULN4M17Pka1pidPgOZL0OfdQpPvjyUwYPHswnn3yi3Kju3r2bfv368dJLL1GzZk3FwODs2bO4uLjw8ccfY2dnx/jx4/nuu+9MDA3KCltrjSpoVVQeYwr3BL169WoJW6qoPFoKtzYJCgrijTfeeISzUXkUZGRkIQiVkeXreHp6snTpUlxdXS3aNz8/n1mzZpGfn1/kuXLlyjFgwACzojYlJcVExF66dMkkEmuOiRMn8uyzzzJixAg2btyEVuvFZ599RrVq1ZRt8vLyWL16NZs2bcLW1pbk5GTgtrAtHOB7XIStah5VSow33MWtgvTr14/Tp09z8eLFu+6v0WhYu3Yt+/fvx8HBgfHjx9OoUSPi4uIMZjcPqeJZliSir0bw999/k35yZ5kbE+XGXMDao5r5elULDZekjGSzzsWypCM7/CjZkadJ3TaP6/P7EL/hU0M3H0EoIqCN5lTuXUZh41OPMWPG4ObmhqzLo7ZDjsXtYkpE1GBXuxXayg0Aw4eZMYp56XIkmeVqWFTTKwAbl33NxW3LqR+7k6zw2+15ZEkiKzyICY1Ffp0+CpsaLUslSMsMUUMze0Pay88//0zVqlUJDg7ms88+o3Pnzmzfvh1Jkrh06RJeXl6Ktf3+/fuZNGkS9esberKV5oNZRUXlv0PhiK2xbu2nn36iR48e/Pnnn3fbTUXloePh4aEsxISHhys3/CpPD4sWfY2/f2X69n2VjRs3WixqgSL9bQGlfjUlJaXI551Op+PixYts2rSJWbNm8frrr9OvXz+mT5/OunXrOHv2bJF7J2tra+rXr0/fvn2ZOnWqMr6RHTt2YG1tTX5+Pv7+zWnTJoCqVU09R7RaLW+++SabN282SYk2Bvnc3d0V/aCmIj+h2NjY4Obmxs2bN4s817VrVxwdHVm/fj2ffPJJieM888wzJCYm8tprr7FhwwYqVarE/Pnz+azX/5iyKfRBTR8wRD+lzBS0XjXQJUaSF3fV8lRTC8dPC/4Tz5eLj1zfidnjihpuHV6LW+dRuJfkFAABAABJREFUZgbSkBaySZmDrMvHyb+3+YCwAK7PDOavv35m5syZjB49mpCVc3B5ebpF8zeHIAh4vTaLrAM/8e233/Ltt99ia2vLCy/2JtTC+mYZg1FZhQoV2PrLN3h4eJCy/weyJA3IIGWnMnHnAm6ET0eSG5TJvEuDLMt4afMZMXIkgYGBfPLJJ+zdu5fk5GScnJx4/vnn6datG9u2baN9+/YcPHiQPXv28L///U8Zw8bGBoCcnJyHPn8VFZVHT7ly5XBzcyM5OZnLly8TFRXF22+/DZRnx46dZGSkY2dnd9f9k5KS6NGjF1FRUfzyyzI6der08Cav8tTh7+/P5cuXAQgJCaFLly6PeEYqD5NWrVpx9OihUu2Tm5vLnDlzOHjwoPKYg4MDEyZMwMfHhxEjRpCbm8vChQuxsbEhISFBicbm5eWVOLa3tzd169bFz88PPz8/qlevjrW1NWAQy0Z3Y61WS15eHqGhofz999/ExcUBUKlSpRLvx41tjZydnZX6YSsrK9zc3EhKSlIjtk8yFSpUKDZia2dnx0svvcT69evNjpGTryclW8/K39ayd+9e7O3tGTduHPNG9XkQUzZBEAQ0jm54DZqLzzvrqDT6Z8B8H1aDeZH5bfLiriDHhCoRRUuQZblIRNbYjibln58RRKu7ztHYAil512Jyo88DhtUtwUqLbeUGWGBPhU3lBoRfiVRWpG6FH8ftyh5DvW6RVkjmr0ORIwgC9s+8hVsdQ/qSra0tn0+fYnGrJ1mS+PSTj0lNTeXs2bNkOVTghSkr8RmxnEqjf6by+A04dhvPV8tWl+q6lxWCIBCfq2HkxnDeXbTBpKdsYmIiNWrUYNu2bcyaNYt///2XH3/8kR9++IF+/fqRnZ0NoBhDqRFbFZWnF2MULD09naysLDQaayARUbTm7NmzJe77448/cvRoILGx+bzzzviHMFuVpxljP1sw1NmqqJREREQEI0aMMBG1Pj4+LF++nHbt2uHr60vbtm0JCjrOkSNHeP31Iaxbt47Q0NAiotbGxoaGDRvSr18/pk2bxtq1a1m5ciWTJ0+md+/e1KlTRxG1gEn/2sJp9EuXLlXuq4vrfWskLy+PxMREgCLeJ8Y625SUFLPi+2GgCtt74G7CFgzpyKGhoZw/f77Y50Mikxm+6hh+03bSctZe/KbtZP0NF3YdD+ell17i7IWI+5hZKXrcCgKCICg1p5ZEawUBi9yCsw7+Qk5mGtoky89FEASyr5wwSa/VZ90CWcbt+bdw7TjMMN9i5ml8rJyQhbu7O8899xwAop2L5VFoQUDjVpmXXu6j7BP192qqX91M1qWjt8WiLJEbFUoNJ6n0/YQlPWK9jjzzzDOkpqbS+sVXcRAtGEfSk3XpCIu/XYivry/vfLsBr4FzOJMk3379RBH7mv54vTaL/ITIe+51fF+ImoK+w6P5bt0OZs6cSevWrRkzZgzz58/n22+/5eOPPwZg6NChbNq0iR07dtC5c2dSUlKUiK0qbFVUnl4KpyOnpqYyaNAAqlf3pVmzRsyaNYtz587ddV9DFEEAbmBhMoyKyj1Tt25dnJycADh27JiJu62KihG9Xs/atWsZO3Ys0dHRyuPe3t4sW7ZMSRG+evUqJ06cICcnA/AiIyNVaftzJ7m5uVy5coXDhw+zfft2/vzzTwIDA0lMTCz2/q+wsO3QoQPNmzcHMEmhL0nYxsXFKeN6e3ubPFfYQKpwz9tHhZqKfA9UqFDhrg3ku3TpgrOzM+vXr2f69Okmz608eo2pmw09NY21tJIMe8Pi2X0ujpkfL+St/zvP2H91FrfgMU0hFizxYborJYpAWSbj/AEc/Mz3qLLz72eo4d37C54F7WTMIUsSiZu/AKD1Gx8T7dECjX05y4W3LFG+/Wuc/GYEvr6+HDhwoNSWyz5vLUSWJLzyb3Jm/QKSYsLIi7tM/oWdxOz+DhkROS8LWZdHXEH/39JccEFjhX3t1vw7/yuqvjAIqXk/0vIls6+1LIjUFWJJqVePiFSZqx4BCIKA/i5O01pP3/tuV3Q/aESBZYFXaezjxBtvvMG6dev4+eefGTJkiMl2PXv2ZN++ffTo0YP27dvzzTffAGoqsorK08ydzsgTJ04kJiaGM2dCCQ4OZtu2HQQHH6Vp06ZF9m3dujWtWgWQkZHBzZuJ1KxZl5Urf6Z169YP8xRUnhI0Gg0tWrTgn3/+ISsri3PnzpmYiqqoHDt2jF9//ZULFy6YPG5jY8MXX3yhGET9/fffLFiwgOzsbCpW9CEuLoFKlaqWaCCVmZlJZmYm0dHRhISEKI8LgoC9vT3u7u5UrFiR6tWrKynH7u7u1KlThxo1ajBs2DDF5RgM0eO7YUxDhqIRW09PT27duqX0wzXW3z4q1DXNe8Db27vYGlswvFl79erF+vXrTVZNQiKTmbo5FBnQ3+EQpZdkZOCTTaFUrB9A5/peFhsXKYLvAUfoZMCuSkMEM/MSBAGbKvVx7fcZVq4+hrRkC8yhsi8dAX0+Wu+axHi0MERnLTBVUo4raki288Hj5Snc1Dug0WiQslJLHbkURJEkOx+8Bs3Fe8hCYlqPp9yb3+MzZhU1X5uM1qsG7du3R9DaW7z4cOf4TrVaIjXvVxAxv7vJk6zXgSzTzeMWYf9uJTY2lvqvjIMiqdF37CdLVHTWlnput/e/v/eSXpLZff4mL/d9lQ0bNrBu3boiotZI69atOXToEOnp6QwcOBBQI7YqKk8zdxpI1a9fH3t7e9LTM4GK6HR5/Prrr8Xu6+TkhKOjIzk5OSQm3uTy5Vu8//6EEo/3559/UqdOfQYPHlKsQ6mKSkn4+/srP6vpyCqFmTRpEi1btmTp0uVFFuxHjBiBj48P+fn5LFq0iNmzZ5OTk4MgCPTs2YPr1yOJjIxk3bp1TJ48mZdffplmzZpR8f/ZO+/wpso2Dt8naboHbemmjDI7GC17L8tSFBApILIRAQUF5EMFBAUUEQVEhqCggAxlC7L33rOFFltGWzro3k1zzvdHyLGhKy1lqLmvi4s2OeM9SXPy/t7neX6PuzsWFhbFBnskSSIjI4N79+5x+vRpVq5cybp1G7l27RqXLl3jt99+4/z58/LfriiKqNXqYiO2+bNUHxeuoaGhnD9/nosXL7JkyZKyvFTlijFiWwZ0qchFGS716dOHX375hevXr1O3rrbv6Irj4SgUQgFRmx/Fo0jX221qsD8kvnRRt3J2NS54eAGFtYNB5xEetclx6Dya9MM/YuriVfwOCiW96zmyZKuETeMeSI+1sinFILGs0ZgbggKLgGjSLuwg5/51zCsbUmf7NxpR+76aungh5WsTlO1YC5cBX3Fpz2IETQ6SWHK09XEkScQioHuJo5Ee1fYm7lvGqpCDNGnShLiEJB6auZd4TkGh5EFqDlDQCdoQysNETJTg4LGTbN26lW7duhW7bZ06dTh16hQdO3YkJiaGixcv0rFjR4POY+xNa8TIv4fU1FQA2alTlxnVpEkT7ty5Q2hoBDY2LiQnJxe6v62tLYCcHgqxaDRVCt1Wx8CBQ0lPtyQ09Gf69u1T4v3KiJH8NG6sbZUoSRJnz55lxIgRz3tIRl4Q1qzZALiRm/uAzMxM2UekSZMmvPzyy8THxzNz5ky90sXOnTvz3nvvyaVZDg4OtGvXjnbt2ukdWxcdvXr1KqGhody5c4eYmBhSUlIKBAeysrLQaHIBV9LSEti5c6fec+fOXSQ3N4uff/6ZWbNmFXotxQnbrKwsBMEUsCry3vwsMQrbMuDm5kZmZiZpaWnyF2l+AgMDqVChAr9u+I3xVWuhUgoG9afVRbrmBzXg8x5+TN16vUQx/CwpreAxUQhUqN2UuD2Lcew8uoBglTR5oFCSfWwV9QcGIpiYYlmzWZkiofIYH0VA7dsPoULbQQgP/6LUOcm6Yz3eHujRsR06j6Zug5pcvnsRk6oBBve7lTR55Mbfw7ySb4mCUxAEBBNTHDqPJtfammPHfsPRoyrWhr425dGD9wmQRJGtv60nsEM7g7Z3d3dn586dVK9enU8++YSaNWvSo0ePIrc/dyeRFcfD5c+VQoBAHxdGtPKiUVWH8rkII0aMPFXCw8O5fv06gYGBREVF0bhxM5KTE2jUqBEVKlQgKiqK7OxsBgwYwOHDh+WeidHR0eTl5RVI07O2tga0LSiaNGmCWq2mVatWRZ4/MTERU1MVEI0gKKlWrdpTu1Yj/07s7OyoU6cOISEh3Llzh7i4OL3enkb+u4wePYKPPvoIBwdn+d5ka2vL+PHjuXLlCrNmzZKFoEql4t1336Vr166kpKTQsW1bbt66xeJHJpuPo1AocHNzw83NrYAbd25uLpGRkdy4cYPQ0FAiIiJ4+DCB2NgEqlatobdtQkICublZgAe7du0tUtgWl4o8efJkzp69SFZWFlOmTCnty1TuGIVtGdCtVjx48KBQYXslOp3qg+ewLs+NdbP3oxAwuD+tKGnbugxoWoU6LjZ8f/g2h269GBbaSFKpIoAaCXDzJePXT1EnRuIZOJhcx5oICoXce9U+9iLWKfd5551NKPLV1JYHgkKB5FgtX5q2JEeTnwhJ5GyKNW+3rczqB4LBsllQKjF1qWb4ayhoj23WahATXmnPos/+h5WBUWKd2VV5vp6GIokamlWyMFjU6tBNBvz9/Xn99df5/vvveeeddwpsV2Kteg8/BjQtPkpjxIiR58u9e/eoW7cBmZlp1Kvnz5gx75CcnAB4cPPmXzRr1hBRFLlz5w516tTBzs6OlJQUQJvRsnv3bl555RW9Y5qZmXH37l3u3o3GycmeOnVqo1QWncmxfv166tf3Iz4+npo1a+Lt7f00L9nIv5QmTZoQEhICwJkzZ+jevftzHpGRF4HJkydTuXJlxo8fz4MHD6hSpQrjxo1j//79/PTTT3J9q4uLC1OnTqV27doAbNu2jRNnzuABjBszhjfeeKNUgSVTU1O8vLz0yjoWLdL+n5qaSmRkJJGRkYSHh7N69WpMTMzJy4vizTffL/KYuoitSqUq0A+3SpUqXLhwxuDxPW2MNbZlQOcIVlid7erTd+mz7BSJFh5y1Kw0AVeFADbm2vWGRlUdWPJmwzLGG8sbCU1GYoGWPCUiKHDs8RGu/WahdtJ+aDNvnyNuwxQebv2C/w17g9SMLBSWFUDMK/dWNYLSRL4hCPG3y+X4gkKJRc1m7Fm3nMQ9i5EkCWUxfXskSet8bKtJRVGW1GBJJN2jCSePHSYr7HSJ74GkySMz9BSZYacLaVX09BEUSj7s3rDU++nSdEaOHMno0aMZNWoUn376aZlq1c/fScSIESMvLqGhoWRmpgGuBAeHYGpqipmZFRBFpUou8na6dOTHI68bN25k69atpKWl6T0eFhZGbq4NUVGRZGRkFDshPHr0KEqlEldXV/r27Vtu12bkv4WxztZIUYwbN4HY2DzCwsJkE6cVK1bIorZRo0YsXrxYFrUADRs2RKVUEgWozM05c6b8RKOtrS0+Pj506tSJDh06YGlpSatWzZg6dSoTJxbuRyBJkixs3dzcULzglvMv9uheUPJHbPOTf9JdpuxhSSTQ21mvVtBcpaSTr0uxwsmwYz9pOrNAxq1TUIzZUeGnlbCs5i+LfEGhwKKaP859Z1Gh3VAm7wxH2XcBnmPXUGnsr4iZyaUXz4YgaqhZ2YOMVW8TuXjIEwtcQaHg4rUQqqjvkbRxCi7qWHkBoijzpRTBpkxuxZKgYG9wDPGJyaSe21qs4ZR2bEp613Ug586VZ5qSrBPRM3v4lSkd2MTEBIVCgVqtZuHChXzxxRd89tlnvP3223IbBV2tenHoatWNGDHy4tK2bVtq1aqDqWkqtWp5sW7dOpYvX0K7du30TEz++usvANlcDrSpduvWbaRnz5507Ph3Gp5KpcLKyg6IQaWywMzMjNu3b8u1u/lJSEggISEBjUbDnTt3iIiIMJpHGSkTNWrUwMFB+513+fLlF6KXp5EXA225RDIgcO/ePU6cOCE/N2DAAGbOnFkg89PPz4/Va9fSsGFDatWuzbJly57KvUnXesjExARfX98it9OmK2v/pp+347EhGIVtGbCxscHS0rKAsDVk0l0cEgIbP3uHrVu36j0+vJUXYhnrbGWR9aSGQJKEbcDLZAYfAUlCMsC1WWeu9bgRlC6Katu0J1Y1m+mJXoWlXYnCrSyuvYLShNvZlpiZmSGlJ2ijmU8ioCURKTeT7Oxspo56k0vr58mitUBtrqDQ6xlcFkQJftu6A5vsOF6vkqc1l3ps/JJG+7j59a3sPnUV+07vPHW3bPncokgbLzt+H9n8idKAzczMyMnJQRAEJk+ezMqVK1m5ciW9evUiMSWNfcGxJdac62rVs9XPPlptxIgRw1CpVFy7doXOnTvi7u6OKIrs2rULT09Pve10EVsnJycqVqwIaM1K8vJyAFfOnz8rRz8EQaBxY3/q1atHs2aNUKlUpKamMmbMmAIt+jZs2ABohfPt2xFMnjxZbjlmxEhpUCgUNG7cGNC2q7t69epzHpGRF4WvvppNtWqV8fdvIC/Q29jYMHPmTAYNGlRkqUSfPn1o06YNgiAQGRnJjh07yn1sUVFR8s9ldUR+ETEK2zIgCILsjKwjW60xaNKtRX8bpUJbSxlon0Dmvev07NmT1q1by0Xljas68HkPPwS0qcoGU56iRtA67Fr5tiXv9Bqy710vUWCWNFRBEOAxsScolPDIYbBgyyPxiVrRSAioLLUrY2nntpY6+vz3MDRk3DqFT+2a/PXXX1SrVg23V8aV+Ho/0dhFkZ+WLcbe3p6/Lh5DiL+tN35JksiNvknsmkncuXIqXzuhp/sRlzR5ZN4+y/1verN5fDcmDe3N1KlT2bNnT6FRkpIwMzMjOzubrKwsQkND8fDw4N133+XPP/+kTl3/UteqGzFi5MXF1NSUL774Qv794cOHVK5cWW+b0NBQ+d6pc0u3tbXF3d0DU9M0atWqwfXr1+XtzczMcHZ2ll1FQVs2NG7cOA4fPiw/dvToUQA0Gg1gCij1JnpGjJSG/OnI5Zk6auSfi1qtJjY2lurVq8t1qTVq1OD777+nadOmxe4rCALvvPOOHChZvXq17DFQXugitmC4sH3cOOpFxChsy8jjvWzTsvNKkX4syKmwkiiiuXuRSjc3Ynr3DNOnT8fX15fjx4/j7OzMd999B8CAplX4bWRz2tZyMnyQglAurVv0EEVy7L1I2DgVu9t7tNHbIiKHTxQllkQq2pjrvU5I2usp6zUJSKjQIIoiOZHBJO3/QRtVRl9Al9h3V1CQdm4r0dHRCILAiClfI9q5GeR0XBYkUUN22GmkvFweWNfgkmN7qOilfzxRg2klX1q/2peWw6aW2Ou2vBAUSlZ/9BYnjx1hxowZ2NnZsXTpUrp06YK9vT0NGjTg3XffZd26ddy/f197PZJEQkICly5dYuvWrSxYsIAJEybQu3dvMjIy+Oyzz7C0tKR27dp06tSJBQsWYGFhQUJMpMEp5Plr1Y0YMfLi4uvrq+f6eebMGWrVqiX/npubKwtO3XaCIODj402bNs3x9PRkz5498vYqlUrv+BYWFoA2kjZr1iyWL19OTEwMCQkJAFSvXh0PDwcqV/Zg2rRpT+cijfzradiwoRx9M9bZGomPj2fixIl69yaAWbNmGRz1rFWrFp06dQIgPT2dX375pVzHqBO2umBdcdtpWwZpjBHbfzOPR2xtzE0MjqYqBNj9dj0WtrdkcvVYgjzScBLSOH78OJ9//jk3btwAtKs9Y8eOxdramkGDBnF86y+86vCcHZIVSixrNadb99c4s/orvn3Zk6zb5/QEaFb4xScW1IJCycN0bU5/TsQFzNOjn8gISdLk4WOrJjE+BrNKPlTs+TEOL4141H9OkMWsJIrkxUdoBe/jEWNRA5JExuEfaVTVgezsbCpWrIiqbhfK2lLIEARBgSriOGaVfHDoNPpRpFs/2qxL7w61DeB2llXZ+gCXFkmijqs1nQNq0KxZMyZOnMiWLVuIjo7m4MGDfPjhh9jZ2bF+/Xr69+9P5cqVUalUmJqaUrFiRQICAujZsyeTJ0/mjz/+ICUlBTMzMwICApgxYwbDhg0jICAAhUJBWloa3rVqkHfnQol/B0qFQCcfV2NfWyNG/iGMGDGCqlWryr+Hh4frGZToUoS1kdqCEYMrV67IPyuVSu7du8fVq1dJTk7G0dFRnhyC1nRqwoQJ8u+mpqZ4e3vTv39/KlSoUI5XZeS/hJWVFX5+foC2NUr+aJiR/xaXLl1i9OjRcn/a/PeymzdvFrnf5cuXad68Fb1795FN8YYMGSIba/7xxx/cuXOnXMYoSZK8YOji4oKpqWmR23733SJOnDjB6dMX8vUIf3ExhjTKiJubm2zvDlqTp451nDl4K77YdGSlQiDQ2wXv6lXwrl4FaK/3vCiKREdHExYWxq1bt1iwYAE3b97kl19+4ddff8W8biAOnUYDZY8APimCQsHSH1dxPTaL3XfVWNRs+ncLn7/OkXFtPxbVG5VLGqygUGBauT45SiWGN9YpBIWS3Gt/klulKS6dRmtFqs5YSRBAk4ekUJJ9cjXHf5qFf6feVGzZB0XlBoiSVvBmhp4m7eIffD11AoHtWuPnXZv3J3zIssQ6pR6Orv74sUfJL5AlUYOgUNKjUg4LLh/F5Y1HkdjiROtjvYKfKoLArdh0/vfxVKLuRXDv3j3u3r1LVFTUo/Q+LQ4ODtStWxcLCwvUajUJCQlERkYiiiLW1ta0bNmSJk2aYGpqytmzZ7l06RLHjh3DxsaGwMBAxowZQ5cuXXB3d2f3hdu881vRXwygrbFtVcOx2G2MGDHyYvHNN98QFBSEWq0mLy8PCwsLsrKyAO1EMSYmBldXV7p27cqPP/6ot29cXBwajQa1Ws3t27cJDQ0F7ElODsbd3Z2JEydSs2ZNli5dikajIS4ursD5R4wY8Swu08i/mCZNmsiLLGfPni02vdPIvw9JktiwYQMrV65EFEXy8vIwMzPjrbfeYtWqVQBcvHiRFi1aFLr/O++M5uzZu0jSCVq3bsm4ceNwdHSkb9++rFq1ClEUWbp0KV988cUTz/+Tk5PJyMgAwMPDo9htr1+/AbiQlRUrZ7q8yPznhW22WkNadh425ialivDkj9ieu5PIiuPh7A+JK9H1VhQlhrcqugm8QqGgUqVKVHRxw69RCwYPG8G1yxd59dVXSTJx+Dti9xyRRJGmb4xG2SQIZb46TkGhwLJGE6xqNtXWmz5pOvIjnkSoKRUCoiiRsGcxxx7exeXNOdrXrxBDKwCLlgNJUTni42TG+V+nkpSaTq6k5I0RY7khVMSl3yy+/kvBN+Eh+I9dzIING7Do7FP6a3pUR6z/XuYTtZKEJuYWSYd/4Vdra5x6TcHMq0mJ772gNCm3190QJATWbd5BFScbqlSpQqtWrahSpQqVK1eW/9c1Js9PZmYmmzdvZt26dZw5c0YvXcfCwoLevXvzxhtv0K5dO71m910a1mBKmoaZu8O0r18hiyeCAFO33QBBMPazNWLkBebChQusXbuWLl260KlTJ6ZNm8bUqVMBZFGrY8aMGSxZsoTXXnutgLCVJIlz584xZ85cOeMJ0jAxsSQzM5OoqCh69OiBl5cX06dPL9AiqGLFino9H40YKQtNmjRh+fLlgDalvlevXs95REaeFRkZGcydO1d2PdZoNFy9GkxiYhyXLl2lXj2t6/CFCxeKPEZOTjaSFA1ozfJ09O7dm127dhEXF8eFCxc4e/ZsiTW6JWGocRTAyJFv8/33i2jQoBGNGjV6ovM+C/6zwlYnRvcFxyJK2vTgQB8XRrTyMqhViaurK4mJiaw8/hef7byJQiEUK2p1AuvzElqhFDau5pWt+HzpWr7be4PkkiJ2TxlJ1ODrZE5w4yBAQPPYRcvCSxCemSOv3vgeCWpdBLl1dXtso8/z3eU/cX59ija9WChmAUMSWXE8gn79+nHu3Dm2b9kENdtwp2p3LEUNQr7exAlm7ph3ep/HI60Gj1MUoQhHPEQNSjdvLOp3wcKnLYii4QsagoBSIRhoZPbkKHvOwse35M9OTk4OR44cYdeuXezcuZPbt29jZmZGu3bt6Nq1KzVq1GDMmDGYmJhw9uxZfv/9dwBq1qxJq1ataNmyJa1atWJY21ooTZTM+KPwyK3uz27q1uvUcbEpU+shI0aMPF00Gg0dO3YiNTWD+fMXsnfvbl566SU6derE3r17C2x/+/ZtTpw4QcuWLalWrRoREfotvfbv38/hw8cAdyAaJyd7atasCcDJkyfp06cP9erVo2XLluzevVtvXzc3NzQaTZEOpRqNhnnz5hETE8NHH32kN+k0YkRHlSpVcHZ2Ji4ujmvXrpGVlSXXeBv59xIREcGMGTNksSgIAt26dePQoUOAC3FxD1Cra6FSqYiMjOSzzz6jVatWNGzYEDs7O0B7j6lUyYPc3BycnJzo16+ffHwzMzNGjBjBrFmzAFi2bBkNGzZ81EqobBhqHAXw3XcLmTnzc2xsbIq8R75ICNKTWLX+Q1l9+i7Ttl1H8djkP7/4LCnSs3v3bnqMmIDrgK9KPJ8gQGcfV4a3qkaDSrbEx8cTFxdHXFwcsbGx8v+X0qwJtfXXugHnd7zV5D36XZKFVXlReEps8dubp94nx7aS4T1SH4sgSpKoTSt+ClFFSZLIDDtDxpU9WKVHYmNpTkREBIKJKVUmbkIyQIAqBDg9oQUuFR1o3n0A0b5aEV/cOSkieljEDgZfe2nfH3hktPU0jMOKoajPTmRkJLt27WLXrl3s37+fjIwMPD09efnll+nWrRsdOnTAyspK3r5169Z4eXnx888/c//+fU6cOMGJEyc4fvw4V69eRRRFKlasiHufT0m1rVrs+6lL+186oOFTvXYjRoyUnry8PGxs7MjONgFSad26NQsXLqR+/foMGDCg0HRha2trNm3axJ9//sn8+fP1nnN0dCQlJYUjR05gY2OFn5+PXNvm4+PDggULAK0BVVJSUoFjBwQE8MknnxToKQnafpNr165FobCkd+/ubNiw/slfACP/ShYsWMAff/wBaLMMiko7NfLv4MCBA3z77bfk5OQA2lY+//vf/2jcuDH9+w9g48aNuLu7UadO7UJaQQrUrl2bRo0a4eHhwZw5cwDtPOhxIztJknj//fflut3Ro0fTs2fPMo97xYoVcsuz2bNny+2q/g385yK25+4kMm3bdSQoENHS/W5IpMfNzQ2bxj1QCBTvhiyJmCfc5tgXk/g9tvD8dGtra5x9mqNpP/ZRW52CxkCPfjLkEg1Ct55RWlGbcXw1QqsBhovafPsKgiCLrqeVKisIApbVG2FZsykN1DfZ/s2H2sdNLQ0StaB9PwVTS9zc3Ag3q4aZKBbfW1cSS/V6lD6+aziSJo/MsDPkJcdi21R703sWAjf/Zyc37g63T+1h165dXLlyBaVSSYsWLZg6dSrdunXDz8+vyDHp2v0AeHp60rdvX/r27QtAamoqp0+f5vCxE/yqrkJJr2L+frZGIykjRl4sTExMWL58GZMmTcLRsTJmZmb873//Y/bs2Xz77bcMHDhQr1YftM6gP/zwA0OHDi0gbBMSEggICJB7ReYnJCSEpKQkUlNTC4haXVnIxYsXGTNmDDNmzNBLS16+fDkXL14EtEk2hR3fiBEdTZs2lYXt2bNnjcL2X8rt27eZM2cOt2/fliOnNWrUYNq0abJz8Pr1v7Ju3VpiY2PZtm2bnIWmQ5Ikbt68WcBQysTEhMTERBwc/tYggiAwevRo3n33XUDb/qdjx46FLsQZQmkitv80/nPCdsXx8AKR2sdRKAS+P3iTiU3t9CKq+aOskQ9isewwpeQWP4KCLIcadA/sjLuLE87Ozjg7O+Pi4iL/bGlpycg159kfEvfM0keh9OJKEARSbp7GuvXA0u6obQskik9sKCW7FRcjNHULAZdVdTDz8CYnKgRTp8oYKikFJGzMTWjXsRMn3BuXOOZiRa/ecR+NoBRCs9SiVKGkhps9D+q0LLXgLg9EUcP/ftoDx5fTtWtXPvroIzp16oS9vb1B+5uZmckrn49ja2tLp06d8G/ell9n7zdsPI/62RqFrREjLx4DBgygVatWjB49GrVajSiKfPTRR8yaNYsPPviAr7/++tHk7xYpKenUqFGVLVu2EBQURO3atbl165be8YoSnZIkcerUqUIdRceNG8eqVatITk6W+91OmDCBdu3a8dNPP7Fx40bc3NzIzc1FpVKxcOGCp/FSGPmXUL9+fVQqFWq1mrNnz5Yp68rIi01MTAz+/o1IT0/Bzs6Rxo396dKlC++9914Bd2FBEHB1dWXo0KH88ccfZGdnY2NjQ9euXTl37lyBkgqAQ4cOcejQIWrUqEGjRo1o0qQJ3t7e1K5dm8DAQPbt20daWhqrV69mzJgxZboGXdq0SqXS8zH5N/CfErbZao1cu1ocGlHi4K0Efh7ZHilP23LG3NxcFqMuLi741A/guKEiTVAw7fMvcLIxK/RpQ8dV7pT2ZitJSGJemQSqUA5RWkmSyL5/AykrFYtazUv+shA1uLUfQLO8a+zP8TLoC0aSJNzEOMxVStyreCFoyk8YPu23VwD8LZO4iLdWvj9jUas9pRLrOi25vm46VuZF28cXhbm5OZmZmcVuo2utZcjnxdjP1oiRF4Nvv/2WKVM+pXr16hw7dliuLatatSpLlixh1KhRqNVqJEnik08+4bPPPsPHx4ejR48SFRUJeBAcHEbFihX57LPPeOONN5g5c6beOYpz7Dx58mQBIezo6MjLL79M48aN+eyzz7h165bc73bLli167TpatGjBjz/+WKBPrhEj+bGwsKB+/fqcP3+e+Ph47ty5Q7VqRRuGGnm6JCQkMG/ePJydnRk7dqxe652yEh4eTnp6CuBKWtpDGjZsyPjx44udX6pUKurWrcu5c+dIS0ujU6dOjBgxgocPH3Lu3DkWL14sZ6vpuH37Nrdv32b9+vVYWlrSsGFD6tSpIwcAtm/fziuvvEKVKqUzyRRFURa27u7u/4i62dLwn+pjm5adZ7B4FBQKBFNL7c+CgKWlJWZmZpiYaPuFKjS5cu/WkpBEkRlTJpOcnPzE4yovyrqCWGnkDyAISI/3eH1G5F3YxMMdXxtkTCUoTRDd67Jx6x9Y1mxmcH1y7vX93L9/n+WLFxr8Hr8ITHvFG2cvb5SGNlR+SkhAprpsf9D5U5GLwlylJNDHpcTrNPazNWLkxeHTTz8jM9OKa9cu06lTJ/bt2yc/V6VKFX744Qc52iFJEtOmTeOVV17B3Nz80b07CktLrRHP9evXsbS0LPA9Vpiw1fWAvHDhQoHv4Ndeew0AZ2dnvvnmG71+tzpRq3t++fLlsqiVJImNGzfy3XfflbgQZ+S/R5MmTeSfz5w58xxHYqRPnyC+/PJbPvjgA958800ePnz4xMds2rQpnTp1xtQ0jVq1anDhwgWWLl1KSZZFAQEB8s+68oaKFSvSrFkzed5TtWpV+vfvLxvf6cjMzOTYsWMsX75czmoTRZG5c+eSm5tbqvHHx8ejVquBklv95Gf69Om4uXkyatToEq/1efKfEra6SI8hKATYu3MbW7Zs4YcffuDDDz/k1VdfpXbt2gDcvhVCzl9ntcZOxSCJGrLCTvH9wvnY29vj6OhIr169WLp0KVu2bOHo0aNERoQZPC7h0b/HJ/V/ezI/xT+2R5MI7WTi+YgnV1cXBFNLgyPGgkKBwsrB8O0FgZtnDjJ06FDMVUrUEedLfI9fFA7din8+kf/HeJIoaXGpyPkZ3soLsYQLLam1lhEjRp4dbdq0BmIwMTHHzMyMr776ilGjRpGYmAho67yWL1+OmZk2s0mSJObOnYubmxuNGzfC29ubBg385OPNnTsXPz8/vXMUtijm5uZGXl4eFy5c4syZC6SkpADaKGz37t3l7UxNTZk4cSLNmzcHQK1Wc/78ZY4dO03btm3lceXk5NC7d2+CgoIYO3Ys7703tvxeJCP/CvIL27Nnzz7Hkfy3SU1NJTg4BEnSLkhduXKFIUOGsHbtWoPmGUWhVCrZs2c3W7ZsxNPTE4DNmzezePHiYgVfYcIWtB4AOpo0acKQIUNYvHgxGzduZNKkSbRv3x4bG5tCj3nr1i169uzJtGnT2LFjBzExMSWO/+LFi1y9eo0bN4JxdHQscXuAgwcPMmPGDGJi1CxdukRv4e9F4z+Vo6eL9JRUy6pzU+3Yrng31Q5BIwgvob5SEBS0clIT3bQpN27cIDExkS1btrBlyxa97Sr2/BjLGk2K7dkqafLIDj9HM/tMcqq2IjhVpY0sA5193Rjeqho1nK0JmLnvqYub51IzImp46FgfKXevwenQkigiZiSWavvszAwOnjyPlJuJ6anfcfH6Z7jFHQ2Nf8r9a6VH6dxFv466z05Zo6SGCtvGVR34vIcfU7cW725ubPVjxMiLwebNv7NgwQL27Nkjf39cvnwZL6+auLi4sHfvn1SpUoXly5fz9ttvk52djSRJpKWlYWtrW8AkJSkpSW+iWBTu7u4cO3aM+PhYwIPQ0L9o3DiAzMxMvLxq07JlEzZs2ICpqSkbN27k1KlTAMTGxpKc/BDw4MMPP5IjKPPmzSMsLAwAQXAiOvpB+b1IRv4VeHh4UKlSJSIjI7lx4wZpaWlFChMjT49ff/2VGjW8UCjCsbBwxs3NjezsbFatWsXOnTsZPnw47du3L/N8tlu3bigUCr755hskSWLr1q1IksSYMWMKPWbVqlWpUKECycnJXL16VW4x9nfvba2Duw57e3sCAwMJDAxEo9EQGhrK+fPnOXv2rJ7hVG5uLqdOnZLvXZ6enqhUKszNzfn4449xcXHRG8eiRYuIi8sCMktceJEkid9//50ffvgBKys7MjJiqVChYqkivc+a/5SwBW2kZ++N2GK3MTTSU90W4m7uJMP7laIn1z3rMqDpK/Ljubm5zJ8/nyVLlshGFra2tvgqY7hTUp67Qkny6c1siwoBvkUwMUUwtcTG3IS9jo6cd3bHqYI1dtW6kGjhUaxILj8knSPSUz+ToDTBvIa2KbU64jyqqgElLgRk3T6LT42qxISdxrZOiwJ9d/V3ENFkJFJp7K9yH1xNTCh5idGYOLgXuFHJbZhK0+rnafKU3wNJQtumqRieNEpqbm5u8ErqgKZVqONiw4rjEewNjvm7H7W3C8NbVTOKWiNGXiBMTU358MMPee+99/jss884d+4c4eHhpKQoSEkJo0OHDsyYMYMBAwawYsUKhg8fXmJZwuHDh2VX46JwdnbO11IsCisrD/Ly8jh+/DjgytatW3n99dfx9/eXJ4bAIyEiAFHY2noye/Zs+TkPDw/S09NRqcyYP/8bvfMlJiYSHh6Ov7//v652zYjhNGnShMjISERR5OLFi7Rt2/Z5D+k/xYMHD9i2bRvm5uY0aNCAhQsXsmvXLv744w9EUSQ+Pp4vvviCrVu38s477+gJytLQpUsXBEFg3rx5SJLEtm3bEEWRd999t0A9r0KhoEGDBhw+fJjMzExu3bqFj4+PXvSzqHEolUq8vb3x9vbmrbfeIiUlhbFjxxIdHV1g22vXrnH+/HlAweXL1zhy5KDe897e3uza9Scg0axZsyKvTaPRsHjxYrZv3w5Ao0YNqFKlCp999hkVKlQw7AV6DrwAs/Fniy7SU1g6r1KhnbYbGulxc3Mj+fwOfhvZnEBvFzmdWDe5/m1k8wL9cE1NTZk0aRIRERHcv3+fwYMHA3Dk959I2L1YK5IeSyfWjevTbrV4rWVd+ThSXi5mFSvh/NokxF5f87D1BEL8RhCbnFmsa3D5op1UpO76hsxbp+SaVEkUDc7BL00dq6BQYO/sRsrZLSVfo0KJxd2TzJ8/n7RzW4sXtYCEgNKygixSBYUCE/c6hYtaSSI3/g6JexaXS/RakqQXtmZBEjVIkkTe9T3UcS181bm0n52iMKTGNj+NqjqwdEBDgmd04dzHLxE8owtLBzQ0ilojRl5QzM3NmT17NnPmzHk0OXoI5GFpacnPP/9Mr169MDExYeXKlVhYWBR7LI1GY1AkzN7enoYNG+Lr60udOrWxsrLC0tIWiMHU1JL09HQ9UQtgZ2dHs2ZNad26NbVr19J7zszMjB9++IE7d8Ll8qTU1FQ+++wz3Nw8ady4MQMGlLJ7gJF/Fbp0ZI1GU+Bvy8jT58cff5Rd0l9//XWqV6/Oe++9xw8//KDXszUkJISxY8fywQcfFOqabgidO3fmww8/lOeCO3bs4LvvvkMsZG77eDqyWq2WTe3c3NwM7iBhZ2fH5MmT5d8tLS3p378/fn5++dzhHQkLu11g31mzZrFgwXx+/PFHRo8eXejxs7KymD59uixqAYYNG8aqVatKbVb1rPnPRWyh/CI9bm5uxMbGElC5AksHNCRbrSEtOw8bcxODUjErVarEypUrWblypZy/fm7dZKwCXsWyVnM5zTjQ24WXa1jw6ei+3Lx5k9WrVzNgwABGf7OOnXE25Iiav8WVoEDlUUf7syQ9m0iqQkHfoN6ES87cTP/7fJr0RJRWFYpthyNp8si8fQ7LWk0NMneSRJHk+Bh6dG/Ivr2Lse80GtBPj9UaWwlYh+zgftgFg/sOCoIAhUSACxOugiBg6lKdgOou2Obc4KqZb5kErq6v74vaDkCSJDLDzmKuTsPErzM3Y1ILdVuu7WLDZ6/6PrGgNDQV+XHMVUqjSZQRIy8gubm5jBv3PufPX+D998fy5ptvAtoJ3rVr13j99deJioqSa73S0tLo27cvXbp0YeXKlQwZMoSsrKwij5+amlrs+XV9a/NPGJVKJY0b+5OcnEyNGjXkutvH8fDwKPQ5R0dH6tSpgyRJnD17lp9//pmwsDASEhLIzc0EXPjzzz3FjsvIv5u6desSExPD9evXOX/6NG+99dYLnb75byI4OJgjR44AUKFCBYKCguTnqlSpwuzZszl37hxLly7l3r17XLlynQMHDvDDDz8xb94cBg0aVOKi2uMEBgYiCAJz585FFEX++OMPJEkq4MT8uLBt2LChbORU2qixt7c3HTt25MCBA2RmZpKVlcW3337LtWvXeO2110hPT6dv394F9jMzM2Ps2KK9ARITE5k6dSqhoaGA9n45fvx4PXO9F5n/pLAFbaSnUVWHUovR/OhMKR4+fIizs/MTTa47dOhAhw4dUKvVLFq0iEVLJnEnKgYpN5M1Zip+ys3FwcGBiRMncvLkSeb9spXEgMGFirH8IulZ9FCTRJFdaZUfRcC1UUdBoUBpaVdyyxmFkrSzm7HzqofapKDLpd55JAlNeiK1a3ih0WhQFNfLFhg8ZDiT92/k4JHj2DTugVKgxKhtqRA1BGvceDh/Mk6+LbHsPplSmWqJGqSsFFQ2js+0f7GhSBoNWbfPYhZxDGXnDx8tkhR+fSEPip9cGkpZha0RI0ZeTDZs2MDSpUsAN0aPfo/ffvuNtm3bMnToUOzs7NixYwe3bt1i/Pjxeu6eu3fv5tChQ3z++edMmjSpzOcvzOQkMzMTlUpFo0aNuHv3bpH75he1pqamqFQqMjIyiI2NZcyYMZiYmOjdrypUqICdnSOpqfF89NHswg5p5D+CqakpibGxuAPRWVns2bOHoUOHPu9h/euRJIlly5bJvw8cODBfKcLfNG7cmICAALZv306vXq8DLmRmxrJy5UoOHz7M0KFDeemll0rVHki3/Zw5cxBFkZ07dyKKIu+//758HBcXF9zd3YmOjiYkJIQrV67I+/v6+pb6eocNG8bx48f12v+YmZlRvXp1QFvXWxru3r3LlClTZBMqS0tLPv30U4P8DF4U/nOpyI9jrlLiZGNWakGardZgXsEZhbk1IRFRZKs15TIelUrF6NGj2fDramZPm0xFezsyMjJQq9XExsby+eefs2XLFhTeLxkUjH36ccC/o8KPizNBafJIqEoIUsH0akmSSNq/jNzYv1ArLUoU4IIgoLR24GbYX+y+EIbdSyMRBKFApFcQFCAIfH8mDs+xa9ggNsGyVvPyFbWPrs+yVnNcPTwJP72bzr6uBrtbaw+gQLCsYLCofeapygoFNlFnsGozpESvbVHUMGTOambPns2Bw0eJfJhSps+Eubl5qVKRjRgx8mLj7u7+6KcHmJubkZGRwa5du+jduzfDhg1j79691KpVi507d/LSSy/p7ZuTk8OkSZNKHT3JT3x8fJHPFSdq8yMIAq1ataJ///5y+yCNRlNgEc7Dw4PVq1eSm5vD//73vzKP2ci/gxGjRxMNVLS3p127ds97OP8Jjh07Ji9meXp60q1btyK3VSqV9OzZ81GkNBY7O0esra1JSEhg7ty5vPvuu1y7dq1U5+/QoQOTJ0+Wheyff/7Jt99+q5eWrBOJeXl5eu2gylLn6+TkJEekNRoNP/zwgxwBBuQWaoZw5coV3n//fVnUOjk5MX/+/H+UqAUQpBe1sO8F5dydRFYcD2fvjVgk/o6ICgJ08nFhRCuvUqVjZmVlcfXqVS5evMiFCxe4cOEC169fJy8vTzbFqFevHm3btuX48eNcvXoVUVDiOf53w1x+JQkBUAgCT6UjqyRp/xU3FlGDlVIkXaMsMGZJFMmOuIhF9UYGnzLyu7ew7zSqRBfpZ4X5n9M59Od2vv55C5uSKxuc/i2JmmLTtAts/wyi7/D3uIQLG4gJvYJLv1kYtEQiieRGXNSaeikUIIlUEpLoW78ib3VtiZ2dXYmHWLRoERMmTDBGbY0Y+Rfx66+/smrVqiIX51QqFY0bN2b48OGYm5vz9ttvk56e/oxHWXZsbW357LPPyhRxMfLvJjw8HEdHR4O+/4w8GWq1moEDB7J/zx4yMzKY9tlnBi0wjRo1ilu3bmFqakrTpk05efKk3vOtW7dmxIgRuLm5GTyWI0eOMHv2bFnQdurUifHjx6NUKjl69Ciff/458PdivoWFBVu2bCmT4Vx2djZDhw6VF/GGDx/OihUrAAgKCmL48OElHuPgwYN8/fXXsiiuXr06M2fOpGLFiqUez/PGKGxLwerTd5m27ToIWi33OIpHj3/ew6+AaRRo05+uXLkiC9iLFy9y48YNNBoNJiYm1K1bl4CAADw8PPj5559JSEhg9erV9OjRQz6GWq3mm8XLWRJjePG2JIlkhp7BqlYzeCSWy8vwCAxr/SMg8fDAChw6DEf5mMiWRI02emnAcSRRJGrRADzeXfNCOBFLosj9b7Q1DIKpJZZ1WuEQOBJEzQshukuLJIqoYm+wfvrb1HZUUXvEfEyrGb5ap3zMHVz33ibtW0J1MZrWrVvL/1xdXQvsr2v1IYriC1t3bMSIkbKhS8/btGkTUVFRhW5TsWJFunfvTmZmJhs2bHjGI/ybevXqkZ2dLdeZPY5CodAz/XN1dWX69OlyCqARI0aeLZs3b2batGncuHEDd8ChTh2u5esRWxQjR44kPDwcU1NTdu7cyaVLl1i6dCnh4eHyNiqVil69etGvX79CU5sL4+jRo8yaNUsWt4GBgUyYMIGMjAx69+6tt9Dn7+/PV199VboLzseBAwf48ssvAa0TfFxcHAADBgxg0KBBRe4nSRLr16/np59+kh9r3LgxU6ZMwdLSsszjeZ4Yha2BnLuTSJ9lp0pMyQRtbOvngQ1QJETIAvbChQuEhIQgiiKmpqbUrVuXhg0b0rBhQwICAqhbty5mZmZs3bqVgQMHUqlSJbZs2SI7LuYnW63Be9pug8aiw+7gF1y7eA7zKvWxqtcJy5pNn7kwLFFQl2B2pWvfk7BnMZ5j1zyFEZYOSZNHdmQwYnY6ljWbyVFKu9wEEhMSULjW0rYNKuG6n1UktmQk7s/vh3f1Kly/fp1stYY60/6kfBLaJfwTDnPt4Fb++usvAGrUqEGbNm1koevl5cXq1asZNGgQ2dnZmJmZlcN5jRgx8iKSkJDAjz/+yLFjxwotP1AoFNSuXZsHDx6QnJz8zMZlamqKUqks1rAqP0qlEo1GW3ZhZmbGhAkTaN++/dMcohEjRh4jNTWVgQMHEhMTw/mzZ9FIEn2Dgli3fn2J+7799ttERERgbm7Ojh07AG1a7549e1i5cqXe/adChQoMGTKEzp07GxRdPXbsGLNmzZLvER07dpTbnun6YQO8+eabcpeUsiCKIuPGjdPrbwswePBg2bDvcTQajdwGSUe3bt0YO3ZsgWtLT08nOTmZSpUqlXmMz4rnH/L6h7DieDgKAwsoJVFD74+/p3Xr1vzvf//j5s2btGnThmXLlnHx4kXS0tI4f/48y5Yt4+2336ZRo0aYmJjwySef0LNnTzp16sSZM2cKFbWgrQvu6O0MBkpbSRS5dvEcbVo2xzr1Dg+3zOL+N725v3AAlUgs0PboaSBJEojF11yWeDUKJVkRl5ByM0vVIuipoVBiXrmuNiVat0ggKEhROaBwq4367AYkAyKPL4aoBRAQlFpzFICVJ+5QXlXaSoUClzb9uH37NlFRUaxfv57OnTtz/vx5hg4dSo0aNfDw8GDp0qUAnDt3Tv4iMGLEyL8PR0dHJk2axPbt25kxYwY1a9bUuxeKokhISAjJycmlqhN7UnJzcwuIWgsLC3r16sWaNWsYN26cXrZJ/vtUTk4Os2fPZvny5cb7lxEjz5DVq1eTkZGBjY0NTZo1Y9iwYaxeY1gApLDsQ6VSSbdu3Vi1ahVBQUGoVCoAkpOT+fbbbxk9ejSXLl0q8ditW7dm6tSpslA8cOAAX331FQ0aNNDb7knLGBQKBaNGjQK097CEhATy8vKKvHdmZmYydepUPVE7dOhQ3n//fT1RK4oiW7ZswdXVA09P/X7eLyrGiK0BZKs1+Hy6m9IY1wpIbHyjEg3q+sofiKJITEykf//+7Nu3j9mzZzNp0qQSxc6yzfuZfTa7xO0kUUNm6Gkq3fmT1atX89JLL+Ho6MiDBw9ISkrCrJIPLm/OeariStLkgUL5xOfQtcZJ3LMY82r+WNVs+gz79eYbx6PrgRJE6TNqt1ReSKJI9MK+WJqasP9KBG8sK9/eewoBgmd0KWDUlpyczIkTJzh27Bjbtm2TVxzt7Oxo2bKlHNFt1KiRMYprxMg/EEOzUjIyMli7di179+4tsgXPs6RKlSq8+eabtGnTRm+yp9FoOHz4MOvXry+y92WDBg2YOnUqtra2z2i0Roz8N3nw4AGDBg2SBaq7uztLly412HRu2LBh3Lt3D0tLS7Zt21bkOVasWMHRo0f1Hq9evTqtWrWiX79+xUZwT548yeeffy63n6xfv76eI/KWLVuwtrY2aLzF8emnn/Lll1+Tm5uJjY09gwa9ycsvv4ynpycKhYK9e/fy559/kpubK49XpVIxceJEOnToIB8nKyuL/fv3s2XLFs6cOfPIkMsDb29HgoOvFHH2FwOjsDWA+LQcGs/eX+r9mkZvoWPLJnTu3JnKlSsX+sV++fJlevXqRUpKCuvXrycwMLDE44aGhtKsWTMqv/Y+ya4Ni99Ykohf9xGZ967LD1lbW9O/f39Aa+qh8umATfsRT60utLxTbSVJImX/MtkV+VnjZZ6JjX1FrkanIxXXzkjUPBfhXRYUSAS4qNj5UQ+ys7PxGvgFea4+pTK3MoRzH7+Ek03R4nT37t106/4aK35ew72/Qjl1/CgnT54kPT0dc3NzmjRpIgvdFi1aYGNjU67jM2LESPmyYMECJkz4EDs7e7p374qrqyuurq54enri5eVF1apVqVChQoF7eXBwMKtWreLq1avPNPqpVCpp06YN/fr1o1q1asVuK4oip0+fZt26dQVSAEHbKuP999+nXbt2L1BmjhEj/y7Gjh1LyKNaWqVSyZIlS0r87OZn6NCh3L9/H2tra7Zs2VLstteuXWPJkiWEhYWRkpLCuXPnAYmgoCDWl5D2fOrUKT7//HM912LdmP/8888y3SMkSSItLY34+Hji4+M5evToI8MsFyCWDh06yA7NkiRx+PBRNBpLIIUWLVrg7OzM9OnTqV+/PqB1kd+2bRu7du0iLS0N0JpTnT17kdzcTObPn8+4ceNKPc5niVHYGkBZIrY6UyEpT9uXT6lU4uDgQPXq1fH396dV2/ZExj5k+icfUaemF5s3by6235Su325uRirtWrfAxMSEU6dOMX3rFbbeTENCP3r4uJHVL7/8wrvvviv/oQLUrFmTsLAwfH19uZ9timndLljWam5QXWhp0EVay+14mjxM4kKIv3YM+8BRIIlPLMAMvV5Jkmiee5Gz5g1L8fcg8jSz/ktj4lXMQfjyJWc+eOs1Yh8mGuy6XRqKitjqOHcnkS+3nOV8jBpBoUAhQKCPC0ObV8Ek+R7Hjh2T/8XHx6NQKGjQoIGeIZWzs3O5jtmIESNPhrOzO/HxEhBD/fr1cXJyKnQ7U1NTLC0tsbOzw8nJCVdXVypXroy7uztXr17ljz/+IDMz86mN08HBgd69e9O1a1esrKzIzs4mOTmZyMhIIiMjOXDgAOHh4YwePZpXXnlFb19Jkrh8+TLr1q2T0xNzc3M5e/Yi2dnpvPvue3z33cKnNnYjRv6rHDlyhJkzZ8q/jxkzRs9w1RAGDx5MVFQUNjY2bN68ucTtRVHkwIEDfPTRR1y4cAFwx84uh/PnT1OjRo1i9z1z5gwzZswoIG5//vnnfK3R/iY7O5v4+Hji4uJk8RoXF6f3e36PAkmSuHEjhPj4BCpXdtczs5MkiaNHT6BWi0AerVq1wN/fn8aNG2NnZ8eVK1c4fvy4Xmsi0EaXu3fvjp+fH46OjiW+Ps8bo7A1kJFrzrM/JM6gnqNKhUCgtwuzulZlz549HDlyhEuXLhEeHk6GpSvWjV6TzYYkUUS6f5lK6bdo7e1Bx44dady4Mfb29sDf7YX2BcdqhZQkoo64wJsNXTm5fQ0nTpzAo0Eb8mq0w8yrkSwIOvm4MrxVNb3WQ61btyYpKYkbN27IrYR0eHt7ExISwqs9X+ePPQewaxGETcNXyj3SWp5iOX7xW5g17oVtk17Akwk7SRIREEpMHZYkEfHeVZRVGpTm4E89Jbmsr63ubyDn+CpiT2zCwsICtdICj3d/MfgYqox4RGunYvsE6z4TSwcUnmGgcxwXBPQWDJQKAVGU9JzGJUkiNDRUFrlHjx6V0wFr1apF69atZVOqqlWrGiMlRow8RwYNGsIvv6zCxMScZs0ayX1gMzIyuHv3LtbW1nh6epb751QURTlSURy2trbY2tqi0WjIyMggOzsbtVqt9/2Yl5fHkSPHkCQrTEyyiIl5UOQELyQkhJ9//pk9e/Zw+fJlwBV7ew2JiXHldGVGjPzz2bdvH+8MH041Ly9+37KFChUqlPoYOTk59O7dWxZ2tWvX5rvvviv1vWTQoEFER0djZ2fH77//bvB+Dx48oFmzlsTGxuHjU4s6derw/fffy/P3ojh79ixTp05FFEXS0tJISkqie/fuNGzYUE+8xsfH6wWjyoJKpcLa2prs7GyysrJIS0vjwQPt/as4kapQKGjdujV9+/YtUay/aBiFrYGU1hX5t5HNC/SzXX36LlO3XS+QoqpriZK4ZzHpl/8EtL2tXFu9gdSwD4IAUj4TH932Tnf289EbrQkPD2fSpEn0GzCIBYuXYWNuohcVy1ZriIpLoHb1qrRs2pi4uDiOHj3KuHHjWLdund4YbWxskGq0wqHTaO21vKDCFiDu989wen3qMxcuOuMqQ/sIw7MxiNIZdBmaTi5JEjlRISQfXYMmOphffvmFX3/9lXMXL2P+1mIoLs06H1k752Derfi68KI+E2DYZ6u4/QEiIyP1IrrXr2tT7z08PPQiur6+vgZNdo0YMVI+aDQazpw5g1KpJCkpibt37xIdHc3ixct4+DATSMPf31+eZOXl5ZGRkYG1tXWZejqKosiFC1dISUnAwcGBBg0aPPFnPi8vj6NHjyOKShQKDW+88Trm5uYoFAry8vKIjo7G3d1db0KbnJzMpk3byMhIwc3Ng61bN9OkSZMnGocRI/8WvGvWJO32baKAJUuW8M477+g9f+PGDfbs2cMrr7xCrVq1Cj3Gxx9/zLlz5wAwMTFh48aNZSpPeuutt4iJiaFChQr89ttvpdo3NzeXiRMnyqnQvr6+zJ07t1hvnYyMDEaPHk1ERAQnTpxGFNWYm1vTsmXTUs0Vzc3NcXJykv85Ozvj5ORESEgIf/6p1RJTp07l7t27/PKL4cGK/Hh6euLn50f16tXJyMigY8eOuLi4lOlYzwqjsC0Fa87cZerWsvWxPXcn0SAznlfMQ4k4u5/g+BzEDu+X8EcuMaGewKSh2hWrI0eO0KZNG71zLjsSxsFbDxElrSAT712iYsJVWtZy5eeffwa0Nt46noWZVKFXUkrRK4kimbfPYlm90XPpF1ua1GV4+sJWkiTSzm2jTsPmRAlOj9LJRbSSUELIJ1L//shrH5dEkcyw06z+ZDDfTXufqKgoHlR/Bes6LYrNUNBFYd9wS6bnpG+wDxyFUgAx3yJMYRHXxzEkG6KkiO/jJCYmyoZUx44d4/z58+Tl5WFvb69nSNWwYcMndlzVlQk8vqD0rPY3YuSfSOPGzblw4QqSlEVAQAAODg5oNBpOnz5PVlYatrb2NG4cUOp7Z2pqKmfPnpV/r1y5cpET49KQlJREXFwcTk5OODj8vcB2/vwlkpMTUChUtGjRVI5IA8TGxnLt2jXAFR8fZ27ceLFNV4wYeRaIokjt2rW5ffs2CuDg4cO0bdtWfv7q1as0btyM3NwsHByciI6+LxtH5uXlERwcTGRkJN9++628z+jRo+nZs2eZxjNgwABiY2NxcHAoU+/shIQE3n33XR4+fAhA165d+eCDD/TuXampqZw6dYrjx4/L85H09HROnz4NuCEIsXTo0L7I+51CocDW1paKFSvi4eFBtWrVqFatGu7u7ri5uekZa65du5ZVq1YB2v64hrg3W1tbo1KpSEpKKvT5C2fOkJSWhpuTE8GhoWWKsD8rnr0ieIEpaYI5oGkV6rjYsOJ4BHtuxOhFmIQi0n9BKyQ++eUAksa0WBGmVAjkVW/Dzk8/YNjK0xwMfVhsFEvSaPhs4xk5DaNXr15YWVmhUqnIrdIMoXFfvQieoFCg8KxPYpUANh5dSWZmJp07dyY4OJjExETUajWOLftoI8rPQSwaiiSJ5ETe0G+zU+z25dwnthTHe1YLBIIgYNP4NS6umYQm4S5+DRqSGBtNbK4pNo17/F07/ajeOX9dsqBQYFmjCe/8HoqzXR1cURB6dR8WtZpRXLsfjSgSVL8i7/YdiFteHp53tnMlpyLWdVogIWhrZL1d9D4TmZmZREVFERkZSVRUFHcjo9mT7FNiqrZGlNgbHEO2WmOQ+HNwcKB79+50795dPu+ZM2dkofvZZ5+RkZGBhYUFTZs2lYVu8+bNDXYmfLxMQFcTPKKVV5GR5fLc34iRfzK//baOqVOnkpWVhZ+fH9nZ2cTExHDo0CHAhdTUWDQaDSYmpfsusrS0xMTE9JH7qH2hPXKLIikpiZCQMCwszKlb10fv3Pb29oWmGGoXht0QxQdkZmbqCdu/J5sxuLrWLdV1GDHybyUkJIQqVapgbW1NkyZNZFEriiJbt25l0aJF5OZmAa4kJsaSmpoq1+a/8UYQW7duxtzcmmbNtK0yXV1dS11Xmx9dTWlZ52uOjo5Mnz6d8ePHk5uby59//omXlxdt27aVF9ivXLlSwATP2tqa6tWrEx+fSOXKPsWeXxRFkpOTSU5O5vbt2xw5cqTAGNzd3XF3d+fBgwfy4yWJ2iZNmvD666/j7++PIAgkJycTHBzMtWvXuH79OmFhYajVapLS0nABHsTHc/fu3Rda2BojtpRtgqkTwSqlgFojFSmGs7OzGTn6XQ47vWaYGY8kYrJ9CuruMw0TbY+ZVIFhUVdJkhheNZWp7/Rn06ZN9O7dmypeNRD6zDewO+7z42lFQU2VAmqNqJf2/Twp7XVKmjzy7l7CMWQzHTp04LvvvmPatGnMmjWLPEnArEoDXHpPLV5E6m4HgiDXBiser3sVtEIzcd8SCDtGXl4eFy5cwNHRkU8//ZRlK36iQeNmvNS2NQlxD4iKipLFbP5G5wD2bpWxHbTY4NekJFdlQ1Gr1Vy+fFmu0T1+/DgJCQkolUr8/f1loduqVatCzW50NcEKhaAXaTYkQl0e+xsx8k8nJSWFkJAQbty4QXh4ONHR0SQkJHDmzDni4uKoVMmDOnUK7+VeEllZWQQH30SSwNu7FlZWVgbtd+bMBdLSLIEofHx8qFKlCiqVChMTE0xMTJAkqcC/e/fucetWOA0b1mfkyLfltGfdffvSpUsolUo++OCDf4TxihEjT5ulS5eyadMmACZOnEjnzp1JSEhg7ty5j8yY4P79+8TExOPh4cq6deuoV68ekiRhampGXp4DEEujRo1kgeXs7Iyvry++vr74+flRtWpVg0sZ+vXrx8OHD3FycuLXX38t83UdPHiQL774Qv79cS8bHVZWVmRkZBh0TEEQcHJyQqVSkZCQUKqFOkNYsmRJsTW0WVlZ3Lp1i9mzZ3Ngzx5e7dGDH1eufKFLuv7zwvZpTjDv3btHr169CImIxOntHw3eL2r5aDxGGD7Zv79wAMsWzOWNN94gODiYKXvu8le2VbE1kpIkYZYZR2/r29SvX5+33noLe7cqWPSfb/B5Czvms0xhLvfziRokQfHczYZ0KcRCPnFp8L6iyDiPu0wY9x6VKlUiMjISLy8vIiIicOr5MebVGxefuv3Y+XSiVpvQrO3PXN0sHc+MME7tWMutW7e02ykUBZz0VCoV3t7eeHl5UalSJTw8PPDw8ND7WWlqbrDjeEmuyk+CKIrcvHlTr0733r17ANSpU0cWum3atCFOsnmimuDyqCk2YuSfwo0bN5g7d66c8v/w4UMyMjIK3C/y86y/S3QEB4cQHR0FoDdp1mFjY4OHhwe1atWiYcOG+Pv7G9wr04gRI9rP9ltvvUVsbCxKpZKNGzdy/fp15s2bR2pqqrxdo0aNOH/+PAADBw7krbfeAiAwsBP79+/Dzs6RgIB6RYpXS0tLvL29ZaFbp06dIj+rQUFBJCYm4uzszNq1a0t9TQ8ePOD48eMcO3ZMrrV9HBcXF3kesXv3brkGFrSmV7q5lJ2dHc2aNePgwYMFnJObNm1Kt27dsLW15cGDB0RHR+v9n5yczMOHD8nLy8PFxcWge6hSqZQjvY6Ojpw7d45atWoxefJkveyTfxL/aWH7NCeYBw4coG/fvlhZWbHut028uSXGoMm7gMTBdxvTYdF5gyKn+SO2giBgZVsBh3d+1qupLHJfSSJ23Sfk3LuqPbeJaZnavEgaDTy2Sm3EcPILWUl6FC/O/zqWsh9u5HdvoclIomPHjvJq6Mwv5rAixbfMLXwkSSLu98/IuXsFc5USe3t7oqOj8fb2platWhw7dozU1FT69OnDJ598QlZWFq+//jpZWVls3ryZli1bFnnsp1FjWx7cu6ffYkjboBwq9/8cwbN+sQtHxY33Rb1eI0bKm5ycHFxdPUhOTkShMKF16xbFmqroUKlU2NjYYGJiQmpqarlHKYpCFEXi4+OxsLDA1tbWoH3MzMyoWLEiXl5e1K1blxYtWuDg4ICJiYnx+9CIkccICwtj9GitOWn9+vWpVKkSO3fulJ93cHBg0qRJeHh4yGK2QYMGzJ07l1OnTjFt2jTZ8VypVNK9e3fu3LnDzZs3i71PKBQKqlevLgtdX19fKlasCECfPn1ISkrC1dWV1atXG3QduvnB8ePHuX37dpHb2dnZMW3aNOrWrSvfD0aMGCF3cgD43//+x/Hjxzlx4oQ8nt69e7N161a2b9+u54MD4OPjQ1BQEM2aNUOhUJCamsqJEydYtGgRu3btAqBatWpyqx+VSkVeXl6h0eP83L59mzt37iEIMH36p0ybNs2g1+JF48UtpHwGrDgeXiBS+zgKhcCK4xF6wra4WlxJkvj666+ZPHkyHTt2ZN26dTg6OhJ4y9DJrCtV3JywS4sgydKz2OiaIIkoYq5Tyc2FBg0acO/ePWJTsgwStaAVoZVeegur86u5efMmubm5ZIad1tauFnNePSH2yHgo7dxWVE5Vceg8uoAzr14E0kghCGSfWI15y7cKf41KIWolScLWQsUfe09Qo0YNIiMj+eOPP1Bj8kR9aZUKgZ7jv2RR3wakp6fTsGFDXnrpJXbv3o1SqSQrK4t58+bxxRdfsH//fmbPns3p06cJCgqiffv2LF26lKFDhxZ67OGtvNh7I7bY82tEieGtDG+4Xh5UrlyZN998kzfffBPQRpoOHTvBh2eUBtUE77kRw/adf5Kc8HffuQdxDznm2rNEx+nS1hQbMfIiolarSUtLAZwQxTi9KK2ZmRm2tra4uLjIBk9eXl6EhYWxc+dOIiIiCp2IPXjwgIiISBwcbKldu1a5fq8oFArZ8dPExARHR0dUKhWJiYlF9tDNycmRyy2OHTvGpEmTuH37NnXr+nPs2CHs7OzKbXxGjPzTOXbsmPzz3bt3uXLlb0O1li1bMn78eHlRydXVlZiYGNksau7cuQByGmyfPn3keUVeXh5//fUXN27c4Pr169y4cYPExET52KIoEhYWRlhYGFu3bpWP7+vra9DCmSRJREREyKVLd+/eLXS7atWq0bRpUw4fPkxMTAwpKSls2rQJPz8/BEEgPT1dFrWSJGFiYkLz5s3x9fXl7NmzqNVqNm/eTNeuXRkyZAhBQUH8+eefbNq0ifj4eACCg4P59NNPcXBwwM7Ojnv37qHRaPjrr7/QyroK8v1Kp0XUajWDBg0iPj4eU1NTuaWZSqVCEARyc3Mf3Z9VSJIoR5D/ifxnhW22WvN3b9hiyD/BvBaVUmwtbnp6OkOHDuW3335j8uTJzJw5U06TeLOhG3tuxFCcGY/4aPL+8ccfc2vbH7gM+LLYsUmCgvjjvzNl/GTeHzMSc5WSbLUG72m7Da6TVVeszbXgm3KNbtq5rVjWal7CXgKx6z5B/fAeUm6mvG9OVAjq+DuFmhUZRW3hSJKE5uEdzDz9QBJBeHIRY2ZmRtu2bR+Zp2gpazRehyjB6cgsFCozevfugqWlJevWrZP/vi0sLJgyZQqDBw9m8uTJDB8+nICAAL7++ms2bNjAsGHDuHLlCvPmzStgBtO4qgPDW1dj+bGIIs8vAMuPhwM88/RcURRJSkoiPj4eMytbEAqf4D6OBPTs0x8xMxlbW1ucnZ1x9KgGboa9B6IEadl5RmFr5B+LtbU1v/66lvnzF+Dp2Y4333yTunXrUrlyZfneIUkS58+fZ/369Xz33XcFDFZ06PrNHjx4BFF0JjPzPm5urk9NOObl5REbq11wc3Bw4JVXXsHf359r164REhLC/fv3SUpKKjDeu3ejAVeuXbvEkSNHePXVV5/K+IwY+achSZKesNV5bpibmzNq1Ci6du2qN1esW7cuMTEx5ObmMn36dO7fv09sbCxOTk54eXkRFBQkb2tiYkLt2rWpXbs2vXr1QpIkYmJiZJF748YN7t69q7dYFhMTQ0xMjPx7bGwsH3/8sRzVtbGxITk5mYsXL3Ls2DGio6MLva5atWrJnhyVKlUCoHPnzrz33nukp6dz8uRJfvnlFwYPHiynKkuSxLVrN4iLi6Fv3/5s27aFN954g19//ZW8vDyWLVvG559/jqWlJa+//jqvvvoqe/bsYe3atbL7cmJiop549/T0JC0tE7VajZdXTUBbSgXaxQDdtroxhoeHo9Fo2LJlC5mZmaxYsYLvv/8eQRAYMGBAad7aF4r/bCpyfFoOjWfvN3j7/3Wuw1d7bhZZi/tecyd+/GgI9+7dY9WqVbz++usA3Lx5k8WLF/Pzzz9r+8MGjkKhEPTNePLV86qDDzJ06FDmzZuHc8vXmbq1YP2vpMlDUJrgbiESlfHI7TifyF50OIzDtx4afG2fB6iZ/P4YNBoNcXFxWNXvUnjkVZMHCqVev92iUJhbY93oNSq07AsYU5SLR0ISpSeKqObn/sIBiJnJgPZmZmFhgaOjI2YvvUeOY80nao/UNnE3G35ezokTJ2jYsOg02ZMnTzJu3DjOnz9PUFAQdevWZfr06bRr144NGzbotcvQ1bkLj5lUPU55GitlZmbKUdS4uDhiY2P1fs//Lz4+Xp68lmaBQBJFGoT9zFv9+9K9e3fMzMzIVmteiJpiI0aeN7dv32b16tVcuHCBnJycQrextramdevWNGrUiG+++YaMjIxHBk9JhbbXKQ900aDCaoAFQaBatWr06dOH9u3bo1AoSEhI4OzZs1y+fJnw8HD27dvH3bt3cXJy5fLlC7i7u5fr+IwY+ady6dIlJk2apPdYzZo1+fjjj2WxlZ89e/bw9ddfA9p+2EeOHEcUFQhCHmvW/EL//v1Ldf60tDSCg4NloXvr1q0i7z13794lLCwMExNzmjQJwNLSUu95Hx8fWcy6uroWeozz58/zySefyPeSKVOmEBERwdq1a8nNzeXo0aOACxDL/fv3cXR0ZOjQobJwnT17Nn5+fpw+fZojR47IEd2iMDMzo2nTpo+Oq2XlypVUqlSJ+Ph4+fVq3rw59vb2ctryN998Q926dVm3bh0//fQTADNmzKBFixYlv6gvIP9ZYVuaCaYkiQgIxaYfSpKE2dFFbPvxW2rWrMmOHTv4/vvvOXDgAE5OTowYMYKRI0cSJ1qz4ngEe4Nj5Kivrk1Qxt1rBAYGMnjwYJYtW4YgCJy/k6i3vSSKWKmTyTRzQJBEpHwpjbqJ/+AWVVl58o5Br4NCgO2DvXm5+6u0aNKQ39atRaPR0H3IOE4lWWJVuwU8SjnOCjtF+oXt5D0IBSg0Z9+sko82YluzWbkJtX8KkiTptdF5PoMQ8Qv5iZpeVXF3d0cURVJTU7Vuo+EPSQwYXOZFBl09d52a1alduzZ2dnbY2toW+b+NjQ379+9nzpw5cv3tzp07qVChAtu3b8fHx8egOvfHKazuPS8vj4cPHxYpTh//V5gjoaOjI87OziX++/JEAkduJxVfViCAp5DEw21fcuPGDezs7OjZsydBQUFsjnPkwK14Y42tkf8ka9asYdiwtzE3tyAgoF6BDA4LCwuaNGnCG2+8QY0aNfjpp5/YuHGj/LxarSY+Ph47OzuD3Y7Lgr29PVZWVkRFRRWaEq1SqfD392fw4MHUrFlTflySJIKDg/Hw8HihW2IYMfIsOXLkCF999RW5uX938Ojbty8DBw4ssu4+JiZGrrPNy8vjyJFjSJIVCkUG0dFRctlAWVGr1dy+fZuJEyeSm5urZ4KpXUCzAKKpU6cOlStXpl69erRq1YqWLVvK9bklsXnzZpYsWQJohWeVKlUIDQ19lKlyiZSURJycXImKuodKpdJzVrawsEAUxULFd8WKFfH19SUpKYmrV68Wef4BAwYwaNAgrl+/zgcffABAjx49qFatmtwH+O233+aNN97gl19+kWuMZ82aRZMmTQx7IV8w/rPCFgwzcVEIoJLU5EgmxdfViRpqWGRhf+N3Dhw4QFJSElWrVqVFixb4+PggSRK5ubnk5eWhVqvJVmvIypOQcrMQ1TkkJSWxa9cuKlSoQLNmzdBoNKjVavl/tQh/3YsmTWmNS9DMEkW2JvkBygpuxbf80eShyUhBaW0vpw1n3T5L6plN5ERp0yUEE1MEU0u9lOOisPbvikOngpHesqCLDpdZhD1zV02Jrl7mnLtxm3gzD+3raegYJEnrOPyE41UKEOjjytIBDUlNTeXkyZMcPXqUI0eOcO7cOdRqNfYdhmPb+LVSOS0DSKKGrNDTON7cQoMGDUhJSSE1NbXA/yXdThQKhfzl0aBBA8QWw0iy8iyx5jQ/giRSIeM+Fa7/JkdaExMTC5zbwsICFxcXPVH6+O+6f7paOkMorencjRs32LBhA+vXrycsLAwnn2ZYdv+k2PfA6Ips5N9KzZo+3L6dAkTj6+uLm5sbpqamNGjQgL59+8q1aHFxcYwbN06OXuTHwcFBLwXvadKwYUO8vLw4dOhQoWMBbZp0+/btGThwoMGmU0aM/BfIzMzk+++/Z+/evXqPT5kyRe5fWxQPHz6kf//+8nd7o0aNiIqK4vXXX+e1114rtzG+9tprZGZmUrlyZUaOHMm7744lKiqS6OgorKzs+O67b+nZs2eZFqp0vjuPXz9os0KysrJo1qwZX3zxBefOnePw4cMcPXq00LmUg4MDrVu3pl27dvj4+MjZJffv3+f3339n3759BSK6CoWCmTNnkpqaypdfassbR44cSUBAACNHjgSgbdu2TJkyhR9//JH169cD8NVXX+Hv71/q630R+E8L27JEi4qjsJ6y5U3Fnh+XbO6kySMnMgSzyn4l9rJF0k+B1f05pJ7ZTPLhlQaPy5DeuYYiiSKZoafIS47BtmmvginRogZKaMvzPNpF3F84AEVuOhoUmNtUwO6ldzDzalQq0fZkSLRVX+TG4e1cunQJURRxcXGhTZs2eHt7s2rVKoTOk8CxaumPLEnErpmEg5jMxIkTGTlyZIFoiSRJpKenFyp4U1JSCA8PZ/Pmzdy6dUtrXiCC54TfDTY70z+ZSLPI33BzKjrK+jSjOWvO3C20TKC4dGlJkrh8+bJW5J6PQmoUVCDCb+xja+TfzjvvjGLZsqUoFCoGDOjHqFGjaNq0qd79etOmTSxdurTAvhUqVOCLL77gww8/LOAUWl6Ym5sXMJNRKpX07duXl156iV9++YXTp0+TlZVV6P6VKlXitddeo3v37gb30TRi5N9IcHAwX375JQ8ePNB7vEaNGnIUsyg0Gg0ffvgh165dkx+bN28e9erVK/dxdu/enezsbKpWrUpycjKbNu1DEHJ4772RzJkzBzMzsyc6fm5uLh9++CFnzpzh6tVgBEFBgwa+cnqzi4sLqampRd5TAgMD6dy5M35+fsXeUxISEti6dSsbN24sUEpRsWJFbt26hZWVFbNnz6ZFixb06NGD7Oxs2Q06f3/hb7/9Fj8/vye67ufFf9Y8CrSmNZ/38CtyglpcJLcwBIWCim6eBPjUoGHDhgQEBGBra4upqSkqlQqVSoWpqSlKpVKOXGk0GoYPH05ISAibN2+mevXq8nOCIMjbBAYGYmphRWqdFiWmTwtKE8w8fUnctwyHwJFF1soKQsH0at3kwrZpLwByzqzHz8+PmzdvkpaWVmj9kYWFBRWa99a2pXnSSK0oEvX9ICRJQsrNJCvsNLZNemBRU2tGJSDhZy+RqVYTnqmLsP19DTphbp4ZS46lC1I5RI8NHbeUm4lKpaKKuzuWlpaEnvodF6/GxdiFga477BOfX5LIjQ3n0IEVBAQEEBAQgCiKcs3Xb7/9hnXDV3BwqFLqs0mShPrkL+xbt4yVK1fyv//9j9mzZ/P+++/z7rvvyquYgiBgY2Mj93p8HLVazauvviqvCipcfMomagEEBd8tWY6TzZN94ZSVAU2rUMfFpkBZQaC3C8NbVSs00ioIAv7+/vj7+/OFJLF690mWHgolSqwoZ0y4aB7yTvtavNmk8nO4KiNGnj6LF3/PW28NoHLlynh6euo9l5KSwvjx4+Ue0vl55ZVXGD16NHPnzn1qohYgOzsbc3Nz7OzsZPMojUbD2rVr2bFjB5MmTeKjjz7iwoULrFmzhpCQEL3vw8jISL7//nuWLl2Km5sb9erVY9SoUf/YnpBGjJQWjUbDr7/+ypo1a+TPhkqlkqOJJUVqAVavXq0nagGuXr36VIStbt6oa50jSSlIkrZv9ZOKWgBTU1M+/fRTAgIC0GrXbCIjI6lVqxaAfJ/RYWNjQ4UKFbh//z6gXVirX79+sePfsWMHmZmZDB48mMuXL3Pz5k29bQ4cOEx8fAxKpdYRWalUUrNmTa5du0ZMTAxJSUl60V6VSiXP+Z9mkOBp8J+O2Op4vI5VV/eamJnD+TtJBtXhgrYHbWDyn+z9cyd3797FzMyMNm3a0KVLF7p06YK3t7feqrQkSYwcOZJVq1axb9++Ij/s8+bNY9KkSew9eophf8QbfF33Fw6gbvP2UKcjydZVtO7ESFibSKTnKUqMVEuSxMN1H5F57/rf1/ho/Pn/bBQqMyp98NsT19QWlhqdGXaatLNbyI39S06JNnOticubX5aYyvn5a77sOHeb05FZTzY2SSo+9VuTR2bYGR5u/QKVSoVGo5Fv5hXaDcW2aU/tmPK/96VItTY0+iyJIjGL+pObqZ30eXh4UK1aNezt7YlIV5DaZHjpo9iSRMK+ZUzv344JEyYA2v5tc+fOZcWKFahUKsaMGcMHH3yAs7Oz3q5ZWVmcOXOGo0ePcvToUU6dOkVmZiZWVlY0a9aM2Fo9SLWtWqbI+otkrFRc+y9DyMxRc+j4KXZu3cTm3zYQGxsrG9QEBQXRoEEDo/makX89u3fv5ptvvimQgmdpackXX3yBj48Phw4dYvbs2eV6XhMTEz0HeR0KhYJXX32VvXv3Fmj1U716dT799FPc3NzIy8tj27ZtbN++Xc81NTMzk1OnziBJGl555TV27NharuM2YuRF5MGDB3z55Zdy33fQGi1lZ2cTHq7tbKAzNCqKixcvMnnyZHnuo7sn6PrZljfdunVDrVZTvXp1RFHkxIkTKJVKTp8+XcA0qrRIkkRWVhbBwcGMHz9edoX28/PTM52ytramZcuWtG3bFn9/f9LS0hgyZAgZGRkIgsCiRYtkIfw4c+bMYfLkyYB2AdDDw+NR65+/OXLkBGq1HRDDxo0b6dixIz/++KOcIv3yyy9z8+ZNeT9TU1N2796LmZkZ+/fv/UcZSRmFbT7yT1ABg82lQN/sRZIkbt26xe7du9m9ezeHDx8mJyeHypUryyK3Y8eOrFixggkTJvDTTz8xZMiQQo97//59vL29GTZsGHO+/sZwwytRZJjtdaZ98pHetamUAgEz9xlomiWhSUvk4bYv5ZpbKFh3q7CsgOfYNQa9TiWd7/HUTJ0ATNq7mLRLWidmQ9Kx878f4z+axtLVG3F5a16p0s4VAnze1YuPd/5VgrCQWNi9KkO6tyUgIIA//9SOs/vEbwg29yl4TY8+ck9DrMQsGUxOykO91VETExOcen2CqmpAKY2tJHIToklfP5FRo0YxZ84c/XPFxPDtt9+yePFiNBoNgwYNokWLFoSEhHD06FHZwc/e3p7WrVvTunVrbVq0Xz2Ss0Xafn3I4M9Xfv7Nxkpa58cjbNiwgd9//53ExERq1apFUFAQQUFB+Pr6Pu8hGjFSrsTExDBt2jQiIgq2+2rZsiWTJ0/G3Nxcz0imNOQ3hNGRnp7OlSs3AIEGDXzx8PCQW488zhtvvCGL1/zHEQSBdu3aMXHiRExNTQFt+5Kff/6ZI0eOEB4e/qhHpxvu7iqiogrve2nEyL8BSZI4cOAA3333nbwQpFAoGDBgAIGBgfJnt1q1avzwww9FHicxMZF33nmHpKQkAIYNG8Yff/xBbGwspqambNmyRf68lRddu3YlLy+P6tWrExERgSiKVK1aleXLlz/RcbOzs+nYsRMnTx6jSpUq1KxZk+TkZARB0GtT1qNHD95+++0CPh/5SzJ8fHyYP39+gXljbm4uTZo04cqVm4Alrq5meHh4EBUVJZdlAURFRREWFoG9fQX8/LxLLJO4fv06MTGZQA5jx45kwYIFT/RaPEuMwrYIStsOCOD3IsxeMjMzOXLkiCx0Q0NDUSqVaDQa2rZty4IFC6hXr16hQqdXr16cPn2amzdvYmtry8g159l7IwapmIRSSdRglXSba0vGoVAoiImJ4cqVK1y5coUzV0K4WOUNg69JkrRnco0+yeVD2/Qcj+WI6oUduPSdVeaoqCHRS12Npz3pmL75vWHnkkRc8uKIU7loX68SIq+Pn4+sZOK2fImJY2Vt+6PHHY9FDZKgIGX/Msa/2phmzZrRrVs3eoyYQEKllkSkKUo0+SpPcSuJIla7pmBlbkpERAQJCQk0CHydSi8N5mpi6YW0JEn4xezFQZPEjRs3uHjxot7z8fHxHD9+nL1797Jt2za5jsbCwoL27dvTrVs32rRpg6+vLwqFgnN3EvX6QJeV/4qxklqt5sCBA2zYsIEtW7aQkpKCr68vffv2JSgoSM+J1YiRfyK7d+/m5Ze7A+DvXx97e3tAmwY3depUmjfX9lRPTEykbdu2KBSKApkhJVFYRDYkJISoqGRApFIlR7nXY1E0aNCAjz76iNmzZz8Sq39jamrKsGHD6NWrl97j165do2/f/qSmZjBv3pf06dOnVOM2YuSfQnp6OgsXLuTQoUPyY66urkyePBlfX1+2bNnC4sWLARg4cGCRC1QajYbJkydz+fJlABo3bszMmTP5+uuv2bdvH/B3a5rypHPnzoiiiKenp5z+27lzZyZOnPhExz158iQtW7YEXBCEh3Ts2B7QzpGaNWsmv16ff/45zZo1K7B/Xl4eb7/9tjymyZMn07FjR71tli5dyrp167hxIwSNRqR27RqcPXseSbIEMmjdumWZ0qnj4uK4evU6CoWC7du38vLLL5f6GM+L/1Y/llJgY26CohQ6YHp3nyIn2paWlnTt2pUFCxZw69YtduzYgVKpxNXVlfPnz9OgQQPc3d0ZMmQIa9ZtIOx+DNlqDX/88Qdbtmxh/vz5stPi8FZelLgUISjwU8XToUMH7O3tcXd3p2vXrnz88cds37YVqZD+fEUe6lEd7gP3Fri8OUevjY+gUGBZowku/WaTGxehNXUyAEkS5ailJIpoMlJAKmFMogabxj2IS0ozXEALCmIUFf9eBMiX0lLiroIA5nY49/8SG0cXknfMJev2ef1xKpQIgHnVBnyxYiNBQUE4Nu3BObvWhKcV3x5Ki4RUwnUbOl4FElmhpxj19nDOnTtHbGws4xdvISlgMFcfimVKQTb96ygbv/+CwMBALl26xJUrV/j1118ZNWoUvr6+ODs706tXL/bs2UNgYCCLFi1i0qRJ2Nrasnv3bk6ePCnXi68+fZc+y06xPySuzKJWqRC0KeY9/P71oha0k/suXbqwcuVKYmNj2bZtG/Xr12fOnDnUqlWLgIAAvvrqK+7cufO8h2rESKmRJIkpU6YgihaIopK4uDgAvL292bhxoyxqAYKC+nH9+g2uXr1KQkKC/Pjdu3c5f/6SvG9R53kcbbQkA8gyyMX48uXLvPvuu0yZMoUFCxboievc3FyWLFlCv3799GoC69aty40b17h/P9woao38a7l27RojR47UE7WBgYEsXbpUzjA6fvy4/JyPjw8HDhwotOXeunXrZFHr6OjIpEmTUCgUevWljy8slQe6e0T+tjq1a9d+4uP6+PhQubIXEEuVKlXlx3v37o2NjY38e1FuyyYmJowaNUr+ffny5XoGUxcvXmTTpk2YmprSpEkjli9fip2d3SPvklwEQSgw93NwcKBOnTo0a9aMzp07y6LX3Nwcb29veTtnZ2fatGnFtGlT/lGiFowR22IxpB0QQNNqDmx4u3mx2+h48OABTZo0wdnZmaNHj2JiYsKJEydYvfskR+NU5Ln4aIWbJJIbcR7X5Buc27VBThtISkqi6ktvYd/pHRSCoCcSdJHPxD2Lyby6R06bMjU1xatpIBb+r5BkWanYaG9ZMTS9VhJFskJPkXpxJ5rESCRRg8e7qw0Sq5IoErmwP5XG/vp8euQWEfHVve6ZF7Zj2fDV51YP2TDpMEd+X8nt27cJSxbL5Pitex8zL2xn/eQg7t69y+7du/ntt9/kbby9vWnTpg1t2rShdevWBQxgsrKy+Omnn/jqq6+4d+8eL/UbSViV7k90bfn7Pf8XRG1xZGVlsWvXLtavX8/OnTvJysqiadOmBAUF0adPn0KNu4wYeZGIiopi4sSJhISEcPXqNUAgIKAB06ZN49VXXy2wfeXKXty/nwXEyC2CMjIyOHXqFLpoSIcO7Qq99wqCgJWVVQHDqZSUFAC9lEAd1tbWhRpUmZmZMXfuXLy9vdm2bRvLly/Xmwzn5OSgUCj49NNPad++feleFCNG/kHk5eXxyy+/sGHDBnmuaWVlxfvvv0+7du3k7ZKSkggKCkKSJFQqFYcPHycrK43Klatx5cpFWdRduXKFSZMmIYoiCoWCr776Sha0+csQyrvOVpIkOnXqBGjbdqWmpgKwaNGichG3aWlp3Llzh++//16uX/3pp59YtWoVR48eBbRGWfnrbR9n6tSpnD59GoB+/foxdOhQ0tLSePvtt+UWZN7e3oSEaEsGk5OTiY2NxcnJCQcH/flStWrVWLJkiawp8h+7Xr16BXriLlmyhBo1ajzpy/BM+U+7IpfE8FZe7L0RW+J2YzsY9qZnZmby6quvIooi27dvl53Goiyrc1iZhcJDQNApVUGBqkoACdUa494miFqKWKytrbl16xapERHkxIZr04JrNc+XFnwGzY29dK5XFf/en+Hr64uvry+n4k34dEcwuQoB6UlyQItD1JAbfxdTF68iXZiTDq0k/eIfeu2QFJYVDBapgkIBChMyw06XWGNbmrRjgynieLpxWDV8FUGgTO2jHk9LljQahFK0ipjcpQ6v1vSn5urFzJo1i9T6QQWcvg0l+941Eg/+yEv7l8urpY6OjtSvX59169aVmApoYWHBmDFjGDFiBGvXruWzQw+QNHllcqcWgOVvNaJVzYqYq5RkqzXEp+WU2ajp34CFhQWvv/46r7/+Ounp6ezYsYMNGzYwefJkJkyYQKtWrQgKCqJ3795P3MDeiJHyRBRFhgwZwoEDB6hatSpOTk60bt0KNzc3Fi5cWOi95eTJk7i7O5OZ+ReWlp7y37SJiQkKhQmiGIupadEGL5Ik4ePjw9mzZ+XHzMzMChW0Olq1asWlS5cKuJXm5OQwbtw4xo0bx2uvvUa3bt349ttv2b9/P5IkceHCFTIzU+ncuSu3b4dSubLR3dzIv4/IyEi+/PJLbt26JT9Wt25dJk+ejLOzM1lZWVy/fp2LFy9y5MgRecE8KSmJrKw0wJV79yIYOnQoo0aNomHDhsyePVsWyG+99ZZelNbV1RVnZ2fi4uIIDg4mNze33Ops88f2dG2+VCoVXl5e5XJ8Gxsb7O3tZVFbs2ZNPD095RpiKDpiq+Odd97hwoULqNVqfv/9d7p27cpPP/0ki1oTExNZ1OqO17NnT7y8vFi7dq1e+7KIiAjWrl3LwIEDAahTp44sbHWLfTrq1q37jxO1YBS2xVJcO6D8vPXTWQJ9XBjRyqvIaJIoigwaNIjg4GCOHTsmR1XO3Ulk2rbrSFDg+DohYN56MOfWTCIn6u90DtPUSLyiD9DRT4VXbV++mTMLs5wsLl68iLW1tbzdL6fuMG3HDSjk+OWJoDTB1Lkases+wb7Ja5h6NdYT3GnntuobUD1KC5ZyM5FE0eCIrZenO3WdcrlYkgnSc4iaPopZl2lffbdskazbZ7Go2dSw10USObBkKltSU3H0qMq33y/D4702ZYpqC4KAuacfksKEDyeM45NPPsHOzo4PPviATZs24eTkZPCxTE1N6TdgIJ+H7UYo5Z9e/n6uL/m4FKjPVQiU+Jn7L2BtbU2/fv3o168fycnJbNu2jQ0bNvD+++8zduxY2rdvT1BQEL169cLR0fF5D9fIf5wNGzbwyy+/ALZkZt6iYcMG9OvXj5EjRxYabU1JSWHWrFnY2Njg798AU1NTcnO1C6NmZmb8+ONy7ty5w/79+4vNlGnVqpWesDU3N9eLtOpITU0lPj6enTt38ueffzJ69OgCrYckSWL+/PncvHmTCRMmMGnSJAYNGsSMGTM4ePAI4IZa/YD4+HijsDXyr0KSJHbv3s3ixYtlsaRUKhk4cCB+fn7s2bOHS5cuERISUqjTuJWVFa6u7sTHP6Ry5WqkpaUxe/ZsUlJSUCqVVKhQAX9/f/r161dg3/r167Nv3z5yc3MJDQ0ttx6r+YWt7t5SvXr1AkZOT0L+NG1dJofOrM7CwqLEVmAeHh706tWLDRs2oFarmTlzJqGhofLzj7/Wrq6ujB8/HnNzczp27MgPP/zA4cOH5edXr15NXFwcI0aM0ItKP56l0rNnz1Jd54uCMRXZAB5vBwRa+ZL/hcs/ER/QtEqBY0yZMoXZs2ezefNmXnvtNaKiojh16hRzT6cQZ+IMxQk1UYO7lMCAqlmMHz+eGjVqEBMTQ0JCAnZ2dri4uPDXX3+xfft2unXrJu+2+vRdpm67XvRxH1GeJkYxSwajVGeSh4IKFV2Jj76nF6HVkd/C3anXx1hULz4Cm7+lDoB1g65aQ6cC0eHSRTpfNCRNHpm3z/FwyyyD3J8lUUNOZDCO1uZk2FcHQWHwQkFxmOyYgpVS5PLlywiCwK5du2Q7+NKk55TFhO3xtOPVp+8ybVvhvaaL+8z9l0lISGDz5s1s2LCBQ4cOoVAoCAwMJCgoiB49ehQbrTJi5GmxadMmevfujSBY4ORUgSNHDhZp3CRJEqNHj+b27dtAQXdjBwcHNmzYYJBb8qpVqxg8eLDeYzY2NqSlpQHayWVaWhpHj56QUyHPnDlJQEAA48aNK9ATUkfNmjWZP3++HD36+uuv+e23zXTpEsj06dONbbqM/GtITU3l22+/1auXtbOzw8PDg4iICL3az8KwtLTkk08+oW7dumRmZrJkyRKOHDnCpUtXSUiIAwRat25V5AL67t27mTdvHgCDBw/mzTffLJfrUqvVevNmgFdffZX33nuvXI4vSRJDhw4lMjISQRBYu3YtTk5O9OrVi7S0NNzd3fn5559LPE5mZiZDhgzh3r17xMTE4OjoKJvtAbIhLWjb/wQEBOjtf/nyZaZNm6b3PtnY2NCvXz/ZpdrMzExe8HNycmL16tUluie/iBjNowygUVUHlg5oyOqhTeXHHl8N0IgSEjB163XO30mUH8/NzWXq1KnMmjWLGjVqMG7cOMzMzPD09CSo/wBiTVyKF7UACiUxJs541axNTk4Ov/zyC7GxsZw5c4bXXnuN0NBQRFHk5Zdfpm7dukyaNImlm/YZJGpBX2Q+CZIokpuRSmZmJrmZ6cTdu12oqAX9VbLUs1sNeg3Szm2Vf826tpf4dZPJDDsjm2FJojbSWRpzrBcNQWmCZc2mKFRmpJ3bWmJ7HkGhwMzTj2zHmiD8ber1RO+nJHInIpyrV6+ye/duQNtQXaVSyc6EhlIaEzYBOD6pPcEzurB0QEMaVXUoNqOhqM+cEa3xxogRI9i/fz/R0dHMnz+f9PR0hgwZgrOzMz169GDdunWF1hEWhS4NPFttmEmcESOP06tXLxYvXswHH4ziwoWzxboRr1mzRha1AG5ubnrPf/nllwByGl1xqFSqArVm+Sd+2dnZSJKEKOYBFRDFPE6cOIFCoWDhwoUFJok6wsLC6N+/v5yyPHHiRM6cOcmMGTOMotbIv4aLFy8yfPhwPVEL2oyK4ODgAqLW3d2dl19+Wa9evkuXLjRp0gQLCwscHR2ZMmUKM2fOJDdXDVQCJJKTk/n444+5fr3g3PVpGUgVNlcqj9paHWFhYURGRgLaGlYnJyfUarW8qFZSGrIOS0tLhgwZwoULl7lz5z4XL14mJycHW1tbatSoIYvaLl26FHq/atCggbwwoCMtLY0ffvhBjk7nz2J57bXX/pGiFozCtlT8cvoOyhJm6QISI7/dgJ+fH7a2tpiZmTFz5kxA+wf+8OFDqlWrRq9evfjsy7kGR9ZECbbu3IOHhwf+/v4olUq8vLzYt28fHTt2JC4ujvXr11OnTh2WLFnC1LWHtbWtBvKkX8LSo5rWgDHz5f5+AFWqFB5Jy596oYkJJfXAMm1q8mNjljR5SJJE+qEVNKvhLEeaNBoNuVE3Sdw+h/jFb/Fg8SDuf9Ob1HNbnksasjzeclggEBQKUFmQExlM6rktJRxT63qneWyTsr6f2vdRQaX31uDSewrTF/0CaFOIWrRoUWpha65SEujjUuLnRhI1ZIaeZMoHo7kV/PeX2orj4ShK2FehEFhxvGAPTCNaXFxcGDNmDEePHuX+/fvMmTOHmJgY+vfvj7OzM2+88QabNm0qcsX93J1ERq45j8+nu2k8ez8+n+5m5JrzxsUEI6VGEARGjRrFvHnzqFSpUpHb/fXXX6xevVr+3d/fn6ioKPl3T09PqlWrBhgmbHNzcwu0CHnw4IFctiNJErVr16ZuXT+cnBT4+fly/vx5ecxz5syhdevW8r6ZmZlER0eTk5NDSkoKgwcPlrc3YuTfQlJSErVr+9KkSXO9Gs7Hsbe3p0OHDkyYMIE1a9bw888/8/777xMfHy9vk//zo6Np06Zs3PgrlSur8PCohJOTE3fu3OGDDz6QF2N16OpsAbnOtjx4vMc1lK+wPXjwoPxzhw4dAP1a1vxR15JITExEo9EuvkmSBo1GQ2pqqrwAaGVlJdfOFkbNmjXp3LlzgcfVajWgvQ/qBHLXrl0NHteLhlHYGki2WsO+4NgS61RFBB6aVyIs4i7W1taYmJjg6enJ3r17SUtLIyMjg1u3brFp0yYmjh1jcDRLIcCendvo3r27HGEdNmwYubm5zJ49mwULFvC///2P33//nYzsXG1bnlKZ9TyZINPZisebe1J51I+cDdcWtcfFxckiNn/tb3Z2NhYWFoC2PmDR+32JXTOJzLAzf7fUkSQyw84Qu2YSiWe3ERwczJdffkm/fv0wNTVFo9EgiiJW5iqqezhjb2+PXfM3Sm4d9JQoqXWPwccRRZSSGjs7O0xda/Kk701pkAWxoMCsWiNi6r7JzPWHAa2F/6FDh+SboKEMb+WFWMLnRqFQMqCxBwcPHqRBgwa89NJLbN2x06DPnEaU2BscY4wkGoCHhwfvv/8+p0+fJiIigunTpxMeHk7v3r1xdnbmzTffZPv27fLKbWFtmkQJ9ofE8cayU6w5c/c5Xo2RfyN5eXlMmjRJXtCztbUlMVF/ESV/5EFnylIcubm5cv/H3Nxcbt26xb59+/Rq+e7du4efnx/169fH1dWVmJgYvfraadOm0aVLF9RqNWfOXCA4OJhz5y4hiiLBwSG0bNmWESNGPNG1GzHyIrFjxw5CQ4PRaCoSHn5fftzS0pJmzZoxatQoli9fzoYNG/joo4/o0qWLbO6WlZUlL/Y4ODjg4+NT6Dm6dOnC3bvhHD58SC+DY+fOnQwbNkw2nxIEQY7a5uTk6NWYPgmPBw4sLS2LXXQrDRqNRq5tNTExoVWrVsDf9bVgeMQ2PDycNWvWUK+edvEtICAAS0t907yMjAyGDh3KrFmzOHHiBLm5ueTk5PDw4UPu3LnD9evX8fPzkyOxgiDIbYdEUeTSpascOnSI4OCbeu2I/mkYzaMMJC07z+D+m4JCQXDoX7zyUlusra05depUocYtumhWSS2FlAqBph4WrLsdyqsL5wMwa9Ystm/fjqOjI02balOkBUHAy8sLJ8/qxJSixlIbLTtN9p3LOHQe/UTRW0EQwMaJiv2+QLi8lbt7fqRevXpcv35db/WtYsWKeqtWCxcupLqdQPDWL0gwMcWuogupCXGI6r9TI+Lj4xk1ahQmJiaoVCq55irN3Bnq9MA6X4/d54NA2vlt2DR6rWDtr6jRpgpLYrHpxbpaYgdbazI9m2Lm6fd0UtoMcI3WjX/F5XS6NEskMDCQKVOmcObMGfkGbQj5TdiQRCTh7/dIv072ZeZMfJtNmzbx1Vdf8XrfAXiOXWPQOURJ+xn9rzoll4WqVasyadIkJk2aRFhYGBs2bGDDhg38+uuv2NnZ0b7PcC45ao0uCksDB20aeB0Xm/+0gZeR8mX69Olyyw1BEPj444+ZPHmy/Hy9evXkKIdardabJBZFTk4ODRs2RBAEbt68RVxcKpBFVFQUlpaWZGZmkpeXR7169Thw4IC839dff83ChQvl3ydMmEBGRgZHjhwBPMjJeUBeXh737t0FXFmxYgVffPEFFStWLI+XwoiR50qjRo0wN7ckOzsaT886DBo0iICAAGrXrl1imurZs2flRfCWLVuiKGFuVqNGDRYuXMi2bdtYtWoVWVlZJCYmMnPmTJo0acJ7771HvXr15KyxK1eulIuB1OMR25o1a5ZbCu7169flvtuNGjWSe2aXxhEZtKZOM2fORK1WU7FiRXr06EHz5s1Zv3499+/f19s2Ozubw4cP65lFFYUkSXJKtPb1jgdciI6OJCMjQy8Y9U/CKGwNRFcraIi4VQgwcuggYmNjOX36dLFupMNbebGnhJZCGlHCKfEa5ubmbN26lYEDB8o23ykpKfKN5uLFi9y6dYu7UQ/waPqewSJPoVAye9BLfPPRFiL3LNaaMvEE6cmCoDXXatCDSrU7EH5sDaKo3xtLN34dFy9exMvLCxMTE/LyckmNi8Lc3JzMQoKDGo0GMzMzJEnC2r8rDp0emUg9V1Grfb3Szmwm8+YJbBv3wCJfKyablAiqmGVx3aKEG7GulljliEvHEeUnaiURBAUCEtVtJIJDglG5+xjoRq3h6z8usnZUe+zt7dm3b1+phC3AgKZVqONiw8DZP5PpUAMEhdbZ2NtFNom6f/8+27dvZ9u2bVy5cgVJUBpshKUQtJ9RI2WjZs2aTJkyhSlTpnDjxg02bNjA6jsWJbZp0qWBG4WtkfJg2bJlbN++nYoVK6JUKhkyZAjvv/8+4eHhuLu7U6FCBb744gt5+wsXLsg/5zdPeRxde5C/TWm091VbW1v69u3LTz/9BMDRo0fp1KkTe/fuBSAkJIQ7d+5QtWpV+VhTp04lJSWFP//cx7hxU3n55ZepU8ePjIwYqlWr+Y8zZtNoNERFReHu7o6JifEeauRvfHx8CA29yf3792nWrFmJ4jQ/x44dk382dL6gVCrp1asXrVq1YtGiRY/6VGtF8ogRI+jRo4e87ZUrV8rFQOrxiO3TSkNu3749u3btQqPRyGIXtJkia9asIT09nbS0NPl/3c/p6el67XoAjh8/XqDe+UmxsLDA2tqO9PRY7O0ryu1I/4kY72IGUproasXsaI4c3M+ePXuoVavWk59cklixfDnZ2dn88MMPCIKApaUlY8eOJTg4mF27dnHx4kVAm2MfFBREspuKy/GiQS1+fLOu83bPydjZ2ZGecpN6VSpi1mIA4UmlSzl9HEEQUFjY4tBpNGaVfEnY8XWR2+bl5REdHY27uzv37t1DFEUqVKhA7dq1iYqKIi4uLt/LIZGRkYFV1Xo4dHoUYS5Dj9SSKK1btCSKaLLTyUtPJD4qBMHEFMHUUtvSKC+XWyYmmPsFFuHmrO31m7hnMTlRIVTs+TGImnK5LkkUaRa9hTv37hNy9SJ3krVpfQpzazzH/SqbThWFoDThdGQWalFbI7Jv3z5mzJhR6nE0qupA5t4F9Or3Fm+P/RAXWzPu/3WLbau/551t27hw4QImJia0a9eO+fPn8+qrrzLraBz7g2ML1BDnR6kQCPR2MUZrywlfX18+nvopaz4tuU1T/jRw4+tv5Em4fv06o0aNQZI0ODm5EBT0BjVr1uT48ROAJTEx8UyfPlWvf6U2cqpFoVAUKWwzMjIArYHK/fv3MTO7Q5UqAQwePBhBEPj111/Jzs5GrdaWgOQXyf/73/9Yv369/F0gCALz5s0jvw9LREQYp06domXLluXaJuRpI0kSXbu+wr59u2nevBVHjhz8R43fyNPH09MTT0/PUu0TGRnJd999j1qdR+PGAdSrV69U+zs7OzNjxgxOnDjBokWLSEhIIDs7m/Xr1z8KfuSVWz/bxyO25TJnR7uYphP35ubmHD58mM8//xzQGmHpFtmOHTumtwhQHugyGnNzcwv1aDE3NycvL0+vTZBCoaBx4wCys7OpUKHCP9r8zihsS8HwVl7sLTG6KhJ8cDNLliyRC8WLY8XxcJTF9MgFbcTMMqA7tRxMcHFxYc+ePZiamsqukAqFgs6dOzN8+HBeeeUVzM3NOXcnkT7LTpVwdonck6vZe2oLJiYm2NrasmLFCl5//XVSUlJ4vU9fjl28gX3gO5h7+pWyZleL7sNh5dMW05R7PDi6UX7O1taWtLQ0+YOnW53SER0dTXR0NKD9oD5e22nh/0qZxJ/ufIZ8cA0Vt5Imj5zwc5gIEhqFgg8//JCwsDA2b96MtbU1ublQuWF7kl39AQlBaSIfW9frV7x1mFeb16N20Fx+TKpdLhFopQBZEedwcbVmw+p9SJJEgwYNuHr1KkOGDWd/CaJWRlCwfNVqAgMDGTNmDCkpKaWOTJy6HUdmwzfZLDVl88JjIIlkhJ5Gc30Pgf7VGT9+PN26ddNLzRneyrrEz5woSgxvVa1UYzFSPKUpvTCmgRspD27duoUkaQB3MjLS+eqrrxgzZsyjZ0UEQdBLSQZtDeDNm7dwc3Mtti5Ol26ni8bWrl0bKysrOeWwT58+j/rrwrZt2+jUqRN//vknoDVs+eGHHxg5cmSRx3dyctJzgH0exMbG8uDBA+rXr2/wpDQ5OZl9+3YDLpw6dZzIyEjZlMuIkbLyzTffEB+fhCRZ8vDhwzJlAgiCQKtWrfD392flypVs374dSZLIycnh5s1b5OTksnv37if+3EmSRF5eHrm5uVhYWJRbxPb8+fPyfadly5aP7icVgUTS0tIKbWmUHzMzMywtLUlNTZUX2WrVqoWfnx/BwcFyCzIvLy/Gjh2Lra0t1tbWWFtby4tTubm5nD17lkOHDnH69GnZcOvxCLAOpVKJlZUVZmZm5fAKPD+M5lGlQFcrKECRpk+SKOLYeTTmdQNLPJ6hhlSC0gTLWs2JT0xmz549gPYLyc/Pj0WLFhEbG8vu3bvp3bu3bNSUf6yPO9IKAJJEwt5lpJz/A0EQmDRpEiEhIfTu3Zu//vqLZs2acezwQdQJkaQc/7XkdjwlIAhg6q9/A0pNTUUwMUVhWQHBxDTftgVf3MdFrWBiWgaDrNIhCAICEnlHl5fsdqxQknFxByqVij/++IMvv/ySTZs2UalKNSRLBywa9SS3zbtY1WyKoGvLIwiPUoQFTCq4Yt39I044d+fH5PIRtaAVHX3qO7FkyRJCQ0NZu3YtV69epXHjxiz69muDzcskUWTc6JEsXboUjUbDhEmT2bHvMFEx8SXum5GRwYSlW+m34iwW1Zv8XdsrKLCp0wK712fQffxX9O/fv0C9SXF/x4gaJEnC9Opmrh7cWuTN2kjpKU2bJmMauJHy4OWXX6Z37z5Ur27DmjWriIyM5P79+9SvXw8PDwdWrlyhF02Mi4vjxImTJCQIXL9+Q/78Z2RkkJiYqHfP1i2Y1q1bV06nzMjIkOtz+/fvL0/mCotybNq0qUAt24tEaGgo1avXwt/fn4kTPzR4vwoVKlC9ei1Am35oqJGNESPF4ePjgyTlAEm89NJLT3QsKysr3n33XRYsWICXlxdRUVE8eBBNYqKCOXPmPvFYHzx4wMmTZzl58iRhYbdl86sn5dChQ/LP7du3p2fPnlhY5GJrW0HPSGvYsGF8/vnnfPvtt6xYsYL169ezc+dO/vjjD+rXry+LWn9/f7777jvatm3LrVu3AK34nT59Or6+vnh6emJvb693jzQ1NaVVq1a8+eabBVzh86PRaMjMzOT+/ftcu3ZNL1X6n4hxNlJKBjStgiRJTN12o9DndcZAhpiqlNaQKqfJIKwUWxjb72WGDh1KjRo1ShxrHRcbVhyPYG9wzKNzSYiSVlQ5vPQ2tk0C+ezNdvRspU0VOXLkCD169CAjI0MWkzXsBO4+ce2tgGRuh8LcGjE7HbNKPtg07qEVp4/qUDNvnyXjyh4s0+6TmpSAWq3G0dGRhIQEFi5cKLeJmDx5MoKpZanFn/Do2lU3/iDPr7uBOynwMMmgddU8fr9jglRECnHyvqVYZsTw57FjBAQEcO5OInP33ETZdyEV879egrLA8QXA1MUrX6pb6UXt47WQ0qOa48971KV3/Y5sXT6PkSNHyq0x3nvvPcPT6wWwTA1HysslHlucX/+EfRWasv9gBtL+04j3LlE56zaNqtjj5+eHr68vTk5OHDlyhG3btnH4xn0c+szULhQ8thChO21xn5dC/44liS513Wlkk8qOkIcMHz6cjz76iDFjxjBq1KgSV0ONFE9pSi+MaeBGygNzc3N++20DoJ1o+fj4ERX1gOrVq/Dyyy/z1ltv6W1vZmaGlZU1GRkPsbKyQRAEkpOTOX/+AiBRtWpV+TsyMzMT0GY3ubm5ya2D9u7dS58+fVAqlfTo0YMNG7TnP3ToEBUrVpS9ICRJ4qOPPmLNGsPM7J41R44cISMjFXBn7doNzJtXdNlPfgRB4J13RrBjh3ZR9uHDh6VqP2LESGEMGzYMR0dHMjIy9JzHnwRvb2++//57JkyY8MgROQ5v7yfPkrh27Rq5uZmAKwkJKeWSgnv//n2WLl2KKIoEBATQsGFDcnNzadmyCaDtM6+7B3Xr1k02lcrPwYMHZQMoa2trPvzwQ/Ly8pg3b5688DZo0KAC/b3z8+DBA37++WcOHjyot1jn4eFBw4YNiYiI4MKFC5w5c4GcnIxHz1YgOfniE78GzxOjsC0Dx28/LDF92BBTldIYUgFYVvPHqnojfF6rS40ahfeHfZxGVR1oVNWBaWsP8cu1DD1hJigUZDrUYPzO+2So7Mi9cYC3334bAFFQorSyp3Wzxhw+sBenFrW1hlCGDbVQBEFAYeWApXfrAoZPgkKBZc2mWNVqhiSJuKTdJ2LfGhIjLvDyyy8zfvx4XF1d8fX1pXbt2oT+FWGwsZAOUQLL9Ggirp3CxedlA42TRM6dPMrZo/txqN0Yt3b9SbOr/rcYDztD2rmt5ESFINnY8MMPP2Df5FXWhUm6izb4tSkLTas5ML5jDV79cD6WtZsjoTXuygg9zZwhnRjQVPt38sknn/D222/j7OxMdnY2Xbp0AQxLrxclmDu8G33P7Uf50khMJBHyvW8mVf2JkgKIOr+B774bqXcDtbe3x7P3VLKE4v92Svq86P6Os9UaBo94h3t/hbL0S2193fDXOhAaGsqCBQv48ssvmT17NgMHDuSDDz7A29vbwFfSyOMY9LdhTAM38hTYv38/oaE3AQ9u3rzN9u3bC2xjZ2fHkSOH2LlzJ76+vixduvSR074EuJKcnCpvq6uxBf2euCdPnqRPnz4ADB48mM2bN6NWq8nJyaFatWp6JoexsbH8+OOPDBs27Klc85Pw6quv8sEHH5KZGUuNGs1Kta+bm5tcpxgTE0PNmjWfxhCN/IcQBIGePXuW+3FNTEyYP38+bdq0ISYmhqFDhz7xMQMDA6lTx4+bN68zefLn5TBK+PTTT4mKSkSS8qhePQUTExO90i3d/Uip/D97ZxkW1dqF4XvPUIJIKIKigoqI3WIeu7sTu7s9xtFjd3eLYHfXsbu7kVJEUbpjZn8/xtmHIQfEU9/c18WlM7Nz9p6Z93nXWs+Sp+g8HBAQoOHGPmLECKysrNi+fbvUgqxo0aK0bds2xf0fP36cM2fO8P79ew3fASsrK3r06EGDBg2Qy+Xs37+fS5cufRe1uYBvQCSWljY//ib8jeiEbQZRpw+nJ0a1MVXRNiqiRi1Ipx55pnWLjZCQEAZOWcht02opRszU+516+Bmf3Rejl6eoRiTVU6kkb94G6Od1ktyOM40oomeWK1XDp8QRy8gcduRuNwVRFHn+1QPzUnF06TsUZXQo+fJYIybEEfXuNsYOldNOR07U1kYQBKKMrbHuPIe4L54Y5rZPM8VaVCRQ2CiScUsXM23aNILe3CPozT0EPQMMTHIQFxmGmBCHmZkZCXI54eHhbD95DWvz5n9J4b0AjG9YlIr2lpi/OEAjuxh+mzmXFYvns+byOnrsnwmooh8HDx5ELpcTExNDpUqVpIimOtV36pFniArNaHTiVjw5c5piXn+g6r1MEnUWkYEAYsVOZPd8RgU7CxwdHTEyMuK9ty/PLR0gnTtHWxMiI305xQvl59JpzYGuo6Mja9asYebMmWzcuJFVq1axadMmmjRpwtixY6lbt+6/2gzh7yBxmyZZkom8xPeGzhFZR1Zjb2+Pvr4B8fF+ODmVw84u5YncChUqUKFCBQ4dOgSoRFpIiCrtOF++P9dRR2wBmjRpwokTJwBVb0g1enp6tGjRgj179vD+/Xvev3+Pvb29VIcbEBDArFmzKFq0aIZd4X821tbW9OjRlbdv3yKXy4mNjdW6Ti5xxOfz588/6xB16MgSBEGgXbt2WbY9c3NzXrx4QnR0dJY5ARsZGSGK0YAo9ZpNLGyjo6OlfSd1mlYqlSxcuFASv/Xq1aNOnTp4eXmxZ88eQCWIx4wZk6wtUWRkJCNHjmTLli2AqtuBnZ0dpqamdOnShVatWkmTWAqFgqNHj2JmZoaxcQ6ior5hbW2NkZERbm5uWfI+/F3oamwzSGZMVVLjxYsX+J7bToJCmeoyKSEqFCw5+SjtZUSRvXv34uDgwKXPMpXJUlrLI5Kz6Uisuy1QicXEEbm8RX8oUqtGLyGK7GUap3ssiREEAdHKAZNGI8k3dBv5xx4kR5tpGNoWU7XFSa/2N4mYEeR6CIKAgXUhjX6qKSKTc9t1Lrly5SI4OJiTJ09SpEgRxIQ4YkO/ISaoCvHj4uKYNGkSy5Ytw6Z2V34srp0+cplqgiGxqChSpAie795gZWrI+TOnaNCggWTYMGPGDM6dO8f8+fMJCwvD1tZWY3vdne2wf3eI7KGeUl2luhXP/oFV6e5sJ5mcpXlcAnSavoFLly6xYcMGVqxYwTb3Pem6LqtJ7/OixsHBgYCAAKnXZWJy5szJpEmT8Pb2xtXVlU+fPlG/fn3Kli2Lq6srsbGxKWxRR2p0d7Zj/8CqNChmneq9oUNHVlO0aFHu3bvL9u3buXbtcrrL+/j4AKqassGD+xMQ8IlChQpJrycWbEWKFJG+G6OjozXqyfr168f79+/x8wvGy8tHWi8iIoKnT5/i4/OJLl00U6L/KRQsWBBBEFAqlXh7e2u9no3Nn9EZf3//n3BkOrTl06dPtGvXnurVa7B7925u3rzJy5cv8ff3l8SQjqxHJpNlaXubuXPn4uRUFEdHR8zNzRFFUSPdWD0OSamm/eDBgzx58gRQRViHDRuGQqFgyZIlUvS1c+fOGt9vsbGx7N+/HxcXl+99fg0BM6Kjo+natStubm506NBBw0H65s2bfPnyBX19fapWrUTt2rUpVaoUTk5OVK9ePcvei78DXcQ2g2Q0ffjdl3CsTP+cOQ0LC2PJkiVs3rxZcvzNXe0z2Wr2UqU3a7FdQa7HrQ9RfPkWhHWu5NEST09P+vfvz8WLF5HpG5K/iHP6LV0EGXqWtqlEUrNm/sPc/x7xRX7JeG1sInEqCALh2Wyw7r6QyjnCufHeC32rgsmicem6GSsVJAR+QM/KHkFUaghkAREQqG8ZwrZvfnTvM4CDJ8+zetkifv/992S902JiYpg9ezZ6RsbYjtyTZe+XJqpjQlTSoFheqferGkdHR46fOstr70/cf/SEwYMHA3Ds2DFmzZrF3LlzqVq1KgA3btwgKipKmkmMjIzk9oldzJ07lyHDGxMek4CpkZ4UOf305SvnXnxGTCfqqkTgwptvGlHXjPZ/1saEqHDhwgC8f/+ecuXKpbiMgYEBPXr0wMXFhUuXLrF06VJ69erFr7/+yrBhwxg0aFCa/aV1/EniNPCk94YOHT+LMmXKUKZMGa2WVf+WAlJrksKFC0tt8BIbPwmCgK2trSSGT58+Tffu3QGV+37p0qX59OkPRFFJ4cKFiYmJkQaUgmDyj838UH8vgmoMoK27a2Jhq4vY/r3MmDGDI0fOo1TG8OnT5GQ+KkZGRlhYWGBhYYG5uXmK/6r/TEz+uffqfx1zc3PatGnDvXv3CAwMxNPTM8Wsk6T17J6enmzbtg1QfU9NnDiR7Nmzc+DAAckwKn/+/HTt2hVQtck8c+YM7u7u0gRdgQIFCA2NxMzMjD173KVxX1KOHDki/V8QBGmyz8rKKkP9iv+J6IRtBslI+rAAdNtyh1mtSpDN7wHz5s3j4cOHKidXAwOaNGnC1KlTqVq1Kg98gllz2YNLb9J3mVVtXMaAoSM4ssdN+vKKj49n0SKV+FIoFBgZGTFh2ixcw7S7SbPkSzBR6q/qoUoOtSidh/u3nyAUqP3Du1Af573wHBjmzpEsPqpNix5BrodeLjuCDvxOttINyVakqlQ3G/PxOeXKledCkAX5R7iDKHJfEHBefJOody8wtC3G+N7tGDZsGEOHDuXIkSMoFAqUMgOto5MZQVQq+biyKw6ORXn38hkjnz6mWCJRe887iGfmVYlrVYfGGx6Rb/R+LsRbYHb9Kb1cXGjTpg2//vorv/32G+bm5oSEhLB06VKmTp0KqEwKYmNjadasGUb6coz05Xh7e3P06FGOHDnCjQdPyTt0h1bHmrT1S0YMqhoUt9FKMKl/7D08PFIVtmoEQaBu3brUrVuX169fs2zZMmbPns2cOXPo2bMno0aNSncAqBN0KtT3hg4d/zQS18KqIxmOjo6SsP327RthYWFS1KRixYp4e3uTkJDAzZs3JWELsHfvXpYuXUqOHDkoXbo08+fPx8zMjI4dO6Knp8fo0aP/wjPTnsQRnMQp1ulhYWGBoaEhsbGxOmH7N2NjY4NSqcpESqk/a0xMDP7+/lpF1vX19TE3N09V+CZ+PkeOHERERGBoaCh11tDxYzg7O3Pv3j0A7ty5Q+HChcmePbtGS8vEEdu4uDjmzZsnmba2b9+eMmXK8OrVK1asWIGhoSEymYyxY8eip6fHxYsXpaw0NYIg0KxZM/bt25emqZSHhwdPnz5N8bVcuXL9yGn/I9AJ20ygjakK/JmQOuXIc764/0bcp9eULFmSsWPH0q1bN43eXhXtLVnXrQLFpp3RKpFVQOT4of2sWFGRUaNGcfPmTXr06MH79+8BaNeuHfPnz+fO/YfwWPlTBFfKB5ZIUIoiOfRFvE+u48Ixb956emNbeXiWtbKBlJN+tRXogkxGlP97It7PwySHOQYmOVDkK4d53X68/Br353Gqa3Qlg6uqFG5UDGtraw4cOEBMTAy//vorGzZv07rvrbbIZQJ1ilrxrnJ5rl69CkD37t05e/YsuXLlwu22D9OOPkfAWLrEgkzGNc9Qrr0PIVf9/mzfNg1BEDh9+jRNmzbF2tqa+fPn069fP8xzWnHo1HkKOxYjIiKCadOmcfToUZ4+fYqBgQF169Zl6YK5LP2Q+airdv2fRVoUMdbqPbG0tMTc3BwPDw+tllfj5OTEhg0bmD17NuvXr2f16tWsX7+e5s2bM3bsWGrVqqVx7e55B7H5uqdUUy8ToEFxa/rXKKSrK9Wh4x/E169fCQoKwszMDCcnJyB5mt+5c+do3749oGotNGfOXD5+/MCjR89YvHixlMFiamrK9OnTAVU2i56eHuHh4URFRXHs2LF/bBQss8JWEARsbGzw8VGlXiuVyn99xObfytSpU7GyssLf358qVaoQFhZGcHAwwcHBhISESP+q+6OmRXx8PF+/fuXr1/SDJf7+/rx48RILi5zcvHlN+gzpyDzOzs6sXr0aUAnbrl27ShMIahJHbLdu3SqVEBQqVIhevXrx9etXnJ2rEx4ejLV1HqZOnUxERASDBw9O9hmvWrUqvXv31qoP9YEDB1J9TSds/09JbKqiVUayqKRi9wmcnNRGo4A8KUb6chqW0LbFhg0mI4Yxbtw4zp8/z6lTpwBVnc348eN5/vw5lStXJjg4mKJ9FxNrVTTdVNKsRFQqUPg+4fmeachkMl4plZiZmRH17jYmRZx/uC9uViAARw/soUPb1kSGhWBgUwSLuv2+GySl/F6p2zn9fuIVxnHBdKxbESMjI2bPnk3O3DZsTl72+UMolErq55Ox6fJltmzZwoABA3j48CH29vZ0Hz2dswnFEUmlqlcQUDjWYdX1j/Qtb8nDhw8ZPXo0TZs2xe3MTVosPMY3Q1tE80aIrRvQeM4hlC/P06RiKaZOnUrjxo0xNTUF4Jn7/Uy3fqlkb8nAiuasuxesMh0SNddRKEW4v5dhe69T/OLFdL+YBUHAwcFBmsTJKFZWVvz222+MHz+e3bt3s3TpUurUqUO5cuUYM2YMHTt2ZO9Df6YdVZkmqY9XKcIfrwI49+ILs1qX1NWX6tDxDyAqKooLF64QExOBqam5lFqb1G30xIkTtGvXDkEQyJcvH35+nwAbwsI+8+TJkxRT9kxMTDAxMeHMmbOAyIoVKxg1atTPP6lMkCNHDqlFkaenZ4YmWdXCNj4+nqCgoP/E4PbfiL6+PsOGDUt3ufj4eEJDQyXRm1T4Jv43NDQUpTJtHxc/v8+ANcHBnzlx4oRO2GYBNjY22NnZ4ePjw6tXrwgNDSVHjhwaEVb15NujR484ePAgoLoHfv31VwwMDHj27Bnh4cGANd++BXHjxg2OHj2qsZ8yZcrQp08fjd64aREYGMjFixc1ntPT0yMhQeVv8l9olagTtpmku7MdBXMa023L3XSXFWRyPglWGBont/VOirYtNvrWsOelQtV79tSpUxgYGNCwYUM8PT0ZMmQIefPmZeDAgfTq1YswQys6bLil3YllEYJMjp5dOY6eOEWtGtVo2bIl169fR//eEUwcU875/ysRRRFFRCCX/niKh4cHTZo0wd+hQbI+talvQMmINUd4f+c8CQkJLFu2jNBYUZW6nBXH970/bvC5tXSZf5qJBQrQsmVLJk2axNy5c4mPj+fw6wiMCikksZ0am655ofB+iCAIVKtWjZm7L2HScioBSoU01SHIZJg6VUMsWo3GrUvSIYlo+9HWL07yr3xxn0yXGZu48j7kzwhoMWv61SiI9ZDS1KlTh1q1anHx4sV0ezQ7ODhkOGKbFCMjI3r37k2vXr34448/WLp0KS4uLvy6ZBN6jccDyVt6qR9r06dahw4dPx8/Pz9iYiIAa8LDv0jupkmFrZ+fH48ePaJ8+fIIgkDXrl3ZudONIkWKUbJkyVS3r6qvNUIQ9CRTl38qhQoV4tu3b0RERPD161dy586t1XpJ62x1wvafjb6+Prly5dLqOikUCsLDwzUEcGLx6+fnx8ePHwkJeY2eniENGjT4C87g/wNnZ2d8fHwQRZF79+4lC2xZWFgQHh7OokWLpOf69OkjTe5XrVoVR8divH37Gjs7zfZjRYoUoW/fvtL3mbbMnj1boyUjqOrz1TW8/4XPvi7f5AdwtE7eVDk1tHV8VUeDBUjmQqt2wx1Z3ZrhnZvRq1cvFAoFgiAQFxfH+fPnKVWqFKdPn8bX15d58+ZRtGhR8hvFoffkULKbOcOIIqKYAQdnQaDqL3UxMzNj586dKJVKYj++pGDQXQQgHZPdn4ogCMizW7JizTocHBywLWCPiWMV7UQtgEyOURFnpkz7nenTpxMbG4uVefbMx8RFUfP6yOTIA72IC/AGVNGHY8eOMXfuXIzylcC85USMCldKV9Sq2XHfH1NTU0rXa8PhD4aq1k1JzlUpqiK/vx15zn3vII3XtLkv02r94unpiTzYh619qvFyRmPuTa7PyxmNWd+9AhXtLcmfPz9XrlzB2NiYWrVqSV+yqaGtsI2JV/A1PJaY+NSduAVBoEGDBpw+fZrnz5+Tp043REXazt3qvrs6dOj4eylcuDAuLj3Jli2S8eMnSO6mpqamhIeH4+fnJ9Wtqdv8AOzYsR1PT0+ePn0oZaakxNSpU7GwMMHUVI/+/fv/3JP5QTKbjpy4Hk/njJxxYmNjNVpK/ZOQy+WYm5tTsGBBypcvT926dWnbti19+/Zl7NixmJubky9fPmrWrMmOHdu0NmzTkT6VK1eW/n/nzh0NZ2RQRWxXrlwppYuXLVtW6k378eNHli5dSoECttSrV1fjs+3k5MSyZcuoUKFChkTtH3/8wfPnz5M9nzdvXun/uojt/zk/w/EVVNFgJ2tTNl/34tzLz1J0q15RK8TXFxjbqqVUB6NUKnF0dOTNmzeMGTOGuXPnamzryZMn1KpVi9DQUIoUqECcRebTJ0Ug5sMLjPKX1OrDlPic8+XLh4mJCZGRkQge19k/eRSbr3tx9sXnn9wcJw0EGRWr1ODt0/ucu3SN/KUGZnh9OwcnvF8/JSYmhrF9e+NbwJyrniHauWYnNtoSBARRAci/PxRQWtph47KI+FtuvLyyF3Nzc/otcOV8kKUqspyBL7R4KycsrKxx6D4Zr7i03bfVoi2pSE3pvkzNpVmpVKJQKKS/169fU6BAAb59+yY9FxCsICEhQWO5tWvX0q9fP6pVq8bq1aspUKCAxusKhWod9YB1586d6OnpSc+rl/GOlHMn1ASPaGNEBARE7PXCKKUfgJUQrrGtxNuOU4h8NWmQ7nurbd9dHTp0/FxkMhk7dmxnx47tGs+HhIRw9+59RFGBn98XKlcuz82bNwkMDCRnzpzIZDKt6tEqVKhAYGAAoij+42tPEw9+379/T5UqVbRaT+eMnHkePXpErVp1iYyMoH37tlSvXp3cuXNLf1ZWVuTMmVPDU+Wv5NatWxw+fJg2bdokS7f38vLi2rVrgGpyQy2q/u2oo6CmpqaMGjUKfX39v+U4SpQoIY1779+/T6NGjTRef/fuHZcvXwZUwYvx48cTGBiIu7s7Z86ckVLIBUGQ6nOVSiWvX79mypQpzJgxQ+s2RR4eHixZskR6rNYP+vr6ZMuWTXr+vxCx1QnbH0Brx9dUag/TImmLjUvnT9OvVz3JNMDU1JT+/fvTp08fSpQowYwZM5gxYwZ169alfv36gMrdsVu3bigUCoYPH063kR3pvPlOukIyqViXIaIQIejsWqKenqXM8LWEGOdLU7yldM7qiOTVq1cxDPdjffcKxMQruP7uG4vPv+GVf9hfaswhAAcOHyFXdkOePHlKpwMfM2SyJSqV+Hq8BlRCbtasWRjmO4h1twXpnocoikS9vY0i4B05arh8r+tNcn98j8YaVHVhYI3yuLm7cy7IEiGFaGu65yqTsXLDNkZdSF90K5QiZ55/omSZfijjY1MUlgpkRMWLRIZ8w91QHzdR1BCKqaFtahwgWdqnRWI3UzXZyzXBsuEQUCoQ5KrrICLgGZcdz/gcJNx2R/C4jp6eHnK5XONPyGYG9RtqdXxJHaB16NDxzyEuLg5RVAC2xMeHAqq0zDNnziRr2ZYegiD8Y02jEpPZiK1O2Gae/fv3Ex4eAeTg0qVLBAUFJVtGJpNhaWkpCd2U/jUzM8vyeywsLIy6dRsQGxvH6tVr+fLFXyM7YdeuXdL/O3bsiKGhYUqb+dcxfPhwduzYhSjG/61O5np6elSqVInLly8TERGRrBfx3r17pf/369ePQ4cOcezYMSnDBFRR3S5dutC8eXOePHnCzJkziYmJ4cmTJ4wbN465c+cmaxuUlJCQEKZPny7V0QKSaK5UqRIhISHS8/+FiK0g/nB+6v8397yD6LjhVppiUQD2D6ya4Xq8+Ph49u3bx7hx46Qfm7x587Jw4UI6deqkMQOoUCho0qQJjx8/5uHDh6xevZoFCxagp6fHjh076NKlCwDud3yYeuS5KuKXKI1VLhNUNZI1C+IbGMW5l19UpkRKJdFvbxF27whxn15z7do1DGyLZeqcDYyzoxD0yWtlQQ6TbNy7d09yogRwbtkDH7NSGNoWS/MLXn3LZtWPgNrtNigilntegdoZW4lKIt/cYlRFEwYPHsy3b99wd3dn8eLF5KjQDKPqPREAMYlLtAhEPD1PyKWtKGMiyNVmMsYOldMUqgIiTiaxIBN4FaqXKeMtUank6vja1FpyVet1GkVdxkSuSCb+1IJQqVSyYMECypQpI7XCSLqsevlx48ZRpkwZBgwYkOK2kv5FREQwaNAg/P392bZtG6VLl9ZYPjAwkFKlSuHu7k7Lli2l1x59CEt38iatz2NMvILi089onYXxckZjnbDVoeMfiFKpZOTIUVy+fI1Ro4axd+9eRFHEysoKNzc35PL/3udWoVDQokUL4uPjyZ8/P1u3btVqvcjISFq3bg1A6dKlmTZtGr6+vpQoUeIfH6X+u7lx4wb16jUgNjaGkiVLaEwSZAQDAwOsrKxSFb65c+fWiKxpw+fPn8mb1xZRzIFMFs63b18lEeTr60u/fv0QRRFzc3Pc3Nz+M61+ihUrxuvXPkAsffv2ZvPmzX/bsZw/f56FCxcCqszFo0ePY2xsRNGiRaXPVsGCBfny5YtGOruxsTEdOnSgbdu2GuPkV69eMWXKFCnIlTdvXubPn59qe5+EhAR+/fVXDX8AdZkGwMSJEzl06BDv3r1DJpNx6tSpf/13oy5i+4MkdkiWyTTNZtRiMa3aw5R49uwZ27ZtY/PmzdLNZ2Fhwc6dO2nSpAmgGoAHh8dKvTXlcjk7d+6kbNmylCxZktDQUCwtLbl27ZqGW1pli1iijs4Cp3oYO1YBQSaZ+NSzhftnXDnh7o5/wDccS5SmZZNGrDqzjIT4eEaPHk316tUB6FpUjvvrBBCVGgJZVCQgyOXMal1KOmd125Q8w3cjyGQIiAR63KXX+FnsWzNPWrdB6QLMnTsR5PoMGDGWlj2Hs+2WF/e8g//cvigS6/uMhIggspeonYErlTpqt1uFQokoyLSqkxUR+LVNZcb2aA2oWtDMnDmT3r174+Liwv2dE6nUfQIfyYWISkxZ5TDka3gcpmUakr1UfWI972NYqGK67Y9EBF6Gq3raZaZVkqhIIOrdHUoV6YXFwO0I2kSlRRG/cAU5FYHo6elJf2oBqf6rWLEiN27c4JdffsHc3Fzj9cRCNCAggJw5cxIbGyu9rlQqEZPUFguCgEwmw8zMjM2bNzN48GB69eqFq6sr5cuXRyaTIZfLsbGxIXv27Pj4+GBgYCAJ4q23vJN9DpOSWqo1/NwsDB06dPx1yGQyVq1aKT328vLizp07fP36lbt376bogvxvRy6XY29vz7t3776basVoJVZMTEzIkSMHYWFheHh4UKhAAYLCwnDp1o0d7lljiPhfpXr16nz86Et0dDTZsmUjICCAr1+/pvhv4shYUuLi4vDz88PPzy/VZUxNTVMVvlZWVuTKlUsj4BEWFkapUiX58uULDRo014js7dq1S/rt7dChw39G1CqVSvLnz094eDh6enr069fvbz2eSpUqIQgCoihy9OgJgoMNCA72w8zMjLx58yIIAl5ef/p1GBgY0Lp1azp16pSsJhdUon3ZsmVMmjSJr1+/8unTJ0aNGsXcuXMpXLhwsuU3bNiQzPROfd319PSoWrUqGzduBFTj2H+7qAWdsM0SUquJVTu+aiNqg4KC2LVrF9u3b+fBgwfI5XIUCgV6enrMnz+f0aNHI5PJ0uytaZ9dQKlUEhoaSu7cuXn37p3GB8Pb25uaNWsS+O0b5U0UnNw0jqDwaE4ePcju5dPZ8OABOXPmpEuXLvTo0YOKFSvi4uKCQqEgb968zJgxQ9rWvV1L+fLyIzX6TcMzzlRlPKRUEuNxlz0zBlCnlKqWV91nVSYTJFEmImDsUJk7IoxZd5ilg9sAKgc4URQhIY4b546zfslcmpSy4fCxk4z/bSY+Pj7kym7Aovlz6dFjMrmM9YixVwntxO15BESU6vJVUamR4ptaCwTF9xUEvgstUUxRRIpKBQgyBleyYGy76sleL1iwIFeuXGHhwoVMm9YPx2Il+GBcGMs6fQiMjJciiaqeuJW1q8Ulc4JWQibH/PMDooyNiH57m2yOVbQSt556+Qh5e1dKL05ISEj2/9hYVaryypUrMTIySnFZNW5ubri5uWXqFNq0aZPi81OmTGHKlCkACHoG5B9zIN33Kr362B91gNahQ8c/jxYtWnDnzh1AZSL1XxS2oDLTevfuHUqlEm9vb61bt+TOnZuwsDA+fPhAUFgY1sDxY8d+7sH+R0hcl5i0RjFxX+C4uDipt2xKwjcgICBZumpiwsPDCQ8PTzXNXBAELCws0NPT4+bN2xgaGmFpaUapUqVo1aqVtNzHjx+5dOkSoGoT1aJFi0yf+z8NLy8vRFGkWLFiAFhbW/+tx2Nubo6TkxOvXr1CX18PUJmzGRioghVqkSmTyWjSpAndu3dPt87Vzs6O5cuXM2nSJHx9fQkKCmLMmDHMmjWL0qVLS8udOXOGI0eOaKxrbGws9dKtUKECBgYGBAergkf/hfpa0AnbLCNpTaw6kpqUxK/rCSLnzp1j27ZtHDt2DKVSKbmTKRQKmjdvjqurK5aWKmGcWCQm7a159sUXwi9uIujzZ5ydnblz5w4XL16U0ov8/PyoVq0a3759o2zZsowYMYL+fXpx6tQpBEGgWbNmTJ06laZNm0ofuGvXrrFz504A1q9fL7VP8PX15fz58xgbG3NkXHP0DLMxYuxE3LZuokbVytQpNQdQRWqnHVX1+k0a/VIiIAhw0Eefurdf0rxKcZydnaXXX79+zbNnz5gwYQJnzpyhfv36xAbp07FjB7p3787MmTN5s3c+hrbFaDp2KY8CEiSTILn/C8z87rJhwwa23vDm7At/Ve2sqO74mkaas0JBzMeXONrZ8gFLQJDEsKhUEvX2NuH3jrB+TxTdna+TL1++ZNuQy+VMmjSJhg0b0nHoJCxq91Zd06TvQQaKAARUQj0j66BUgExG0Nm1vD/rRu7cuTn54D1DD7zSYocCMbmK8selK+lGJceMGcO2bdvw9vZO5i4qiiLXrl2jVq1a3Llzh6JFi6YqklN7HBYWxsSJE/Hw8OD333/HycmJhIQEFi1aRHh4OBMnTiQhIYHQWJHlPtpNAKRVH/szsjB06NDx91KxYkVy585NQEAA9+7dw9/fP9X0vX8zBQsWxMvLCx8fP4YNG8G5c2eSpROLosizZ8/ImzcvOXPm5OrVq3z48AFQDcQtTE35Eh7O72PH/h2n8J8gJiaGxo2bcfXqZWrV+oWuXbuSO3durK2tsba2pkiRIsmMf0RRJDIyUkPoJhXA375906iVTLp+UFAQXl5eeHv7IAiW5Mr1lTJlymi00Nu9e7dUY9m+ffsMpzj/k3nw4IHGY23NlX4mzs7OvHr1ioIF7fj6NQBRVPLxo78kJOVyOSYmJjx48IDnz59jYGCAkZGRxr+GhoYafwYGBjRo0IBTp07h7+9PVFQUEydOxMXFhQoVKuDn58eKFSuSHUv+/PmlrhM1a9YkMDBQeu2/UF8LOmGb5Rjpy1McLCeNtCKKKH0fEXB1N46WenTp0oUDBw7g6+uLra0t+/fv15hRTkskqh9nr9OP4T3aMX1Id9q3b0+vXr148OAB2bNnp2rVqvj7+2NlZYWnpyc9evSgUqVKLF++nE6dOiWbqUlISGDQoEHo6enRtm1bmjZtKr22fPlyAIYOHSqJ3T9OHCIuOkIjsrb5ume6aaGCqGTc5tM0ruhIrly5sLW1xc/Pj4SEBMqVK0eBAgU4fPgwlStXxtbWlqpVqyIIAsuWLaNFixYYhvuxpHVRylWszC/1GlKrehXGL5jEnTt3qFQoF86FcvH5ayBFy1TC3GVFutE8Qa6HsV0pzs9swqtXr6hYtSZlS5fk8dPn2NvaEOjxBlEU8UE1a7Zu3ToGDBiQ4rYqVKjAL/1/5+Kbr5BBs6fEiIoEylnrkds6/RRZtQgXEEnweUTY/aMUMIyVTJsqO+YDXmu1X23NkUaPHs2qVavYtGkTY8aM0XhNEAR8fX0BKF68eLLektryyy+/0KJFC2bMmMGJEyeoU6cO9+7dY/fu3bi4uACqSaOVGaiPTculPCuyMHTo0PHPQS6X07RpU7Zv344oipw6dYq+ffv+3YeV5YiiyPv37wFrLlw4z4sXLyhVqpTGMqNHj2HFiuWYmJjRuXN7fHx8pNfkcjljJ05k+PDhKaZC6tCO+/fvc+XKRcCaK1eup+iKbGpqKond3LlzY2NjIz12cnKS2sWo01X37dtHrly5+PTpE2/fvk3V6EslVBWI4leMjVXZc+o0VX9/f/744w9p/y1btsz6k/8b+ScKW1tbW0A12aFqmWlDWFiY9Lp6Aj/xc5khISGBbdu2sW3btlSXSdxKcc+ePaxfv57r12+jVCopV67cD+3/n4JO2P4FqCOtAiJKdbRQEJAXKIuNS3kUr47j6roBfX19Zs+ezeTJk5Oly2ojEuUygc9mxREEga1bt1KhQgWaNWtGQECAlGqgr69P37596dGjh5SqkRIbNmzg5cuXmJqaasz6xMbGsmHDBtWP3/fZ3Hfv3kk1Aup0l5h4xZ8iPi1kcqJzOjJtxixmz5guCVuAOnXqcPz4cYyMjDh06BCAJPbfvXsHqGpImjZtiqWZKYtnT6dSpUoMGDCASpUqSbuwscrJ6RNH6brfN52DUSEiMGjnffpUtiW7npKHt69Tr149Lly4QL169bh79y7h4eEolUoGDhyIu7s758+fT+YoGBOv4Mr74Aw7GKf0Ht3YOpsDBw6kmyIrAAH7ZxDj84T6dWpxwesJb2Uydu7cSbdu3X5Ki6r8+fPTrVs3li5dyrBhw6SIvxpPT09y586daVELqh+nEydO0KZNG5o2bcrRo0dxcHDA19eX2NhYDA0Ns7w+VtssDB06dPw7aNKkCW5ubpI7co8ePf62ViA/g7dv3+Lq6oqpqQXh4V8wMspOgQIFki13+PBxIA+Rkf7cuXMnmeFRmTJl/tGiVh2ZVPs6/BMpXrw4efLkx9//AzlzppwOq04tVk1E/Pmcv78/lpaWGBoa8vDhUywsLIiNjSE0NAhDQ2OqV6+SoqmXoaEhDg4OtGrVCj8/P06fPk3OnDmxsbGRsqkSR2vbtm37jxB+WUVMTAzPnj3TeO7vjEZ/+/YNV1dXzpw5A0DOnDmxsrImNDQcR8dCKa6jHvv/Fb6+Hz9+5O3bt8TExAHZePjw4U/f51+BTtj+RBQKBesPnmfRwwQQBMQkKbDi9zrHCKfmVCOKk9tXYm5unmw72opEpQjnXn7ma1AIJ48dIUeOHDx69AhQFYVv376dpk2bpvtD8PXrVyZOnAjA4sWLNX70du3aRVRUFB07dpRqF06fPo0gCFSoUEGamQqPSchQ/eiCpSs5uG8Pb9++lZ6PiIiQDA1u3bpF/vz5yZcvHyEhIcyePZuWLVty7NgxXr9+zd27d5kzZw76+vrMmTMn2T7KlyqOsN8n2TVIjatvvnH59VdkRWth8OQsBw8epH///hw9epS4uDg6derEvn37pFRbc3NzTp8+Te3ataVtZOQ9gORtlkRFAoJMjlP4I869vM2iCYOYOXkVvx178d2k68+PrzpF9vcWxXhv0Jg5cx5w8eJFlEolBQsWpHv37jx69Ij58+dT3c6Uq+kIblGpIPLdHYYMPMikSZMoUqRImsc+YcIEXF1d2blzJ71799Z4zcvLS6t+kelhbGzM0aNHadeuHS1btmTGjBmIooiXl5dUR/Yz6mNTy8LQoUPHvwtLS0uqV6/O1atXCQkJ4caNGxrf2f9mvLy8+PXXX4mOjqZChTKEhISQO3duDYEqiiJ//PEHlpam+Pp6YWJi9n2wbUXjxo3Zvn07sbGxfPr06W88k/Tp338AW7ZspmjR4ty/f+eHJk1/FpaWlrx69YzXr19jY2NDYGAgAQEBfPnyRfpTP1aLGFEUefjwCfHxSnx9P2BllYv4eH0CAr4BcYAtsbF+Uv/RQoUK4ejoSNGiRSlatCh2dnbS+M7X15f79+8DSGnIX7584dy5c4BqslhdqvZf4dmzZxqtckxMTP4WV+/o6GgOHDjAvn37iImJkZ6XyWSUKVMqjTU1Ba2FhQWVKlWiXLlyFCxYUPI1Uf/FxcURExNDXFwc0dHR3LhxQyMiK5fLMTAwkOq2E7shq52WLS0t8fX9AMTRuXPnrHoL/lZ0wvYnoJ413bFjBzGVemBSxDl5j9JEyGUCpdqPTFHUQsYEklKEgo7FiQr6rGERPn/+fK0NAiZMmEB0dDTOzs7JHOVmz54NwKxZs6Tnjh8/jiAItGvXTnouI5FBRBExLgovLy9WrlzJiBEjkMlkPH36VEqtvXnzJtWqVZPOJSYmhjZt2nDsu7nFjRs32LFjB5s2bSJnzpwam4+NjcV1+3bED98Q85bUKoKqBBAEzOoNJPqTB8ePH8fV1ZXatWvz4MEDRFGkbt26PH78mLx58/Ls2TPq1KlDy5YtOXLkCGcfvmfh8YcgGmsYW6WGIEA9J2suvP7TFKywSQx33RbwKu4bACdPniRP6RoUNi2OR1ii+0kUqWhnwfiGTqoU2eozadOmDY0aNeLr1694e3uTI0cOli5dypMnTyhRuyXI0hZ2gkyOi3M+di7fiqurK507d2by5MmUKFEixeWLFy9OixYtWLhwIT179tT4MfH09NTor/gjqKP3nTp14rfffgNUjcfVwlZXH6tDh460aNGiBQcPHuTNm/f06zeAZ8+e/OtrDD98+MCECRM0uiionecDAgKwtrbGw8OD1atX8+LFC3LlykW9enWk6FDx4sWpXLkygwYNJzo6jLCwiFRLbP5ulEol27ZtBax58+YlAwYMYNWqVcl+9/8JmJmZSd4hdnaqlOC4uDg8PDx48eIFr169Ii4uTqP3rSqamg2II0eOHHz9+h5BkNG1azdu335A7dp9GTNmDA4ODsmyoxLj4eEh/V8tbPfs2SMZOrZp0+YfOSHwI/xoGnJcXJzkBaIu38oISqWSCxcusHXrVr59+yY9rzaDTUr27NklIydQZVQmJCRI4jY4OJhz585x7tw5TE1NqVq1KjVq1JBMn5JiYmKiIWyjo6P59OkT5ubmlChRgsjISMLDw5HJZLi6ukqa4+nTpyiVSsqWLZvhc/4noutjm0WEhYWxb98+tm/fzo0bNzAzM6Njl26cN2+aZk9NNWn1xMxIb01EJS5GjzhycD/Pnz+nfPnyODk5ceTIEe7evZuqMFFz9+5dnJ2dkcvlPHv2TCNd+cGDB1SsWBFnZ2du374NQFRUFGZmZiQkJPD69WuKFi0qLT/Q/X76NaGKBBS+jxlV0YS5c+dSvXp1zp49K826eXl5kSdPHnLkyMGiRYto3bo1jo6ODBw4EDc3N8qUKcPly5cxMDCgbNmy3Lp1SxJVkZGRbNy4kcWLF+Pv70+1Vi58KNohQ/1v5TIBg4BXFPS7wKlTp/jy5QuOjo5ERETw/PlzGjRogL29PSNHjqR79+7ExcVhWr4ZFg0GgVKhlYgWUNKwuA0bXColS3t9//49ffr04erVq+R0bo1J7b4IiCozrETvoSDXY3brknR3tpOeL1++PHFxcbx69QpTU1NCQ0Ol9jtFmvQhwqlZiuJPoVBi/eESd3YuISYmhq1bt7JgwQJ8fX1p27YtU6ZMoXz58snO48aNG9SoUYMjR45oODAWKFAAFxeXFCPpmSU+Pp4uXbpw8OBBevXqlaym5L53EJuve3HmuT8IAjIBGha30dXH6tDxf44oipiZ5SQ8PBvwiT179tCpU6e/+7Ayjb+/P2PGjJEG0k5OTpQsWZIDBw4A8Ouvv/LixQtOnjwppaACVK5cmZcvX0oD627dun3PtrFGJgskISEuy3rFZzXt23fk4MH9mJiYUblyeaysrJgyZYqGI+w/hcDAQF6+fCn9vXv3TiOqmJTg4GD8/f2pXr06ffv2RS6Xkz9/fo2xlTZs2rSJffv2AaqARMGCBenZsycJCQkYGxvj5ub2j043zwz9+/fH29tbelywYEGplY02NG/ekpMnj2NqasGTJw8ylGn25MkTNmzYIJXJgSpC26JFC06dOqVxzfX09CQDsCFDhuDm5iZNSgmCIJXSPXr0KMV7JVu2bFSuXJkaNWpIddizZs1iz5495M2bF2NjY0RR5MaNO8TERGBgYMzatSvZs2cPAGXLlmXRokVan9u/DV3ENgkZqadTKpVcvnyZbdu2cfDgQWJiYmjYsCG7d++mdevWhMcLnJv7h1b7TcuoR9vaQZkA9YtZc37tKUnUXrt2DVDNyLRr14579+4lc65NfD59+/ZFEAQmTZqUrAZXnZ6c+ANx6dIlEhISKFy4cLIvXm3SQgWZHLepvalTsgCOjo60atVKo8725MmTVKhQgbi4OKpWrcpvv/2GmZkZt27dwtTUlIMHD1KxYkW8vLxwcXFBJpMRGhrKmjVrWLZsGSEhIXTv3p1ffvmF4cOH4yDPQWiRxqq2PbL000sVSpGYXEU55/YbX79+xdramp07d9KiRQu6d+/O5s2badasGX5+qvQgw3zFsWgwSDUg0LK2VikK3HGdx1vn+Tg6OmrcA4ULF+bSpUt0HDqJe2Y1vw80NAcbavH825HnOFmbUtHeki9fvvDo0SN27NhBiRIl6NWrFy9evCBHjhwEBQXx8tgGptR1JsCiZDJzpCIKX8YtWMofvZtQv359hgwZQr9+/XB3d2fu3LlUqFCBpk2bMnXqVA2Ds+rVq1O9enUWLFhAy5YtEQSB2NhYPn78mGURWzX6+vrs2bOHXLly4erqSqNGjTTSaNT1sS1atyVOlHH0wF5dOrEOHToQBIH69ety+PBB9PUNNPq8/9v4+vUrEyZMkERt4cKFmTt3Lg8ePCAuLo6IiAgWL16s4aKbL18+hgwZQqVKlTh16hTLli0D4OLFi1So4MyDB3cYNGjoP1bUAuzbt4eLFwewceNGgoODCQoKYvz48fTr14/27dv/1GNPSEggMDBQciq+e/cuW7Zsp0SJ4mzbtoVv375J0diXL1+mavCUEoaGhkyePJnWrVv/cApt4oht4cKF2bNnj3QftGrV6j8nar99+6YhaiFjEVulUsnZs+cAG8LDP0vdHlLLpFTz8eNHNm/ezI0bNzSer1KlCv379ycqKoqjR49qvJb48xgeHs7GjRtZsGABjx8/JjY2ltWr15OQkICb2zZy5szJ9evXuXPnDiEhIcTGxiKKIleuXOHKlSuAKrB29+5dQJ+AgCCWLl2InZ0dFy40AfIQF+ev4X78yy+/aP2+/BvRCdvvpNUfNmmEx9PTE1dXV1xdXfHx8aFIkSL89ttvuLi4aLZ/kSuyzKinp3N+zr74TJqtakR4sm85d+/coWzZsly7dk1KRz5w4AAVK1ZkwIAB7Nq1K8Uv/i1btvD8+XPy588v9QZVExwczKVLl7Czs6NmzZrS8ydPnkQmk9GxY8dk20ucFqphnAUgKkCQM7tNKeqUVJlbtGzZkuHDh7NmzRppsSNHjhAbGyulirm5uVG/fn0uXbrEtWvXiI2N5evXrwAsWbIEf39/1qxZQ0xMDH379mXChAk8ePCALl26UK9ePQ7sWMDLgBh+O/iQV99iU30vNd5XBOSGxuzfv58hQ4ZQp04dbG1tefjwIc2bN5f6Bfbp0wdF1T5c9QzR6prLZQIKpZLgc2sJfHuVsmXPsGzZMgYMGKBxfWQyGZZV28ML/zRT2mUygc3XvahobymZFTRq1IjcuXNz//59Zs+eLaWSy2QyZo3oRd26dXlw+CgJgr40mSOK5Tm4oSoTJkzg/v37yGQyDAwM6NOnDz169GDfvn3MmTOHatWqUbduXaZOnUrt2rURBIGJEyfSsmVLrl+/Ts2aNfH19UUUxSypsU2Knp4etWvX5t69e3Tr1o34+HjJIVlNaNA37OzsdKJWhw4dEnv27OLUqVM4Ojr+a4VtUFAQEyZMkIRTgQIFmD9/PqampkRERHD/9m2i4uKwzJGD8pUrY2RkRPfu3Wnbtq1kmNW4cWNOnz7N69evv0d+R9C8efNUJ79BJZiaNGhAcHAw6zZtokOHDn/J+SZGJpNRv359KlSowNy5c3n8+DFKpZKNGzfy8uVLxo0blylTJIVCQXBwsNRrNmnP2a9fvxIUFKRRB/nw4WOCggzw8DhMjRpvpJaNqWFra0v27Nl5//69hsCpWbMmQ4cOzZKUalEUJWGrFmanTp0CVOU8icvG/iukZHyUkVTrFy9eULBgAd6/98bc3IqwsDDGjBnDvHnzUuyFGxYWhru7O8eOHdNIMy5cuDADBw6UHIYHDRokvWZoaEhsrOa48+rVq/To0YMFCxawf/9+ZsyYQVhYEJCXsWMnMG/ebORy+feSvDsoFHHky5cfJ6c/A0l/ZmIYAyK5c+emYsWKTJ06lR07dtOt2yRev1Z1wxAEgerVq2v9vvwb0Qlb0u4Pe+7FF2a1LknrEjk5ePAg27Zt48qVK5iamtKpUyd69+4ttaBJyo+6tIqiyP3793F1dWX37t3EFXAmZ6MhCAIaJkjq2sFcPhe4e3I3ZcuW5ebNmxp1Q0WLFmXLli106tSJmjVrMmTIEI19BQcHM3r0aAB27NghmTapI9jTp/2OUqlk5syZGsd3+PBhlEolbdu2TfHcujvbYWsiMGLNYcJyFEKQyRAQaVQyL/1SmDRYuHAhx44dw8fHB319fR4+eYaxpTUVnKsyZcoU8ubNy/nz51m0aBFVqlTBxcUFfX19bG1t8fb2ZunSpQwdOpSxY8eSJ08etm7dSv/+/enYsSOurq4YGBhQ0kaGx4vHiLmdtJrZlQlQq5ozq1at4urVqxw/fpyoqChA9UM4e/Zsnj9/zr6Dh7Gybqt1PXQ9p9wMqFmIT1WVdO16FRMTEwYNGsSJEyfYvHmz9GUaE6/gj9cBCOlEmBVKkXMvPxMTr+D06dNS30ZQNQOfOXMmz58/5+TJkyQkJJAvXz4uXrxI/rw2bN26VZqcEASBhQsXUrNmTfbs2UPXrl2lfejp6dG1a1c6d+7MkSNHmD17NnXr1qVatWpSH+TixYuzYMECatasKTWS/xnCFqBIkSI8e/aM3r1707NnT+Lj4+nTp4/0enBw8H+mbkSHDh1Zg4GBwb/aOCc0NJSJEyfy8eNHAPLmzcvChQsRRZElS5awf/9+ouLisAa+hIXxyy+/MHjw4GRt/WQyGSNGjGDYsGEolUp2795N/fr104zmubq64uXtjTkwfPhwYmJi6NSpU5r1nj8LCwsL5s+fz44dO9i1axcA169fx8vLi+nTpyf73Xn69CnHjh2jWLFiKJVKQkJCNATst2/fUqyFTAtjYyOCglTXIel7YGhoiKOjIyVKlKB48eIYGxuzadMmjTrInDlzMnz48CwVG1+/fpVaxzg4OLB//34ppbVly5aYmZll2b7+KSStr4WUI7ZxcXGsWrWK+Ph4xowZI12zP/74Azs7O+zs7KTa1w8fPjBq1CjmzZuHvb09oCqDOnbsGO7u7hr1sZaWlvTu3ZsGDRpIBl5hYWEajtdNmzbl8OHDgMq8KSoqCh8fH86fP090dDSfP3+mSJEivH79BlH8hEJRgC1btgDw+fNnFIo4IA+BgaEa52Rubo6joyOhoaHY2dmxdu1a1q5di5OTEwsXzqFgwYJSsKpkyZJYWv63y7H+74WtNv1hpx5+xrDu0wn1eEi9evVwc3Ojbdu2GuZMqZEZl9YPHz7g7u7Ojh07eP36NXnz5qVfv3706NGDaJM8KfTWzM2bo+u4fGArpUuXTiZq1XTs2JHr168zatQoKlWqpNESZ+zYsURGRtK5c2dVFCxJBFs0rk+eDuY41WwmraPuo5YrVy4qVKiQbH8KhYItW7YwZcoUwsPDiVOIDB4xmiXz56QaQTMyMmLHjh007DaYHJXbkM3BmScyGRRUEvn2NgrjIJo1K8uYMWPYu3cv7u7uGvUKuXLlYtGiRQiCwOLFixk/fjyDBw9m1apVyOVyRFGkdbsOxJUcoHW6kkXUR65fuSQ5y02ZMoVGjRpRtWpVqlSpwvTp0zlw4ACPX78nOgMV63Nal8LK1BDsVRHO5s2bkytXLm7cuEGpUqXYsmULLVq0yLB5WEhkDOfOnWPYsGEar4miyN27dxkwYADm5ubMmzePfPny4e/vT6dOnVi9ejWbNm2iaNGi1KhRg1atWjFlyhTatWuXrJWRTCajbdu2tGnThlOnTjF79myaNm1K+fLlqVevHqtWreL58+d4eXlJNUI/AwcHB3x8fFizZo3Uyio+Pp6BAwcCKmFrYWHxU/atQ4cOHX81ERERTJo0SUq7zJ07N/Pnz+fatWts376dyMhIsmfPjo21NSGBgQzq108y2kuJIkWK0KJFC44ePUpMTAxr167l999/T3X5mjVrMk8QCBRFHM3M2LFjB5cuXWLUqFF/S42rXC6nd+/eFCtWjAULFhAREYGfnx/Dhw9n5MiRNGjQAFCNVypWrER8fBzm5rmoWLFsluzf0dERMzMzDA0NcXJyonjx4tJf4cKF0dPTIzY2Fnd3d/bv368hnFu0aEHfvn2zvOVO4jRkW1tbTpw4AaiEdvv27TO1zcuXL7N06VIqVarE1KlT/1Gp6kqlUorYJo6KpjRGnzdvHr//PgOAffv24erqStGiRaW0XiMjI5YvX87vv//Ox48f+fbtG2PGjGHWrFkEBwezadMmDddwQ0NDOnbsSIcOHZKNu5N6f/zyyy9cuXKFoKAgKTgCqoBOYqpUcSY2NlZj7JIzZ06yZzcnMjKALl160rdvXwoWLIiVlRXv3r3j+vXrXL9+XePYXr9+zevXr/H09MTHx49cuSylsdF/mf97YatNf1hEJWU7jsZ1QE3J2U4bYuIV2Oc0YVqL4sw8/jJNl1anXAa4ubnh6urKxYsXMTIyok2bNqxYsYJ69epptOhJ3Fszu6Gcbp07cvnwYUqVKsWdO3ekaGtKLF68mDt37tChQwcePnyIpaUlT548Ydu2bZiYmLBmzZoUI9iCTIZh4Yp02nibWd9Nik6ePAmQYk3L9evXGTFiBI8ePaJHjx5SunaB3BbppoX6GNhh3W2BynxJXWciyDAu4gyOValY2oRevXrh5uaGnp4eM2bMYOjQoXTv3p0TJ05w+PBh7t+/z7x585g6dSozZ85EEATu3r1Lz549eev7mfylB6V5DIkJe3yGUaNGsXTpUnr16iXVGrdo0QIvLy8aNWpEz5492erqzphbyj+POS1EkejwYDBVtVIqW7Ysd+/epWXLlrx69QoHBwdatmzJgAEDmLtgUYZS2l8/e0xwcDBNmjTReO3Jkyf4+fnRqlUr6tevT+vWrenVqxefPn0iR44cXL9+nRIlSjBy5EimTZvGvHnzKFmyJKvWrqdnv0Ep1p0LgkCzZs1o2rQply5dYtasWaxatQp9fX2GDBlC5cqVyV+wMMHRCkyNhCxPCXZwcEChUPDhwwfWrl2LgYEBgwYNIi4ujuHDh+uErQ4dOv4zREVFMXnyZMmgxtLSkr59+zJ9+nSplzyoIlVr162jZcuWWvV57dWrF1evXiU4OJgbN25w9+5dyZQmKQ0bNuTh48fs37+fu3fvolQq+fDhA2PHjqVx48b0798/1YhveHg4s2fPJnv27IwbNy5L3airVKnC2rVrmTlzJh4eHsTGxrJw4UJevnzJ4MGD8fb2Jj4+DshLZGRIlu1XJpORJ08ejIyMEEURb29vqfbW2NiY6OhoXr16pRHdy5kzJy1btsTHx4cbN27QsGHDLDse0BS2X758IS4uDoDmzZtn+PfwzZs3HD58mNmz5xMZqc/x48cxMjJi/PjxWXrMP4KnpychISGAKhX45cuXQMoR2/DwcATBEFEUCQwMZMyYMdjb2xMZGQmoJm7s7OxYtmwZU6ZM4e3bt4SHhzN69GiNFHRVrX59+vTpo5EJoVQq+fz5M8+ePZPGyGrUWZHpoTZkTYy+vj6NG9dn+fLlUltNNcWKFaNYsWL069cPb29vSeR6enqiVCq/Z85Z8+WLf7Ksjf8i/9euyBlxG07LtTgpKdXrVrSzQBAE7nkHSc81LG5NOeNgbh3byYEDB4iMjKRWrVr07NmTdu3aaVXc36VLF/bs2UOJEiW4f/9+mqJWjY+PD+XLl6dq1aocPXqU0qVL8/LlS1xdXSn2S3M6briVppOzAOwfWJWhnZpw9+5dLly4QN26dYE/2w7s2bOHSpUqsXLlSqpUqcK8efOYPHky69evT3PG6J53EB023Erz+EVRJOHTKwIvbefCno1SCo+/vz958+bFxMSEyMhIli5dyujRo3n58iVTp07l8OHDCIJAvYaNeV9+qNZR0FczGpHNQI8uXbrw8uVLnjx5Aqjqf9u0acPt27fp378/YWFhOPZdzJtw/TTdkAVE4t7fI+LscqZMmcLIkSOliGhkZCTdu3fn6NGjtG/fnhMnTpAvXz7KDlvDgy/xaU/AKBU0LmWL1ZsjrF27loCAAI1BzZw5c5g/fz6BgYFS+k1sbCyzZs1i3rx5ZM+enbCwMPT19bGwsGDQb4s45RlLgL4NgkyWZt15Yq5fv07//v3xipBhUaUdhoUrgaD9+hnBx8cHe3t7Tp8+TePGjRFFkfHjx7NkyRIWLFjAxIkT2b59Oz179syS/enQoUPH30FMTAxTp06Vfn9y5MhBsWLFuHPnjsZyjRo1om/fvhkWMH/88QcLFiwAVKnNmzZtSje9+P379yxfvlyq3wNVWuSgQYOoW7cugiAQFBTE3bt3uXv3Ljt37uTt2/cIAkyaNDFLnfLVqMx3Vks+E6AqxZo0aRK//z6DI0eOU6JEUfLmzavRD/SvHgq/evVKMsk8fvw4zZs3z7JtT5s2jVu3VOMoAwMD4uLiMDAwYMeOHVrV8CYkJHD9+nUOHz4sicR79x4SGhoKKKhcuTLz5s2Txn1/N3v37mXz5s0ANGnShNOnTwPQt2/fZL1Zg4ODadiwIf7+/jg4OEj15mr69+9Phw6q7hk+Pj5MmDBBox0TQJkyZRg4cCAxMTHs2rULOzs7IiMj8fb2xtvbW6N3rbZ069aN/Pnzc+bMGR4/fpzsdUdHR+bNm5ch0y8/Pz+uX7/OyJFj+PLlEzY2+Xj9+vl/MhU9Mf/XEduMpnim5lqcmNTqdR/4hqBUikxvURwn4ygO79vD7smubPjwAQcHByZOnIiLi4uUx5+UlNyae/XqxZ49eyhWrBgPHjxIli6aGnZ2dri7u9O0aVM6dOjAy5cvqVChAi4uLgza+SDdCLZMJrDhyjvu37+PsbExv/zyC9HR0SxevFgyr9i2bRs9evSQnP1UX4ik+2M77diLdI9fEAT08jph020BXnr5UFem5MyZk3z58vHx40cGDRpE27Zt6d27Nzt27CBfvnzkzJmTggULcuLoYUbse8b5V1/SvP6iIgHjYA+yGajSr7t27UrLli15/vw5JUuWpGnTplhaWnLo0CFOnDhB5cqVCbyxD6Fsj/TOANcpvThqHSSJ/YULF9KuXTtMTEw4ePAgkyZNYuHChXTu3Jl3795xYskYcnedR5rmYYKM1iUsmLr8NA0bNkw2U3/y5EkaNGigMVgxNDRk9uzZtG7dmp49e/L69Wvi4+MxLFGf7R8tEfT/jEAnrTtvXz5fig7iNWrUYOz6o8w6/RaUCqk1UdL1E7cmyiz58uXDwMBAmqEWBIFFixZhYGAgRdZ1EVsdOnT8m4mLi2PGjBmSqDUwMCA2NlZD1BYpUoRhw4Zl2gyrXr16nD59mqdPn/Lp0yf27t2bzIwvKYULF2b58uWcOHGCrVu3EhUVRUhICPPnz2f79u1ky5ZNI5KsShGVAbI0B/9BQUF0bNeOD76+bNy6lVq1aml9HoaGhowdO5YSJUqwatUq4uLiePPmDcOHD6dUqVIEBX3l9u1wKlUql2ogQBAE8uXLR4ECBciTJw+5c+dGT0+P6OhooqKiiIyMJCoqSvpTP46MjCQyMjKZQVBKREXFAnkAf8mLIqtQ/x7q6elJ0dqmTZumK2pDQ0M5deoUx48fl0w51VSpUomAgAAUCgU5cuRg/vz5xMXF0bhx4yw99syQuL42T5480v9TithaWFhw9+5dNm3axP79+5O9vmnTJm7cuIGNjQ3Xrl1Lsd1O1apVMTc3x86uINHRkRgYGFOzZspeO2oKFChAkSJFsLOzY+fOncTGxmqkTT948IDdu3drtORSU6VKFaZMmaJV4Coxtra2dOrUiebNm3Pnzh1Kly79nxe1oIvYZmnE9p53ULrRTkSRz+4TyBapqmvs0aNHquZT6m2m5NYcdPMAB9YtwNHRkadPn2otahMzbtw4lixZgkwm4927d+TNb6f1+yEg4rO4Ha1bNKN79+6MHTsWPz8/Ro0axdSpU5PNKg0YMIBNmzZx7tw5qeYlKdc9vtJ9y90MnYM6elzMypB27dpx6dIl4uPjyZYtGwkJCZibmzNlyhSOHj3KkydP2LVrF5cvX2bPhXso6oxMu07k+7VqVb0Ue/fuJS4uDhsbGwYPHizNNA8bNozDhw/j6+vLw4cPqVWrFpW7jsE7VxVEUZmi4VPxPDmY2bIEFe0tef36NePGjePkyZPUqFFDqmEB2Lx5M4MHD6ZOnTqUK1eOdeefYdFwSLI+tgJI95yASMSbW4xoWILfBv1p+qRuVbR582YNc6XExMbGMnPmTJa6HSV31/np1tAIgsqJO2kkVpvPgfq6ZUXktlixYjRq1Ijly5dLz4miyLBhw1i7di19+vSRDBh06NCh499EQkICs2bN4ubNm4BKdCUetpmamtK3b18aN26sVdpxWnh7ezNo0CAUCgX6+vps3rw5XZdfUGUaXb58md27d/PlS+qeItmyZSMwMBBHR0eWL1+e6iB75cqVjBw5kjxAzmLFePY9aphRPDw8mDlzJv7+/gDcvfuAsDBV/+KiRYtK3g+mpqYUK1aM4sWLU6JECYoWLZqpNOmvX7+yatUqKVoKqprNZs2aUbZsWWJiYiQB/OrVK3bu3EOZMqXZsmVTmk7UGSEsLExyPZbJZCiVSvT19dmxY0eqaaheXl4cOnSIixcvSkJYjb29PW3atKFu3boYGBiwevVqjh8/Lr0+bNgwjb71fzUxMTG0bduW+Ph4bGxsaNWqFRs2bABg8uTJ1KlTJ8X1RFFk8+bNUq9f9XMpjXtMTEywt7fnxYs/Ay+lS5dm6dKlqCYnvlC3bm0pLV2pVGp8DiwtLdm7d6/0eNasWVy6dIm4uDiMjIzSHGtZWVnh5ub2w5/t/yf+ryO2P+panBSt6nURaTB8HvtHNkp39iW16O+55/4oc9SgYEN/nhzdkClRC0htAoyMjMiWLVuGItgiAoKBMR4eHrRr145mzZpx9uxZHB0dU1xeXf+QVk+wzdczPmspkwmsu/SG15vH8fTpUzp37syufQeIwYDWrVrgunUzY8eO5dKlS+TPn59GjRphYWFB27ZtsXHSZ+ebhDRrn5ecNWTfvn3Y2tqydOlS2rdvz869+xk58TdyZNPHxcWFNWvWcPHiRRo0aMCOHTvo0KED3UdP43J0AeRm1ioFmIjXn8PosOHW96ilEydOnOD8+fOMGTOGypUr4+Liwty5c+nXrx+FChWiXbt2+Pn50b9xY9a4T8C8agcMC1WUIqmJL5mIgLFDZbb46FHwjo8UFT1z5gyiKNK0adNU30tDQ0PmzJnDO5s63P0YlWZrIVCJWkgeib327mu6nwOlUsH4LWc4Or75D/fTc3Bw0KgpAtXgr1u3bqxdu5atW7eSN29eqdZahw4dOv4NKBQKFixYIIlaQBK1giDQvHlzevXqlWU9Se3t7Wnbtq3kort69WrmzJmT7HtTFEU+fPjAnTt3uHv3Ls+ePUvTTdjMzIxevXrRpEkTrQboxYsXRwD8AZP4eOLj45OljGqDg4MDa9asYeHChdy+fZvcuXMSFuaBXG5A06ZNadiwIcWLFydfvnw/1DdWqVRy4sQJtmzZomEKVKVKFUaMGIGVlVWK602bNi3T+0yNxL+F6uhf48aNk4lahULBnTt3OHz4cLLUV0EQcHZ2pk2bNpQrV07j+g8fPhwDAwMOHjwIwOrVq4mLi/tb2j4BbNy4kT/+uIyRkRFjx47UeP/TMuUSBIF+/fpx4cIFAgMD+fTpE69fv8XExJTy5Utr3G+2trZ07dqVV69e4e7uDqgcth0cHAgICCJ//mIUKlSIFStWEBISkix4kNTxumjRosybt4jo6HBsbPJSsmRx6ZiSxhpFUdSJ2gzyfy1sIXOuxSkRE6+QoqppIsh4ESoDedpf0mm5NYuCTBWlK9+R55+jqGifsfQEgGfPnrFz506srKyQyWR06dKFE6fPam1SJCqViHFRREdHc/LkyTQFEyBZz6eWFhoTr+DKm28ZPg+FUuTCm298e/4SQ9tinI0qgO3IvSAI3FcqKTloBZ8vX8PAwIBffvmFzp07a6TjtvYOSsFl2pp+NQpS0d6SzvfuUbhwYVUTe6vCBBZri2jRgsrzLkjLOlRpiJubGw0aNKB9+/bMmzePBefeYeZciZRSh9Xv729HnuNkbUpFe0saNGjAo0eP2LJlC7/99hsHDhxg/PjxTJgwgVu3btG8eXM2H72EVc3OyO3Kw/cvwJSEmrq+N/H2T548SYUKFbCxsUnz/YyJV3DfPxbSaS2U0nUAmHrkuRTJTQtBJsczzhS7Qg6MHDaEESNGZNqC3sHBQaqpSUxwcLDqmKZOZfbs2cTFxTF/fvqRaB06dOj4u1EqlSxevJjLly8ne6148eIMGzaMIkWKZPl+XVxcuHTpEn5+fuzfvx9ra2tGjhxJXFwcT5484e7du9y5c0eKgibFyMiI0qVLEx8fz+PHjxFFkdDQUFasWIGHhwd9+/ZNNzpZv359Bg8Zwo0bN8iVKxf37t2jWrVqmTofU1NTZsyYwb59+9i2bZuUVvzlyxcKFixIgQIFMrVdNT4+PixdulSqRQXVOGfo0KH88ssvf/nvTdJJXj09PY0608jISE6fPs3Ro0el4IYaY2NjGjduTKtWrVKN1AuCwMCBAzE0NJRaLG3cuJG4uDi6deuWxWeTPq6u7sTHmxMf78/58+fp1KmT9Fp6btN+fn4EBgYC4OX1EaXSivBwfwIDAylUqJAkkt++fcuUKVNwcnKiefPmksu0vb09BQsWlEzD7t27x61bt5JN8iQeH9+9e5cVK1YQHR0O2PDlS4AkbNWiViaTYWNjw6dPn/j27RuhoaH/FynEWcX/vbCtZG/JrNYl+e3I8zQjd+mlTGZ1va420V+ZTGDzda8Mp3OKoiilqhw8eBBRFKlbty6jZi4ll2klAsLTrg8RlQqi3t6mgG0eXrx4oVX/uvDwcCD1iG14TELaKdxpIcjQK14f01o9EQRR6vEryGSIeUti030h05oVpU/N5IOAivaWGi7TSetF9fT0eP78OUWa9OFgqB3ysATNmtPXAShqD+fkxc1ERESQPXt26nbqz/qQW6RVDwuqQG7i66enp8fAgQPp0qULc+fOZf78+WzevJm5c+cyZt0RFlzw/l6z+v380vnBVN8fZWxNOXNG5eycHhm5j1Pcp5YTI6C6Pp2692LhwoVS/+HRo0dLvXe1xcHBAU9PTxQKhcbMplrYTp48mVy5cjFq1Cji4uJYunSpTtzq0KHjH0t0dDQNGjTA19eXQoUKSdEjCwsL+vfvT/369X/ad1i2bNkYPHgwrZo1IyQigtGjRklGR6nVxebJkwdnZ2cqV65MmTJlpDHBu3fvWL58OW/fvgVUPg83b95k8ODB1K5dO81z6Nmzp7TeuXPnMi1sQSUUOnfuTNGiRZk7dy4hISEEBAQwevRoBg8eTPPmzTP8fsbFxeHm5sbChQtJSEjAzs4OuVxOnTp1GDJkSJrZaT+TpMK2UaNG5M6dmw8fPnDkyBHOnTuX7Dra2trSunVrGjZsqFUbS0EQ6N27NwYGBmzfvh2A7du3ExsbS+/evf/S39cGDery8OECQEZsbKzUtgfSF7YXLlyQ/p8/fx7evn2DXG5Ajhw56NOnD+bm5ri7u0uttdTtcxLXxiaOsK5fv14SymqMjY0pXLgwMTExzJw5k3v37mFoaEj27OZERHymQAF7jeX19fWZPHkyT58+lXrevn//nvLly2f0rfm/5f9e2AJ0d7bDydo0zchdepga6WWoJYupUepvvbbRX4VS5NzLz8TEKzLURmX9+vW8e/eOFi1aULNmTQC6TFvH+ag8yMJjSF+QyQi/d4T5M37Tuim72uo+tS97UyM9jVrRDCEqMa/VUxXFTHLs6ujlrFNvKZ0/Z6rX0khfnup7+DowHqOavQBIWtavmngQyF6nH8vcj/HboK5suuaZLP04JZQiKV4/tTHDwIED+fXXXxk4dSE23RaofizScFtOivr+uHwtnNDQUJo1a5buOhm5j1NCKaIK12px/jIBli+ax4xJY1m2bBmrV69mxYoVDBw4kHHjxiWztE8NBwcH4uPj+fDhg4b5WlBQEIaGhmTLlo2RI0eir6/P0KFDpQbtP5J6pkOHjv8ur169om3LlsTGxnLgyJG/dFApiiIdO3bkxo1bgAFKpZLixYvTpk0bXFxcyJ49+0/b9/Pnz3nz5g2hoaEkJCSQGwgA7t+/r5FtJZfLKVWqFJUrV8bZ2Zn8+fOnKGaKFCnCypUrOXbsGNu2bSM6Oprg4GDmzp3L+fPnGT58uIbZT2IqVKiApaUlQUFB3L59m5CQkB8Wi+XKlWPdunXMmjWLly9fEh8fz8qVK3n58iUjR47U2pzn+fPnLFu2jMuXL+Pp6Q2oIuwODg5cunSJS5cukT17dnLkyCH9mZmZaTxO6bnMpFsnRT0ZACpBX7x4cSZPnsy9e/eSLVuhQgXatGlDpUqVMvV72K1bN6Kjo1mxYgXm5ubs3r2b2NhYBg0a9MPiVqFQ4OPjIxlEpsa8efNwcHBg9+7dyGQyyagU0ha2oihKwlYmk7F16xZGjx6NkZERhoaGrF69mmHDhrFhwwZu3LiBu7u7ZPKVmjnYt2/Jsw4rVKjA2bNnJSMzUH1+nJ0rkJCQQPbs2TW2N2rUKGrUqCG1H4K0hW10dDQhISGEhITg6enJunXrcHJyYsaMGVneH/nfgk7Yfie9yF16ZGW97s9wa1YTGRnJmDFjMDIykmoF7nkHcT06ryqFNM2dKUEmQ+/xQeI+vaZt27baHSSq/nt6enro6SW/5dQGWZnRUqIiAUVUKHrZLUhLkGc2ug2q6Lk8nei5ICrZ8yiA8fEKLrwO0HrbaV2/ggULsnfvXtqvOMv9T7Hp1rymtv3jZ85jbW1NhQoV0l1e2/s4TQQBUalI0ThLjahIIPL9PXp230Hv3r2ZM2cOEyZMYOXKlaxYsUIyfZo4cWKqTuFqHBwcANVMdeJlk/awHTJkCAYGBgwYMID4+HjWr1+vE7c6dOhIxogRI/Dy8MBIEFi+fDk7duz4y/bt6urKmzdvUP0aKzA2NqZnz56MHDmWiRMnM2bMSOrWrUuhQoXImzdvln2HHT16lDZt2iCKIsWKFcOxeHF8vL0pZG6Oubk5FhYWkpAtX7681oNmuVxOmzZtqF69OmvXruXGjRsA3Lt3j/79+9O9e3fat2+fbGwgl8upX78++/btQ6FQcOnSJdq0afPD55krVy4WL17Mpk2bpIjYH3/8wfv375k2bRr58uVLdd3IyEi2bNkimSepaljlgCxZ+mlERAQRERF8+vRJ62MzNjZOJnxNTU1TFMHqx4k9VqKjo6UWQqCKvi9atEhjH0ZGRjRo0IBWrVphZ/djnQlUxmbz8PX1RF8/G9WrO3Po0CGpj3xm702FQkHVqtW5d+8OZcpU4Pbt62k6WPfr1486deowefJkjdY8X758SbW++cWLF1I6fdmyZXF2diZ37twaInP16tUAtGrViurVq3Pz5k2WLFmi0ZM4PTw8PLh27ZrGc3Z2dvj4+KCvr59MJH/48IFv375piPmLFy8SGhoqCdiQkBDpceLo+5s3b/jwIYBTp86RLVs2Zs2apfVx/pfQCdskpBW5S4+sqtfNyugvaLYK6tGjBzExMaxbt04ynNDW9MraLBuLWjtRe0ELHB0dM9RGJSoqKkWTq8QGWZlBkMvRN82ZrijObHRb69ppmZwI88I8e+edoWinQPrR+4dfEjJc8yodlgDnTx2nSZMmWv/IaHMfp4kopilqVQcmJ/TOIY58fc++ffvIkSMHjRs3ZtiwYYwePZp169axZMkSNm/eTPfu3Zk0aVKqxmR2dnbo6enh4eFB/fr1peeTCluAfv36oa+vT+/evYmPj2fz5s06YwYdOnRIPHv2jICAAGKBWFGkcuXKf9m+d+/ezc6dO8mfPz9KpRKFQsHSpUsZMmQIgYFhgIzNmzdL4tDIyIiCBQtSqFAhChcuTKFChShYsKBW6aRJuXr1KqKoD2QjODgYW1tbqlatKqUYFylS5IdEdO7cufn999+5ceMGq1ev5tu3b8TGxrJlyxYuXrzIqFGjkrUqatiwoeRae+7cuSwRtqBK9xwyZAglSpRg8eLFxMTE4OXlxdChQxk3bpyUyZaYmzdvsmrVKo2oXIMGDYiNjcXf35/GjRuTkJBAWFgYoaGhhIWFERYWliERpG4flLT2NS2MjIwwNTXFzMyM4OBg7t59iFwuo2TJYhrLWVtb06pVKxo3bpxlDswhISH4+noCeYiP9yc+Ph49PT1OnDhBXFwcY8aMyfDva1hYGHPmzOHevTuANU+ePMDT0zPdNlaFCxdmxYoV9OnTR2rRM2XKFCZPnsyTJ08ICQmhZcuWUoDl2LFj0rpVq1YlKiqK4sWL8+jRI43tJha3hQoVkiKpasfp9Ehciy6TyWjUqBHR0dH4+PhIz6t7DQPs2bOHPXv2aGzDw8MjWYp5Sqg+nwmIoqh1NuV/kf/rdj8/A/c7PunW62rTv3Og+32to7/ru6cciUvaKkgAIt7cxOLzA97eVDUvz2jLo2nFQujdozu///4706dPT3+l7+TMmRNBEDR+FLRqj5QOvzZ2Yv6Z1+kvqN7n5PpYmWrvIv01PJZKc//Qevlupq/ZHeGktbhtUMyaTT0qZtn+EyMToIa9KW4Da3HgwAGprlobUruP00eVmv3nQ820ZPXnoF85U2zC3/H48WNu3LjBixcvpC92PT09HBwcqFmzJuHh4fzxxx8EBgbSuXNnJk+eTMmSJZPttUiRIrRq1YrFixdLz/Xs2ZP3799z/fr1ZMvv2rULFxcXOnfujKura4qZBDp06Pj/IjIykkGDBvH582fCw8Np2bIlkydP/kv2fejQIdatW5fseblczqdPn3j27BkAJUuWTNcEMG/evBQqVEgSvIULFyZ37txppoc+efKE6tVrER8fR5kyJZk7d67GRGFWEhUVxfbt2zl69KgkDtQuz3379tWIBg8bNux7BFtVRlW4cOEsPRYfHx9mzpyJr6+v9FyHDh3o27cvcrmcwMBA1qxZoxF1MzIyonfv3rRq1Spd4aZQKCSRGx4eLone0NBQjceJ/8LDw7USTUl5/vw5nz/HApHY2eWhSJEilC5dmtatW1OtWrUsn8R9+vQp7dq14+PHL9jY5JTMzNSyonbt2kycOFHr39fXr18za9YsAgICeP78JZ8/f6JSpSpcv35Fa6Hm4uKiMTHw/v17qZdysWLFtC5xSoo6MKOOsKqj5WFhYRr1ts+fv+TbtyDs7fNRsGDaQaysRhAEwsLCqFGjBnPmzMl0x5R/O7rRXBaTFfW68OPR35RaBYmAsUNl4opWw/17K5iMpj1vddutOr5+/bRb6TtxcXHJomfaRYpTRt0LtqStGQvPvtZamOvLBb6Gx2qdap6hmlNRye63CShTLhlKkYG/FMq6/SdBKYJBkBf6+vqp9g5OjZTuY+1qoJMMnBINpIRkn4NfpNdEUeTt27ds2rSJI0eO8Pr1a968eaPR2uLAgQPs3r2bkiVLMmjQIDp06CAZTaXU8icwJIzsufKmGKXv2rUr+vr6dOnShYSEBNzd3aX6psyWI+jQoePfzfr166VBcbVq1Zg4ceJP36dSqWT58uUcOXJEGogmjgYpFAqsra0xNTXFxcWFUqVK4enpyfv37/H09EzRnfjTp098+vRJY1Ive/bsFCxYUIrsFipUCHt7e2mfZcqU4dSpY1L64s6dO6lVq1aW1H0mxdjYmCFDhlCvXj2WL1+Oh4cHoihy/Phxbty4wdChQ6lZsyaCINCwYUNJ2J4/fz7Lha2dnR2rV69m6dKlkgP1/v37efLkCWXLluXkyZMa9Y6VKlVi5MiRWFtba7V9uVyOhYVFhjLclEolERERGmI3qQBWPw4PDyc4OJjQ0NDvEwKq+9fExIRixYoxe/bsTPXk1YaHDx9ib28vlQCJooipqSlRUVEoFAouX75MfHw8kydPTlOYXrp0ialTpxIaGirVXFerVoXhw4fzyy+/ZChTQJ2aqzZ4UjkbWwDhqdbGakPSddWdPhITHh7Oly/+gDXv33tib2+vda1x4qhtvnz5KFOmDK9evZLqenPnzk1AQPIyN319fZydnalbty7Ozs7/15FaNbqI7U8kvQFyeq9nNvqrTSRUAPYPrEpJW7MMRWw/r+pGDhOjDKXKwJ8pU69evQIyFimW2tqIInWcctO/RiGqOfzZk02b6LaoVGAiUxAjGPw52VDcmv41CqU72aDN9tUtbkRFgmRYlc5Z0b9GIaY0Szu9BmCA2z3OPv+EIMvYPJQggEmQB9bvjmm4/2WUxPfpgYcf+e3Ic0SlQjM9Oh3DKJkA9ZzSjk4nxtfXF1dXV7Zu3Yq3tzdWVlYUKFCAr1+/8uHDB0nw5syZk0qVKhEQEEBAQABnz54lzNCKbbd8OPvcHwRZmtf68OHDdOrUiebNmzNuwTpc73yQMhwyco/o0KHj383NmzelLKRs2bKxYcOGVI2NspJmzVpw6tQJ5HIDnJ0r0qFDB06ePKmxjCAIzJ49O8W06MjISLy8vCSh6+npiZeXl1aDeJlMRr58+aTIbsGCBXF3d+f1a1UW1ODBgzPkpZEZFAoFR44cYfv27Rr1gs7OzgwfPpxs2bLRuXNn4uPjJYOin5FhI4oiR48eZf369YSGhnLv3kMUijgpymdmZsaQIUOoU6fOP8pV38PDgylTphAUFIQoipLgUreHcXJyYs6cOVnW6zgxw4cPl+6V4sWLSy2PihQpgpeXFwkJCYBqMmD69OkpRhA9PT1xcipBfHw2IJgqVarg7OzM1KlTk/XeTQ9RFGnWrBnx8fEULFiQ4sWLs3//ft68eYdcLqdYsaLJJmqMjY2l66tQKKQWVXp6etjZ2REYGEhISIjGOoaGhhgYGJCQkEB8fLx0nvHx8dy8eZf4+GjMzCypVCl907nWrVvTv39/wsPD6dKlC6IoYmtrS5cuXdizZw8fP35Mto4gCJQpU4a6detSs2bNn2oo929EJ2z/BpKmCKc1gL6fQp/VhsVt0oz+ZjSNWdvlK9oYsG9EA/r06cOWLVsydM56enqUK1dOcubLaIqteHIWr+9fJ5tByuZT6Ql5URRBqdAQndqmh2dFynSSoyH09iHaFhJYt25dujNs+y8/YtwZv0z9mIpKJcOs3zN+zKhMHqsmr169otf4WXjq22PsWFVqfaQNMgFezmicoSioUqnk2rVrbN26lQMHDhAdHU39+vWxtraWei3mzJmT2NhYVbulck2wbDgEQVRqCG+5TOV9ltK1PnHiBC4zNmJWbwByueyHSgh06NDx7yM4OJgBAwZIA9ixY8fSuHHjn7Y/hULB9evX8fX1ZcCAIcTEmAL+9OvXDyMjI0ksgEp8zpw5E2dn5wxt/9OnTxqRXU9PT75+/arV+qIo4unpSUhIOGvXrtLog/qz+PLlC6tXr+b27dvSc0ZGRvTo0YNXr15JqcAzZ86katWqP+04Xr58Sbdu3Xj8+DFgg7l5PPXr12HKlCmULVv2p+03o4iiyPz589m3bx+WlpbIZDLy58/P3LlzCQwMZOrUqVJ9r729PfPmzcuwUEyL8PBw2rdvj1KpxM7OjgULFjB48GCpzV6jRo24fPmyNMFStmxZZs6cqRE9vnbtGrNnz+bKlevExsYDCYwfP465c+dmavIiNjaW5s2bA1CqVCmWLFnCzp07cXV1lZbJmTNnspY8oOp3XK9ePd68eSMFYHbs2IGNjQ0bN27kwIED0rK9evWiW7duiKLIwIEDpVRnUGUnRkREYGZmplXqd7Zs2ahWrRqlSpVi//79GuZfSXFwcKBu3brUqVMnS6/lfw2dsP2LSZwinJEBtLbpkRmtmX05ozHP/EK1Em4lA69xatsyHj+4R+nSpdPfwXdEUUQmk1G3bl0pcpjRiG2C51389s1MdZnUotvapPGqo9dpReVS274qQitHJghapwtXtregND7MGtGL6tWrc+DAASwtU9+3m5sbQ5buJlfjoZlK3a6Uz5iJzcr8UNQxJiZG6q1rZ2fH+vXrOXnmHJv3HsWy2xKtt5PRGufEhIWFsX//frZu3crNmzexsLCgSpUqeHl5qXrL5SuOTfcFpNmuShRprPeSBuUKU6ZMGQoVKsQD3xA6bLiV5r61uUd06NDx70MURaZPn86tW6rvgGrVqvH777//1Khc37792Lp1CzKZHnZ2+fH29iV/fjsaN64vpR6CKjLz22+/pWhmlBnCwsIksasWvL6+vpLZjhpVxPIeYIOhYRgxMZEpbzCLEUWR69evs3r1ag13WxsbGylLrEaNGhny98gMd+7coW7dBkRFRVC8eDHy5s2LIAg0bdqUXr16/W09atVER0fTrl07Tp8+Dag6KDRv3pzZs2dLkVlPT08mTZokvY82NjbMnz8/0zWmaiIiItDX1+fevXvMmDEDgDZt2jBkyBAePXrExIkTpTHfwIED2b59O9HR0QCUKFGCOXPmYGJiwpYtWySTpMjISD59+oSFhQWTJ0+mQ4cOmTq2oKAgOnXqBKgMoWbOVI0ZT58+zfLly5PVLWfPnj1Nc6/hw4fTsmVLXF1dpS4iaoYMGUJYWFiy5zNK4nKrtChUqBAbNmz4oX39v6DrdfEXcs87iGlHn6tM/JOIE4VSRAR+O/Kc+95BydY10pdjZWqYbrQrM62CKtlbMqt1SQRUAjsx6ocC8DxnTfKPOcCap3EpHmOqxxQVg8zYnOxmf9aY6AkijiYxqpTWdBAEAb1ClVlz8S0x8Skv393Zjv0Dq9KgmLV0zDIBcmU3RJbO+ETdCigtUtu+SagXiBmrgX3gG8IW7xxM2nKKp0+fUrVqVd69e5fq8vfv3ydPpEey/WvLw0/RdNhwC/c7PukvnAIXLlygdOnSzJ8/n19//ZVnz55Rr149pk6aiDwqSJWGrAXaOHinRY4cOejbty83btzg9evXDBw4kMePH/P69WtsbW0xrdQaUZHO/SQqOekRTfv27SlSpAhmZma4zNmmivCmdexa3CM6dOj493H27FlJ1JqbmzNq1Kifnmq6f/8hIC9KZQImJia4uHSjRo0qGqIWYNCgQVkmakH1HVq2bFnatWvHhAkTWL9+PceOHWPjxo1MnDiRDh06UL58eSwtLREEOfAZPT19vL29s+wY0kIQBGrWrMnWrVtp1aqVdB0Slz7dunUrxfrGrMTZ2ZmvXz9z9uwZKlZUlc+IosjJkyfp1asXBw8eTDYZ8FcgiiKXL1+mS5cu36OKBoAZMTEx6OvrSzWaoBJCy5Ytk4zGPn/+zOjRo5PdYxlh//79mJtbYGVlI7VKAqRWguXKlcPFxQVQZVvt3buXKVOmkD17duLj43Fz20X+/AXp1q2bhvOvubk5RYoUIVeuXN8j5ZnDy8uLmzfvcfHiFY0oapMmTZg5c2aylkFTpkxh6dKl1K9fP8XMubVr17Jo0SIOHToEaIrPtWvXJhO1GXUNDw4O5sqV61y7ditVgS2TyQgLC+PixYs8efIkQ9v/f0UXsf0LyQqn4/TITMRWLZaTpj2rzYKSRj0zksKbOOUaUaRRCRsclR/YsmAKnuECNt0WpFmbqUZdZ6tN3aM6uq0vFyg/+3ym3ou0SBw937B1B8u8c6e/gxQQgGXN8/Nr3458/fqVw4cP88svvyRbrnr16tjZ2bFr1y5p/4N23ufq228Zbi2Ukajj169fGTt2LG5ubtSsWZMNGzZQrJhmC4FFixax6HYopkWrokjjWASUNChmw8YelbQ/YC1ISEjg3LlzbNq6nYeFXbRKjZYJcHFIOd68eMaDx0/ZGFxMq3swM6nUOnTo+Ody+/ZthgwZgqmpKQYGBsyYMYNq1ar91H26ubmxcOFCXr9+h4mJCeXKlU4x7dLQ0JDjx4//bfWcU6ZM4cCBA1hbW1OtWjXmzZv3lx/Lq1evWL58OZ6enigUCh49ekpISBCdO3di9+7df8kxxMfHc+TIEdzd3b8bEanInz8/gwYN+svaQfn4+LB69WpJ+MXFxfHq1RsUCgXFihUlW7ZsmJubM2HCBCpV+vN39tu3b0yaNEmanDAxMWH27NkpdhdIj6pVq3H7tgcQSOHCBSlYsCByuZzDhw9LKcYKhYLJkyfz8OFDQJWC3L9/f9q3b//d2dsGC4t4KlQoB6j6Cq9du5aBAwcSHBxMtmzZOHToUKZSkefPn8+kSZOAvBQpYsbbty81Xr927ZoUxQWwsrJi3rx52NnZER4ezsWLFzl58qSGKE5M0aJFKVmyJAcPHkz2Wt26dbl48WKK6wmCQEpS69mzZ3z5EgNEYW9vS7ly5QgPD9dYJj4+nmvXbqJUJpAjhzkBAf7/t27H2qITtn8RGUq9VSoRDoxBjhKZTIZcLs/Qv1+KtCTCvCAIqQ/ABVFJzhg/SoXeSbY+cn2+6eXijkHZdAb8Iq2ze5HPMBalICdB0MdID4z0ZDyONOVckAUyQJk4NVSpQBRkGL84Rt9ajnw0KcoRX4E000eToK2wzmgdb2bSZM888mLg3heZ+sFXT2LMa1aI9u3bc+3aNTZt2kTPnj2lZRISEsiRIwezZ89mzJgxfx5rJup+tZ00EUWRbdu2MX78eEAlXnv16pXibGRMTAyO1ZsgazA2zXtFFEVMbm1gx5Lp0gx4VpLZa/1X3CM6dOj45/Ht2zcKFChIdHQEJiZmTJw4lt9+++2n7vPUqVMsW7ZMemxmZkZoaGiKy5YpU0ajfdlfTWxsLH379uXLF1V3htmzZ2eozjerSEhI4NChQyxdupQ7d1S9TY2MIoiO1r4/bFYQHBzM1q1bOXv2rIZIqVy5MoMHDyZfvnw/Zb9RUVG4ublx6NChZKm07du3p0qVKsyfP1+jlWLHjh3p3bu3JA7DwsKYOnWqVDtqaGjI9OnTNQSwNnTs2JH9+/cjk+lToUJZzMzMUkyRDQ4OZvDgwVIta/fu3fHw8GD27NkA5M9fgKJFHSlWrBiLFy/GwMCAOXPmSK7UK1asSLdvbUo8fPiQqlWrExcXw9SpUyWHbzVubm7s2LFD4zlTU1NmzpwpCX1RFBk2bBhv377Ver/ly5enVq1aGp9tbfj06dN3wy0ZFSuWTzHFPTY29nt9uRUyWRChoSE6s6h00Anbv4iMDqDbCvcwFGNRKBRSo3Zt/w01yMWrvI3TFqWiSO6n7uiF+Ka4nchyXVHYFNd0vk26CaUChf8blLER6NtXRJDJEJVK4vxeYpCvRJpiTxRFvrhPQBETiW3/tVq/L4lJLwL5I9FrbVDXS4vpOAJrs185SoYMGcLmzZuZPHkys2bNQiaT8ezZM0qXLs2VK1eSRXPVdb9CBtoBpXeer169YtCgQVy9ehUXFxeWLFmClZVVmtt0dXVl2PK95Gw8FHkqteMDK5izb+5wnjx5wvjx4/n999+TpQX9CDHxCpx+OwWCdhFb9Xvws+8RHTp0/DN5+vQpZcqUAfIAX2jSpBEuLi60b9/+p9Urj5QAAJF1SURBVLS4SSpqU4viqClevDhLliz5W3tsX7lyJZEYyc/GjRv/tuN5+fIlVavWJCwsiDZt2nHo0IH0V0oBpVKZ4ZTRxLx9+5a1a9fy4sUL6Tm5XE6bNm3o3r27Rg/eH0EURS5evMjGjRs16o1BlZ46btw4qY1faGgoixcv1jDecnJyYvLkyZKzd3R0NDNmzODBgwfSMU+cOJE6depofUzjxo3j7t27yGQy6TMik8mYNGkStWvX1lj26dOnjB8/XkOMh4aGEhsbi5WVFfXq1WPixInStUj8+ejTpw9dunTR+rgS4+vrS0BAABUqVNAYg4qiSK9evfj06ROgMtRSR7ENDAyYPHky1atXB1IWwIn58OEDfn5fyJPHCjs7VXDF1tY2TeOn1IiMjEQQBIyNjVN8XSaTce7ceUDEzq4g3t6ZTyX/f0EnbP8i/uoBdGZbBWX0WNXbTLwPbfqdygWo5WDBpPr2NFj3kIxEbBPvN70I5M9K/85Kp2R1FFAURZYsWcKECRNo164drq6u7N27l759+xIaGoqpqWmyde97B7HmsgeX3mjndglwa0It8lhozvilZA5Vr149rbanUCgoV64c2fKXoFyXsZx98eX7+yLSuEQeycE7Pj6eRYsWMWPGDAoWLMjWrVuzNO3PeexmvujlTnsyRpFArlh/FrVypHbt2iqDi7+gRECHDh3/LERRZPDgwezcuY98+ayliFuBAgUYOXJkhgwS0+PkyZMsX7483eX09PSk1iGgGnyPGjWKEiVKZNmxZARRFBk9erQk4oYMGUKbNm3+lmMBVSTw/fv3lC1bNsMCOyYmhsaNm3Ht2hW6devK5s2bM93zU13rumnTJg2naXNzc3r37k2jRo20csRNDU9PT1avXv09dVeTbNmyMX36dKmuNfExHT58mE2bNkn3kImJCWPGjJEmxePi4liwYAFXr14FVJMrw4cPp0WLFlodl4uLC58/f0Yul6NI4mfRu3dvunTpoiEmN23axL59+5Jtp2vXrvTq1UtjWT8/P3r16gWoIqALFizQ6pi05eXLl4wcORJQ1QL//vvvzJgxQ0qZlslkDBs2jBYtWvDkyRPGjRuX4nbi4+O5cuUKYAv4UbNmTfT09PDxUXmY2NnZZfjaC4JA3rx5sbe3x87OjmvXrvHhwwcAGjdu/P1YbClUyIT3799k6vz/n9CZR/1FfPb7gN7nl4iKhDSXk8sEGha3+eGoUGpmRw2KWbN/YNU0U3gzYkAFyY2wtFlVIcJlj2Cm/DqBhPCgNGeu09rvuZefUzWUAuhXoxDKdE5GqRTpV6Nghva9+bonsoy6OKVAYkMlQRAYN24chw4d4tSpU9SuXZurV69StGjRFEUtQEV7S9Z1q6C1oZSoVNKtYzvJkh80zaEmTZokmUNpi1wuZ8GCBTx5+hR//z9NPgQExER3g76+vlR7Y2ZmRo0aNRgzZoxG3dKPUMMqDjGdiK0glxN69zD16tWjcOHCzJgxg2aFs/2Ue0SHDh3/XARBYP369Xz58pGRI0dKkSNfX1/Gjh3L4sWLU00TzgjHjx9PUdTGxMRoGBA1btyYGjVqaCzj7e3NqFGjWL58ebLau78CQRAYPHiw9NjNze2nGzelhYWFBRUrVsxU1PjOnTtcuXIRpTIXO3fuwcXFhX379hEZmXHHZ0EQqFOnDlu2bKF79+6SQA4JCWHZsmUMGzYsRVGaHhEREaxZs4bBgwenuL6lpSVLly5NJmrVx9S2bVuWL19O3rx5AVU0cNasWaxYsYLY2FgpMtm0aVNAJYZXrlzJrl270h2DKRQKScSrl018HbZt28bSpUslUX3nzp1k/ZgBhg4dSu/evZNl9OXNm1fKDnvx4oWGEVZW8Mcff2ZM1q9fH2NjY2bPni2NdZRKJStXrmTbtm04OTmlKk4NDAwwMDAG/NDTM0Iul+Pt7Y2np+ovtfpcNba2tpKhlxpRFClcuDATJ06kd+/etG7dWnrN1NSULl264eRkwerVyzN17v9v6ITtX8DJkycpX7488c/PavRRTYmsHEBXtLdkffcKvJzRmHuT6/NyRmPWd6+QrnmQqZFehp13M4NShINHT8KLM5k2pVCKsHTVOml2KylpOT7LZQICqt6mGWnjEhOv4PzLLxluu5OU1CYxWrduzbVr1/Dz82PXrl0ULlw4ze0Y6ctpUNw62fmltL9KefR58vA+1apV4+7du/To0YP69euTJ08enjx5wowZMzKVIvzNvBg23Rbw5JtSkrIi8MergGSOzCVKlODmzZssXLiQdevWSanWP8ovxWwJOqtKa5clmV5RX+vZrUvx7uYZrl27Rt26dVm8eDGtqpUkp9cfgJhl94gOHTr+HRgbGzNo0CDWrFmDk5OT9PzZs2fp06cPZ86cSXXQ/+rVK0qXLk+ZMhU0es+qOX78OCtXrkz2/IcPH7h+/TrXrt0kPDycWrVqMWrUKOl3TBAEHBwcpOVPnjxJnz59uHjxYqYmgX+EokWLSimv4eHhuLm5/aX7zypKlChBtmymwBdy5sxJUFAQmzZtolu3bmzZsiVZuq82ZMuWjZ49e7J161Zq1aolPe/h4cGYMWOYM2cOAQEB6W5HqVRy9uxZevfuzZEjR6T03cTjovz587NixQqN+yIlihYtytq1azVSg0+cOMHw4cPx8fFBLpczatQojd7E27ZtY8OGDWneW4GBgVKUVn18lStXpk+fPtIyZ86cYdKkSaxbt46pU6emOGmQUg9Z9bmq+wTHxsby5k3WRSbj4+Ol+l1DQ0NpAklfX5+JEydKLYIAdu3axYoVK4iIiEgmrnPlyoWrqyuVKpXDycmJGjWqoKen9/19kwN6GqnXgiBQqlQpjW106dIlRZ+Rq1evMmLECPz8/KhRo4Z07W/evMnOnW68evWMJk2aZMG78d9HJ2x/IgqFgilTptC8eXNq1qzJw7P7mZ3FIksbtG0VlHh5bYTSjyIqlTiXL83Lo+tpWSZvZjfCjN8mUaBAASpXrsyCBQvw8PDQWORHotcpkdGIdmqkNYlRvnx5bty4QXx8PH/88QenTp1Kc1vaRqZ/bV2ZW7duERQURJUqVTh69Chbt27l8uXLyRyPteWedxDTjr1Q1RknSQNOrY2VXC5n3LhxPHnyhDx58lC7dm2GDh36Q1EJBwcHIh6fZlpVEwoZRiJ+/4FJeq0FQaBGjRps2bIFf39/tm/fjon/Qz67TSD63W2pfdGP3CM6dOj4d+Hg4MDy5csZMWKEVCcZFhbGkiVLGDt2bIotbxYtWsTz5548ffqCDh068PHjR+m1o0ePaojaxHWdX758BWxQKuPJnj271PvT19cXUImY1atXM3ToUKn2LiQkhHnz5vHrr79mqpbvR+jTp4804Xns2DEp7fLfRK5cuVi6dCGVK1emVKk/jYkiIyPZs2cP3bt3Z/ny5Zl6b62trZk6dSpLlizRmIi+fPkyffr0wc3NjZiYmBTXfffuHaNHj2bx4sWEhIQAqkho4hrs4sWLs3z58mSRvtQwMTFh8uTJjB49WnLQ9fLyYtiwYZw5cwaAvn370r9/f2mdgwcPsmTJkmQpxmpSEugVKlSgS5cuTJkyRaq5ffz4sdQeR42BgYF0/+/Zs+e7CVhyVDXvSNvJKu7duyeNLapVq6ZRzyoIAv369WPo0KGSmFy/fj03btzgxo3bkjivXr067u7uPH/+nGzZspEvXz4pYm1vb0+BAnnIn9+aQoUKSdsWRZFnz54laxOU+F4YNmyYdDze3t4MGzYMDw8PqRTCz8/vh1o0/T+iE7Y/iS9fvtCwYUPmz5/PggULOHz4MBYWFlkusn4W2gilH0FUJGAW7s2Fc2fIkSMHKzuXY3arElibGqJdMrNqMqBxybwEfPrIzp07KVCgADNnzqRIkSKULl2aGTNm8Py5ytwps9HrlMhoRDuzkxghISGIokilSpVo0aIFq1atSnXZtCLTKBXS/kyiv9C/f38CAgLInTs30dHR6Ovr/1AbB23SslPrA+vo6MiVK1dYuXIl27dvp1SpUpw/fz5Tx6H+QZEFeVODV8TvGpbutc6ePTs9e/bkypUrvLhynL5FRRR7RvBhZXcMj02isP9F8hlpnxIVE6/ga3hsmunxOnTo+Gcil8tp0aIFW7du1Yh4PXv2jEGDBrFlyxaNQWnZsmURxVAgFqVSydChQ7ly5QpHjhxh9erVGttOHMmxtVUZVhkamrBs2TL09fX58OGDlJpcqFAh5HI5rVu3ZvPmzRopyg8fPqR///7s3LnzL+ulmitXLimqpVQq2bhx41+y36ymUaNG5MiRA5lMhqOjI40bN5bESXx8vBQZnz17dpq95VOjdOnSrFmzhtGjR2NmZgaooo87duygT58+XL58WRKrYWFhrFixgqFDh353xlVhZ2dHQkKCtFz16tVZuHAhOXLkyNCxCIJA06ZNWb16Nfb29oAq/X3JkiUsWLCAqKgoOnbsyOjRoyXRefbsWWbNmpViGrDaHTsx5cuXB6B27dr0798/xXGEmZkZy5Yt0xDRCxYsSFEoqyO2kLXCNmkackq0bt2aqVOnIpfL+fo1GLBFoYgjJCSEYsWK0aRJE0aOHMnChQs11suVKxd6eno4OjpStGjRFNPkE0fCo6KiNIS9s7Mzq1evJn/+/IAqHX3q1Kka4jsrMtr+n9CZR/0Erl+/TseOHaUG1YlTVBKTuB/qP9FpNTUDqqR9bTOFKLKnX2WqOCTvAbvzwBEGTF+JVcuxaW4iJVfkqKgozpw5w6FDhzh+/DhhYWEUKVKEdu3a0a5du2ROeZlFW8OhinYWWBgbSL2BZQI0LG4jGSqlxebNm6XebjNnzmTJkiUMHTqU5cuXp1pjlLwXsUjk65u4TunJrWM7mT9/Pvb29qxfv54aNWowaNAgtm3bxm+//caMGTM03htt7s+sNEXz9PSkf//+XLx4kX79+rF48WJpcKAt+fPnp2fPnoSHh3PhwgWeP3+eofVBlWlx4cIFtm3bxuHDh0lISKBp06b07t2bZs2apWg4krRnszb9lnXo0PHP5v79+6xatUpyUgWwsbFh2LBhODs7I4oiu3fvZufOnVrXBOrr6xMfH49CoWDOnDlUrVoVUHkdzJ8/H0jZFfbWrVusXr1aQxAUKFCAUaNGJUt3/BnExMTQp08fqc5y7ty5GW4X83cjiiJ9+vTh48ePCILA3r17USgUHDp0iBMnThAdHa2xfPny5enUqRPlypXL8LghIiICd3d3jhw5ohEFLVGiBGXKlOHEiRMa9cr58uUjX758Gs7GLVu2ZMiQIT9kRAWqa7du3TqNzC9bW1umTp2Kg4MD165dY968edJESdmyZZkxY4aGuNq1axfbtm2THltbW+Pm5iZ9Bnbs2JGsHRGoIpKtWrVCFEV+//13bt68CUCxYsVYsmRJMgfyHj164O/vj76+PocPH/7hnq3h4eF06tSJ+Ph4LCws2L17d6rv56lTp1i5ciUfPnzg5cvXZMtmQsWKZTExMdEwdVNTvXp1EhISUo1AAxQpUoRv375p+Jokplu3bjRv3pxs2bKxaNEibty4kWwZW1tbtm3b9rf1tP63oRO2WYgoiixdupSJEydSvXp19uzZI1mt/1tJKpTUwiwoMpYHviE/VGd6IJVWPc+fP6dUqVL8vvMC259FZ8rZGVQzpRcuXODQoUMcOXKEwMBAChQoQNu2bWnbti3VqlXL9A+GNq7IiYV3ZiYxBg0axI0bNyQTiY0bNzJkyBAaNGjA3r1705zBVe8vLPALDgXtsLGxITAwkEmTJjFp0iQprUwURRYsWMCkSZPo1KkT27Zt4/mXaK1FWlb3gRVFkU2bNjFu3Dhy5MjBhg0baNasmdbbr1OnDtbW1hgYGODl5fW9/1vmCQ4OZvfu3Wzbto379+9jZWVF9+7d6d27tzSYVLd9yux9qkOHjn8usbGx7N69m71792oMbmvWrMmQIUPIlSsX0dHRLF++nIsXLwKqwfTHjx+xsLBINX20cuXKzJkzR3qc2EE2tZ6x0dHRuLm5cfDgQQ0R0bhxY/r375/hqF5GuXjxIvPmzQNUonrjxo0/LLr+arZu3cru3bsBGDlyJM2bNwdU1+z48eMcPnxYSglW4+joSKdOnahevXqGz9fX15f169dz7969FF/Pli0bXbp04eXLlxqitm/fvnTq1ClLxczly5dZtmyZZNior6/PgAEDaNWqFY8ePWL69OlSRkLRokWZM2eONLm8fPlyDTOoJk2a0LdvXxYsWJDquYEqcty/f3/at29PREQEQ4YM4fNnlclku3btGDRokMbyS5cu5fTp04AqsquOCmeWxI7kbdu21TBDU6NQKNiwYQOHDx/WOG6lUpns/c+dO7c0udS7d29cXV2TCXpLS0uNmu3OnTvj5OTEzJkzUxT/MpmMcuXKUb9+ffz8/Ni5cyeiKBIXF8eTJ8+Ji4tn+/bNdOzYMdPvw/8TulTkLCI0NJR27doxbtw4xo4dy4ULF/71ohZSN6Aa38jph1KV5amkpsKfKaUFEz7+UNq2oaEhTZs2ZfPmzXz+/JkLFy7QokUL9u7dyy+//IKtrS2DBw/m/PnzGU7pyqgpVUbrnEEVLUhsMjBgwADOnDnDrVu3qFatWoo1X2qM9OUQE8aMaVOl554+fZrMHEoQBH799VcOHDjAsWPHcO4+jg4bbvHHqwApCqsUUzaBgoylZSd2gE4NQRAYMGAAz58/p2TJkjRv3pwePXpobezh4OCAh4cHwcHBWFhYaHdgaWBhYcGQIUO4d+8eT58+pXv37ri7u1O6dGkqVarE5GVbVL2MSe4Onlp9sQ4dOv49GBoa0qtXLzZs2KBRA3jt2jX69OnDoUOHpMGv+nfk8ePn+PkF8fz5cyIjI5NFpeRyebIBfeI6usR1eonJli0bAwYMSGZ0debMGfr06cP58+d/qrlUnTp1JC8GX19fTpw48dP29bOoWbOm9P/EE5+mpqZ07doVd3d3RowYoTF+e/v2LbNmzaJv376cOnUqQ469BQoUYMKECSk6Gcvlcho2bMi1a9ckUavuL9u5c+csj9DVrl2bdevW4ejoCKju1zVr1vD777/j4ODAwoULpQ4Mb968YcyYMVKEXi1G1VhbWzN48OAURW3x4sWlVH5RFNm4cSOrVq3C2NiYqVOnSp+HgwcPJotQJk5HfvLkyQ+fc3ppyOHh4UyePFlD1JqZmSGKosb7LwgC3bp1o23bttJznz59SlGoJr1ue/bs4eXLl7i4uACqdP7IyEgNM64HDx6wYMECDh06RLly5TAyMuLTp0+EhgYRHZ2N+fOztv3RfxldxDYLePLkCe3bt+fr16+4urrSqlWrv/uQ/hJSS1VO+oWQGmmlpubNm5d+/foxc+ZMIGvTtpVKJbdv3+bQoUMcPHgQb29vLC0tadmyJW3btqVBgwZaOwOnFtHWJtU4LWJjYzE1NWXZsmUMHTpU47VXr17RrFkzIiMjOXr0KFWqVEl2ftu2bWPChAmAyuDh9evX+Pj4pHlddpy+wW9XgtNcJqX075/VB1YURVxdXSUDjHXr1qXbQ3HBggXMmzeP4sWLU6RIEVxdXbXen7bExcVx8uRJtm3bxm390mQrXClNt3NdD1wdOv4biKLIH3/8wcaNGyUPhLdv3vDZP4B4RRz6+tmoWrUSd+8+JCZGBCKpUqUK2bNr9g1PKXLUqVMngoKCMDU15eDBg+n+hioUCk6ePMmWLVs0WqaVLVuWkSNHSn15s5pXr14xYsQIQCUGXV1dU21H909EFEV69OjB58+fkclk7N+/P8VIt0Kh4OrVq+zdu5f3799rvGZpaUnbtm1p3ry5ZDSWEgqFghMnTrB9+3YiIiKk59XGUN++fePx46eAjDx5rKhYsWKKPWqzmvj4eLZs2cLBgwel56ysrJg8eTLZs2fn119/ldyLc+fOzYIFC5g2bZpG94mUetkCVKlShalTp2JgYIC7uzs7duyQXqtUqRJTp07l3LlzrFmzBlAZXa1bt06aSAgMDJQcm4sXL86KFSsyfZ7+/v706NEDUNUub9q0SeNz5evry7Rp07Q2DJPL5VSqVEmahLC3t08xwJDY+Csxbdu25fTp09y4cZugoK+YmJixbNkirl69mmziAFQ+K/fvPwBE7O3tmTlzJt26ddMwotORHN2784Ns375d+uF68ODB/42oBZXb8L6BVShhpgDx+6yVlqIWVJHA8JiU+/o6ODho/JhkJuKZGjKZjGrVqrF48WI8PT158OABgwcP5n/t3Xd8zPcfwPHX3WUPichGkUESe+9RSrWlZo0WpSi19957lNqjVmmrdqkqpag9a4vEDEKWDNnr7n5/pPn+cjLEKuH9fDzykNx9v3ffu5zLvb+f9zh58iSffvopDg4OtGvXjs2bNxv8McrKy2xKldGVK1dISUnJ8g+ct7c3p06dwtPTk3r16rFx40blumvXrlGvXj26detGkyZN8PPzY+DAgdy/f5/r16/neJ/Hwk0xeo4mUK9qVrBKpaJz585cvXqVqlWr0rJlS9q2baucQc6Kh4cHjx8/5tGjRy9lxTYrJiYmtGjRgk1bf8WqRPWnjvDKzbxlIcSbT6VS0bBhQ1atWsXHH39MTEwM9wMDSdGmAk6kpCRQq1Yt9u//kwoVSlCyZMlMQW2+fPno0KGDwWWRkZFKVoqbm1uu/oZqNBo+/fRTVq1aZdDH48KFC3z99df8+OOPL30WKKT9/Umf/RkTE8NPP/300u/jVUrvig9pJ4HTaz6fpNFoeP/991m6dCnTpk0zWEmMiIhg5cqVOY4KunLlCr1792bRokXK5whzc3MaNGhA2bJlUalUBAUFkXa62ImgoCC6dOnyyoNaSEtB7tmzJ5MnT1aC+rCwMAYPHszx48eZM2eOMgs3NDSUAQMG/Hus/5dVUPvhhx8yYcIETE1NUalUdOzYkWHDhik9Qc6cOcPAgQOpUaMGderUAf4/azf9tVqgQAGlkZK/v/8LzblPLw2AtNXajP+vzpw5Q9++fbMNaj09PRkzZozBPlqt1iBd/MmgNj1NPWNQm7GkYNu2bbi7uxMREQY4ERf3mFq1arF27VrmzJlD48aNDeqabW1tqVKlMuXLl8fd3Z1169ZlO0ZJ/J8Ets8pISGB7t2706VLFzp06MDx48efOm/0bXPy5EkGdWzOzuGf4nlhKWubu3BhXKOXkprq7u6eaWzPq6BSqahQoQJTpkzh2rVr+Pr6Mnz4cPz9/WnTpg0ODg40b96cH3/8Mdvif3i5gTekpSFrNBqD1LeMHBwc+Ouvv2jdujXt2rVj/PjxjB07lrJlyypp12vXrsXBwYE6depgYmLC3r17s70/ZTbvU/I3sgrSXsWs4IxcXV3Zvn0769evZ//+/fj4+LBhw4Ysz4imz/gLDw9/ZYFtumcZ+5TTSRwhRN6SL18+Bg4cyMyZMzEzNgZ0QBg1a9Zh7Nix1KhRg7Nnz/LZZ5/xzz8XuHrVVwkEGjRokGmF886d/58szC4NOTv29vaMGTOGqVOnKvW8KSkprFy5kgoVKjBw4MAsG9+8iK5duypNfXbs2JHtHPk3VcZ05KNHj+a4rUqlonLlysyePZuFCxcazBjNalRQREQEs2bNYuDAgQYn552dndHpdOzfv58LFy6g1+txcHAgLbB9gLGxaZbzTV+latWqsWzZMqVfRHq21/z58xk/frzyWoyKiuLhw4eEhYVlm+retm1bBg8enKkGuWHDhsyYMUN5zd++fZt+/frRvHlzJXi+ceOGQaft9JMIWq32uRpAwv+zK9LVr19fuXzz5s2MHj06y6C5ePHiTJkyhcWLF1O3bt1nGoNob2+f6TI7OzsGDx6svGauXLlC4cJFgBDy57cnJCQEtVpNmTJlGDx4MBs3bmTkyJFUqlQJtVpNvnz5KFCggLIKvH79elxcCufZzuT/BQlsn8OtW7eoUaMGP/30E2vWrGHFihWYm5u/7sP6z9y6dYs2bdpQvXp1oqOj+fPPP9m35w/qVq2ArYVJrmbgatQqGvk4ZxsIPrli+1/x9vZmzJgxnD9/nlu3bjF58mRCQkLo1KkTjo6ONG7cmBUrVuRq6PqLOHv2LKVKlcrxdWVmZsaPP/7Il19+yaRJk5g2bRpDhw7l0qVLyps4pKX61KxZM8fA9kWDtFc9xkqlUikNNt5//33at29Py5YtM51Fdnd3R2VkQmyqCuv8BV7oPp/mWeqLVegxz3lhVwjxBrty5YrBnFpIq1m87OvL+vXrCQ8P4+jRQ0oZi0qlYs+evURGGhEU9FB5r9q+fTs///yzQW1ebuprn6ZKlSqsWLGCtm3botFouH79Blev3mLevHnZfgi+cOECP/zwg8FJ24SEhByzYiDtxGr6+B+tVpvnPmR7eXkpQci5c+dyvQLm5eXF+PHjWbVqVaZRQb/99hvly1ekUKFibNiwQdknPW00ODiYpKQk5XIHBwf69evHb79tY9asWZw5c0pZqfwvOTg4MHv2bDp27KgEX+fPn2f48OF06NCBkiVLcv/+fS5dusTFixcJDAzMFLz26NGDbt26ZZtpULZsWebPn2+Qbjxq1CiaN2+u1Nvu2LFDGWvzMups/f39lf+vZcuWxdHRET8/Pz799FMWL16cKUD38vJiypQpLFq0iKpVqyqPJX2eLKTVmKeLiYkhICDA4LWTVRAcHh5O48aNGTJkiHKbJUp48v7771OhQll++ukng9VvMzMz6tevz/Tp0/n555/p1q0bRYoUUe7z7t27xMRY0Ldv/1daT5+XSWD7jHbs2EHFihWJjY3l5MmTdO7c+XUf0n8mPDycAQMG4O3tzfHjx1mzZg3nzp2jUaNGBtu9jNRUd3d3wsPDM3Un/C+5ubkxZMgQTpw4QWBgIN999x1JSUn07NkTFxcX6tWrx8KFCzN92HkZnmwclZWwsDA6derE2rVr8fLyQqPRcPjw4SzTpxs1asTBgwezTU17GU2gXlVadkaOjo5s2rSJLVu2cPz4cUqWLMm6devQ6/WcCYhg8HY/Cg/agkuvtSwMKkqPn86+ssZNZsaaXJ3EQacl1u84Jb2KM3v27BxX/oUQb55Zs2ZRunRp3Nw82LNnj8F1Hh4etG/fHju7zO9zaUFqWu1c+gqnXq/nhx9+YMyYMcq4l5cR2ELah+Ju3bqxdOlSbGzyKR+kdTodWq2WgIAA9uzZw7x582jXrh0VK1amS5cuVKpUDZ1Ox927dyla1B1HR0fmzJmT43199tlnWFtbExcXx8mTJzl79uxzH/d/Ta1WK+nIKSkpBumluVG4cGEGDx7Mjz/+yGeffYaZmRmhoaGEhYWQkJCP69f///vMeAJDrVbj6upKgwYN+PzzzylXrhxly5alX79+2WZn/Rc0Gg2dOnVi9uzZyus4KiqKSZMm4e3t/W8AbwVYGjQ9UqvVDBs2jNatWz/1PgoXLsyCBQvw8fEB0kYQLVu2jJo1ayrbzJ07l8DAQIPn4vz588/1mJ5sGhUWFkblytX4/fff+eef/wfL3t7eTJs2jQULFhgEtOkyBrZWVlbkz5+flJQUzpw5x82bNzl79rzyOy5dunSmkxPptcqNGjVi2LBhyokOjUaDSqXi7t27BinTGaXPj16xYgWLFy+mYcOGqNXGwAPc3T1l/E82JLDNpdTUVIYPH07z5s1p0KABZ8+efa1vRP+lxMREZs2ahbu7O6tXr2bChAlcv36dzp07Z9n6/mWkpqandb+OVdusFCxYkD59+nDw4EGCg4NZvnw55ubmDB48mMKFC1OtWjVmz579Uo43ISGBK1euZBvY6nQ6Vq1ahZeXF3/88Qdr1qzB19eXQ4cO4e/vT7Vq1fDz8zPYp1GjRsTFxXHixIksbzO3QdrTVtrTb+tlpmVnpVWrVvj6+vLJJ5/w5ZdfUqPTcKWbs+rfPxx6VNl2c35ZcnMSR6XWsKBXMxo0aMCYMWMoVKgQvXr1yvQ7EkK8mf74Yw9pNbRJDB8+nBs3buRqv1q1alCiRAnKli1L06ZN6dSpk/Jh9MyZM/Ts2RNfX18lsFWr1RQtWvSFj7dYsWJs27aN5s0b8+mnn3L79m1atmxJ9+7dmTNnDrt27eLWrVvodKmAK3fvBrBgwQJ++eUXQkODgILMnbswx/u4ffs2u3fv5cSJE9y+fZvly5dnWXf5psquO/KzsLe3p3z58hgZGf3bREoFBGJlZZHl9jqdDn9/f9atW8fs2bMZNWoUXbt2pUmTJnz22Wf06dOHSZMm8f3337N9+3bluf2vairLli3L8uXLDeYTb9myhWLFimFjY4qtrZny+jQ1NWXSpEk0bNgw17dva2vL7NmzlZpwnU7H33//rQSD8fHxTJ48GTMzM4oVS1v4uHXr1lN7nTwpNTWVv//+G0jriVG7dm0CAwOJjX0MuBAbG42rqyvTp09n/vz5VK5cOdsgsWTJkkoweunSJWUGtU6XQtp7QrKyclqsWDGDQBj+H9hCWoA9fPjwTM2f1q5dm+NkDpVKpaRIX7x4jlWrVnHo0P5nek7eJdIVOReCgoJo164dx44dU2on3oUzJTqdjvXr1zN69GgePnxIjx49GDduHI6Ojrna/0U6BkdGRmJnZ8fGjRvf6NldUVFR/P7772zbto3du3eTmJhI2bJladWqFS1btsTHx+eZXiuJKVoOHT/NRx/U4/SJY5mCW19fX3r27MmRI0f48ssvmT179r91Omnu3LlDkyZNePjwIVu2bFGafOh0OpycnPj6668NZidm9Kyzed8U89f/ztxLmVvsZ/Qqjzu77uBZzbENCQlh+fLlLFmyhJCQEBo3bkz//v1p1KiRdDoU4g3166+/8tlnbTE2NqVixbLkz5+fMWPGZDlrNl1wcDBfffUVKSkpGBkZsWLFCgoVKsS5c+eYPn26ko2U/v9ep9Px3nvvsWrVqmc+vri4OG7cuIGfnx9+fn74+/vz6NGjHPfR6/X4+18nIiIaN7fCODs7/3vyeh0pKQlUqlRJGeVy5MgRtm3bRuvWrZUVtqlTpzJmzBigIFZWcVSrVol+/frRtGnTZz7+10Gr1dKuXTuioqIwNTVl8+bNuS4pi4uL4+jRo2zcuNGgvjg6OpqEhAQcHByyfD9PSEjg+PGT6PVarK3zU7Vq7htFWVlZ4ejoiJOTk8FX+mU2NjbP9blUr9eTmJhIXFwcsbGxyr8HDhzg4MGD6PV6QkNDuX37HvnzW1O8eHFMTEyoWLGiMhYnPYxI/16v13Pnzh3i4uLw8vJSZsKmb6PT6bh3755BtptarVa2yZ8/P8ePnyQ4OBR39yKsWbOGGjVq5PoxnThxgnHjxgFp5QKjR49Gr9fTu3cfdu7cTYsWTZg/f36un6++fftmOhEdGBhISEgYBQu6KLXtW7du5ezZs8qs53S7d+9W0tYBDh06xLRp0wxW83v37k3z5s1z/RhF9iSwfYpDhw7Rtm1b1Go1mzZtUtJX3nYHDhxg6NChnDt3jhYtWjBjxgxl9tmzet5RPXZ2dgwdOpSRI0c+1/3+1+Li4ti9ezdbt27l999/JzY2lhIlStCyZUtatWpFhQoVsn0jPRMQwcqjt9nnG4JOD3qdjkY+TvSo60GlonYkJiYydepUZs6cSdGiRVm+fLlBvUdGjx8/pk2bNhw4cIClS5fSrVs3AD7//HNu3LiR4zD1ZwnS3hRp44ZC0GYeJ6d41SN3nvUkTlJSEps2bWLevHmcO3cOLy8v+vfvT8eOHXMcHyGEeD0iIyMZP348165dA9I+iPfp0yfbQG7y5MkcPnwYSEvb/frrr5XrHj16xNSpUzM1xqldu7bygTw7qampBAQEcO3aNfz9/fHz8+PevXtPrbezt7fH1NTUoAtshQoVqFu3LvPnz1c+ZGu1WrRaLW5ubqxZs4aoqCicnV1JTtZhaqohLCwEKysrNm3axJdfdiUxMR4fHy+srKxITk7m119/fSmrzv+FefPmsWvXLgDGjh2rdOrNSlr66Rn279/PyZMnc+w47ebmho2NTaY02rTxLWeBglhYxLBgwVxCQ0MJCQkhJCSE8PDw566bNDMzU4Jcc3Nz/v77b+zs7Pjwww9JSkoyCFyf/MpqFmtGhw4dJSWlAPCAChUqZJl2n1FYWJhSG1ukSBE8PT2f6bFERkbyzz//AE5oNJEsWPAdvXr1yvX+Gf/vTZkyJccTULmxYsUKNm3alOM25ubm/Pbbbzx69Ij27dsbXPfzzz9nWhA6cuQIU6ZMISUlhVu3bpGamsqBAwcoUaLECx2rAGlnkg2dTqekitStW5dffvkFJyen131Yr9yVK1cYNmwYu3fvplq1ahw5cuSFg3kzY81zpaX+V52RXxZLS0tat25N69atSUxM5K+//mLr1q0sW7aM6dOnU6RIESXIrV69unJG98eTdxm3Iy2YTI8lVWo1B64/4i+/ML4oYcTGqX24d+8eo0aNYsSIETnO2bWxsWHXrl3069eP7t274+/vz4wZM2jUqBEbNmwgPDycAgWybqzUoWoRvJysMwVpDb2dXng27/NISUkhMjKS8PBwwsPDiYiIMPg3LCKKfbYfgSrn1c6M3ZxfRYp0paJ2aScgcnkSx9TUlI4dO9KhQweOHTvGvHnz6N27NyNHjuTrr7+md+/evPfeey/9OIUQzyd//vzMnj2bWbNmcfjwYXQ6HQsWLCAkJISvvvrKYIXu0qVLygdrW1tbvvjiC4Pbsre3Z/bs2axZs4ZNmzYp83DPHD+OnZ0dffr0AdJWt4KDg5VV2GvXrnHz5s2njvGxsLCgePHieHl54eXlxXvvvcf3339vUEvarFkzvvnmGzQaDRYWFkyfPh2dTodGo0Gj0SjBjk6nIzk5Cb3emqSkWKKjo7GysiIlJYWaNaui1+spUqQIP/ywDr1ey4cffoK//9WX8py/arVr11YC2yNHjmQKbHU6HVeuXOHAgQMcPnyYmJiYLG+nRIkSNGnShLlz56LX6w1qpjOysbHhvffeIyYmkcmTp9G1a1eD61NSUnj06BEhISEEBwcrQW9oaCjBwcGEhYVlm+6dmJjIvXv3uHfvHleuXCE4OBqI5/Llyy/clMrc3IKUlAeoVJocP3ukS0+ddsrw/bOwsLDAyMiU1NQQbGwcnql+OzY2Vim5srW1fSnjk8qUKfPUwDY9cLW3t6dgwYIGJ5DCw8MzBbbpJ7G6du3KvXv3gXwMGTKUnTt/e+HjfddJYJuFyMhIOnfuzG+//caoUaOYNGlSlrWkb5OHDx8ybtw41qxZQ7Fixdi0aROtW7d+rSnXr6sz8stgZmZGkyZNaNKkCSkpKRw6dIitW7eyfv16vvvuO5ydnWnRogVlGrRg5tlk9GCwQkqGn3/0S8HFqwo7d+7Ey8srV/dvZGTE4sWLKVGiBIMGDeLGjRvMnj0bvV7P/v37c0zvftYgLTe0Wi2PHz/ONkBN//fJy9KbqzzJ3NwcY2NjdCZWFOj2Sa6OIb2b86us/X3WkzjpMxVr1arF3bt3WbRoEd9//z1z5syhZcuW9O/fnxo1arwTpQ9CvOlMTU0ZPXo0zs7OygfdjRs3EhISwtChQzExMUGr1bJ06VJlny5dumSZhWFkZET37t158OABu3fv5n5gIC7AoIEDyZcvH/7+/vj7+/P48eMcj0mj0eDm5oaXlxclSpTAy8uLwoULG3TjHTt2rDJzM6uV5nr16qFSqZg6daqyYhgZGYlWq8XOzo7KlStx7949nJ2Lcf/+fVxdXQkODkalUqFSqahevTpr1qwBChIaGvICz/B/q2zZslhbWxMTE8OpU6dITk7GxMSEO3fusH//fg4ePJjjBAQjIyPc3d25f/9+ts22zMzS6lIjIiIIDQ1VMt927NhBXFwcXbp0UcqJjI2NcXFxUboHP0mr1RIREaGs8GYMetOD4OTk5H//XqQFwFn97UivCc7qy8TEBD8/P4NFhfLlSxMfH49KpcLCwoL8+fMzatQoZaRe+usg/evu3bs0b9qUpORkiru5YWRkxODBg5X5vZD2Okz/PjAwkOnTpyvduE1NTalevQpxcXHY2tpy//59oqKisLW1zfZ3ke7IkSNKvWq9evUMUoCfV6lSpQxSpbOS3rkY0gLhJwPbrNSsWZPGjRvj7++PShVnUFYmnp8Etk84f/48rVq1IjIykp07d9KkSZPXfUivVExMDLNnz2bOnDmYmZkxd+5cvvnmG0xMTF73oeHu7v7cTR3eJMbGxnzwwQd88MEHLFq0iBMnTrB161a2bdvG5uD8WHhWRaXOPhjSqKBc24G5DmrTqVQq+vfvj7u7O+3ataNdu3YUL16cvXv3GgS22QWwWQVper2emJiYZw5QIyMjs0yxsrCwwM7OjgIFClCgQAHs7Oxwc3NTLjM3NyciIoLAwEBu3rzJ5cuXCQ0NJSEhAUdHR6pUr8kZ9Oh5euCX09zkN0GRIkWYPXs248ePZ926dSxYsIBatWpRqVIl+vfvT5s2bd6I/5dCvMvUajXdu3fHycmJxYsXKw1wHj16xMSJEzl27JgSFLi5ufHhhx9meTuBgYGsXr2aixcvYmpqiolGQ5BWi+2/Y9yy4+rqqgSwXl5euLu7Kx2Xn3TlyhUmTJigBMdWVlaMHTuWChUqZNq2bt26+Pv7s3nzZiCtHvTbb79lyJAhFCtWjHz58gFp41eqVq1KcHCwsm/79u3x97/OgQOHGDs2b5QOQVqAV6NGDXbt2sXDhw+ZNm0aDx8+NJgrnC6rwCY1NRV/f/9M22o0Glq1akXFihUpVaoUJiYm6HQ6Dh06xOrVqwkODkav17Nv3z4OHTpEy5Ytadeu3VPLUDQaDQ4ODjg4OFCqVKlM1+v1eqKiovD392fZsmWYmZnx5ZdfYmtrqwSuVlZWmJiYZAp49Xo9Bw8eZOnSpQbTKEqUKMGAAQMoVKgQQ4YMwd/fn8jISJYtW8bcuXOxsMjcKMvV1ZWadeooTZ9SU1OZN28e06ZNy9RcCdKyIRYtWsS4ceOU59PU1NTgdX3hwgXq1auX4/MDmbshvwyWlpZ4eHhw/fr1bLfJOOqnTJky7N69W/k5u8AW0jpBlyxZktDQUPr16/dSjvddJzW2/9Lr9axatYo+ffpQqlQpNm/erHRlexulpqaycuVKJkyYQFRUFP3792fkyJG5OiP2X/nhhx/o0qUL8fHxb+Wc4ITkVHzG/5ljs6Z0ahX4Tmz83KuNFy9epEmTJkRGRmJlZcXDhw856h/EyiO3OXInGj1ps1Y9LRLw0j/A+PH9LIPWiIgIUlNTM92+sbGxEpymB6hZ/fvkZRnTmrRaLdeuXePUqVOcOnWKkydPcvXqVXQ6HVZWVlSpUoWqVasqX+kNG9JqbEMzrXhn9KprbF8FnU7Hn3/+ybx589i7dy/Ozs706tWLHj165LqBmxDi1Tl58iRTp04lMTERSPtAHxMTo6Ssfvvtt1lOT9Dr9RQt6sG9e7dRq42pVas6qampREdHU6BAAWW2Z758+ShRogTe3t6UKFGCEiVKYGNjk6tjS3/vSH+/LlSoEJMnT6ZQoULZ7nPo0CGmTJlicFmDBg0MZoIWL16cxYsX06FDB0JCQrC2tmbbtm25OqY30YkTJ2jU6GNiY6MwM7OievXKSoaeWq3GwcGBiIiIHLvW2tjYUKFCBS5evEhERAQWFhbs2LEjy22Tk5P57bffWL9+vUFqs42NDR06dKBJkyYvZZXxWQQFBbFgwQKDlF8LCwu6dOlC06ZNlecjMjKSfv36KSc1qlSpkm1G48CBAzPVkJubmzNr1qxsT9InJiYyY8YMjh07lum6atWqMXny5BwfR0hICB06dADSxgutWrXqpWU7LV++nC1btmR7/cKFC5XHFRoaalB+0L59e7766quXchzi6d7c5Yv/UHx8PL169WLt2rX07NmT7777Lld1BHmRXq9n586dDB8+HD8/Pzp27MiUKVPeyHq+9JE/d+7cUWafvU1ik7S5Cmoh5zTapKSkXK2cFi5cWElXsqvSDJsPeoBOi0qT9jagR4V/jAn+ag+Mr17EKeY6dnZ2eHh4UKVKlRwDVEtLy2f+AxISEsLevXs5efIkp06d4syZM8TExKBWqylZsiRVq1alf//+VK1aFW9v72zLAbrVcmPv1ZzT3542N/lNpFar+eijj/joo4/w9fVlwYIFTJ8+nalTp/L555/Tv3//d2bkmBBvomrVqvHtt98yduxYIiMjefjwoXJd7dq1s/3/mZqayoMH9wBXdLqHpKSkYGVlRaVKlZSUYm9vb5ydnZ/5fVWr1bJ69WqDmsAKFSowZswYrK2tc9w3q1TL/fv3G+x38+ZNoqKilLTR9BOMeZWnpyexsVGAE4mJISQlJeHi4kJycjIJCQmEhGT+26LRaPDx8aFixYpUqlQJT09P1Go1vXv3JiIigsTERPR6fZa/OxMTE1q3bk2jRo1Yv349v/32GykpKTx+/JjFixezfft2unXrRs2aNV95CUpqaipbtmzhxx9/NKjbrlWrFr1798be3t5g+/z58zNlyhQGDBhAbGwsp0+fZtGiRfTr1y/TsRYpUkQJbL29vbl27RoJCQmMHDmSb7/9Vvl8l5GZmRljx45l5cqVBkFkamrqv82kcrZ///9H4DRo0OClPn9Pa+qUMRXZ0dERe3t7pTN5Tuns4uV75wPbGzdu0Lp1a27cuMG6devo2LHj6z6kV+bMmTMMGTKEw4cP06BBA9avX0/58uVf92FlK/2N7+bNm29lYPtsabF6Rg8bRFR4WKbgNbvmDPnz5zcIPt3c3ChZsiQ/7jmOzQc90t70NYbHkB7kasu3Zv5LHI+TmJjI+fPnlSD25MmT3L2bNlvW2dmZqlWrMmrUKKpWrUqlSpWe+gEso/S5yU/r5vwmjSh6Vj4+Pixbtoxp06axYsUKFi1axJo1a3j//ffp378/TZo0eev7AAjxJipRogQLFixg+PDhBoFtTn9bjY2NWbNmNZMnTyclxQQzMzM+/fRTpWnU84qPj2f69OkGTaI+/fRTvvnmm1ytAmbMxrG2tiYhIYHU1FSDlUWdTsexY8eUIDi7etC8wt7enrJly3Lx4mVARXh4eJbptUZGRtSqVYt69epRrly5LNOG0zPL0hpuJWebIg5pq/E9e/akWbNmrF69Wpm7+uDBAyZOnEjJkiX5+uuvX9lnH19fX7777jul9hrAwcGBPn365Dhap0iRIkyYMIERI0aQmprK77//jouLS6a+HRkXSxo2bIiJiQkXL14kNjaWESNGMGfOnCwXVDQaDT169MDV1ZUFCxYQGhrK5ctXUKuN2LVrF598knVPDb1eb5CGnD7q8GWJiYkhJCSEmzfvYmNjhY+Pl1LHbmpqmimrsEyZMhw4cADAYCSUePXe6cB269atdOnSBRcXF06fPp1lzcLb4M6dO4waNYoNGzZQqlQp/vjjDxo3bvzGN6RxcXHB3Nw8zzaQeqn0cPbsWQrY5sPe3p7ixYvnmPabP3/+bAOdYz3mEa/XgSr7QEitVrHy6J3nCgb1ej03b940SCm+ePEiKSkpmJmZUbFiRVq1akXVqlWpVq0ahQsXfuHX4pvWzflVsbOzY/jw4QwaNIhff/2V+fPn07x5c9zc3Ojbty9fffWVUgsnhPhvODs7U7hwYYPAduHChaSkpNCyZcss9+nYsSP79u3jxx9/JOTBAzp37vxCx5CbJlFPkzHd1tjYmGHDhjFp0iRSUlIMViAzrp7l9cA2vWEU6AAnQkMfZeoiXKtWLYYNG/bUkqiM18fHx+cY2KZzcXFh9OjRtG7dmuXLl3P58mUArl69Sv/+/alTpw5du3bF1dX1mR9bVmJjY1m1ahW7du1S+l6o1WpatGjBl19+mauyr7JlyzJkyBBmzJgBpI3DcXJyom7duso2GYPWoKAgJk2axIgRI7h27RpRUVEMGzaM7777LtvXT9OmTbGzs6NFixbo9bZotdEcPHgw28D2woULnD9/HisrKypXrvzSMwmOHTuGn98tUlJsSUh4iIuLkzJdIqvxRxUqVFACW1mx/W+9k4FtSkoKw4cP57vvvuOzzz5j1apVz7RC9KZ4WtfaiIgIpk6dyqJFiyhQoAArV66kc+fOeWZlR6VS4e7u/tYGtjGJmWtVs6VS8eeBwzhYP/0PZU4SU7Qk2HnAU5otPct4nMjISE6fPq0EsadPn1aaJRQvXpyqVavSpUsXqlatSpkyZZT6sZftVXRzflMZGxvTpk0b2rRpw+nTp5k/fz5Dhw5l3LhxdOnShb59++Lh4fG6D1OId8L58+c5deoUkJZqmpycjF6vZ+nSpQQHB9OjR48s/+7+c/IkrsDDlJQsU15z68qVK0ycOFFp+pNTk6icZFyx1Wq1VKtWjfHjx9OxY0du3rxNvny2VKhQBj8/P2W7vBzYarVapk2bhpGREUZGZqSmhuLq+v8VUlNTU/r06UPjxo1zdXsZS9jS665zq0SJEsyZM4cTJ06wcuVKZZXv8OHDHD9+nKZNm9KhQ4fnPnGp1+s5fPgwS5YsISIiQrnc09OTAQMGKN2ac6tBgwYEBwfzww8/ADBz5kwKFCigLBBlTM29e/cuFhYWTJs2jSFDhnDr1i3Cw8MZNmwYc+bMybZnhI+PD66uroSFXUKt1uTYzLVNm/bcvOmPkZEZnTt35tatW7i5ub2UBZyIiIh/g2ZLIiMfolJpDE4AFCxYMNM+ZcuWJT4+nvv37yvdo8V/450LbB88eEDbtm05deoU8+bNy7I24E13JiCClUdvs8835P8rUz5OdK/llvbBPjGRxYsXK8Ofx4wZw6BBg57ace9NlNdm2T4LazMj1CrIoeeR4mV19I1JTM1VB2HIuq43JSWFy5cvKynFp06dUroY5s+fn6pVq9K3b1+qVq1KlSpVnjrI/VV43rnJeVWVKlX4+eefmT17NkuWLGH58uUsXLiQJk2aMGDAAN5///089x4nRF5x584d6tX7gPj4OEqX9mHq1KmEhITw888/A/Drr78SGhqa5fzxr3r0YMiQIbg4OuY4gi0ne/fuZd68ecpqa26aRGXnycAWoGrVqgQGBqPX2/P4cQhRUVEGQXperbHV6/UsWLCAY8eOYWlpyfvv1yYlJUVJ2TYyMsq2i292MqYwJyQkPPMxqVQqatSoQZUqVdi9ezfr1q0jKiqK1NRUfv31V/bu3Uv79u1p0aLFM3XIDwoKYuHChZw5c0a5zMzMjC5dutCsWbPnXuz4/PPPCQ4OZs+ePaSkpDB+/Hjmz59PoUKFsLe3x8LCgvj4eO7duweknXCZMWMGQ4YM4e7duwQHBzN8+HDmzp2bZfC3c+dOHBwcqF27Fs2aNcu2K7Jer+fu3QDAmdTUYPr17k18UhLDhw9XVpVfxKFDh9DpdJQtW5J8+fIRGhpq8Lv29PTMtI+zszMXL14lLi6B+/fvc/z48RxTvMXLo376Jm+P/fv3U6FCBe7evcvhw4fp379/nvvA9+PJu7RZfoK/roUqAZFOD39dC+Wz5Sfov3AL3t7eDB8+nHbt2nHr1i3Gjh2bJ4NayNuzbJ/GzFhDQx8nNOqcX4MatYpGPs4vJVj7/dLDp2/0L7UKHj8KZvPmzQwZMoTatWtjY2NDxYoV6d+/P76+vnzwwQesW7eO69evEx4ezu7duxk/fjyNGzd+LUHtu8zV1ZUpU6Zw7949VqxYQUBAAA0aNKBs2bKsWrXquT5oCSFytmHDBqKjI0hNtSEsLJwPP/yQzp07M2jQIKUG79ixYwwdOpTIyEiDfQcPHkxISAi3AgIMVrhyQ6vVsmLFCmbPnq0EtRUqVGDBggXPFdSCYSpyemAL0KxZUyAEY2MzrKysDPZ5nhXb4OBgevbsycSJEw2aFv2X1q5dyx9//KH8rNfrDeqQU1NTWb58OfHx8bm+zYyreC/yfmtkZETTpk1Zu3YtX3zxhZLSHBcXx8qVK+nSpQv79+/Pca4qpD2GTZs20b17d4Ogtnr16qxatYqWLVu+UAZf+kjB9MyA6OhoRo8eTVRUFCqVSklHDg4OVp4PW1tbZs6cqaRWBwYGMmzYsEwz6xMTE5XO0hYWFjn2v1GpVIwbNwYzszhsbPITn5SEC7Dll1+e+7FllJ5SbGRkRO3atbGysiI6Oprbt28TExND6dKls9zP1tYWlertbET7JnsnAludTsfUqVNp1KgRZcuW5dy5c1SvXv11H9YzOxMQwbgdV9BDptEmWp0ePbD9gRnuVRty+fJlli5dipOT02s51pfF3d2dgICALEfMvA261XJD95Ql25fV0fdMQASTfvfN3cZ6Hal3/sHTrSht2rRhy5YtuLq6MnXqVI4dO0Z0dDRnzpxh0aJFdOzYEU9Pzzx3kuhtZW5uTteuXbl48SL79++naNGidO/enffee48xY8YY1AEKIV5MrVq1MDIyBkLp3LmTEsx+9NFHTJ06VVnZ8fPzo3///pkayTg6Oj7zOLv4+HgmTJhg0Pn4008/ZerUqS9UVpXVii3ATz+t49SpU8ydOztT3eizpFnGxcWxZcsWqlevzvffr2PChAksW7bsuY/3eW3fvl1ZUc/I2NiYL7/8Ujkpe/36dcaPH5/r4DvjivzLOJFoYWFB586d+eGHHwz6ooSGhjJjxgz69OnDhQsXstz32rVr9O7dmxUrVpCUlASkNcoaP348kyZNemkj44yMjBg3bpwyHvPhw4eMHz+epKQkg5M16eOiAAoUKMCsWbNwcHAAICAggJEjRxo0wty3b58S7NarVy/b401ISGDJkiUcOXKEWrWqUrZsaazMzQkCerxgM7b0405PvXd3dyc+Pv7fLs0XuH37DmfPns92NOiuXTvo1KkFS5YskdXa/9BbH9hGRETQtGlTxo4dy5gxY9i9e7fynymvWXn0NupcrO55NOlhMCw6L/Pw8CA1NVVJZXnbpHf0VUGmlVuNWoUKXlpH39y8fv5PxYdFjdm+fTtBQUEEBASwceNGBg4cSI0aNd7KucJvG5VKRf369fntt9+4fv06n3/+OfPnz6dIkSJ88cUXBmfwhRDPp3bt2vj7+3H27NlMczYrVarE3LlzlbEpQUFB9O/fP9N8z2exbt06KlWqxJ9//gmkNf7p27cvffv2feH5p9mt2Go0GqpUqUKnTp0y7TNt2rSnBn6PHj1ixYoVfP755yxfvpykpCSDxkX/pYMHD7J48eJMlzs7OzNv3jw6dOjAjBkzlBMEFy5cYNq0aQbPR3Ze1ortk+zt7Rk8eDDLly+ncuXKyuU3btxg6NChjBkzRpkyEBcXx8KFC+nfvz+3b98G0v4WNG/enJUrV1KrVq2XdlzpLC0tmTJlinJCwNfXl1mzZhk04Uo/vnROTk7MmjXL4CTC6NGjSUhIQKvVGoz7ad26dab71Gq17Nq1i3bt2vHrr78qq9cmJiZ0+PJL7t27x9ChQ1/4sR08eFD5Pr2uWKfTodWmAPbodKnZvobLli3LDz/8wDfffPPCxyFyT6VPf3fJw7JrFnP27Flat25NTEwMP//8c64bALxuqamphIeHExYWRlhYGI8ePeJhyCPmPSicq/pItQp8JzZ+K+oMb9++jbu7O3v37qVhw4av+3BembMBEZk6+jbycX5pHX0TU7T4jN+Tq3pegPFNfehSI2/NfRVP9/jxY9asWcPChQu5ffs21atXZ8CAAbRs2TLHD8XvQkMuIV6VsLAwxowZowQa6R2Hs6sZzM69e/coWrQYer0pGo2WTz5pzPjx45+5SVR2Vq5cycaNG5Wf9+7dmykTp3v37gYjYiBtnu/YsWMz1X3euXOHzZs3c+DAAYPAMCUlhaSkJGrXrs3UqVNfWUPBJ/3zzz8MHz6c0NBQrKyslBKtmjVrMmTIEIM0a19fX4YPH640gfrwww8ZPHhwjplJO3fuZMGCBQAMHTqURo0avbLH8f333yuvJ/j/iYj06QPp3N3dGThw4FPnsL4MN2/eZODAgcpzVqtWLY4ePQpAu3bt6Nq1a6Z9AgICGDx4sLI6W6FCBSXbIf3nmTNnKtvr9XrOnDnD0qVLDVaBIe3EwqBBg575/1V29Ho9X331FYGBgahUKn7++Wd69uxJdHQ0cXFx5M9vxxdffM7nn3/+Uu5PvBx5unlUdk2UutUqxtndmxgwYADlypXj8OHDWc7L+q/ExcUpAWrGYPXJ79P/fbIOB8AkXwFceq3N1f1l1fQnr3rvvfcwMjLi5s2bb3Vg+6o7+sYkpuY6qAVoUvrljBYQbxYbGxsGDBhA3759+f3335k3bx5t27alUKFC9OnTh+7duxvURj+tUZ0Q4ukcHByYO3cukyZN4ty5c6SkpDB16lSCg4Np27Ztrss4/r8OoQa0fPHFFy8tqAUylfykpKRkClaLFSumBLYqlQq9Xs/JkyeZOHEi48ePx9jYmPPnz7N582bOnj1rsK+xsTEffPABrVu3/s8/k/n7+zN27FjOnbtEZGQYarURNWtWp3///rRs2TLT78DHx4cJEyYwZswYUlNT+fPPP7G2tubrr7/O9vf1slORs1OxYkWWLFnC/v37+eGHHwgLC+Py5as8epQ2VqZChQq4urrSqVOnF66jfRYeHh6MGTOGcePGodPplKAWyDbrrmjRosyYMYOhQ4cSFxfHuXPnuH79unJ9xtXamzdv8v3333P+/PlMt1OvXj0GDBjwUvvJXL9+XQmey5Qpg6WlpRKAV6tWjblz5760+xIvT54NbH88eZdxO66gVqsyNVH680ow4X/upHv37syZMydXs8RyS6fTERERkSkYzSlYzeoNzsrKCgcHBxwcHLC3t8fT05MaNWpgb2+vXJbxelMLK0pO+PM/7aD7JjAyMqJo0aJvbQOpJ72qjr6vowOzeHNpNBqaNWtGs2bNuHjxIvPnz2f8+PFMnDiRTp060a9fP/6Jtsz2PXbv1RAmNy9Fh6rP1vBGiHeVpaUlU6dOZf78+ezZswedTseoUaOYN28eP//8M+7u7sq2P//8M8OHj8HV1YkRI4ZRuHBhChYsSKFChZgyZTKLFy/G1dWVbdu20aRJE4MOrS8iYypy+s9PBrYZax2LFClCcHAwiYmJnD59mr59+wIYrCQCWFtb07RpU5o1a/ZamgrevXuXQYMGkZKSQmxsLOCCThfEe++9R6tWrbLdr2LFiowcOZKpU6ei0+nYsmUL+fLlo3379llun1Mq8vXr12nevDWpqals27ZJGYvzvDQaDY0aNaJu3bps27aNb77pA2nDo3jvvfdYtmzZa+mxUrJkSdRqNZcuXcLT01P5/P1kKnJGnp6eTJs2TVkhT/sdpQW9lSpVIiwsjB9++IF9+/bxZJJp/vz5GTFixEs9wZMuvWkUQP369QkODlZ+zqvdwN8FefLT69OaKKFSUaBxLzr3qPHUoDYpKSlXq6jp34eHh2fqRKdWqylQoIBBMFqsWDGDwDTj9/b29pna/udGQx8n/roWmukxZ6RRq2jo7fRWrName5tH/vxX0jswv4uvH5GzsmXLsnr1ambMmMHy5ctZsmQJP+w6gvMXM0Glyvo9Fhi7/QpeTtaycitELhkZGTFo0CCcnZ2ZNm0ad+7cISAgnIYNP+T8+X+wsbEBoF+/QUREaHjw4BRTpkyhQIECQFow4+TkRPXq1Xn8+DHh4eHMnDmTrl274uzs/EwjYLKSVWD7pIz3kZCQwNixYxk/fjypqamZAlpnZ2datWrFhx9+SGxsLL6+vlSuXDnLsoeMq6BProjmtKKdmprKpUuXcHNzw9bWNtP169evZ/DgweTPn5+CBQtSooQ7N2/exdbWlaCgIPbt25djNlidOnWIjY3lu+++A2D16tVYW1tnOVM1p8B21qxZ+PndRK83YsiQIezZsyfb+3wWpqamtG/fHldXV8aPn4iHx0csWbLkhV8Lz0Ov19OpUyf27PkLlcocleomJUuWBNKaSiUnJ2d7XD4+PkyePJlhw4YpwatGo2H16tX8+uuvSgOsjJo2bUq3bt1e2omdjLRaLX///TeQlmlQu3ZtLl++rFwvge2bK08GtulNcHL6gK5WqZi8+TjNCoTmGLimnxnKyMzMTAlEHRwcKFy4MBUqVMgUoKZ/b2tr+5+kenSr5cbeqzkPcX9ZHXTfJB4eHhw6dOh1H0ae966+fkTuODo6MnbsWIYPH07zb3fh+1gHquzf19RqFSuP3pHAVohnoFKp+OKLL7h69Sq+vr7o9UnExsbSu3dvJkyYgIeHB+XLl2P//r2o1UYGH9q1Wm2mrubHjx/n+PHjqFQqHB0dcXV1xdXVlYIFCyrfu7i45OpkempqKrGxsdy5cwdLS8ssA9uMpVIhISFMnTo1UwqzhYUF/fr1o169eiQnJ7N161a6detJUlIcjo7OlCnzYquVGV28eJmwsBCcnQtx5coF5SQApGXYff11T+LijAgOvoatrS1DhgzB2dmZb7/9FoD58+fj4eGRbWdbgI8//pjo6GhWrVoFwIIFC7CysspUy5lTYKvRaNDr0y5Lr0F9merWrcvffx94+oaviF6v5/vvv+fq1atAKnp9HLa2hQyuv3TpEpUqVcr2NtKbrEFaY6y//vqLn3/eQKVK5Q1Ohjg7OzNkyBDKli37Sh4LwMWLF4mIiADSZsVbW1vLim0ekecC28QUrVLvlROdHi480rNz1DfYWlsaBKNly5bNMkhN//dNnfma3kF37PYrmQJ7jVqFTqd/aR103yTu7u6sXr0avV4vI2VewLv6+hHPRqfS4Bdr8tSe+Vqdnr2+wSSmaGWFX4hnNGXKFFQqFVu3bsXJyYmQkBAGDBjAoEGD2LFjG1u3bsXW1hYjIyMePnzIw4cPefDgAQ8fPswyMNLr9YSEhBASEpJlDaK9vb0S6GYMfl1cXJTPPCkpKVy54kdsrBq4zZYtWzJ1dH1yVTbjnFe1Wo1OpyM+Pp4dO3Zw5coVDh48yL1790hKigOciIiIeuHnLqPw8HDAieDgQPbs2cMXX3yhXKdSqbC0tCIuLgyVSs2gQYOUms2rV6+ye/dukpKSmDx5MosWLcpx5a9du3bExMSwadMm9Ho9M2fOxNLS0qBLcU6Bbbt27Th//jx6vd4ggHtRer2eixcv4uDgQMGCBV/a7T4LnU7HokWL2LlzJ4ULF0atVqPVamnUqBFhYWGEhqbV/s6dO5cVK1Zk+oyt1Wq5cuUKixYtUlZrAwODACdiY0OIjo5WUthbtGhBly5dXvlkhv379yvf169fH0ibR3358mVsbW0lsH2D5bnA9lma4KjUah6GReBs+2YGqs+jQ9UieDlZZ+qg29Db6aV10H3TuLu7k5CQQFBQkDLUWzyfd/H1I57Ns7zHvk2N6oT4L6nVaqZOncqAAQOYNGkSfn5+JCUlMX36dD777DO6du2aZSaYXq8nMjKSe/fuMXXqVKKiooC0FaSYmBiDWaAZPXr0iEePHnHp0qVM19na2uLq6sqjR48wMtIAjwGUEiC9Xs/58+fZsmULvr6Gs9DVajUffvghrVq1IioqilGjRpGcnMy1a9e4du2acvu2tvY8fvwId3cPSpUqZVArmdNwjvRAOTo6mujo6EylYEWKFObOnQBsbQtkCrpVKhUHDuzjp59+on79+gYpx7179+b69evcunWL+/fv89133zFq1KgcT55369aN6Oho9uzZQ2pqKpMmTWLGjBlKum3GYOvJkw8WFhZKqvnjx4+Jjo4mX7582d5Xbk2ePJnx48ejVhvz1Vdf8v777+Pl5UXx4sUNujy/Klqtlnnz5imp1SqVCg8PDxITEwkJCaFLly7Mnj0bSOsOPnHiRKZOnYpKpeLChQscPXqUY8eOKa/jdE5ODjx8+AAzMyuD2cwPHz7k1q1bL1yjnJOkpCQOHTqEXq/H0tKSatWqAbBy5Q9ER+sJCfEnJCTn7Dfx+uS5wPZZm+DYWj57Leub7lV30H3TeHh4AHDr1i0JbF+Cd+31I56NNBoT4r/j4ODAnDlzWLBggTKbdvPmzdy6dYvRo0dnCn5UKhV2dnbY2dkxbNgwRo0aBaQFUj/++CN6vV5Z2c24yvvw4UMeP36c5TFERUUpgUXp0j4EBgZiaWnJpUuXKFOmDL6+fuTLZ0uZMj7cunWb2Nh4PD3dsLGxoVChQnzxxRfs2rWLPXv2ZDnTVqPRUKlSOSXrasaMGTn2P9Hr9fj5+XHw4EEOHTqkpIRmZGVlRa1atahVqxYzZ84kJiaGY8eO8ejRI4MV0ZIlSzJ9+vRM+5uamjJ27Fh69epFfHw8f//9N6VLl+bTTz/N9rhUKhUDBgwgLi6OI0eOkJiYyJgxY5g7dy7FihXLccX2yZFG165do2rVqtneV27t2PE76c2wjhw5YjCKqVChQpQoUUL5cnd3f6nNVLVaLbNmzVKaLKnVaoYOHcrvv//O1atXefToEUWLFjXY5/z588oJgqxKAdN5e3tRtGgRTE1NDU7wnDp1ilOnTlG6dGnat29PpUqVXnomX79+/di1axdmZlYMGzZIqQt2cHAgJuY2oMLFxeWl3qd4efLcJxJpgvN/r6qD7psmvfbl1q1b1K5d+zUfzdvjXXn9iGcj77FC/LdMTEwYPHgwnp6eLF26FK1Wy7lz55S624wdkzOqXLmyMis0KiqKtWvX0qdPH/Lly4e3t3em7ePi4rIMeB88eKAEj6ampgb3d+3aDbRaOyIjQ7h37x6BgfcBF/z8blK1akXu3btHx44dM626po8CevIySFt1e7KmVa/XExAQwIEDB/j7778N6hnTmZmZUb16derVq0elSpWUgKNp06asX78erVbLzp076dKly1Oe8TQFCxZkyJAhTJo0CYBly5YpQWB2NBoNI0aMUEbTxMbGMmLECObNm2dQ35sxRRteTmCbVTlWu3afceHCKExNrQ06VgMEBgYSGBjIX3/9xb1793j8+DHlypWjTp06lCtXDm9vb4oUKfJcPWJSUlKYPn06R44cAdKel5EjR1K3bl0uX778b61t2msuPUU93ZN14hqNxmDOMaS9VlxcXPj000/56aefMr2WLl++zOXLl/Hw8KBdu3bUqlXrpfS6CQgIYP36TYAriYkPDWp79+z5nZUrV1KrVq1XumIsXoxKn1MOyBvqTEAEbZafIKcDVwGbe1SX1Mq3RKFChejcuTNTpkx53YcixFtP3mOFeD0uXbrE5MmTlRVUMzMzBg8enKlRUbrQ0FC6du1KYmIiarWaRYsW4enp+cz3m5CQwJAhQwxmiKYdzxVCQ4MxMjLDx6e4ksqcVRMojUZDzZo1adq0KaampgwcOFAJWCwsLJRgb8KECdSsWROABw8e8Pfff3Pw4MEsR8IYGxtTuXJl6tWrR7Vq1bKsrXz06BEdOnRAq9WSL18+1q9f/0wrk0uXLmXbtm1AWkr3kiVLDNJfs5KQkMCwYcPw8/MDwMXFhblz5yrH4enpyZIlS5Tt/fz8lHFIAOXLl2fWrFm5Or6UlBRafPopf+7bx9ChQ5mWYQVaq9XSrl07oqKiMDIyonfv3ty9exc/Pz9u3bpFSkoKUVFRnD17FjsgydSU6hkWCNRqNfb29ri5uVG6dGmqVatG4cKFc1wFTU5OZvLkyZw8eRJI+x2NGTOGGjVqAPDLL7+wevVqIK0T+JPNxdJ5eXlhYWHBuXPnMl1nZWXFjz/+iJWVFQcOHGDmzJlKcGxpaZkp5b5gwYK0bduWDz74INNJhNx6+PAhAwcO5PTp0wQEBGBubs3ly+ezPbEk3kx5MrAF+OnU3ac2wZEZi2+PevXq4eLiwi+//PK6D0WId4K8xwrxeoSGhjJx4kSDILNNmzZ89dVXWa5KbdiwQenY6+Xlxfz581Grn9L9LQv9+/dXamgdHBwICwtDp9Px+PFjLCwsMDU1JTw8nLi4OFxcXJQAwtzcnLZt29K4cWNl1fL06dOMHj06y/tp37491tbW/P3335kCaUgLtsqVK8f7779PrVq1clUrOmPGDKXhz8CBA/n4449z/bhTUlIYPHiwUhNcrVo1Jk6c+NTnMDo6mkGDBikBebFixQgNDSUuLo5ChQqxZs0aZdtbt27Rs2dP5Wdzc3N+/fXXXK0ynj17lsqVK+MEhKlUpKSmGhzb4sWL2b59OwDDhg1TaolTUlK4c+cOM2bM4Ic1a1ADVhYWVP43AM2OWq0mX758FCxYEC8vLypXroyPjw/m5uYkJiYyfvx4JRg1MTFhwoQJlChRguPHj3PkyBH++eefTCuw6YoWLWqQLp2d6dOnG3RQfjK4rVixIjExMZleP/b29rRu3ZqPP/74mRpMhYWFMXDgQEJCQtDr9Tg5OTFz5kwKFSr09J3FGyXPBrYAZwMiMjXBaeTjLE1w3kJdu3bl0qVLnDlz5nUfihDvDHmPFeL1SE5OZt68eezbt09pntSgQQMmTZqUqe42JSWFHj16cP/+fSDrwO7x48ccOHCAypUrZ/thPb2hUm5kTDUuVqwY33//vcHxfP311wQGBgJpq85xcXH4+fmTkJBI8eIeWTZOKlmyJO+//z516tQhf/78uTqOdP7+/vTp0weAIkWKsGLFimeqvQwNDaVnz57ExMQAaY2i2rZt+9T9Hj16xIABA5RmQukrlAUKFGDDhg3Kdvfu3aNr164G+37//fc5jhlK9/jxY4oULMjjuDgc7Oy4c++eQWfhq1evMmDAACAtPX3atGnKdZGRkXTq1InAwEAeP36Mq6vrc3cUNjU1Ra/XK3XUJiYmNGrUiAcPHnDx4sVMjb0g7flwc3NTXlfjxo1j7969ympvVmrXrs24ceMyXf5kcPvRRx9Rp04dNm7cyIULFwy2tba2pkWLFjRr1uypTboiIyMZPHiw8v+naNGizJkz56U09xL/vTxXY5uRNMF5d3h4ePDrr7++7sMQ4p0i77FCvB4mJiYMHToUR0dHunXrgVabTEBAIKGhoUydOtUgIDI2NqZv374MGzYMgFWrVlGrVi3lg7ler6dOnfpcunQOc3NrTp06RunSpZX9dTodx44dy9VKmo2NDY0bN+aTTz5h8uTJ3Lhxgzt37vD48WOl6+/27duVoLZkyZL06tWL1q1bExT0ECiIv/8tKlcuD4Cnpyf16tWjXr16mWpEn0WJEiUoVaoUV65c4e7du5w7d46KFSvmen9HR0dGjBihrDKvXr0ab29vypQpk+N+9vb2zJgxg4EDBxIVFUVKSgrx8fGZ0mGzSo/19fXNVWBrY2PD6PHj2bx5M9bW1ly5csWgPtfb2xtHR0dCQ0M5d+6cwe9iw4YNJCYmYm9vT7du3fD29mbx4sVER0cr+7u5ueHq6kpgYNrr68n64HRJSUkGPycnJ/P7779n2i5fvnzExcWh1WpxcHCgTZs2ShnZ1q1blfrb1NRULl26SkJCIt7entjZ2WFmZpZpxFS6+vXrK83HdDodu3fvBmDmzJn4+/uzYcMGjh8/DkBMTAzr1q1j06ZNNGnShFatWmU5ZikmJoYRI0YoQa2rqyszZsyQoDYPe/ZclTeQmbEGB2tT+cD1FnN3dycyMjLL7ohCiFdL3mOF+O+pVCrKlCmDVpsMOBMXF0NoaCi9evUymLMJaTWb6XW40dHRSo0jpAWuV65cAJxJSIihV69ebN26lZSUFI4cOcI333zDpEmTsuxonM7JyYmRI0eyfv16unXrhouLC2XLllWuT6+9jYiI4KefflKOv3fv3sTFxWUI7B5gbm5Cp06dWL16NUuWLKFNmzYvFNSma9mypfL91q1bn3n/KlWq8PnnnwNpz9nUqVOJjIx86n6FChVi+vTpWFhYcPXqNU6cOMHBg0cMPq9kF9g+y7HZ2NigVqszjWxSq9XK716r1SoNnR49esTOnTuBtNXW9u3bU79+fVauXGlQs3379m3Onz9Pq1at2L59O7t372bOnDm0bduWMmXKPLXe+EnR0dFotVoeP37MzZs32bVrF7Gxsdy5c8dgpTYkJISIiDASEmy4ceMOAJ06dcLBwSHb237//fcZMWKEkoq9e/du5s2bR4kSJZg4cSIrVqzggw8+UK5PTExky5YtdOrUie+++44HDx4AaZ3Ab9y4wahRo5QxUQ4ODsyaNcugCZjIe96KwFa8/dKL92/duvWaj0QIIYT4b5QvX54uXb7C0jKREiU8UalUpKamMmPGDCZPnmxQy9ijRw8sLCwA+OOPP5TGRhqNhunTp2NuHk/BgoUwNTVl2bJltGzZkkmTJmWa/5rOzOz/4xL1ej1169ZVOhEDlCtXTvk+PdhavXq1suL30UcfYWpqyqRJk7Czs6N8+fJ4eXnh7e1FmzZtKFy48Mt5kv5Vo0YNnJycADhz5gz37t175tvo1KmT8rgiIiKYPn06gYGBHDhwINOKZUYeHh5MmTKF0NAwwInExFiD9NiMz1t6inR6TW9uZFw5vnz5cqbr33//feX7v//+G4D169eTkpICQLNmzbCzSysfyZ8/P6NHj2b8+PHKZXFxccyZM4cRI0YQGBiItbU1pqamREVFKenZz+Lu3bucOXOGEydO8ueff3LmzHlu3brF2bPn0Wq1qFQqihcvTlobwkCsrS1wcXGhQYMGOc41Tn+sI0eONAhuv/vuO3Q6HUWLFmX48OGsXbuWpk2bKicUUlJS2LlzJxUrVsbW1h57e0eKFy/Ovn37gLRZy7NmzVJePyLvksBW5AkS2AohhHjXqFQqVq9eRWjoA/r27WtQN3r48GHatWun/F20t7enU6dOQFogumDBAiXwHTZsGI8eBfHll52U20hMTDS4r6SkJKVh1IABA9i0aZOS8hoaGsqJEycMti9VqpQSXFy4cAE/Pz9lFq+lpSUtW7Zk9OjRyrxSR0dHChUqhEajUVKVXyaNRkOzZs2Un9MbKj3rbYwcOVIJ+E6ePImHhxcNGjSgatUa2TZFAihdujTdu38FhFCuXCWDdOGMK7bpNa737983SAnOSf78+ZUTAdevX1fm5D569IjevXuzYsUKnJ2dgbSTDH5+fkqqrrm5OW3atMl0m7Vq1WLFihVKsylIm6FcrFgxKpYty5o1a57r5ADwb1fvAoCaqKiof7MOHNFqk9Fqtej1euLi4qhatQplypTBy6sEQUFBtG3blhYtWihZBCtWrOD333/n3LlzBAUFKR2W69Wrx6hRo5TX3549e5TgFtK6W/fr14+ff/6Zdu3aYWZmRlhYGCEhQTx+bI5WqwecCQkJw9raWhpFvUUksBV5gq2tLQUKFJDAVgghxDvHwsKCXr16sWzZMlxcXJTLo6Ki+Oabb1i8eDHJyck0a9aMokWLAnDjxg127doFwKJFi8if357ly1dm2eRHp9Nx+vQ5Ll68yJkz52ncuDHm5uYGgeKOHTsM9rG0tMTDwwNIm/+5YMEC5brPP/+cuXPnKvNo0+s40z3LauWzyNgNd9++fbkOHDOys7NTgqa4uDiSkuIAJ65cucKIESNyTE9etmwZsbGxnDt32qDBU8bANuNK+POs2mq1Wnx9fYmOjqZ69eosWbKa2bPnKCcq9Ho9ixcvVoLAFi1aKDW3T8qXLx/Dhg1j6tSpODg48ODePZyAyJgYHj9+nOtje9J7772HiUk8FhaWFC5cGB8fb+zstFSqVIlSpUop6c3W1mnzdzN2eY6Li+PmzZscOXKETZs2MX/+fIYPH06nTp345JNP6NixI8OHD+f8+fPUq1dPOVGze/duJk6caPA83Lt3j7t375KYmPhvNkPaCnHaLiEULfoe06ZNw83N7bkfq3iz5OmuyOLdUrVqVXx8fAxa6AshhBDvEr1ez+rVq9m4caNB2maBAgUYNmwYxsbGDBo0CEhbrevfvz+ffNKMpCQrIIQKFSooK5Lp4uPj/2284wwEEx0djbW1NTqdjq+++kqpTVy5ciVFivx/zNeKFSvYtGmTwW299957FC1alMOHDyvHtXDhQhYuXKis+jZu3JjBgwe/5GcmTcbxN127dqVdu3bPfBtarZaePXty+/ZtLl26QmTkYzw8ilK4cGHs7OwYM2aMQQOup9Hr9Xz44Yfo9XpcXFwICgoC4IsvvqBz5865uo0DBw4w/d8Ztg0bNuTw4cNcvHiRwMAQIJVRo0Zy+vRpg30sLS358ccfc1UnGxcXx/t163Lmn3+wNDWlYtWqmJiYoNFoqFy5Mo6OjlhbW2NlZYWVlRXW1tZoNBr+/vtv/v777xxXs9MtWbIET09Prly5wsCBA4G0+t9WrVrx+PFjHj58SFBQEKGhoVmegMmJv58f9wMDKeziwqy5c9m/f3+mhmjR0dHEx8dToEABTExMmD17tkGtuMj78nRXZPFu8fDwkBVbIYQQ7zSVSkXXrl2pX78+Q4cOVVbWwsPDGT58OLVr16Z27dqsXr2Gu3cDOHToKFZWFiQlhWBkZIqVlRW1atWiadOmAHz33XcEBQVRuHBhgoPDqVy5BnFxcVhbW6NWq/n0009ZunQpkLZq269fP+VYypQpkymwdXd35+DBg0Da6uSUKVNwcHDAzc1NCWyfN8U1N5o1a8aOHTvQ6/X89ttvtG7dGiOj3H/c1el0zJkzh4CAABITEylVygetVktcXBypqalEREQwZMgQunXrRuvWrXM1VkilUmFsbExycrLBsTxvnW16baiHhwdGRkZUqFCB8ePH07dvX4Oa6VatWuW6+ZOlpSWbt26lW7dupKamKsep1WqJioqia9euSjaAVqvlzz//ZM2aNf+mHaexsbHJdqXXyckJDw8PUlNTmT9/vnJ59+7dDTIDIK1jcmhoKEFBQZm+Hj58mGXn5pCgIJyA+0FBzJ49O9PJG0hboc6XLx8ajYaJEydKUPsWksBW5BkZ/1gKIYQQ77JixYrx008/MXnyZIOVuiNHjmBqasr9+w8AJ6KjQyhfvjxlypSiRYsWtG/f3mD0yfLly5VaxhIl0i77+uuv6d69O02aNOHDDz9kzZo1JCYmsm/fPrp27aqk2ZYqVcrgmDw8PJS/02q1mtGjRyvpyiVLllS2Cw0NfRVPCZDWpbhq1aqcPHmSsLAwjh49atAFOCd6vZ4lS5awb98+bt26xZ07d9BoTFGrVaSkJFKggBPlypVCp9Px/fffc/XqVYYOHWqQdpyd9MBWp9NRoEABwsPD8fPzQ6vVotE8veN8vnz5MDMzM6iNNjExYeXKlTRo0ABIazaWHtiamJgYdIp+mjt37jB8+HAgbf5svnz5lFRuPz8/vvnmG7744gtKlizJ8uXLDRYaTExM+OSTT5S63qzUqlULlUrF9u3blZVUT09PmjRpkmlbIyMjXF1dDdLX0+n1emJiYggKCuLBgwecPn2aCxcu4OTiwv3AQPJZWOQ4rkelUjFq1CiDGmjx9pAaW5FneHh4EBwWzr3QKBJTnp7yIoQQQrzN0ldEe/ToYbBymJSUhIODPRCClVV+pk6dyr59++jbt2+meZ4WFhb079+fmTNnKmN3EhISWLBgASNGjCA2NlZpMJSYmMjevXuVfZ+sN824WtizZ0+qVaum/FwiPWqGF6rfzI2MAd22bdty3Fav1xMYGMjevXvp1auXUkscEhIOuKLVJpGSkgg4ER4ewqeffqrse+zYMXr16pWrbLL0OtvU1FS8vb2BtBTw3KxeBwUF0aNHD4Og1tjYmAULFihBLWDQlMvKyipXATek1WMPGTJE+X26u7uzevVq5s2bpzStSk1NZe3atQwbNszg8datW5fhw4ezb9++TA3JMqpduzaPHj1i3bp1QFqA2a9fv1wF9RmpVCr0ej3nz59n9erV7N+/n/DwcIqXKEHt2rWpWrNmjiv0gwcPpk6dOs90nyLvkMBW5AlnAiL4LdKJwoO2UOe7Y/iM30OPn85yNkDm2gohhHh3qVQqWrduzYwZM5S009TUVMzMTChUqBAVKpTmwoULBimjWalQoQLff/89n3zyiXLZuXPn+Prrr7G1tVUu27Fjh1L/uHTpUrRaLZcvX+XkybOEh4cD0Lx5c1q0aGFw++kpoJA2fiWnubkvqly5ckpDoGvXrhnMjI2Li+PcuXP89NNPjB49mlatWtGlSxdmz57NzZs3le0KFXIGHmJqaoGTkzNGRtG4u7vzxx9/UKZMGaVJ1cOHD+nXr5/SETo7GUfP+Pj4KJc/bZ7t8ePH6d69e6ZO0k2bNjU4WXDnzh1OnTql/BwREcHdu3dzvO30+x86dKiyOuvl5cXs2bOxsbGhZMmSdO7cmdTU1EzjjmxtbZk5cyZVqlRhxowZSvfrrNjZ2eHt7c3y5cuVjs4ff/wxXl5eTz2+jPz9/Zk1axbt27dn1apVhISEKNe5uLhQrly5HMcF9e7dmw8//PCZ7lPkLZKKLN54P568y7gdV1CrQPVv5zydHv66FsreqyFMbl6KDlWLPOVWhBBCiLdXhQoVWLJkCRMmTGDXrl0EBoYCKZibm3PgwAFOnjzJl19+SbNmzbJdJbO0tGTAgAHUqlWLuXPnEhYWRnx8vNKAKCYmhgcPHvDPP//820n5NKGhoYSEBAGF8fe/Rf/+venZs2eWt29lZaWs1t65c8cgMHuZVCoVLVq0YM6cOUBa0yI3NzeuXbvG3bt3nzor1d7enk8++YSCBQty6tQpLl68qFyn1WqVub2mpqYkJSWRnJzMt99+y9WrV+nduzempqaZbjNjYJu+YgtpgXfGkwkZ72fNmjVs3Lgxy2N8cv7w2rVrM21z6NAhZQRUVi5dusSYMWOUYLNUqVJMmTIFS0tL4uLi+OGHH+jXbwA6XSoWFvmoUaOKsm9ISAifffYZGo2G9957L1OtsVqtVk6A1KhRgwsXLigzdm1sbPjqq6+yPa6MkpOTOXToEL/99psymzmdSqWicuXKfPjhh+zatYtz585leztfffUVzZs3z9V9irxLAlvxRjsTEMG4HVfQA9on/g5pdWkXjN1+BS8nayoVzdwoQAghhHhXODs7M2/ePM6dO8eDB4/Q61WYmJgAaWmvS5cu5c8//6Rv376Z6mMzqlSpEitWrGDZsmXs2bMHgJiYGOX6bdu2KZ1908aoANzH0dGD0aNHZxs429vbK4HtlStXXnpgGxMTg5+fH76+vgYrof7+/vj7+2e5j7m5uRLYAXTs2NEgGPzss8/w8/Nj1qxZ3L9/32DfJ1cxd+/ezY0bNxg3bpzBWCZA+T2kpKRQvHhxjIyMSE1NzXLFNiIigilTpnD58mWDy6tWrcrt27cJCwvj2rVrpKSkYGxszI0bNzh27BiQtpL6+PFj9Ho9Bw8epGPHjlk2uDp37hzjxo1THkO5cuWYNGkSKSkp/PDDD+zYsYOHDx+i06UCriQmhtKsWTPMzc3ZsmUL589fJDw8HojD1NRUmaObzszMTGnyVK5cORYuXKhc161btxzrYCGtDnvnzp3s2bMnU7aBlZUVjRs3pmnTpqjVasaOHavU7er1em7cuEloaASFCztTpEgR2rVrR/v27XO8P/F2kMBWvNFWHr2NWq1SgtisqNUqVh69I4GtEEKId56ZmRm7d+9m0qRJWFtb07dvX9avX88ff/wBpK30DRw4kIYNG9K9e3fy58+f5e1YWloyePBgateuzdy5c5U0Y4CzZ88q39vY2FCpUiXUajWbN29WUnSzUqhQIaU+88aNGy/0OLVaLXfv3lVSja9du5Yp8HySWq3G3d0db29vfHx8iI2NZfHixcr17dq1y7TCmZCQwJw5cwkIuEfDhg04cuQIKSkp2d7HzZs36d69OyNGjKBWrVrK5ekrtsnJyZiYmODh4YGfnx/3798nOjpaCfQuXbrElClTMtUvN2nShD59+jB79mz2799PUlIS/v7+lCpVymC1tkOHDhw5cuTfUUCB3Lp1S2ngle7UqVNMnDhReRyVK1emT58+rFu3jt9//12plbW2tsbNzY2UFB2jRy+iR48eQFojqJo1c65Tzdi5eMOGDUoqtbe3N40aNcpyn/Ta2d9++40TJ05kGvnj5uZGs2bNqF+/PmZmZly7do1x48YZBL5pdct3ARdu3LhBz549c706LPI+CWzFGysxRcs+3xByiGmBtJXbvb7BJKZoMTN+tiYEQgghxNumQIECBiNVBg4cSOPGjVm4cKESUO7bt48TJ07QpUsXPvnkk2xXWatUqcLKlStZunSpQeOojJydnfnuu+947733cjwud3d3Dh06BPDUIPRJUVFRymrstWvX8Pf3N1hpzUrG1Utzc3PWrVun1AufOXOGb7/9VklLbtasWZYB0Nq1a1m5cgUqlSNXr15l8eKFnD59mvPnz2d7v0lJSUycOJHy5cszZswY8uXLpwS2Op0OrVaLt7e3klrr5+dH5cqV2bx5MytXrsyUKt25c2c+//xzVCoVZcqUYf/+/QBcvnwZtVqt1NY6ODjw0UcfodFolPTpgwcPGgS2R48eZerUqaSmpgJpKewODg5069bNIGDXaDR88MEHtGvXjkKFChkcz40bN/D2Lk5AQABWVoVxcnLK8feQsXb5zp07DBkyBA8PDzw8PPD09KRAgQIcPHiQ3377LVMzLY1GQ+3atWnWrBklS5ZUVp8PHz7MzJkzM9Vqm5qaYmGRj/j4IJydC9GvX79cjWQSbwcJbMUbKyYx9alBbTqdPm17CWyFEEKIzLy9vVm4cCG7du1izZo1xMbGEhsby8KFC9mzZw99+/Y1qP3MyMrKiqFDh1KhQgVmzJiR6fq+fftmWhXMSunSpZXvw8LCstwmKSmJ2NhYIiIiDFZjHz58mONtGxkZ4eHhoazGent74+joyOzZs9m3bx8JCQkcOXKEpk2bcunSJSZOnKgEdw0bNqRXr15ZBkDpKcV6fSgajSvLly+nVKlSdO7cma1btxqkaKenF6c7f/48n332GQ0aNECr/f80h/Q6219//RWACxcusGvXLo4fP25w32q1mkGDBhk0PMo4z/bSpUtcuHBB+blDhw6YmJhQu3ZtFi5ciE6n4++//6Zbt26oVCoOHDjAzJkzlZVQJycnLly4YLAyamxszEcffUSbNm2yDFi1Wi2bN2/GzMwsU/MnjUZD9+7d2bNnj5Ia/KTExEQuX77M+fPnlZXqrLoY29nZ0aRJEz7++GMKFCigXK7X69m4cSOrVq3K8va/+OIL1q5dy6lTp6hfv/4zzTAWeZ/8tsUby9rMCLWKXAW3alXa9kIIIYTImkaj4dNPP6V27dqsXLlSWYG9ceMG/fr146OPPsqx/vHJutF0y5YtQ61W06BBgxxXxzw9PZXvMwaE6e7cuUOVKjV49CgEL68SmVYKM3JwcMDb21sJZD08PJQ61oxatmzJvn37APj111/x8PBg7NixSm1p7dq1GTx4MGp11oNCPv30U1avXs2mTZuUfa5cuYKvry8ff/wxMTExyip0amoqGo0GS0tLpcuwTqdT7j9dQkKCQWfk3377LVO9rqmpKePGjaNKlSoGlxcsWBA7OzsiIiK4fPmysp+Li4uS4mtjY0PFihU5c+YMoaGhSpr2nDlzDFaDM3YVNjc3p2nTprRq1Qo7u+xLu44fP66cZEhvMpWuZ8+efPLJJ/z000+Z9jM3N6dMmTLcuXOH4OBgzp0+TXR8PPksLKhUrVqm5z8qKoqjR48SFBSEp6ensrK7YsUKjhw5kuWxdenShc8//xzgqdkD4u2k0j+tNZwQr1GPn87y17XQHGtsNWoVDb2dWNah4n94ZEIIIUTeduXKFRYuXKh02E1ISODWrdu4ubmxcOECypQpo6x46XQ6evToYbASlz5TNF2NGjXo379/joHRxx9/rKS8/v777wYdhJcsWULv3r0BV6ytE6haNe3vurGxMcWLF1cCWW9vbxwcHHL9OPv378/69RuJjo6hZMkSygpg5cqVmThxopIm/DSnT59m8eLFBqvHBQoUoGHDhhw8eNAgUExvlJVVPW7+/Plp2rQpW7ZsMahFTWdra8uUKVOyba41depUpcNwuqFDhxrUru7bt49Zs2YBULZsWYPOzhlZW1vTokULmjVr9tSGTnq9nr59+2bZiKtSpUpMmzaNs2fPMmrUqEzXjxo1ivfffx9IS0329PTECQgB6tSpk+VJiYzi4uI4c+Y8qamJeHl5ZTrp0atXr0wjpsS7R5a4xButWy039l4NyXEbnU5Pt1rF/qMjEkIIId4OpUqVYsmSJezYsYO1a9dy6dJlQkOTCQ4+Sdu2bfHy8qJEiRL4+PgQFRWVKb1Ur9dTvnx5pd70+PHjXL58mT59+vD+++9nuXprbW1NRETaDHp/f3+D1NqGDRtia1uAqKiH1K79Md26dcPHxwc3N7dcBZ+JiYn8+eefeHt7U7x4ceXyQoUK8ehRCODM1av+1KlTg9KlSzNu3LhcB7WQVm9crlw5Nm3axC+//EJycjLh4eFs2LCB0qVLU65cOfbt24dOp+PRo0eoVCpldTXjcxYeHs66devQ6/UEBweTnJxMoUKF0Gg0uLi4MH36dAoWLJjtcZQpU8YgsC1UqBANGjQw2KZGjRqo1Wpu3rzJnTt3KFKkiMGqqJ2dHa1bt+aTTz7J0Nk6Z5cuXVKC2oxp1+bm5gwdOhSVSsXRo0cz7Zc/f37q1aun/Ozu7k7vXr1Y98MPNK5dm02bN6NWq7l9+zY3b97kxo0b3Lx5k7t37ypp0uHh4aSmJgLOBAWFKoGtWq1WasiFkBVb8cb76dRdxm6/kqk7skatQqfTyxxbIYQQ4gWFh4fTtGlTTpw4AYCPjw+urq5A2mrZzZu3MDMzxdPTEzMzM6VpT+3atalfvz7z58836E5bs2ZN+vfvn6nrcp8+fZTg6KuvvqJ9+/akpqYSHx9PXFwcYWFhhIWFYWVlRVxcHHFxccTHxyvXZ/w+48/x8fGcO3eBoKAHGBub8s8/Z5Sa3lOnTlGzZm202hQcHJz47LNWzJo1C0tLy+d+voKCgli6dKnyfEFaqnf9+vW5ffu20v0Z/j9SKCEhgbNnz5OcnEjJkj7odLp/x/2oKFSoIFWqVGHRokXZpnynCwgIoHv37srPI0eOpH79+pm2q1WrFseOnQT0uLkVxc3NDXNzc2rVqkWbNm0oUqTIMzVWGjVqFGfOnMl0+YQJE6hZsyZarZZ27dplGs9TsmRJ5s2bl+v7SZeUlERAQAA3btzg+PHjzJ07n6SkeGXFVqPRMHLkSOrWrfvMty3eThLYijzhbEAEK4/eYc+Vh6BSo1ZBIx9nutUqJmN+hBBCiJcgMTGRefPmERoaip2dHdeuXSM0NJR//rlAZKQeCMfMzBJPTzeDxkKFCxemUKFCBAcHc+fOHSAtrTkgIIBChQrRqlUrtFotCQkJ+Pn5KSuYxsbGqNXqTPWlz+v48TPEx1sCD/nxxx/p0KEDkZGRDBo0iOvXrxMfH0/58uWZN2/eU9Nuc+vkyZMsXryY4OBg5bICBQpQvnx5jhw5ojw2rVaLr6/vv+nKLtjYJOHoWIAbN24BNjg6GlOmTBlUKhV16tShc+fO2dYYnzx5krFjxwJp6eC7du3KcuW5c+fOrFu3Ab1eS7FihXF3dze4Pn/+/Pj4+FCyZEl8fHzw9PTMNiX49u3byrifjCpUqMDMmTMBuHjxIkOGDMm0TdGiRVmxYkWWt5tbISEhjBkzhuvXr2NiYoKxsTHjxo2jWrVqL3S74u0iga3IU8pWqESl6rVYPG+OdEAWQgghXrFHjx7Rrl37f0fM6AFX1OpQ3n+/LiqVCp1Oh0qlyrTyd+HCJR49SgEiKVGiBIULF37hY0lNTeX+/fuYmJjg6uqKRqPBwsICS0tLLCwsePjwIYcPn6BKlUps374VvV7PkCFDlBpiV1dX5s6da9Bl92VISkpi48aNbNiwwaCm1tvbm6CgIKKiovD19TWozfX09KRQoUL4+18nJSWF4sU9M80A9vLyon379lStWlUZx6TX6+ndu7fBHOClS5dm2ZU6MjKSjz76iKCgINzc3J7aIdjY2BhPT098fHyUgDe9XnrmzJn89ddfBtsbGRmxZcsWZeV78eLFbN++XblerVaj0+mwsbFhy5YtOd53Tnx9falSsSJxiYmUKFECT09PJk2aRPny5Z/7NsXbSWpsRZ4SH/OYApYmEtQKIYQQ/wF7e3u2bdvKjBkzmD17LqmpDzEzy4dKpSI0NJTLl69ibGxCxYrlDFJ7jY01QDjASxu54ufnT3BwKKClQIECdOjQgZo1a+Lt7Z1pDm9CQgLDhw9XgloHBwdmzZr10oNaSOtg3KlTJz744AMWLlzI2bNnAbh27ZqyTXx8ElAQeICbmxtFiqSVUPn4pI1YerIWN+3x+jF+/Hjs7Oxo1qwZH330Eb6+vgZBLaTVvmYV2ObPn5/Dhw8zfPhwrly5AqR1Va5Xrx7Xr1/H19fXoKtxSkoKvr6+/6ZHp3F2dsbd3T3TKCKATp06Kb9znU7H4cOHDa53dXUlMDCQx48fk5qa+tyvg7179xKXmIgLEBEWxsxt2wy6SguRTlZsRZ7i6upKjx49GD9+/Os+FCGEEOKdkj5vtVq1alhZWdGmTVvu3YsHHuHmVozSpUujUqmIjY3NtLqaVS2nVqslKCgIc3PzXAWcFy5c5NGjVCDSoDOura0t1apVo2bNmpQvXx6VSsXo0aOVGa+2trZ89913OY4PelF//vknK1euzFRfmi46Ohp//5uYmZng45M5EIe0zzhRUVFZdkqGtBpeMzMzg2AU0uqZJ0yYkO2xRUVF0bdvXyVduk6dOowePRqAe/fu4evry9WrV/H19SUwMDAXjxbMzMwYM2YMJUuWxMrKimvXrtGvXz/l+mr/jvBJD4h/+eUX7O3tc3XbT7px4wa1qlcnLCKC6dOnM3z48Oe6HfH2k8BW5Ck2NjaMHTs2yxoOIYQQQvx3Fi5cSL9+/VCpNFSqVAEbGxsgrWtvtWrVSExMVFYAnwzWEhISuHHjJqGhaZMPtm7dSu3atUlKSiIxMZGkpKRM39+7d4+VK1ei0+kyNaVKZ2ZmhoWFhbL6aWVlxZw5c3Bzc3vpj//ixYvMmTOHoKCgl37bT45SepKpqSmpqancunWLfPnycebMmWxn8ULajOD+/fuTkJAAQMeOHenUqVOm7dLTptO//P39lUZh2R1nkSJFiIuL4/bt21hZWWFkZMSaNWvYuHEju3btAtLSlDN2qn5W6a+F9NeYEFmRwFbkGXq9HmNjYxYuXMg333zzug9HCCGEeOddvXqVM2fOsHfvXsLCwgyu8/Hx4YsvvqBixYrcv39fWRn84Ycf/k13VQN2wCOWL1/O119/nev7jY6O5tSpUxw7dox//vmHxMTELLcrXrw4DRs2pEaNGjg6Oj7/A/3XgwcPmDJlCrdu3cox8LS1taVFixasX78+y+ZY1atXx87OTgn8nkav1xMbG4upqanS4CmtbjcE0DJp0iSloVR2Tp48ybhx45TjHjNmzFM7Cq9bt44ff/wxx22SkpI4e/IkCSkpFHRxoaibG/fvPyB/fhtMTEzQ6/UsXLhQGj2JV04CW5FnJCUlYWZmxtq1a7M8yyiEEEKI1yMlJYX9+/fzyy+/GDRJgrRGSe3bt6dmzZqo1WpKliyFr28o8AhHR0caNfqQ779flql5Um4lJSXxzz//sGLFihxTaT09PalevTo1a9akWLFiuR51ExMTw9SpU7lw4QJarTbb7SwsLGjRooXyGWXIkCFcvnwZyHoF1tLSUkkrrlGjBhcvXsyUZpzOz8+fwMD7GBmZUrVqJczNzbl48RJhYcnAY4oX96RJkya0bNmSatWqZZnqDLB582a+//57AExMTJg7dy4lSpTIctukpCQ+//xzoqOjDS7v168fVlZWyomKkydPcv78eZyAaGNjTCysefzYBPh/p+ivv/6a5cuXZ/vcCfEySPMokWfExsYCvNDcOSGEEEK8fMbGxjRu3JiGDRty6NAhfvnlFwICAoC0GslJkyZRpEgR2rdvz8SJE/j88y+wsXHk0KG/8fLyeqH7NjEx4dKlS0pQq1arqV69Ordv3zZIE75x4wY3btxg3bp1ODs7U7NmTWrUqEHJkiUzBYIpKSnMmzePv//+O8dUXGNjY+rXr0+/fv0MRuVs3bo1x6AWMAhiq1SpwqhRozh48CDbt283mIMLEBYWCbiQmhpEdHQ05ubmFC/uiUp1E1PTQhQsWJBLly5x6dIlNBoNTk5OSjdqBwcHHB0dcXR0pGnTpty9e5c///yT5ORkxo0bx+LFi7Osf/3zzz8zBbXFihXjk08+QaVS4eLigomJCeHh4QTcvElITAweRYoQHR3L/4NaI8D63zFHQrxasmIr8ox79+5RpEgRdu/eTePGjV/34QghhBAiGzqdjuPHj7N+/fpMXXxdXV1p1aoVjRo1wszM7IXvK2O6rFqtZtSoUdStWxe9Xk9AQADHjx/n2LFjmY4jnY2NDdWqVaNGjRr4+/szcuRojIzUlChRIsu6VY1GQ/ny5Rk5cmSW83Dv379Pz549MwXEZcqU4dKlSwBYW1sTExNjcJvt2rWjffv2mJiYcPXqVbZv386RI0fQ6XTcv38ff//rWFrmo1KlclnOrYW0WcTJyclYW1tnuyJtY2Oj1KxCWufrbt26UbBgQRwdHbG1tUWv1/PZZ58ZHCNAly5diI6O5siRI4SGhhpcp9fr0Wg0FC9enIiICPLnz8+vv/6ORqNmy5YNVKlSJcvjEeJlkcBW5BnXrl3Dx8eHw4cPU7t27dd9OEIIIYR4Cr1ez5kzZ/j5558NxshA2gieNm3a8NFHH2FqavrMt63ValmwYAE7d+5UVlwHDx5scPL7wIED9O07EJ0uhc6dv0StVhMQEMCtW7fQarXo9XqDAPDs2fNERRkDwXh7e1OwYEEgbdXVw8OD0aNHK5dld0wDBgzAz8/P4HI3Nzfmzp3L119/TWhoKKamppQvX56TJ08abOfs7EyvXr2oXr06kDZH+Pfff2fXrl1ERkbmmD4dHR3NmTP/oNdrKVasGO7u7rl7Ip9gbGzMw4cP8b96FRtbW0qWKYNarUaj0WSZiq1WqylXrhy1a9emZs2a2Tb2EuJVk8BW5Blnz56lcuXKnDt3ToZyCyGEEHmIXq/n0qVL/Pzzz5w/f97guvz589O6dWuaNGmChYVFrm/z00+bs3PnDszMrKhWrRJ9+/alZcuWBtv4+JTh2rUo4D6lSpXC2dlZuS4kJISrV69hampOpUrlMDU15fLlK4SEpKXR5stnS3x8AgMH9mPWrFm5OqYNGzawatUqg8sKFCjAggULcHR0ZPr06Rw4cACAevXq8ffffwNpwaFOp1P2qVatGr169cLFxQWA5ORkDh06xI4dO/D398/yvu/du8f169cBV4oUMadcuVKZanbVajWmpqYkJibm2Pzq8MGD5NdqCQEqVKiAnZ2dwfUajYYKFSpQu3ZtatSoId2KxRtBamxFnpH+5iw1tkIIIUTeolKpKFu2LGXLlsXX15dffvlFWa2MjIxkxYoVbNiwgZYtW9K8eXOsrKyeept79uwBnElMDKZOnTqZgloAHx8vrl3bDKgyBc0BAYHodI4kJDwkNDSUwoUL4+3thY1NPlJTU7l9+zbgxNy583n06BEODg4UKFAAe3t7AgICiIiIYNCgQcoooTt37rBu3TqD+zAzM2Py5MlKR+ZSpUopgW3GVN4xY8bw22+/KbN3T548yblz52jXrh1t27bFxMSEhg0b0rBhQ65du8aOHTs4dOgQqampym04OTkRGBhMYmIYjRp15ttvv+XkyZPs3LlTWUHW6XTKyJ/0QP+vv/5SbiNfvnzExsZia2tLSHg4phqN8rnLyMiISpUqUbt2bapXr461tfVTf0dC/JdkxVbkGX/88QeffPIJgYGBOaYBCSGEEOLNd/PmTdavX8/Ro0cNVg8jIiIwNzdn1qxZ1KhRI9v9Bw8ewty5cyhbtiLHjx/OcrU3ISGBxYsXExYWRnx8PAEBAUpt6a1bt7hz5w5qtRGVK1c0CNSSkpI4ceIMqamJFCjgSPnyZZTrYmNjOXnyFKChRIkS+PldITU1lb59+3Lz5k1lO7VazcSJEw3G3Ny5c0cZa+To6KgEtytXruS9997j0KFDLFu2jPDwcGUfFxcXevfuTdWqVQ0eW0REBLt27eL3339X5vYCSnq1hYUFnTt3pmnTpty6dYudO3dy8OBBg9rfyMhI/PxuYmZmSunSPhgZpa156XQ6IiMjsbS0xMzMjJYtW9KpUydZXBBvNAlsRZ6xefNm2rRpQ2RkJLa2tq/7cIQQQgjxEty9e5cNGzZw4MABYmJiOHHiBJAPGxsjIiMf5VhXmpCQgJmZWa5H96Q3lLpw4QIXLlzg8OHDpKamZtnEKikpieTkZOzt7dHpdKSkpADw+PFjzpw5A9jh4mLJw4f3spz32rt3b5o3b25wmU6no2XLlsTFxWFkZERkZCQmJiZs3LhRSTuOj4/np59+Ytu2bQY1rTVq1OCbb74xSKeGtA7OR48eZdu2bQa1vY8ePeLSpSuYmZlz4sRRypQpQ3R0NH/++Sc7d+4kKCiI06f/ITraAniAl5cXhQoVAtJGI6U323J3d2fp0qW5fo6FeF0ksBV5xg8//ECXLl1ITk7OthugEEIIIfKmoKAgFi9ezNSp01CpTClQwIbQ0KBXGlBptVpu3brFxYsXOX/+PJcvX1ZWdLPi5OREkSJFuHbtGgkJCYwdOxYHBwf69OljUCPbokULevXqleVtjBo1ijNnzmRYMTbm/ffr4OLigrm5ufKl0+kICAggMjJS2ffhw4fY29uzcuVKPD09M932jRs3+Pnnnzl+/DgXL14kNDQViGbEiCFMnz5d2U6n03H27Fl69vyG8+fPASrq1q2jfL7SaDSkpqaiUqmYOHFijivnQrwpJLAVecbixYsZOHBgjvPkhBBCCJG3bdy4kePHj9OlSxfKlSv3n953amoq/v7+yoru1atXlZXarBQtWpSwsDCDJk3VqlVjwoQJmWbjplu/fj1r1qzh5MmzxMZa8uRqaXYiIiI4d+4cYEm5ct6cP38m222joqLo3r07W7ZswdjYhL17/6RevXpZPt4dO3ZQuHBhihcvTt++fTl58iQ3b97E3NyaNm1asmbNGlmtFXmCNI8SeUZsbKzUdgghhBBvubZt29K2bdvXct9GRkaULFmSkiVL8sUXX5CcnIyvr68S6Pr5+RmkBwcEBBjsb2pqiouLC+fOnaNUqVKYm5tnuo9SpUoBULRoIa5evYaZWT68vb3RaDTEx8c/9QR+bmJMW1tbNm/eTEBAgHJM2T3eVq1aKT9PmjQJH5+ygDMJCcF4enpKUCvyDFmxFXnGuHHjWLNmDffv33/dhyKEEEKId1BCQgJXrlzhwoULHD9+nMDAwGy31Wg0eHl5Ua5cOcqXL4+3tzcmJiYkJSXRvHlzUlNTlUZPf/zxh5IGrNVqSUxMJD4+noSEBOUrPj6eDRs2EBcXx8iRI/Hw8Hglj7F79+6sXLkSR0dXzp07LQ07RZ4hga3IMwYPHsyuXbsyDT0XQgghhPgvJSYm0r59e2JjY4G0DsguLi48ePAgy+31ej03btzk0aMoBg3qS3R0NL6+vsr1e/fufWNWRvV6PXfu3MHR0TFXY5eEeFNIKrLIM+Li4iQVWQghhBCvlU6no1WrVty9exdnZ2dUKhWTJk2iatWqREVFcfHiRS5cuMDFixeVLLOEhATu3bsLODFlyhTmzZunBLYajeaNCWohbeZw+mxeIfISCWxFniGBrRBCCCFet5kzZ/LHH38AkJyczJgxY5QZs7a2ttStW5e6desCaSN3Lly4wOnTp7lw4Qrx8SGUKFGSChUqsGHDBsLCwjKN7xFCPB8JbEWeIYGtEEIIIV63hw8folZbodPpsLa2plOnTtlua29vzwcffMAHH3zA119/zenTp6lRowbx8fGcOXMerTaJgID7xMbGStqvEC9IAluRZ8TFxWFtbf26D0MIIYQQ77CRI0dy585dVCoVy5YtyfV+9vb2fPzxx0BaOrNOlwI4otOFkZiYKIGtEC9IAluRZ8TFxUm6jhBCCCFeK1dXV37//bcXug07OzvWrv2Bn376mc8/b4+9vf1LOjoh3l0S2Io8Q1KRhRBCCPG26NixIx07dnzdhyHEW0P9ug9AiNyKi4uTNB0hhBBCCCFEJhLYijwjNjZWVmyFEEIIIYQQmUhgK/IMSUUWQgghhBBCZEUCW5En6PV6CWyFEEIIIYQQWZLAVuQJycnJaLVaCWyFEEIIIYQQmUhgK/KEuLg4AAlshRBCCCGEEJlIYCvyBAlshRBCCCGEENmRwFbkCRLYCiGEEEIIIbIjga3IE9IDW5ljK4QQQgghhHiSBLYiT5AVWyGEEEIIIUR2JLAVeUJsbCwgga0QQgghhBAiMwlsRZ4gK7ZCCCGEEEKI7EhgK/IECWyFEEIIIYQQ2ZHAVuQJcXFxGBsbY2xs/LoPRQghhBBCCPGGkcBW5AlxcXGyWiuEEEIIIYTIkgS2Ik+QwFYIIYQQQgiRHQlsRZ4QHZeAZQFnElO0r/tQhBBCCCGEEG8YlV6v17/ugxAiO2cCIlh59DZ/XgkGlQq1Chr6ONG9lhuVitq97sMTQgghhBBCvAEksBVvrB9P3mXcjiuo1Sq0uv+/TDVqFTqdnsnNS9GhapHXeIRCCCGEEEKIN4EEtuKNdCYggjbLT5DTi1MFbO5RXVZuhRBCCCGEeMdJja14I608ehu1WpXjNmq1ipVH7/xHRySEEEIIIYR4U0lgK944iSla9vmGGKQfZ0Wr07PXN1gaSgkhhBBCCPGOk8BWvHFiElN5Skyr0OnTthdCCCGEEEK8uySwFW8cazMjnpKFrFCr0rYXQgghhBBCvLsksBVvHDNjDQ19nNA8JbrVqFU08nHGzFjzHx2ZEEIIIYQQ4k0kga14I3Wr5YbuKfnIOp2ebrWK/UdHJIQQQgghhHhTSWAr3kiVi9oxuXkpVJBp5VajVqECJjcvJaN+hBBCCCGEEDLHVrzZzgZEsPLoHfb6BqPTp9XUNvJxplutYhLUCiGEEEIIIQAJbEUekZiiJSYxFWszI6mpFUIIIYQQQhiQwFYIIYQQQgghRJ4mNbZCCCGEEEIIIfI0CWyFEEIIIYQQQuRpEtgKIYQQQgghhMjTJLAVQgghhBBCCJGnSWArhBBCCCGEECJPk8BWCCGEEEIIIUSeJoGtEEIIIYQQQog8TQJbIYQQQgghhBB5mgS2QgghhBBCCCHyNAlshRBCCCGEEELkaRLYCiGEEEIIIYTI0ySwFUIIIYQQQgiRp0lgK4QQQgghhBAiT5PAVgghhBBCCCFEniaBrRBCCCGEEEKIPE0CWyGEEEIIIYQQeZoEtkIIIYQQQggh8jQJbIUQQgghhBBC5GkS2AohhBBCCCGEyNMksBVCCCGEEEIIkadJYCuEEEIIIYQQIk+TwFYIIYQQQgghRJ4mga0QQgghhBBCiDxNAlshhBBCCCGEEHmaBLZCCCGEEEIIIfI0CWyFEEIIIYQQQuRpEtgKIYQQQgghhMjTJLAVQgghhBBCCJGnSWArhBBCCCGEECJPk8BWCCGEEEIIIUSeJoGtEEIIIYQQQog8TQJbIYQQQgghhBB5mgS2QgghhBBCCCHyNAlshRBCCCGEEELkaRLYCiGEEEIIIYTI0ySwFUIIIYQQQgiRp0lgK4QQQgghhBAiT5PAVgghhBBCCCFEniaBrRBCCCGEEEKIPE0CWyGEEEIIIYQQeZoEtkIIIYQQQggh8jQJbIUQQgghhBBC5Gn/AypZTfm/F/nXAAAAAElFTkSuQmCC", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# Plot the same network with NetworkX and igraph\n", + "fig, (ax0, ax1) = plt.subplots(nrows=1, ncols=2, figsize=(12, 6))\n", + "\n", + "# NetworkX draw\n", + "ax0.set_title(\"Plot with NetworkX draw\")\n", + "nx.draw_kamada_kawai(graph, node_size=50, ax=ax0)\n", + "\n", + "# igraph draw\n", + "ax1.set_title(\"Plot with igraph plot\")\n", + "layout = h.layout_kamada_kawai()\n", + "ig.plot(h, layout=layout, target=ax1)\n", + "plt.axis(\"off\")\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 329, + "id": "1bdfde0f", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'p_545': array([ 0.24644178, -0.65448475]), 'c_53': array([ 0.25172606, -0.67279845]), 'p_758': array([-0.86434877, 0.38610327]), 'c_77': array([-0.84978533, 0.38038379]), 'p_1313': array([ 0.72130996, -0.36710122]), 'c_253': array([ 0.70852757, -0.36623573]), 'p_1706': array([-0.77111447, 0.09753039]), 'c_301': array([-0.80850142, 0.10561968]), 'p_1891': array([ 0.66479355, -0.23978674]), 'c_388': array([ 0.69705617, -0.24828967]), 'p_1892': array([ 0.71221769, -0.2456149 ]), 'p_1899': array([-0.31991175, -0.77520001]), 'c_392': array([-0.33197385, -0.80412871]), 'p_2332': array([0.53234857, 0.6426487 ]), 'c_523': array([0.50834757, 0.61692464]), 'p_2331': array([0.47786832, 0.58471727]), 'p_2457': array([ 0.94745272, -0.23671991]), 'c_574': array([ 0.90968883, -0.22755969]), 'p_2458': array([ 0.91960353, -0.21678263]), 'p_2499': array([-0.52924353, -0.58799565]), 'c_598': array([-0.52024382, -0.60042775]), 'p_2500': array([-0.50468677, -0.60200351]), 'p_3171': array([ 0.80948305, -0.45813856]), 'c_770': array([ 0.83809888, -0.473836 ]), 'p_3382': array([ 0.09305175, -0.7030105 ]), 'c_827': array([ 0.06944383, -0.68118888]), 'p_3486': array([ 0.08689255, -0.70856529]), 'p_3519': array([ 0.05336164, -0.69970405]), 'p_3530': array([ 0.07021078, -0.69872826]), 'p_3531': array([ 0.04806485, -0.69132596]), 'p_3541': array([ 0.06181376, -0.70365894]), 'p_3591': array([ 0.0487658 , -0.67287564]), 'c_895': array([ 0.09703735, -0.73081237]), 'c_992': array([ 0.09164725, -0.68382484]), 'p_4319': array([-0.08639826, -0.76090902]), 'c_1132': array([-0.08912436, -0.7847898 ]), 'p_4470': array([ 0.63052398, -0.58770472]), 'c_1201': array([ 0.63851154, -0.57647705]), 'p_4905': array([-0.74354988, -0.44980609]), 'c_1379': array([-0.70862317, -0.43128106]), 'p_4906': array([-0.71092927, -0.44557813]), 'p_4919': array([ 0.25474796, -0.77297956]), 'c_1390': array([ 0.24583475, -0.74322587]), 'p_5038': array([0.80356365, 0.46667901]), 'c_1444': array([0.82427281, 0.47730726]), 'p_5084': array([ 0.65032899, -0.19516253]), 'c_1466': array([ 0.6658777 , -0.19508287]), 'p_5203': array([ 0.30851808, -0.73678738]), 'c_1552': array([ 0.2976363 , -0.70684659]), 'p_5204': array([ 0.29273129, -0.69022387]), 'p_6056': array([-0.15112749, -0.72986048]), 'c_1913': array([-0.15701197, -0.76505375]), 'c_2014': array([ 0.05940468, -0.67809451]), 'p_6596': array([-0.12842715, 0.24199003]), 'c_2081': array([-0.17818895, 0.19445482]), 'p_6597': array([-0.12432387, 0.18462083]), 'p_6598': array([-0.14883342, 0.18794686]), 'p_6599': array([-0.25456545, 0.17327818]), 'p_6600': array([-0.1351167 , 0.19174717]), 'p_6601': array([-0.2473923 , 0.23374836]), 'p_6602': array([-0.13031662, 0.20008582]), 'p_6603': array([-0.19800992, 0.14627106]), 'p_6604': array([-0.17042027, 0.15519452]), 'p_6605': array([-0.13520396, 0.18233639]), 'p_6606': array([-0.11760077, 0.24529201]), 'p_6607': array([-0.13204214, 0.25014409]), 'p_6608': array([-0.16370012, 0.27306429]), 'p_6609': array([-0.21967563, 0.16840383]), 'p_6610': array([-0.16272035, 0.22277267]), 'p_6611': array([-0.21429572, 0.24298763]), 'p_6612': array([-0.22169462, 0.23977238]), 'p_6613': array([-0.22970694, 0.19515976]), 'p_6614': array([-0.17426264, 0.13115101]), 'p_6615': array([-0.14859582, 0.2380738 ]), 'p_6616': array([-0.22891568, 0.23281188]), 'p_6617': array([-0.17965582, 0.15360539]), 'p_6618': array([-0.17521106, 0.14125527]), 'p_6619': array([-0.23457657, 0.18362592]), 'p_6620': array([-0.15153298, 0.12220252]), 'p_6621': array([-0.12258792, 0.17609264]), 'p_6622': array([-0.2538287 , 0.22533128]), 'p_6623': array([-0.1362163 , 0.13048628]), 'p_6624': array([-0.20511791, 0.12647545]), 'p_6625': array([-0.14975265, 0.14155175]), 'p_6626': array([-0.20567779, 0.14036697]), 'p_6627': array([-0.21019366, 0.16378182]), 'p_6628': array([-0.19239604, 0.13878225]), 'p_6629': array([-0.10195925, 0.19186954]), 'p_6630': array([-0.20424382, 0.17229143]), 'p_6631': array([-0.23856875, 0.2116894 ]), 'p_6632': array([-0.13157149, 0.16212685]), 'p_6633': array([-0.16625139, 0.13645563]), 'p_6634': array([-0.22944991, 0.21631911]), 'p_6635': array([-0.13887925, 0.20908053]), 'p_6636': array([-0.12491645, 0.23013027]), 'p_6637': array([-0.14942786, 0.22522005]), 'p_6638': array([-0.16960353, 0.26532963]), 'p_6639': array([-0.1292955 , 0.17070101]), 'p_6640': array([-0.19565628, 0.21486221]), 'p_6641': array([-0.1668667 , 0.21226002]), 'p_6642': array([-0.20752208, 0.21608093]), 'p_6643': array([-0.20167209, 0.22727464]), 'p_6644': array([-0.10813636, 0.23011649]), 'p_6645': array([-0.23509023, 0.13984503]), 'p_6646': array([-0.21742612, 0.21304066]), 'p_6647': array([-0.11173504, 0.18439779]), 'p_6648': array([-0.23778491, 0.19474868]), 'p_6649': array([-0.14370172, 0.16423142]), 'p_6650': array([-0.15206531, 0.1766692 ]), 'p_6651': array([-0.16517054, 0.14637728]), 'p_6652': array([-0.19901374, 0.27189639]), 'p_6653': array([-0.13157251, 0.22232468]), 'p_6654': array([-0.25988406, 0.19608939]), 'p_6655': array([-0.24230316, 0.24709786]), 'p_6656': array([-0.22828458, 0.13588184]), 'p_6657': array([-0.21864273, 0.23199289]), 'p_6658': array([-0.23294638, 0.17365998]), 'p_6659': array([-0.1401215 , 0.25414634]), 'p_6660': array([-0.15808354, 0.15369995]), 'p_6661': array([-0.15187006, 0.25857249]), 'p_6662': array([-0.24778764, 0.17226657]), 'p_6663': array([-0.15779106, 0.13982677]), 'p_6664': array([-0.14241649, 0.14507924]), 'p_6665': array([-0.2363473 , 0.22147045]), 'p_6666': array([-0.20118803, 0.13311052]), 'p_6667': array([-0.24040669, 0.14570066]), 'p_6668': array([-0.17210963, 0.27333388]), 'p_6669': array([-0.15866807, 0.24140693]), 'p_6670': array([-0.24897955, 0.18886027]), 'p_6671': array([-0.20758586, 0.25539929]), 'p_6672': array([-0.12388353, 0.25104174]), 'p_6673': array([-0.11313607, 0.23700944]), 'p_6674': array([-0.20755489, 0.26844868]), 'p_6675': array([-0.20505473, 0.24634215]), 'p_6676': array([-0.22524402, 0.22414428]), 'p_6677': array([-0.14105357, 0.23455018]), 'p_6678': array([-0.15991965, 0.11843365]), 'p_6679': array([-0.24855354, 0.15706103]), 'p_6680': array([-0.12667631, 0.13987474]), 'p_6681': array([-0.16532119, 0.16524081]), 'p_6682': array([-0.22996457, 0.2410384 ]), 'p_6683': array([-0.14609641, 0.24859282]), 'p_6684': array([-0.18484686, 0.26385495]), 'p_6685': array([-0.1561179 , 0.26886928]), 'p_6686': array([-0.17658935, 0.24156609]), 'p_6687': array([-0.16765237, 0.12660134]), 'p_6688': array([-0.15946481, 0.12810296]), 'p_6689': array([-0.14041406, 0.22271019]), 'p_6690': array([-0.12210908, 0.19675018]), 'p_6691': array([-0.10441064, 0.17794789]), 'p_6692': array([-0.24303626, 0.16304924]), 'p_6693': array([-0.21917379, 0.13928901]), 'p_6694': array([-0.23526756, 0.15908794]), 'p_6695': array([-0.11459806, 0.16809475]), 'p_6696': array([-0.17676596, 0.11583719]), 'p_6697': array([-0.10418084, 0.18558714]), 'p_6698': array([-0.24649002, 0.19917417]), 'p_6699': array([-0.10202882, 0.2067219 ]), 'p_6700': array([-0.18514012, 0.23036844]), 'p_6701': array([-0.20179258, 0.155801 ]), 'p_6702': array([-0.25322944, 0.19865458]), 'p_6703': array([-0.19924608, 0.19591448]), 'p_6704': array([-0.23431987, 0.2544978 ]), 'p_6705': array([-0.21284002, 0.26415047]), 'p_6706': array([-0.17972513, 0.16820087]), 'p_6707': array([-0.13782707, 0.24365491]), 'p_6708': array([-0.11883512, 0.15133193]), 'p_6709': array([-0.12234979, 0.16325223]), 'p_6710': array([-0.23776764, 0.24264719]), 'p_6711': array([-0.16792177, 0.24483795]), 'p_6712': array([-0.24631122, 0.17982998]), 'p_6713': array([-0.19377474, 0.26427343]), 'p_6714': array([-0.19066055, 0.27240464]), 'p_6715': array([-0.18040311, 0.26965806]), 'p_6716': array([-0.14369951, 0.13473763]), 'p_6717': array([-0.18751757, 0.25652349]), 'p_6718': array([-0.10209102, 0.19918965]), 'p_6719': array([-0.25594684, 0.21656445]), 'p_6720': array([-0.22762573, 0.1448288 ]), 'p_6721': array([-0.21662505, 0.12869844]), 'p_6722': array([-0.11574058, 0.15680878]), 'p_6723': array([-0.20824987, 0.23588854]), 'p_6724': array([-0.24341822, 0.21830685]), 'p_6725': array([-0.11275819, 0.2050482 ]), 'p_6726': array([-0.2420225 , 0.18714613]), 'p_6727': array([-0.11632935, 0.19074084]), 'p_6728': array([-0.11565285, 0.21805874]), 'p_6729': array([-0.11045314, 0.16120917]), 'p_6730': array([-0.10998841, 0.21233472]), 'p_6731': array([-0.11163754, 0.17604707]), 'p_6732': array([-0.19548512, 0.12161873]), 'p_6733': array([-0.15208441, 0.13164358]), 'p_6734': array([-0.1757223 , 0.26093474]), 'p_6735': array([-0.25624076, 0.18837978]), 'p_6736': array([-0.24925406, 0.21384008]), 'p_6737': array([-0.25888321, 0.20759226]), 'p_6738': array([-0.2252219 , 0.25586429]), 'p_6739': array([-0.22396187, 0.13016115]), 'p_6740': array([-0.24115707, 0.23599549]), 'p_6741': array([-0.12786593, 0.1533951 ]), 'p_6742': array([-0.22906739, 0.24938373]), 'p_6743': array([-0.14927922, 0.21325575]), 'p_6744': array([-0.12264103, 0.14547579]), 'p_6745': array([-0.19392389, 0.16462584]), 'p_6746': array([-0.18331757, 0.13352838]), 'p_6747': array([-0.17868589, 0.1236906 ]), 'p_6748': array([-0.19890364, 0.24313512]), 'p_6749': array([-0.21347739, 0.22465195]), 'p_6750': array([-0.23569229, 0.22898677]), 'p_6751': array([-0.15804261, 0.20085183]), 'p_6752': array([-0.14508919, 0.26194537]), 'p_6753': array([-0.11032046, 0.19736229]), 'p_6754': array([-0.18823828, 0.11678686]), 'p_6755': array([-0.22647515, 0.17985256]), 'p_6756': array([-0.17191353, 0.23139001]), 'p_6757': array([-0.21580768, 0.15636566]), 'p_6758': array([-0.22741787, 0.20647027]), 'p_6759': array([-0.14285326, 0.12454015]), 'p_6760': array([-0.22529614, 0.15619716]), 'p_6761': array([-0.2169936 , 0.25813934]), 'p_6762': array([-0.24693826, 0.22686045]), 'p_6763': array([-0.12115847, 0.20743574]), 'p_6764': array([-0.19217078, 0.24979322]), 'p_6765': array([-0.13430455, 0.14631553]), 'p_6766': array([-0.22076607, 0.2013423 ]), 'p_6767': array([-0.14464821, 0.19950357]), 'p_6768': array([-0.2389439, 0.2040235]), 'p_6769': array([-0.20941855, 0.14834259]), 'p_6770': array([-0.11716937, 0.22850007]), 'p_6771': array([-0.13753119, 0.15515985]), 'p_6772': array([-0.17928641, 0.25318065]), 'p_6773': array([-0.21764332, 0.17920215]), 'p_6774': array([-0.20751698, 0.18477553]), 'p_6775': array([-0.16021457, 0.25582626]), 'p_6776': array([-0.13320334, 0.13696483]), 'p_6777': array([-0.22248514, 0.26344737]), 'p_6778': array([-0.12996814, 0.2115383 ]), 'p_6779': array([-0.20943061, 0.20249173]), 'p_6780': array([-0.23317564, 0.15085572]), 'p_6781': array([-0.2120806 , 0.13523912]), 'p_6782': array([-0.2519494 , 0.16469498]), 'p_6783': array([-0.16209389, 0.26401934]), 'p_6784': array([-0.16615729, 0.17978495]), 'p_6785': array([-0.20233558, 0.11928979]), 'p_6786': array([-0.23951869, 0.17026176]), 'p_6787': array([-0.21228237, 0.12312636]), 'p_6788': array([-0.14793549, 0.15286449]), 'p_6789': array([-0.15440288, 0.24919274]), 'p_6790': array([-0.10328324, 0.216664 ]), 'p_6791': array([-0.1490774 , 0.26873732]), 'p_6792': array([-0.19848669, 0.25491735]), 'p_6793': array([-0.18528667, 0.24357784]), 'p_6794': array([-0.1233143 , 0.21889131]), 'p_6795': array([-0.1916562 , 0.17842074]), 'p_6796': array([-0.10681681, 0.16924782]), 'p_6797': array([-0.13087884, 0.25789914]), 'p_6798': array([-0.25629815, 0.18090807]), 'p_6799': array([-0.19444174, 0.23514654]), 'p_6800': array([-0.13788825, 0.26285201]), 'p_6801': array([-0.13262261, 0.23319471]), 'p_6802': array([-0.16893443, 0.11869389]), 'p_6803': array([-0.21934512, 0.14775065]), 'p_6804': array([-0.21659495, 0.24966925]), 'p_6805': array([-0.14022757, 0.17398718]), 'p_6806': array([-0.12144209, 0.23855937]), 'p_6807': array([-0.18210372, 0.27585837]), 'p_6808': array([-0.2431059 , 0.15258016]), 'p_6809': array([-0.18646806, 0.12422142]), 'p_6810': array([-0.1089507 , 0.22295907]), 'p_6811': array([-0.16849478, 0.25375554]), 'p_6812': array([-0.24979886, 0.20669845]), 'p_6813': array([-0.15402991, 0.16457561]), 'p_6814': array([-0.18484822, 0.14419335]), 'p_6815': array([-0.19309543, 0.1300118 ]), 'p_6816': array([-0.18273786, 0.21940413]), 'p_6817': array([-0.15894364, 0.23232186]), 'p_6818': array([-0.18989593, 0.15420885]), 'p_6819': array([-0.22846538, 0.1651157 ]), 'p_6820': array([-0.20194197, 0.26388997]), 'p_6821': array([-0.22008191, 0.19020566]), 'p_7347': array([0.0187167, 0.9491452]), 'c_2316': array([0.00487825, 0.94117004]), 'p_7348': array([-0.01049592, 0.93801039]), 'p_7647': array([-0.1867445 , -0.89594334]), 'c_2444': array([-0.18056743, -0.85869205]), 'p_7648': array([-0.17270601, -0.8121984 ]), 'p_7679': array([ 0.87829185, -0.02461659]), 'c_2470': array([ 0.9154073 , -0.02606468]), 'p_7864': array([-0.84326005, -0.11644166]), 'c_2538': array([-0.81639403, -0.11515482]), 'c_307': array([-0.60161418, -0.19888867]), 'c_258': array([-0.59718519, -0.18086213]), 'c_353': array([-0.62983483, -0.19161755]), 'c_370': array([-0.6077019 , -0.16318205]), 'c_371': array([-0.62143594, -0.15050966]), 'c_435': array([0.2685453 , 0.26480132]), 'c_403': array([0.25202185, 0.27339816]), 'c_455': array([0.23288235, 0.23653093]), 'c_400': array([ 0.08457986, -0.87679517]), 'c_482': array([ 0.09816456, -0.87250507]), 'c_633': array([ 0.10423562, -0.91132504]), 'c_572': array([-0.06062897, -0.85202748]), 'c_498': array([-0.04480396, -0.8545593 ]), 'c_484': array([-0.0388539, -0.8301717]), 'c_494': array([-0.91647768, 0.05316154]), 'c_536': array([-0.87945181, 0.05004502]), 'c_568': array([-0.83246535, 0.04611692]), 'c_493': array([-0.58422053, -0.45578676]), 'c_539': array([-0.62279147, -0.4823004 ]), 'c_406': array([-0.77135372, -0.20488353]), 'c_567': array([-0.78645658, -0.21507645]), 'c_459': array([-0.80895221, -0.2236657 ]), 'c_582': array([-0.65332001, -0.50386965]), 'c_587': array([ 0.11125196, -0.14650427]), 'c_588': array([ 0.11200653, -0.11784348]), 'c_401': array([ 0.12641259, -0.07630952]), 'c_487': array([-0.03663073, -0.74072301]), 'c_610': array([-0.0370797, -0.7901153]), 'c_704': array([-0.48789948, 0.82034075]), 'c_667': array([-0.46731165, 0.78897727]), 'c_666': array([-0.45075297, 0.7637009 ]), 'c_709': array([-0.24870175, -0.61523956]), 'c_732': array([-0.26144147, -0.65256435]), 'c_765': array([-0.27189347, -0.68380749]), 'c_724': array([0.77007419, 0.3289654 ]), 'c_742': array([0.76302224, 0.31709579]), 'c_746': array([0.73338544, 0.30332351]), 'c_841': array([-0.65011394, -0.35134041]), 'c_752': array([-0.63539988, -0.3452763 ]), 'c_2293': array([-0.6185295 , -0.34592709]), 'c_925': array([ 0.34073669, -0.68207389]), 'c_839': array([ 0.36099648, -0.72654104]), 'c_852': array([ 0.37759078, -0.76291609]), 'c_954': array([ 0.42127791, -0.43818191]), 'c_843': array([ 0.40610546, -0.43503281]), 'c_900': array([ 0.42312554, -0.43073735]), 'c_859': array([ 0.43375549, -0.45714256]), 'c_868': array([-0.64439231, -0.33390996]), 'c_850': array([-0.67998624, -0.34121192]), 'c_871': array([ 0.40592858, -0.44667929]), 'c_879': array([ 0.42425507, -0.45593065]), 'c_908': array([ 0.4413617 , -0.44108683]), 'c_948': array([-0.63499099, -0.38330421]), 'c_930': array([-0.60761571, -0.37013951]), 'c_846': array([-0.61699408, -0.39389578]), 'c_832': array([ 0.1951246 , -0.70777231]), 'c_939': array([ 0.20141605, -0.74283069]), 'c_845': array([ 0.20271762, -0.76221985]), 'c_867': array([-0.48490283, -0.56310135]), 'c_949': array([-0.46897787, -0.56176335]), 'c_981': array([-0.45786396, -0.57238752]), 'c_985': array([ 0.47405925, -0.4034588 ]), 'c_955': array([ 0.44791347, -0.40666258]), 'c_896': array([-0.58570272, -0.55563474]), 'c_967': array([-0.56324577, -0.54435658]), 'c_840': array([-0.58309317, -0.56919509]), 'c_971': array([ 0.41446501, -0.4557825 ]), 'c_906': array([-0.33596739, -0.66199452]), 'c_978': array([-0.34883481, -0.68937767]), 'c_811': array([-0.36012399, -0.7116527 ]), 'c_983': array([ 0.42734185, -0.41973355]), 'c_984': array([ 0.44089565, -0.45042321]), 'c_634': array([0.27198035, 0.13743643]), 'c_991': array([0.24077882, 0.11851452]), 'c_600': array([0.19975001, 0.09673335]), 'c_996': array([ 0.44176182, -0.43144277]), 'c_1191': array([-0.12896086, -0.691787 ]), 'c_1004': array([-0.12559101, -0.66040444]), 'c_1112': array([-0.12116097, -0.62029362]), 'c_1009': array([-0.65404326, -0.3750779 ]), 'c_1220': array([ 0.35391927, -0.03331 ]), 'c_1011': array([ 0.34648669, -0.05161452]), 'c_1048': array([ 0.35391927, -0.03331 ]), 'c_1012': array([ 0.36530927, -0.06959502]), 'c_1013': array([ 0.39601693, -0.03558511]), 'c_1014': array([ 0.3708069, -0.0601717]), 'c_1015': array([ 0.3737362 , -0.02419142]), 'c_1016': array([ 0.39107332, -0.05171004]), 'c_1017': array([ 0.32653502, -0.05295024]), 'c_1018': array([ 0.32571027, -0.03589089]), 'c_1027': array([ 0.38843182, -0.01148276]), 'c_1030': array([ 0.37907881, -0.04634647]), 'c_1031': array([ 0.38849908, -0.03054944]), 'c_1045': array([ 0.35184649, -0.05937458]), 'c_1046': array([ 0.33656913, -0.00437751]), 'c_1047': array([ 0.3393662 , -0.06012919]), 'c_1062': array([0.3505269 , 0.00327822]), 'c_1064': array([ 0.35440657, -0.00647048]), 'c_1065': array([ 0.34969276, -0.06875727]), 'c_1066': array([ 0.3343696 , -0.05320352]), 'c_1067': array([ 0.35019276, -0.01456418]), 'c_1079': array([ 0.39093876, -0.01930681]), 'c_1080': array([ 0.37617588, -0.03792513]), 'c_1081': array([ 0.34291279, -0.02273444]), 'c_1091': array([0.35914123, 0.00277732]), 'c_1092': array([ 0.34217981, -0.06806362]), 'c_1229': array([-0.21691559, 1. ]), 'c_1103': array([-0.20748159, 0.96756911]), 'c_1899': array([-0.19597781, 0.97697216]), 'c_1104': array([0.36800832, 0.00155284]), 'c_1105': array([ 0.33684039, -0.04460679]), 'c_1106': array([ 0.37289 , -0.00543005]), 'c_1122': array([ 0.36873832, -0.01511573]), 'c_1123': array([ 0.33248681, -0.06274033]), 'c_1124': array([ 0.39394245, -0.04373033]), 'c_1147': array([ 0.36150783, -0.06019835]), 'c_1148': array([ 0.37444434, -0.05260283]), 'c_1157': array([ 0.34601659, -0.00228112]), 'c_1159': array([ 0.34076416, -0.0102553 ]), 'c_1172': array([ 0.38259137, -0.0203386 ]), 'c_1173': array([ 0.38555133, -0.05691456]), 'c_1175': array([ 0.38743988, -0.04244421]), 'c_1176': array([ 0.39524671, -0.02625065]), 'c_1197': array([ 0.37926161, -0.06170921]), 'c_1198': array([ 0.38037443, -0.01191757]), 'c_1200': array([ 0.38023379, -0.00347306]), 'c_1094': array([-0.58777159, -0.51149172]), 'c_1206': array([-0.56415993, -0.49428269]), 'c_1162': array([-0.53672165, -0.47286844]), 'c_1218': array([ 0.37313074, -0.06775571]), 'c_1219': array([ 0.36237958, -0.00682806]), 'c_1231': array([ 0.36544847, -0.04892315]), 'c_1233': array([ 0.35712701, -0.07000413]), 'c_1238': array([ 0.33461368, -0.01572333]), 'c_1240': array([ 0.33669409, -0.03427922]), 'c_1248': array([ 0.32586235, -0.04408909]), 'c_1249': array([ 0.38177201, -0.03127454]), 'c_1250': array([ 0.32757518, -0.01933708]), 'c_1251': array([ 0.32758036, -0.02771006]), 'c_2379': array([ 0.32408422, -0.58917701]), 'c_1270': array([ 0.34906629, -0.62705892]), 'c_2327': array([ 0.37475809, -0.66316223]), 'c_2944': array([0.04551697, 0.68653387]), 'c_1293': array([0.05085019, 0.67517036]), 'c_1235': array([0.07081959, 0.65149552]), 'c_1264': array([0.12935558, 0.64414626]), 'c_1383': array([0.10137855, 0.64132315]), 'c_1386': array([0.09851787, 0.64856815]), 'c_1355': array([ 0.82241559, -0.31753954]), 'c_1420': array([ 0.8195464 , -0.30419511]), 'c_1430': array([0.06742319, 0.68668365]), 'c_1496': array([0.10191645, 0.65506673]), 'c_1903': array([-0.35814053, -0.51938403]), 'c_1512': array([-0.33440235, -0.48814237]), 'c_1869': array([0.64408255, 0.59832639]), 'c_1537': array([0.63328505, 0.57083231]), 'c_1603': array([0.64255816, 0.54321665]), 'c_1981': array([0.26631626, 0.72518736]), 'c_1547': array([0.27014524, 0.75248879]), 'c_1679': array([0.25998336, 0.72586066]), 'c_1579': array([-0.37284708, -0.54808378]), 'c_1583': array([0.26035067, 0.74551511]), 'c_1744': array([0.08294477, 0.90066779]), 'c_1597': array([0.09022373, 0.91776788]), 'c_1743': array([0.09686463, 0.93557763]), 'c_1604': array([0.66678464, 0.54642731]), 'c_1811': array([0.67305291, 0.56152081]), 'c_1683': array([ 0.41453877, -0.71948892]), 'c_1624': array([ 0.3970162 , -0.69383496]), 'c_30': array([0.35588172, 0.72301549]), 'c_1668': array([0.37727302, 0.70781296]), 'c_2034': array([0.40047866, 0.71676832]), 'c_1731': array([0.25845909, 0.702461 ]), 'c_1657': array([ 0.48276979, -0.61820537]), 'c_1742': array([ 0.50122279, -0.64388323]), 'c_1557': array([ 0.50431681, -0.65713924]), 'c_2597': array([-0.74569619, 0.46925619]), 'c_1754': array([-0.74336129, 0.4860945 ]), 'c_1875': array([-0.71908712, 0.47396153]), 'c_1641': array([-0.77815491, 0.50761724]), 'c_92': array([-0.7632618 , 0.50321198]), 'c_1952': array([0.71659744, 0.59213579]), 'c_1778': array([0.684645 , 0.56989288]), 'c_1813': array([-0.38022086, -0.53653485]), 'c_1847': array([0.34200403, 0.75114036]), 'c_1784': array([0.34770387, 0.7827059 ]), 'c_1781': array([0.85554755, 0.24216369]), 'c_1873': array([0.83161747, 0.2341381 ]), 'c_1844': array([0.80422688, 0.22492795]), 'c_1919': array([0.27870911, 0.74648231]), 'c_1975': array([-0.39943853, -0.75738204]), 'c_1928': array([-0.38414264, -0.73542601]), 'c_1691': array([-0.3689253 , -0.73868114]), 'c_1779': array([0.66710126, 0.5926289 ]), 'c_1930': array([0.65188688, 0.56957197]), 'c_1934': array([0.36657166, 0.77199107]), 'c_1935': array([0.35072345, 0.7438283 ]), 'c_1572': array([0.36544725, 0.74551475]), 'c_1695': array([0.6766417 , 0.51673967]), 'c_1976': array([0.65008199, 0.51734024]), 'c_2021': array([0.15432699, 0.66470683]), 'c_2136': array([0.15983179, 0.67244393]), 'c_2020': array([-0.15838665, -0.46575794]), 'c_2022': array([-0.17865103, -0.4667705 ]), 'c_2041': array([-0.18394314, -0.44711056]), 'c_2082': array([-0.20219143, -0.47203553]), 'c_2193': array([-0.19360952, -0.48136631]), 'c_2042': array([-0.16000919, -0.45434549]), 'c_2044': array([0.13912715, 0.674429 ]), 'c_2060': array([ 0.07985522, -0.66715688]), 'c_2080': array([ 0.09397388, -0.65635413]), 'c_2084': array([0.14708209, 0.6784175 ]), 'c_2003': array([-0.23304221, -0.49866876]), 'c_2093': array([-0.21503837, -0.47146416]), 'c_3065': array([-0.22043782, -0.42569795]), 'c_2094': array([-0.20643224, -0.43453786]), 'c_1492': array([-0.66095924, -0.65180105]), 'c_2095': array([-0.63158536, -0.62435263]), 'c_41': array([-0.62721425, -0.63844866]), 'c_2096': array([0.14518449, 0.66501218]), 'c_2126': array([-0.20002939, -0.42604789]), 'c_2144': array([0.15992747, 0.65691417]), 'c_2159': array([-0.17499143, -0.47574165]), 'c_2171': array([-0.16567694, -0.47453386]), 'c_2195': array([-0.17007072, -0.45815167]), 'c_2254': array([ 0.74687177, -0.1000371 ]), 'c_2222': array([ 0.72305346, -0.1079925 ]), 'c_2269': array([ 0.69888258, -0.10348944]), 'c_2256': array([ 0.76116455, -0.13366483]), 'c_2255': array([ 0.74202967, -0.12344858]), 'c_2382': array([0.72117853, 0.10482281]), 'c_2265': array([0.76940089, 0.11499198]), 'c_2405': array([0.81465662, 0.12470272]), 'c_2100': array([0.54295903, 0.71284288]), 'c_2266': array([0.56642848, 0.74189109]), 'c_2407': array([0.59013325, 0.77109402]), 'c_2402': array([ 0.45295566, -0.57361037]), 'c_2309': array([ 0.43243206, -0.54374945]), 'c_444': array([ 0.4353798 , -0.51874912]), 'c_2179': array([ 0.43667558, -0.56893039]), 'c_2264': array([0.89218992, 0.14274904]), 'c_2312': array([0.85584539, 0.13405138]), 'c_2340': array([-0.75033498, 0.07106128]), 'c_2342': array([-0.73049641, 0.05805574]), 'c_2454': array([-0.72134566, 0.03515799]), 'c_1954': array([0.94587177, 0.05698339]), 'c_2376': array([0.92445844, 0.05865578]), 'c_1715': array([0.89456576, 0.05045198]), 'c_2400': array([-0.73447233, 0.01715756]), 'c_2363': array([-0.74961078, 0.01177676]), 'c_2411': array([0.06226656, 0.67786711]), 'c_2413': array([-0.64602077, -0.36087975]), 'c_2453': array([-0.74226147, 0.02735948]), 'c_2230': array([ 0.46513617, -0.48884466]), 'c_2462': array([ 0.44622841, -0.49691796]), 'c_3112': array([ 0.56780457, -0.43303657]), 'c_2467': array([ 0.59169793, -0.43890402]), 'c_3103': array([ 0.57128173, -0.42936608]), 'c_2589': array([-0.83085811, -0.27528247]), 'c_2476': array([-0.82105857, -0.28595155]), 'c_2552': array([-0.84904552, -0.29757366]), 'c_2639': array([-0.19782026, 0.68046707]), 'c_2520': array([-0.21761091, 0.72952795]), 'c_2568': array([-0.23172845, 0.76816529]), 'c_2569': array([-0.18248419, 0.69716626]), 'c_2543': array([-0.18321228, 0.71950722]), 'c_2493': array([-0.17519581, 0.69181293]), 'c_2595': array([-0.21922965, 0.6616621 ]), 'c_2670': array([-0.23321226, 0.64135993]), 'c_2628': array([0.02666868, 0.60197663]), 'c_2627': array([0.05257433, 0.59312236]), 'c_2570': array([0.07427182, 0.59892416]), 'c_2661': array([0.00402204, 0.62043357]), 'c_2544': array([-0.00817698, 0.64694721]), 'c_2689': array([-0.16867252, 0.70991093]), 'c_468': array([ 0.18899803, -0.1321906 ]), 'c_2699': array([ 0.1823006 , -0.09524805]), 'c_636': array([ 0.1769937 , -0.04300173]), 'c_2700': array([0.1877263 , 0.02571064]), 'c_2997': array([-0.22267285, -0.76284808]), 'c_2756': array([-0.21267398, -0.72777969]), 'c_2781': array([-0.20073742, -0.68616247]), 'c_2764': array([0.92990917, 0.0494688 ]), 'c_415': array([ 0.09316627, -0.16593547]), 'c_2818': array([ 0.10267746, -0.12790087]), 'c_2825': array([-0.30016971, -0.87639588]), 'c_2826': array([-0.31483001, -0.89133596]), 'c_2715': array([-0.31140935, -0.86405104]), 'c_2708': array([ 0.82946694, -0.15666144]), 'c_2874': array([ 0.80841416, -0.14609656]), 'c_2767': array([ 0.8291567 , -0.13917448]), 'c_2899': array([0.05785458, 0.68613982]), 'c_2911': array([ 0.12023028, -0.12052241]), 'c_2912': array([-0.81051326, -0.19035843]), 'c_2934': array([-0.8483941 , -0.19763701]), 'c_2998': array([-0.8759222 , -0.20357658]), 'c_2984': array([ 0.15508252, -0.07211198]), 'c_3009': array([ 0.60015333, -0.43873233]), 'c_3017': array([ 0.55748689, -0.44307038]), 'c_3022': array([0.15976001, 0.00952998]), 'c_3024': array([ 0.60282141, -0.47276434]), 'c_3102': array([ 0.63294852, -0.50048006]), 'c_3094': array([ 0.65587032, -0.47359464]), 'c_3025': array([ 0.61972213, -0.45317873]), 'c_3036': array([0.25015551, 0.69293958]), 'c_3106': array([-0.36084765, -0.62757379]), 'c_3040': array([-0.38343123, -0.65249568]), 'c_3031': array([-0.40349528, -0.66470802]), 'c_3041': array([0.25724614, 0.26638138]), 'c_589': array([0.23185666, 0.17498668]), 'c_3044': array([0.2248117 , 0.13483498]), 'c_3047': array([ 0.59034991, -0.41996682]), 'c_3057': array([ 0.59475327, -0.42787325]), 'c_3062': array([ 0.584041 , -0.45447716]), 'c_3073': array([0.21467441, 0.13834926]), 'c_3071': array([0.21625628, 0.12074738]), 'c_3074': array([ 0.56421477, -0.45206767]), 'c_3075': array([ 0.58031744, -0.41514942]), 'c_3098': array([0.21412575, 0.17116056]), 'c_3101': array([ 0.5747453 , -0.45681265]), 'c_3070': array([-0.44217378, -0.68701333]), 'c_3107': array([-0.41822436, -0.65557581]), 'c_3126': array([0.2219677 , 0.14166848]), 'c_3134': array([0.25209227, 0.22716849]), 'c_3136': array([ 0.53513855, -0.40652835]), 'c_3137': array([ 0.59352905, -0.4498398 ]), 'c_3145': array([ 0.58077002, -0.44385195])}\n" + ] + } + ], + "source": [ + "pos = nx.spring_layout(graph)\n", + "# pos = nx.circular_layout(graph)\n", + "# pos = nx.planar_layout(graph)\n", + "# pos = nx.spectral_layout(graph)\n", + "print(pos)" + ] + }, + { + "cell_type": "code", + "execution_count": 177, + "id": "8d01401a", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{}\n" + ] + } + ], + "source": [ + "# Nur wenn Pos vorher gesetzt wurde\n", + "pos2 = nx.get_node_attributes(graph,'pos')\n", + "print(pos2)" + ] + }, + { + "cell_type": "code", + "execution_count": 189, + "id": "d205c9b1", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "617\n", + "[('p_545', 'c_53'), ('p_758', 'c_77'), ('p_1313', 'c_253'), ('p_1706', 'c_301'), ('p_1891', 'c_388'), ('c_388', 'p_1892'), ('p_1899', 'c_392'), ('p_2332', 'c_523'), ('c_523', 'p_2331'), ('p_2457', 'c_574'), ('c_574', 'p_2458'), ('p_2499', 'c_598'), ('c_598', 'p_2500'), ('p_3171', 'c_770'), ('p_3382', 'c_827'), ('p_3382', 'c_895'), ('p_3382', 'c_992'), ('c_827', 'p_3486'), ('c_827', 'p_3519'), ('c_827', 'p_3530'), ('c_827', 'p_3531'), ('c_827', 'p_3541'), ('c_827', 'p_3591'), ('c_827', 'c_992'), ('c_827', 'c_2014'), ('p_3486', 'c_895'), ('p_3486', 'c_992'), ('p_3519', 'c_2014'), ('p_3530', 'c_2014'), ('p_3531', 'c_2014'), ('p_3541', 'c_2014'), ('p_3591', 'c_2014'), ('c_992', 'c_2080'), ('p_4319', 'c_1132'), ('p_4470', 'c_1201'), ('p_4905', 'c_1379'), ('c_1379', 'p_4906'), ('p_4919', 'c_1390'), ('p_5038', 'c_1444'), ('p_5084', 'c_1466'), ('p_5203', 'c_1552'), ('c_1552', 'p_5204'), ('p_6056', 'c_1913'), ('c_2014', 'c_2060'), ('p_6596', 'c_2081'), ('c_2081', 'p_6597'), ('c_2081', 'p_6598'), ('c_2081', 'p_6599'), ('c_2081', 'p_6600'), ('c_2081', 'p_6601'), ('c_2081', 'p_6602'), ('c_2081', 'p_6603'), ('c_2081', 'p_6604'), ('c_2081', 'p_6605'), ('c_2081', 'p_6606'), ('c_2081', 'p_6607'), ('c_2081', 'p_6608'), ('c_2081', 'p_6609'), ('c_2081', 'p_6610'), ('c_2081', 'p_6611'), ('c_2081', 'p_6612'), ('c_2081', 'p_6613'), ('c_2081', 'p_6614'), ('c_2081', 'p_6615'), ('c_2081', 'p_6616'), ('c_2081', 'p_6617'), ('c_2081', 'p_6618'), ('c_2081', 'p_6619'), ('c_2081', 'p_6620'), ('c_2081', 'p_6621'), ('c_2081', 'p_6622'), ('c_2081', 'p_6623'), ('c_2081', 'p_6624'), ('c_2081', 'p_6625'), ('c_2081', 'p_6626'), ('c_2081', 'p_6627'), ('c_2081', 'p_6628'), ('c_2081', 'p_6629'), ('c_2081', 'p_6630'), ('c_2081', 'p_6631'), ('c_2081', 'p_6632'), ('c_2081', 'p_6633'), ('c_2081', 'p_6634'), ('c_2081', 'p_6635'), ('c_2081', 'p_6636'), ('c_2081', 'p_6637'), ('c_2081', 'p_6638'), ('c_2081', 'p_6639'), ('c_2081', 'p_6640'), ('c_2081', 'p_6641'), ('c_2081', 'p_6642'), ('c_2081', 'p_6643'), ('c_2081', 'p_6644'), ('c_2081', 'p_6645'), ('c_2081', 'p_6646'), ('c_2081', 'p_6647'), ('c_2081', 'p_6648'), ('c_2081', 'p_6649'), ('c_2081', 'p_6650'), ('c_2081', 'p_6651'), ('c_2081', 'p_6652'), ('c_2081', 'p_6653'), ('c_2081', 'p_6654'), ('c_2081', 'p_6655'), ('c_2081', 'p_6656'), ('c_2081', 'p_6657'), ('c_2081', 'p_6658'), ('c_2081', 'p_6659'), ('c_2081', 'p_6660'), ('c_2081', 'p_6661'), ('c_2081', 'p_6662'), ('c_2081', 'p_6663'), ('c_2081', 'p_6664'), ('c_2081', 'p_6665'), ('c_2081', 'p_6666'), ('c_2081', 'p_6667'), ('c_2081', 'p_6668'), ('c_2081', 'p_6669'), ('c_2081', 'p_6670'), ('c_2081', 'p_6671'), ('c_2081', 'p_6672'), ('c_2081', 'p_6673'), ('c_2081', 'p_6674'), ('c_2081', 'p_6675'), ('c_2081', 'p_6676'), ('c_2081', 'p_6677'), ('c_2081', 'p_6678'), ('c_2081', 'p_6679'), ('c_2081', 'p_6680'), ('c_2081', 'p_6681'), ('c_2081', 'p_6682'), ('c_2081', 'p_6683'), ('c_2081', 'p_6684'), ('c_2081', 'p_6685'), ('c_2081', 'p_6686'), ('c_2081', 'p_6687'), ('c_2081', 'p_6688'), ('c_2081', 'p_6689'), ('c_2081', 'p_6690'), ('c_2081', 'p_6691'), ('c_2081', 'p_6692'), ('c_2081', 'p_6693'), ('c_2081', 'p_6694'), ('c_2081', 'p_6695'), ('c_2081', 'p_6696'), ('c_2081', 'p_6697'), ('c_2081', 'p_6698'), ('c_2081', 'p_6699'), ('c_2081', 'p_6700'), ('c_2081', 'p_6701'), ('c_2081', 'p_6702'), ('c_2081', 'p_6703'), ('c_2081', 'p_6704'), ('c_2081', 'p_6705'), ('c_2081', 'p_6706'), ('c_2081', 'p_6707'), ('c_2081', 'p_6708'), ('c_2081', 'p_6709'), ('c_2081', 'p_6710'), ('c_2081', 'p_6711'), ('c_2081', 'p_6712'), ('c_2081', 'p_6713'), ('c_2081', 'p_6714'), ('c_2081', 'p_6715'), ('c_2081', 'p_6716'), ('c_2081', 'p_6717'), ('c_2081', 'p_6718'), ('c_2081', 'p_6719'), ('c_2081', 'p_6720'), ('c_2081', 'p_6721'), ('c_2081', 'p_6722'), ('c_2081', 'p_6723'), ('c_2081', 'p_6724'), ('c_2081', 'p_6725'), ('c_2081', 'p_6726'), ('c_2081', 'p_6727'), ('c_2081', 'p_6728'), ('c_2081', 'p_6729'), ('c_2081', 'p_6730'), ('c_2081', 'p_6731'), ('c_2081', 'p_6732'), ('c_2081', 'p_6733'), ('c_2081', 'p_6734'), ('c_2081', 'p_6735'), ('c_2081', 'p_6736'), ('c_2081', 'p_6737'), ('c_2081', 'p_6738'), ('c_2081', 'p_6739'), ('c_2081', 'p_6740'), ('c_2081', 'p_6741'), ('c_2081', 'p_6742'), ('c_2081', 'p_6743'), ('c_2081', 'p_6744'), ('c_2081', 'p_6745'), ('c_2081', 'p_6746'), ('c_2081', 'p_6747'), ('c_2081', 'p_6748'), ('c_2081', 'p_6749'), ('c_2081', 'p_6750'), ('c_2081', 'p_6751'), ('c_2081', 'p_6752'), ('c_2081', 'p_6753'), ('c_2081', 'p_6754'), ('c_2081', 'p_6755'), ('c_2081', 'p_6756'), ('c_2081', 'p_6757'), ('c_2081', 'p_6758'), ('c_2081', 'p_6759'), ('c_2081', 'p_6760'), ('c_2081', 'p_6761'), ('c_2081', 'p_6762'), ('c_2081', 'p_6763'), ('c_2081', 'p_6764'), ('c_2081', 'p_6765'), ('c_2081', 'p_6766'), ('c_2081', 'p_6767'), ('c_2081', 'p_6768'), ('c_2081', 'p_6769'), ('c_2081', 'p_6770'), ('c_2081', 'p_6771'), ('c_2081', 'p_6772'), ('c_2081', 'p_6773'), ('c_2081', 'p_6774'), ('c_2081', 'p_6775'), ('c_2081', 'p_6776'), ('c_2081', 'p_6777'), ('c_2081', 'p_6778'), ('c_2081', 'p_6779'), ('c_2081', 'p_6780'), ('c_2081', 'p_6781'), ('c_2081', 'p_6782'), ('c_2081', 'p_6783'), ('c_2081', 'p_6784'), ('c_2081', 'p_6785'), ('c_2081', 'p_6786'), ('c_2081', 'p_6787'), ('c_2081', 'p_6788'), ('c_2081', 'p_6789'), ('c_2081', 'p_6790'), ('c_2081', 'p_6791'), ('c_2081', 'p_6792'), ('c_2081', 'p_6793'), ('c_2081', 'p_6794'), ('c_2081', 'p_6795'), ('c_2081', 'p_6796'), ('c_2081', 'p_6797'), ('c_2081', 'p_6798'), ('c_2081', 'p_6799'), ('c_2081', 'p_6800'), ('c_2081', 'p_6801'), ('c_2081', 'p_6802'), ('c_2081', 'p_6803'), ('c_2081', 'p_6804'), ('c_2081', 'p_6805'), ('c_2081', 'p_6806'), ('c_2081', 'p_6807'), ('c_2081', 'p_6808'), ('c_2081', 'p_6809'), ('c_2081', 'p_6810'), ('c_2081', 'p_6811'), ('c_2081', 'p_6812'), ('c_2081', 'p_6813'), ('c_2081', 'p_6814'), ('c_2081', 'p_6815'), ('c_2081', 'p_6816'), ('c_2081', 'p_6817'), ('c_2081', 'p_6818'), ('c_2081', 'p_6819'), ('c_2081', 'p_6820'), ('c_2081', 'p_6821'), ('p_7347', 'c_2316'), ('c_2316', 'p_7348'), ('p_7647', 'c_2444'), ('c_2444', 'p_7648'), ('p_7679', 'c_2470'), ('p_7864', 'c_2538'), ('c_307', 'c_258'), ('c_258', 'c_353'), ('c_258', 'c_370'), ('c_370', 'c_371'), ('c_435', 'c_403'), ('c_435', 'c_3041'), ('c_435', 'c_3134'), ('c_403', 'c_455'), ('c_455', 'c_3041'), ('c_455', 'c_3098'), ('c_400', 'c_482'), ('c_482', 'c_633'), ('c_572', 'c_498'), ('c_498', 'c_484'), ('c_484', 'c_610'), ('c_494', 'c_536'), ('c_536', 'c_568'), ('c_493', 'c_539'), ('c_539', 'c_582'), ('c_406', 'c_567'), ('c_567', 'c_459'), ('c_587', 'c_588'), ('c_587', 'c_2911'), ('c_588', 'c_401'), ('c_401', 'c_2818'), ('c_401', 'c_2911'), ('c_401', 'c_2984'), ('c_401', 'c_3022'), ('c_487', 'c_610'), ('c_704', 'c_667'), ('c_667', 'c_666'), ('c_709', 'c_732'), ('c_732', 'c_765'), ('c_724', 'c_742'), ('c_742', 'c_746'), ('c_841', 'c_752'), ('c_841', 'c_868'), ('c_841', 'c_1009'), ('c_841', 'c_2413'), ('c_752', 'c_2293'), ('c_2293', 'c_868'), ('c_2293', 'c_930'), ('c_2293', 'c_2413'), ('c_925', 'c_839'), ('c_839', 'c_852'), ('c_954', 'c_843'), ('c_954', 'c_859'), ('c_954', 'c_871'), ('c_954', 'c_879'), ('c_954', 'c_908'), ('c_954', 'c_971'), ('c_954', 'c_983'), ('c_954', 'c_984'), ('c_954', 'c_996'), ('c_843', 'c_900'), ('c_900', 'c_859'), ('c_900', 'c_871'), ('c_900', 'c_879'), ('c_900', 'c_908'), ('c_900', 'c_955'), ('c_900', 'c_971'), ('c_900', 'c_983'), ('c_900', 'c_984'), ('c_900', 'c_996'), ('c_868', 'c_850'), ('c_948', 'c_930'), ('c_948', 'c_1009'), ('c_930', 'c_846'), ('c_832', 'c_939'), ('c_939', 'c_845'), ('c_867', 'c_949'), ('c_949', 'c_981'), ('c_985', 'c_955'), ('c_896', 'c_967'), ('c_967', 'c_840'), ('c_906', 'c_978'), ('c_978', 'c_811'), ('c_634', 'c_991'), ('c_991', 'c_600'), ('c_600', 'c_2700'), ('c_600', 'c_3022'), ('c_600', 'c_3044'), ('c_600', 'c_3071'), ('c_600', 'c_3073'), ('c_600', 'c_3098'), ('c_600', 'c_3126'), ('c_1191', 'c_1004'), ('c_1004', 'c_1112'), ('c_1220', 'c_1011'), ('c_1220', 'c_1012'), ('c_1220', 'c_1013'), ('c_1220', 'c_1014'), ('c_1220', 'c_1015'), ('c_1220', 'c_1016'), ('c_1220', 'c_1017'), ('c_1220', 'c_1018'), ('c_1220', 'c_1027'), ('c_1220', 'c_1030'), ('c_1220', 'c_1031'), ('c_1220', 'c_1045'), ('c_1220', 'c_1046'), ('c_1220', 'c_1047'), ('c_1220', 'c_1062'), ('c_1220', 'c_1064'), ('c_1220', 'c_1065'), ('c_1220', 'c_1066'), ('c_1220', 'c_1067'), ('c_1220', 'c_1079'), ('c_1220', 'c_1080'), ('c_1220', 'c_1081'), ('c_1220', 'c_1091'), ('c_1220', 'c_1092'), ('c_1220', 'c_1104'), ('c_1220', 'c_1105'), ('c_1220', 'c_1106'), ('c_1220', 'c_1122'), ('c_1220', 'c_1123'), ('c_1220', 'c_1124'), ('c_1220', 'c_1147'), ('c_1220', 'c_1148'), ('c_1220', 'c_1157'), ('c_1220', 'c_1159'), ('c_1220', 'c_1172'), ('c_1220', 'c_1173'), ('c_1220', 'c_1175'), ('c_1220', 'c_1176'), ('c_1220', 'c_1197'), ('c_1220', 'c_1198'), ('c_1220', 'c_1200'), ('c_1220', 'c_1218'), ('c_1220', 'c_1219'), ('c_1220', 'c_1231'), ('c_1220', 'c_1233'), ('c_1220', 'c_1238'), ('c_1220', 'c_1240'), ('c_1220', 'c_1248'), ('c_1220', 'c_1249'), ('c_1220', 'c_1250'), ('c_1220', 'c_1251'), ('c_1011', 'c_1048'), ('c_1048', 'c_1012'), ('c_1048', 'c_1013'), ('c_1048', 'c_1014'), ('c_1048', 'c_1015'), ('c_1048', 'c_1016'), ('c_1048', 'c_1017'), ('c_1048', 'c_1018'), ('c_1048', 'c_1027'), ('c_1048', 'c_1030'), ('c_1048', 'c_1031'), ('c_1048', 'c_1045'), ('c_1048', 'c_1046'), ('c_1048', 'c_1047'), ('c_1048', 'c_1062'), ('c_1048', 'c_1064'), ('c_1048', 'c_1065'), ('c_1048', 'c_1066'), ('c_1048', 'c_1067'), ('c_1048', 'c_1079'), ('c_1048', 'c_1080'), ('c_1048', 'c_1081'), ('c_1048', 'c_1091'), ('c_1048', 'c_1092'), ('c_1048', 'c_1104'), ('c_1048', 'c_1105'), ('c_1048', 'c_1106'), ('c_1048', 'c_1122'), ('c_1048', 'c_1123'), ('c_1048', 'c_1124'), ('c_1048', 'c_1147'), ('c_1048', 'c_1148'), ('c_1048', 'c_1157'), ('c_1048', 'c_1159'), ('c_1048', 'c_1172'), ('c_1048', 'c_1173'), ('c_1048', 'c_1175'), ('c_1048', 'c_1176'), ('c_1048', 'c_1197'), ('c_1048', 'c_1198'), ('c_1048', 'c_1200'), ('c_1048', 'c_1218'), ('c_1048', 'c_1219'), ('c_1048', 'c_1231'), ('c_1048', 'c_1233'), ('c_1048', 'c_1238'), ('c_1048', 'c_1240'), ('c_1048', 'c_1248'), ('c_1048', 'c_1249'), ('c_1048', 'c_1250'), ('c_1048', 'c_1251'), ('c_1229', 'c_1103'), ('c_1103', 'c_1899'), ('c_1094', 'c_1206'), ('c_1206', 'c_1162'), ('c_2379', 'c_1270'), ('c_1270', 'c_2327'), ('c_2327', 'c_1624'), ('c_2944', 'c_1293'), ('c_2944', 'c_1430'), ('c_2944', 'c_2411'), ('c_2944', 'c_2899'), ('c_1293', 'c_1235'), ('c_1235', 'c_1383'), ('c_1235', 'c_1386'), ('c_1235', 'c_1430'), ('c_1235', 'c_1496'), ('c_1235', 'c_2411'), ('c_1235', 'c_2899'), ('c_1264', 'c_1383'), ('c_1264', 'c_1386'), ('c_1264', 'c_1496'), ('c_1264', 'c_2021'), ('c_1264', 'c_2044'), ('c_1264', 'c_2084'), ('c_1264', 'c_2096'), ('c_1264', 'c_2144'), ('c_1355', 'c_1420'), ('c_1903', 'c_1512'), ('c_1903', 'c_1579'), ('c_1903', 'c_1813'), ('c_1869', 'c_1537'), ('c_1537', 'c_1603'), ('c_1603', 'c_1604'), ('c_1603', 'c_1811'), ('c_1603', 'c_1778'), ('c_1603', 'c_1930'), ('c_1603', 'c_1976'), ('c_1981', 'c_1547'), ('c_1981', 'c_1583'), ('c_1981', 'c_1731'), ('c_1981', 'c_1919'), ('c_1981', 'c_3036'), ('c_1547', 'c_1679'), ('c_1679', 'c_1583'), ('c_1679', 'c_1731'), ('c_1679', 'c_1919'), ('c_1679', 'c_3036'), ('c_1744', 'c_1597'), ('c_1597', 'c_1743'), ('c_1683', 'c_1624'), ('c_30', 'c_1668'), ('c_30', 'c_1847'), ('c_1668', 'c_2034'), ('c_1657', 'c_1742'), ('c_1742', 'c_1557'), ('c_2597', 'c_1754'), ('c_1754', 'c_1875'), ('c_1754', 'c_1641'), ('c_1754', 'c_92'), ('c_1952', 'c_1778'), ('c_1847', 'c_1784'), ('c_1781', 'c_1873'), ('c_1873', 'c_1844'), ('c_1975', 'c_1928'), ('c_1928', 'c_1691'), ('c_1779', 'c_1930'), ('c_1934', 'c_1935'), ('c_1935', 'c_1572'), ('c_1695', 'c_1976'), ('c_2021', 'c_2136'), ('c_2136', 'c_2044'), ('c_2136', 'c_2084'), ('c_2136', 'c_2096'), ('c_2136', 'c_2144'), ('c_2020', 'c_2022'), ('c_2020', 'c_2042'), ('c_2020', 'c_2159'), ('c_2020', 'c_2171'), ('c_2020', 'c_2195'), ('c_2022', 'c_2041'), ('c_2041', 'c_2082'), ('c_2041', 'c_2193'), ('c_2041', 'c_2042'), ('c_2041', 'c_2093'), ('c_2041', 'c_2094'), ('c_2041', 'c_2126'), ('c_2041', 'c_2159'), ('c_2041', 'c_2171'), ('c_2041', 'c_2195'), ('c_2060', 'c_2080'), ('c_2003', 'c_2093'), ('c_3065', 'c_2094'), ('c_3065', 'c_2126'), ('c_1492', 'c_2095'), ('c_2095', 'c_41'), ('c_2254', 'c_2222'), ('c_2222', 'c_2269'), ('c_2222', 'c_2255'), ('c_2256', 'c_2255'), ('c_2382', 'c_2265'), ('c_2265', 'c_2405'), ('c_2405', 'c_2312'), ('c_2100', 'c_2266'), ('c_2266', 'c_2407'), ('c_2402', 'c_2309'), ('c_2309', 'c_444'), ('c_2309', 'c_2179'), ('c_444', 'c_2462'), ('c_2264', 'c_2312'), ('c_2340', 'c_2342'), ('c_2342', 'c_2454'), ('c_2454', 'c_2400'), ('c_2454', 'c_2453'), ('c_1954', 'c_2376'), ('c_1954', 'c_2764'), ('c_2376', 'c_1715'), ('c_1715', 'c_2764'), ('c_2400', 'c_2363'), ('c_2363', 'c_2453'), ('c_2230', 'c_2462'), ('c_3112', 'c_2467'), ('c_3112', 'c_3009'), ('c_3112', 'c_3017'), ('c_3112', 'c_3024'), ('c_3112', 'c_3047'), ('c_3112', 'c_3057'), ('c_3112', 'c_3062'), ('c_3112', 'c_3074'), ('c_3112', 'c_3075'), ('c_3112', 'c_3101'), ('c_3112', 'c_3136'), ('c_3112', 'c_3137'), ('c_3112', 'c_3145'), ('c_2467', 'c_3103'), ('c_3103', 'c_3009'), ('c_3103', 'c_3017'), ('c_3103', 'c_3025'), ('c_3103', 'c_3047'), ('c_3103', 'c_3057'), ('c_3103', 'c_3062'), ('c_3103', 'c_3074'), ('c_3103', 'c_3075'), ('c_3103', 'c_3101'), ('c_3103', 'c_3136'), ('c_3103', 'c_3137'), ('c_3103', 'c_3145'), ('c_2589', 'c_2476'), ('c_2476', 'c_2552'), ('c_2639', 'c_2520'), ('c_2639', 'c_2595'), ('c_2639', 'c_2493'), ('c_2639', 'c_2569'), ('c_2520', 'c_2568'), ('c_2569', 'c_2543'), ('c_2569', 'c_2689'), ('c_2543', 'c_2493'), ('c_2493', 'c_2689'), ('c_2595', 'c_2670'), ('c_2628', 'c_2627'), ('c_2628', 'c_2661'), ('c_2627', 'c_2570'), ('c_2661', 'c_2544'), ('c_468', 'c_2699'), ('c_2699', 'c_636'), ('c_636', 'c_2700'), ('c_636', 'c_2984'), ('c_2997', 'c_2756'), ('c_2756', 'c_2781'), ('c_415', 'c_2818'), ('c_2825', 'c_2826'), ('c_2826', 'c_2715'), ('c_2708', 'c_2874'), ('c_2874', 'c_2767'), ('c_2912', 'c_2934'), ('c_2934', 'c_2998'), ('c_3024', 'c_3102'), ('c_3094', 'c_3025'), ('c_3106', 'c_3040'), ('c_3040', 'c_3031'), ('c_3031', 'c_3107'), ('c_589', 'c_3044'), ('c_589', 'c_3073'), ('c_589', 'c_3126'), ('c_589', 'c_3134'), ('c_3044', 'c_3071'), ('c_3073', 'c_3071'), ('c_3070', 'c_3107')]\n" + ] + } + ], + "source": [ + "print(len(graph.nodes))\n", + "# for edge in graph.edges():\n", + "# print(edge)\n", + "print(graph.edges)\n", + "# print(graph)" + ] + }, + { + "cell_type": "code", + "execution_count": 330, + "id": "2b73ed2f", + "metadata": {}, + "outputs": [], + "source": [ + "import plotly.graph_objects as go\n", + "edge_x = []\n", + "edge_y = []\n", + "\n", + "edge_weight_x = []\n", + "edge_weight_y = []\n", + "G = graph\n", + "for edge in G.edges():\n", + " x0, y0 = pos[edge[0]]\n", + " x1, y1 = pos[edge[1]]\n", + " edge_x.append(x0)\n", + " edge_x.append(x1)\n", + " edge_x.append(None)\n", + " edge_y.append(y0)\n", + " edge_y.append(y1)\n", + " edge_y.append(None)\n", + "\n", + " # edge_weight_x.append(x1 + x1 - x0) \n", + " # edge_weight_y.append(y1 + y1 - y0)\n", + " # edge_weight_x.append(x0 + x0 - x1) \n", + " # edge_weight_y.append(y0 + y0 - y1)\n", + " edge_weight_x.append(x0 + ((x1 - x0) / 2))\n", + " edge_weight_y.append(y0 + ((y1 - y0) / 2))\n", + "\n", + "edge_trace = go.Scatter(\n", + " x=edge_x, y=edge_y,\n", + " line=dict(width=0.5, color='#888'),\n", + " hoverinfo='none',\n", + " mode='lines')\n", + "\n", + "edge_weights_trace = go.Scatter(x=edge_weight_x,y= edge_weight_y, mode='text',\n", + " marker_size=1,\n", + " text=[0.45, 0.7, 0.34],\n", + " textposition='top center',\n", + " hovertemplate='weight: %{text}')\n", + " \n", + "\n", + "node_x = []\n", + "node_y = []\n", + "for node in G.nodes():\n", + " x, y = pos[node]\n", + " node_x.append(x)\n", + " node_y.append(y)\n", + "\n", + "node_trace = go.Scatter(\n", + " x=node_x, y=node_y,\n", + " mode='markers',\n", + " hoverinfo='text',\n", + " marker=dict(\n", + " showscale=True,\n", + " # colorscale options\n", + " #'Greys' | 'YlGnBu' | 'Greens' | 'YlOrRd' | 'Bluered' | 'RdBu' |\n", + " #'Reds' | 'Blues' | 'Picnic' | 'Rainbow' | 'Portland' | 'Jet' |\n", + " #'Hot' | 'Blackbody' | 'Earth' | 'Electric' | 'Viridis' |\n", + " colorscale='YlGnBu',\n", + " reversescale=True,\n", + " color=[],\n", + " size=10,\n", + " colorbar=dict(\n", + " thickness=15,\n", + " title='Node Connections',\n", + " xanchor='left',\n", + " titleside='right'\n", + " ),\n", + " line_width=2))" + ] + }, + { + "cell_type": "markdown", + "id": "63f31551", + "metadata": {}, + "source": [ + "Überleibsel" + ] + }, + { + "cell_type": "code", + "execution_count": 325, + "id": "b88a0b10", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "{'c_53': {'id': 'c_53', 'name': '1. Freiburger Solarfonds Beteiligungs-KG', 'color': 'blue'}, 'p_545': {'id': 'p_545', 'firstname': 'Jürgen', 'lastname': 'Wetzel', 'date_of_birth': datetime.date(1962, 11, 15), 'color': 'red'}, 'c_77': {'id': 'c_77', 'name': 'Aurelius KG', 'color': 'blue'}, 'p_758': {'id': 'p_758', 'firstname': 'Peter', 'lastname': 'Esser', 'date_of_birth': datetime.date(1957, 4, 14), 'color': 'red'}, 'c_253': {'id': 'c_253', 'name': 'Bayer Design Fritz Bayer GmbH & Co KG', 'color': 'blue'}, 'p_1313': {'id': 'p_1313', 'firstname': 'Michael Georg', 'lastname': 'Neubauer', 'date_of_birth': datetime.date(1966, 2, 17), 'color': 'red'}, 'c_301': {'id': 'c_301', 'name': 'Bayern Immobilien Höller/Lechner KG', 'color': 'blue'}, 'p_1706': {'id': 'p_1706', 'firstname': 'Erwin', 'lastname': 'Höller', 'date_of_birth': datetime.date(1956, 9, 25), 'color': 'red'}, 'c_388': {'id': 'c_388', 'name': 'Bayern-Osteuropa OHG Travel Consulting Marketing', 'color': 'blue'}, 'p_1891': {'id': 'p_1891', 'firstname': 'Eugen', 'lastname': 'Guwa', 'date_of_birth': datetime.date(1975, 3, 3), 'color': 'red'}, 'p_1892': {'id': 'p_1892', 'firstname': 'Anna', 'lastname': 'Guwa', 'date_of_birth': datetime.date(1975, 12, 23), 'color': 'red'}, 'c_392': {'id': 'c_392', 'name': 'Bayern Treuhand Obermeier & Kilger KG Wirtschaftsprüfungsgesellschaft', 'color': 'blue'}, 'p_1899': {'id': 'p_1899', 'firstname': 'Hugo', 'lastname': 'Obermeier', 'date_of_birth': datetime.date(1946, 8, 15), 'color': 'red'}, 'c_523': {'id': 'c_523', 'name': 'Bayern-Park KG', 'color': 'blue'}, 'p_2332': {'id': 'p_2332', 'firstname': 'Eva', 'lastname': 'Leitl', 'date_of_birth': datetime.date(1953, 6, 27), 'color': 'red'}, 'p_2331': {'id': 'p_2331', 'firstname': 'Silke', 'lastname': 'Holzner', 'date_of_birth': datetime.date(1979, 1, 20), 'color': 'red'}, 'c_574': {'id': 'c_574', 'name': 'BAYERN-RALLYE Karussellbetrieb OHG', 'color': 'blue'}, 'p_2457': {'id': 'p_2457', 'firstname': 'Christine', 'lastname': 'Fahrenschon', 'date_of_birth': datetime.date(1966, 11, 26), 'color': 'red'}, 'p_2458': {'id': 'p_2458', 'firstname': 'Maximilian', 'lastname': 'Fahrenschon', 'date_of_birth': datetime.date(1962, 10, 11), 'color': 'red'}, 'c_598': {'id': 'c_598', 'name': 'Bayer Rettungstechnik oHG', 'color': 'blue'}, 'p_2499': {'id': 'p_2499', 'firstname': 'Peter', 'lastname': 'Bayer', 'date_of_birth': datetime.date(1941, 7, 23), 'color': 'red'}, 'p_2500': {'id': 'p_2500', 'firstname': 'Bernd', 'lastname': 'Klein', 'date_of_birth': datetime.date(1955, 10, 10), 'color': 'red'}, 'c_770': {'id': 'c_770', 'name': 'Deutsche Wohn- und Gewerbebau KG', 'color': 'blue'}, 'p_3171': {'id': 'p_3171', 'firstname': 'Ottmar', 'lastname': 'Mühlberger', 'date_of_birth': datetime.date(1956, 7, 17), 'color': 'red'}, 'c_827': {'id': 'c_827', 'name': 'E. Merck KG', 'color': 'blue'}, 'p_3382': {'id': 'p_3382', 'firstname': 'Frank', 'lastname': 'Stangenberg-Haverkamp', 'date_of_birth': datetime.date(1948, 8, 2), 'color': 'red'}, 'p_3486': {'id': 'p_3486', 'firstname': 'Johannes', 'lastname': 'Baillou', 'date_of_birth': datetime.date(1965, 4, 25), 'color': 'red'}, 'p_3519': {'id': 'p_3519', 'firstname': 'Belén', 'lastname': 'Garijo Lopez', 'date_of_birth': datetime.date(1960, 7, 31), 'color': 'red'}, 'p_3530': {'id': 'p_3530', 'firstname': 'Kai', 'lastname': 'Beckmann', 'date_of_birth': datetime.date(1965, 9, 13), 'color': 'red'}, 'p_3531': {'id': 'p_3531', 'firstname': 'Marcus', 'lastname': 'Kuhnert', 'date_of_birth': datetime.date(1968, 10, 23), 'color': 'red'}, 'p_3541': {'id': 'p_3541', 'firstname': 'Matthias', 'lastname': 'Heinzel', 'date_of_birth': datetime.date(1967, 2, 13), 'color': 'red'}, 'p_3591': {'id': 'p_3591', 'firstname': 'Peter', 'lastname': 'Guenter', 'date_of_birth': datetime.date(1962, 9, 2), 'color': 'red'}, 'c_895': {'id': 'c_895', 'name': 'Emanuel-Merck-Vermögens-KG', 'color': 'blue'}, 'c_992': {'id': 'c_992', 'name': 'E. Merck Beteiligungen KG', 'color': 'blue'}, 'c_1132': {'id': 'c_1132', 'name': 'Frye Ströer Legehennen KG', 'color': 'blue'}, 'p_4319': {'id': 'p_4319', 'firstname': 'Reinhard', 'lastname': 'Frye', 'date_of_birth': datetime.date(1965, 10, 14), 'color': 'red'}, 'c_1201': {'id': 'c_1201', 'name': 'Fielmann Augenoptik AG & Co. oHG Harburg-City', 'color': 'blue'}, 'p_4470': {'id': 'p_4470', 'firstname': 'Sirous', 'lastname': 'Shahsiah', 'date_of_birth': datetime.date(1944, 6, 10), 'color': 'red'}, 'c_1379': {'id': 'c_1379', 'name': 'Henkel Familien KG', 'color': 'blue'}, 'p_4905': {'id': 'p_4905', 'firstname': 'Anna', 'lastname': 'Henkel', 'date_of_birth': datetime.date(1977, 9, 26), 'color': 'red'}, 'p_4906': {'id': 'p_4906', 'firstname': 'Thomas', 'lastname': 'Henkel', 'date_of_birth': datetime.date(1966, 5, 8), 'color': 'red'}, 'c_1390': {'id': 'c_1390', 'name': 'Hanspeter Grassl KG', 'color': 'blue'}, 'p_4919': {'id': 'p_4919', 'firstname': 'Sebastian', 'lastname': 'Graßl', 'date_of_birth': datetime.date(1988, 7, 6), 'color': 'red'}, 'c_1444': {'id': 'c_1444', 'name': 'Henkel KG Generalagentur', 'color': 'blue'}, 'p_5038': {'id': 'p_5038', 'firstname': 'Ronny', 'lastname': 'Polack', 'date_of_birth': datetime.date(1965, 3, 29), 'color': 'red'}, 'c_1466': {'id': 'c_1466', 'name': 'Grundstücksgesellschaft Pfingstanger Salzgitter Bad KG', 'color': 'blue'}, 'p_5084': {'id': 'p_5084', 'firstname': 'Günter', 'lastname': 'Nicklas', 'date_of_birth': datetime.date(1941, 8, 21), 'color': 'red'}, 'c_1552': {'id': 'c_1552', 'name': 'K & S Citystore OHG', 'color': 'blue'}, 'p_5203': {'id': 'p_5203', 'firstname': 'Gesine Tanja', 'lastname': 'Föller-Klügl', 'date_of_birth': datetime.date(1971, 7, 14), 'color': 'red'}, 'p_5204': {'id': 'p_5204', 'firstname': 'Carsten', 'lastname': 'Klügl', 'date_of_birth': datetime.date(1973, 1, 6), 'color': 'red'}, 'c_1913': {'id': 'c_1913', 'name': 'K.M.S. Doruk Computer Systeme OHG', 'color': 'blue'}, 'p_6056': {'id': 'p_6056', 'firstname': 'Andrea', 'lastname': 'Doruk', 'date_of_birth': datetime.date(1962, 6, 30), 'color': 'red'}, 'c_2014': {'id': 'c_2014', 'name': 'MERCK Kommanditgesellschaft auf Aktien', 'color': 'blue'}, 'c_2081': {'id': 'c_2081', 'name': 'MetroPolis Grundstücks oHG', 'color': 'blue'}, 'p_6596': {'id': 'p_6596', 'firstname': 'Donat', 'lastname': 'Kühne', 'date_of_birth': datetime.date(1961, 10, 15), 'color': 'red'}, 'p_6597': {'id': 'p_6597', 'firstname': 'Andreas', 'lastname': 'Stahl', 'date_of_birth': datetime.date(1959, 6, 2), 'color': 'red'}, 'p_6598': {'id': 'p_6598', 'firstname': 'Mina', 'lastname': 'Ansari', 'date_of_birth': datetime.date(1958, 2, 14), 'color': 'red'}, 'p_6599': {'id': 'p_6599', 'firstname': 'Klaus Markus', 'lastname': 'Dahlmanns', 'date_of_birth': datetime.date(1974, 12, 6), 'color': 'red'}, 'p_6600': {'id': 'p_6600', 'firstname': 'Gregor', 'lastname': 'Fachinger', 'date_of_birth': datetime.date(1968, 3, 12), 'color': 'red'}, 'p_6601': {'id': 'p_6601', 'firstname': 'David', 'lastname': 'Ferré', 'date_of_birth': datetime.date(1964, 5, 7), 'color': 'red'}, 'p_6602': {'id': 'p_6602', 'firstname': 'Ralf', 'lastname': 'Fischer', 'date_of_birth': datetime.date(1963, 7, 14), 'color': 'red'}, 'p_6603': {'id': 'p_6603', 'firstname': 'Ekaterina', 'lastname': 'Grishina', 'date_of_birth': datetime.date(1979, 9, 9), 'color': 'red'}, 'p_6604': {'id': 'p_6604', 'firstname': 'Gerald', 'lastname': 'Hartung', 'date_of_birth': datetime.date(1963, 1, 2), 'color': 'red'}, 'p_6605': {'id': 'p_6605', 'firstname': 'Eduard', 'lastname': 'Hinken', 'date_of_birth': datetime.date(1961, 10, 2), 'color': 'red'}, 'p_6606': {'id': 'p_6606', 'firstname': 'Vyacheslav Antoliyovych', 'lastname': 'Ivchenko', 'date_of_birth': datetime.date(1972, 10, 6), 'color': 'red'}, 'p_6607': {'id': 'p_6607', 'firstname': 'Reinhard', 'lastname': 'Janssen', 'date_of_birth': datetime.date(1970, 1, 29), 'color': 'red'}, 'p_6608': {'id': 'p_6608', 'firstname': 'Karin', 'lastname': 'Lenz', 'date_of_birth': datetime.date(1968, 6, 14), 'color': 'red'}, 'p_6609': {'id': 'p_6609', 'firstname': 'Petra', 'lastname': 'Mai-Hartung', 'date_of_birth': datetime.date(1963, 1, 28), 'color': 'red'}, 'p_6610': {'id': 'p_6610', 'firstname': 'Klaus-Jürgen', 'lastname': 'Müller', 'date_of_birth': datetime.date(1965, 4, 24), 'color': 'red'}, 'p_6611': {'id': 'p_6611', 'firstname': 'Gudela', 'lastname': 'Noack', 'date_of_birth': datetime.date(1981, 5, 26), 'color': 'red'}, 'p_6612': {'id': 'p_6612', 'firstname': 'Rico', 'lastname': 'Noack', 'date_of_birth': datetime.date(1977, 1, 18), 'color': 'red'}, 'p_6613': {'id': 'p_6613', 'firstname': 'Peter Uwe', 'lastname': 'Petersen', 'date_of_birth': datetime.date(1972, 2, 9), 'color': 'red'}, 'p_6614': {'id': 'p_6614', 'firstname': 'Zhiyun', 'lastname': 'Ren', 'date_of_birth': datetime.date(1956, 11, 27), 'color': 'red'}, 'p_6615': {'id': 'p_6615', 'firstname': 'Denis', 'lastname': 'Sapozhnikov', 'date_of_birth': datetime.date(1973, 5, 2), 'color': 'red'}, 'p_6616': {'id': 'p_6616', 'firstname': 'Michael', 'lastname': 'Scheele', 'date_of_birth': datetime.date(1969, 5, 22), 'color': 'red'}, 'p_6617': {'id': 'p_6617', 'firstname': 'Jochen', 'lastname': 'Scholl', 'date_of_birth': datetime.date(1973, 3, 19), 'color': 'red'}, 'p_6618': {'id': 'p_6618', 'firstname': 'Arnd', 'lastname': 'Schröder', 'date_of_birth': datetime.date(1972, 6, 6), 'color': 'red'}, 'p_6619': {'id': 'p_6619', 'firstname': 'Michael', 'lastname': 'Süßkind', 'date_of_birth': datetime.date(1969, 12, 16), 'color': 'red'}, 'p_6620': {'id': 'p_6620', 'firstname': 'Andreas', 'lastname': 'Thot', 'date_of_birth': datetime.date(1965, 5, 15), 'color': 'red'}, 'p_6621': {'id': 'p_6621', 'firstname': 'Jianshen', 'lastname': 'Zhou', 'date_of_birth': datetime.date(1963, 4, 27), 'color': 'red'}, 'p_6622': {'id': 'p_6622', 'firstname': 'Ursula', 'lastname': 'Deibler', 'date_of_birth': datetime.date(1971, 10, 23), 'color': 'red'}, 'p_6623': {'id': 'p_6623', 'firstname': 'Joachim', 'lastname': 'Hahn', 'date_of_birth': datetime.date(1958, 4, 5), 'color': 'red'}, 'p_6624': {'id': 'p_6624', 'firstname': 'Ralf', 'lastname': 'Karwat', 'date_of_birth': datetime.date(1966, 8, 31), 'color': 'red'}, 'p_6625': {'id': 'p_6625', 'firstname': 'Martina', 'lastname': 'Mahlke', 'date_of_birth': datetime.date(1966, 2, 22), 'color': 'red'}, 'p_6626': {'id': 'p_6626', 'firstname': 'Jörgen', 'lastname': 'Pisarz', 'date_of_birth': datetime.date(1964, 9, 1), 'color': 'red'}, 'p_6627': {'id': 'p_6627', 'firstname': 'Frank', 'lastname': 'Weisser', 'date_of_birth': datetime.date(1968, 4, 8), 'color': 'red'}, 'p_6628': {'id': 'p_6628', 'firstname': 'Gerhard', 'lastname': 'Löhlein', 'date_of_birth': datetime.date(1942, 8, 20), 'color': 'red'}, 'p_6629': {'id': 'p_6629', 'firstname': 'Franz', 'lastname': 'Rauch', 'date_of_birth': datetime.date(1968, 5, 10), 'color': 'red'}, 'p_6630': {'id': 'p_6630', 'firstname': 'Bogumila', 'lastname': 'Szyja', 'date_of_birth': datetime.date(1966, 1, 19), 'color': 'red'}, 'p_6631': {'id': 'p_6631', 'firstname': 'Karin', 'lastname': 'Timmerberg', 'date_of_birth': datetime.date(1944, 9, 23), 'color': 'red'}, 'p_6632': {'id': 'p_6632', 'firstname': 'Charlotte', 'lastname': 'Weichselsdorfer', 'date_of_birth': datetime.date(1942, 6, 3), 'color': 'red'}, 'p_6633': {'id': 'p_6633', 'firstname': 'Rainer', 'lastname': 'Weichselsdorfer', 'date_of_birth': datetime.date(1940, 1, 11), 'color': 'red'}, 'p_6634': {'id': 'p_6634', 'firstname': 'Bernhard', 'lastname': 'Heitele', 'date_of_birth': datetime.date(1971, 10, 18), 'color': 'red'}, 'p_6635': {'id': 'p_6635', 'firstname': 'Zeynep Ayse', 'lastname': 'Hicsasmaz-Heitele', 'date_of_birth': datetime.date(1970, 4, 25), 'color': 'red'}, 'p_6636': {'id': 'p_6636', 'firstname': 'Katharina', 'lastname': 'von Falkenhayn', 'date_of_birth': datetime.date(1971, 8, 14), 'color': 'red'}, 'p_6637': {'id': 'p_6637', 'firstname': 'Franziska', 'lastname': 'von Malaisé', 'date_of_birth': datetime.date(1967, 8, 23), 'color': 'red'}, 'p_6638': {'id': 'p_6638', 'firstname': 'Heinrich', 'lastname': 'Brendel', 'date_of_birth': datetime.date(1964, 1, 21), 'color': 'red'}, 'p_6639': {'id': 'p_6639', 'firstname': 'Han', 'lastname': 'Deng', 'date_of_birth': datetime.date(1979, 2, 1), 'color': 'red'}, 'p_6640': {'id': 'p_6640', 'firstname': 'Ulrike', 'lastname': 'Köhler', 'date_of_birth': datetime.date(1979, 2, 24), 'color': 'red'}, 'p_6641': {'id': 'p_6641', 'firstname': 'Thomas', 'lastname': 'Köhler', 'date_of_birth': datetime.date(1974, 12, 28), 'color': 'red'}, 'p_6642': {'id': 'p_6642', 'firstname': 'Jochem', 'lastname': 'Lange', 'date_of_birth': datetime.date(1953, 6, 19), 'color': 'red'}, 'p_6643': {'id': 'p_6643', 'firstname': 'Annette', 'lastname': 'Ludwig', 'date_of_birth': datetime.date(1972, 2, 23), 'color': 'red'}, 'p_6644': {'id': 'p_6644', 'firstname': 'Friederike', 'lastname': 'Maurer', 'date_of_birth': datetime.date(1964, 12, 15), 'color': 'red'}, 'p_6645': {'id': 'p_6645', 'firstname': 'Willi', 'lastname': 'Maurer', 'date_of_birth': datetime.date(1939, 4, 14), 'color': 'red'}, 'p_6646': {'id': 'p_6646', 'firstname': 'Andreas', 'lastname': 'Ramshorn', 'date_of_birth': datetime.date(1971, 4, 21), 'color': 'red'}, 'p_6647': {'id': 'p_6647', 'firstname': 'Ingo', 'lastname': 'Schuck', 'date_of_birth': datetime.date(1970, 3, 23), 'color': 'red'}, 'p_6648': {'id': 'p_6648', 'firstname': 'Johann-Friedrich', 'lastname': 'von der Borch', 'date_of_birth': datetime.date(1962, 5, 20), 'color': 'red'}, 'p_6649': {'id': 'p_6649', 'firstname': 'Richard', 'lastname': 'Weiler', 'date_of_birth': datetime.date(1984, 5, 26), 'color': 'red'}, 'p_6650': {'id': 'p_6650', 'firstname': 'Johannes', 'lastname': 'Busch', 'date_of_birth': datetime.date(1966, 11, 29), 'color': 'red'}, 'p_6651': {'id': 'p_6651', 'firstname': 'Christine', 'lastname': 'Ehard', 'date_of_birth': datetime.date(1976, 5, 18), 'color': 'red'}, 'p_6652': {'id': 'p_6652', 'firstname': 'Thomas', 'lastname': 'Eismann', 'date_of_birth': datetime.date(1963, 8, 2), 'color': 'red'}, 'p_6653': {'id': 'p_6653', 'firstname': 'Stefanie', 'lastname': 'Frensch', 'date_of_birth': datetime.date(1969, 11, 17), 'color': 'red'}, 'p_6654': {'id': 'p_6654', 'firstname': 'Holger', 'lastname': 'Gleich', 'date_of_birth': datetime.date(1954, 11, 17), 'color': 'red'}, 'p_6655': {'id': 'p_6655', 'firstname': 'Sonja', 'lastname': 'Kreibich', 'date_of_birth': datetime.date(1973, 2, 3), 'color': 'red'}, 'p_6656': {'id': 'p_6656', 'firstname': 'Henrik', 'lastname': 'Thomsen', 'date_of_birth': datetime.date(1964, 4, 23), 'color': 'red'}, 'p_6657': {'id': 'p_6657', 'firstname': 'Kerstin', 'lastname': 'Herzinger', 'date_of_birth': datetime.date(1975, 9, 28), 'color': 'red'}, 'p_6658': {'id': 'p_6658', 'firstname': 'Iris', 'lastname': 'Kraus', 'date_of_birth': datetime.date(1964, 12, 14), 'color': 'red'}, 'p_6659': {'id': 'p_6659', 'firstname': 'Volker', 'lastname': 'Kreibich', 'date_of_birth': datetime.date(1940, 4, 11), 'color': 'red'}, 'p_6660': {'id': 'p_6660', 'firstname': 'Barbara', 'lastname': 'Kreibich', 'date_of_birth': datetime.date(1941, 3, 9), 'color': 'red'}, 'p_6661': {'id': 'p_6661', 'firstname': 'Olivier', 'lastname': 'Krenz', 'date_of_birth': datetime.date(1976, 3, 12), 'color': 'red'}, 'p_6662': {'id': 'p_6662', 'firstname': 'Andrea', 'lastname': 'Layer', 'date_of_birth': datetime.date(1967, 5, 25), 'color': 'red'}, 'p_6663': {'id': 'p_6663', 'firstname': 'Ingrid', 'lastname': 'Schuff', 'date_of_birth': datetime.date(1959, 2, 1), 'color': 'red'}, 'p_6664': {'id': 'p_6664', 'firstname': 'Harald', 'lastname': 'Schuff', 'date_of_birth': datetime.date(1956, 11, 9), 'color': 'red'}, 'p_6665': {'id': 'p_6665', 'firstname': 'Wolfgang', 'lastname': 'Siegel', 'date_of_birth': datetime.date(1950, 10, 20), 'color': 'red'}, 'p_6666': {'id': 'p_6666', 'firstname': 'Helmut', 'lastname': 'Teichmann', 'date_of_birth': datetime.date(1959, 1, 15), 'color': 'red'}, 'p_6667': {'id': 'p_6667', 'firstname': 'Dirk', 'lastname': 'Broneske', 'date_of_birth': datetime.date(1968, 10, 29), 'color': 'red'}, 'p_6668': {'id': 'p_6668', 'firstname': 'Hanns Heinrich', 'lastname': 'Frensch', 'date_of_birth': datetime.date(1938, 9, 2), 'color': 'red'}, 'p_6669': {'id': 'p_6669', 'firstname': 'Monika', 'lastname': 'Frensch', 'date_of_birth': datetime.date(1940, 7, 20), 'color': 'red'}, 'p_6670': {'id': 'p_6670', 'firstname': 'Nicole', 'lastname': 'Gerken-Broneske', 'date_of_birth': datetime.date(1973, 9, 6), 'color': 'red'}, 'p_6671': {'id': 'p_6671', 'firstname': 'Andriy', 'lastname': 'Krantvays', 'date_of_birth': datetime.date(1974, 1, 19), 'color': 'red'}, 'p_6672': {'id': 'p_6672', 'firstname': 'Alfredo', 'lastname': 'Perl', 'date_of_birth': datetime.date(1965, 6, 25), 'color': 'red'}, 'p_6673': {'id': 'p_6673', 'firstname': 'Olaf', 'lastname': 'Rehahn', 'date_of_birth': datetime.date(1960, 3, 14), 'color': 'red'}, 'p_6674': {'id': 'p_6674', 'firstname': 'Susanne', 'lastname': 'Reiner-Koppmann', 'date_of_birth': datetime.date(1969, 8, 3), 'color': 'red'}, 'p_6675': {'id': 'p_6675', 'firstname': 'Anna', 'lastname': 'Spektor', 'date_of_birth': datetime.date(1976, 10, 26), 'color': 'red'}, 'p_6676': {'id': 'p_6676', 'firstname': 'Ilona', 'lastname': 'Steiert', 'date_of_birth': datetime.date(1972, 4, 24), 'color': 'red'}, 'p_6677': {'id': 'p_6677', 'firstname': 'Kerstin', 'lastname': 'Viot', 'date_of_birth': datetime.date(1962, 5, 28), 'color': 'red'}, 'p_6678': {'id': 'p_6678', 'firstname': 'Dirk', 'lastname': 'Weichselsdorfer', 'date_of_birth': datetime.date(1970, 1, 16), 'color': 'red'}, 'p_6679': {'id': 'p_6679', 'firstname': 'Wolfgang', 'lastname': 'Becker', 'date_of_birth': datetime.date(1961, 11, 5), 'color': 'red'}, 'p_6680': {'id': 'p_6680', 'firstname': 'Robert', 'lastname': 'Dilla', 'date_of_birth': datetime.date(1969, 9, 25), 'color': 'red'}, 'p_6681': {'id': 'p_6681', 'firstname': 'Aldona', 'lastname': 'Kihl', 'date_of_birth': datetime.date(1973, 7, 18), 'color': 'red'}, 'p_6682': {'id': 'p_6682', 'firstname': 'Martin', 'lastname': 'Winkler', 'date_of_birth': datetime.date(1939, 2, 12), 'color': 'red'}, 'p_6683': {'id': 'p_6683', 'firstname': 'Gerda', 'lastname': 'Winkler', 'date_of_birth': datetime.date(1942, 3, 12), 'color': 'red'}, 'p_6684': {'id': 'p_6684', 'firstname': 'Claudia', 'lastname': 'Beppler-Spahl', 'date_of_birth': datetime.date(1963, 2, 18), 'color': 'red'}, 'p_6685': {'id': 'p_6685', 'firstname': 'Hauke', 'lastname': 'Hermann', 'date_of_birth': datetime.date(1978, 3, 2), 'color': 'red'}, 'p_6686': {'id': 'p_6686', 'firstname': 'Nancy', 'lastname': 'Stahl', 'date_of_birth': datetime.date(1969, 9, 17), 'color': 'red'}, 'p_6687': {'id': 'p_6687', 'firstname': 'Ingrid', 'lastname': 'Maaß', 'date_of_birth': datetime.date(1962, 8, 6), 'color': 'red'}, 'p_6688': {'id': 'p_6688', 'firstname': 'Sebastian', 'lastname': 'Schneider', 'date_of_birth': datetime.date(1980, 9, 4), 'color': 'red'}, 'p_6689': {'id': 'p_6689', 'firstname': 'Thilo', 'lastname': 'Spahl', 'date_of_birth': datetime.date(1966, 2, 19), 'color': 'red'}, 'p_6690': {'id': 'p_6690', 'firstname': 'Runa', 'lastname': 'Speer', 'date_of_birth': datetime.date(1974, 2, 25), 'color': 'red'}, 'p_6691': {'id': 'p_6691', 'firstname': 'Karin', 'lastname': 'Blumenthal', 'date_of_birth': datetime.date(1954, 11, 6), 'color': 'red'}, 'p_6692': {'id': 'p_6692', 'firstname': 'Agnes', 'lastname': 'Kolodziej', 'date_of_birth': datetime.date(1978, 3, 2), 'color': 'red'}, 'p_6693': {'id': 'p_6693', 'firstname': 'Jörg', 'lastname': 'Langert', 'date_of_birth': datetime.date(1973, 4, 8), 'color': 'red'}, 'p_6694': {'id': 'p_6694', 'firstname': 'Claudia', 'lastname': 'Langert', 'date_of_birth': datetime.date(1976, 7, 8), 'color': 'red'}, 'p_6695': {'id': 'p_6695', 'firstname': 'Sebastian', 'lastname': 'Metzger', 'date_of_birth': datetime.date(1977, 9, 30), 'color': 'red'}, 'p_6696': {'id': 'p_6696', 'firstname': 'Carl-Wilhelm', 'lastname': 'Oesterley', 'date_of_birth': datetime.date(1968, 12, 24), 'color': 'red'}, 'p_6697': {'id': 'p_6697', 'firstname': 'Burkhard', 'lastname': 'Stangl', 'date_of_birth': datetime.date(1967, 12, 12), 'color': 'red'}, 'p_6698': {'id': 'p_6698', 'firstname': 'Peter', 'lastname': 'Geibel', 'date_of_birth': datetime.date(1966, 10, 3), 'color': 'red'}, 'p_6699': {'id': 'p_6699', 'firstname': 'Stefanie', 'lastname': 'Granitza', 'date_of_birth': datetime.date(1972, 2, 2), 'color': 'red'}, 'p_6700': {'id': 'p_6700', 'firstname': 'David', 'lastname': 'Granitza-Schultz', 'date_of_birth': datetime.date(1973, 2, 1), 'color': 'red'}, 'p_6701': {'id': 'p_6701', 'firstname': 'Stephanie', 'lastname': 'Reimert', 'date_of_birth': datetime.date(1969, 11, 20), 'color': 'red'}, 'p_6702': {'id': 'p_6702', 'firstname': 'Ellen', 'lastname': 'Hautmann', 'date_of_birth': datetime.date(1961, 6, 2), 'color': 'red'}, 'p_6703': {'id': 'p_6703', 'firstname': 'Jens', 'lastname': 'Kaffenberger', 'date_of_birth': datetime.date(1971, 3, 6), 'color': 'red'}, 'p_6704': {'id': 'p_6704', 'firstname': 'Dandy', 'lastname': 'Kleybrink', 'date_of_birth': datetime.date(1975, 11, 8), 'color': 'red'}, 'p_6705': {'id': 'p_6705', 'firstname': 'Lia', 'lastname': 'Kleybrink', 'date_of_birth': datetime.date(1981, 10, 25), 'color': 'red'}, 'p_6706': {'id': 'p_6706', 'firstname': 'Martin', 'lastname': 'Langendorf', 'date_of_birth': datetime.date(1975, 9, 18), 'color': 'red'}, 'p_6707': {'id': 'p_6707', 'firstname': 'Mathilde', 'lastname': 'Langendorf', 'date_of_birth': datetime.date(1976, 8, 10), 'color': 'red'}, 'p_6708': {'id': 'p_6708', 'firstname': 'Peter', 'lastname': 'Maier-Stein', 'date_of_birth': datetime.date(1956, 2, 14), 'color': 'red'}, 'p_6709': {'id': 'p_6709', 'firstname': 'Runhao', 'lastname': 'Min', 'date_of_birth': datetime.date(1979, 2, 25), 'color': 'red'}, 'p_6710': {'id': 'p_6710', 'firstname': 'Thomas', 'lastname': 'Neumann', 'date_of_birth': datetime.date(1968, 1, 9), 'color': 'red'}, 'p_6711': {'id': 'p_6711', 'firstname': 'Gerd', 'lastname': 'Pasemann', 'date_of_birth': datetime.date(1951, 2, 1), 'color': 'red'}, 'p_6712': {'id': 'p_6712', 'firstname': 'Jan', 'lastname': 'Reimert', 'date_of_birth': datetime.date(1962, 3, 6), 'color': 'red'}, 'p_6713': {'id': 'p_6713', 'firstname': 'Helene', 'lastname': 'Renger', 'date_of_birth': datetime.date(1972, 3, 21), 'color': 'red'}, 'p_6714': {'id': 'p_6714', 'firstname': 'Volker', 'lastname': 'Stampe', 'date_of_birth': datetime.date(1969, 5, 10), 'color': 'red'}, 'p_6715': {'id': 'p_6715', 'firstname': 'Gudrun', 'lastname': 'Stein', 'date_of_birth': datetime.date(1957, 5, 29), 'color': 'red'}, 'p_6716': {'id': 'p_6716', 'firstname': 'York', 'lastname': 'von Falkenhayn', 'date_of_birth': datetime.date(1974, 6, 7), 'color': 'red'}, 'p_6717': {'id': 'p_6717', 'firstname': 'Oscar', 'lastname': 'Zach', 'date_of_birth': datetime.date(1982, 3, 17), 'color': 'red'}, 'p_6718': {'id': 'p_6718', 'firstname': 'Doris', 'lastname': 'Bischler', 'date_of_birth': datetime.date(1970, 3, 21), 'color': 'red'}, 'p_6719': {'id': 'p_6719', 'firstname': 'Markus', 'lastname': 'Bischof', 'date_of_birth': datetime.date(1973, 1, 28), 'color': 'red'}, 'p_6720': {'id': 'p_6720', 'firstname': 'Matthias', 'lastname': 'Kühnle', 'date_of_birth': datetime.date(1964, 9, 16), 'color': 'red'}, 'p_6721': {'id': 'p_6721', 'firstname': 'Karina', 'lastname': 'Schimert-zu Hohenlohe', 'date_of_birth': datetime.date(1968, 1, 7), 'color': 'red'}, 'p_6722': {'id': 'p_6722', 'firstname': 'Cristiana', 'lastname': 'da Silva', 'date_of_birth': datetime.date(1966, 12, 10), 'color': 'red'}, 'p_6723': {'id': 'p_6723', 'firstname': 'Jörg', 'lastname': 'Löbig', 'date_of_birth': datetime.date(1966, 2, 26), 'color': 'red'}, 'p_6724': {'id': 'p_6724', 'firstname': 'Stefan', 'lastname': 'Krause', 'date_of_birth': datetime.date(1965, 4, 25), 'color': 'red'}, 'p_6725': {'id': 'p_6725', 'firstname': 'Dirk', 'lastname': 'Kudlicz', 'date_of_birth': datetime.date(1971, 3, 7), 'color': 'red'}, 'p_6726': {'id': 'p_6726', 'firstname': 'Rolf', 'lastname': 'Lange', 'date_of_birth': datetime.date(1974, 3, 15), 'color': 'red'}, 'p_6727': {'id': 'p_6727', 'firstname': 'Andreas', 'lastname': 'Veauthier', 'date_of_birth': datetime.date(1965, 7, 22), 'color': 'red'}, 'p_6728': {'id': 'p_6728', 'firstname': 'Sebastian', 'lastname': 'Bukow', 'date_of_birth': datetime.date(1977, 6, 17), 'color': 'red'}, 'p_6729': {'id': 'p_6729', 'firstname': 'Arndt', 'lastname': 'Bercher', 'date_of_birth': datetime.date(1966, 10, 10), 'color': 'red'}, 'p_6730': {'id': 'p_6730', 'firstname': 'Nicole', 'lastname': 'Bercher-von Jordan', 'date_of_birth': datetime.date(1966, 9, 17), 'color': 'red'}, 'p_6731': {'id': 'p_6731', 'firstname': 'Robert', 'lastname': 'Birker', 'date_of_birth': datetime.date(1965, 10, 15), 'color': 'red'}, 'p_6732': {'id': 'p_6732', 'firstname': 'Caprice', 'lastname': 'Birker', 'date_of_birth': datetime.date(1967, 9, 3), 'color': 'red'}, 'p_6733': {'id': 'p_6733', 'firstname': 'Nicola', 'lastname': 'Brase', 'date_of_birth': datetime.date(1962, 5, 16), 'color': 'red'}, 'p_6734': {'id': 'p_6734', 'firstname': 'Stephan', 'lastname': 'DuCharme', 'date_of_birth': datetime.date(1964, 4, 20), 'color': 'red'}, 'p_6735': {'id': 'p_6735', 'firstname': 'Claudia', 'lastname': 'Kaloff', 'date_of_birth': datetime.date(1958, 9, 13), 'color': 'red'}, 'p_6736': {'id': 'p_6736', 'firstname': 'Vladimir', 'lastname': 'Kotiasvili', 'date_of_birth': datetime.date(1954, 2, 14), 'color': 'red'}, 'p_6737': {'id': 'p_6737', 'firstname': 'Otto', 'lastname': 'Kückmann', 'date_of_birth': datetime.date(1957, 7, 22), 'color': 'red'}, 'p_6738': {'id': 'p_6738', 'firstname': 'Winrich', 'lastname': 'Kyas', 'date_of_birth': datetime.date(1953, 3, 7), 'color': 'red'}, 'p_6739': {'id': 'p_6739', 'firstname': 'Sylke', 'lastname': 'Kyas-Litt', 'date_of_birth': datetime.date(1954, 6, 18), 'color': 'red'}, 'p_6740': {'id': 'p_6740', 'firstname': 'Holger', 'lastname': 'Matthies', 'date_of_birth': datetime.date(1961, 1, 30), 'color': 'red'}, 'p_6741': {'id': 'p_6741', 'firstname': 'Roland', 'lastname': 'Mohr', 'date_of_birth': datetime.date(1982, 3, 8), 'color': 'red'}, 'p_6742': {'id': 'p_6742', 'firstname': 'Harald', 'lastname': 'Rammler', 'date_of_birth': datetime.date(1967, 5, 10), 'color': 'red'}, 'p_6743': {'id': 'p_6743', 'firstname': 'Seyed Mohammad', 'lastname': 'Seyed Makki', 'date_of_birth': datetime.date(1958, 9, 23), 'color': 'red'}, 'p_6744': {'id': 'p_6744', 'firstname': 'Brigitte', 'lastname': 'Trattner', 'date_of_birth': datetime.date(1965, 11, 15), 'color': 'red'}, 'p_6745': {'id': 'p_6745', 'firstname': 'Christine', 'lastname': 'Buchheit', 'date_of_birth': datetime.date(1967, 9, 15), 'color': 'red'}, 'p_6746': {'id': 'p_6746', 'firstname': 'Horand', 'lastname': 'Knaup', 'date_of_birth': datetime.date(1959, 2, 9), 'color': 'red'}, 'p_6747': {'id': 'p_6747', 'firstname': 'Nevin', 'lastname': 'Dogan', 'date_of_birth': datetime.date(1976, 12, 13), 'color': 'red'}, 'p_6748': {'id': 'p_6748', 'firstname': 'Levent', 'lastname': 'Dogan', 'date_of_birth': datetime.date(1972, 7, 29), 'color': 'red'}, 'p_6749': {'id': 'p_6749', 'firstname': 'Elisabeth', 'lastname': 'Dubbers', 'date_of_birth': datetime.date(1983, 1, 10), 'color': 'red'}, 'p_6750': {'id': 'p_6750', 'firstname': 'Stella', 'lastname': 'Roidi-Schnorrenberg', 'date_of_birth': datetime.date(1983, 1, 24), 'color': 'red'}, 'p_6751': {'id': 'p_6751', 'firstname': 'Julius', 'lastname': 'Schellmann', 'date_of_birth': datetime.date(1980, 6, 2), 'color': 'red'}, 'p_6752': {'id': 'p_6752', 'firstname': 'Ekkehard', 'lastname': 'Roidis-Schnorrenberg', 'date_of_birth': datetime.date(1977, 1, 3), 'color': 'red'}, 'p_6753': {'id': 'p_6753', 'firstname': 'Michael', 'lastname': 'Lefmann', 'date_of_birth': datetime.date(1966, 2, 16), 'color': 'red'}, 'p_6754': {'id': 'p_6754', 'firstname': 'Wolf Christian', 'lastname': 'Boes', 'date_of_birth': datetime.date(1974, 6, 15), 'color': 'red'}, 'p_6755': {'id': 'p_6755', 'firstname': 'Rupert', 'lastname': 'Dörfler', 'date_of_birth': datetime.date(1967, 8, 6), 'color': 'red'}, 'p_6756': {'id': 'p_6756', 'firstname': 'Carsten', 'lastname': 'Eckert', 'date_of_birth': datetime.date(1965, 2, 27), 'color': 'red'}, 'p_6757': {'id': 'p_6757', 'firstname': 'Hans Günter', 'lastname': 'Klein', 'date_of_birth': datetime.date(1951, 3, 14), 'color': 'red'}, 'p_6758': {'id': 'p_6758', 'firstname': 'Peter', 'lastname': 'Molitor', 'date_of_birth': datetime.date(1954, 10, 21), 'color': 'red'}, 'p_6759': {'id': 'p_6759', 'firstname': 'Hasan Ali', 'lastname': 'San', 'date_of_birth': datetime.date(1967, 10, 10), 'color': 'red'}, 'p_6760': {'id': 'p_6760', 'firstname': 'Zeynep', 'lastname': 'San', 'date_of_birth': datetime.date(1971, 9, 15), 'color': 'red'}, 'p_6761': {'id': 'p_6761', 'firstname': 'Biljana', 'lastname': 'Boes', 'date_of_birth': datetime.date(1979, 2, 13), 'color': 'red'}, 'p_6762': {'id': 'p_6762', 'firstname': 'Florian', 'lastname': 'Will', 'date_of_birth': datetime.date(1974, 5, 30), 'color': 'red'}, 'p_6763': {'id': 'p_6763', 'firstname': 'Michael', 'lastname': 'Narazny', 'date_of_birth': datetime.date(1951, 10, 27), 'color': 'red'}, 'p_6764': {'id': 'p_6764', 'firstname': 'Angelika', 'lastname': 'Weidemann', 'date_of_birth': datetime.date(1954, 4, 3), 'color': 'red'}, 'p_6765': {'id': 'p_6765', 'firstname': 'Norbert', 'lastname': 'Brömme', 'date_of_birth': datetime.date(1969, 5, 28), 'color': 'red'}, 'p_6766': {'id': 'p_6766', 'firstname': 'Thomas', 'lastname': 'Eggers', 'date_of_birth': datetime.date(1970, 6, 4), 'color': 'red'}, 'p_6767': {'id': 'p_6767', 'firstname': 'Katja', 'lastname': 'Simons', 'date_of_birth': datetime.date(1970, 3, 28), 'color': 'red'}, 'p_6768': {'id': 'p_6768', 'firstname': 'Nicholas', 'lastname': 'Whitaker', 'date_of_birth': datetime.date(1980, 5, 29), 'color': 'red'}, 'p_6769': {'id': 'p_6769', 'firstname': 'Stephan', 'lastname': 'Kühne', 'date_of_birth': datetime.date(1960, 9, 16), 'color': 'red'}, 'p_6770': {'id': 'p_6770', 'firstname': 'Hans-Jürgen', 'lastname': 'Braun', 'date_of_birth': datetime.date(1966, 6, 16), 'color': 'red'}, 'p_6771': {'id': 'p_6771', 'firstname': 'Georg', 'lastname': 'Denninger', 'date_of_birth': datetime.date(1961, 4, 21), 'color': 'red'}, 'p_6772': {'id': 'p_6772', 'firstname': 'Rebekka', 'lastname': 'Denninger', 'date_of_birth': datetime.date(1992, 4, 1), 'color': 'red'}, 'p_6773': {'id': 'p_6773', 'firstname': 'Ulrich', 'lastname': 'Müller Brito', 'date_of_birth': datetime.date(1958, 6, 2), 'color': 'red'}, 'p_6774': {'id': 'p_6774', 'firstname': 'Michael', 'lastname': 'Rost', 'date_of_birth': datetime.date(1960, 12, 13), 'color': 'red'}, 'p_6775': {'id': 'p_6775', 'firstname': 'Stefan', 'lastname': 'Sommer', 'date_of_birth': datetime.date(1957, 7, 29), 'color': 'red'}, 'p_6776': {'id': 'p_6776', 'firstname': 'Margarete', 'lastname': 'Stephan', 'date_of_birth': datetime.date(1963, 1, 23), 'color': 'red'}, 'p_6777': {'id': 'p_6777', 'firstname': 'Frank', 'lastname': 'Weber', 'date_of_birth': datetime.date(1962, 8, 24), 'color': 'red'}, 'p_6778': {'id': 'p_6778', 'firstname': 'Michael', 'lastname': 'Wrede', 'date_of_birth': datetime.date(1954, 2, 27), 'color': 'red'}, 'p_6779': {'id': 'p_6779', 'firstname': 'Reinhard', 'lastname': 'Gundelwein', 'date_of_birth': datetime.date(1959, 8, 19), 'color': 'red'}, 'p_6780': {'id': 'p_6780', 'firstname': 'Philipp', 'lastname': 'Kühne', 'date_of_birth': datetime.date(1927, 9, 3), 'color': 'red'}, 'p_6781': {'id': 'p_6781', 'firstname': 'Sabrina', 'lastname': 'Meyer', 'date_of_birth': datetime.date(1983, 5, 29), 'color': 'red'}, 'p_6782': {'id': 'p_6782', 'firstname': 'Helga', 'lastname': 'Pilz', 'date_of_birth': datetime.date(1966, 10, 20), 'color': 'red'}, 'p_6783': {'id': 'p_6783', 'firstname': 'Dieter', 'lastname': 'Pilz', 'date_of_birth': datetime.date(1963, 9, 20), 'color': 'red'}, 'p_6784': {'id': 'p_6784', 'firstname': 'Elisabeth', 'lastname': 'Schaper', 'date_of_birth': datetime.date(1956, 9, 5), 'color': 'red'}, 'p_6785': {'id': 'p_6785', 'firstname': 'Thomas', 'lastname': 'Schaper', 'date_of_birth': datetime.date(1956, 2, 26), 'color': 'red'}, 'p_6786': {'id': 'p_6786', 'firstname': 'Peter', 'lastname': 'Buntrock', 'date_of_birth': datetime.date(1961, 12, 5), 'color': 'red'}, 'p_6787': {'id': 'p_6787', 'firstname': 'Angela', 'lastname': 'Hoffmann', 'date_of_birth': datetime.date(1963, 1, 30), 'color': 'red'}, 'p_6788': {'id': 'p_6788', 'firstname': 'Alisa', 'lastname': 'Krasylna', 'date_of_birth': datetime.date(1994, 4, 19), 'color': 'red'}, 'p_6789': {'id': 'p_6789', 'firstname': 'Kirsten', 'lastname': 'Peters', 'date_of_birth': datetime.date(1966, 3, 9), 'color': 'red'}, 'p_6790': {'id': 'p_6790', 'firstname': 'Oda', 'lastname': 'Hagemeier', 'date_of_birth': datetime.date(1971, 12, 24), 'color': 'red'}, 'p_6791': {'id': 'p_6791', 'firstname': 'Yuyi', 'lastname': 'Huang', 'date_of_birth': datetime.date(1954, 5, 5), 'color': 'red'}, 'p_6792': {'id': 'p_6792', 'firstname': 'Erich', 'lastname': 'Paproth', 'date_of_birth': datetime.date(1955, 11, 21), 'color': 'red'}, 'p_6793': {'id': 'p_6793', 'firstname': 'Annette', 'lastname': 'Wolpert', 'date_of_birth': datetime.date(1971, 7, 30), 'color': 'red'}, 'p_6794': {'id': 'p_6794', 'firstname': 'Sebastian', 'lastname': 'Aman', 'date_of_birth': datetime.date(1978, 6, 14), 'color': 'red'}, 'p_6795': {'id': 'p_6795', 'firstname': 'Andreas Roland', 'lastname': 'Mollenkopf', 'date_of_birth': datetime.date(1979, 4, 3), 'color': 'red'}, 'p_6796': {'id': 'p_6796', 'firstname': 'Barbara', 'lastname': 'Doll', 'date_of_birth': datetime.date(1969, 5, 7), 'color': 'red'}, 'p_6797': {'id': 'p_6797', 'firstname': 'Winfried', 'lastname': 'Rademacher', 'date_of_birth': datetime.date(1955, 7, 22), 'color': 'red'}, 'p_6798': {'id': 'p_6798', 'firstname': 'Markus', 'lastname': 'Trefz', 'date_of_birth': datetime.date(1965, 12, 14), 'color': 'red'}, 'p_6799': {'id': 'p_6799', 'firstname': 'Sabine', 'lastname': 'Trefz', 'date_of_birth': datetime.date(1971, 7, 8), 'color': 'red'}, 'p_6800': {'id': 'p_6800', 'firstname': 'Jürgen', 'lastname': 'Wenzler', 'date_of_birth': datetime.date(1969, 6, 7), 'color': 'red'}, 'p_6801': {'id': 'p_6801', 'firstname': 'Alexander', 'lastname': 'Schwardmann', 'date_of_birth': datetime.date(1977, 4, 12), 'color': 'red'}, 'p_6802': {'id': 'p_6802', 'firstname': 'Miron', 'lastname': 'Chestakov', 'date_of_birth': datetime.date(1998, 11, 30), 'color': 'red'}, 'p_6803': {'id': 'p_6803', 'firstname': 'Lev', 'lastname': 'Chestakov', 'date_of_birth': datetime.date(1992, 9, 25), 'color': 'red'}, 'p_6804': {'id': 'p_6804', 'firstname': 'Raphaela', 'lastname': 'Meis', 'date_of_birth': datetime.date(1981, 2, 26), 'color': 'red'}, 'p_6805': {'id': 'p_6805', 'firstname': 'Matthias', 'lastname': 'Meis', 'date_of_birth': datetime.date(1981, 6, 4), 'color': 'red'}, 'p_6806': {'id': 'p_6806', 'firstname': 'Anja', 'lastname': 'Markfort', 'date_of_birth': datetime.date(1969, 6, 30), 'color': 'red'}, 'p_6807': {'id': 'p_6807', 'firstname': 'Sibille', 'lastname': 'Allgayer', 'date_of_birth': datetime.date(1982, 4, 7), 'color': 'red'}, 'p_6808': {'id': 'p_6808', 'firstname': 'Helmut', 'lastname': 'Dietrich', 'date_of_birth': datetime.date(1954, 9, 26), 'color': 'red'}, 'p_6809': {'id': 'p_6809', 'firstname': 'Richard', 'lastname': 'Kurka', 'date_of_birth': datetime.date(1984, 10, 3), 'color': 'red'}, 'p_6810': {'id': 'p_6810', 'firstname': 'Sarah Julia', 'lastname': 'Lee', 'date_of_birth': datetime.date(1981, 5, 9), 'color': 'red'}, 'p_6811': {'id': 'p_6811', 'firstname': 'Lena Eleonore', 'lastname': 'Staiger', 'date_of_birth': datetime.date(1994, 7, 17), 'color': 'red'}, 'p_6812': {'id': 'p_6812', 'firstname': 'Maja Bernadette', 'lastname': 'Staiger', 'date_of_birth': datetime.date(1996, 4, 20), 'color': 'red'}, 'p_6813': {'id': 'p_6813', 'firstname': 'Benjamin', 'lastname': 'Rohé', 'date_of_birth': datetime.date(1981, 6, 15), 'color': 'red'}, 'p_6814': {'id': 'p_6814', 'firstname': 'Jörn', 'lastname': 'Averkamp', 'date_of_birth': datetime.date(1988, 9, 1), 'color': 'red'}, 'p_6815': {'id': 'p_6815', 'firstname': 'Thomas', 'lastname': 'Grube', 'date_of_birth': datetime.date(1968, 11, 20), 'color': 'red'}, 'p_6816': {'id': 'p_6816', 'firstname': 'Yi', 'lastname': 'Li', 'date_of_birth': datetime.date(1964, 7, 17), 'color': 'red'}, 'p_6817': {'id': 'p_6817', 'firstname': 'Natthinee', 'lastname': 'Mohr', 'date_of_birth': datetime.date(1978, 11, 5), 'color': 'red'}, 'p_6818': {'id': 'p_6818', 'firstname': 'Sonia Susanna', 'lastname': 'Mohrmann Oviedo', 'date_of_birth': datetime.date(1986, 8, 17), 'color': 'red'}, 'p_6819': {'id': 'p_6819', 'firstname': 'Florian Peter', 'lastname': 'Pröscholdt', 'date_of_birth': datetime.date(1983, 4, 29), 'color': 'red'}, 'p_6820': {'id': 'p_6820', 'firstname': 'Manuel', 'lastname': 'Scholten', 'date_of_birth': datetime.date(1983, 3, 21), 'color': 'red'}, 'p_6821': {'id': 'p_6821', 'firstname': 'Franziska Luise Dorothea', 'lastname': 'Weller', 'date_of_birth': datetime.date(1984, 2, 20), 'color': 'red'}, 'c_2316': {'id': 'c_2316', 'name': 'Nordex-Glas oHG', 'color': 'blue'}, 'p_7347': {'id': 'p_7347', 'firstname': 'Ali Hakan', 'lastname': 'Sualp', 'date_of_birth': datetime.date(1961, 3, 31), 'color': 'red'}, 'p_7348': {'id': 'p_7348', 'firstname': 'Sevgi', 'lastname': 'Karaarslan', 'date_of_birth': datetime.date(1984, 3, 14), 'color': 'red'}, 'c_2444': {'id': 'c_2444', 'name': '\"PETER G. OHG,\" - Men & Women', 'color': 'blue'}, 'p_7647': {'id': 'p_7647', 'firstname': 'Leonie', 'lastname': 'Greis', 'date_of_birth': datetime.date(1949, 8, 6), 'color': 'red'}, 'p_7648': {'id': 'p_7648', 'firstname': 'Daniela', 'lastname': 'Greis', 'date_of_birth': datetime.date(1968, 4, 18), 'color': 'red'}, 'c_2470': {'id': 'c_2470', 'name': 'REWE-Markt Ströer OHG', 'color': 'blue'}, 'p_7679': {'id': 'p_7679', 'firstname': 'Silvio', 'lastname': 'Ströer', 'date_of_birth': datetime.date(1976, 4, 14), 'color': 'red'}, 'c_2538': {'id': 'c_2538', 'name': 'Sartorius KG', 'color': 'blue'}, 'p_7864': {'id': 'p_7864', 'firstname': 'Meik', 'lastname': 'Sartorius', 'date_of_birth': datetime.date(1981, 7, 10), 'color': 'red'}, 'c_307': {'id': 'c_307', 'name': 'Aurubis AG', 'color': 'blue'}, 'c_258': {'id': 'c_258', 'name': 'Aurubis Stolberg GmbH & Co. KG', 'color': 'blue'}, 'c_353': {'id': 'c_353', 'name': 'Aurubis Stolberg Verwaltungs-GmbH', 'color': 'blue'}, 'c_370': {'id': 'c_370', 'name': 'Aurubis Stolberg Asset GmbH & Co. KG', 'color': 'blue'}, 'c_371': {'id': 'c_371', 'name': 'Aurubis Stolberg Asset Verwaltungs-GmbH', 'color': 'blue'}, 'c_435': {'id': 'c_435', 'name': 'BayWa r.e. Wind Verwaltungs GmbH', 'color': 'blue'}, 'c_403': {'id': 'c_403', 'name': 'BayWa r.e. Windparkportfolio 1 GmbH & Co. KG', 'color': 'blue'}, 'c_455': {'id': 'c_455', 'name': 'BayWa r.e. Wind 20+ GmbH', 'color': 'blue'}, 'c_400': {'id': 'c_400', 'name': 'BayWa BGM Verwaltungs GmbH', 'color': 'blue'}, 'c_482': {'id': 'c_482', 'name': 'BayWa Bau- & Gartenmärkte GmbH & Co. KG', 'color': 'blue'}, 'c_633': {'id': 'c_633', 'name': 'BayWa Pensionsverwaltung GmbH', 'color': 'blue'}, 'c_572': {'id': 'c_572', 'name': 'Covestro Intellectual Property Verwaltungs GmbH', 'color': 'blue'}, 'c_498': {'id': 'c_498', 'name': 'Covestro Intellectual Property GmbH & Co. KG', 'color': 'blue'}, 'c_484': {'id': 'c_484', 'name': 'Covestro Deutschland AG', 'color': 'blue'}, 'c_494': {'id': 'c_494', 'name': 'Brenntag Vermögensmanagement GmbH', 'color': 'blue'}, 'c_536': {'id': 'c_536', 'name': 'Brenntag European Services GmbH & Co. KG', 'color': 'blue'}, 'c_568': {'id': 'c_568', 'name': 'Brenntag Beteiligungs GmbH', 'color': 'blue'}, 'c_493': {'id': 'c_493', 'name': 'Brenntag Foreign Holding GmbH', 'color': 'blue'}, 'c_539': {'id': 'c_539', 'name': 'CM Komplementär 03-018 GmbH & Co. KG', 'color': 'blue'}, 'c_406': {'id': 'c_406', 'name': 'BMW INTEC Beteiligungs GmbH', 'color': 'blue'}, 'c_567': {'id': 'c_567', 'name': 'BMW Beteiligungs GmbH & Co. KG', 'color': 'blue'}, 'c_459': {'id': 'c_459', 'name': 'BMW Vermögensverwaltungs GmbH', 'color': 'blue'}, 'c_582': {'id': 'c_582', 'name': 'CM Komplementär 03-019 GmbH & Co. KG', 'color': 'blue'}, 'c_587': {'id': 'c_587', 'name': 'BayWa r.e. Asset Verwaltungs GmbH', 'color': 'blue'}, 'c_588': {'id': 'c_588', 'name': 'BayWa r.e. Solardächer II GmbH & Co. KG', 'color': 'blue'}, 'c_401': {'id': 'c_401', 'name': 'BayWa r.e. AG', 'color': 'blue'}, 'c_487': {'id': 'c_487', 'name': 'Covestro Procurement Services Verwaltungs GmbH', 'color': 'blue'}, 'c_610': {'id': 'c_610', 'name': 'Covestro Procurement Services GmbH & Co. KG', 'color': 'blue'}, 'c_704': {'id': 'c_704', 'name': 'Deutsche Post Adress Geschäftsführungs GmbH', 'color': 'blue'}, 'c_667': {'id': 'c_667', 'name': 'Deutsche Post Adress GmbH & Co. KG', 'color': 'blue'}, 'c_666': {'id': 'c_666', 'name': 'Deutsche Post Adress Beteiligungsgesellschaft mbH', 'color': 'blue'}, 'c_709': {'id': 'c_709', 'name': 'Deutsche Post Verwaltungs Objekt GmbH', 'color': 'blue'}, 'c_732': {'id': 'c_732', 'name': 'Deutsche Post Pensions-Treuhand GmbH & Co. KG', 'color': 'blue'}, 'c_765': {'id': 'c_765', 'name': 'Deutsche Post AG', 'color': 'blue'}, 'c_724': {'id': 'c_724', 'name': 'Deutsche Wohnen Zweite Fondsbeteiligungs GmbH', 'color': 'blue'}, 'c_742': {'id': 'c_742', 'name': 'Deutsche Wohnen Beteiligungsverwaltungs GmbH & Co. KG', 'color': 'blue'}, 'c_746': {'id': 'c_746', 'name': 'Deutsche Wohnen Fondsbeteiligungs GmbH', 'color': 'blue'}, 'c_841': {'id': 'c_841', 'name': 'EnBW Real Estate GmbH', 'color': 'blue'}, 'c_752': {'id': 'c_752', 'name': 'Der neue Stöckach GmbH & Co KG', 'color': 'blue'}, 'c_2293': {'id': 'c_2293', 'name': 'Neckarwerke Stuttgart GmbH', 'color': 'blue'}, 'c_925': {'id': 'c_925', 'name': 'EnBW He Dreiht Management GmbH', 'color': 'blue'}, 'c_839': {'id': 'c_839', 'name': 'EnBW He Dreiht GmbH & Co. KG', 'color': 'blue'}, 'c_852': {'id': 'c_852', 'name': 'EnBW Offshore 4 GmbH', 'color': 'blue'}, 'c_954': {'id': 'c_954', 'name': 'EnBW Solar Verwaltungsgesellschaft mbH', 'color': 'blue'}, 'c_843': {'id': 'c_843', 'name': 'EnBW Solarpark Lindenau GmbH & Co. KG', 'color': 'blue'}, 'c_900': {'id': 'c_900', 'name': 'EnBW Solar GmbH', 'color': 'blue'}, 'c_859': {'id': 'c_859', 'name': 'EnBW Solarpark Gickelfeld GmbH & Co. KG', 'color': 'blue'}, 'c_868': {'id': 'c_868', 'name': 'EnBW City GmbH & Co. KG', 'color': 'blue'}, 'c_850': {'id': 'c_850', 'name': 'EnBW Immobilienbeteiligungen GmbH', 'color': 'blue'}, 'c_871': {'id': 'c_871', 'name': 'EnBW Solarpark Gückelhirn GmbH & Co. KG', 'color': 'blue'}, 'c_879': {'id': 'c_879', 'name': 'EnBW Solarpark Sonnewalde GmbH & Co. KG', 'color': 'blue'}, 'c_908': {'id': 'c_908', 'name': 'EnBW Solarpark Kroppen GmbH & Co. KG', 'color': 'blue'}, 'c_948': {'id': 'c_948', 'name': 'EnBW Energie Baden-Württemberg AG', 'color': 'blue'}, 'c_930': {'id': 'c_930', 'name': 'EnBW Übertragungsnetz Immobiliengesellschaft mbH & Co. KG', 'color': 'blue'}, 'c_846': {'id': 'c_846', 'name': 'EnBW Übertragungsnetz Immobilien Verwaltungsgesellschaft mbH', 'color': 'blue'}, 'c_832': {'id': 'c_832', 'name': 'EnBW WindInvest Management GmbH', 'color': 'blue'}, 'c_939': {'id': 'c_939', 'name': 'EnBW WindInvest GmbH & Co. KG', 'color': 'blue'}, 'c_845': {'id': 'c_845', 'name': 'EnBW Windkraftprojekte GmbH', 'color': 'blue'}, 'c_867': {'id': 'c_867', 'name': 'EnBW Baltic 1 Verwaltungsgesellschaft mbH', 'color': 'blue'}, 'c_949': {'id': 'c_949', 'name': 'EnBW Baltic 1 GmbH & Co. KG', 'color': 'blue'}, 'c_981': {'id': 'c_981', 'name': 'EnBW Offshore 1 GmbH', 'color': 'blue'}, 'c_985': {'id': 'c_985', 'name': 'EnBW SunInvest Management GmbH', 'color': 'blue'}, 'c_955': {'id': 'c_955', 'name': 'EnBW SunInvest GmbH & Co. KG', 'color': 'blue'}, 'c_896': {'id': 'c_896', 'name': 'EnBW Baltic 2 Management GmbH', 'color': 'blue'}, 'c_967': {'id': 'c_967', 'name': 'EnBW Baltic 2 GmbH & Co. KG', 'color': 'blue'}, 'c_840': {'id': 'c_840', 'name': 'EnBW Offshore 2 GmbH', 'color': 'blue'}, 'c_971': {'id': 'c_971', 'name': 'EnBW Solarpark Rot an der Rot GmbH & Co. KG', 'color': 'blue'}, 'c_906': {'id': 'c_906', 'name': 'EnBW Albatros Management GmbH', 'color': 'blue'}, 'c_978': {'id': 'c_978', 'name': 'EnBW Albatros GmbH & Co. KG', 'color': 'blue'}, 'c_811': {'id': 'c_811', 'name': 'EnBW Offshore 3 GmbH', 'color': 'blue'}, 'c_983': {'id': 'c_983', 'name': 'EnBW Solarpark Emmingen-Liptingen GmbH & Co. KG', 'color': 'blue'}, 'c_984': {'id': 'c_984', 'name': 'EnBW Solarpark Groß Lübbenau GmbH & Co. KG', 'color': 'blue'}, 'c_634': {'id': 'c_634', 'name': 'BayWa r.e. EMEA IPP Holding GmbH', 'color': 'blue'}, 'c_991': {'id': 'c_991', 'name': 'Dörenhagen Windenergieanlagen GmbH & Co. KG', 'color': 'blue'}, 'c_600': {'id': 'c_600', 'name': 'BayWa r.e. IPP Verwaltungs GmbH', 'color': 'blue'}, 'c_996': {'id': 'c_996', 'name': 'EnBW Solarpark Göritz GmbH & Co. KG', 'color': 'blue'}, 'c_1191': {'id': 'c_1191', 'name': 'E.ON Real Estate GmbH', 'color': 'blue'}, 'c_1004': {'id': 'c_1004', 'name': 'E.ON Grund&Boden GmbH & Co. KG', 'color': 'blue'}, 'c_1112': {'id': 'c_1112', 'name': 'E.ON Grund&Boden Beteiligungs GmbH', 'color': 'blue'}, 'c_1009': {'id': 'c_1009', 'name': 'EVGA Grundstücks- und Gebäudemanagement GmbH & Co. KG', 'color': 'blue'}, 'c_1220': {'id': 'c_1220', 'name': 'Fielmann Aktiengesellschaft', 'color': 'blue'}, 'c_1011': {'id': 'c_1011', 'name': 'Fielmann AG & Co. Brackwede KG', 'color': 'blue'}, 'c_1048': {'id': 'c_1048', 'name': 'Fielmann Finanzservice GmbH', 'color': 'blue'}, 'c_1012': {'id': 'c_1012', 'name': 'Fielmann AG & Co Bramfeld KG', 'color': 'blue'}, 'c_1013': {'id': 'c_1013', 'name': 'Fielmann AG & Co. Centrum OHG', 'color': 'blue'}, 'c_1014': {'id': 'c_1014', 'name': 'Fielmann AG & Co. Elberfeld OHG', 'color': 'blue'}, 'c_1015': {'id': 'c_1015', 'name': 'Fielmann AG & Co. Hiltrup OHG', 'color': 'blue'}, 'c_1016': {'id': 'c_1016', 'name': 'Fielmann AG & Co. Ochsenzoll OHG', 'color': 'blue'}, 'c_1017': {'id': 'c_1017', 'name': 'Fielmann AG & Co. Rahlstedt OHG', 'color': 'blue'}, 'c_1018': {'id': 'c_1018', 'name': 'Fielmann AG & Co. Rethelstraße OHG', 'color': 'blue'}, 'c_1027': {'id': 'c_1027', 'name': 'Fielmann AG & Co. City-Arkaden OHG', 'color': 'blue'}, 'c_1030': {'id': 'c_1030', 'name': 'Fielmann AG & Co. Mülheim OHG', 'color': 'blue'}, 'c_1031': {'id': 'c_1031', 'name': 'Fielmann AG & Co. Oberkassel OHG', 'color': 'blue'}, 'c_1045': {'id': 'c_1045', 'name': 'Fielmann AG & Co. Eimsbüttel OHG', 'color': 'blue'}, 'c_1046': {'id': 'c_1046', 'name': 'Fielmann AG & Co. Venloer Straße OHG', 'color': 'blue'}, 'c_1047': {'id': 'c_1047', 'name': 'Fielmann AG & Co. Wandsbek OHG', 'color': 'blue'}, 'c_1062': {'id': 'c_1062', 'name': 'Fielmann AG & Co. Essen-Steele OHG', 'color': 'blue'}, 'c_1064': {'id': 'c_1064', 'name': 'Fielmann AG & Co. Jahnplatz OHG', 'color': 'blue'}, 'c_1065': {'id': 'c_1065', 'name': 'Fielmann AG & Co. OHG', 'color': 'blue'}, 'c_1066': {'id': 'c_1066', 'name': 'Fielmann AG & Co. oHG Kalk', 'color': 'blue'}, 'c_1067': {'id': 'c_1067', 'name': 'Fielmann AG & Co. Ottensen OHG', 'color': 'blue'}, 'c_1079': {'id': 'c_1079', 'name': 'Fielmann AG & Co. am Markt KG', 'color': 'blue'}, 'c_1080': {'id': 'c_1080', 'name': 'Fielmann AG & Co. Paunsdorf-Center OHG', 'color': 'blue'}, 'c_1081': {'id': 'c_1081', 'name': 'Fielmann AG & Co-Volksdorf OHG', 'color': 'blue'}, 'c_1091': {'id': 'c_1091', 'name': 'Fielmann AG & Co. oHG City-Galerie', 'color': 'blue'}, 'c_1092': {'id': 'c_1092', 'name': 'Fielmann AG & Co. Othmarschen OHG', 'color': 'blue'}, 'c_1229': {'id': 'c_1229', 'name': 'EWE HOCHTIEF Ladepartner Verwaltungs-GmbH', 'color': 'blue'}, 'c_1103': {'id': 'c_1103', 'name': 'EWE Go HOCHTIEF Ladepartner GmbH & Co. KG', 'color': 'blue'}, 'c_1899': {'id': 'c_1899', 'name': 'HOCHTIEF Ladepartner GmbH', 'color': 'blue'}, 'c_1104': {'id': 'c_1104', 'name': 'Fielmann AG & Co. Harburg Sand OHG', 'color': 'blue'}, 'c_1105': {'id': 'c_1105', 'name': 'Fielmann AG & Co. im Centrum OHG', 'color': 'blue'}, 'c_1106': {'id': 'c_1106', 'name': 'Fielmann AG & Co. KG', 'color': 'blue'}, 'c_1122': {'id': 'c_1122', 'name': 'Fielmann AG & Co. Barbarossaplatz OHG', 'color': 'blue'}, 'c_1123': {'id': 'c_1123', 'name': 'Fielmann AG & Co. Bonn-Bad Godesberg OHG', 'color': 'blue'}, 'c_1124': {'id': 'c_1124', 'name': 'Fielmann AG & Co. im Alstertal-Einkaufszentrum OHG', 'color': 'blue'}, 'c_1147': {'id': 'c_1147', 'name': 'Fielmann AG & Co. Bad Cannstatt OHG', 'color': 'blue'}, 'c_1148': {'id': 'c_1148', 'name': 'Fielmann AG & Co. Buer OHG', 'color': 'blue'}, 'c_1157': {'id': 'c_1157', 'name': 'Fielmann AG & Co. Barmen OHG', 'color': 'blue'}, 'c_1159': {'id': 'c_1159', 'name': 'Fielmann AG & Co. im Centrum KG', 'color': 'blue'}, 'c_1172': {'id': 'c_1172', 'name': 'Fielmann AG & Co. Derendorf OHG', 'color': 'blue'}, 'c_1173': {'id': 'c_1173', 'name': 'Fielmann AG & Co. oHG Ludwigsplatz', 'color': 'blue'}, 'c_1175': {'id': 'c_1175', 'name': 'Fielmann AG & Co. Pferdemarkt OHG', 'color': 'blue'}, 'c_1176': {'id': 'c_1176', 'name': 'Fielmann AG & Co. Zentrum KG', 'color': 'blue'}, 'c_1197': {'id': 'c_1197', 'name': 'Fielmann AG & Co. Ebertplatz KG', 'color': 'blue'}, 'c_1198': {'id': 'c_1198', 'name': 'Fielmann AG & Co. Klosterstraße OHG', 'color': 'blue'}, 'c_1200': {'id': 'c_1200', 'name': 'Fielmann AG & Co Rathaus OHG', 'color': 'blue'}, 'c_1094': {'id': 'c_1094', 'name': 'Fraport AG Frankfurt Airport Services Worldwide', 'color': 'blue'}, 'c_1206': {'id': 'c_1206', 'name': 'Fraport Immobilienservice- u.-entwicklungs GmbH &Co.KG', 'color': 'blue'}, 'c_1162': {'id': 'c_1162', 'name': 'Fraport Real Estate Verwaltungs GmbH', 'color': 'blue'}, 'c_1218': {'id': 'c_1218', 'name': 'Fielmann AG & Co. Bergedorf KG', 'color': 'blue'}, 'c_1219': {'id': 'c_1219', 'name': 'Fielmann AG & Co. oHG Allee-Center', 'color': 'blue'}, 'c_1231': {'id': 'c_1231', 'name': 'Fielmann AG & Co. Essen-Rüttenscheid OHG', 'color': 'blue'}, 'c_1233': {'id': 'c_1233', 'name': 'Fielmann AG & Co Wattenscheid KG', 'color': 'blue'}, 'c_1238': {'id': 'c_1238', 'name': 'Fielmann AG & Co. Hamborn OHG', 'color': 'blue'}, 'c_1240': {'id': 'c_1240', 'name': 'Fielmann AG & Co. Westliche Kaiserstraße KG', 'color': 'blue'}, 'c_1248': {'id': 'c_1248', 'name': 'Fielmann AG & Co. An der Rothenburg OHG', 'color': 'blue'}, 'c_1249': {'id': 'c_1249', 'name': 'Fielmann AG & Co. Billstedt KG', 'color': 'blue'}, 'c_1250': {'id': 'c_1250', 'name': 'Fielmann AG & Co. Chorweiler KG', 'color': 'blue'}, 'c_1251': {'id': 'c_1251', 'name': 'Fielmann AG & Co. oHG Hindenburgstraße', 'color': 'blue'}, 'c_2379': {'id': 'c_2379', 'name': 'Rheinmetall Immobilien Hafenmole GmbH', 'color': 'blue'}, 'c_1270': {'id': 'c_1270', 'name': 'GVMS Grundstücksverwaltung Service GmbH & Co. KG', 'color': 'blue'}, 'c_2327': {'id': 'c_2327', 'name': 'Rheinmetall Automotive AG', 'color': 'blue'}, 'c_2944': {'id': 'c_2944', 'name': 'STW Grundstücksverwaltung GmbH', 'color': 'blue'}, 'c_1293': {'id': 'c_1293', 'name': 'GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Mönchengladbach ZV II KG', 'color': 'blue'}, 'c_1235': {'id': 'c_1235', 'name': 'GBS Gesellschaft für Unternehmensbeteiligungen mbH', 'color': 'blue'}, 'c_1264': {'id': 'c_1264', 'name': 'GKF Vermögensverwaltungsgesellschaft mbH', 'color': 'blue'}, 'c_1383': {'id': 'c_1383', 'name': 'GKF Vermögensverwaltungsgesellschaft mbH & Co. Gewerbegrundstücke KG', 'color': 'blue'}, 'c_1386': {'id': 'c_1386', 'name': 'GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Saar-Grund KG', 'color': 'blue'}, 'c_1355': {'id': 'c_1355', 'name': 'Henkel Management AG', 'color': 'blue'}, 'c_1420': {'id': 'c_1420', 'name': 'Henkel AG & Co. KGaA', 'color': 'blue'}, 'c_1430': {'id': 'c_1430', 'name': 'GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Hamm KG', 'color': 'blue'}, 'c_1496': {'id': 'c_1496', 'name': 'GKF Vermögensverwaltungsgesellschaft mbH & Co. 25. Objekt - KG', 'color': 'blue'}, 'c_1903': {'id': 'c_1903', 'name': 'INDUS Holding Aktiengesellschaft', 'color': 'blue'}, 'c_1512': {'id': 'c_1512', 'name': 'GSR Ventiltechnik GmbH & Co. KG', 'color': 'blue'}, 'c_1869': {'id': 'c_1869', 'name': 'HOCHTIEF PPP Bundeswehrpartner FWK München Verwaltungs GmbH', 'color': 'blue'}, 'c_1537': {'id': 'c_1537', 'name': 'HOCHTIEF PPP Bundeswehrpartner FWK München GmbH & Co. KG', 'color': 'blue'}, 'c_1603': {'id': 'c_1603', 'name': 'HOCHTIEF PPP 1. Holding GmbH & Co. KG', 'color': 'blue'}, 'c_1981': {'id': 'c_1981', 'name': 'KSB Energie Verwaltungs GmbH', 'color': 'blue'}, 'c_1547': {'id': 'c_1547', 'name': 'KSB Erneuerbare Energien Eins GmbH & Co. KG', 'color': 'blue'}, 'c_1679': {'id': 'c_1679', 'name': 'KSB Energie GmbH', 'color': 'blue'}, 'c_1579': {'id': 'c_1579', 'name': 'Karl Simon GmbH & Co. KG', 'color': 'blue'}, 'c_1583': {'id': 'c_1583', 'name': 'KSB Erneuerbare Energien Drei GmbH & Co. KG', 'color': 'blue'}, 'c_1744': {'id': 'c_1744', 'name': 'LANXESS Trademark Management GmbH', 'color': 'blue'}, 'c_1597': {'id': 'c_1597', 'name': 'LANXESS Trademark GmbH & Co. KG', 'color': 'blue'}, 'c_1743': {'id': 'c_1743', 'name': 'LANXESS Deutschland GmbH', 'color': 'blue'}, 'c_1604': {'id': 'c_1604', 'name': 'HOCHTIEF PPP 1. Holding Verwaltungsgesellschaft mbH', 'color': 'blue'}, 'c_1811': {'id': 'c_1811', 'name': 'HOCHTIEF PPP Solutions GmbH', 'color': 'blue'}, 'c_1683': {'id': 'c_1683', 'name': 'KS Grundstücksverwaltung Beteiligungs-GmbH', 'color': 'blue'}, 'c_1624': {'id': 'c_1624', 'name': 'KS Grundstücksverwaltung GmbH & Co. KG', 'color': 'blue'}, 'c_30': {'id': 'c_30', 'name': 'AIB Verwaltungs GmbH', 'color': 'blue'}, 'c_1668': {'id': 'c_1668', 'name': 'Immobilien-Vermietungsgesellschaft von Quistorp GmbH & Co. Objekt Altlandsberg KG', 'color': 'blue'}, 'c_2034': {'id': 'c_2034', 'name': 'METRO Leasing GmbH', 'color': 'blue'}, 'c_1731': {'id': 'c_1731', 'name': 'KSB Erneuerbare Energien Fünf GmbH & Co. KG', 'color': 'blue'}, 'c_1657': {'id': 'c_1657', 'name': 'KUKA Real Estate Management GmbH', 'color': 'blue'}, 'c_1742': {'id': 'c_1742', 'name': 'KUKA Real Estate GmbH & Co. KG', 'color': 'blue'}, 'c_1557': {'id': 'c_1557', 'name': 'KUKA Aktiengesellschaft', 'color': 'blue'}, 'c_2597': {'id': 'c_2597', 'name': 'Schaeffler Wälzlager Beteiligungsgesellschaft mbH', 'color': 'blue'}, 'c_1754': {'id': 'c_1754', 'name': 'IHO Holding GmbH & Co. KG', 'color': 'blue'}, 'c_1875': {'id': 'c_1875', 'name': 'INA-Holding Schaeffler GmbH & Co. KG', 'color': 'blue'}, 'c_1641': {'id': 'c_1641', 'name': 'IHO Management GmbH', 'color': 'blue'}, 'c_92': {'id': 'c_92', 'name': 'ATESTEO Management GmbH', 'color': 'blue'}, 'c_1952': {'id': 'c_1952', 'name': 'HOCHTIEF PPP Schulpartner Köln Rodenkirchen Verwaltungs GmbH', 'color': 'blue'}, 'c_1778': {'id': 'c_1778', 'name': 'HOCHTIEF PPP Schulpartner Köln Rodenkirchen GmbH & Co. KG', 'color': 'blue'}, 'c_1813': {'id': 'c_1813', 'name': 'HORNGROUP Holding GmbH & Co. KG', 'color': 'blue'}, 'c_1847': {'id': 'c_1847', 'name': 'Kaufhalle GmbH & Co. Objekt Lager Apfelstädt KG', 'color': 'blue'}, 'c_1784': {'id': 'c_1784', 'name': 'Kaufhalle GmbH', 'color': 'blue'}, 'c_1781': {'id': 'c_1781', 'name': 'HUGO BOSS Beteiligungsgesellschaft mbH', 'color': 'blue'}, 'c_1873': {'id': 'c_1873', 'name': 'HUGO BOSS Vermögensverwaltung GmbH & Co. KG', 'color': 'blue'}, 'c_1844': {'id': 'c_1844', 'name': 'HUGO BOSS AG', 'color': 'blue'}, 'c_1919': {'id': 'c_1919', 'name': 'KSB Windfeld Parstein GmbH & Co. KG', 'color': 'blue'}, 'c_1975': {'id': 'c_1975', 'name': 'LMH Immobilien Holding GmbH & Co.KG', 'color': 'blue'}, 'c_1928': {'id': 'c_1928', 'name': 'LMH Immobilien GmbH & Co. KG', 'color': 'blue'}, 'c_1691': {'id': 'c_1691', 'name': 'Linde Material Handling GmbH', 'color': 'blue'}, 'c_1779': {'id': 'c_1779', 'name': 'HOCHTIEF PPP Verwaltungs GmbH', 'color': 'blue'}, 'c_1930': {'id': 'c_1930', 'name': 'HOCHTIEF PPP Schulpartner Köln P 1 GmbH & Co. KG', 'color': 'blue'}, 'c_1934': {'id': 'c_1934', 'name': 'Infineon Technologies AG', 'color': 'blue'}, 'c_1935': {'id': 'c_1935', 'name': 'Infineon Technologies Bipolar GmbH & Co. KG', 'color': 'blue'}, 'c_1572': {'id': 'c_1572', 'name': 'Infineon Technologies Bipolar Verwaltungs GmbH', 'color': 'blue'}, 'c_1695': {'id': 'c_1695', 'name': 'HOCHTIEF PPP Schulpartner Frankfurt am Main Verwaltungs GmbH', 'color': 'blue'}, 'c_1976': {'id': 'c_1976', 'name': 'HOCHTIEF PPP Schulpartner Frankfurt am Main GmbH & Co. KG', 'color': 'blue'}, 'c_2021': {'id': 'c_2021', 'name': 'MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Porta-Westfalica KG', 'color': 'blue'}, 'c_2136': {'id': 'c_2136', 'name': 'Metro Cash & Carry Grundstücksverwaltungsgesellschaft mbH', 'color': 'blue'}, 'c_2020': {'id': 'c_2020', 'name': 'Mainova Erneuerbare Energien Verwaltungs GmbH', 'color': 'blue'}, 'c_2022': {'id': 'c_2022', 'name': 'Mainova Windpark Niederhambach GmbH & Co. KG', 'color': 'blue'}, 'c_2041': {'id': 'c_2041', 'name': 'Mainova Erneuerbare Energien GmbH & Co. KG', 'color': 'blue'}, 'c_2082': {'id': 'c_2082', 'name': 'Mainova Erneuerbare Energien Management GmbH', 'color': 'blue'}, 'c_2193': {'id': 'c_2193', 'name': 'Mainova Aktiengesellschaft', 'color': 'blue'}, 'c_2042': {'id': 'c_2042', 'name': 'Mainova Windpark Siegbach GmbH & Co. KG', 'color': 'blue'}, 'c_2044': {'id': 'c_2044', 'name': 'MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Schwelm KG', 'color': 'blue'}, 'c_2060': {'id': 'c_2060', 'name': 'Merck Life Science KGaA', 'color': 'blue'}, 'c_2080': {'id': 'c_2080', 'name': 'Merck Schuchardt OHG', 'color': 'blue'}, 'c_2084': {'id': 'c_2084', 'name': 'MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Hamburg-Altona KG', 'color': 'blue'}, 'c_2003': {'id': 'c_2003', 'name': 'Mainova Wind Onshore Verwaltungs GmbH', 'color': 'blue'}, 'c_2093': {'id': 'c_2093', 'name': 'Mainova Gemeinschaftswindpark Hohenahr GmbH & Co. KG', 'color': 'blue'}, 'c_3065': {'id': 'c_3065', 'name': 'Zweite Mainova Erneuerbare Energien Verwaltungs GmbH', 'color': 'blue'}, 'c_2094': {'id': 'c_2094', 'name': 'Mainova PV_Park 1GmbH & Co. KG', 'color': 'blue'}, 'c_1492': {'id': 'c_1492', 'name': 'GEHE Immobilien Verwaltungs-GmbH', 'color': 'blue'}, 'c_2095': {'id': 'c_2095', 'name': 'MATIS Immobilien OHG', 'color': 'blue'}, 'c_41': {'id': 'c_41', 'name': 'ABG Apotheken-Beratungsgesellschaft mbH', 'color': 'blue'}, 'c_2096': {'id': 'c_2096', 'name': 'MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt München-Pasing KG', 'color': 'blue'}, 'c_2126': {'id': 'c_2126', 'name': 'Mainova PV_Park 3 GmbH & Co. KG', 'color': 'blue'}, 'c_2144': {'id': 'c_2144', 'name': 'MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Berlin-Friedrichshain KG', 'color': 'blue'}, 'c_2159': {'id': 'c_2159', 'name': 'Mainova Windpark Kaisten GmbH & Co. KG', 'color': 'blue'}, 'c_2171': {'id': 'c_2171', 'name': 'Mainova Windpark Kloppenheim GmbH & Co. KG', 'color': 'blue'}, 'c_2195': {'id': 'c_2195', 'name': 'Mainova Windpark Remlingen GmbH & Co. KG', 'color': 'blue'}, 'c_2254': {'id': 'c_2254', 'name': 'Nordex Beteiligungen GmbH', 'color': 'blue'}, 'c_2222': {'id': 'c_2222', 'name': 'Nordex Energy SE & Co. KG', 'color': 'blue'}, 'c_2269': {'id': 'c_2269', 'name': 'Nordex SE', 'color': 'blue'}, 'c_2256': {'id': 'c_2256', 'name': 'Nordex Forum II Verwaltungs GmbH', 'color': 'blue'}, 'c_2255': {'id': 'c_2255', 'name': 'Nordex Forum II GmbH & Co. KG', 'color': 'blue'}, 'c_2382': {'id': 'c_2382', 'name': 'Minebea Intec Bovenden Verwaltungs-GmbH', 'color': 'blue'}, 'c_2265': {'id': 'c_2265', 'name': 'Minebea Intec Bovenden GmbH & Co. KG', 'color': 'blue'}, 'c_2405': {'id': 'c_2405', 'name': 'Minebea Intec GmbH', 'color': 'blue'}, 'c_2100': {'id': 'c_2100', 'name': 'METRO Dienstleistungs-Holding GmbH', 'color': 'blue'}, 'c_2266': {'id': 'c_2266', 'name': 'MIP METRO Group Intellectual Property GmbH & Co. KG', 'color': 'blue'}, 'c_2407': {'id': 'c_2407', 'name': 'MIP METRO Group Intellectual Property Management GmbH', 'color': 'blue'}, 'c_2402': {'id': 'c_2402', 'name': 'METRO PROPERTIES Management GmbH', 'color': 'blue'}, 'c_2309': {'id': 'c_2309', 'name': 'METRO PROPERTIES GmbH & Co. KG', 'color': 'blue'}, 'c_444': {'id': 'c_444', 'name': 'CECONOMY AG', 'color': 'blue'}, 'c_2179': {'id': 'c_2179', 'name': 'METRO AG', 'color': 'blue'}, 'c_2264': {'id': 'c_2264', 'name': 'Minebea Intec Aachen Verwaltungs-GmbH', 'color': 'blue'}, 'c_2312': {'id': 'c_2312', 'name': 'Minebea Intec Aachen GmbH & Co. KG', 'color': 'blue'}, 'c_2340': {'id': 'c_2340', 'name': 'Rheinmetall Aktiengesellschaft', 'color': 'blue'}, 'c_2342': {'id': 'c_2342', 'name': 'Rheinmetall Immobilien Kassel GmbH & Co. KG', 'color': 'blue'}, 'c_2454': {'id': 'c_2454', 'name': 'Rheinmetall Immobilien GmbH', 'color': 'blue'}, 'c_1954': {'id': 'c_1954', 'name': 'HOCHTIEF Solutions Real Estate GmbH', 'color': 'blue'}, 'c_2376': {'id': 'c_2376', 'name': 'Projektgesellschaft Konrad-Adenauer-Ufer Köln GmbH & Co. KG', 'color': 'blue'}, 'c_1715': {'id': 'c_1715', 'name': 'HOCHTIEF Solutions Real Estate Beteiligungsverwaltungsgesellschaft mbH', 'color': 'blue'}, 'c_2400': {'id': 'c_2400', 'name': 'Rheinmetall Immobilien VEGA GmbH & Co. KG', 'color': 'blue'}, 'c_2363': {'id': 'c_2363', 'name': 'Rheinmetall Immobilien Hamburg Friedensallee GmbH', 'color': 'blue'}, 'c_2411': {'id': 'c_2411', 'name': 'NIGRA Verwaltung GmbH & Co. Objekt Neunkirchen KG', 'color': 'blue'}, 'c_2413': {'id': 'c_2413', 'name': 'NWS Grundstücksmanagement GmbH & Co. KG', 'color': 'blue'}, 'c_2453': {'id': 'c_2453', 'name': 'Rheinmetall Immobilien Flensburg GmbH & Co. KG', 'color': 'blue'}, 'c_2230': {'id': 'c_2230', 'name': 'MWFS Zwischenholding Management GmbH', 'color': 'blue'}, 'c_2462': {'id': 'c_2462', 'name': 'MWFS Zwischenholding GmbH & Co. KG', 'color': 'blue'}, 'c_3112': {'id': 'c_3112', 'name': 'Zalando SE', 'color': 'blue'}, 'c_2467': {'id': 'c_2467', 'name': 'Portokali Property Development III SE & Co. KG', 'color': 'blue'}, 'c_3103': {'id': 'c_3103', 'name': 'Zalando Operations GmbH', 'color': 'blue'}, 'c_2589': {'id': 'c_2589', 'name': 'Salzgitter Aktiengesellschaft', 'color': 'blue'}, 'c_2476': {'id': 'c_2476', 'name': 'Salzgitter Hydroforming GmbH & Co KG', 'color': 'blue'}, 'c_2552': {'id': 'c_2552', 'name': 'Salzgitter Hydroforming Verwaltungs GmbH', 'color': 'blue'}, 'c_2639': {'id': 'c_2639', 'name': 'Schaeffler Technologies AG & Co. KG', 'color': 'blue'}, 'c_2520': {'id': 'c_2520', 'name': 'Schaeffler Aerospace Germany GmbH & Co. KG', 'color': 'blue'}, 'c_2568': {'id': 'c_2568', 'name': 'Schaeffler Aerospace Germany Beteiligungs GmbH', 'color': 'blue'}, 'c_2569': {'id': 'c_2569', 'name': 'Schaeffler AG', 'color': 'blue'}, 'c_2543': {'id': 'c_2543', 'name': 'Schaeffler Industrial Remanufacturing Services AG & Co. KG', 'color': 'blue'}, 'c_2493': {'id': 'c_2493', 'name': 'Schaeffler Verwaltungsholding Vier GmbH', 'color': 'blue'}, 'c_2595': {'id': 'c_2595', 'name': 'Schaeffler ByWire Technologie GmbH & Co. KG', 'color': 'blue'}, 'c_2670': {'id': 'c_2670', 'name': 'Schaeffler ByWire Management GmbH', 'color': 'blue'}, 'c_2628': {'id': 'c_2628', 'name': 'Schaeffler Bühl Verwaltungs GmbH', 'color': 'blue'}, 'c_2627': {'id': 'c_2627', 'name': 'Schaeffler Automotive Buehl GmbH & Co. KG', 'color': 'blue'}, 'c_2570': {'id': 'c_2570', 'name': 'Schaeffler Bühl Beteiligungs GmbH', 'color': 'blue'}, 'c_2661': {'id': 'c_2661', 'name': 'Schaeffler Automotive Aftermarket GmbH & Co. KG', 'color': 'blue'}, 'c_2544': {'id': 'c_2544', 'name': 'Schaeffler KWK Verwaltungs GmbH', 'color': 'blue'}, 'c_2689': {'id': 'c_2689', 'name': 'Schaeffler Sondermaschinenbau AG & Co. KG', 'color': 'blue'}, 'c_468': {'id': 'c_468', 'name': 'BayWa r.e. Solar Projects Verwaltungs GmbH', 'color': 'blue'}, 'c_2699': {'id': 'c_2699', 'name': 'SPV Solarpark 102. GmbH & Co. KG', 'color': 'blue'}, 'c_636': {'id': 'c_636', 'name': 'BayWa r.e. Solar Projects GmbH', 'color': 'blue'}, 'c_2700': {'id': 'c_2700', 'name': 'SPV Solarpark 103. GmbH & Co. KG', 'color': 'blue'}, 'c_2997': {'id': 'c_2997', 'name': 'Volkswagen Immobilien Management GmbH', 'color': 'blue'}, 'c_2756': {'id': 'c_2756', 'name': 'Volkswagen Immobilien BLUE GmbH & Co. KG', 'color': 'blue'}, 'c_2781': {'id': 'c_2781', 'name': 'Volkswagen Immobilien Investment GmbH', 'color': 'blue'}, 'c_2764': {'id': 'c_2764', 'name': 'Tivoli Garden GmbH & Co. KG', 'color': 'blue'}, 'c_415': {'id': 'c_415', 'name': 'BayWa r.e. Power Solutions GmbH', 'color': 'blue'}, 'c_2818': {'id': 'c_2818', 'name': 'Solarpark Lupus GmbH & Co. KG', 'color': 'blue'}, 'c_2825': {'id': 'c_2825', 'name': 'United Internet AG', 'color': 'blue'}, 'c_2826': {'id': 'c_2826', 'name': 'United Internet Investments Holding AG & Co. KG', 'color': 'blue'}, 'c_2715': {'id': 'c_2715', 'name': 'United Internet Corporate Services GmbH', 'color': 'blue'}, 'c_2708': {'id': 'c_2708', 'name': 'Südwest Presse + Hapag-Lloyd Reisebüro Verwaltungs GmbH', 'color': 'blue'}, 'c_2874': {'id': 'c_2874', 'name': 'Südwest Presse + Hapag-Lloyd Reisebüro GmbH & Co. KG', 'color': 'blue'}, 'c_2767': {'id': 'c_2767', 'name': 'TUI Deutschland GmbH', 'color': 'blue'}, 'c_2899': {'id': 'c_2899', 'name': 'SIL Verwaltung GmbH & Co. Objekt Haidach KG', 'color': 'blue'}, 'c_2911': {'id': 'c_2911', 'name': 'Umspannwerk Klein Bünsdorf GmbH & Co. KG', 'color': 'blue'}, 'c_2912': {'id': 'c_2912', 'name': 'Volkswagen Automobile Hamburg GmbH', 'color': 'blue'}, 'c_2934': {'id': 'c_2934', 'name': 'Volkswagen Original Teile Logistik GmbH & Co. KG', 'color': 'blue'}, 'c_2998': {'id': 'c_2998', 'name': 'Volkswagen Original Teile Logistik Beteiligungs-GmbH', 'color': 'blue'}, 'c_2984': {'id': 'c_2984', 'name': 'Solarpark Aquarius GmbH & Co. KG', 'color': 'blue'}, 'c_3009': {'id': 'c_3009', 'name': 'Zalando Customer Care DACH SE & Co. KG', 'color': 'blue'}, 'c_3017': {'id': 'c_3017', 'name': 'Zalando Logistics Mönchengladbach SE & Co. KG', 'color': 'blue'}, 'c_3022': {'id': 'c_3022', 'name': 'Windpark Wilhelmshöhe GmbH & Co. KG', 'color': 'blue'}, 'c_3024': {'id': 'c_3024', 'name': 'Zalando Lounge Content Solutions SE & Co. KG', 'color': 'blue'}, 'c_3102': {'id': 'c_3102', 'name': 'Zalando Lounge Service GmbH', 'color': 'blue'}, 'c_3094': {'id': 'c_3094', 'name': 'Zalando Outlets GmbH', 'color': 'blue'}, 'c_3025': {'id': 'c_3025', 'name': 'Zalando Stores GmbH & Co. KG', 'color': 'blue'}, 'c_3036': {'id': 'c_3036', 'name': 'Windfeld Hohenfelde Vier GmbH & Co. KG', 'color': 'blue'}, 'c_3106': {'id': 'c_3106', 'name': 'Wacker Neuson PGM Verwaltungs GmbH', 'color': 'blue'}, 'c_3040': {'id': 'c_3040', 'name': 'Wacker Neuson Produktion GmbH & Co. KG', 'color': 'blue'}, 'c_3031': {'id': 'c_3031', 'name': 'Wacker Neuson SE', 'color': 'blue'}, 'c_3041': {'id': 'c_3041', 'name': 'Windpark Hessenweiler GmbH & Co. KG', 'color': 'blue'}, 'c_589': {'id': 'c_589', 'name': 'BayWa r.e. Wind GmbH', 'color': 'blue'}, 'c_3044': {'id': 'c_3044', 'name': 'Windpark Wilhelmshöhe III GmbH & Co. KG', 'color': 'blue'}, 'c_3047': {'id': 'c_3047', 'name': 'Zalando Lounge Logistics SE & Co. KG', 'color': 'blue'}, 'c_3057': {'id': 'c_3057', 'name': 'Zalando Logistics Gießen SE & Co. KG', 'color': 'blue'}, 'c_3062': {'id': 'c_3062', 'name': 'Zalando Logistics Süd SE & Co. KG', 'color': 'blue'}, 'c_3073': {'id': 'c_3073', 'name': 'Windpark Wilhelmshöhe II GmbH & Co. KG', 'color': 'blue'}, 'c_3071': {'id': 'c_3071', 'name': 'Wilhelmshöhe Infrastruktur GmbH & Co. KG', 'color': 'blue'}, 'c_3074': {'id': 'c_3074', 'name': 'Zalando BTD 007 SE & Co. KG', 'color': 'blue'}, 'c_3075': {'id': 'c_3075', 'name': 'Zalando BTD 010 SE & Co. KG', 'color': 'blue'}, 'c_3098': {'id': 'c_3098', 'name': 'Windpark Lindchen GmbH & Co. KG', 'color': 'blue'}, 'c_3101': {'id': 'c_3101', 'name': 'Zalando Customer Care Central Services SE & Co. KG', 'color': 'blue'}, 'c_3070': {'id': 'c_3070', 'name': 'Wacker Neuson SGM Verwaltungs GmbH', 'color': 'blue'}, 'c_3107': {'id': 'c_3107', 'name': 'Wacker Neuson Vertrieb Deutschland GmbH & Co. KG', 'color': 'blue'}, 'c_3126': {'id': 'c_3126', 'name': 'Windpark Freimersheim GmbH & Co. KG', 'color': 'blue'}, 'c_3134': {'id': 'c_3134', 'name': 'Windpark Pferdsfeld GmbH & Co. KG', 'color': 'blue'}, 'c_3136': {'id': 'c_3136', 'name': 'Zalando BTD 009 SE & Co. KG', 'color': 'blue'}, 'c_3137': {'id': 'c_3137', 'name': 'Zalando BTD 011 SE & Co. KG', 'color': 'blue'}, 'c_3145': {'id': 'c_3145', 'name': 'Zalando Customer Care International SE & Co. KG', 'color': 'blue'}}\n", + "blue\n", + "[1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 2, 1, 1, 1, 3, 9, 3, 2, 2, 2, 2, 2, 2, 4, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 7, 1, 226, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 1, 1, 1, 1, 1, 1, 3, 1, 2, 1, 3, 2, 3, 1, 2, 1, 1, 2, 2, 1, 2, 1, 1, 2, 1, 2, 1, 1, 2, 2, 5, 1, 2, 1, 2, 1, 1, 2, 1, 1, 2, 1, 4, 2, 4, 1, 2, 1, 9, 2, 10, 2, 3, 1, 2, 2, 2, 2, 3, 1, 1, 2, 1, 1, 2, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 2, 1, 2, 8, 2, 1, 2, 1, 2, 51, 2, 51, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 2, 4, 2, 7, 8, 2, 2, 1, 1, 2, 2, 3, 1, 1, 2, 6, 5, 2, 5, 1, 2, 1, 2, 1, 1, 1, 1, 2, 2, 2, 1, 2, 1, 2, 1, 1, 4, 1, 1, 1, 1, 2, 1, 2, 1, 1, 2, 1, 2, 1, 2, 1, 1, 2, 1, 2, 1, 1, 2, 2, 5, 5, 2, 10, 1, 1, 2, 2, 2, 2, 2, 1, 2, 2, 2, 1, 2, 1, 2, 2, 2, 2, 2, 2, 1, 3, 1, 1, 2, 1, 2, 2, 1, 2, 1, 1, 3, 2, 1, 1, 2, 1, 2, 3, 2, 2, 2, 2, 2, 2, 2, 2, 1, 2, 13, 2, 13, 1, 2, 1, 4, 2, 1, 3, 2, 3, 2, 1, 2, 2, 1, 2, 1, 2, 1, 2, 3, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 1, 2, 1, 2, 2, 1, 2, 1, 2, 2, 2, 2, 2, 1, 1, 2, 2, 1, 2, 2, 2, 4, 3, 2, 2, 2, 3, 3, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2]\n" + ] + } + ], + "source": [ + "node_adjacencies = []\n", + "node_text = []\n", + "print(nodes)\n", + "print(nodes[\"c_53\"][\"color\"])\n", + "for node, adjacencies in enumerate(G.adjacency()):\n", + " # print(node)\n", + " node_adjacencies.append(len(adjacencies[1]))\n", + " # node_text.append('# of connections: '+str(len(adjacencies[1])))\n", + " # node_adjacencies.append(nodes[node].color)\n", + " node_text.append('# of connections: '+str(len(adjacencies[1])))\n", + " \n", + "print(node_adjacencies)\n", + "# node_trace.marker.color = node_adjacencies\n", + "# node_trace.text = node_text\n", + "# print(*nx.get_node_attributes(graph, \"color\").values())" + ] + }, + { + "cell_type": "markdown", + "id": "6a345ba8", + "metadata": {}, + "source": [ + "## Anpassen der Nodes und Edges" + ] + }, + { + "cell_type": "code", + "execution_count": 331, + "id": "4a002f50", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['1. Freiburger Solarfonds Beteiligungs-KG', 'Jürgen Wetzel', 'Aurelius KG', 'Peter Esser', 'Bayer Design Fritz Bayer GmbH & Co KG', 'Michael Georg Neubauer', 'Bayern Immobilien Höller/Lechner KG', 'Erwin Höller', 'Bayern-Osteuropa OHG Travel Consulting Marketing', 'Eugen Guwa', 'Anna Guwa', 'Bayern Treuhand Obermeier & Kilger KG Wirtschaftsprüfungsgesellschaft', 'Hugo Obermeier', 'Bayern-Park KG', 'Eva Leitl', 'Silke Holzner', 'BAYERN-RALLYE Karussellbetrieb OHG', 'Christine Fahrenschon', 'Maximilian Fahrenschon', 'Bayer Rettungstechnik oHG', 'Peter Bayer', 'Bernd Klein', 'Deutsche Wohn- und Gewerbebau KG', 'Ottmar Mühlberger', 'E. Merck KG', 'Frank Stangenberg-Haverkamp', 'Johannes Baillou', 'Belén Garijo Lopez', 'Kai Beckmann', 'Marcus Kuhnert', 'Matthias Heinzel', 'Peter Guenter', 'Emanuel-Merck-Vermögens-KG', 'E. Merck Beteiligungen KG', 'Frye Ströer Legehennen KG', 'Reinhard Frye', 'Fielmann Augenoptik AG & Co. oHG Harburg-City', 'Sirous Shahsiah', 'Henkel Familien KG', 'Anna Henkel', 'Thomas Henkel', 'Hanspeter Grassl KG', 'Sebastian Graßl', 'Henkel KG Generalagentur', 'Ronny Polack', 'Grundstücksgesellschaft Pfingstanger Salzgitter Bad KG', 'Günter Nicklas', 'K & S Citystore OHG', 'Gesine Tanja Föller-Klügl', 'Carsten Klügl', 'K.M.S. Doruk Computer Systeme OHG', 'Andrea Doruk', 'MERCK Kommanditgesellschaft auf Aktien', 'MetroPolis Grundstücks oHG', 'Donat Kühne', 'Andreas Stahl', 'Mina Ansari', 'Klaus Markus Dahlmanns', 'Gregor Fachinger', 'David Ferré', 'Ralf Fischer', 'Ekaterina Grishina', 'Gerald Hartung', 'Eduard Hinken', 'Vyacheslav Antoliyovych Ivchenko', 'Reinhard Janssen', 'Karin Lenz', 'Petra Mai-Hartung', 'Klaus-Jürgen Müller', 'Gudela Noack', 'Rico Noack', 'Peter Uwe Petersen', 'Zhiyun Ren', 'Denis Sapozhnikov', 'Michael Scheele', 'Jochen Scholl', 'Arnd Schröder', 'Michael Süßkind', 'Andreas Thot', 'Jianshen Zhou', 'Ursula Deibler', 'Joachim Hahn', 'Ralf Karwat', 'Martina Mahlke', 'Jörgen Pisarz', 'Frank Weisser', 'Gerhard Löhlein', 'Franz Rauch', 'Bogumila Szyja', 'Karin Timmerberg', 'Charlotte Weichselsdorfer', 'Rainer Weichselsdorfer', 'Bernhard Heitele', 'Zeynep Ayse Hicsasmaz-Heitele', 'Katharina von Falkenhayn', 'Franziska von Malaisé', 'Heinrich Brendel', 'Han Deng', 'Ulrike Köhler', 'Thomas Köhler', 'Jochem Lange', 'Annette Ludwig', 'Friederike Maurer', 'Willi Maurer', 'Andreas Ramshorn', 'Ingo Schuck', 'Johann-Friedrich von der Borch', 'Richard Weiler', 'Johannes Busch', 'Christine Ehard', 'Thomas Eismann', 'Stefanie Frensch', 'Holger Gleich', 'Sonja Kreibich', 'Henrik Thomsen', 'Kerstin Herzinger', 'Iris Kraus', 'Volker Kreibich', 'Barbara Kreibich', 'Olivier Krenz', 'Andrea Layer', 'Ingrid Schuff', 'Harald Schuff', 'Wolfgang Siegel', 'Helmut Teichmann', 'Dirk Broneske', 'Hanns Heinrich Frensch', 'Monika Frensch', 'Nicole Gerken-Broneske', 'Andriy Krantvays', 'Alfredo Perl', 'Olaf Rehahn', 'Susanne Reiner-Koppmann', 'Anna Spektor', 'Ilona Steiert', 'Kerstin Viot', 'Dirk Weichselsdorfer', 'Wolfgang Becker', 'Robert Dilla', 'Aldona Kihl', 'Martin Winkler', 'Gerda Winkler', 'Claudia Beppler-Spahl', 'Hauke Hermann', 'Nancy Stahl', 'Ingrid Maaß', 'Sebastian Schneider', 'Thilo Spahl', 'Runa Speer', 'Karin Blumenthal', 'Agnes Kolodziej', 'Jörg Langert', 'Claudia Langert', 'Sebastian Metzger', 'Carl-Wilhelm Oesterley', 'Burkhard Stangl', 'Peter Geibel', 'Stefanie Granitza', 'David Granitza-Schultz', 'Stephanie Reimert', 'Ellen Hautmann', 'Jens Kaffenberger', 'Dandy Kleybrink', 'Lia Kleybrink', 'Martin Langendorf', 'Mathilde Langendorf', 'Peter Maier-Stein', 'Runhao Min', 'Thomas Neumann', 'Gerd Pasemann', 'Jan Reimert', 'Helene Renger', 'Volker Stampe', 'Gudrun Stein', 'York von Falkenhayn', 'Oscar Zach', 'Doris Bischler', 'Markus Bischof', 'Matthias Kühnle', 'Karina Schimert-zu Hohenlohe', 'Cristiana da Silva', 'Jörg Löbig', 'Stefan Krause', 'Dirk Kudlicz', 'Rolf Lange', 'Andreas Veauthier', 'Sebastian Bukow', 'Arndt Bercher', 'Nicole Bercher-von Jordan', 'Robert Birker', 'Caprice Birker', 'Nicola Brase', 'Stephan DuCharme', 'Claudia Kaloff', 'Vladimir Kotiasvili', 'Otto Kückmann', 'Winrich Kyas', 'Sylke Kyas-Litt', 'Holger Matthies', 'Roland Mohr', 'Harald Rammler', 'Seyed Mohammad Seyed Makki', 'Brigitte Trattner', 'Christine Buchheit', 'Horand Knaup', 'Nevin Dogan', 'Levent Dogan', 'Elisabeth Dubbers', 'Stella Roidi-Schnorrenberg', 'Julius Schellmann', 'Ekkehard Roidis-Schnorrenberg', 'Michael Lefmann', 'Wolf Christian Boes', 'Rupert Dörfler', 'Carsten Eckert', 'Hans Günter Klein', 'Peter Molitor', 'Hasan Ali San', 'Zeynep San', 'Biljana Boes', 'Florian Will', 'Michael Narazny', 'Angelika Weidemann', 'Norbert Brömme', 'Thomas Eggers', 'Katja Simons', 'Nicholas Whitaker', 'Stephan Kühne', 'Hans-Jürgen Braun', 'Georg Denninger', 'Rebekka Denninger', 'Ulrich Müller Brito', 'Michael Rost', 'Stefan Sommer', 'Margarete Stephan', 'Frank Weber', 'Michael Wrede', 'Reinhard Gundelwein', 'Philipp Kühne', 'Sabrina Meyer', 'Helga Pilz', 'Dieter Pilz', 'Elisabeth Schaper', 'Thomas Schaper', 'Peter Buntrock', 'Angela Hoffmann', 'Alisa Krasylna', 'Kirsten Peters', 'Oda Hagemeier', 'Yuyi Huang', 'Erich Paproth', 'Annette Wolpert', 'Sebastian Aman', 'Andreas Roland Mollenkopf', 'Barbara Doll', 'Winfried Rademacher', 'Markus Trefz', 'Sabine Trefz', 'Jürgen Wenzler', 'Alexander Schwardmann', 'Miron Chestakov', 'Lev Chestakov', 'Raphaela Meis', 'Matthias Meis', 'Anja Markfort', 'Sibille Allgayer', 'Helmut Dietrich', 'Richard Kurka', 'Sarah Julia Lee', 'Lena Eleonore Staiger', 'Maja Bernadette Staiger', 'Benjamin Rohé', 'Jörn Averkamp', 'Thomas Grube', 'Yi Li', 'Natthinee Mohr', 'Sonia Susanna Mohrmann Oviedo', 'Florian Peter Pröscholdt', 'Manuel Scholten', 'Franziska Luise Dorothea Weller', 'Nordex-Glas oHG', 'Ali Hakan Sualp', 'Sevgi Karaarslan', '\"PETER G. OHG,\" - Men & Women', 'Leonie Greis', 'Daniela Greis', 'REWE-Markt Ströer OHG', 'Silvio Ströer', 'Sartorius KG', 'Meik Sartorius', 'Aurubis AG', 'Aurubis Stolberg GmbH & Co. KG', 'Aurubis Stolberg Verwaltungs-GmbH', 'Aurubis Stolberg Asset GmbH & Co. KG', 'Aurubis Stolberg Asset Verwaltungs-GmbH', 'BayWa r.e. Wind Verwaltungs GmbH', 'BayWa r.e. Windparkportfolio 1 GmbH & Co. KG', 'BayWa r.e. Wind 20+ GmbH', 'BayWa BGM Verwaltungs GmbH', 'BayWa Bau- & Gartenmärkte GmbH & Co. KG', 'BayWa Pensionsverwaltung GmbH', 'Covestro Intellectual Property Verwaltungs GmbH', 'Covestro Intellectual Property GmbH & Co. KG', 'Covestro Deutschland AG', 'Brenntag Vermögensmanagement GmbH', 'Brenntag European Services GmbH & Co. KG', 'Brenntag Beteiligungs GmbH', 'Brenntag Foreign Holding GmbH', 'CM Komplementär 03-018 GmbH & Co. KG', 'BMW INTEC Beteiligungs GmbH', 'BMW Beteiligungs GmbH & Co. KG', 'BMW Vermögensverwaltungs GmbH', 'CM Komplementär 03-019 GmbH & Co. KG', 'BayWa r.e. Asset Verwaltungs GmbH', 'BayWa r.e. Solardächer II GmbH & Co. KG', 'BayWa r.e. AG', 'Covestro Procurement Services Verwaltungs GmbH', 'Covestro Procurement Services GmbH & Co. KG', 'Deutsche Post Adress Geschäftsführungs GmbH', 'Deutsche Post Adress GmbH & Co. KG', 'Deutsche Post Adress Beteiligungsgesellschaft mbH', 'Deutsche Post Verwaltungs Objekt GmbH', 'Deutsche Post Pensions-Treuhand GmbH & Co. KG', 'Deutsche Post AG', 'Deutsche Wohnen Zweite Fondsbeteiligungs GmbH', 'Deutsche Wohnen Beteiligungsverwaltungs GmbH & Co. KG', 'Deutsche Wohnen Fondsbeteiligungs GmbH', 'EnBW Real Estate GmbH', 'Der neue Stöckach GmbH & Co KG', 'Neckarwerke Stuttgart GmbH', 'EnBW He Dreiht Management GmbH', 'EnBW He Dreiht GmbH & Co. KG', 'EnBW Offshore 4 GmbH', 'EnBW Solar Verwaltungsgesellschaft mbH', 'EnBW Solarpark Lindenau GmbH & Co. KG', 'EnBW Solar GmbH', 'EnBW Solarpark Gickelfeld GmbH & Co. KG', 'EnBW City GmbH & Co. KG', 'EnBW Immobilienbeteiligungen GmbH', 'EnBW Solarpark Gückelhirn GmbH & Co. KG', 'EnBW Solarpark Sonnewalde GmbH & Co. KG', 'EnBW Solarpark Kroppen GmbH & Co. KG', 'EnBW Energie Baden-Württemberg AG', 'EnBW Übertragungsnetz Immobiliengesellschaft mbH & Co. KG', 'EnBW Übertragungsnetz Immobilien Verwaltungsgesellschaft mbH', 'EnBW WindInvest Management GmbH', 'EnBW WindInvest GmbH & Co. KG', 'EnBW Windkraftprojekte GmbH', 'EnBW Baltic 1 Verwaltungsgesellschaft mbH', 'EnBW Baltic 1 GmbH & Co. KG', 'EnBW Offshore 1 GmbH', 'EnBW SunInvest Management GmbH', 'EnBW SunInvest GmbH & Co. KG', 'EnBW Baltic 2 Management GmbH', 'EnBW Baltic 2 GmbH & Co. KG', 'EnBW Offshore 2 GmbH', 'EnBW Solarpark Rot an der Rot GmbH & Co. KG', 'EnBW Albatros Management GmbH', 'EnBW Albatros GmbH & Co. KG', 'EnBW Offshore 3 GmbH', 'EnBW Solarpark Emmingen-Liptingen GmbH & Co. KG', 'EnBW Solarpark Groß Lübbenau GmbH & Co. KG', 'BayWa r.e. EMEA IPP Holding GmbH', 'Dörenhagen Windenergieanlagen GmbH & Co. KG', 'BayWa r.e. IPP Verwaltungs GmbH', 'EnBW Solarpark Göritz GmbH & Co. KG', 'E.ON Real Estate GmbH', 'E.ON Grund&Boden GmbH & Co. KG', 'E.ON Grund&Boden Beteiligungs GmbH', 'EVGA Grundstücks- und Gebäudemanagement GmbH & Co. KG', 'Fielmann Aktiengesellschaft', 'Fielmann AG & Co. Brackwede KG', 'Fielmann Finanzservice GmbH', 'Fielmann AG & Co Bramfeld KG', 'Fielmann AG & Co. Centrum OHG', 'Fielmann AG & Co. Elberfeld OHG', 'Fielmann AG & Co. Hiltrup OHG', 'Fielmann AG & Co. Ochsenzoll OHG', 'Fielmann AG & Co. Rahlstedt OHG', 'Fielmann AG & Co. Rethelstraße OHG', 'Fielmann AG & Co. City-Arkaden OHG', 'Fielmann AG & Co. Mülheim OHG', 'Fielmann AG & Co. Oberkassel OHG', 'Fielmann AG & Co. Eimsbüttel OHG', 'Fielmann AG & Co. Venloer Straße OHG', 'Fielmann AG & Co. Wandsbek OHG', 'Fielmann AG & Co. Essen-Steele OHG', 'Fielmann AG & Co. Jahnplatz OHG', 'Fielmann AG & Co. OHG', 'Fielmann AG & Co. oHG Kalk', 'Fielmann AG & Co. Ottensen OHG', 'Fielmann AG & Co. am Markt KG', 'Fielmann AG & Co. Paunsdorf-Center OHG', 'Fielmann AG & Co-Volksdorf OHG', 'Fielmann AG & Co. oHG City-Galerie', 'Fielmann AG & Co. Othmarschen OHG', 'EWE HOCHTIEF Ladepartner Verwaltungs-GmbH', 'EWE Go HOCHTIEF Ladepartner GmbH & Co. KG', 'HOCHTIEF Ladepartner GmbH', 'Fielmann AG & Co. Harburg Sand OHG', 'Fielmann AG & Co. im Centrum OHG', 'Fielmann AG & Co. KG', 'Fielmann AG & Co. Barbarossaplatz OHG', 'Fielmann AG & Co. Bonn-Bad Godesberg OHG', 'Fielmann AG & Co. im Alstertal-Einkaufszentrum OHG', 'Fielmann AG & Co. Bad Cannstatt OHG', 'Fielmann AG & Co. Buer OHG', 'Fielmann AG & Co. Barmen OHG', 'Fielmann AG & Co. im Centrum KG', 'Fielmann AG & Co. Derendorf OHG', 'Fielmann AG & Co. oHG Ludwigsplatz', 'Fielmann AG & Co. Pferdemarkt OHG', 'Fielmann AG & Co. Zentrum KG', 'Fielmann AG & Co. Ebertplatz KG', 'Fielmann AG & Co. Klosterstraße OHG', 'Fielmann AG & Co Rathaus OHG', 'Fraport AG Frankfurt Airport Services Worldwide', 'Fraport Immobilienservice- u.-entwicklungs GmbH &Co.KG', 'Fraport Real Estate Verwaltungs GmbH', 'Fielmann AG & Co. Bergedorf KG', 'Fielmann AG & Co. oHG Allee-Center', 'Fielmann AG & Co. Essen-Rüttenscheid OHG', 'Fielmann AG & Co Wattenscheid KG', 'Fielmann AG & Co. Hamborn OHG', 'Fielmann AG & Co. Westliche Kaiserstraße KG', 'Fielmann AG & Co. An der Rothenburg OHG', 'Fielmann AG & Co. Billstedt KG', 'Fielmann AG & Co. Chorweiler KG', 'Fielmann AG & Co. oHG Hindenburgstraße', 'Rheinmetall Immobilien Hafenmole GmbH', 'GVMS Grundstücksverwaltung Service GmbH & Co. KG', 'Rheinmetall Automotive AG', 'STW Grundstücksverwaltung GmbH', 'GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Mönchengladbach ZV II KG', 'GBS Gesellschaft für Unternehmensbeteiligungen mbH', 'GKF Vermögensverwaltungsgesellschaft mbH', 'GKF Vermögensverwaltungsgesellschaft mbH & Co. Gewerbegrundstücke KG', 'GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Saar-Grund KG', 'Henkel Management AG', 'Henkel AG & Co. KGaA', 'GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Hamm KG', 'GKF Vermögensverwaltungsgesellschaft mbH & Co. 25. Objekt - KG', 'INDUS Holding Aktiengesellschaft', 'GSR Ventiltechnik GmbH & Co. KG', 'HOCHTIEF PPP Bundeswehrpartner FWK München Verwaltungs GmbH', 'HOCHTIEF PPP Bundeswehrpartner FWK München GmbH & Co. KG', 'HOCHTIEF PPP 1. Holding GmbH & Co. KG', 'KSB Energie Verwaltungs GmbH', 'KSB Erneuerbare Energien Eins GmbH & Co. KG', 'KSB Energie GmbH', 'Karl Simon GmbH & Co. KG', 'KSB Erneuerbare Energien Drei GmbH & Co. KG', 'LANXESS Trademark Management GmbH', 'LANXESS Trademark GmbH & Co. KG', 'LANXESS Deutschland GmbH', 'HOCHTIEF PPP 1. Holding Verwaltungsgesellschaft mbH', 'HOCHTIEF PPP Solutions GmbH', 'KS Grundstücksverwaltung Beteiligungs-GmbH', 'KS Grundstücksverwaltung GmbH & Co. KG', 'AIB Verwaltungs GmbH', 'Immobilien-Vermietungsgesellschaft von Quistorp GmbH & Co. Objekt Altlandsberg KG', 'METRO Leasing GmbH', 'KSB Erneuerbare Energien Fünf GmbH & Co. KG', 'KUKA Real Estate Management GmbH', 'KUKA Real Estate GmbH & Co. KG', 'KUKA Aktiengesellschaft', 'Schaeffler Wälzlager Beteiligungsgesellschaft mbH', 'IHO Holding GmbH & Co. KG', 'INA-Holding Schaeffler GmbH & Co. KG', 'IHO Management GmbH', 'ATESTEO Management GmbH', 'HOCHTIEF PPP Schulpartner Köln Rodenkirchen Verwaltungs GmbH', 'HOCHTIEF PPP Schulpartner Köln Rodenkirchen GmbH & Co. KG', 'HORNGROUP Holding GmbH & Co. KG', 'Kaufhalle GmbH & Co. Objekt Lager Apfelstädt KG', 'Kaufhalle GmbH', 'HUGO BOSS Beteiligungsgesellschaft mbH', 'HUGO BOSS Vermögensverwaltung GmbH & Co. KG', 'HUGO BOSS AG', 'KSB Windfeld Parstein GmbH & Co. KG', 'LMH Immobilien Holding GmbH & Co.KG', 'LMH Immobilien GmbH & Co. KG', 'Linde Material Handling GmbH', 'HOCHTIEF PPP Verwaltungs GmbH', 'HOCHTIEF PPP Schulpartner Köln P 1 GmbH & Co. KG', 'Infineon Technologies AG', 'Infineon Technologies Bipolar GmbH & Co. KG', 'Infineon Technologies Bipolar Verwaltungs GmbH', 'HOCHTIEF PPP Schulpartner Frankfurt am Main Verwaltungs GmbH', 'HOCHTIEF PPP Schulpartner Frankfurt am Main GmbH & Co. KG', 'MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Porta-Westfalica KG', 'Metro Cash & Carry Grundstücksverwaltungsgesellschaft mbH', 'Mainova Erneuerbare Energien Verwaltungs GmbH', 'Mainova Windpark Niederhambach GmbH & Co. KG', 'Mainova Erneuerbare Energien GmbH & Co. KG', 'Mainova Erneuerbare Energien Management GmbH', 'Mainova Aktiengesellschaft', 'Mainova Windpark Siegbach GmbH & Co. KG', 'MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Schwelm KG', 'Merck Life Science KGaA', 'Merck Schuchardt OHG', 'MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Hamburg-Altona KG', 'Mainova Wind Onshore Verwaltungs GmbH', 'Mainova Gemeinschaftswindpark Hohenahr GmbH & Co. KG', 'Zweite Mainova Erneuerbare Energien Verwaltungs GmbH', 'Mainova PV_Park 1GmbH & Co. KG', 'GEHE Immobilien Verwaltungs-GmbH', 'MATIS Immobilien OHG', 'ABG Apotheken-Beratungsgesellschaft mbH', 'MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt München-Pasing KG', 'Mainova PV_Park 3 GmbH & Co. KG', 'MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Berlin-Friedrichshain KG', 'Mainova Windpark Kaisten GmbH & Co. KG', 'Mainova Windpark Kloppenheim GmbH & Co. KG', 'Mainova Windpark Remlingen GmbH & Co. KG', 'Nordex Beteiligungen GmbH', 'Nordex Energy SE & Co. KG', 'Nordex SE', 'Nordex Forum II Verwaltungs GmbH', 'Nordex Forum II GmbH & Co. KG', 'Minebea Intec Bovenden Verwaltungs-GmbH', 'Minebea Intec Bovenden GmbH & Co. KG', 'Minebea Intec GmbH', 'METRO Dienstleistungs-Holding GmbH', 'MIP METRO Group Intellectual Property GmbH & Co. KG', 'MIP METRO Group Intellectual Property Management GmbH', 'METRO PROPERTIES Management GmbH', 'METRO PROPERTIES GmbH & Co. KG', 'CECONOMY AG', 'METRO AG', 'Minebea Intec Aachen Verwaltungs-GmbH', 'Minebea Intec Aachen GmbH & Co. KG', 'Rheinmetall Aktiengesellschaft', 'Rheinmetall Immobilien Kassel GmbH & Co. KG', 'Rheinmetall Immobilien GmbH', 'HOCHTIEF Solutions Real Estate GmbH', 'Projektgesellschaft Konrad-Adenauer-Ufer Köln GmbH & Co. KG', 'HOCHTIEF Solutions Real Estate Beteiligungsverwaltungsgesellschaft mbH', 'Rheinmetall Immobilien VEGA GmbH & Co. KG', 'Rheinmetall Immobilien Hamburg Friedensallee GmbH', 'NIGRA Verwaltung GmbH & Co. Objekt Neunkirchen KG', 'NWS Grundstücksmanagement GmbH & Co. KG', 'Rheinmetall Immobilien Flensburg GmbH & Co. KG', 'MWFS Zwischenholding Management GmbH', 'MWFS Zwischenholding GmbH & Co. KG', 'Zalando SE', 'Portokali Property Development III SE & Co. KG', 'Zalando Operations GmbH', 'Salzgitter Aktiengesellschaft', 'Salzgitter Hydroforming GmbH & Co KG', 'Salzgitter Hydroforming Verwaltungs GmbH', 'Schaeffler Technologies AG & Co. KG', 'Schaeffler Aerospace Germany GmbH & Co. KG', 'Schaeffler Aerospace Germany Beteiligungs GmbH', 'Schaeffler AG', 'Schaeffler Industrial Remanufacturing Services AG & Co. KG', 'Schaeffler Verwaltungsholding Vier GmbH', 'Schaeffler ByWire Technologie GmbH & Co. KG', 'Schaeffler ByWire Management GmbH', 'Schaeffler Bühl Verwaltungs GmbH', 'Schaeffler Automotive Buehl GmbH & Co. KG', 'Schaeffler Bühl Beteiligungs GmbH', 'Schaeffler Automotive Aftermarket GmbH & Co. KG', 'Schaeffler KWK Verwaltungs GmbH', 'Schaeffler Sondermaschinenbau AG & Co. KG', 'BayWa r.e. Solar Projects Verwaltungs GmbH', 'SPV Solarpark 102. GmbH & Co. KG', 'BayWa r.e. Solar Projects GmbH', 'SPV Solarpark 103. GmbH & Co. KG', 'Volkswagen Immobilien Management GmbH', 'Volkswagen Immobilien BLUE GmbH & Co. KG', 'Volkswagen Immobilien Investment GmbH', 'Tivoli Garden GmbH & Co. KG', 'BayWa r.e. Power Solutions GmbH', 'Solarpark Lupus GmbH & Co. KG', 'United Internet AG', 'United Internet Investments Holding AG & Co. KG', 'United Internet Corporate Services GmbH', 'Südwest Presse + Hapag-Lloyd Reisebüro Verwaltungs GmbH', 'Südwest Presse + Hapag-Lloyd Reisebüro GmbH & Co. KG', 'TUI Deutschland GmbH', 'SIL Verwaltung GmbH & Co. Objekt Haidach KG', 'Umspannwerk Klein Bünsdorf GmbH & Co. KG', 'Volkswagen Automobile Hamburg GmbH', 'Volkswagen Original Teile Logistik GmbH & Co. KG', 'Volkswagen Original Teile Logistik Beteiligungs-GmbH', 'Solarpark Aquarius GmbH & Co. KG', 'Zalando Customer Care DACH SE & Co. KG', 'Zalando Logistics Mönchengladbach SE & Co. KG', 'Windpark Wilhelmshöhe GmbH & Co. KG', 'Zalando Lounge Content Solutions SE & Co. KG', 'Zalando Lounge Service GmbH', 'Zalando Outlets GmbH', 'Zalando Stores GmbH & Co. KG', 'Windfeld Hohenfelde Vier GmbH & Co. KG', 'Wacker Neuson PGM Verwaltungs GmbH', 'Wacker Neuson Produktion GmbH & Co. KG', 'Wacker Neuson SE', 'Windpark Hessenweiler GmbH & Co. KG', 'BayWa r.e. Wind GmbH', 'Windpark Wilhelmshöhe III GmbH & Co. KG', 'Zalando Lounge Logistics SE & Co. KG', 'Zalando Logistics Gießen SE & Co. KG', 'Zalando Logistics Süd SE & Co. KG', 'Windpark Wilhelmshöhe II GmbH & Co. KG', 'Wilhelmshöhe Infrastruktur GmbH & Co. KG', 'Zalando BTD 007 SE & Co. KG', 'Zalando BTD 010 SE & Co. KG', 'Windpark Lindchen GmbH & Co. KG', 'Zalando Customer Care Central Services SE & Co. KG', 'Wacker Neuson SGM Verwaltungs GmbH', 'Wacker Neuson Vertrieb Deutschland GmbH & Co. KG', 'Windpark Freimersheim GmbH & Co. KG', 'Windpark Pferdsfeld GmbH & Co. KG', 'Zalando BTD 009 SE & Co. KG', 'Zalando BTD 011 SE & Co. KG', 'Zalando Customer Care International SE & Co. KG']\n", + "[3.388901942598293e-71, 3.388901942598293e-71, 3.388901942598293e-71, 3.388901942598293e-71, 3.388901942598293e-71, 3.388901942598293e-71, 3.388901942598293e-71, 3.388901942598293e-71, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 3.388901942598293e-71, 3.388901942598293e-71, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 3.388901942598293e-71, 3.388901942598293e-71, 1.489000125812553e-38, 3.7876226806853854e-38, 1.489000125812553e-38, 1.6262203363923875e-38, 1.6262203363923875e-38, 1.6262203363923875e-38, 1.6262203363923875e-38, 1.6262203363923875e-38, 7.08806557562223e-39, 1.759498704335417e-38, 3.388901942598293e-71, 3.388901942598293e-71, 3.388901942598293e-71, 3.388901942598293e-71, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 3.388901942598293e-71, 3.388901942598293e-71, 3.388901942598293e-71, 3.388901942598293e-71, 3.388901942598293e-71, 3.388901942598293e-71, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 3.388901942598293e-71, 3.388901942598293e-71, 3.044826200191761e-38, 4.703493835874945, 70.7123393497226, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 4.703493835874945, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 3.388901942598293e-71, 3.388901942598293e-71, 3.388901942598293e-71, 3.388901942598293e-71, 3.4000179364221217e-59, 6.282413963263321e-59, 3.4000179364221217e-59, 4.808351477999949e-59, 2.6022610680257745e-59, 6.452743039616603e-44, 4.630867036189355e-44, 9.908961087977644e-44, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 1.0594942370057447e-60, 1.835097848820372e-60, 2.1189884740114894e-60, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 8.302314461446184e-65, 2.4769150950076857e-44, 4.3756980448583084e-44, 1.2983230027467069e-43, 1.0594942370057447e-60, 1.835097848820372e-60, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 3.819116382981926e-49, 2.780745266579699e-49, 3.9369722098484666e-49, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 1.5969768112167057e-37, 7.641134667608711e-38, 1.6935058519374985e-37, 7.641134667608711e-38, 3.1909025544756006e-49, 1.144015706921815e-49, 7.641134667608711e-38, 7.641134667608711e-38, 7.641134667608711e-38, 1.4801995649036846e-49, 2.2286577889360977e-49, 7.990276958851127e-50, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 9.652904072079287e-39, 4.1568058776547675e-38, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 7.641134667608711e-38, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 7.641134667608711e-38, 7.641134667608711e-38, 7.059330816295471e-44, 2.4941912864472304e-43, 8.106503019214122e-43, 7.641134667608711e-38, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 1.8999328800621255e-49, 6.432534012700027e-12, 1.2738312893913826e-12, 6.432534012700027e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.2738312893913826e-12, 1.0594942370057447e-60, 1.835097848820372e-60, 2.1189884740114894e-60, 1.0845110054971711e-42, 9.824591783203544e-43, 2.4755307594444537e-42, 3.612733205688101e-42, 1.680168179347267e-42, 1.680168179347267e-42, 3.388901942598293e-71, 3.388901942598293e-71, 9.824591783203544e-43, 1.680168179347267e-42, 2.3268108354438778e-60, 1.3433848621968608e-60, 1.3006165880388649e-51, 3.366955003612427e-51, 7.415546269336597e-51, 6.118197766837104e-46, 3.869488023712208e-46, 6.118197766837104e-46, 1.3433848621968608e-60, 3.869488023712208e-46, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 2.8645415447848145e-51, 2.8645415447848145e-51, 1.0594942370057447e-60, 1.835097848820372e-60, 2.1189884740114894e-60, 1.835097848820372e-60, 1.0594942370057447e-60, 3.869488023712208e-46, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 2.071713669309884e-57, 4.143427338619768e-57, 2.071713669309884e-57, 2.071713669309884e-57, 2.071713669309884e-57, 1.300616588038865e-51, 3.366955003612427e-51, 1.3433848621968608e-60, 1.835097848820372e-60, 1.0594942370057447e-60, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 3.869488023712208e-46, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 1.300616588038865e-51, 3.366955003612427e-51, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 1.300616588038865e-51, 3.366955003612427e-51, 1.610122297106072e-42, 2.2217134517408175e-42, 4.290585918543848e-42, 3.141874339007227e-42, 7.212941279744113e-42, 1.9700179540555804e-42, 1.9700179540555804e-42, 3.141874339007227e-42, 1.610122297106072e-42, 8.738959843078923e-39, 6.267855158646525e-39, 1.610122297106072e-42, 5.8142888331722166e-43, 2.1288193770420782e-42, 1.2648132561658088e-42, 2.3154671579984328e-42, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 1.610122297106072e-42, 2.3154671579984328e-42, 1.610122297106072e-42, 3.141874339007227e-42, 3.141874339007227e-42, 3.141874339007227e-42, 3.4000179364221217e-59, 6.282413963263321e-59, 3.4000179364221217e-59, 2.6022610680257745e-59, 4.808351477999949e-59, 1.0594942370057447e-60, 1.835097848820372e-60, 2.1189884740114894e-60, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 1.469809677584902e-58, 2.7957441431798676e-58, 2.378202015382118e-58, 1.469809677584902e-58, 1.0594942370057447e-60, 1.835097848820372e-60, 8.540725948492417e-56, 1.8578878136654033e-55, 3.1874423173295213e-55, 2.762284892413181e-57, 2.762284892413181e-57, 2.762284892413181e-57, 2.5379219508484485e-55, 2.333369722480279e-55, 9.824591783203544e-43, 2.780745266579699e-49, 2.5379219508484485e-55, 9.083923377972158e-59, 1.7278649043997036e-58, 3.2110611273297996e-33, 1.2833572805219979e-33, 3.2110611273297996e-33, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 1.8421808317251304e-50, 8.123253917924726e-51, 3.0703013862085695e-51, 1.6246507835849368e-50, 1.2281205544834164e-50, 1.6246507835849368e-50, 8.123253917924726e-51, 3.0703013862085695e-51, 2.1189884740114894e-60, 1.835097848820372e-60, 1.0594942370057447e-60, 1.835097848820372e-60, 1.0594942370057447e-60, 1.2281205544834164e-50, 8.716128967236501e-45, 3.079568508870948e-44, 1.0009068472419543e-43, 2.577677962663387e-43, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 2.762284892413181e-57, 1.1306097897521452e-44, 3.9946521055135405e-44, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 9.824591783203544e-43, 4.3756980448583084e-44, 8.302314461446184e-65, 1.1741245710463472e-64, 8.302314461446184e-65, 6.507529821003975e-44, 1.2833572805219979e-33, 1.2833572805219979e-33, 2.6618559110647498e-43, 6.68368993022668e-34, 1.335627350675965e-34, 1.335627350675965e-34, 6.68368993022668e-34, 3.869488023712208e-46, 1.0594942370057447e-60, 1.835097848820372e-60, 2.1189884740114894e-60, 4.630867036189355e-44, 4.137593960178914e-43, 4.8998616263333364e-43, 1.2833572805219979e-33, 1.2833572805219979e-33, 1.2833572805219979e-33, 4.8998616263333364e-43, 5.068014454423869e-43, 1.2833572805219979e-33, 1.2833572805219979e-33, 2.5748446143673024e-43, 1.2833572805219979e-33, 1.0594942370057447e-60, 1.835097848820372e-60, 3.4654571840236626e-43, 1.3536992732752957e-43, 1.2833572805219979e-33, 1.2833572805219979e-33, 1.2833572805219979e-33]\n" + ] + } + ], + "source": [ + "#Set Color by using the nodes DataFrame with its Color Attribute. The sequence matters!\n", + "colors = list(nx.get_node_attributes(graph, \"color\").values())\n", + "\n", + "node_names = []\n", + "for key, value in nodes.items():\n", + " \n", + " if 'name' in value.keys():\n", + " node_names.append(value[\"name\"])\n", + " else:\n", + " node_names.append(value[\"firstname\"] + \" \" + value[\"lastname\"])\n", + " # if value[\"name\"] is not None:\n", + " # node_names.append(value[\"name\"])\n", + " # if value[\"fristname\"] is not None:\n", + " # node_names.append(value[\"firstname\"] + \" \" + value[\"lastname\"])\n", + "print(node_names)\n", + "\n", + "node_trace.marker.color = colors\n", + "node_trace.text = node_names\n", + "print(list(df[\"eigenvector\"]*100))\n", + "node_trace.marker.size = list(df[\"eigenvector\"]*100)" + ] + }, + { + "cell_type": "code", + "execution_count": 332, + "id": "87f11a6c", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'LIQUIDATOR', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST', 'HAFTENDER_GESELLSCHAFTER', 'KOMMANDITIST']\n" + ] + } + ], + "source": [ + "edge_type_list = []\n", + "\n", + "for row in edges:\n", + " edge_type_list.append(row[\"type\"])\n", + "print(edge_type_list)\n", + "edge_weights_trace.text = edge_type_list" + ] + }, + { + "cell_type": "code", + "execution_count": 333, + "id": "5056b872", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "hoverinfo": "none", + "line": { + "color": "#888", + "width": 0.5 + }, + "mode": "lines", + "type": "scatter", + "x": [ + 0.2464417815208435, + 0.25172606110572815, + null, + -0.8643487691879272, + -0.849785327911377, + null, + 0.7213099598884583, + 0.7085275650024414, + null, + -0.7711144685745239, + -0.8085014224052429, + null, + 0.6647935509681702, + 0.6970561742782593, + null, + 0.6970561742782593, + 0.7122176885604858, + null, + -0.31991174817085266, + -0.3319738507270813, + null, + 0.5323485732078552, + 0.5083475708961487, + null, + 0.5083475708961487, + 0.47786831855773926, + null, + 0.94745272397995, + 0.9096888303756714, + null, + 0.9096888303756714, + 0.9196035265922546, + null, + -0.529243528842926, + -0.5202438235282898, + null, + -0.5202438235282898, + -0.5046867728233337, + null, + 0.8094830513000488, + 0.8380988836288452, + null, + 0.09305175393819809, + 0.06944382935762405, + null, + 0.09305175393819809, + 0.09703734517097473, + null, + 0.09305175393819809, + 0.09164725244045258, + null, + 0.06944382935762405, + 0.08689254522323608, + null, + 0.06944382935762405, + 0.053361643105745316, + null, + 0.06944382935762405, + 0.0702107846736908, + null, + 0.06944382935762405, + 0.04806485027074814, + null, + 0.06944382935762405, + 0.06181376054883003, + null, + 0.06944382935762405, + 0.048765797168016434, + null, + 0.06944382935762405, + 0.09164725244045258, + null, + 0.06944382935762405, + 0.059404678642749786, + null, + 0.08689254522323608, + 0.09703734517097473, + null, + 0.08689254522323608, + 0.09164725244045258, + null, + 0.053361643105745316, + 0.059404678642749786, + null, + 0.0702107846736908, + 0.059404678642749786, + null, + 0.04806485027074814, + 0.059404678642749786, + null, + 0.06181376054883003, + 0.059404678642749786, + null, + 0.048765797168016434, + 0.059404678642749786, + null, + 0.09164725244045258, + 0.09397387504577637, + null, + -0.08639825880527496, + -0.08912435919046402, + null, + 0.6305239796638489, + 0.6385115385055542, + null, + -0.7435498833656311, + -0.7086231708526611, + null, + -0.7086231708526611, + -0.710929274559021, + null, + 0.2547479569911957, + 0.24583475291728973, + null, + 0.80356365442276, + 0.8242728114128113, + null, + 0.6503289937973022, + 0.6658776998519897, + null, + 0.30851808190345764, + 0.2976363003253937, + null, + 0.2976363003253937, + 0.29273128509521484, + null, + -0.15112748742103577, + -0.1570119708776474, + null, + 0.059404678642749786, + 0.07985521852970123, + null, + -0.1284271478652954, + -0.17818894982337952, + null, + -0.17818894982337952, + -0.12432386726140976, + null, + -0.17818894982337952, + -0.14883342385292053, + null, + -0.17818894982337952, + -0.25456544756889343, + null, + -0.17818894982337952, + -0.13511669635772705, + null, + -0.17818894982337952, + -0.24739229679107666, + null, + -0.17818894982337952, + -0.1303166151046753, + null, + -0.17818894982337952, + -0.1980099231004715, + null, + -0.17818894982337952, + -0.17042027413845062, + null, + -0.17818894982337952, + -0.13520395755767822, + null, + -0.17818894982337952, + -0.11760076880455017, + null, + -0.17818894982337952, + -0.13204213976860046, + null, + -0.17818894982337952, + -0.16370011866092682, + null, + -0.17818894982337952, + -0.21967563033103943, + null, + -0.17818894982337952, + -0.16272035241127014, + null, + -0.17818894982337952, + -0.21429571509361267, + null, + -0.17818894982337952, + -0.22169461846351624, + null, + -0.17818894982337952, + -0.22970694303512573, + null, + -0.17818894982337952, + -0.1742626428604126, + null, + -0.17818894982337952, + -0.14859582483768463, + null, + -0.17818894982337952, + -0.22891567647457123, + null, + -0.17818894982337952, + -0.17965582013130188, + null, + -0.17818894982337952, + -0.17521105706691742, + null, + -0.17818894982337952, + -0.23457656800746918, + null, + -0.17818894982337952, + -0.15153297781944275, + null, + -0.17818894982337952, + -0.12258791923522949, + null, + -0.17818894982337952, + -0.2538287043571472, + null, + -0.17818894982337952, + -0.13621629774570465, + null, + -0.17818894982337952, + -0.20511791110038757, + null, + -0.17818894982337952, + -0.1497526466846466, + null, + -0.17818894982337952, + -0.205677792429924, + null, + -0.17818894982337952, + -0.2101936638355255, + null, + -0.17818894982337952, + -0.19239604473114014, + null, + -0.17818894982337952, + -0.10195925086736679, + null, + -0.17818894982337952, + -0.20424382388591766, + null, + -0.17818894982337952, + -0.2385687530040741, + null, + -0.17818894982337952, + -0.13157148659229279, + null, + -0.17818894982337952, + -0.16625139117240906, + null, + -0.17818894982337952, + -0.22944991290569305, + null, + -0.17818894982337952, + -0.13887925446033478, + null, + -0.17818894982337952, + -0.1249164491891861, + null, + -0.17818894982337952, + -0.1494278609752655, + null, + -0.17818894982337952, + -0.16960352659225464, + null, + -0.17818894982337952, + -0.1292954981327057, + null, + -0.17818894982337952, + -0.19565628468990326, + null, + -0.17818894982337952, + -0.1668667048215866, + null, + -0.17818894982337952, + -0.20752207934856415, + null, + -0.17818894982337952, + -0.20167209208011627, + null, + -0.17818894982337952, + -0.10813635587692261, + null, + -0.17818894982337952, + -0.2350902259349823, + null, + -0.17818894982337952, + -0.2174261212348938, + null, + -0.17818894982337952, + -0.111735038459301, + null, + -0.17818894982337952, + -0.23778490722179413, + null, + -0.17818894982337952, + -0.1437017172574997, + null, + -0.17818894982337952, + -0.15206530690193176, + null, + -0.17818894982337952, + -0.16517053544521332, + null, + -0.17818894982337952, + -0.19901373982429504, + null, + -0.17818894982337952, + -0.13157251477241516, + null, + -0.17818894982337952, + -0.2598840594291687, + null, + -0.17818894982337952, + -0.24230316281318665, + null, + -0.17818894982337952, + -0.2282845824956894, + null, + -0.17818894982337952, + -0.2186427265405655, + null, + -0.17818894982337952, + -0.23294638097286224, + null, + -0.17818894982337952, + -0.14012150466442108, + null, + -0.17818894982337952, + -0.15808354318141937, + null, + -0.17818894982337952, + -0.15187005698680878, + null, + -0.17818894982337952, + -0.24778763949871063, + null, + -0.17818894982337952, + -0.15779106318950653, + null, + -0.17818894982337952, + -0.14241649210453033, + null, + -0.17818894982337952, + -0.23634730279445648, + null, + -0.17818894982337952, + -0.20118802785873413, + null, + -0.17818894982337952, + -0.24040669202804565, + null, + -0.17818894982337952, + -0.17210963368415833, + null, + -0.17818894982337952, + -0.15866807103157043, + null, + -0.17818894982337952, + -0.24897955358028412, + null, + -0.17818894982337952, + -0.20758585631847382, + null, + -0.17818894982337952, + -0.12388353049755096, + null, + -0.17818894982337952, + -0.11313606798648834, + null, + -0.17818894982337952, + -0.207554891705513, + null, + -0.17818894982337952, + -0.20505473017692566, + null, + -0.17818894982337952, + -0.22524401545524597, + null, + -0.17818894982337952, + -0.14105357229709625, + null, + -0.17818894982337952, + -0.1599196493625641, + null, + -0.17818894982337952, + -0.2485535442829132, + null, + -0.17818894982337952, + -0.1266763061285019, + null, + -0.17818894982337952, + -0.16532118618488312, + null, + -0.17818894982337952, + -0.22996456921100616, + null, + -0.17818894982337952, + -0.14609640836715698, + null, + -0.17818894982337952, + -0.18484686315059662, + null, + -0.17818894982337952, + -0.15611790120601654, + null, + -0.17818894982337952, + -0.17658935487270355, + null, + -0.17818894982337952, + -0.16765236854553223, + null, + -0.17818894982337952, + -0.15946480631828308, + null, + -0.17818894982337952, + -0.1404140591621399, + null, + -0.17818894982337952, + -0.1221090778708458, + null, + -0.17818894982337952, + -0.10441064089536667, + null, + -0.17818894982337952, + -0.24303625524044037, + null, + -0.17818894982337952, + -0.21917378902435303, + null, + -0.17818894982337952, + -0.23526756465435028, + null, + -0.17818894982337952, + -0.11459805816411972, + null, + -0.17818894982337952, + -0.17676596343517303, + null, + -0.17818894982337952, + -0.10418083518743515, + null, + -0.17818894982337952, + -0.246490016579628, + null, + -0.17818894982337952, + -0.10202881693840027, + null, + -0.17818894982337952, + -0.18514011800289154, + null, + -0.17818894982337952, + -0.20179258286952972, + null, + -0.17818894982337952, + -0.25322943925857544, + null, + -0.17818894982337952, + -0.19924607872962952, + null, + -0.17818894982337952, + -0.23431986570358276, + null, + -0.17818894982337952, + -0.2128400206565857, + null, + -0.17818894982337952, + -0.17972512543201447, + null, + -0.17818894982337952, + -0.137827068567276, + null, + -0.17818894982337952, + -0.11883512139320374, + null, + -0.17818894982337952, + -0.12234979122877121, + null, + -0.17818894982337952, + -0.23776763677597046, + null, + -0.17818894982337952, + -0.1679217666387558, + null, + -0.17818894982337952, + -0.246311217546463, + null, + -0.17818894982337952, + -0.1937747448682785, + null, + -0.17818894982337952, + -0.19066055119037628, + null, + -0.17818894982337952, + -0.18040311336517334, + null, + -0.17818894982337952, + -0.143699511885643, + null, + -0.17818894982337952, + -0.18751756846904755, + null, + -0.17818894982337952, + -0.10209102183580399, + null, + -0.17818894982337952, + -0.2559468448162079, + null, + -0.17818894982337952, + -0.22762572765350342, + null, + -0.17818894982337952, + -0.21662504971027374, + null, + -0.17818894982337952, + -0.1157405823469162, + null, + -0.17818894982337952, + -0.20824986696243286, + null, + -0.17818894982337952, + -0.24341821670532227, + null, + -0.17818894982337952, + -0.11275818943977356, + null, + -0.17818894982337952, + -0.24202249944210052, + null, + -0.17818894982337952, + -0.11632934957742691, + null, + -0.17818894982337952, + -0.11565285176038742, + null, + -0.17818894982337952, + -0.11045313626527786, + null, + -0.17818894982337952, + -0.10998841375112534, + null, + -0.17818894982337952, + -0.11163754016160965, + null, + -0.17818894982337952, + -0.19548511505126953, + null, + -0.17818894982337952, + -0.15208441019058228, + null, + -0.17818894982337952, + -0.17572230100631714, + null, + -0.17818894982337952, + -0.25624075531959534, + null, + -0.17818894982337952, + -0.24925406277179718, + null, + -0.17818894982337952, + -0.25888320803642273, + null, + -0.17818894982337952, + -0.2252219021320343, + null, + -0.17818894982337952, + -0.22396187484264374, + null, + -0.17818894982337952, + -0.24115706980228424, + null, + -0.17818894982337952, + -0.12786592543125153, + null, + -0.17818894982337952, + -0.2290673851966858, + null, + -0.17818894982337952, + -0.14927922189235687, + null, + -0.17818894982337952, + -0.12264102697372437, + null, + -0.17818894982337952, + -0.19392389059066772, + null, + -0.17818894982337952, + -0.18331757187843323, + null, + -0.17818894982337952, + -0.17868588864803314, + null, + -0.17818894982337952, + -0.1989036351442337, + null, + -0.17818894982337952, + -0.21347738802433014, + null, + -0.17818894982337952, + -0.23569229245185852, + null, + -0.17818894982337952, + -0.15804260969161987, + null, + -0.17818894982337952, + -0.14508919417858124, + null, + -0.17818894982337952, + -0.11032046377658844, + null, + -0.17818894982337952, + -0.18823827803134918, + null, + -0.17818894982337952, + -0.22647514939308167, + null, + -0.17818894982337952, + -0.1719135344028473, + null, + -0.17818894982337952, + -0.21580767631530762, + null, + -0.17818894982337952, + -0.22741787135601044, + null, + -0.17818894982337952, + -0.1428532600402832, + null, + -0.17818894982337952, + -0.22529613971710205, + null, + -0.17818894982337952, + -0.21699360013008118, + null, + -0.17818894982337952, + -0.24693825840950012, + null, + -0.17818894982337952, + -0.12115846574306488, + null, + -0.17818894982337952, + -0.19217078387737274, + null, + -0.17818894982337952, + -0.13430455327033997, + null, + -0.17818894982337952, + -0.2207660675048828, + null, + -0.17818894982337952, + -0.1446482092142105, + null, + -0.17818894982337952, + -0.2389439046382904, + null, + -0.17818894982337952, + -0.20941855013370514, + null, + -0.17818894982337952, + -0.11716937273740768, + null, + -0.17818894982337952, + -0.13753119111061096, + null, + -0.17818894982337952, + -0.1792864054441452, + null, + -0.17818894982337952, + -0.21764332056045532, + null, + -0.17818894982337952, + -0.20751698315143585, + null, + -0.17818894982337952, + -0.16021457314491272, + null, + -0.17818894982337952, + -0.13320334255695343, + null, + -0.17818894982337952, + -0.22248513996601105, + null, + -0.17818894982337952, + -0.12996813654899597, + null, + -0.17818894982337952, + -0.20943060517311096, + null, + -0.17818894982337952, + -0.2331756353378296, + null, + -0.17818894982337952, + -0.21208059787750244, + null, + -0.17818894982337952, + -0.25194939970970154, + null, + -0.17818894982337952, + -0.1620938926935196, + null, + -0.17818894982337952, + -0.1661572903394699, + null, + -0.17818894982337952, + -0.20233558118343353, + null, + -0.17818894982337952, + -0.2395186871290207, + null, + -0.17818894982337952, + -0.21228237450122833, + null, + -0.17818894982337952, + -0.14793549478054047, + null, + -0.17818894982337952, + -0.15440288186073303, + null, + -0.17818894982337952, + -0.10328324139118195, + null, + -0.17818894982337952, + -0.1490774005651474, + null, + -0.17818894982337952, + -0.19848668575286865, + null, + -0.17818894982337952, + -0.18528667092323303, + null, + -0.17818894982337952, + -0.12331429868936539, + null, + -0.17818894982337952, + -0.1916562020778656, + null, + -0.17818894982337952, + -0.10681680589914322, + null, + -0.17818894982337952, + -0.13087883591651917, + null, + -0.17818894982337952, + -0.25629815459251404, + null, + -0.17818894982337952, + -0.19444173574447632, + null, + -0.17818894982337952, + -0.13788825273513794, + null, + -0.17818894982337952, + -0.1326226145029068, + null, + -0.17818894982337952, + -0.1689344346523285, + null, + -0.17818894982337952, + -0.2193451225757599, + null, + -0.17818894982337952, + -0.21659494936466217, + null, + -0.17818894982337952, + -0.1402275711297989, + null, + -0.17818894982337952, + -0.12144209444522858, + null, + -0.17818894982337952, + -0.1821037232875824, + null, + -0.17818894982337952, + -0.2431059032678604, + null, + -0.17818894982337952, + -0.18646806478500366, + null, + -0.17818894982337952, + -0.10895069688558578, + null, + -0.17818894982337952, + -0.16849477589130402, + null, + -0.17818894982337952, + -0.24979886412620544, + null, + -0.17818894982337952, + -0.15402990579605103, + null, + -0.17818894982337952, + -0.18484821915626526, + null, + -0.17818894982337952, + -0.19309543073177338, + null, + -0.17818894982337952, + -0.18273785710334778, + null, + -0.17818894982337952, + -0.15894363820552826, + null, + -0.17818894982337952, + -0.18989592790603638, + null, + -0.17818894982337952, + -0.22846537828445435, + null, + -0.17818894982337952, + -0.20194196701049805, + null, + -0.17818894982337952, + -0.22008191049098969, + null, + 0.01871669851243496, + 0.004878245294094086, + null, + 0.004878245294094086, + -0.01049591600894928, + null, + -0.18674449622631073, + -0.1805674284696579, + null, + -0.1805674284696579, + -0.1727060079574585, + null, + 0.8782918453216553, + 0.9154072999954224, + null, + -0.8432600498199463, + -0.816394031047821, + null, + -0.6016141772270203, + -0.5971851944923401, + null, + -0.5971851944923401, + -0.6298348307609558, + null, + -0.5971851944923401, + -0.6077018976211548, + null, + -0.6077018976211548, + -0.6214359402656555, + null, + 0.2685452997684479, + 0.252021849155426, + null, + 0.2685452997684479, + 0.25724613666534424, + null, + 0.2685452997684479, + 0.25209227204322815, + null, + 0.252021849155426, + 0.23288235068321228, + null, + 0.23288235068321228, + 0.25724613666534424, + null, + 0.23288235068321228, + 0.21412575244903564, + null, + 0.08457986265420914, + 0.09816455841064453, + null, + 0.09816455841064453, + 0.10423561930656433, + null, + -0.060628972947597504, + -0.044803958386182785, + null, + -0.044803958386182785, + -0.038853902369737625, + null, + -0.038853902369737625, + -0.03707969933748245, + null, + -0.9164776802062988, + -0.8794518113136292, + null, + -0.8794518113136292, + -0.8324653506278992, + null, + -0.5842205286026001, + -0.6227914690971375, + null, + -0.6227914690971375, + -0.6533200144767761, + null, + -0.7713537216186523, + -0.7864565849304199, + null, + -0.7864565849304199, + -0.8089522123336792, + null, + 0.11125195771455765, + 0.1120065301656723, + null, + 0.11125195771455765, + 0.1202302798628807, + null, + 0.1120065301656723, + 0.12641258537769318, + null, + 0.12641258537769318, + 0.10267745703458786, + null, + 0.12641258537769318, + 0.1202302798628807, + null, + 0.12641258537769318, + 0.15508252382278442, + null, + 0.12641258537769318, + 0.1597600132226944, + null, + -0.03663073480129242, + -0.03707969933748245, + null, + -0.4878994822502136, + -0.46731165051460266, + null, + -0.46731165051460266, + -0.45075297355651855, + null, + -0.24870175123214722, + -0.2614414691925049, + null, + -0.2614414691925049, + -0.2718934714794159, + null, + 0.770074188709259, + 0.763022243976593, + null, + 0.763022243976593, + 0.733385443687439, + null, + -0.6501139402389526, + -0.6353998780250549, + null, + -0.6501139402389526, + -0.6443923115730286, + null, + -0.6501139402389526, + -0.6540432572364807, + null, + -0.6501139402389526, + -0.646020770072937, + null, + -0.6353998780250549, + -0.6185294985771179, + null, + -0.6185294985771179, + -0.6443923115730286, + null, + -0.6185294985771179, + -0.6076157093048096, + null, + -0.6185294985771179, + -0.646020770072937, + null, + 0.3407366871833801, + 0.3609964847564697, + null, + 0.3609964847564697, + 0.37759077548980713, + null, + 0.4212779104709625, + 0.4061054587364197, + null, + 0.4212779104709625, + 0.433755487203598, + null, + 0.4212779104709625, + 0.4059285819530487, + null, + 0.4212779104709625, + 0.4242550730705261, + null, + 0.4212779104709625, + 0.4413616955280304, + null, + 0.4212779104709625, + 0.4144650101661682, + null, + 0.4212779104709625, + 0.42734184861183167, + null, + 0.4212779104709625, + 0.4408956468105316, + null, + 0.4212779104709625, + 0.4417618215084076, + null, + 0.4061054587364197, + 0.4231255352497101, + null, + 0.4231255352497101, + 0.433755487203598, + null, + 0.4231255352497101, + 0.4059285819530487, + null, + 0.4231255352497101, + 0.4242550730705261, + null, + 0.4231255352497101, + 0.4413616955280304, + null, + 0.4231255352497101, + 0.4479134678840637, + null, + 0.4231255352497101, + 0.4144650101661682, + null, + 0.4231255352497101, + 0.42734184861183167, + null, + 0.4231255352497101, + 0.4408956468105316, + null, + 0.4231255352497101, + 0.4417618215084076, + null, + -0.6443923115730286, + -0.6799862384796143, + null, + -0.6349909901618958, + -0.6076157093048096, + null, + -0.6349909901618958, + -0.6540432572364807, + null, + -0.6076157093048096, + -0.6169940829277039, + null, + 0.19512459635734558, + 0.2014160454273224, + null, + 0.2014160454273224, + 0.2027176171541214, + null, + -0.48490282893180847, + -0.4689778685569763, + null, + -0.4689778685569763, + -0.4578639566898346, + null, + 0.47405925393104553, + 0.4479134678840637, + null, + -0.5857027173042297, + -0.5632457733154297, + null, + -0.5632457733154297, + -0.5830931663513184, + null, + -0.33596739172935486, + -0.3488348126411438, + null, + -0.3488348126411438, + -0.36012399196624756, + null, + 0.271980345249176, + 0.2407788187265396, + null, + 0.2407788187265396, + 0.19975000619888306, + null, + 0.19975000619888306, + 0.18772630393505096, + null, + 0.19975000619888306, + 0.1597600132226944, + null, + 0.19975000619888306, + 0.22481170296669006, + null, + 0.19975000619888306, + 0.2162562757730484, + null, + 0.19975000619888306, + 0.21467441320419312, + null, + 0.19975000619888306, + 0.21412575244903564, + null, + 0.19975000619888306, + 0.2219676971435547, + null, + -0.12896086275577545, + -0.12559100985527039, + null, + -0.12559100985527039, + -0.12116096913814545, + null, + 0.35391926765441895, + 0.3464866876602173, + null, + 0.35391926765441895, + 0.3653092682361603, + null, + 0.35391926765441895, + 0.396016925573349, + null, + 0.35391926765441895, + 0.37080690264701843, + null, + 0.35391926765441895, + 0.3737362027168274, + null, + 0.35391926765441895, + 0.3910733163356781, + null, + 0.35391926765441895, + 0.32653501629829407, + null, + 0.35391926765441895, + 0.325710266828537, + null, + 0.35391926765441895, + 0.3884318172931671, + null, + 0.35391926765441895, + 0.37907880544662476, + null, + 0.35391926765441895, + 0.38849908113479614, + null, + 0.35391926765441895, + 0.35184648633003235, + null, + 0.35391926765441895, + 0.3365691304206848, + null, + 0.35391926765441895, + 0.33936619758605957, + null, + 0.35391926765441895, + 0.35052689909935, + null, + 0.35391926765441895, + 0.35440656542778015, + null, + 0.35391926765441895, + 0.34969276189804077, + null, + 0.35391926765441895, + 0.33436959981918335, + null, + 0.35391926765441895, + 0.35019275546073914, + null, + 0.35391926765441895, + 0.39093875885009766, + null, + 0.35391926765441895, + 0.3761758804321289, + null, + 0.35391926765441895, + 0.34291279315948486, + null, + 0.35391926765441895, + 0.3591412305831909, + null, + 0.35391926765441895, + 0.3421798050403595, + null, + 0.35391926765441895, + 0.3680083155632019, + null, + 0.35391926765441895, + 0.3368403911590576, + null, + 0.35391926765441895, + 0.37288999557495117, + null, + 0.35391926765441895, + 0.3687383234500885, + null, + 0.35391926765441895, + 0.3324868083000183, + null, + 0.35391926765441895, + 0.3939424455165863, + null, + 0.35391926765441895, + 0.3615078330039978, + null, + 0.35391926765441895, + 0.3744443356990814, + null, + 0.35391926765441895, + 0.3460165858268738, + null, + 0.35391926765441895, + 0.3407641649246216, + null, + 0.35391926765441895, + 0.3825913667678833, + null, + 0.35391926765441895, + 0.3855513334274292, + null, + 0.35391926765441895, + 0.38743987679481506, + null, + 0.35391926765441895, + 0.3952467143535614, + null, + 0.35391926765441895, + 0.3792616128921509, + null, + 0.35391926765441895, + 0.3803744316101074, + null, + 0.35391926765441895, + 0.3802337944507599, + null, + 0.35391926765441895, + 0.373130738735199, + null, + 0.35391926765441895, + 0.3623795807361603, + null, + 0.35391926765441895, + 0.3654484748840332, + null, + 0.35391926765441895, + 0.35712701082229614, + null, + 0.35391926765441895, + 0.3346136808395386, + null, + 0.35391926765441895, + 0.3366940915584564, + null, + 0.35391926765441895, + 0.3258623480796814, + null, + 0.35391926765441895, + 0.3817720115184784, + null, + 0.35391926765441895, + 0.3275751769542694, + null, + 0.35391926765441895, + 0.32758036255836487, + null, + 0.3464866876602173, + 0.35391926765441895, + null, + 0.35391926765441895, + 0.3653092682361603, + null, + 0.35391926765441895, + 0.396016925573349, + null, + 0.35391926765441895, + 0.37080690264701843, + null, + 0.35391926765441895, + 0.3737362027168274, + null, + 0.35391926765441895, + 0.3910733163356781, + null, + 0.35391926765441895, + 0.32653501629829407, + null, + 0.35391926765441895, + 0.325710266828537, + null, + 0.35391926765441895, + 0.3884318172931671, + null, + 0.35391926765441895, + 0.37907880544662476, + null, + 0.35391926765441895, + 0.38849908113479614, + null, + 0.35391926765441895, + 0.35184648633003235, + null, + 0.35391926765441895, + 0.3365691304206848, + null, + 0.35391926765441895, + 0.33936619758605957, + null, + 0.35391926765441895, + 0.35052689909935, + null, + 0.35391926765441895, + 0.35440656542778015, + null, + 0.35391926765441895, + 0.34969276189804077, + null, + 0.35391926765441895, + 0.33436959981918335, + null, + 0.35391926765441895, + 0.35019275546073914, + null, + 0.35391926765441895, + 0.39093875885009766, + null, + 0.35391926765441895, + 0.3761758804321289, + null, + 0.35391926765441895, + 0.34291279315948486, + null, + 0.35391926765441895, + 0.3591412305831909, + null, + 0.35391926765441895, + 0.3421798050403595, + null, + 0.35391926765441895, + 0.3680083155632019, + null, + 0.35391926765441895, + 0.3368403911590576, + null, + 0.35391926765441895, + 0.37288999557495117, + null, + 0.35391926765441895, + 0.3687383234500885, + null, + 0.35391926765441895, + 0.3324868083000183, + null, + 0.35391926765441895, + 0.3939424455165863, + null, + 0.35391926765441895, + 0.3615078330039978, + null, + 0.35391926765441895, + 0.3744443356990814, + null, + 0.35391926765441895, + 0.3460165858268738, + null, + 0.35391926765441895, + 0.3407641649246216, + null, + 0.35391926765441895, + 0.3825913667678833, + null, + 0.35391926765441895, + 0.3855513334274292, + null, + 0.35391926765441895, + 0.38743987679481506, + null, + 0.35391926765441895, + 0.3952467143535614, + null, + 0.35391926765441895, + 0.3792616128921509, + null, + 0.35391926765441895, + 0.3803744316101074, + null, + 0.35391926765441895, + 0.3802337944507599, + null, + 0.35391926765441895, + 0.373130738735199, + null, + 0.35391926765441895, + 0.3623795807361603, + null, + 0.35391926765441895, + 0.3654484748840332, + null, + 0.35391926765441895, + 0.35712701082229614, + null, + 0.35391926765441895, + 0.3346136808395386, + null, + 0.35391926765441895, + 0.3366940915584564, + null, + 0.35391926765441895, + 0.3258623480796814, + null, + 0.35391926765441895, + 0.3817720115184784, + null, + 0.35391926765441895, + 0.3275751769542694, + null, + 0.35391926765441895, + 0.32758036255836487, + null, + -0.21691559255123138, + -0.20748159289360046, + null, + -0.20748159289360046, + -0.1959778070449829, + null, + -0.5877715945243835, + -0.5641599297523499, + null, + -0.5641599297523499, + -0.5367216467857361, + null, + 0.32408422231674194, + 0.34906628727912903, + null, + 0.34906628727912903, + 0.3747580945491791, + null, + 0.3747580945491791, + 0.3970161974430084, + null, + 0.0455169677734375, + 0.050850190222263336, + null, + 0.0455169677734375, + 0.06742318719625473, + null, + 0.0455169677734375, + 0.06226656213402748, + null, + 0.0455169677734375, + 0.05785457789897919, + null, + 0.050850190222263336, + 0.07081958651542664, + null, + 0.07081958651542664, + 0.10137855261564255, + null, + 0.07081958651542664, + 0.09851787239313126, + null, + 0.07081958651542664, + 0.06742318719625473, + null, + 0.07081958651542664, + 0.10191644728183746, + null, + 0.07081958651542664, + 0.06226656213402748, + null, + 0.07081958651542664, + 0.05785457789897919, + null, + 0.12935557961463928, + 0.10137855261564255, + null, + 0.12935557961463928, + 0.09851787239313126, + null, + 0.12935557961463928, + 0.10191644728183746, + null, + 0.12935557961463928, + 0.15432699024677277, + null, + 0.12935557961463928, + 0.13912715017795563, + null, + 0.12935557961463928, + 0.14708209037780762, + null, + 0.12935557961463928, + 0.1451844871044159, + null, + 0.12935557961463928, + 0.15992747247219086, + null, + 0.8224155902862549, + 0.8195464015007019, + null, + -0.3581405282020569, + -0.3344023525714874, + null, + -0.3581405282020569, + -0.3728470802307129, + null, + -0.3581405282020569, + -0.38022086024284363, + null, + 0.6440825462341309, + 0.6332850456237793, + null, + 0.6332850456237793, + 0.6425581574440002, + null, + 0.6425581574440002, + 0.6667846441268921, + null, + 0.6425581574440002, + 0.6730529069900513, + null, + 0.6425581574440002, + 0.6846449971199036, + null, + 0.6425581574440002, + 0.6518868803977966, + null, + 0.6425581574440002, + 0.650081992149353, + null, + 0.2663162648677826, + 0.2701452374458313, + null, + 0.2663162648677826, + 0.26035067439079285, + null, + 0.2663162648677826, + 0.25845909118652344, + null, + 0.2663162648677826, + 0.2787091135978699, + null, + 0.2663162648677826, + 0.250155508518219, + null, + 0.2701452374458313, + 0.2599833607673645, + null, + 0.2599833607673645, + 0.26035067439079285, + null, + 0.2599833607673645, + 0.25845909118652344, + null, + 0.2599833607673645, + 0.2787091135978699, + null, + 0.2599833607673645, + 0.250155508518219, + null, + 0.08294477313756943, + 0.09022372961044312, + null, + 0.09022372961044312, + 0.09686462581157684, + null, + 0.41453877091407776, + 0.3970161974430084, + null, + 0.3558817207813263, + 0.3772730231285095, + null, + 0.3558817207813263, + 0.34200403094291687, + null, + 0.3772730231285095, + 0.40047866106033325, + null, + 0.48276978731155396, + 0.5012227892875671, + null, + 0.5012227892875671, + 0.5043168067932129, + null, + -0.7456961870193481, + -0.7433612942695618, + null, + -0.7433612942695618, + -0.7190871238708496, + null, + -0.7433612942695618, + -0.7781549096107483, + null, + -0.7433612942695618, + -0.7632617950439453, + null, + 0.7165974378585815, + 0.6846449971199036, + null, + 0.34200403094291687, + 0.34770387411117554, + null, + 0.8555475473403931, + 0.8316174745559692, + null, + 0.8316174745559692, + 0.8042268753051758, + null, + -0.3994385302066803, + -0.3841426372528076, + null, + -0.3841426372528076, + -0.3689253032207489, + null, + 0.667101263999939, + 0.6518868803977966, + null, + 0.36657166481018066, + 0.3507234454154968, + null, + 0.3507234454154968, + 0.3654472529888153, + null, + 0.6766417026519775, + 0.650081992149353, + null, + 0.15432699024677277, + 0.15983179211616516, + null, + 0.15983179211616516, + 0.13912715017795563, + null, + 0.15983179211616516, + 0.14708209037780762, + null, + 0.15983179211616516, + 0.1451844871044159, + null, + 0.15983179211616516, + 0.15992747247219086, + null, + -0.15838664770126343, + -0.17865103483200073, + null, + -0.15838664770126343, + -0.16000919044017792, + null, + -0.15838664770126343, + -0.1749914288520813, + null, + -0.15838664770126343, + -0.16567693650722504, + null, + -0.15838664770126343, + -0.17007072269916534, + null, + -0.17865103483200073, + -0.18394313752651215, + null, + -0.18394313752651215, + -0.20219142735004425, + null, + -0.18394313752651215, + -0.19360952079296112, + null, + -0.18394313752651215, + -0.16000919044017792, + null, + -0.18394313752651215, + -0.21503837406635284, + null, + -0.18394313752651215, + -0.20643223822116852, + null, + -0.18394313752651215, + -0.2000293880701065, + null, + -0.18394313752651215, + -0.1749914288520813, + null, + -0.18394313752651215, + -0.16567693650722504, + null, + -0.18394313752651215, + -0.17007072269916534, + null, + 0.07985521852970123, + 0.09397387504577637, + null, + -0.23304221034049988, + -0.21503837406635284, + null, + -0.22043782472610474, + -0.20643223822116852, + null, + -0.22043782472610474, + -0.2000293880701065, + null, + -0.6609592437744141, + -0.6315853595733643, + null, + -0.6315853595733643, + -0.627214252948761, + null, + 0.7468717694282532, + 0.7230534553527832, + null, + 0.7230534553527832, + 0.6988825798034668, + null, + 0.7230534553527832, + 0.7420296669006348, + null, + 0.7611645460128784, + 0.7420296669006348, + null, + 0.7211785316467285, + 0.7694008946418762, + null, + 0.7694008946418762, + 0.8146566152572632, + null, + 0.8146566152572632, + 0.8558453917503357, + null, + 0.5429590344429016, + 0.5664284825325012, + null, + 0.5664284825325012, + 0.5901332497596741, + null, + 0.4529556632041931, + 0.43243205547332764, + null, + 0.43243205547332764, + 0.4353798031806946, + null, + 0.43243205547332764, + 0.4366755783557892, + null, + 0.4353798031806946, + 0.44622841477394104, + null, + 0.8921899199485779, + 0.8558453917503357, + null, + -0.7503349781036377, + -0.7304964065551758, + null, + -0.7304964065551758, + -0.7213456630706787, + null, + -0.7213456630706787, + -0.7344723343849182, + null, + -0.7213456630706787, + -0.7422614693641663, + null, + 0.9458717703819275, + 0.9244584441184998, + null, + 0.9458717703819275, + 0.9299091696739197, + null, + 0.9244584441184998, + 0.894565761089325, + null, + 0.894565761089325, + 0.9299091696739197, + null, + -0.7344723343849182, + -0.7496107816696167, + null, + -0.7496107816696167, + -0.7422614693641663, + null, + 0.46513617038726807, + 0.44622841477394104, + null, + 0.5678045749664307, + 0.5916979312896729, + null, + 0.5678045749664307, + 0.6001533269882202, + null, + 0.5678045749664307, + 0.557486891746521, + null, + 0.5678045749664307, + 0.602821409702301, + null, + 0.5678045749664307, + 0.5903499126434326, + null, + 0.5678045749664307, + 0.5947532653808594, + null, + 0.5678045749664307, + 0.5840409994125366, + null, + 0.5678045749664307, + 0.5642147660255432, + null, + 0.5678045749664307, + 0.5803174376487732, + null, + 0.5678045749664307, + 0.5747452974319458, + null, + 0.5678045749664307, + 0.5351385474205017, + null, + 0.5678045749664307, + 0.5935290455818176, + null, + 0.5678045749664307, + 0.5807700157165527, + null, + 0.5916979312896729, + 0.5712817311286926, + null, + 0.5712817311286926, + 0.6001533269882202, + null, + 0.5712817311286926, + 0.557486891746521, + null, + 0.5712817311286926, + 0.6197221279144287, + null, + 0.5712817311286926, + 0.5903499126434326, + null, + 0.5712817311286926, + 0.5947532653808594, + null, + 0.5712817311286926, + 0.5840409994125366, + null, + 0.5712817311286926, + 0.5642147660255432, + null, + 0.5712817311286926, + 0.5803174376487732, + null, + 0.5712817311286926, + 0.5747452974319458, + null, + 0.5712817311286926, + 0.5351385474205017, + null, + 0.5712817311286926, + 0.5935290455818176, + null, + 0.5712817311286926, + 0.5807700157165527, + null, + -0.8308581113815308, + -0.8210585713386536, + null, + -0.8210585713386536, + -0.8490455150604248, + null, + -0.1978202611207962, + -0.2176109105348587, + null, + -0.1978202611207962, + -0.21922965347766876, + null, + -0.1978202611207962, + -0.1751958131790161, + null, + -0.1978202611207962, + -0.1824841946363449, + null, + -0.2176109105348587, + -0.2317284494638443, + null, + -0.1824841946363449, + -0.1832122802734375, + null, + -0.1824841946363449, + -0.16867251694202423, + null, + -0.1832122802734375, + -0.1751958131790161, + null, + -0.1751958131790161, + -0.16867251694202423, + null, + -0.21922965347766876, + -0.23321226239204407, + null, + 0.026668677106499672, + 0.05257432907819748, + null, + 0.026668677106499672, + 0.004022039473056793, + null, + 0.05257432907819748, + 0.07427182048559189, + null, + 0.004022039473056793, + -0.00817697960883379, + null, + 0.1889980286359787, + 0.1823005974292755, + null, + 0.1823005974292755, + 0.1769936978816986, + null, + 0.1769936978816986, + 0.18772630393505096, + null, + 0.1769936978816986, + 0.15508252382278442, + null, + -0.22267284989356995, + -0.21267397701740265, + null, + -0.21267397701740265, + -0.20073741674423218, + null, + 0.09316626936197281, + 0.10267745703458786, + null, + -0.3001697063446045, + -0.3148300051689148, + null, + -0.3148300051689148, + -0.3114093542098999, + null, + 0.8294669389724731, + 0.8084141612052917, + null, + 0.8084141612052917, + 0.8291566967964172, + null, + -0.8105132579803467, + -0.8483940958976746, + null, + -0.8483940958976746, + -0.8759222030639648, + null, + 0.602821409702301, + 0.6329485177993774, + null, + 0.6558703184127808, + 0.6197221279144287, + null, + -0.3608476519584656, + -0.38343122601509094, + null, + -0.38343122601509094, + -0.40349528193473816, + null, + -0.40349528193473816, + -0.41822436451911926, + null, + 0.23185665905475616, + 0.22481170296669006, + null, + 0.23185665905475616, + 0.21467441320419312, + null, + 0.23185665905475616, + 0.2219676971435547, + null, + 0.23185665905475616, + 0.25209227204322815, + null, + 0.22481170296669006, + 0.2162562757730484, + null, + 0.21467441320419312, + 0.2162562757730484, + null, + -0.4421737790107727, + -0.41822436451911926, + null + ], + "y": [ + -0.654484748840332, + -0.6727984547615051, + null, + 0.3861032724380493, + 0.38038378953933716, + null, + -0.3671012222766876, + -0.36623573303222656, + null, + 0.09753039479255676, + 0.10561967641115189, + null, + -0.23978674411773682, + -0.24828967452049255, + null, + -0.24828967452049255, + -0.2456149011850357, + null, + -0.7752000093460083, + -0.8041287064552307, + null, + 0.6426486968994141, + 0.6169246435165405, + null, + 0.6169246435165405, + 0.5847172737121582, + null, + -0.23671990633010864, + -0.22755968570709229, + null, + -0.22755968570709229, + -0.21678262948989868, + null, + -0.5879956483840942, + -0.6004277467727661, + null, + -0.6004277467727661, + -0.6020035147666931, + null, + -0.4581385552883148, + -0.4738360047340393, + null, + -0.7030104994773865, + -0.6811888813972473, + null, + -0.7030104994773865, + -0.7308123707771301, + null, + -0.7030104994773865, + -0.6838248372077942, + null, + -0.6811888813972473, + -0.7085652947425842, + null, + -0.6811888813972473, + -0.6997040510177612, + null, + -0.6811888813972473, + -0.6987282633781433, + null, + -0.6811888813972473, + -0.6913259625434875, + null, + -0.6811888813972473, + -0.703658938407898, + null, + -0.6811888813972473, + -0.6728756427764893, + null, + -0.6811888813972473, + -0.6838248372077942, + null, + -0.6811888813972473, + -0.6780945062637329, + null, + -0.7085652947425842, + -0.7308123707771301, + null, + -0.7085652947425842, + -0.6838248372077942, + null, + -0.6997040510177612, + -0.6780945062637329, + null, + -0.6987282633781433, + -0.6780945062637329, + null, + -0.6913259625434875, + -0.6780945062637329, + null, + -0.703658938407898, + -0.6780945062637329, + null, + -0.6728756427764893, + -0.6780945062637329, + null, + -0.6838248372077942, + -0.6563541293144226, + null, + -0.7609090209007263, + -0.7847898006439209, + null, + -0.5877047181129456, + -0.57647705078125, + null, + -0.4498060941696167, + -0.43128105998039246, + null, + -0.43128105998039246, + -0.44557812809944153, + null, + -0.7729795575141907, + -0.7432258725166321, + null, + 0.46667900681495667, + 0.4773072600364685, + null, + -0.19516253471374512, + -0.1950828731060028, + null, + -0.7367873787879944, + -0.7068465948104858, + null, + -0.7068465948104858, + -0.6902238726615906, + null, + -0.7298604846000671, + -0.7650537490844727, + null, + -0.6780945062637329, + -0.6671568751335144, + null, + 0.24199002981185913, + 0.19445481896400452, + null, + 0.19445481896400452, + 0.18462082743644714, + null, + 0.19445481896400452, + 0.1879468560218811, + null, + 0.19445481896400452, + 0.17327818274497986, + null, + 0.19445481896400452, + 0.19174717366695404, + null, + 0.19445481896400452, + 0.23374836146831512, + null, + 0.19445481896400452, + 0.2000858187675476, + null, + 0.19445481896400452, + 0.14627106487751007, + null, + 0.19445481896400452, + 0.15519452095031738, + null, + 0.19445481896400452, + 0.18233639001846313, + null, + 0.19445481896400452, + 0.24529200792312622, + null, + 0.19445481896400452, + 0.2501440942287445, + null, + 0.19445481896400452, + 0.2730642855167389, + null, + 0.19445481896400452, + 0.16840383410453796, + null, + 0.19445481896400452, + 0.22277267277240753, + null, + 0.19445481896400452, + 0.24298763275146484, + null, + 0.19445481896400452, + 0.23977237939834595, + null, + 0.19445481896400452, + 0.19515976309776306, + null, + 0.19445481896400452, + 0.1311510056257248, + null, + 0.19445481896400452, + 0.23807379603385925, + null, + 0.19445481896400452, + 0.23281188309192657, + null, + 0.19445481896400452, + 0.1536053866147995, + null, + 0.19445481896400452, + 0.14125527441501617, + null, + 0.19445481896400452, + 0.18362592160701752, + null, + 0.19445481896400452, + 0.12220252305269241, + null, + 0.19445481896400452, + 0.17609263956546783, + null, + 0.19445481896400452, + 0.22533127665519714, + null, + 0.19445481896400452, + 0.13048627972602844, + null, + 0.19445481896400452, + 0.12647545337677002, + null, + 0.19445481896400452, + 0.14155174791812897, + null, + 0.19445481896400452, + 0.14036697149276733, + null, + 0.19445481896400452, + 0.16378182172775269, + null, + 0.19445481896400452, + 0.13878224790096283, + null, + 0.19445481896400452, + 0.19186954200267792, + null, + 0.19445481896400452, + 0.17229142785072327, + null, + 0.19445481896400452, + 0.21168939769268036, + null, + 0.19445481896400452, + 0.16212685406208038, + null, + 0.19445481896400452, + 0.13645562529563904, + null, + 0.19445481896400452, + 0.21631911396980286, + null, + 0.19445481896400452, + 0.2090805321931839, + null, + 0.19445481896400452, + 0.23013027012348175, + null, + 0.19445481896400452, + 0.22522005438804626, + null, + 0.19445481896400452, + 0.26532962918281555, + null, + 0.19445481896400452, + 0.1707010120153427, + null, + 0.19445481896400452, + 0.21486221253871918, + null, + 0.19445481896400452, + 0.21226002275943756, + null, + 0.19445481896400452, + 0.2160809338092804, + null, + 0.19445481896400452, + 0.22727464139461517, + null, + 0.19445481896400452, + 0.23011648654937744, + null, + 0.19445481896400452, + 0.13984502851963043, + null, + 0.19445481896400452, + 0.21304066479206085, + null, + 0.19445481896400452, + 0.18439778685569763, + null, + 0.19445481896400452, + 0.1947486847639084, + null, + 0.19445481896400452, + 0.16423141956329346, + null, + 0.19445481896400452, + 0.1766691952943802, + null, + 0.19445481896400452, + 0.14637728035449982, + null, + 0.19445481896400452, + 0.2718963921070099, + null, + 0.19445481896400452, + 0.2223246842622757, + null, + 0.19445481896400452, + 0.19608938694000244, + null, + 0.19445481896400452, + 0.24709786474704742, + null, + 0.19445481896400452, + 0.13588184118270874, + null, + 0.19445481896400452, + 0.23199288547039032, + null, + 0.19445481896400452, + 0.17365998029708862, + null, + 0.19445481896400452, + 0.2541463375091553, + null, + 0.19445481896400452, + 0.15369994938373566, + null, + 0.19445481896400452, + 0.2585724890232086, + null, + 0.19445481896400452, + 0.17226657271385193, + null, + 0.19445481896400452, + 0.13982677459716797, + null, + 0.19445481896400452, + 0.14507924020290375, + null, + 0.19445481896400452, + 0.221470445394516, + null, + 0.19445481896400452, + 0.13311052322387695, + null, + 0.19445481896400452, + 0.14570066332817078, + null, + 0.19445481896400452, + 0.273333877325058, + null, + 0.19445481896400452, + 0.24140693247318268, + null, + 0.19445481896400452, + 0.18886026740074158, + null, + 0.19445481896400452, + 0.25539928674697876, + null, + 0.19445481896400452, + 0.2510417401790619, + null, + 0.19445481896400452, + 0.2370094358921051, + null, + 0.19445481896400452, + 0.26844868063926697, + null, + 0.19445481896400452, + 0.24634215235710144, + null, + 0.19445481896400452, + 0.22414427995681763, + null, + 0.19445481896400452, + 0.23455017805099487, + null, + 0.19445481896400452, + 0.11843365430831909, + null, + 0.19445481896400452, + 0.15706102550029755, + null, + 0.19445481896400452, + 0.13987474143505096, + null, + 0.19445481896400452, + 0.1652408093214035, + null, + 0.19445481896400452, + 0.24103839695453644, + null, + 0.19445481896400452, + 0.2485928237438202, + null, + 0.19445481896400452, + 0.2638549506664276, + null, + 0.19445481896400452, + 0.2688692808151245, + null, + 0.19445481896400452, + 0.24156609177589417, + null, + 0.19445481896400452, + 0.12660133838653564, + null, + 0.19445481896400452, + 0.12810295820236206, + null, + 0.19445481896400452, + 0.22271019220352173, + null, + 0.19445481896400452, + 0.19675017893314362, + null, + 0.19445481896400452, + 0.17794789373874664, + null, + 0.19445481896400452, + 0.16304923593997955, + null, + 0.19445481896400452, + 0.1392890065908432, + null, + 0.19445481896400452, + 0.15908794105052948, + null, + 0.19445481896400452, + 0.16809475421905518, + null, + 0.19445481896400452, + 0.11583719402551651, + null, + 0.19445481896400452, + 0.18558713793754578, + null, + 0.19445481896400452, + 0.199174165725708, + null, + 0.19445481896400452, + 0.20672190189361572, + null, + 0.19445481896400452, + 0.23036843538284302, + null, + 0.19445481896400452, + 0.15580099821090698, + null, + 0.19445481896400452, + 0.19865457713603973, + null, + 0.19445481896400452, + 0.19591447710990906, + null, + 0.19445481896400452, + 0.25449779629707336, + null, + 0.19445481896400452, + 0.264150470495224, + null, + 0.19445481896400452, + 0.16820086538791656, + null, + 0.19445481896400452, + 0.24365490674972534, + null, + 0.19445481896400452, + 0.15133193135261536, + null, + 0.19445481896400452, + 0.16325223445892334, + null, + 0.19445481896400452, + 0.242647185921669, + null, + 0.19445481896400452, + 0.2448379546403885, + null, + 0.19445481896400452, + 0.17982998490333557, + null, + 0.19445481896400452, + 0.26427343487739563, + null, + 0.19445481896400452, + 0.27240464091300964, + null, + 0.19445481896400452, + 0.26965805888175964, + null, + 0.19445481896400452, + 0.13473762571811676, + null, + 0.19445481896400452, + 0.2565234899520874, + null, + 0.19445481896400452, + 0.19918964803218842, + null, + 0.19445481896400452, + 0.21656444668769836, + null, + 0.19445481896400452, + 0.14482879638671875, + null, + 0.19445481896400452, + 0.1286984384059906, + null, + 0.19445481896400452, + 0.1568087786436081, + null, + 0.19445481896400452, + 0.2358885407447815, + null, + 0.19445481896400452, + 0.21830685436725616, + null, + 0.19445481896400452, + 0.20504820346832275, + null, + 0.19445481896400452, + 0.1871461272239685, + null, + 0.19445481896400452, + 0.19074083864688873, + null, + 0.19445481896400452, + 0.2180587351322174, + null, + 0.19445481896400452, + 0.16120916604995728, + null, + 0.19445481896400452, + 0.21233472228050232, + null, + 0.19445481896400452, + 0.17604707181453705, + null, + 0.19445481896400452, + 0.12161872535943985, + null, + 0.19445481896400452, + 0.13164357841014862, + null, + 0.19445481896400452, + 0.2609347403049469, + null, + 0.19445481896400452, + 0.18837977945804596, + null, + 0.19445481896400452, + 0.2138400822877884, + null, + 0.19445481896400452, + 0.20759226381778717, + null, + 0.19445481896400452, + 0.25586429238319397, + null, + 0.19445481896400452, + 0.13016115128993988, + null, + 0.19445481896400452, + 0.23599548637866974, + null, + 0.19445481896400452, + 0.15339510142803192, + null, + 0.19445481896400452, + 0.24938373267650604, + null, + 0.19445481896400452, + 0.21325574815273285, + null, + 0.19445481896400452, + 0.14547578990459442, + null, + 0.19445481896400452, + 0.1646258383989334, + null, + 0.19445481896400452, + 0.13352838158607483, + null, + 0.19445481896400452, + 0.12369059771299362, + null, + 0.19445481896400452, + 0.24313512444496155, + null, + 0.19445481896400452, + 0.22465194761753082, + null, + 0.19445481896400452, + 0.22898676991462708, + null, + 0.19445481896400452, + 0.20085182785987854, + null, + 0.19445481896400452, + 0.26194536685943604, + null, + 0.19445481896400452, + 0.1973622888326645, + null, + 0.19445481896400452, + 0.11678685992956161, + null, + 0.19445481896400452, + 0.17985256016254425, + null, + 0.19445481896400452, + 0.23139001429080963, + null, + 0.19445481896400452, + 0.15636566281318665, + null, + 0.19445481896400452, + 0.20647026598453522, + null, + 0.19445481896400452, + 0.12454015016555786, + null, + 0.19445481896400452, + 0.15619716048240662, + null, + 0.19445481896400452, + 0.25813934206962585, + null, + 0.19445481896400452, + 0.22686044871807098, + null, + 0.19445481896400452, + 0.207435742020607, + null, + 0.19445481896400452, + 0.24979321658611298, + null, + 0.19445481896400452, + 0.1463155299425125, + null, + 0.19445481896400452, + 0.20134229958057404, + null, + 0.19445481896400452, + 0.1995035707950592, + null, + 0.19445481896400452, + 0.20402349531650543, + null, + 0.19445481896400452, + 0.14834259450435638, + null, + 0.19445481896400452, + 0.22850006818771362, + null, + 0.19445481896400452, + 0.1551598459482193, + null, + 0.19445481896400452, + 0.2531806528568268, + null, + 0.19445481896400452, + 0.1792021542787552, + null, + 0.19445481896400452, + 0.18477553129196167, + null, + 0.19445481896400452, + 0.25582626461982727, + null, + 0.19445481896400452, + 0.1369648277759552, + null, + 0.19445481896400452, + 0.2634473741054535, + null, + 0.19445481896400452, + 0.21153829991817474, + null, + 0.19445481896400452, + 0.20249173045158386, + null, + 0.19445481896400452, + 0.15085572004318237, + null, + 0.19445481896400452, + 0.1352391242980957, + null, + 0.19445481896400452, + 0.16469497978687286, + null, + 0.19445481896400452, + 0.26401934027671814, + null, + 0.19445481896400452, + 0.17978495359420776, + null, + 0.19445481896400452, + 0.11928978562355042, + null, + 0.19445481896400452, + 0.17026175558567047, + null, + 0.19445481896400452, + 0.12312635779380798, + null, + 0.19445481896400452, + 0.1528644859790802, + null, + 0.19445481896400452, + 0.2491927444934845, + null, + 0.19445481896400452, + 0.21666400134563446, + null, + 0.19445481896400452, + 0.2687373161315918, + null, + 0.19445481896400452, + 0.25491735339164734, + null, + 0.19445481896400452, + 0.24357783794403076, + null, + 0.19445481896400452, + 0.21889130771160126, + null, + 0.19445481896400452, + 0.17842073738574982, + null, + 0.19445481896400452, + 0.1692478209733963, + null, + 0.19445481896400452, + 0.25789913535118103, + null, + 0.19445481896400452, + 0.18090806901454926, + null, + 0.19445481896400452, + 0.23514653742313385, + null, + 0.19445481896400452, + 0.2628520131111145, + null, + 0.19445481896400452, + 0.23319470882415771, + null, + 0.19445481896400452, + 0.11869388818740845, + null, + 0.19445481896400452, + 0.1477506458759308, + null, + 0.19445481896400452, + 0.24966925382614136, + null, + 0.19445481896400452, + 0.17398717999458313, + null, + 0.19445481896400452, + 0.23855936527252197, + null, + 0.19445481896400452, + 0.2758583724498749, + null, + 0.19445481896400452, + 0.1525801569223404, + null, + 0.19445481896400452, + 0.12422142177820206, + null, + 0.19445481896400452, + 0.22295907139778137, + null, + 0.19445481896400452, + 0.2537555396556854, + null, + 0.19445481896400452, + 0.2066984474658966, + null, + 0.19445481896400452, + 0.16457560658454895, + null, + 0.19445481896400452, + 0.1441933512687683, + null, + 0.19445481896400452, + 0.13001179695129395, + null, + 0.19445481896400452, + 0.21940413117408752, + null, + 0.19445481896400452, + 0.2323218584060669, + null, + 0.19445481896400452, + 0.15420885384082794, + null, + 0.19445481896400452, + 0.16511569917201996, + null, + 0.19445481896400452, + 0.26388996839523315, + null, + 0.19445481896400452, + 0.1902056634426117, + null, + 0.9491451978683472, + 0.9411700367927551, + null, + 0.9411700367927551, + 0.9380103945732117, + null, + -0.8959433436393738, + -0.8586920499801636, + null, + -0.8586920499801636, + -0.8121984004974365, + null, + -0.02461658976972103, + -0.0260646790266037, + null, + -0.11644165962934494, + -0.11515481770038605, + null, + -0.19888867437839508, + -0.18086212873458862, + null, + -0.18086212873458862, + -0.19161754846572876, + null, + -0.18086212873458862, + -0.16318204998970032, + null, + -0.16318204998970032, + -0.15050965547561646, + null, + 0.2648013234138489, + 0.27339816093444824, + null, + 0.2648013234138489, + 0.2663813829421997, + null, + 0.2648013234138489, + 0.2271684855222702, + null, + 0.27339816093444824, + 0.23653092980384827, + null, + 0.23653092980384827, + 0.2663813829421997, + null, + 0.23653092980384827, + 0.17116056382656097, + null, + -0.8767951726913452, + -0.8725050687789917, + null, + -0.8725050687789917, + -0.9113250374794006, + null, + -0.8520274758338928, + -0.8545593023300171, + null, + -0.8545593023300171, + -0.8301717042922974, + null, + -0.8301717042922974, + -0.7901152968406677, + null, + 0.053161539137363434, + 0.05004502087831497, + null, + 0.05004502087831497, + 0.04611692205071449, + null, + -0.4557867646217346, + -0.48230040073394775, + null, + -0.48230040073394775, + -0.5038696527481079, + null, + -0.20488353073596954, + -0.21507644653320312, + null, + -0.21507644653320312, + -0.22366569936275482, + null, + -0.1465042680501938, + -0.11784347891807556, + null, + -0.1465042680501938, + -0.1205224096775055, + null, + -0.11784347891807556, + -0.07630951702594757, + null, + -0.07630951702594757, + -0.1279008686542511, + null, + -0.07630951702594757, + -0.1205224096775055, + null, + -0.07630951702594757, + -0.07211197912693024, + null, + -0.07630951702594757, + 0.009529979899525642, + null, + -0.7407230138778687, + -0.7901152968406677, + null, + 0.8203407526016235, + 0.7889772653579712, + null, + 0.7889772653579712, + 0.7637009024620056, + null, + -0.6152395606040955, + -0.6525643467903137, + null, + -0.6525643467903137, + -0.6838074922561646, + null, + 0.3289653956890106, + 0.3170957863330841, + null, + 0.3170957863330841, + 0.30332350730895996, + null, + -0.3513404130935669, + -0.3452762961387634, + null, + -0.3513404130935669, + -0.3339099586009979, + null, + -0.3513404130935669, + -0.37507790327072144, + null, + -0.3513404130935669, + -0.3608797490596771, + null, + -0.3452762961387634, + -0.34592708945274353, + null, + -0.34592708945274353, + -0.3339099586009979, + null, + -0.34592708945274353, + -0.3701395094394684, + null, + -0.34592708945274353, + -0.3608797490596771, + null, + -0.6820738911628723, + -0.7265410423278809, + null, + -0.7265410423278809, + -0.762916088104248, + null, + -0.43818190693855286, + -0.43503281474113464, + null, + -0.43818190693855286, + -0.45714256167411804, + null, + -0.43818190693855286, + -0.4466792941093445, + null, + -0.43818190693855286, + -0.4559306502342224, + null, + -0.43818190693855286, + -0.4410868287086487, + null, + -0.43818190693855286, + -0.4557825028896332, + null, + -0.43818190693855286, + -0.41973355412483215, + null, + -0.43818190693855286, + -0.4504232108592987, + null, + -0.43818190693855286, + -0.4314427673816681, + null, + -0.43503281474113464, + -0.43073734641075134, + null, + -0.43073734641075134, + -0.45714256167411804, + null, + -0.43073734641075134, + -0.4466792941093445, + null, + -0.43073734641075134, + -0.4559306502342224, + null, + -0.43073734641075134, + -0.4410868287086487, + null, + -0.43073734641075134, + -0.40666258335113525, + null, + -0.43073734641075134, + -0.4557825028896332, + null, + -0.43073734641075134, + -0.41973355412483215, + null, + -0.43073734641075134, + -0.4504232108592987, + null, + -0.43073734641075134, + -0.4314427673816681, + null, + -0.3339099586009979, + -0.3412119150161743, + null, + -0.3833042085170746, + -0.3701395094394684, + null, + -0.3833042085170746, + -0.37507790327072144, + null, + -0.3701395094394684, + -0.3938957750797272, + null, + -0.7077723145484924, + -0.7428306937217712, + null, + -0.7428306937217712, + -0.7622198462486267, + null, + -0.5631013512611389, + -0.561763346195221, + null, + -0.561763346195221, + -0.5723875164985657, + null, + -0.4034588038921356, + -0.40666258335113525, + null, + -0.5556347370147705, + -0.5443565845489502, + null, + -0.5443565845489502, + -0.5691950917243958, + null, + -0.6619945168495178, + -0.6893776655197144, + null, + -0.6893776655197144, + -0.7116526961326599, + null, + 0.13743643462657928, + 0.1185145154595375, + null, + 0.1185145154595375, + 0.09673335403203964, + null, + 0.09673335403203964, + 0.025710640475153923, + null, + 0.09673335403203964, + 0.009529979899525642, + null, + 0.09673335403203964, + 0.13483497500419617, + null, + 0.09673335403203964, + 0.12074737995862961, + null, + 0.09673335403203964, + 0.1383492648601532, + null, + 0.09673335403203964, + 0.17116056382656097, + null, + 0.09673335403203964, + 0.14166848361492157, + null, + -0.6917870044708252, + -0.6604044437408447, + null, + -0.6604044437408447, + -0.6202936172485352, + null, + -0.033309999853372574, + -0.05161452293395996, + null, + -0.033309999853372574, + -0.06959501653909683, + null, + -0.033309999853372574, + -0.035585109144449234, + null, + -0.033309999853372574, + -0.0601717047393322, + null, + -0.033309999853372574, + -0.024191422387957573, + null, + -0.033309999853372574, + -0.05171004310250282, + null, + -0.033309999853372574, + -0.05295024439692497, + null, + -0.033309999853372574, + -0.035890888422727585, + null, + -0.033309999853372574, + -0.011482764966785908, + null, + -0.033309999853372574, + -0.04634646698832512, + null, + -0.033309999853372574, + -0.030549436807632446, + null, + -0.033309999853372574, + -0.05937458202242851, + null, + -0.033309999853372574, + -0.004377505276352167, + null, + -0.033309999853372574, + -0.06012919172644615, + null, + -0.033309999853372574, + 0.0032782203052192926, + null, + -0.033309999853372574, + -0.006470480468124151, + null, + -0.033309999853372574, + -0.06875727325677872, + null, + -0.033309999853372574, + -0.0532035231590271, + null, + -0.033309999853372574, + -0.014564176090061665, + null, + -0.033309999853372574, + -0.019306814298033714, + null, + -0.033309999853372574, + -0.03792513161897659, + null, + -0.033309999853372574, + -0.022734444588422775, + null, + -0.033309999853372574, + 0.0027773205656558275, + null, + -0.033309999853372574, + -0.06806361675262451, + null, + -0.033309999853372574, + 0.0015528354560956359, + null, + -0.033309999853372574, + -0.04460678994655609, + null, + -0.033309999853372574, + -0.005430050194263458, + null, + -0.033309999853372574, + -0.01511573139578104, + null, + -0.033309999853372574, + -0.06274033337831497, + null, + -0.033309999853372574, + -0.04373032972216606, + null, + -0.033309999853372574, + -0.0601983480155468, + null, + -0.033309999853372574, + -0.05260283499956131, + null, + -0.033309999853372574, + -0.0022811247035861015, + null, + -0.033309999853372574, + -0.010255303233861923, + null, + -0.033309999853372574, + -0.020338596776127815, + null, + -0.033309999853372574, + -0.0569145604968071, + null, + -0.033309999853372574, + -0.04244421422481537, + null, + -0.033309999853372574, + -0.026250651106238365, + null, + -0.033309999853372574, + -0.0617092065513134, + null, + -0.033309999853372574, + -0.011917568743228912, + null, + -0.033309999853372574, + -0.0034730613697320223, + null, + -0.033309999853372574, + -0.06775570660829544, + null, + -0.033309999853372574, + -0.0068280636332929134, + null, + -0.033309999853372574, + -0.04892314597964287, + null, + -0.033309999853372574, + -0.07000412791967392, + null, + -0.033309999853372574, + -0.015723325312137604, + null, + -0.033309999853372574, + -0.034279219806194305, + null, + -0.033309999853372574, + -0.044089093804359436, + null, + -0.033309999853372574, + -0.03127453848719597, + null, + -0.033309999853372574, + -0.01933707669377327, + null, + -0.033309999853372574, + -0.02771005593240261, + null, + -0.05161452293395996, + -0.033309999853372574, + null, + -0.033309999853372574, + -0.06959501653909683, + null, + -0.033309999853372574, + -0.035585109144449234, + null, + -0.033309999853372574, + -0.0601717047393322, + null, + -0.033309999853372574, + -0.024191422387957573, + null, + -0.033309999853372574, + -0.05171004310250282, + null, + -0.033309999853372574, + -0.05295024439692497, + null, + -0.033309999853372574, + -0.035890888422727585, + null, + -0.033309999853372574, + -0.011482764966785908, + null, + -0.033309999853372574, + -0.04634646698832512, + null, + -0.033309999853372574, + -0.030549436807632446, + null, + -0.033309999853372574, + -0.05937458202242851, + null, + -0.033309999853372574, + -0.004377505276352167, + null, + -0.033309999853372574, + -0.06012919172644615, + null, + -0.033309999853372574, + 0.0032782203052192926, + null, + -0.033309999853372574, + -0.006470480468124151, + null, + -0.033309999853372574, + -0.06875727325677872, + null, + -0.033309999853372574, + -0.0532035231590271, + null, + -0.033309999853372574, + -0.014564176090061665, + null, + -0.033309999853372574, + -0.019306814298033714, + null, + -0.033309999853372574, + -0.03792513161897659, + null, + -0.033309999853372574, + -0.022734444588422775, + null, + -0.033309999853372574, + 0.0027773205656558275, + null, + -0.033309999853372574, + -0.06806361675262451, + null, + -0.033309999853372574, + 0.0015528354560956359, + null, + -0.033309999853372574, + -0.04460678994655609, + null, + -0.033309999853372574, + -0.005430050194263458, + null, + -0.033309999853372574, + -0.01511573139578104, + null, + -0.033309999853372574, + -0.06274033337831497, + null, + -0.033309999853372574, + -0.04373032972216606, + null, + -0.033309999853372574, + -0.0601983480155468, + null, + -0.033309999853372574, + -0.05260283499956131, + null, + -0.033309999853372574, + -0.0022811247035861015, + null, + -0.033309999853372574, + -0.010255303233861923, + null, + -0.033309999853372574, + -0.020338596776127815, + null, + -0.033309999853372574, + -0.0569145604968071, + null, + -0.033309999853372574, + -0.04244421422481537, + null, + -0.033309999853372574, + -0.026250651106238365, + null, + -0.033309999853372574, + -0.0617092065513134, + null, + -0.033309999853372574, + -0.011917568743228912, + null, + -0.033309999853372574, + -0.0034730613697320223, + null, + -0.033309999853372574, + -0.06775570660829544, + null, + -0.033309999853372574, + -0.0068280636332929134, + null, + -0.033309999853372574, + -0.04892314597964287, + null, + -0.033309999853372574, + -0.07000412791967392, + null, + -0.033309999853372574, + -0.015723325312137604, + null, + -0.033309999853372574, + -0.034279219806194305, + null, + -0.033309999853372574, + -0.044089093804359436, + null, + -0.033309999853372574, + -0.03127453848719597, + null, + -0.033309999853372574, + -0.01933707669377327, + null, + -0.033309999853372574, + -0.02771005593240261, + null, + 1, + 0.96756911277771, + null, + 0.96756911277771, + 0.9769721627235413, + null, + -0.5114917159080505, + -0.49428269267082214, + null, + -0.49428269267082214, + -0.4728684425354004, + null, + -0.5891770124435425, + -0.6270589232444763, + null, + -0.6270589232444763, + -0.6631622314453125, + null, + -0.6631622314453125, + -0.6938349604606628, + null, + 0.6865338683128357, + 0.675170361995697, + null, + 0.6865338683128357, + 0.6866836547851562, + null, + 0.6865338683128357, + 0.6778671145439148, + null, + 0.6865338683128357, + 0.6861398220062256, + null, + 0.675170361995697, + 0.6514955163002014, + null, + 0.6514955163002014, + 0.6413231492042542, + null, + 0.6514955163002014, + 0.6485681533813477, + null, + 0.6514955163002014, + 0.6866836547851562, + null, + 0.6514955163002014, + 0.655066728591919, + null, + 0.6514955163002014, + 0.6778671145439148, + null, + 0.6514955163002014, + 0.6861398220062256, + null, + 0.6441462635993958, + 0.6413231492042542, + null, + 0.6441462635993958, + 0.6485681533813477, + null, + 0.6441462635993958, + 0.655066728591919, + null, + 0.6441462635993958, + 0.664706826210022, + null, + 0.6441462635993958, + 0.6744289994239807, + null, + 0.6441462635993958, + 0.6784175038337708, + null, + 0.6441462635993958, + 0.6650121808052063, + null, + 0.6441462635993958, + 0.6569141745567322, + null, + -0.3175395429134369, + -0.3041951060295105, + null, + -0.5193840265274048, + -0.48814237117767334, + null, + -0.5193840265274048, + -0.5480837821960449, + null, + -0.5193840265274048, + -0.53653484582901, + null, + 0.5983263850212097, + 0.5708323121070862, + null, + 0.5708323121070862, + 0.5432166457176208, + null, + 0.5432166457176208, + 0.546427309513092, + null, + 0.5432166457176208, + 0.5615208148956299, + null, + 0.5432166457176208, + 0.5698928833007812, + null, + 0.5432166457176208, + 0.5695719718933105, + null, + 0.5432166457176208, + 0.5173402428627014, + null, + 0.725187361240387, + 0.7524887919425964, + null, + 0.725187361240387, + 0.7455151081085205, + null, + 0.725187361240387, + 0.7024610042572021, + null, + 0.725187361240387, + 0.7464823126792908, + null, + 0.725187361240387, + 0.6929395794868469, + null, + 0.7524887919425964, + 0.7258606553077698, + null, + 0.7258606553077698, + 0.7455151081085205, + null, + 0.7258606553077698, + 0.7024610042572021, + null, + 0.7258606553077698, + 0.7464823126792908, + null, + 0.7258606553077698, + 0.6929395794868469, + null, + 0.9006677865982056, + 0.9177678823471069, + null, + 0.9177678823471069, + 0.9355776309967041, + null, + -0.7194889187812805, + -0.6938349604606628, + null, + 0.7230154871940613, + 0.7078129649162292, + null, + 0.7230154871940613, + 0.7511403560638428, + null, + 0.7078129649162292, + 0.7167683243751526, + null, + -0.6182053685188293, + -0.643883228302002, + null, + -0.643883228302002, + -0.657139241695404, + null, + 0.469256192445755, + 0.48609450459480286, + null, + 0.48609450459480286, + 0.4739615321159363, + null, + 0.48609450459480286, + 0.5076172351837158, + null, + 0.48609450459480286, + 0.5032119750976562, + null, + 0.5921357870101929, + 0.5698928833007812, + null, + 0.7511403560638428, + 0.7827059030532837, + null, + 0.24216368794441223, + 0.2341381013393402, + null, + 0.2341381013393402, + 0.22492794692516327, + null, + -0.7573820352554321, + -0.7354260087013245, + null, + -0.7354260087013245, + -0.7386811375617981, + null, + 0.5926288962364197, + 0.5695719718933105, + null, + 0.7719910740852356, + 0.743828296661377, + null, + 0.743828296661377, + 0.7455147504806519, + null, + 0.5167396664619446, + 0.5173402428627014, + null, + 0.664706826210022, + 0.6724439263343811, + null, + 0.6724439263343811, + 0.6744289994239807, + null, + 0.6724439263343811, + 0.6784175038337708, + null, + 0.6724439263343811, + 0.6650121808052063, + null, + 0.6724439263343811, + 0.6569141745567322, + null, + -0.46575793623924255, + -0.4667704999446869, + null, + -0.46575793623924255, + -0.4543454945087433, + null, + -0.46575793623924255, + -0.4757416546344757, + null, + -0.46575793623924255, + -0.4745338559150696, + null, + -0.46575793623924255, + -0.4581516683101654, + null, + -0.4667704999446869, + -0.4471105635166168, + null, + -0.4471105635166168, + -0.4720355272293091, + null, + -0.4471105635166168, + -0.4813663065433502, + null, + -0.4471105635166168, + -0.4543454945087433, + null, + -0.4471105635166168, + -0.4714641571044922, + null, + -0.4471105635166168, + -0.4345378577709198, + null, + -0.4471105635166168, + -0.4260478913784027, + null, + -0.4471105635166168, + -0.4757416546344757, + null, + -0.4471105635166168, + -0.4745338559150696, + null, + -0.4471105635166168, + -0.4581516683101654, + null, + -0.6671568751335144, + -0.6563541293144226, + null, + -0.49866876006126404, + -0.4714641571044922, + null, + -0.4256979525089264, + -0.4345378577709198, + null, + -0.4256979525089264, + -0.4260478913784027, + null, + -0.6518010497093201, + -0.6243526339530945, + null, + -0.6243526339530945, + -0.6384486556053162, + null, + -0.1000370979309082, + -0.1079925000667572, + null, + -0.1079925000667572, + -0.10348943620920181, + null, + -0.1079925000667572, + -0.12344858050346375, + null, + -0.1336648315191269, + -0.12344858050346375, + null, + 0.10482281446456909, + 0.11499197781085968, + null, + 0.11499197781085968, + 0.12470272183418274, + null, + 0.12470272183418274, + 0.1340513825416565, + null, + 0.7128428816795349, + 0.741891086101532, + null, + 0.741891086101532, + 0.771094024181366, + null, + -0.5736103653907776, + -0.5437494516372681, + null, + -0.5437494516372681, + -0.5187491178512573, + null, + -0.5437494516372681, + -0.5689303874969482, + null, + -0.5187491178512573, + -0.4969179630279541, + null, + 0.14274904131889343, + 0.1340513825416565, + null, + 0.07106128334999084, + 0.05805574357509613, + null, + 0.05805574357509613, + 0.03515798598527908, + null, + 0.03515798598527908, + 0.01715756207704544, + null, + 0.03515798598527908, + 0.027359483763575554, + null, + 0.05698339268565178, + 0.05865577608346939, + null, + 0.05698339268565178, + 0.04946879670023918, + null, + 0.05865577608346939, + 0.05045197904109955, + null, + 0.05045197904109955, + 0.04946879670023918, + null, + 0.01715756207704544, + 0.011776759289205074, + null, + 0.011776759289205074, + 0.027359483763575554, + null, + -0.4888446629047394, + -0.4969179630279541, + null, + -0.43303656578063965, + -0.4389040172100067, + null, + -0.43303656578063965, + -0.4387323260307312, + null, + -0.43303656578063965, + -0.4430703818798065, + null, + -0.43303656578063965, + -0.47276434302330017, + null, + -0.43303656578063965, + -0.41996681690216064, + null, + -0.43303656578063965, + -0.42787325382232666, + null, + -0.43303656578063965, + -0.4544771611690521, + null, + -0.43303656578063965, + -0.45206767320632935, + null, + -0.43303656578063965, + -0.41514942049980164, + null, + -0.43303656578063965, + -0.45681264996528625, + null, + -0.43303656578063965, + -0.4065283536911011, + null, + -0.43303656578063965, + -0.4498398005962372, + null, + -0.43303656578063965, + -0.44385194778442383, + null, + -0.4389040172100067, + -0.4293660819530487, + null, + -0.4293660819530487, + -0.4387323260307312, + null, + -0.4293660819530487, + -0.4430703818798065, + null, + -0.4293660819530487, + -0.453178733587265, + null, + -0.4293660819530487, + -0.41996681690216064, + null, + -0.4293660819530487, + -0.42787325382232666, + null, + -0.4293660819530487, + -0.4544771611690521, + null, + -0.4293660819530487, + -0.45206767320632935, + null, + -0.4293660819530487, + -0.41514942049980164, + null, + -0.4293660819530487, + -0.45681264996528625, + null, + -0.4293660819530487, + -0.4065283536911011, + null, + -0.4293660819530487, + -0.4498398005962372, + null, + -0.4293660819530487, + -0.44385194778442383, + null, + -0.27528247237205505, + -0.28595155477523804, + null, + -0.28595155477523804, + -0.29757365584373474, + null, + 0.6804670691490173, + 0.7295279502868652, + null, + 0.6804670691490173, + 0.6616621017456055, + null, + 0.6804670691490173, + 0.6918129324913025, + null, + 0.6804670691490173, + 0.6971662640571594, + null, + 0.7295279502868652, + 0.7681652903556824, + null, + 0.6971662640571594, + 0.7195072174072266, + null, + 0.6971662640571594, + 0.7099109292030334, + null, + 0.7195072174072266, + 0.6918129324913025, + null, + 0.6918129324913025, + 0.7099109292030334, + null, + 0.6616621017456055, + 0.6413599252700806, + null, + 0.6019766330718994, + 0.5931223630905151, + null, + 0.6019766330718994, + 0.6204335689544678, + null, + 0.5931223630905151, + 0.5989241600036621, + null, + 0.6204335689544678, + 0.6469472050666809, + null, + -0.13219060003757477, + -0.09524805098772049, + null, + -0.09524805098772049, + -0.04300173372030258, + null, + -0.04300173372030258, + 0.025710640475153923, + null, + -0.04300173372030258, + -0.07211197912693024, + null, + -0.7628480792045593, + -0.7277796864509583, + null, + -0.7277796864509583, + -0.6861624717712402, + null, + -0.1659354716539383, + -0.1279008686542511, + null, + -0.8763958811759949, + -0.8913359642028809, + null, + -0.8913359642028809, + -0.8640510439872742, + null, + -0.15666143596172333, + -0.14609655737876892, + null, + -0.14609655737876892, + -0.1391744762659073, + null, + -0.19035843014717102, + -0.19763700664043427, + null, + -0.19763700664043427, + -0.20357657968997955, + null, + -0.47276434302330017, + -0.500480055809021, + null, + -0.47359463572502136, + -0.453178733587265, + null, + -0.6275737881660461, + -0.6524956822395325, + null, + -0.6524956822395325, + -0.6647080183029175, + null, + -0.6647080183029175, + -0.6555758118629456, + null, + 0.17498667538166046, + 0.13483497500419617, + null, + 0.17498667538166046, + 0.1383492648601532, + null, + 0.17498667538166046, + 0.14166848361492157, + null, + 0.17498667538166046, + 0.2271684855222702, + null, + 0.13483497500419617, + 0.12074737995862961, + null, + 0.1383492648601532, + 0.12074737995862961, + null, + -0.6870133280754089, + -0.6555758118629456, + null + ] + }, + { + "hovertemplate": "weight: %{text}", + "marker": { + "size": 1 + }, + "mode": "text", + "text": [ + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "LIQUIDATOR", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST", + "HAFTENDER_GESELLSCHAFTER", + "KOMMANDITIST" + ], + "textposition": "top center", + "type": "scatter", + "x": [ + 0.24908392131328583, + -0.8570670485496521, + 0.7149187624454498, + -0.7898079454898834, + 0.6809248626232147, + 0.7046369314193726, + -0.325942799448967, + 0.520348072052002, + 0.49310794472694397, + 0.9285707771778107, + 0.914646178483963, + -0.5247436761856079, + -0.5124652981758118, + 0.823790967464447, + 0.08124779164791107, + 0.09504454955458641, + 0.09234950318932533, + 0.07816818729043007, + 0.061402736231684685, + 0.06982730701565742, + 0.058754339814186096, + 0.06562879495322704, + 0.059104813262820244, + 0.08054554089903831, + 0.06442425400018692, + 0.09196494519710541, + 0.08926989883184433, + 0.05638316087424755, + 0.06480773165822029, + 0.05373476445674896, + 0.06060921959578991, + 0.05408523790538311, + 0.09281056374311447, + -0.08776130899786949, + 0.6345177590847015, + -0.7260865271091461, + -0.7097762227058411, + 0.2502913549542427, + 0.8139182329177856, + 0.658103346824646, + 0.30307719111442566, + 0.29518379271030426, + -0.15406972914934158, + 0.06962994858622551, + -0.15330804884433746, + -0.15125640854239464, + -0.16351118683815002, + -0.21637719869613647, + -0.15665282309055328, + -0.2127906233072281, + -0.1542527824640274, + -0.1880994364619255, + -0.17430461198091507, + -0.15669645369052887, + -0.14789485931396484, + -0.15511554479599, + -0.17094453424215317, + -0.19893229007720947, + -0.17045465111732483, + -0.1962423324584961, + -0.19994178414344788, + -0.20394794642925262, + -0.17622579634189606, + -0.16339238733053207, + -0.20355231314897537, + -0.1789223849773407, + -0.17670000344514847, + -0.20638275891542435, + -0.16486096382141113, + -0.1503884345293045, + -0.21600882709026337, + -0.15720262378454208, + -0.19165343046188354, + -0.16397079825401306, + -0.19193337112665176, + -0.19419130682945251, + -0.18529249727725983, + -0.14007410034537315, + -0.1912163868546486, + -0.2083788514137268, + -0.15488021820783615, + -0.1722201704978943, + -0.20381943136453629, + -0.15853410214185715, + -0.1515526995062828, + -0.1638084053993225, + -0.17389623820781708, + -0.1537422239780426, + -0.1869226172566414, + -0.17252782732248306, + -0.19285551458597183, + -0.1899305209517479, + -0.14316265285015106, + -0.2066395878791809, + -0.19780753552913666, + -0.14496199414134026, + -0.20798692852258682, + -0.1609453335404396, + -0.16512712836265564, + -0.17167974263429642, + -0.18860134482383728, + -0.15488073229789734, + -0.2190365046262741, + -0.21024605631828308, + -0.20323676615953445, + -0.1984158381819725, + -0.20556766539812088, + -0.1591552272439003, + -0.16813624650239944, + -0.16502950340509415, + -0.21298829466104507, + -0.16799000650644302, + -0.16030272096395493, + -0.207268126308918, + -0.18968848884105682, + -0.20929782092571259, + -0.17514929175376892, + -0.16842851042747498, + -0.21358425170183182, + -0.19288740307092667, + -0.15103624016046524, + -0.14566250890493393, + -0.19287192076444626, + -0.1916218400001526, + -0.20171648263931274, + -0.15962126106023788, + -0.1690542995929718, + -0.21337124705314636, + -0.1524326279759407, + -0.17175506800413132, + -0.20407675951719284, + -0.16214267909526825, + -0.18151790648698807, + -0.16715342551469803, + -0.17738915234804153, + -0.17292065918445587, + -0.1688268780708313, + -0.1593015044927597, + -0.15014901384711266, + -0.1412997953593731, + -0.21061260253190994, + -0.19868136942386627, + -0.2067282572388649, + -0.14639350399374962, + -0.17747745662927628, + -0.14118489250540733, + -0.21233948320150375, + -0.1401088833808899, + -0.18166453391313553, + -0.18999076634645462, + -0.21570919454097748, + -0.18871751427650452, + -0.20625440776348114, + -0.1955144852399826, + -0.178957037627697, + -0.15800800919532776, + -0.14851203560829163, + -0.15026937052607536, + -0.207978293299675, + -0.17305535823106766, + -0.21225008368492126, + -0.185981847345829, + -0.1844247505068779, + -0.17929603159427643, + -0.16094423085451126, + -0.18285325914621353, + -0.14013998582959175, + -0.2170678973197937, + -0.20290733873844147, + -0.19740699976682663, + -0.14696476608514786, + -0.1932194083929062, + -0.2108035832643509, + -0.14547356963157654, + -0.21010572463274002, + -0.1472591497004032, + -0.14692090079188347, + -0.1443210430443287, + -0.14408868178725243, + -0.14491324499249458, + -0.18683703243732452, + -0.1651366800069809, + -0.17695562541484833, + -0.21721485257148743, + -0.21372150629758835, + -0.21853607892990112, + -0.2017054259777069, + -0.20107541233301163, + -0.20967300981283188, + -0.15302743762731552, + -0.20362816751003265, + -0.1637340858578682, + -0.15041498839855194, + -0.18605642020702362, + -0.18075326085090637, + -0.17843741923570633, + -0.1885462924838066, + -0.19583316892385483, + -0.20694062113761902, + -0.1681157797574997, + -0.16163907200098038, + -0.14425470679998398, + -0.18321361392736435, + -0.2023320496082306, + -0.1750512421131134, + -0.19699831306934357, + -0.20280341058969498, + -0.16052110493183136, + -0.20174254477024078, + -0.19759127497673035, + -0.21256360411643982, + -0.1496737077832222, + -0.18517986685037613, + -0.15624675154685974, + -0.19947750866413116, + -0.161418579518795, + -0.20856642723083496, + -0.19380374997854233, + -0.1476791612803936, + -0.15786007046699524, + -0.17873767763376236, + -0.19791613519191742, + -0.19285296648740768, + -0.16920176148414612, + -0.15569614619016647, + -0.20033704489469528, + -0.15407854318618774, + -0.19380977749824524, + -0.20568229258060455, + -0.19513477385044098, + -0.21506917476654053, + -0.17014142125844955, + -0.1721731200814247, + -0.19026226550340652, + -0.2088538184762001, + -0.19523566216230392, + -0.16306222230196, + -0.16629591584205627, + -0.14073609560728073, + -0.16363317519426346, + -0.18833781778812408, + -0.18173781037330627, + -0.15075162425637245, + -0.18492257595062256, + -0.14250287786126137, + -0.15453389286994934, + -0.21724355220794678, + -0.18631534278392792, + -0.15803860127925873, + -0.15540578216314316, + -0.173561692237854, + -0.1987670361995697, + -0.19739194959402084, + -0.1592082604765892, + -0.14981552213430405, + -0.18014633655548096, + -0.21064742654561996, + -0.1823285073041916, + -0.14356982335448265, + -0.17334186285734177, + -0.21399390697479248, + -0.16610942780971527, + -0.1815185844898224, + -0.18564219027757645, + -0.18046340346336365, + -0.1685662940144539, + -0.18404243886470795, + -0.20332716405391693, + -0.19006545841693878, + -0.1991354301571846, + 0.011797471903264523, + -0.002808835357427597, + -0.18365596234798431, + -0.1766367182135582, + 0.8968495726585388, + -0.8298270404338837, + -0.5993996858596802, + -0.613510012626648, + -0.6024435460567474, + -0.6145689189434052, + 0.26028357446193695, + 0.26289571821689606, + 0.260318785905838, + 0.24245209991931915, + 0.24506424367427826, + 0.22350405156612396, + 0.09137221053242683, + 0.10120008885860443, + -0.052716465666890144, + -0.041828930377960205, + -0.03796680085361004, + -0.897964745759964, + -0.8559585809707642, + -0.6035059988498688, + -0.6380557417869568, + -0.7789051532745361, + -0.7977043986320496, + 0.11162924394011497, + 0.11574111878871918, + 0.11920955777168274, + 0.11454502120614052, + 0.12332143262028694, + 0.1407475546002388, + 0.1430862993001938, + -0.036855217069387436, + -0.47760556638240814, + -0.4590323120355606, + -0.25507161021232605, + -0.2666674703359604, + 0.766548216342926, + 0.748203843832016, + -0.6427569091320038, + -0.6472531259059906, + -0.6520785987377167, + -0.6480673551559448, + -0.6269646883010864, + -0.6314609050750732, + -0.6130726039409637, + -0.6322751343250275, + 0.3508665859699249, + 0.3692936301231384, + 0.4136916846036911, + 0.4275166988372803, + 0.4136032462120056, + 0.4227664917707443, + 0.43131980299949646, + 0.41787146031856537, + 0.4243098795413971, + 0.43108677864074707, + 0.43151986598968506, + 0.4146154969930649, + 0.42844051122665405, + 0.4145270586013794, + 0.4236903041601181, + 0.43224361538887024, + 0.4355195015668869, + 0.41879527270793915, + 0.4252336919307709, + 0.43201059103012085, + 0.43244367837905884, + -0.6621892750263214, + -0.6213033497333527, + -0.6445171236991882, + -0.6123048961162567, + 0.19827032089233398, + 0.2020668312907219, + -0.4769403487443924, + -0.46342091262340546, + 0.4609863609075546, + -0.5744742453098297, + -0.573169469833374, + -0.34240110218524933, + -0.3544794023036957, + 0.2563795819878578, + 0.22026441246271133, + 0.193738155066967, + 0.17975500971078873, + 0.21228085458278656, + 0.20800314098596573, + 0.20721220970153809, + 0.20693787932395935, + 0.21085885167121887, + -0.12727593630552292, + -0.12337598949670792, + 0.3502029776573181, + 0.3596142679452896, + 0.37496809661388397, + 0.3623630851507187, + 0.36382773518562317, + 0.3724962919950485, + 0.3402271419763565, + 0.33981476724147797, + 0.37117554247379303, + 0.36649903655052185, + 0.37120917439460754, + 0.35288287699222565, + 0.3452441990375519, + 0.34664273262023926, + 0.35222308337688446, + 0.35416291654109955, + 0.35180601477622986, + 0.34414443373680115, + 0.35205601155757904, + 0.3724290132522583, + 0.3650475740432739, + 0.3484160304069519, + 0.35653024911880493, + 0.3480495363473892, + 0.3609637916088104, + 0.3453798294067383, + 0.36340463161468506, + 0.3613287955522537, + 0.34320303797721863, + 0.3739308565855026, + 0.3577135503292084, + 0.3641818016767502, + 0.34996792674064636, + 0.34734171628952026, + 0.3682553172111511, + 0.3697353005409241, + 0.370679572224617, + 0.3745829910039902, + 0.3665904402732849, + 0.3671468496322632, + 0.3670765310525894, + 0.36352500319480896, + 0.3581494241952896, + 0.3596838712692261, + 0.35552313923835754, + 0.34426647424697876, + 0.3453066796064377, + 0.33989080786705017, + 0.36784563958644867, + 0.3407472223043442, + 0.3407498151063919, + 0.3502029776573181, + 0.3596142679452896, + 0.37496809661388397, + 0.3623630851507187, + 0.36382773518562317, + 0.3724962919950485, + 0.3402271419763565, + 0.33981476724147797, + 0.37117554247379303, + 0.36649903655052185, + 0.37120917439460754, + 0.35288287699222565, + 0.3452441990375519, + 0.34664273262023926, + 0.35222308337688446, + 0.35416291654109955, + 0.35180601477622986, + 0.34414443373680115, + 0.35205601155757904, + 0.3724290132522583, + 0.3650475740432739, + 0.3484160304069519, + 0.35653024911880493, + 0.3480495363473892, + 0.3609637916088104, + 0.3453798294067383, + 0.36340463161468506, + 0.3613287955522537, + 0.34320303797721863, + 0.3739308565855026, + 0.3577135503292084, + 0.3641818016767502, + 0.34996792674064636, + 0.34734171628952026, + 0.3682553172111511, + 0.3697353005409241, + 0.370679572224617, + 0.3745829910039902, + 0.3665904402732849, + 0.3671468496322632, + 0.3670765310525894, + 0.36352500319480896, + 0.3581494241952896, + 0.3596838712692261, + 0.35552313923835754, + 0.34426647424697876, + 0.3453066796064377, + 0.33989080786705017, + 0.36784563958644867, + 0.3407472223043442, + 0.3407498151063919, + -0.21219859272241592, + -0.2017296999692917, + -0.5759657621383667, + -0.550440788269043, + 0.3365752547979355, + 0.36191219091415405, + 0.38588714599609375, + 0.04818357899785042, + 0.056470077484846115, + 0.05389176495373249, + 0.051685772836208344, + 0.060834888368844986, + 0.08609906956553459, + 0.08466872945427895, + 0.06912138685584068, + 0.08636801689863205, + 0.06654307432472706, + 0.06433708220720291, + 0.11536706611514091, + 0.11393672600388527, + 0.11563601344823837, + 0.14184128493070602, + 0.13424136489629745, + 0.13821883499622345, + 0.1372700333595276, + 0.14464152604341507, + 0.8209809958934784, + -0.34627144038677216, + -0.3654938042163849, + -0.36918069422245026, + 0.6386837959289551, + 0.6379216015338898, + 0.6546714007854462, + 0.6578055322170258, + 0.6636015772819519, + 0.6472225189208984, + 0.6463200747966766, + 0.26823075115680695, + 0.2633334696292877, + 0.262387678027153, + 0.27251268923282623, + 0.2582358866930008, + 0.2650642991065979, + 0.2601670175790787, + 0.25922122597694397, + 0.2693462371826172, + 0.25506943464279175, + 0.08658425137400627, + 0.09354417771100998, + 0.4057774841785431, + 0.3665773719549179, + 0.3489428758621216, + 0.3888758420944214, + 0.49199628829956055, + 0.50276979804039, + -0.744528740644455, + -0.7312242090702057, + -0.760758101940155, + -0.7533115446567535, + 0.7006212174892426, + 0.3448539525270462, + 0.8435825109481812, + 0.8179221749305725, + -0.39179058372974396, + -0.37653397023677826, + 0.6594940721988678, + 0.35864755511283875, + 0.35808534920215607, + 0.6633618474006653, + 0.15707939118146896, + 0.1494794711470604, + 0.1534569412469864, + 0.15250813961029053, + 0.159879632294178, + -0.16851884126663208, + -0.15919791907072067, + -0.16668903827667236, + -0.16203179210424423, + -0.16422868520021439, + -0.18129708617925644, + -0.1930672824382782, + -0.18877632915973663, + -0.17197616398334503, + -0.1994907557964325, + -0.19518768787384033, + -0.19198626279830933, + -0.17946728318929672, + -0.1748100370168686, + -0.17700693011283875, + 0.0869145467877388, + -0.22404029220342636, + -0.21343503147363663, + -0.21023360639810562, + -0.6462723016738892, + -0.6293998062610626, + 0.7349626123905182, + 0.710968017578125, + 0.732541561126709, + 0.7515971064567566, + 0.7452897131443024, + 0.7920287549495697, + 0.8352510035037994, + 0.5546937584877014, + 0.5782808661460876, + 0.4426938593387604, + 0.4339059293270111, + 0.4345538169145584, + 0.4408041089773178, + 0.8740176558494568, + -0.7404156923294067, + -0.7259210348129272, + -0.7279089987277985, + -0.7318035662174225, + 0.9351651072502136, + 0.9378904700279236, + 0.9095121026039124, + 0.9122374653816223, + -0.7420415580272675, + -0.7459361255168915, + 0.45568229258060455, + 0.5797512531280518, + 0.5839789509773254, + 0.5626457333564758, + 0.5853129923343658, + 0.5790772438049316, + 0.581278920173645, + 0.5759227871894836, + 0.5660096704959869, + 0.5740610063076019, + 0.5712749361991882, + 0.5514715611934662, + 0.5806668102741241, + 0.5742872953414917, + 0.5814898312091827, + 0.5857175290584564, + 0.5643843114376068, + 0.5955019295215607, + 0.5808158218860626, + 0.583017498254776, + 0.5776613652706146, + 0.5677482485771179, + 0.5757995843887329, + 0.5730135142803192, + 0.5532101392745972, + 0.5824053883552551, + 0.5760258734226227, + -0.8259583413600922, + -0.8350520431995392, + -0.20771558582782745, + -0.20852495729923248, + -0.18650803714990616, + -0.19015222787857056, + -0.2246696799993515, + -0.1828482374548912, + -0.17557835578918457, + -0.1792040467262268, + -0.17193416506052017, + -0.22622095793485641, + 0.039621503092348576, + 0.015345358289778233, + 0.06342307478189468, + -0.0020774700678884983, + 0.1856493130326271, + 0.17964714765548706, + 0.1823600009083748, + 0.16603811085224152, + -0.2176734134554863, + -0.2067056968808174, + 0.09792186319828033, + -0.30749985575675964, + -0.31311967968940735, + 0.8189405500888824, + 0.8187854290008545, + -0.8294536769390106, + -0.8621581494808197, + 0.6178849637508392, + 0.6377962231636047, + -0.37213943898677826, + -0.39346325397491455, + -0.4108598232269287, + 0.22833418101072311, + 0.22326553612947464, + 0.22691217809915543, + 0.24197446554899216, + 0.22053398936986923, + 0.21546534448862076, + -0.430199071764946 + ], + "y": [ + -0.6636416018009186, + 0.38324353098869324, + -0.3666684776544571, + 0.10157503560185432, + -0.24403820931911469, + -0.24695228785276413, + -0.7896643579006195, + 0.6297866702079773, + 0.6008209586143494, + -0.23213979601860046, + -0.22217115759849548, + -0.5942116975784302, + -0.6012156307697296, + -0.46598728001117706, + -0.6920996904373169, + -0.7169114351272583, + -0.6934176683425903, + -0.6948770880699158, + -0.6904464662075043, + -0.6899585723876953, + -0.6862574219703674, + -0.6924239099025726, + -0.6770322620868683, + -0.6825068593025208, + -0.6796416938304901, + -0.7196888327598572, + -0.6961950659751892, + -0.6888992786407471, + -0.6884113848209381, + -0.6847102344036102, + -0.6908767223358154, + -0.6754850745201111, + -0.6700894832611084, + -0.7728494107723236, + -0.5820908844470978, + -0.4405435770750046, + -0.438429594039917, + -0.7581027150154114, + 0.4719931334257126, + -0.19512270390987396, + -0.7218169867992401, + -0.6985352337360382, + -0.7474571168422699, + -0.6726256906986237, + 0.21822242438793182, + 0.18953782320022583, + 0.1912008374929428, + 0.1838665008544922, + 0.19310099631547928, + 0.21410159021615982, + 0.19727031886577606, + 0.1703629419207573, + 0.17482466995716095, + 0.18839560449123383, + 0.21987341344356537, + 0.2222994565963745, + 0.2337595522403717, + 0.18142932653427124, + 0.20861374586820602, + 0.21872122585773468, + 0.21711359918117523, + 0.1948072910308838, + 0.16280291229486465, + 0.21626430749893188, + 0.21363335102796555, + 0.174030102789402, + 0.16785504668951035, + 0.18904037028551102, + 0.15832867100834846, + 0.18527372926473618, + 0.20989304780960083, + 0.16247054934501648, + 0.16046513617038727, + 0.16800328344106674, + 0.16741089522838593, + 0.1791183203458786, + 0.16661853343248367, + 0.19316218048334122, + 0.1833731234073639, + 0.20307210832834244, + 0.17829083651304245, + 0.16545522212982178, + 0.2053869664669037, + 0.2017676755785942, + 0.21229254454374313, + 0.2098374366760254, + 0.22989222407341003, + 0.18257791548967361, + 0.20465851575136185, + 0.20335742086172104, + 0.20526787638664246, + 0.21086473017930984, + 0.21228565275669098, + 0.16714992374181747, + 0.20374774187803268, + 0.18942630290985107, + 0.19460175186395645, + 0.179343119263649, + 0.18556200712919235, + 0.17041604965925217, + 0.2331756055355072, + 0.2083897516131401, + 0.19527210295200348, + 0.22077634185552597, + 0.16516833007335663, + 0.21322385221719742, + 0.18405739963054657, + 0.2243005782365799, + 0.1740773841738701, + 0.22651365399360657, + 0.18336069583892822, + 0.16714079678058624, + 0.16976702958345413, + 0.20796263217926025, + 0.16378267109394073, + 0.17007774114608765, + 0.23389434814453125, + 0.2179308757185936, + 0.19165754318237305, + 0.22492705285549164, + 0.2227482795715332, + 0.2157321274280548, + 0.23145174980163574, + 0.22039848566055298, + 0.20929954946041107, + 0.2145024985074997, + 0.1564442366361618, + 0.17575792223215103, + 0.16716478019952774, + 0.179847814142704, + 0.21774660795927048, + 0.22152382135391235, + 0.22915488481521606, + 0.23166204988956451, + 0.21801045536994934, + 0.16052807867527008, + 0.1612788885831833, + 0.20858250558376312, + 0.19560249894857407, + 0.18620135635137558, + 0.17875202745199203, + 0.16687191277742386, + 0.176771380007267, + 0.18127478659152985, + 0.1551460064947605, + 0.19002097845077515, + 0.19681449234485626, + 0.20058836042881012, + 0.21241162717342377, + 0.17512790858745575, + 0.19655469805002213, + 0.1951846480369568, + 0.22447630763053894, + 0.22930264472961426, + 0.18132784217596054, + 0.21905486285686493, + 0.17289337515830994, + 0.17885352671146393, + 0.21855100244283676, + 0.2196463868021965, + 0.18714240193367004, + 0.22936412692070007, + 0.23342972993850708, + 0.23205643892288208, + 0.16459622234106064, + 0.22548915445804596, + 0.19682223349809647, + 0.20550963282585144, + 0.16964180767536163, + 0.16157662868499756, + 0.1756317988038063, + 0.215171679854393, + 0.20638083666563034, + 0.19975151121616364, + 0.1908004730939865, + 0.19259782880544662, + 0.20625677704811096, + 0.1778319925069809, + 0.20339477062225342, + 0.18525094538927078, + 0.15803677216172218, + 0.16304919868707657, + 0.2276947796344757, + 0.19141729921102524, + 0.20414745062589645, + 0.20102354139089584, + 0.22515955567359924, + 0.1623079851269722, + 0.21522515267133713, + 0.17392496019601822, + 0.22191927582025528, + 0.20385528355836868, + 0.16996530443429947, + 0.17954032868146896, + 0.16399160027503967, + 0.15907270833849907, + 0.21879497170448303, + 0.20955338329076767, + 0.2117207944393158, + 0.19765332341194153, + 0.22820009291172028, + 0.1959085538983345, + 0.15562083944678307, + 0.18715368956327438, + 0.21292241662740707, + 0.17541024088859558, + 0.20046254247426987, + 0.1594974845647812, + 0.17532598972320557, + 0.22629708051681519, + 0.21065763384103775, + 0.20094528049230576, + 0.22212401777505875, + 0.17038517445325851, + 0.19789855927228928, + 0.19697919487953186, + 0.19923915714025497, + 0.17139870673418045, + 0.21147744357585907, + 0.1748073324561119, + 0.22381773591041565, + 0.18682848662137985, + 0.1896151751279831, + 0.2251405417919159, + 0.16570982336997986, + 0.228951096534729, + 0.20299655944108963, + 0.1984732747077942, + 0.17265526950359344, + 0.1648469716310501, + 0.1795748993754387, + 0.22923707962036133, + 0.18711988627910614, + 0.15687230229377747, + 0.1823582872748375, + 0.15879058837890625, + 0.17365965247154236, + 0.2218237817287445, + 0.2055594101548195, + 0.23159606754779816, + 0.22468608617782593, + 0.21901632845401764, + 0.2066730633378029, + 0.18643777817487717, + 0.1818513199687004, + 0.22617697715759277, + 0.18768144398927689, + 0.21480067819356918, + 0.2286534160375595, + 0.21382476389408112, + 0.15657435357570648, + 0.17110273241996765, + 0.22206203639507294, + 0.18422099947929382, + 0.21650709211826324, + 0.2351565957069397, + 0.17351748794317245, + 0.1593381203711033, + 0.20870694518089294, + 0.22410517930984497, + 0.20057663321495056, + 0.17951521277427673, + 0.1693240851163864, + 0.16223330795764923, + 0.20692947506904602, + 0.2133883386850357, + 0.17433183640241623, + 0.17978525906801224, + 0.22917239367961884, + 0.1923302412033081, + 0.9451576173305511, + 0.9395902156829834, + -0.8773176968097687, + -0.8354452252388, + -0.025340634398162365, + -0.1157982386648655, + -0.18987540155649185, + -0.1862398386001587, + -0.17202208936214447, + -0.1568458527326584, + 0.26909974217414856, + 0.2655913531780243, + 0.24598490446805954, + 0.25496454536914825, + 0.251456156373024, + 0.20384574681520462, + -0.8746501207351685, + -0.8919150531291962, + -0.853293389081955, + -0.8423655033111572, + -0.8101435005664825, + 0.0516032800078392, + 0.04808097146451473, + -0.4690435826778412, + -0.49308502674102783, + -0.20997998863458633, + -0.21937107294797897, + -0.13217387348413467, + -0.13351333886384964, + -0.09707649797201157, + -0.10210519284009933, + -0.09841596335172653, + -0.0742107480764389, + -0.033389768563210964, + -0.7654191553592682, + 0.8046590089797974, + 0.7763390839099884, + -0.6339019536972046, + -0.6681859195232391, + 0.32303059101104736, + 0.31020964682102203, + -0.34830835461616516, + -0.3426251858472824, + -0.36320915818214417, + -0.356110081076622, + -0.3456016927957535, + -0.3399185240268707, + -0.35803329944610596, + -0.3534034192562103, + -0.7043074667453766, + -0.7447285652160645, + -0.43660736083984375, + -0.44766223430633545, + -0.44243060052394867, + -0.44705627858638763, + -0.43963436782360077, + -0.446982204914093, + -0.4289577305316925, + -0.4443025588989258, + -0.4348123371601105, + -0.432885080575943, + -0.4439399540424347, + -0.4387083202600479, + -0.4433339983224869, + -0.4359120875597, + -0.4186999648809433, + -0.44325992465019226, + -0.42523545026779175, + -0.440580278635025, + -0.4310900568962097, + -0.3375609368085861, + -0.3767218589782715, + -0.379191055893898, + -0.3820176422595978, + -0.7253015041351318, + -0.752525269985199, + -0.5624323487281799, + -0.5670754313468933, + -0.40506069362163544, + -0.5499956607818604, + -0.556775838136673, + -0.6756860911846161, + -0.7005151808261871, + 0.1279754750430584, + 0.10762393474578857, + 0.06122199725359678, + 0.05313166696578264, + 0.1157841645181179, + 0.10874036699533463, + 0.11754130944609642, + 0.1339469589293003, + 0.1192009188234806, + -0.676095724105835, + -0.6403490304946899, + -0.04246226139366627, + -0.0514525081962347, + -0.034447554498910904, + -0.046740852296352386, + -0.028750711120665073, + -0.0425100214779377, + -0.04313012212514877, + -0.03460044413805008, + -0.02239638241007924, + -0.039828233420848846, + -0.03192971833050251, + -0.04634229093790054, + -0.01884375256486237, + -0.04671959578990936, + -0.01501588977407664, + -0.019890240160748363, + -0.051033636555075645, + -0.04325676150619984, + -0.02393708797171712, + -0.026308407075703144, + -0.03561756573617458, + -0.028022222220897675, + -0.015266339643858373, + -0.05068680830299854, + -0.01587858219863847, + -0.03895839489996433, + -0.019370025023818016, + -0.024212865624576807, + -0.04802516661584377, + -0.03852016478776932, + -0.046754173934459686, + -0.04295641742646694, + -0.017795562278479338, + -0.02178265154361725, + -0.026824298314750195, + -0.045112280175089836, + -0.03787710703909397, + -0.02978032547980547, + -0.04750960320234299, + -0.022613784298300743, + -0.018391530611552298, + -0.05053285323083401, + -0.020069031743332744, + -0.04111657291650772, + -0.05165706388652325, + -0.02451666258275509, + -0.03379460982978344, + -0.038699546828866005, + -0.03229226917028427, + -0.026323538273572922, + -0.030510027892887592, + -0.04246226139366627, + -0.0514525081962347, + -0.034447554498910904, + -0.046740852296352386, + -0.028750711120665073, + -0.0425100214779377, + -0.04313012212514877, + -0.03460044413805008, + -0.02239638241007924, + -0.039828233420848846, + -0.03192971833050251, + -0.04634229093790054, + -0.01884375256486237, + -0.04671959578990936, + -0.01501588977407664, + -0.019890240160748363, + -0.051033636555075645, + -0.04325676150619984, + -0.02393708797171712, + -0.026308407075703144, + -0.03561756573617458, + -0.028022222220897675, + -0.015266339643858373, + -0.05068680830299854, + -0.01587858219863847, + -0.03895839489996433, + -0.019370025023818016, + -0.024212865624576807, + -0.04802516661584377, + -0.03852016478776932, + -0.046754173934459686, + -0.04295641742646694, + -0.017795562278479338, + -0.02178265154361725, + -0.026824298314750195, + -0.045112280175089836, + -0.03787710703909397, + -0.02978032547980547, + -0.04750960320234299, + -0.022613784298300743, + -0.018391530611552298, + -0.05053285323083401, + -0.020069031743332744, + -0.04111657291650772, + -0.05165706388652325, + -0.02451666258275509, + -0.03379460982978344, + -0.038699546828866005, + -0.03229226917028427, + -0.026323538273572922, + -0.030510027892887592, + 0.983784556388855, + 0.9722706377506256, + -0.5028872042894363, + -0.48357556760311127, + -0.6081179678440094, + -0.6451105773448944, + -0.6784985959529877, + 0.6808521151542664, + 0.686608761548996, + 0.6822004914283752, + 0.6863368451595306, + 0.6633329391479492, + 0.6464093327522278, + 0.6500318348407745, + 0.6690895855426788, + 0.6532811224460602, + 0.6646813154220581, + 0.6688176691532135, + 0.642734706401825, + 0.6463572084903717, + 0.6496064960956573, + 0.6544265449047089, + 0.6592876315116882, + 0.6612818837165833, + 0.654579222202301, + 0.650530219078064, + -0.3108673244714737, + -0.5037631988525391, + -0.5337339043617249, + -0.5279594361782074, + 0.584579348564148, + 0.5570244789123535, + 0.5448219776153564, + 0.5523687303066254, + 0.556554764509201, + 0.5563943088054657, + 0.5302784442901611, + 0.7388380765914917, + 0.7353512346744537, + 0.7138241827487946, + 0.7358348369598389, + 0.7090634703636169, + 0.7391747236251831, + 0.7356878817081451, + 0.714160829782486, + 0.7361714839935303, + 0.7094001173973083, + 0.9092178344726562, + 0.9266727566719055, + -0.7066619396209717, + 0.7154142260551453, + 0.737077921628952, + 0.7122906446456909, + -0.6310442984104156, + -0.650511234998703, + 0.47767534852027893, + 0.48002801835536957, + 0.49685586988925934, + 0.49465323984622955, + 0.5810143351554871, + 0.7669231295585632, + 0.23815089464187622, + 0.22953302413225174, + -0.7464040219783783, + -0.7370535731315613, + 0.5811004340648651, + 0.7579096853733063, + 0.7446715235710144, + 0.517039954662323, + 0.6685753762722015, + 0.6734364628791809, + 0.6754307150840759, + 0.6687280535697937, + 0.6646790504455566, + -0.4662642180919647, + -0.4600517153739929, + -0.47074979543685913, + -0.47014589607715607, + -0.461954802274704, + -0.45694053173065186, + -0.45957304537296295, + -0.4642384350299835, + -0.45072802901268005, + -0.4592873603105545, + -0.4408242106437683, + -0.43657922744750977, + -0.46142610907554626, + -0.4608222097158432, + -0.4526311159133911, + -0.6617555022239685, + -0.4850664585828781, + -0.4301179051399231, + -0.42587292194366455, + -0.6380768418312073, + -0.6314006447792053, + -0.1040147989988327, + -0.10574096813797951, + -0.11572054028511047, + -0.12855670601129532, + 0.10990739613771439, + 0.11984734982252121, + 0.12937705218791962, + 0.7273669838905334, + 0.756492555141449, + -0.5586799085140228, + -0.5312492847442627, + -0.5563399195671082, + -0.5078335404396057, + 0.13840021193027496, + 0.06455851346254349, + 0.04660686478018761, + 0.026157774031162262, + 0.03125873487442732, + 0.057819584384560585, + 0.05322609469294548, + 0.05455387756228447, + 0.049960387870669365, + 0.014467160683125257, + 0.019568121526390314, + -0.49288131296634674, + -0.4359702914953232, + -0.4358844459056854, + -0.4380534738302231, + -0.4529004544019699, + -0.42650169134140015, + -0.43045490980148315, + -0.4437568634748459, + -0.4425521194934845, + -0.42409299314022064, + -0.44492460787296295, + -0.41978245973587036, + -0.4414381831884384, + -0.43844425678253174, + -0.4341350495815277, + -0.43404920399188995, + -0.4362182319164276, + -0.44127240777015686, + -0.4246664494276047, + -0.4286196678876877, + -0.4419216215610504, + -0.440716877579689, + -0.42225775122642517, + -0.4430893659591675, + -0.4179472178220749, + -0.43960294127464294, + -0.43660901486873627, + -0.28061701357364655, + -0.2917626053094864, + 0.7049975097179413, + 0.6710645854473114, + 0.6861400008201599, + 0.6888166666030884, + 0.7488466203212738, + 0.708336740732193, + 0.7035385966300964, + 0.7056600749492645, + 0.700861930847168, + 0.651511013507843, + 0.5975494980812073, + 0.6112051010131836, + 0.5960232615470886, + 0.6336903870105743, + -0.11371932551264763, + -0.06912489235401154, + -0.00864554662257433, + -0.05755685642361641, + -0.7453138828277588, + -0.7069710791110992, + -0.1469181701540947, + -0.8838659226894379, + -0.8776935040950775, + -0.15137899667024612, + -0.1426355168223381, + -0.19399771839380264, + -0.2006067931652069, + -0.4866221994161606, + -0.4633866846561432, + -0.6400347352027893, + -0.658601850271225, + -0.6601419150829315, + 0.15491082519292831, + 0.15666797012090683, + 0.15832757949829102, + 0.20107758045196533, + 0.1277911774814129, + 0.1295483224093914, + -0.6712945699691772 + ] + }, + { + "hoverinfo": "text", + "marker": { + "color": [ + "red", + "blue", + "red", + "blue", + "red", + "blue", + "red", + "blue", + "red", + "blue", + "red", + "red", + "blue", + "red", + "blue", + "red", + "red", + "blue", + "red", + "red", + "blue", + "red", + "red", + "blue", + "red", + "blue", + "red", + "red", + "red", + "red", + "red", + "red", + "blue", + "blue", + "red", + "blue", + "red", + "blue", + "red", + "blue", + "red", + "red", + "blue", + "red", + "blue", + "red", + "blue", + "red", + "blue", + "red", + "red", + "blue", + "blue", + "red", + "blue", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "blue", + "red", + "red", + "blue", + "red", + "red", + "blue", + "red", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue" + ], + "colorbar": { + "thickness": 15, + "title": { + "side": "right", + "text": "Node Connections" + }, + "xanchor": "left" + }, + "colorscale": [ + [ + 0, + "rgb(255,255,217)" + ], + [ + 0.125, + "rgb(237,248,177)" + ], + [ + 0.25, + "rgb(199,233,180)" + ], + [ + 0.375, + "rgb(127,205,187)" + ], + [ + 0.5, + "rgb(65,182,196)" + ], + [ + 0.625, + "rgb(29,145,192)" + ], + [ + 0.75, + "rgb(34,94,168)" + ], + [ + 0.875, + "rgb(37,52,148)" + ], + [ + 1, + "rgb(8,29,88)" + ] + ], + "line": { + "width": 2 + }, + "reversescale": true, + "showscale": true, + "size": [ + 3.388901942598293e-71, + 3.388901942598293e-71, + 3.388901942598293e-71, + 3.388901942598293e-71, + 3.388901942598293e-71, + 3.388901942598293e-71, + 3.388901942598293e-71, + 3.388901942598293e-71, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 3.388901942598293e-71, + 3.388901942598293e-71, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 3.388901942598293e-71, + 3.388901942598293e-71, + 1.489000125812553e-38, + 3.7876226806853854e-38, + 1.489000125812553e-38, + 1.6262203363923875e-38, + 1.6262203363923875e-38, + 1.6262203363923875e-38, + 1.6262203363923875e-38, + 1.6262203363923875e-38, + 7.08806557562223e-39, + 1.759498704335417e-38, + 3.388901942598293e-71, + 3.388901942598293e-71, + 3.388901942598293e-71, + 3.388901942598293e-71, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 3.388901942598293e-71, + 3.388901942598293e-71, + 3.388901942598293e-71, + 3.388901942598293e-71, + 3.388901942598293e-71, + 3.388901942598293e-71, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 3.388901942598293e-71, + 3.388901942598293e-71, + 3.044826200191761e-38, + 4.703493835874945, + 70.7123393497226, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 4.703493835874945, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 3.388901942598293e-71, + 3.388901942598293e-71, + 3.388901942598293e-71, + 3.388901942598293e-71, + 3.4000179364221217e-59, + 6.282413963263321e-59, + 3.4000179364221217e-59, + 4.808351477999949e-59, + 2.6022610680257745e-59, + 6.452743039616603e-44, + 4.630867036189355e-44, + 9.908961087977644e-44, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 1.0594942370057447e-60, + 1.835097848820372e-60, + 2.1189884740114894e-60, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 8.302314461446184e-65, + 2.4769150950076857e-44, + 4.3756980448583084e-44, + 1.2983230027467069e-43, + 1.0594942370057447e-60, + 1.835097848820372e-60, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 3.819116382981926e-49, + 2.780745266579699e-49, + 3.9369722098484666e-49, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 1.5969768112167057e-37, + 7.641134667608711e-38, + 1.6935058519374985e-37, + 7.641134667608711e-38, + 3.1909025544756006e-49, + 1.144015706921815e-49, + 7.641134667608711e-38, + 7.641134667608711e-38, + 7.641134667608711e-38, + 1.4801995649036846e-49, + 2.2286577889360977e-49, + 7.990276958851127e-50, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 9.652904072079287e-39, + 4.1568058776547675e-38, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 7.641134667608711e-38, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 7.641134667608711e-38, + 7.641134667608711e-38, + 7.059330816295471e-44, + 2.4941912864472304e-43, + 8.106503019214122e-43, + 7.641134667608711e-38, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 1.8999328800621255e-49, + 6.432534012700027e-12, + 1.2738312893913826e-12, + 6.432534012700027e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.2738312893913826e-12, + 1.0594942370057447e-60, + 1.835097848820372e-60, + 2.1189884740114894e-60, + 1.0845110054971711e-42, + 9.824591783203544e-43, + 2.4755307594444537e-42, + 3.612733205688101e-42, + 1.680168179347267e-42, + 1.680168179347267e-42, + 3.388901942598293e-71, + 3.388901942598293e-71, + 9.824591783203544e-43, + 1.680168179347267e-42, + 2.3268108354438778e-60, + 1.3433848621968608e-60, + 1.3006165880388649e-51, + 3.366955003612427e-51, + 7.415546269336597e-51, + 6.118197766837104e-46, + 3.869488023712208e-46, + 6.118197766837104e-46, + 1.3433848621968608e-60, + 3.869488023712208e-46, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 2.8645415447848145e-51, + 2.8645415447848145e-51, + 1.0594942370057447e-60, + 1.835097848820372e-60, + 2.1189884740114894e-60, + 1.835097848820372e-60, + 1.0594942370057447e-60, + 3.869488023712208e-46, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 2.071713669309884e-57, + 4.143427338619768e-57, + 2.071713669309884e-57, + 2.071713669309884e-57, + 2.071713669309884e-57, + 1.300616588038865e-51, + 3.366955003612427e-51, + 1.3433848621968608e-60, + 1.835097848820372e-60, + 1.0594942370057447e-60, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 3.869488023712208e-46, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 1.300616588038865e-51, + 3.366955003612427e-51, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 1.300616588038865e-51, + 3.366955003612427e-51, + 1.610122297106072e-42, + 2.2217134517408175e-42, + 4.290585918543848e-42, + 3.141874339007227e-42, + 7.212941279744113e-42, + 1.9700179540555804e-42, + 1.9700179540555804e-42, + 3.141874339007227e-42, + 1.610122297106072e-42, + 8.738959843078923e-39, + 6.267855158646525e-39, + 1.610122297106072e-42, + 5.8142888331722166e-43, + 2.1288193770420782e-42, + 1.2648132561658088e-42, + 2.3154671579984328e-42, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 1.610122297106072e-42, + 2.3154671579984328e-42, + 1.610122297106072e-42, + 3.141874339007227e-42, + 3.141874339007227e-42, + 3.141874339007227e-42, + 3.4000179364221217e-59, + 6.282413963263321e-59, + 3.4000179364221217e-59, + 2.6022610680257745e-59, + 4.808351477999949e-59, + 1.0594942370057447e-60, + 1.835097848820372e-60, + 2.1189884740114894e-60, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 1.469809677584902e-58, + 2.7957441431798676e-58, + 2.378202015382118e-58, + 1.469809677584902e-58, + 1.0594942370057447e-60, + 1.835097848820372e-60, + 8.540725948492417e-56, + 1.8578878136654033e-55, + 3.1874423173295213e-55, + 2.762284892413181e-57, + 2.762284892413181e-57, + 2.762284892413181e-57, + 2.5379219508484485e-55, + 2.333369722480279e-55, + 9.824591783203544e-43, + 2.780745266579699e-49, + 2.5379219508484485e-55, + 9.083923377972158e-59, + 1.7278649043997036e-58, + 3.2110611273297996e-33, + 1.2833572805219979e-33, + 3.2110611273297996e-33, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 1.8421808317251304e-50, + 8.123253917924726e-51, + 3.0703013862085695e-51, + 1.6246507835849368e-50, + 1.2281205544834164e-50, + 1.6246507835849368e-50, + 8.123253917924726e-51, + 3.0703013862085695e-51, + 2.1189884740114894e-60, + 1.835097848820372e-60, + 1.0594942370057447e-60, + 1.835097848820372e-60, + 1.0594942370057447e-60, + 1.2281205544834164e-50, + 8.716128967236501e-45, + 3.079568508870948e-44, + 1.0009068472419543e-43, + 2.577677962663387e-43, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 2.762284892413181e-57, + 1.1306097897521452e-44, + 3.9946521055135405e-44, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 9.824591783203544e-43, + 4.3756980448583084e-44, + 8.302314461446184e-65, + 1.1741245710463472e-64, + 8.302314461446184e-65, + 6.507529821003975e-44, + 1.2833572805219979e-33, + 1.2833572805219979e-33, + 2.6618559110647498e-43, + 6.68368993022668e-34, + 1.335627350675965e-34, + 1.335627350675965e-34, + 6.68368993022668e-34, + 3.869488023712208e-46, + 1.0594942370057447e-60, + 1.835097848820372e-60, + 2.1189884740114894e-60, + 4.630867036189355e-44, + 4.137593960178914e-43, + 4.8998616263333364e-43, + 1.2833572805219979e-33, + 1.2833572805219979e-33, + 1.2833572805219979e-33, + 4.8998616263333364e-43, + 5.068014454423869e-43, + 1.2833572805219979e-33, + 1.2833572805219979e-33, + 2.5748446143673024e-43, + 1.2833572805219979e-33, + 1.0594942370057447e-60, + 1.835097848820372e-60, + 3.4654571840236626e-43, + 1.3536992732752957e-43, + 1.2833572805219979e-33, + 1.2833572805219979e-33, + 1.2833572805219979e-33 + ] + }, + "mode": "markers", + "text": [ + "1. Freiburger Solarfonds Beteiligungs-KG", + "Jürgen Wetzel", + "Aurelius KG", + "Peter Esser", + "Bayer Design Fritz Bayer GmbH & Co KG", + "Michael Georg Neubauer", + "Bayern Immobilien Höller/Lechner KG", + "Erwin Höller", + "Bayern-Osteuropa OHG Travel Consulting Marketing", + "Eugen Guwa", + "Anna Guwa", + "Bayern Treuhand Obermeier & Kilger KG Wirtschaftsprüfungsgesellschaft", + "Hugo Obermeier", + "Bayern-Park KG", + "Eva Leitl", + "Silke Holzner", + "BAYERN-RALLYE Karussellbetrieb OHG", + "Christine Fahrenschon", + "Maximilian Fahrenschon", + "Bayer Rettungstechnik oHG", + "Peter Bayer", + "Bernd Klein", + "Deutsche Wohn- und Gewerbebau KG", + "Ottmar Mühlberger", + "E. Merck KG", + "Frank Stangenberg-Haverkamp", + "Johannes Baillou", + "Belén Garijo Lopez", + "Kai Beckmann", + "Marcus Kuhnert", + "Matthias Heinzel", + "Peter Guenter", + "Emanuel-Merck-Vermögens-KG", + "E. Merck Beteiligungen KG", + "Frye Ströer Legehennen KG", + "Reinhard Frye", + "Fielmann Augenoptik AG & Co. oHG Harburg-City", + "Sirous Shahsiah", + "Henkel Familien KG", + "Anna Henkel", + "Thomas Henkel", + "Hanspeter Grassl KG", + "Sebastian Graßl", + "Henkel KG Generalagentur", + "Ronny Polack", + "Grundstücksgesellschaft Pfingstanger Salzgitter Bad KG", + "Günter Nicklas", + "K & S Citystore OHG", + "Gesine Tanja Föller-Klügl", + "Carsten Klügl", + "K.M.S. Doruk Computer Systeme OHG", + "Andrea Doruk", + "MERCK Kommanditgesellschaft auf Aktien", + "MetroPolis Grundstücks oHG", + "Donat Kühne", + "Andreas Stahl", + "Mina Ansari", + "Klaus Markus Dahlmanns", + "Gregor Fachinger", + "David Ferré", + "Ralf Fischer", + "Ekaterina Grishina", + "Gerald Hartung", + "Eduard Hinken", + "Vyacheslav Antoliyovych Ivchenko", + "Reinhard Janssen", + "Karin Lenz", + "Petra Mai-Hartung", + "Klaus-Jürgen Müller", + "Gudela Noack", + "Rico Noack", + "Peter Uwe Petersen", + "Zhiyun Ren", + "Denis Sapozhnikov", + "Michael Scheele", + "Jochen Scholl", + "Arnd Schröder", + "Michael Süßkind", + "Andreas Thot", + "Jianshen Zhou", + "Ursula Deibler", + "Joachim Hahn", + "Ralf Karwat", + "Martina Mahlke", + "Jörgen Pisarz", + "Frank Weisser", + "Gerhard Löhlein", + "Franz Rauch", + "Bogumila Szyja", + "Karin Timmerberg", + "Charlotte Weichselsdorfer", + "Rainer Weichselsdorfer", + "Bernhard Heitele", + "Zeynep Ayse Hicsasmaz-Heitele", + "Katharina von Falkenhayn", + "Franziska von Malaisé", + "Heinrich Brendel", + "Han Deng", + "Ulrike Köhler", + "Thomas Köhler", + "Jochem Lange", + "Annette Ludwig", + "Friederike Maurer", + "Willi Maurer", + "Andreas Ramshorn", + "Ingo Schuck", + "Johann-Friedrich von der Borch", + "Richard Weiler", + "Johannes Busch", + "Christine Ehard", + "Thomas Eismann", + "Stefanie Frensch", + "Holger Gleich", + "Sonja Kreibich", + "Henrik Thomsen", + "Kerstin Herzinger", + "Iris Kraus", + "Volker Kreibich", + "Barbara Kreibich", + "Olivier Krenz", + "Andrea Layer", + "Ingrid Schuff", + "Harald Schuff", + "Wolfgang Siegel", + "Helmut Teichmann", + "Dirk Broneske", + "Hanns Heinrich Frensch", + "Monika Frensch", + "Nicole Gerken-Broneske", + "Andriy Krantvays", + "Alfredo Perl", + "Olaf Rehahn", + "Susanne Reiner-Koppmann", + "Anna Spektor", + "Ilona Steiert", + "Kerstin Viot", + "Dirk Weichselsdorfer", + "Wolfgang Becker", + "Robert Dilla", + "Aldona Kihl", + "Martin Winkler", + "Gerda Winkler", + "Claudia Beppler-Spahl", + "Hauke Hermann", + "Nancy Stahl", + "Ingrid Maaß", + "Sebastian Schneider", + "Thilo Spahl", + "Runa Speer", + "Karin Blumenthal", + "Agnes Kolodziej", + "Jörg Langert", + "Claudia Langert", + "Sebastian Metzger", + "Carl-Wilhelm Oesterley", + "Burkhard Stangl", + "Peter Geibel", + "Stefanie Granitza", + "David Granitza-Schultz", + "Stephanie Reimert", + "Ellen Hautmann", + "Jens Kaffenberger", + "Dandy Kleybrink", + "Lia Kleybrink", + "Martin Langendorf", + "Mathilde Langendorf", + "Peter Maier-Stein", + "Runhao Min", + "Thomas Neumann", + "Gerd Pasemann", + "Jan Reimert", + "Helene Renger", + "Volker Stampe", + "Gudrun Stein", + "York von Falkenhayn", + "Oscar Zach", + "Doris Bischler", + "Markus Bischof", + "Matthias Kühnle", + "Karina Schimert-zu Hohenlohe", + "Cristiana da Silva", + "Jörg Löbig", + "Stefan Krause", + "Dirk Kudlicz", + "Rolf Lange", + "Andreas Veauthier", + "Sebastian Bukow", + "Arndt Bercher", + "Nicole Bercher-von Jordan", + "Robert Birker", + "Caprice Birker", + "Nicola Brase", + "Stephan DuCharme", + "Claudia Kaloff", + "Vladimir Kotiasvili", + "Otto Kückmann", + "Winrich Kyas", + "Sylke Kyas-Litt", + "Holger Matthies", + "Roland Mohr", + "Harald Rammler", + "Seyed Mohammad Seyed Makki", + "Brigitte Trattner", + "Christine Buchheit", + "Horand Knaup", + "Nevin Dogan", + "Levent Dogan", + "Elisabeth Dubbers", + "Stella Roidi-Schnorrenberg", + "Julius Schellmann", + "Ekkehard Roidis-Schnorrenberg", + "Michael Lefmann", + "Wolf Christian Boes", + "Rupert Dörfler", + "Carsten Eckert", + "Hans Günter Klein", + "Peter Molitor", + "Hasan Ali San", + "Zeynep San", + "Biljana Boes", + "Florian Will", + "Michael Narazny", + "Angelika Weidemann", + "Norbert Brömme", + "Thomas Eggers", + "Katja Simons", + "Nicholas Whitaker", + "Stephan Kühne", + "Hans-Jürgen Braun", + "Georg Denninger", + "Rebekka Denninger", + "Ulrich Müller Brito", + "Michael Rost", + "Stefan Sommer", + "Margarete Stephan", + "Frank Weber", + "Michael Wrede", + "Reinhard Gundelwein", + "Philipp Kühne", + "Sabrina Meyer", + "Helga Pilz", + "Dieter Pilz", + "Elisabeth Schaper", + "Thomas Schaper", + "Peter Buntrock", + "Angela Hoffmann", + "Alisa Krasylna", + "Kirsten Peters", + "Oda Hagemeier", + "Yuyi Huang", + "Erich Paproth", + "Annette Wolpert", + "Sebastian Aman", + "Andreas Roland Mollenkopf", + "Barbara Doll", + "Winfried Rademacher", + "Markus Trefz", + "Sabine Trefz", + "Jürgen Wenzler", + "Alexander Schwardmann", + "Miron Chestakov", + "Lev Chestakov", + "Raphaela Meis", + "Matthias Meis", + "Anja Markfort", + "Sibille Allgayer", + "Helmut Dietrich", + "Richard Kurka", + "Sarah Julia Lee", + "Lena Eleonore Staiger", + "Maja Bernadette Staiger", + "Benjamin Rohé", + "Jörn Averkamp", + "Thomas Grube", + "Yi Li", + "Natthinee Mohr", + "Sonia Susanna Mohrmann Oviedo", + "Florian Peter Pröscholdt", + "Manuel Scholten", + "Franziska Luise Dorothea Weller", + "Nordex-Glas oHG", + "Ali Hakan Sualp", + "Sevgi Karaarslan", + "\"PETER G. OHG,\" - Men & Women", + "Leonie Greis", + "Daniela Greis", + "REWE-Markt Ströer OHG", + "Silvio Ströer", + "Sartorius KG", + "Meik Sartorius", + "Aurubis AG", + "Aurubis Stolberg GmbH & Co. KG", + "Aurubis Stolberg Verwaltungs-GmbH", + "Aurubis Stolberg Asset GmbH & Co. KG", + "Aurubis Stolberg Asset Verwaltungs-GmbH", + "BayWa r.e. Wind Verwaltungs GmbH", + "BayWa r.e. Windparkportfolio 1 GmbH & Co. KG", + "BayWa r.e. Wind 20+ GmbH", + "BayWa BGM Verwaltungs GmbH", + "BayWa Bau- & Gartenmärkte GmbH & Co. KG", + "BayWa Pensionsverwaltung GmbH", + "Covestro Intellectual Property Verwaltungs GmbH", + "Covestro Intellectual Property GmbH & Co. KG", + "Covestro Deutschland AG", + "Brenntag Vermögensmanagement GmbH", + "Brenntag European Services GmbH & Co. KG", + "Brenntag Beteiligungs GmbH", + "Brenntag Foreign Holding GmbH", + "CM Komplementär 03-018 GmbH & Co. KG", + "BMW INTEC Beteiligungs GmbH", + "BMW Beteiligungs GmbH & Co. KG", + "BMW Vermögensverwaltungs GmbH", + "CM Komplementär 03-019 GmbH & Co. KG", + "BayWa r.e. Asset Verwaltungs GmbH", + "BayWa r.e. Solardächer II GmbH & Co. KG", + "BayWa r.e. AG", + "Covestro Procurement Services Verwaltungs GmbH", + "Covestro Procurement Services GmbH & Co. KG", + "Deutsche Post Adress Geschäftsführungs GmbH", + "Deutsche Post Adress GmbH & Co. KG", + "Deutsche Post Adress Beteiligungsgesellschaft mbH", + "Deutsche Post Verwaltungs Objekt GmbH", + "Deutsche Post Pensions-Treuhand GmbH & Co. KG", + "Deutsche Post AG", + "Deutsche Wohnen Zweite Fondsbeteiligungs GmbH", + "Deutsche Wohnen Beteiligungsverwaltungs GmbH & Co. KG", + "Deutsche Wohnen Fondsbeteiligungs GmbH", + "EnBW Real Estate GmbH", + "Der neue Stöckach GmbH & Co KG", + "Neckarwerke Stuttgart GmbH", + "EnBW He Dreiht Management GmbH", + "EnBW He Dreiht GmbH & Co. KG", + "EnBW Offshore 4 GmbH", + "EnBW Solar Verwaltungsgesellschaft mbH", + "EnBW Solarpark Lindenau GmbH & Co. KG", + "EnBW Solar GmbH", + "EnBW Solarpark Gickelfeld GmbH & Co. KG", + "EnBW City GmbH & Co. KG", + "EnBW Immobilienbeteiligungen GmbH", + "EnBW Solarpark Gückelhirn GmbH & Co. KG", + "EnBW Solarpark Sonnewalde GmbH & Co. KG", + "EnBW Solarpark Kroppen GmbH & Co. KG", + "EnBW Energie Baden-Württemberg AG", + "EnBW Übertragungsnetz Immobiliengesellschaft mbH & Co. KG", + "EnBW Übertragungsnetz Immobilien Verwaltungsgesellschaft mbH", + "EnBW WindInvest Management GmbH", + "EnBW WindInvest GmbH & Co. KG", + "EnBW Windkraftprojekte GmbH", + "EnBW Baltic 1 Verwaltungsgesellschaft mbH", + "EnBW Baltic 1 GmbH & Co. KG", + "EnBW Offshore 1 GmbH", + "EnBW SunInvest Management GmbH", + "EnBW SunInvest GmbH & Co. KG", + "EnBW Baltic 2 Management GmbH", + "EnBW Baltic 2 GmbH & Co. KG", + "EnBW Offshore 2 GmbH", + "EnBW Solarpark Rot an der Rot GmbH & Co. KG", + "EnBW Albatros Management GmbH", + "EnBW Albatros GmbH & Co. KG", + "EnBW Offshore 3 GmbH", + "EnBW Solarpark Emmingen-Liptingen GmbH & Co. KG", + "EnBW Solarpark Groß Lübbenau GmbH & Co. KG", + "BayWa r.e. EMEA IPP Holding GmbH", + "Dörenhagen Windenergieanlagen GmbH & Co. KG", + "BayWa r.e. IPP Verwaltungs GmbH", + "EnBW Solarpark Göritz GmbH & Co. KG", + "E.ON Real Estate GmbH", + "E.ON Grund&Boden GmbH & Co. KG", + "E.ON Grund&Boden Beteiligungs GmbH", + "EVGA Grundstücks- und Gebäudemanagement GmbH & Co. KG", + "Fielmann Aktiengesellschaft", + "Fielmann AG & Co. Brackwede KG", + "Fielmann Finanzservice GmbH", + "Fielmann AG & Co Bramfeld KG", + "Fielmann AG & Co. Centrum OHG", + "Fielmann AG & Co. Elberfeld OHG", + "Fielmann AG & Co. Hiltrup OHG", + "Fielmann AG & Co. Ochsenzoll OHG", + "Fielmann AG & Co. Rahlstedt OHG", + "Fielmann AG & Co. Rethelstraße OHG", + "Fielmann AG & Co. City-Arkaden OHG", + "Fielmann AG & Co. Mülheim OHG", + "Fielmann AG & Co. Oberkassel OHG", + "Fielmann AG & Co. Eimsbüttel OHG", + "Fielmann AG & Co. Venloer Straße OHG", + "Fielmann AG & Co. Wandsbek OHG", + "Fielmann AG & Co. Essen-Steele OHG", + "Fielmann AG & Co. Jahnplatz OHG", + "Fielmann AG & Co. OHG", + "Fielmann AG & Co. oHG Kalk", + "Fielmann AG & Co. Ottensen OHG", + "Fielmann AG & Co. am Markt KG", + "Fielmann AG & Co. Paunsdorf-Center OHG", + "Fielmann AG & Co-Volksdorf OHG", + "Fielmann AG & Co. oHG City-Galerie", + "Fielmann AG & Co. Othmarschen OHG", + "EWE HOCHTIEF Ladepartner Verwaltungs-GmbH", + "EWE Go HOCHTIEF Ladepartner GmbH & Co. KG", + "HOCHTIEF Ladepartner GmbH", + "Fielmann AG & Co. Harburg Sand OHG", + "Fielmann AG & Co. im Centrum OHG", + "Fielmann AG & Co. KG", + "Fielmann AG & Co. Barbarossaplatz OHG", + "Fielmann AG & Co. Bonn-Bad Godesberg OHG", + "Fielmann AG & Co. im Alstertal-Einkaufszentrum OHG", + "Fielmann AG & Co. Bad Cannstatt OHG", + "Fielmann AG & Co. Buer OHG", + "Fielmann AG & Co. Barmen OHG", + "Fielmann AG & Co. im Centrum KG", + "Fielmann AG & Co. Derendorf OHG", + "Fielmann AG & Co. oHG Ludwigsplatz", + "Fielmann AG & Co. Pferdemarkt OHG", + "Fielmann AG & Co. Zentrum KG", + "Fielmann AG & Co. Ebertplatz KG", + "Fielmann AG & Co. Klosterstraße OHG", + "Fielmann AG & Co Rathaus OHG", + "Fraport AG Frankfurt Airport Services Worldwide", + "Fraport Immobilienservice- u.-entwicklungs GmbH &Co.KG", + "Fraport Real Estate Verwaltungs GmbH", + "Fielmann AG & Co. Bergedorf KG", + "Fielmann AG & Co. oHG Allee-Center", + "Fielmann AG & Co. Essen-Rüttenscheid OHG", + "Fielmann AG & Co Wattenscheid KG", + "Fielmann AG & Co. Hamborn OHG", + "Fielmann AG & Co. Westliche Kaiserstraße KG", + "Fielmann AG & Co. An der Rothenburg OHG", + "Fielmann AG & Co. Billstedt KG", + "Fielmann AG & Co. Chorweiler KG", + "Fielmann AG & Co. oHG Hindenburgstraße", + "Rheinmetall Immobilien Hafenmole GmbH", + "GVMS Grundstücksverwaltung Service GmbH & Co. KG", + "Rheinmetall Automotive AG", + "STW Grundstücksverwaltung GmbH", + "GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Mönchengladbach ZV II KG", + "GBS Gesellschaft für Unternehmensbeteiligungen mbH", + "GKF Vermögensverwaltungsgesellschaft mbH", + "GKF Vermögensverwaltungsgesellschaft mbH & Co. Gewerbegrundstücke KG", + "GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Saar-Grund KG", + "Henkel Management AG", + "Henkel AG & Co. KGaA", + "GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Hamm KG", + "GKF Vermögensverwaltungsgesellschaft mbH & Co. 25. Objekt - KG", + "INDUS Holding Aktiengesellschaft", + "GSR Ventiltechnik GmbH & Co. KG", + "HOCHTIEF PPP Bundeswehrpartner FWK München Verwaltungs GmbH", + "HOCHTIEF PPP Bundeswehrpartner FWK München GmbH & Co. KG", + "HOCHTIEF PPP 1. Holding GmbH & Co. KG", + "KSB Energie Verwaltungs GmbH", + "KSB Erneuerbare Energien Eins GmbH & Co. KG", + "KSB Energie GmbH", + "Karl Simon GmbH & Co. KG", + "KSB Erneuerbare Energien Drei GmbH & Co. KG", + "LANXESS Trademark Management GmbH", + "LANXESS Trademark GmbH & Co. KG", + "LANXESS Deutschland GmbH", + "HOCHTIEF PPP 1. Holding Verwaltungsgesellschaft mbH", + "HOCHTIEF PPP Solutions GmbH", + "KS Grundstücksverwaltung Beteiligungs-GmbH", + "KS Grundstücksverwaltung GmbH & Co. KG", + "AIB Verwaltungs GmbH", + "Immobilien-Vermietungsgesellschaft von Quistorp GmbH & Co. Objekt Altlandsberg KG", + "METRO Leasing GmbH", + "KSB Erneuerbare Energien Fünf GmbH & Co. KG", + "KUKA Real Estate Management GmbH", + "KUKA Real Estate GmbH & Co. KG", + "KUKA Aktiengesellschaft", + "Schaeffler Wälzlager Beteiligungsgesellschaft mbH", + "IHO Holding GmbH & Co. KG", + "INA-Holding Schaeffler GmbH & Co. KG", + "IHO Management GmbH", + "ATESTEO Management GmbH", + "HOCHTIEF PPP Schulpartner Köln Rodenkirchen Verwaltungs GmbH", + "HOCHTIEF PPP Schulpartner Köln Rodenkirchen GmbH & Co. KG", + "HORNGROUP Holding GmbH & Co. KG", + "Kaufhalle GmbH & Co. Objekt Lager Apfelstädt KG", + "Kaufhalle GmbH", + "HUGO BOSS Beteiligungsgesellschaft mbH", + "HUGO BOSS Vermögensverwaltung GmbH & Co. KG", + "HUGO BOSS AG", + "KSB Windfeld Parstein GmbH & Co. KG", + "LMH Immobilien Holding GmbH & Co.KG", + "LMH Immobilien GmbH & Co. KG", + "Linde Material Handling GmbH", + "HOCHTIEF PPP Verwaltungs GmbH", + "HOCHTIEF PPP Schulpartner Köln P 1 GmbH & Co. KG", + "Infineon Technologies AG", + "Infineon Technologies Bipolar GmbH & Co. KG", + "Infineon Technologies Bipolar Verwaltungs GmbH", + "HOCHTIEF PPP Schulpartner Frankfurt am Main Verwaltungs GmbH", + "HOCHTIEF PPP Schulpartner Frankfurt am Main GmbH & Co. KG", + "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Porta-Westfalica KG", + "Metro Cash & Carry Grundstücksverwaltungsgesellschaft mbH", + "Mainova Erneuerbare Energien Verwaltungs GmbH", + "Mainova Windpark Niederhambach GmbH & Co. KG", + "Mainova Erneuerbare Energien GmbH & Co. KG", + "Mainova Erneuerbare Energien Management GmbH", + "Mainova Aktiengesellschaft", + "Mainova Windpark Siegbach GmbH & Co. KG", + "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Schwelm KG", + "Merck Life Science KGaA", + "Merck Schuchardt OHG", + "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Hamburg-Altona KG", + "Mainova Wind Onshore Verwaltungs GmbH", + "Mainova Gemeinschaftswindpark Hohenahr GmbH & Co. KG", + "Zweite Mainova Erneuerbare Energien Verwaltungs GmbH", + "Mainova PV_Park 1GmbH & Co. KG", + "GEHE Immobilien Verwaltungs-GmbH", + "MATIS Immobilien OHG", + "ABG Apotheken-Beratungsgesellschaft mbH", + "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt München-Pasing KG", + "Mainova PV_Park 3 GmbH & Co. KG", + "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Berlin-Friedrichshain KG", + "Mainova Windpark Kaisten GmbH & Co. KG", + "Mainova Windpark Kloppenheim GmbH & Co. KG", + "Mainova Windpark Remlingen GmbH & Co. KG", + "Nordex Beteiligungen GmbH", + "Nordex Energy SE & Co. KG", + "Nordex SE", + "Nordex Forum II Verwaltungs GmbH", + "Nordex Forum II GmbH & Co. KG", + "Minebea Intec Bovenden Verwaltungs-GmbH", + "Minebea Intec Bovenden GmbH & Co. KG", + "Minebea Intec GmbH", + "METRO Dienstleistungs-Holding GmbH", + "MIP METRO Group Intellectual Property GmbH & Co. KG", + "MIP METRO Group Intellectual Property Management GmbH", + "METRO PROPERTIES Management GmbH", + "METRO PROPERTIES GmbH & Co. KG", + "CECONOMY AG", + "METRO AG", + "Minebea Intec Aachen Verwaltungs-GmbH", + "Minebea Intec Aachen GmbH & Co. KG", + "Rheinmetall Aktiengesellschaft", + "Rheinmetall Immobilien Kassel GmbH & Co. KG", + "Rheinmetall Immobilien GmbH", + "HOCHTIEF Solutions Real Estate GmbH", + "Projektgesellschaft Konrad-Adenauer-Ufer Köln GmbH & Co. KG", + "HOCHTIEF Solutions Real Estate Beteiligungsverwaltungsgesellschaft mbH", + "Rheinmetall Immobilien VEGA GmbH & Co. KG", + "Rheinmetall Immobilien Hamburg Friedensallee GmbH", + "NIGRA Verwaltung GmbH & Co. Objekt Neunkirchen KG", + "NWS Grundstücksmanagement GmbH & Co. KG", + "Rheinmetall Immobilien Flensburg GmbH & Co. KG", + "MWFS Zwischenholding Management GmbH", + "MWFS Zwischenholding GmbH & Co. KG", + "Zalando SE", + "Portokali Property Development III SE & Co. KG", + "Zalando Operations GmbH", + "Salzgitter Aktiengesellschaft", + "Salzgitter Hydroforming GmbH & Co KG", + "Salzgitter Hydroforming Verwaltungs GmbH", + "Schaeffler Technologies AG & Co. KG", + "Schaeffler Aerospace Germany GmbH & Co. KG", + "Schaeffler Aerospace Germany Beteiligungs GmbH", + "Schaeffler AG", + "Schaeffler Industrial Remanufacturing Services AG & Co. KG", + "Schaeffler Verwaltungsholding Vier GmbH", + "Schaeffler ByWire Technologie GmbH & Co. KG", + "Schaeffler ByWire Management GmbH", + "Schaeffler Bühl Verwaltungs GmbH", + "Schaeffler Automotive Buehl GmbH & Co. KG", + "Schaeffler Bühl Beteiligungs GmbH", + "Schaeffler Automotive Aftermarket GmbH & Co. KG", + "Schaeffler KWK Verwaltungs GmbH", + "Schaeffler Sondermaschinenbau AG & Co. KG", + "BayWa r.e. Solar Projects Verwaltungs GmbH", + "SPV Solarpark 102. GmbH & Co. KG", + "BayWa r.e. Solar Projects GmbH", + "SPV Solarpark 103. GmbH & Co. KG", + "Volkswagen Immobilien Management GmbH", + "Volkswagen Immobilien BLUE GmbH & Co. KG", + "Volkswagen Immobilien Investment GmbH", + "Tivoli Garden GmbH & Co. KG", + "BayWa r.e. Power Solutions GmbH", + "Solarpark Lupus GmbH & Co. KG", + "United Internet AG", + "United Internet Investments Holding AG & Co. KG", + "United Internet Corporate Services GmbH", + "Südwest Presse + Hapag-Lloyd Reisebüro Verwaltungs GmbH", + "Südwest Presse + Hapag-Lloyd Reisebüro GmbH & Co. KG", + "TUI Deutschland GmbH", + "SIL Verwaltung GmbH & Co. Objekt Haidach KG", + "Umspannwerk Klein Bünsdorf GmbH & Co. KG", + "Volkswagen Automobile Hamburg GmbH", + "Volkswagen Original Teile Logistik GmbH & Co. KG", + "Volkswagen Original Teile Logistik Beteiligungs-GmbH", + "Solarpark Aquarius GmbH & Co. KG", + "Zalando Customer Care DACH SE & Co. KG", + "Zalando Logistics Mönchengladbach SE & Co. KG", + "Windpark Wilhelmshöhe GmbH & Co. KG", + "Zalando Lounge Content Solutions SE & Co. KG", + "Zalando Lounge Service GmbH", + "Zalando Outlets GmbH", + "Zalando Stores GmbH & Co. KG", + "Windfeld Hohenfelde Vier GmbH & Co. KG", + "Wacker Neuson PGM Verwaltungs GmbH", + "Wacker Neuson Produktion GmbH & Co. KG", + "Wacker Neuson SE", + "Windpark Hessenweiler GmbH & Co. KG", + "BayWa r.e. Wind GmbH", + "Windpark Wilhelmshöhe III GmbH & Co. KG", + "Zalando Lounge Logistics SE & Co. KG", + "Zalando Logistics Gießen SE & Co. KG", + "Zalando Logistics Süd SE & Co. KG", + "Windpark Wilhelmshöhe II GmbH & Co. KG", + "Wilhelmshöhe Infrastruktur GmbH & Co. KG", + "Zalando BTD 007 SE & Co. KG", + "Zalando BTD 010 SE & Co. KG", + "Windpark Lindchen GmbH & Co. KG", + "Zalando Customer Care Central Services SE & Co. KG", + "Wacker Neuson SGM Verwaltungs GmbH", + "Wacker Neuson Vertrieb Deutschland GmbH & Co. KG", + "Windpark Freimersheim GmbH & Co. KG", + "Windpark Pferdsfeld GmbH & Co. KG", + "Zalando BTD 009 SE & Co. KG", + "Zalando BTD 011 SE & Co. KG", + "Zalando Customer Care International SE & Co. KG" + ], + "type": "scatter", + "x": [ + 0.2464417815208435, + 0.25172606110572815, + -0.8643487691879272, + -0.849785327911377, + 0.7213099598884583, + 0.7085275650024414, + -0.7711144685745239, + -0.8085014224052429, + 0.6647935509681702, + 0.6970561742782593, + 0.7122176885604858, + -0.31991174817085266, + -0.3319738507270813, + 0.5323485732078552, + 0.5083475708961487, + 0.47786831855773926, + 0.94745272397995, + 0.9096888303756714, + 0.9196035265922546, + -0.529243528842926, + -0.5202438235282898, + -0.5046867728233337, + 0.8094830513000488, + 0.8380988836288452, + 0.09305175393819809, + 0.06944382935762405, + 0.08689254522323608, + 0.053361643105745316, + 0.0702107846736908, + 0.04806485027074814, + 0.06181376054883003, + 0.048765797168016434, + 0.09703734517097473, + 0.09164725244045258, + -0.08639825880527496, + -0.08912435919046402, + 0.6305239796638489, + 0.6385115385055542, + -0.7435498833656311, + -0.7086231708526611, + -0.710929274559021, + 0.2547479569911957, + 0.24583475291728973, + 0.80356365442276, + 0.8242728114128113, + 0.6503289937973022, + 0.6658776998519897, + 0.30851808190345764, + 0.2976363003253937, + 0.29273128509521484, + -0.15112748742103577, + -0.1570119708776474, + 0.059404678642749786, + -0.1284271478652954, + -0.17818894982337952, + -0.12432386726140976, + -0.14883342385292053, + -0.25456544756889343, + -0.13511669635772705, + -0.24739229679107666, + -0.1303166151046753, + -0.1980099231004715, + -0.17042027413845062, + -0.13520395755767822, + -0.11760076880455017, + -0.13204213976860046, + -0.16370011866092682, + -0.21967563033103943, + -0.16272035241127014, + -0.21429571509361267, + -0.22169461846351624, + -0.22970694303512573, + -0.1742626428604126, + -0.14859582483768463, + -0.22891567647457123, + -0.17965582013130188, + -0.17521105706691742, + -0.23457656800746918, + -0.15153297781944275, + -0.12258791923522949, + -0.2538287043571472, + -0.13621629774570465, + -0.20511791110038757, + -0.1497526466846466, + -0.205677792429924, + -0.2101936638355255, + -0.19239604473114014, + -0.10195925086736679, + -0.20424382388591766, + -0.2385687530040741, + -0.13157148659229279, + -0.16625139117240906, + -0.22944991290569305, + -0.13887925446033478, + -0.1249164491891861, + -0.1494278609752655, + -0.16960352659225464, + -0.1292954981327057, + -0.19565628468990326, + -0.1668667048215866, + -0.20752207934856415, + -0.20167209208011627, + -0.10813635587692261, + -0.2350902259349823, + -0.2174261212348938, + -0.111735038459301, + -0.23778490722179413, + -0.1437017172574997, + -0.15206530690193176, + -0.16517053544521332, + -0.19901373982429504, + -0.13157251477241516, + -0.2598840594291687, + -0.24230316281318665, + -0.2282845824956894, + -0.2186427265405655, + -0.23294638097286224, + -0.14012150466442108, + -0.15808354318141937, + -0.15187005698680878, + -0.24778763949871063, + -0.15779106318950653, + -0.14241649210453033, + -0.23634730279445648, + -0.20118802785873413, + -0.24040669202804565, + -0.17210963368415833, + -0.15866807103157043, + -0.24897955358028412, + -0.20758585631847382, + -0.12388353049755096, + -0.11313606798648834, + -0.207554891705513, + -0.20505473017692566, + -0.22524401545524597, + -0.14105357229709625, + -0.1599196493625641, + -0.2485535442829132, + -0.1266763061285019, + -0.16532118618488312, + -0.22996456921100616, + -0.14609640836715698, + -0.18484686315059662, + -0.15611790120601654, + -0.17658935487270355, + -0.16765236854553223, + -0.15946480631828308, + -0.1404140591621399, + -0.1221090778708458, + -0.10441064089536667, + -0.24303625524044037, + -0.21917378902435303, + -0.23526756465435028, + -0.11459805816411972, + -0.17676596343517303, + -0.10418083518743515, + -0.246490016579628, + -0.10202881693840027, + -0.18514011800289154, + -0.20179258286952972, + -0.25322943925857544, + -0.19924607872962952, + -0.23431986570358276, + -0.2128400206565857, + -0.17972512543201447, + -0.137827068567276, + -0.11883512139320374, + -0.12234979122877121, + -0.23776763677597046, + -0.1679217666387558, + -0.246311217546463, + -0.1937747448682785, + -0.19066055119037628, + -0.18040311336517334, + -0.143699511885643, + -0.18751756846904755, + -0.10209102183580399, + -0.2559468448162079, + -0.22762572765350342, + -0.21662504971027374, + -0.1157405823469162, + -0.20824986696243286, + -0.24341821670532227, + -0.11275818943977356, + -0.24202249944210052, + -0.11632934957742691, + -0.11565285176038742, + -0.11045313626527786, + -0.10998841375112534, + -0.11163754016160965, + -0.19548511505126953, + -0.15208441019058228, + -0.17572230100631714, + -0.25624075531959534, + -0.24925406277179718, + -0.25888320803642273, + -0.2252219021320343, + -0.22396187484264374, + -0.24115706980228424, + -0.12786592543125153, + -0.2290673851966858, + -0.14927922189235687, + -0.12264102697372437, + -0.19392389059066772, + -0.18331757187843323, + -0.17868588864803314, + -0.1989036351442337, + -0.21347738802433014, + -0.23569229245185852, + -0.15804260969161987, + -0.14508919417858124, + -0.11032046377658844, + -0.18823827803134918, + -0.22647514939308167, + -0.1719135344028473, + -0.21580767631530762, + -0.22741787135601044, + -0.1428532600402832, + -0.22529613971710205, + -0.21699360013008118, + -0.24693825840950012, + -0.12115846574306488, + -0.19217078387737274, + -0.13430455327033997, + -0.2207660675048828, + -0.1446482092142105, + -0.2389439046382904, + -0.20941855013370514, + -0.11716937273740768, + -0.13753119111061096, + -0.1792864054441452, + -0.21764332056045532, + -0.20751698315143585, + -0.16021457314491272, + -0.13320334255695343, + -0.22248513996601105, + -0.12996813654899597, + -0.20943060517311096, + -0.2331756353378296, + -0.21208059787750244, + -0.25194939970970154, + -0.1620938926935196, + -0.1661572903394699, + -0.20233558118343353, + -0.2395186871290207, + -0.21228237450122833, + -0.14793549478054047, + -0.15440288186073303, + -0.10328324139118195, + -0.1490774005651474, + -0.19848668575286865, + -0.18528667092323303, + -0.12331429868936539, + -0.1916562020778656, + -0.10681680589914322, + -0.13087883591651917, + -0.25629815459251404, + -0.19444173574447632, + -0.13788825273513794, + -0.1326226145029068, + -0.1689344346523285, + -0.2193451225757599, + -0.21659494936466217, + -0.1402275711297989, + -0.12144209444522858, + -0.1821037232875824, + -0.2431059032678604, + -0.18646806478500366, + -0.10895069688558578, + -0.16849477589130402, + -0.24979886412620544, + -0.15402990579605103, + -0.18484821915626526, + -0.19309543073177338, + -0.18273785710334778, + -0.15894363820552826, + -0.18989592790603638, + -0.22846537828445435, + -0.20194196701049805, + -0.22008191049098969, + 0.01871669851243496, + 0.004878245294094086, + -0.01049591600894928, + -0.18674449622631073, + -0.1805674284696579, + -0.1727060079574585, + 0.8782918453216553, + 0.9154072999954224, + -0.8432600498199463, + -0.816394031047821, + -0.6016141772270203, + -0.5971851944923401, + -0.6298348307609558, + -0.6077018976211548, + -0.6214359402656555, + 0.2685452997684479, + 0.252021849155426, + 0.23288235068321228, + 0.08457986265420914, + 0.09816455841064453, + 0.10423561930656433, + -0.060628972947597504, + -0.044803958386182785, + -0.038853902369737625, + -0.9164776802062988, + -0.8794518113136292, + -0.8324653506278992, + -0.5842205286026001, + -0.6227914690971375, + -0.7713537216186523, + -0.7864565849304199, + -0.8089522123336792, + -0.6533200144767761, + 0.11125195771455765, + 0.1120065301656723, + 0.12641258537769318, + -0.03663073480129242, + -0.03707969933748245, + -0.4878994822502136, + -0.46731165051460266, + -0.45075297355651855, + -0.24870175123214722, + -0.2614414691925049, + -0.2718934714794159, + 0.770074188709259, + 0.763022243976593, + 0.733385443687439, + -0.6501139402389526, + -0.6353998780250549, + -0.6185294985771179, + 0.3407366871833801, + 0.3609964847564697, + 0.37759077548980713, + 0.4212779104709625, + 0.4061054587364197, + 0.4231255352497101, + 0.433755487203598, + -0.6443923115730286, + -0.6799862384796143, + 0.4059285819530487, + 0.4242550730705261, + 0.4413616955280304, + -0.6349909901618958, + -0.6076157093048096, + -0.6169940829277039, + 0.19512459635734558, + 0.2014160454273224, + 0.2027176171541214, + -0.48490282893180847, + -0.4689778685569763, + -0.4578639566898346, + 0.47405925393104553, + 0.4479134678840637, + -0.5857027173042297, + -0.5632457733154297, + -0.5830931663513184, + 0.4144650101661682, + -0.33596739172935486, + -0.3488348126411438, + -0.36012399196624756, + 0.42734184861183167, + 0.4408956468105316, + 0.271980345249176, + 0.2407788187265396, + 0.19975000619888306, + 0.4417618215084076, + -0.12896086275577545, + -0.12559100985527039, + -0.12116096913814545, + -0.6540432572364807, + 0.35391926765441895, + 0.3464866876602173, + 0.35391926765441895, + 0.3653092682361603, + 0.396016925573349, + 0.37080690264701843, + 0.3737362027168274, + 0.3910733163356781, + 0.32653501629829407, + 0.325710266828537, + 0.3884318172931671, + 0.37907880544662476, + 0.38849908113479614, + 0.35184648633003235, + 0.3365691304206848, + 0.33936619758605957, + 0.35052689909935, + 0.35440656542778015, + 0.34969276189804077, + 0.33436959981918335, + 0.35019275546073914, + 0.39093875885009766, + 0.3761758804321289, + 0.34291279315948486, + 0.3591412305831909, + 0.3421798050403595, + -0.21691559255123138, + -0.20748159289360046, + -0.1959778070449829, + 0.3680083155632019, + 0.3368403911590576, + 0.37288999557495117, + 0.3687383234500885, + 0.3324868083000183, + 0.3939424455165863, + 0.3615078330039978, + 0.3744443356990814, + 0.3460165858268738, + 0.3407641649246216, + 0.3825913667678833, + 0.3855513334274292, + 0.38743987679481506, + 0.3952467143535614, + 0.3792616128921509, + 0.3803744316101074, + 0.3802337944507599, + -0.5877715945243835, + -0.5641599297523499, + -0.5367216467857361, + 0.373130738735199, + 0.3623795807361603, + 0.3654484748840332, + 0.35712701082229614, + 0.3346136808395386, + 0.3366940915584564, + 0.3258623480796814, + 0.3817720115184784, + 0.3275751769542694, + 0.32758036255836487, + 0.32408422231674194, + 0.34906628727912903, + 0.3747580945491791, + 0.0455169677734375, + 0.050850190222263336, + 0.07081958651542664, + 0.12935557961463928, + 0.10137855261564255, + 0.09851787239313126, + 0.8224155902862549, + 0.8195464015007019, + 0.06742318719625473, + 0.10191644728183746, + -0.3581405282020569, + -0.3344023525714874, + 0.6440825462341309, + 0.6332850456237793, + 0.6425581574440002, + 0.2663162648677826, + 0.2701452374458313, + 0.2599833607673645, + -0.3728470802307129, + 0.26035067439079285, + 0.08294477313756943, + 0.09022372961044312, + 0.09686462581157684, + 0.6667846441268921, + 0.6730529069900513, + 0.41453877091407776, + 0.3970161974430084, + 0.3558817207813263, + 0.3772730231285095, + 0.40047866106033325, + 0.25845909118652344, + 0.48276978731155396, + 0.5012227892875671, + 0.5043168067932129, + -0.7456961870193481, + -0.7433612942695618, + -0.7190871238708496, + -0.7781549096107483, + -0.7632617950439453, + 0.7165974378585815, + 0.6846449971199036, + -0.38022086024284363, + 0.34200403094291687, + 0.34770387411117554, + 0.8555475473403931, + 0.8316174745559692, + 0.8042268753051758, + 0.2787091135978699, + -0.3994385302066803, + -0.3841426372528076, + -0.3689253032207489, + 0.667101263999939, + 0.6518868803977966, + 0.36657166481018066, + 0.3507234454154968, + 0.3654472529888153, + 0.6766417026519775, + 0.650081992149353, + 0.15432699024677277, + 0.15983179211616516, + -0.15838664770126343, + -0.17865103483200073, + -0.18394313752651215, + -0.20219142735004425, + -0.19360952079296112, + -0.16000919044017792, + 0.13912715017795563, + 0.07985521852970123, + 0.09397387504577637, + 0.14708209037780762, + -0.23304221034049988, + -0.21503837406635284, + -0.22043782472610474, + -0.20643223822116852, + -0.6609592437744141, + -0.6315853595733643, + -0.627214252948761, + 0.1451844871044159, + -0.2000293880701065, + 0.15992747247219086, + -0.1749914288520813, + -0.16567693650722504, + -0.17007072269916534, + 0.7468717694282532, + 0.7230534553527832, + 0.6988825798034668, + 0.7611645460128784, + 0.7420296669006348, + 0.7211785316467285, + 0.7694008946418762, + 0.8146566152572632, + 0.5429590344429016, + 0.5664284825325012, + 0.5901332497596741, + 0.4529556632041931, + 0.43243205547332764, + 0.4353798031806946, + 0.4366755783557892, + 0.8921899199485779, + 0.8558453917503357, + -0.7503349781036377, + -0.7304964065551758, + -0.7213456630706787, + 0.9458717703819275, + 0.9244584441184998, + 0.894565761089325, + -0.7344723343849182, + -0.7496107816696167, + 0.06226656213402748, + -0.646020770072937, + -0.7422614693641663, + 0.46513617038726807, + 0.44622841477394104, + 0.5678045749664307, + 0.5916979312896729, + 0.5712817311286926, + -0.8308581113815308, + -0.8210585713386536, + -0.8490455150604248, + -0.1978202611207962, + -0.2176109105348587, + -0.2317284494638443, + -0.1824841946363449, + -0.1832122802734375, + -0.1751958131790161, + -0.21922965347766876, + -0.23321226239204407, + 0.026668677106499672, + 0.05257432907819748, + 0.07427182048559189, + 0.004022039473056793, + -0.00817697960883379, + -0.16867251694202423, + 0.1889980286359787, + 0.1823005974292755, + 0.1769936978816986, + 0.18772630393505096, + -0.22267284989356995, + -0.21267397701740265, + -0.20073741674423218, + 0.9299091696739197, + 0.09316626936197281, + 0.10267745703458786, + -0.3001697063446045, + -0.3148300051689148, + -0.3114093542098999, + 0.8294669389724731, + 0.8084141612052917, + 0.8291566967964172, + 0.05785457789897919, + 0.1202302798628807, + -0.8105132579803467, + -0.8483940958976746, + -0.8759222030639648, + 0.15508252382278442, + 0.6001533269882202, + 0.557486891746521, + 0.1597600132226944, + 0.602821409702301, + 0.6329485177993774, + 0.6558703184127808, + 0.6197221279144287, + 0.250155508518219, + -0.3608476519584656, + -0.38343122601509094, + -0.40349528193473816, + 0.25724613666534424, + 0.23185665905475616, + 0.22481170296669006, + 0.5903499126434326, + 0.5947532653808594, + 0.5840409994125366, + 0.21467441320419312, + 0.2162562757730484, + 0.5642147660255432, + 0.5803174376487732, + 0.21412575244903564, + 0.5747452974319458, + -0.4421737790107727, + -0.41822436451911926, + 0.2219676971435547, + 0.25209227204322815, + 0.5351385474205017, + 0.5935290455818176, + 0.5807700157165527 + ], + "y": [ + -0.654484748840332, + -0.6727984547615051, + 0.3861032724380493, + 0.38038378953933716, + -0.3671012222766876, + -0.36623573303222656, + 0.09753039479255676, + 0.10561967641115189, + -0.23978674411773682, + -0.24828967452049255, + -0.2456149011850357, + -0.7752000093460083, + -0.8041287064552307, + 0.6426486968994141, + 0.6169246435165405, + 0.5847172737121582, + -0.23671990633010864, + -0.22755968570709229, + -0.21678262948989868, + -0.5879956483840942, + -0.6004277467727661, + -0.6020035147666931, + -0.4581385552883148, + -0.4738360047340393, + -0.7030104994773865, + -0.6811888813972473, + -0.7085652947425842, + -0.6997040510177612, + -0.6987282633781433, + -0.6913259625434875, + -0.703658938407898, + -0.6728756427764893, + -0.7308123707771301, + -0.6838248372077942, + -0.7609090209007263, + -0.7847898006439209, + -0.5877047181129456, + -0.57647705078125, + -0.4498060941696167, + -0.43128105998039246, + -0.44557812809944153, + -0.7729795575141907, + -0.7432258725166321, + 0.46667900681495667, + 0.4773072600364685, + -0.19516253471374512, + -0.1950828731060028, + -0.7367873787879944, + -0.7068465948104858, + -0.6902238726615906, + -0.7298604846000671, + -0.7650537490844727, + -0.6780945062637329, + 0.24199002981185913, + 0.19445481896400452, + 0.18462082743644714, + 0.1879468560218811, + 0.17327818274497986, + 0.19174717366695404, + 0.23374836146831512, + 0.2000858187675476, + 0.14627106487751007, + 0.15519452095031738, + 0.18233639001846313, + 0.24529200792312622, + 0.2501440942287445, + 0.2730642855167389, + 0.16840383410453796, + 0.22277267277240753, + 0.24298763275146484, + 0.23977237939834595, + 0.19515976309776306, + 0.1311510056257248, + 0.23807379603385925, + 0.23281188309192657, + 0.1536053866147995, + 0.14125527441501617, + 0.18362592160701752, + 0.12220252305269241, + 0.17609263956546783, + 0.22533127665519714, + 0.13048627972602844, + 0.12647545337677002, + 0.14155174791812897, + 0.14036697149276733, + 0.16378182172775269, + 0.13878224790096283, + 0.19186954200267792, + 0.17229142785072327, + 0.21168939769268036, + 0.16212685406208038, + 0.13645562529563904, + 0.21631911396980286, + 0.2090805321931839, + 0.23013027012348175, + 0.22522005438804626, + 0.26532962918281555, + 0.1707010120153427, + 0.21486221253871918, + 0.21226002275943756, + 0.2160809338092804, + 0.22727464139461517, + 0.23011648654937744, + 0.13984502851963043, + 0.21304066479206085, + 0.18439778685569763, + 0.1947486847639084, + 0.16423141956329346, + 0.1766691952943802, + 0.14637728035449982, + 0.2718963921070099, + 0.2223246842622757, + 0.19608938694000244, + 0.24709786474704742, + 0.13588184118270874, + 0.23199288547039032, + 0.17365998029708862, + 0.2541463375091553, + 0.15369994938373566, + 0.2585724890232086, + 0.17226657271385193, + 0.13982677459716797, + 0.14507924020290375, + 0.221470445394516, + 0.13311052322387695, + 0.14570066332817078, + 0.273333877325058, + 0.24140693247318268, + 0.18886026740074158, + 0.25539928674697876, + 0.2510417401790619, + 0.2370094358921051, + 0.26844868063926697, + 0.24634215235710144, + 0.22414427995681763, + 0.23455017805099487, + 0.11843365430831909, + 0.15706102550029755, + 0.13987474143505096, + 0.1652408093214035, + 0.24103839695453644, + 0.2485928237438202, + 0.2638549506664276, + 0.2688692808151245, + 0.24156609177589417, + 0.12660133838653564, + 0.12810295820236206, + 0.22271019220352173, + 0.19675017893314362, + 0.17794789373874664, + 0.16304923593997955, + 0.1392890065908432, + 0.15908794105052948, + 0.16809475421905518, + 0.11583719402551651, + 0.18558713793754578, + 0.199174165725708, + 0.20672190189361572, + 0.23036843538284302, + 0.15580099821090698, + 0.19865457713603973, + 0.19591447710990906, + 0.25449779629707336, + 0.264150470495224, + 0.16820086538791656, + 0.24365490674972534, + 0.15133193135261536, + 0.16325223445892334, + 0.242647185921669, + 0.2448379546403885, + 0.17982998490333557, + 0.26427343487739563, + 0.27240464091300964, + 0.26965805888175964, + 0.13473762571811676, + 0.2565234899520874, + 0.19918964803218842, + 0.21656444668769836, + 0.14482879638671875, + 0.1286984384059906, + 0.1568087786436081, + 0.2358885407447815, + 0.21830685436725616, + 0.20504820346832275, + 0.1871461272239685, + 0.19074083864688873, + 0.2180587351322174, + 0.16120916604995728, + 0.21233472228050232, + 0.17604707181453705, + 0.12161872535943985, + 0.13164357841014862, + 0.2609347403049469, + 0.18837977945804596, + 0.2138400822877884, + 0.20759226381778717, + 0.25586429238319397, + 0.13016115128993988, + 0.23599548637866974, + 0.15339510142803192, + 0.24938373267650604, + 0.21325574815273285, + 0.14547578990459442, + 0.1646258383989334, + 0.13352838158607483, + 0.12369059771299362, + 0.24313512444496155, + 0.22465194761753082, + 0.22898676991462708, + 0.20085182785987854, + 0.26194536685943604, + 0.1973622888326645, + 0.11678685992956161, + 0.17985256016254425, + 0.23139001429080963, + 0.15636566281318665, + 0.20647026598453522, + 0.12454015016555786, + 0.15619716048240662, + 0.25813934206962585, + 0.22686044871807098, + 0.207435742020607, + 0.24979321658611298, + 0.1463155299425125, + 0.20134229958057404, + 0.1995035707950592, + 0.20402349531650543, + 0.14834259450435638, + 0.22850006818771362, + 0.1551598459482193, + 0.2531806528568268, + 0.1792021542787552, + 0.18477553129196167, + 0.25582626461982727, + 0.1369648277759552, + 0.2634473741054535, + 0.21153829991817474, + 0.20249173045158386, + 0.15085572004318237, + 0.1352391242980957, + 0.16469497978687286, + 0.26401934027671814, + 0.17978495359420776, + 0.11928978562355042, + 0.17026175558567047, + 0.12312635779380798, + 0.1528644859790802, + 0.2491927444934845, + 0.21666400134563446, + 0.2687373161315918, + 0.25491735339164734, + 0.24357783794403076, + 0.21889130771160126, + 0.17842073738574982, + 0.1692478209733963, + 0.25789913535118103, + 0.18090806901454926, + 0.23514653742313385, + 0.2628520131111145, + 0.23319470882415771, + 0.11869388818740845, + 0.1477506458759308, + 0.24966925382614136, + 0.17398717999458313, + 0.23855936527252197, + 0.2758583724498749, + 0.1525801569223404, + 0.12422142177820206, + 0.22295907139778137, + 0.2537555396556854, + 0.2066984474658966, + 0.16457560658454895, + 0.1441933512687683, + 0.13001179695129395, + 0.21940413117408752, + 0.2323218584060669, + 0.15420885384082794, + 0.16511569917201996, + 0.26388996839523315, + 0.1902056634426117, + 0.9491451978683472, + 0.9411700367927551, + 0.9380103945732117, + -0.8959433436393738, + -0.8586920499801636, + -0.8121984004974365, + -0.02461658976972103, + -0.0260646790266037, + -0.11644165962934494, + -0.11515481770038605, + -0.19888867437839508, + -0.18086212873458862, + -0.19161754846572876, + -0.16318204998970032, + -0.15050965547561646, + 0.2648013234138489, + 0.27339816093444824, + 0.23653092980384827, + -0.8767951726913452, + -0.8725050687789917, + -0.9113250374794006, + -0.8520274758338928, + -0.8545593023300171, + -0.8301717042922974, + 0.053161539137363434, + 0.05004502087831497, + 0.04611692205071449, + -0.4557867646217346, + -0.48230040073394775, + -0.20488353073596954, + -0.21507644653320312, + -0.22366569936275482, + -0.5038696527481079, + -0.1465042680501938, + -0.11784347891807556, + -0.07630951702594757, + -0.7407230138778687, + -0.7901152968406677, + 0.8203407526016235, + 0.7889772653579712, + 0.7637009024620056, + -0.6152395606040955, + -0.6525643467903137, + -0.6838074922561646, + 0.3289653956890106, + 0.3170957863330841, + 0.30332350730895996, + -0.3513404130935669, + -0.3452762961387634, + -0.34592708945274353, + -0.6820738911628723, + -0.7265410423278809, + -0.762916088104248, + -0.43818190693855286, + -0.43503281474113464, + -0.43073734641075134, + -0.45714256167411804, + -0.3339099586009979, + -0.3412119150161743, + -0.4466792941093445, + -0.4559306502342224, + -0.4410868287086487, + -0.3833042085170746, + -0.3701395094394684, + -0.3938957750797272, + -0.7077723145484924, + -0.7428306937217712, + -0.7622198462486267, + -0.5631013512611389, + -0.561763346195221, + -0.5723875164985657, + -0.4034588038921356, + -0.40666258335113525, + -0.5556347370147705, + -0.5443565845489502, + -0.5691950917243958, + -0.4557825028896332, + -0.6619945168495178, + -0.6893776655197144, + -0.7116526961326599, + -0.41973355412483215, + -0.4504232108592987, + 0.13743643462657928, + 0.1185145154595375, + 0.09673335403203964, + -0.4314427673816681, + -0.6917870044708252, + -0.6604044437408447, + -0.6202936172485352, + -0.37507790327072144, + -0.033309999853372574, + -0.05161452293395996, + -0.033309999853372574, + -0.06959501653909683, + -0.035585109144449234, + -0.0601717047393322, + -0.024191422387957573, + -0.05171004310250282, + -0.05295024439692497, + -0.035890888422727585, + -0.011482764966785908, + -0.04634646698832512, + -0.030549436807632446, + -0.05937458202242851, + -0.004377505276352167, + -0.06012919172644615, + 0.0032782203052192926, + -0.006470480468124151, + -0.06875727325677872, + -0.0532035231590271, + -0.014564176090061665, + -0.019306814298033714, + -0.03792513161897659, + -0.022734444588422775, + 0.0027773205656558275, + -0.06806361675262451, + 1, + 0.96756911277771, + 0.9769721627235413, + 0.0015528354560956359, + -0.04460678994655609, + -0.005430050194263458, + -0.01511573139578104, + -0.06274033337831497, + -0.04373032972216606, + -0.0601983480155468, + -0.05260283499956131, + -0.0022811247035861015, + -0.010255303233861923, + -0.020338596776127815, + -0.0569145604968071, + -0.04244421422481537, + -0.026250651106238365, + -0.0617092065513134, + -0.011917568743228912, + -0.0034730613697320223, + -0.5114917159080505, + -0.49428269267082214, + -0.4728684425354004, + -0.06775570660829544, + -0.0068280636332929134, + -0.04892314597964287, + -0.07000412791967392, + -0.015723325312137604, + -0.034279219806194305, + -0.044089093804359436, + -0.03127453848719597, + -0.01933707669377327, + -0.02771005593240261, + -0.5891770124435425, + -0.6270589232444763, + -0.6631622314453125, + 0.6865338683128357, + 0.675170361995697, + 0.6514955163002014, + 0.6441462635993958, + 0.6413231492042542, + 0.6485681533813477, + -0.3175395429134369, + -0.3041951060295105, + 0.6866836547851562, + 0.655066728591919, + -0.5193840265274048, + -0.48814237117767334, + 0.5983263850212097, + 0.5708323121070862, + 0.5432166457176208, + 0.725187361240387, + 0.7524887919425964, + 0.7258606553077698, + -0.5480837821960449, + 0.7455151081085205, + 0.9006677865982056, + 0.9177678823471069, + 0.9355776309967041, + 0.546427309513092, + 0.5615208148956299, + -0.7194889187812805, + -0.6938349604606628, + 0.7230154871940613, + 0.7078129649162292, + 0.7167683243751526, + 0.7024610042572021, + -0.6182053685188293, + -0.643883228302002, + -0.657139241695404, + 0.469256192445755, + 0.48609450459480286, + 0.4739615321159363, + 0.5076172351837158, + 0.5032119750976562, + 0.5921357870101929, + 0.5698928833007812, + -0.53653484582901, + 0.7511403560638428, + 0.7827059030532837, + 0.24216368794441223, + 0.2341381013393402, + 0.22492794692516327, + 0.7464823126792908, + -0.7573820352554321, + -0.7354260087013245, + -0.7386811375617981, + 0.5926288962364197, + 0.5695719718933105, + 0.7719910740852356, + 0.743828296661377, + 0.7455147504806519, + 0.5167396664619446, + 0.5173402428627014, + 0.664706826210022, + 0.6724439263343811, + -0.46575793623924255, + -0.4667704999446869, + -0.4471105635166168, + -0.4720355272293091, + -0.4813663065433502, + -0.4543454945087433, + 0.6744289994239807, + -0.6671568751335144, + -0.6563541293144226, + 0.6784175038337708, + -0.49866876006126404, + -0.4714641571044922, + -0.4256979525089264, + -0.4345378577709198, + -0.6518010497093201, + -0.6243526339530945, + -0.6384486556053162, + 0.6650121808052063, + -0.4260478913784027, + 0.6569141745567322, + -0.4757416546344757, + -0.4745338559150696, + -0.4581516683101654, + -0.1000370979309082, + -0.1079925000667572, + -0.10348943620920181, + -0.1336648315191269, + -0.12344858050346375, + 0.10482281446456909, + 0.11499197781085968, + 0.12470272183418274, + 0.7128428816795349, + 0.741891086101532, + 0.771094024181366, + -0.5736103653907776, + -0.5437494516372681, + -0.5187491178512573, + -0.5689303874969482, + 0.14274904131889343, + 0.1340513825416565, + 0.07106128334999084, + 0.05805574357509613, + 0.03515798598527908, + 0.05698339268565178, + 0.05865577608346939, + 0.05045197904109955, + 0.01715756207704544, + 0.011776759289205074, + 0.6778671145439148, + -0.3608797490596771, + 0.027359483763575554, + -0.4888446629047394, + -0.4969179630279541, + -0.43303656578063965, + -0.4389040172100067, + -0.4293660819530487, + -0.27528247237205505, + -0.28595155477523804, + -0.29757365584373474, + 0.6804670691490173, + 0.7295279502868652, + 0.7681652903556824, + 0.6971662640571594, + 0.7195072174072266, + 0.6918129324913025, + 0.6616621017456055, + 0.6413599252700806, + 0.6019766330718994, + 0.5931223630905151, + 0.5989241600036621, + 0.6204335689544678, + 0.6469472050666809, + 0.7099109292030334, + -0.13219060003757477, + -0.09524805098772049, + -0.04300173372030258, + 0.025710640475153923, + -0.7628480792045593, + -0.7277796864509583, + -0.6861624717712402, + 0.04946879670023918, + -0.1659354716539383, + -0.1279008686542511, + -0.8763958811759949, + -0.8913359642028809, + -0.8640510439872742, + -0.15666143596172333, + -0.14609655737876892, + -0.1391744762659073, + 0.6861398220062256, + -0.1205224096775055, + -0.19035843014717102, + -0.19763700664043427, + -0.20357657968997955, + -0.07211197912693024, + -0.4387323260307312, + -0.4430703818798065, + 0.009529979899525642, + -0.47276434302330017, + -0.500480055809021, + -0.47359463572502136, + -0.453178733587265, + 0.6929395794868469, + -0.6275737881660461, + -0.6524956822395325, + -0.6647080183029175, + 0.2663813829421997, + 0.17498667538166046, + 0.13483497500419617, + -0.41996681690216064, + -0.42787325382232666, + -0.4544771611690521, + 0.1383492648601532, + 0.12074737995862961, + -0.45206767320632935, + -0.41514942049980164, + 0.17116056382656097, + -0.45681264996528625, + -0.6870133280754089, + -0.6555758118629456, + 0.14166848361492157, + 0.2271684855222702, + -0.4065283536911011, + -0.4498398005962372, + -0.44385194778442383 + ] + } + ], + "layout": { + "annotations": [ + { + "showarrow": false, + "text": "Python code: https://plotly.com/ipython-notebooks/network-graphs/", + "x": 0.005, + "xref": "paper", + "y": -0.002, + "yref": "paper" + } + ], + "hovermode": "closest", + "margin": { + "b": 20, + "l": 5, + "r": 5, + "t": 40 + }, + "showlegend": false, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "font": { + "size": 16 + }, + "text": "
Network graph made with Python" + }, + "xaxis": { + "showgrid": false, + "showticklabels": false, + "zeroline": false + }, + "yaxis": { + "showgrid": false, + "showticklabels": false, + "zeroline": false + } + } + } + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "fig = go.Figure(data=[edge_trace, edge_weights_trace, node_trace],\n", + " layout=go.Layout(\n", + " title='
Network graph made with Python',\n", + " titlefont_size=16,\n", + " showlegend=False,\n", + " hovermode='closest',\n", + " margin=dict(b=20,l=5,r=5,t=40),\n", + " annotations=[ dict(\n", + " text=\"Python code: https://plotly.com/ipython-notebooks/network-graphs/\",\n", + " showarrow=False,\n", + " xref=\"paper\", yref=\"paper\",\n", + " x=0.005, y=-0.002 ) ],\n", + " xaxis=dict(showgrid=False, zeroline=False, showticklabels=False),\n", + " yaxis=dict(showgrid=False, zeroline=False, showticklabels=False))\n", + " )\n", + "fig.show()" + ] + }, + { + "cell_type": "markdown", + "id": "1d9f4204", + "metadata": {}, + "source": [ + "## 3D\n" + ] + }, + { + "cell_type": "code", + "execution_count": 334, + "id": "320884a9", + "metadata": {}, + "outputs": [], + "source": [ + "# 3d spring layout\n", + "pos = nx.spring_layout(graph, dim=3, seed=779)" + ] + }, + { + "cell_type": "code", + "execution_count": 335, + "id": "1051de4d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{'p_545': array([-0.52865785, 0.70612979, 0.6296227 ]),\n", + " 'c_53': array([-0.51389843, 0.68677455, 0.61003244]),\n", + " 'p_758': array([ 0.58599842, -0.62014931, -0.66131985]),\n", + " 'c_77': array([ 0.56882387, -0.59958994, -0.6392405 ]),\n", + " 'p_1313': array([-0.09307336, -0.74566901, 0.67356527]),\n", + " 'c_253': array([-0.09626086, -0.77264792, 0.69813389]),\n", + " 'p_1706': array([-0.34625828, -0.69201016, -0.48871624]),\n", + " 'c_301': array([-0.34565395, -0.68628573, -0.50237125]),\n", + " 'p_1891': array([ 0.49849027, -0.34007755, 0.76382172]),\n", + " 'c_388': array([ 0.49845907, -0.35106742, 0.75109881]),\n", + " 'p_1892': array([ 0.49388796, -0.35627612, 0.73475409]),\n", + " 'p_1899': array([-0.24533139, 0.73715752, 0.48237184]),\n", + " 'c_392': array([-0.24846753, 0.72787213, 0.47096938]),\n", + " 'p_2332': array([-0.52416015, -0.0498106 , -0.78934848]),\n", + " 'c_523': array([-0.50383592, -0.0476907 , -0.75709116]),\n", + " 'p_2331': array([-0.49307504, -0.04510679, -0.74496758]),\n", + " 'p_2457': array([0.63604963, 0.3314077 , 0.25800076]),\n", + " 'c_574': array([0.64693344, 0.32902697, 0.27133626]),\n", + " 'p_2458': array([0.6595121 , 0.32842308, 0.284127 ]),\n", + " 'p_2499': array([ 0.64766914, -0.44035199, 0.57345718]),\n", + " 'c_598': array([ 0.62172997, -0.42493194, 0.55017334]),\n", + " 'p_2500': array([ 0.59070104, -0.40646765, 0.5222891 ]),\n", + " 'p_3171': array([0.41924125, 0.67501032, 0.21235679]),\n", + " 'c_770': array([0.42738882, 0.68806267, 0.21832642]),\n", + " 'p_3382': array([ 0.36540538, -0.41076228, -0.46261019]),\n", + " 'c_827': array([ 0.37203157, -0.43278009, -0.48036632]),\n", + " 'p_3486': array([ 0.36201191, -0.4151023 , -0.45179155]),\n", + " 'p_3519': array([ 0.39256969, -0.4503901 , -0.50443232]),\n", + " 'p_3530': array([ 0.37827751, -0.46204758, -0.50071859]),\n", + " 'p_3531': array([ 0.3910265 , -0.45796826, -0.4920859 ]),\n", + " 'p_3541': array([ 0.37700853, -0.45016253, -0.51269555]),\n", + " 'p_3591': array([ 0.38565037, -0.43649051, -0.5066725 ]),\n", + " 'c_895': array([ 0.37457326, -0.40305319, -0.44791552]),\n", + " 'c_992': array([ 0.35030353, -0.42301857, -0.46088332]),\n", + " 'p_4319': array([0.14011124, 0.87023526, 0.4971523 ]),\n", + " 'c_1132': array([0.14870717, 0.85861725, 0.50059944]),\n", + " 'p_4470': array([-0.8061493 , 0.04285314, -0.62335134]),\n", + " 'c_1201': array([-0.81872135, 0.03686973, -0.61828697]),\n", + " 'p_4905': array([0.54048222, 0.20393717, 0.87184381]),\n", + " 'c_1379': array([0.55321807, 0.21606064, 0.87638307]),\n", + " 'p_4906': array([0.54128498, 0.21441868, 0.85116142]),\n", + " 'p_4919': array([ 0.16012897, -0.63505167, 0.59359288]),\n", + " 'c_1390': array([ 0.15590429, -0.61882311, 0.57771313]),\n", + " 'p_5038': array([-0.54222649, -0.49057496, -0.8110531 ]),\n", + " 'c_1444': array([-0.52907234, -0.47896883, -0.79061192]),\n", + " 'p_5084': array([ 0.90874457, -0.06052365, 0.13196307]),\n", + " 'c_1466': array([ 0.93296629, -0.06255778, 0.13680236]),\n", + " 'p_5203': array([0.92791659, 0.11939678, 0.17994037]),\n", + " 'c_1552': array([0.95013726, 0.11567724, 0.18672489]),\n", + " 'p_5204': array([0.94187593, 0.09986206, 0.18754376]),\n", + " 'p_6056': array([-0.78465527, -0.26721543, -0.14198186]),\n", + " 'c_1913': array([-0.82072455, -0.27805275, -0.15049328]),\n", + " 'c_2014': array([ 0.37396282, -0.4466725 , -0.49402484]),\n", + " 'p_6596': array([-0.25944346, 0.31978756, 0.11472795]),\n", + " 'c_2081': array([-0.21256673, 0.30969965, 0.07368668]),\n", + " 'p_6597': array([-0.18740514, 0.25123832, 0.09580898]),\n", + " 'p_6598': array([-0.24076673, 0.36386684, 0.03397707]),\n", + " 'p_6599': array([-0.27545804, 0.30534595, 0.11015004]),\n", + " 'p_6600': array([-0.17438862, 0.33231711, 0.12894692]),\n", + " 'p_6601': array([-0.19340421, 0.3472175 , 0.01530343]),\n", + " 'p_6602': array([-0.27660975, 0.31393969, 0.04167894]),\n", + " 'p_6603': array([-0.2140061 , 0.35641307, 0.01770071]),\n", + " 'p_6604': array([-0.18008985, 0.376351 , 0.06962045]),\n", + " 'p_6605': array([-0.24589044, 0.32673651, 0.01185178]),\n", + " 'p_6606': array([-0.19116783, 0.33371589, 0.01048421]),\n", + " 'p_6607': array([-0.17072454, 0.26418924, 0.10094923]),\n", + " 'p_6608': array([-0.14656264, 0.29274198, 0.07371766]),\n", + " 'p_6609': array([-0.27876431, 0.34555852, 0.07328573]),\n", + " 'p_6610': array([-0.27413112, 0.29316801, 0.04078629]),\n", + " 'p_6611': array([-0.20346452, 0.3679463 , 0.11577307]),\n", + " 'p_6612': array([-0.25607374, 0.30655405, 0.01526591]),\n", + " 'p_6613': array([-0.16822392, 0.35770193, 0.10484 ]),\n", + " 'p_6614': array([-0.17600273, 0.26210466, 0.04603274]),\n", + " 'p_6615': array([-0.22488014, 0.36758402, 0.11935626]),\n", + " 'p_6616': array([-0.18525253, 0.29348987, 0.13732824]),\n", + " 'p_6617': array([-0.16053477, 0.3280578 , 0.12045028]),\n", + " 'p_6618': array([-0.27036172, 0.35971931, 0.07775421]),\n", + " 'p_6619': array([-0.27364403, 0.33296561, 0.10873952]),\n", + " 'p_6620': array([-0.20344485, 0.3479999 , 0.13442767]),\n", + " 'p_6621': array([-0.17522448, 0.25565973, 0.08428697]),\n", + " 'p_6622': array([-0.21142484, 0.32984632, 0.00408459]),\n", + " 'p_6623': array([-0.21508643, 0.37656033, 0.1060437 ]),\n", + " 'p_6624': array([-0.24459901, 0.37611908, 0.06470235]),\n", + " 'p_6625': array([-0.16140172, 0.35858008, 0.08596218]),\n", + " 'p_6626': array([-0.28202775, 0.33031046, 0.05873233]),\n", + " 'p_6627': array([-0.27596283, 0.34404871, 0.09475277]),\n", + " 'p_6628': array([-0.26734173, 0.29844734, 0.12003797]),\n", + " 'p_6629': array([-0.27231187, 0.33292696, 0.04761236]),\n", + " 'p_6630': array([-0.26948193, 0.31969154, 0.1228338 ]),\n", + " 'p_6631': array([-0.21326083, 0.30915731, 0.0009856 ]),\n", + " 'p_6632': array([-0.15115063, 0.28529418, 0.0884072 ]),\n", + " 'p_6633': array([-0.27849099, 0.29255319, 0.09906359]),\n", + " 'p_6634': array([-0.16262244, 0.27000445, 0.05571128]),\n", + " 'p_6635': array([-0.24630237, 0.24873015, 0.07111482]),\n", + " 'p_6636': array([-0.16222297, 0.31523064, 0.10759679]),\n", + " 'p_6637': array([-0.20759088, 0.29169071, 0.00562681]),\n", + " 'p_6638': array([-0.1903013 , 0.33807197, 0.13486898]),\n", + " 'p_6639': array([-0.284738 , 0.30232537, 0.08387708]),\n", + " 'p_6640': array([-0.18720955, 0.35475579, 0.02716937]),\n", + " 'p_6641': array([-0.21930087, 0.30786881, 0.14512028]),\n", + " 'p_6642': array([-0.22756444, 0.2463834 , 0.05257939]),\n", + " 'p_6643': array([-0.21922165, 0.38449302, 0.08776043]),\n", + " 'p_6644': array([-0.24657024, 0.25105211, 0.05736112]),\n", + " 'p_6645': array([-0.19782838, 0.2673094 , 0.02239045]),\n", + " 'p_6646': array([-0.21005248, 0.24326937, 0.08456186]),\n", + " 'p_6647': array([-0.23701894, 0.35405257, 0.0207898 ]),\n", + " 'p_6648': array([-0.1706285 , 0.29010141, 0.12668285]),\n", + " 'p_6649': array([-0.23306887, 0.31877223, 0.00483661]),\n", + " 'p_6650': array([-0.26684746, 0.27534026, 0.04322238]),\n", + " 'p_6651': array([-0.16800594, 0.32863975, 0.02233629]),\n", + " 'p_6652': array([-0.16424827, 0.30941233, 0.02415857]),\n", + " 'p_6653': array([-0.15324424, 0.28161931, 0.06442778]),\n", + " 'p_6654': array([-0.19339521, 0.35763723, 0.12406074]),\n", + " 'p_6655': array([-0.18025255, 0.34909213, 0.12311003]),\n", + " 'p_6656': array([-0.19298995, 0.24687368, 0.08052294]),\n", + " 'p_6657': array([-0.15413323, 0.33605388, 0.10593364]),\n", + " 'p_6658': array([-0.21098414, 0.24714997, 0.04794953]),\n", + " 'p_6659': array([-0.26054484, 0.33760849, 0.12279069]),\n", + " 'p_6660': array([-0.19866545, 0.37575561, 0.10211848]),\n", + " 'p_6661': array([-0.14801833, 0.31471321, 0.05014781]),\n", + " 'p_6662': array([-0.25026372, 0.3706944 , 0.09738484]),\n", + " 'p_6663': array([-0.20210171, 0.29534972, 0.1421582 ]),\n", + " 'p_6664': array([-0.19272105, 0.31053692, 0.1436512 ]),\n", + " 'p_6665': array([-0.19304989, 0.251048 , 0.04841945]),\n", + " 'p_6666': array([-0.21142754, 0.34343833, 0.01282551]),\n", + " 'p_6667': array([-0.23899864, 0.29122457, 0.00941733]),\n", + " 'p_6668': array([-0.18174578, 0.28643984, 0.01708138]),\n", + " 'p_6669': array([-0.18914948, 0.3688941 , 0.0379233 ]),\n", + " 'p_6670': array([-0.22004218, 0.34645239, 0.13558751]),\n", + " 'p_6671': array([-0.20432816, 0.24797755, 0.10050597]),\n", + " 'p_6672': array([-0.24459137, 0.34136274, 0.01681085]),\n", + " 'p_6673': array([-0.1580496 , 0.30176541, 0.11891644]),\n", + " 'p_6674': array([-0.2116648 , 0.38338694, 0.07266118]),\n", + " 'p_6675': array([-0.27521446, 0.28154793, 0.05562167]),\n", + " 'p_6676': array([-0.22141227, 0.28862765, 0.00657277]),\n", + " 'p_6677': array([-0.28182161, 0.32457173, 0.09625245]),\n", + " 'p_6678': array([-0.14914213, 0.33295918, 0.05982678]),\n", + " 'p_6679': array([-0.15286535, 0.28965068, 0.04980777]),\n", + " 'p_6680': array([-0.17516914, 0.27511919, 0.1203081 ]),\n", + " 'p_6681': array([-0.2199658 , 0.32890627, 0.14051965]),\n", + " 'p_6682': array([-0.25121027, 0.36171326, 0.11335626]),\n", + " 'p_6683': array([-0.24962258, 0.25486794, 0.09477126]),\n", + " 'p_6684': array([-0.19079928, 0.28038704, 0.13417508]),\n", + " 'p_6685': array([-0.22992899, 0.38166457, 0.06957541]),\n", + " 'p_6686': array([-0.15364476, 0.34736949, 0.06295969]),\n", + " 'p_6687': array([-0.15822385, 0.27076831, 0.07936537]),\n", + " 'p_6688': array([-0.14645782, 0.33278936, 0.0813003 ]),\n", + " 'p_6689': array([-0.26202491, 0.2634505 , 0.05295604]),\n", + " 'p_6690': array([-0.21848278, 0.31680444, 0.01282624]),\n", + " 'p_6691': array([-0.25562805, 0.35422567, 0.03305215]),\n", + " 'p_6692': array([-0.26183885, 0.35958549, 0.04766142]),\n", + " 'p_6693': array([-0.24979492, 0.25854567, 0.04366437]),\n", + " 'p_6694': array([-0.22109152, 0.27126265, 0.13277258]),\n", + " 'p_6695': array([-0.25318018, 0.3722119 , 0.08088237]),\n", + " 'p_6696': array([-0.18388806, 0.30803385, 0.00987163]),\n", + " 'p_6697': array([-0.22630166, 0.2446887 , 0.08777801]),\n", + " 'p_6698': array([-0.18443803, 0.36556655, 0.11163408]),\n", + " 'p_6699': array([-0.14610566, 0.30472264, 0.0625227 ]),\n", + " 'p_6700': array([-0.15342055, 0.29222319, 0.10508019]),\n", + " 'p_6701': array([-0.17796946, 0.32092479, 0.01339682]),\n", + " 'p_6702': array([-0.16820668, 0.26189038, 0.07031438]),\n", + " 'p_6703': array([-0.16716744, 0.3591041 , 0.05142411]),\n", + " 'p_6704': array([-0.20553146, 0.31432536, 0.13973041]),\n", + " 'p_6705': array([-0.22807138, 0.33837497, 0.00967259]),\n", + " 'p_6706': array([-0.15403293, 0.30217269, 0.03990957]),\n", + " 'p_6707': array([-0.15772784, 0.34483966, 0.04722474]),\n", + " 'p_6708': array([-0.26532912, 0.26301503, 0.06661776]),\n", + " 'p_6709': array([-0.25220758, 0.2615132 , 0.10843564]),\n", + " 'p_6710': array([-0.23277462, 0.30368939, 0.00571538]),\n", + " 'p_6711': array([-0.21292341, 0.24274607, 0.06658497]),\n", + " 'p_6712': array([-0.21104336, 0.37802094, 0.04253706]),\n", + " 'p_6713': array([-0.23917168, 0.37959385, 0.08434088]),\n", + " 'p_6714': array([-0.20645243, 0.25589183, 0.03279186]),\n", + " 'p_6715': array([-0.15995009, 0.27323255, 0.09650259]),\n", + " 'p_6716': array([-0.18940964, 0.26868418, 0.12442218]),\n", + " 'p_6717': array([-0.20434345, 0.33107239, 0.1428708 ]),\n", + " 'p_6718': array([-0.28493807, 0.3121464 , 0.07156589]),\n", + " 'p_6719': array([-0.28118387, 0.29815784, 0.05604959]),\n", + " 'p_6720': array([-0.20284753, 0.36423281, 0.02694533]),\n", + " 'p_6721': array([-0.17577317, 0.30457219, 0.13412265]),\n", + " 'p_6722': array([-0.26947975, 0.30618379, 0.02980498]),\n", + " 'p_6723': array([-0.19564168, 0.30035248, 0.00639461]),\n", + " 'p_6724': array([-0.23882711, 0.25604957, 0.10910786]),\n", + " 'p_6725': array([-0.28279811, 0.3148644 , 0.05586455]),\n", + " 'p_6726': array([-0.26824504, 0.32474983, 0.02880355]),\n", + " 'p_6727': array([-0.22437276, 0.37206072, 0.03639629]),\n", + " 'p_6728': array([-0.22220816, 0.2907638 , 0.14209445]),\n", + " 'p_6729': array([-0.21316364, 0.35999879, 0.12652983]),\n", + " 'p_6730': array([-0.23320769, 0.37641442, 0.1040092 ]),\n", + " 'p_6731': array([-0.14624858, 0.30160186, 0.09238815]),\n", + " 'p_6732': array([-0.2613242 , 0.28766671, 0.0311126 ]),\n", + " 'p_6733': array([-0.18256512, 0.26063114, 0.11004548]),\n", + " 'p_6734': array([-0.14820731, 0.31458461, 0.10679989]),\n", + " 'p_6735': array([-0.27599466, 0.2771014 , 0.07080134]),\n", + " 'p_6736': array([-0.26494658, 0.35935619, 0.09938262]),\n", + " 'p_6737': array([-0.14361449, 0.32126904, 0.06772049]),\n", + " 'p_6738': array([-0.20088901, 0.38099092, 0.08674593]),\n", + " 'p_6739': array([-0.26559383, 0.2694554 , 0.09899855]),\n", + " 'p_6740': array([-0.22394352, 0.36048448, 0.0274442 ]),\n", + " 'p_6741': array([-0.23667835, 0.26821449, 0.12793536]),\n", + " 'p_6742': array([-0.19827113, 0.25704679, 0.11479996]),\n", + " 'p_6743': array([-0.2354286 , 0.25302282, 0.04046944]),\n", + " 'p_6744': array([-0.17291966, 0.36540407, 0.07786207]),\n", + " 'p_6745': array([-0.27979493, 0.31086856, 0.09664683]),\n", + " 'p_6746': array([-0.24051462, 0.2649368 , 0.02771322]),\n", + " 'p_6747': array([-0.26413846, 0.34816337, 0.11057386]),\n", + " 'p_6748': array([-0.25537109, 0.27422404, 0.11643668]),\n", + " 'p_6749': array([-0.22242655, 0.25584996, 0.0325791 ]),\n", + " 'p_6750': array([-0.26945156, 0.2686224 , 0.08362515]),\n", + " 'p_6751': array([-0.28069767, 0.29262289, 0.07262645]),\n", + " 'p_6752': array([-0.2512753 , 0.29312161, 0.01863598]),\n", + " 'p_6753': array([-0.25566635, 0.29649073, 0.12796833]),\n", + " 'p_6754': array([-0.18850493, 0.2604464 , 0.03445111]),\n", + " 'p_6755': array([-0.26855835, 0.33954051, 0.03494854]),\n", + " 'p_6756': array([-0.16381541, 0.28964391, 0.03104271]),\n", + " 'p_6757': array([-0.24433601, 0.33821344, 0.13199735]),\n", + " 'p_6758': array([-0.15164238, 0.34682229, 0.07882478]),\n", + " 'p_6759': array([-0.16337712, 0.282507 , 0.11295635]),\n", + " 'p_6760': array([-0.1768645 , 0.34053588, 0.02323367]),\n", + " 'p_6761': array([-0.19668482, 0.24592008, 0.06437402]),\n", + " 'p_6762': array([-0.16550639, 0.31325698, 0.12771291]),\n", + " 'p_6763': array([-0.23590036, 0.28297368, 0.12372936]),\n", + " 'p_6764': array([-0.28575459, 0.32746875, 0.07667641]),\n", + " 'p_6765': array([-0.1536105 , 0.33003891, 0.04223389]),\n", + " 'p_6766': array([-0.23701356, 0.36226824, 0.11056907]),\n", + " 'p_6767': array([-0.25911447, 0.35499123, 0.08731154]),\n", + " 'p_6768': array([-0.22130682, 0.38034162, 0.0564708 ]),\n", + " 'p_6769': array([-0.25879875, 0.36911038, 0.0654878 ]),\n", + " 'p_6770': array([-0.24903356, 0.30874372, 0.13584653]),\n", + " 'p_6771': array([-0.22896312, 0.2432138 , 0.06902809]),\n", + " 'p_6772': array([-0.24863425, 0.27826735, 0.01993786]),\n", + " 'p_6773': array([-0.23110507, 0.27697039, 0.01401362]),\n", + " 'p_6774': array([-0.1784649 , 0.27402627, 0.02778268]),\n", + " 'p_6775': array([-0.18409555, 0.37635121, 0.08942269]),\n", + " 'p_6776': array([-0.23566926, 0.37578204, 0.05006196]),\n", + " 'p_6777': array([-0.22238044, 0.24786322, 0.10250795]),\n", + " 'p_6778': array([-0.23642151, 0.29484016, 0.13962008]),\n", + " 'p_6779': array([-0.25639862, 0.27079099, 0.03242107]),\n", + " 'p_6780': array([-0.20075351, 0.38222566, 0.05898248]),\n", + " 'p_6781': array([-0.21287823, 0.25627682, 0.11745483]),\n", + " 'p_6782': array([-0.20291162, 0.36912265, 0.04746421]),\n", + " 'p_6783': array([-0.17270774, 0.2982884 , 0.01888455]),\n", + " 'p_6784': array([-0.20925757, 0.28224385, 0.1391096 ]),\n", + " 'p_6785': array([-0.2234982 , 0.26575541, 0.02095327]),\n", + " 'p_6786': array([-0.14399597, 0.31188974, 0.08086421]),\n", + " 'p_6787': array([-0.17470844, 0.35848984, 0.03748472]),\n", + " 'p_6788': array([-0.22709666, 0.25718066, 0.11812679]),\n", + " 'p_6789': array([-0.25495899, 0.31876257, 0.02102008]),\n", + " 'p_6790': array([-0.16665082, 0.34481806, 0.11550245]),\n", + " 'p_6791': array([-0.16506022, 0.34414282, 0.03315466]),\n", + " 'p_6792': array([-0.21117565, 0.27360061, 0.01460698]),\n", + " 'p_6793': array([-0.19437303, 0.37464333, 0.07026687]),\n", + " 'p_6794': array([-0.25853869, 0.25730523, 0.08045192]),\n", + " 'p_6795': array([-0.14632338, 0.32464147, 0.09406817]),\n", + " 'p_6796': array([-0.26398119, 0.3540746 , 0.0624192 ]),\n", + " 'p_6797': array([-0.2334694 , 0.33348656, 0.1403818 ]),\n", + " 'p_6798': array([-0.15738404, 0.3457644 , 0.09529455]),\n", + " 'p_6799': array([-0.27505863, 0.28284475, 0.0896975 ]),\n", + " 'p_6800': array([-0.22520655, 0.37152994, 0.08939074]),\n", + " 'p_6801': array([-0.17999187, 0.25298241, 0.06293913]),\n", + " 'p_6802': array([-0.23255281, 0.35407126, 0.12924768]),\n", + " 'p_6803': array([-0.234084 , 0.31480697, 0.1419642 ]),\n", + " 'p_6804': array([-0.20566809, 0.26821858, 0.13000217]),\n", + " 'p_6805': array([-0.25440946, 0.34049091, 0.02913653]),\n", + " 'p_6806': array([-0.24844387, 0.3674767 , 0.04759441]),\n", + " 'p_6807': array([-0.19726463, 0.31977773, 0.00484869]),\n", + " 'p_6808': array([-0.24074578, 0.24731699, 0.08578406]),\n", + " 'p_6809': array([-0.25171492, 0.32378882, 0.13395649]),\n", + " 'p_6810': array([-0.26722348, 0.28246248, 0.11112469]),\n", + " 'p_6811': array([-0.18133682, 0.3713643 , 0.05276528]),\n", + " 'p_6812': array([-0.15716134, 0.31904924, 0.03322734]),\n", + " 'p_6813': array([-0.19553027, 0.28144333, 0.01307872]),\n", + " 'p_6814': array([-0.24817856, 0.35054967, 0.12365275]),\n", + " 'p_6815': array([-0.1825074 , 0.32105026, 0.13699208]),\n", + " 'p_6816': array([-0.27368197, 0.33264467, 0.08304547]),\n", + " 'p_6817': array([-0.16514663, 0.2764903 , 0.04017766]),\n", + " 'p_6818': array([-0.18036549, 0.3642132 , 0.09642869]),\n", + " 'p_6819': array([-0.27486059, 0.34716433, 0.05440424]),\n", + " 'p_6820': array([-0.16373293, 0.36259681, 0.06619915]),\n", + " 'p_6821': array([-0.24911687, 0.2827597 , 0.13131408]),\n", + " 'p_7347': array([0.6040743 , 0.59636867, 0.33444905]),\n", + " 'c_2316': array([0.58338702, 0.57789254, 0.3226282 ]),\n", + " 'p_7348': array([0.55209333, 0.54825467, 0.30417085]),\n", + " 'p_7647': array([ 0.62634629, -0.07042228, 0.5656178 ]),\n", + " 'c_2444': array([ 0.64879423, -0.07243717, 0.58596313]),\n", + " 'p_7648': array([ 0.66825497, -0.07422744, 0.60354948]),\n", + " 'p_7679': array([-0.78383523, -0.45038977, 0.38668162]),\n", + " 'c_2470': array([-0.7645514 , -0.43889046, 0.37670794]),\n", + " 'p_7864': array([-0.54465491, -0.50988781, 0.39263445]),\n", + " 'c_2538': array([-0.56061292, -0.5265283 , 0.40597618]),\n", + " 'c_307': array([ 0.02291395, -0.87275326, -0.12406104]),\n", + " 'c_258': array([ 0.02042199, -0.83279258, -0.11445768]),\n", + " 'c_353': array([ 0.02405523, -0.80416828, -0.11300283]),\n", + " 'c_370': array([ 0.00672256, -0.8467949 , -0.10226701]),\n", + " 'c_371': array([-0.00161358, -0.8684954 , -0.09710594]),\n", + " 'c_435': array([-0.12621307, -0.60266972, -0.20846398]),\n", + " 'c_403': array([-0.11210855, -0.613639 , -0.20861201]),\n", + " 'c_455': array([-0.10548268, -0.58448607, -0.18790339]),\n", + " 'c_400': array([-0.76293284, -0.40814921, -0.20625442]),\n", + " 'c_482': array([-0.75507677, -0.42161652, -0.19943154]),\n", + " 'c_633': array([-0.73735297, -0.42155561, -0.19168483]),\n", + " 'c_572': array([ 0.40331337, -0.44696531, -0.05576648]),\n", + " 'c_498': array([ 0.38000745, -0.43299991, -0.05910889]),\n", + " 'c_484': array([ 0.35754016, -0.43251002, -0.07155555]),\n", + " 'c_494': array([-0.16028151, 1. , -0.18875183]),\n", + " 'c_536': array([-0.15378724, 0.98215902, -0.17897011]),\n", + " 'c_568': array([-0.14385733, 0.98738539, -0.16617548]),\n", + " 'c_493': array([-0.68708289, -0.01040453, -0.644804 ]),\n", + " 'c_539': array([-0.67747879, 0.00249135, -0.64963412]),\n", + " 'c_406': array([-0.49828121, -0.6458683 , -0.0729541 ]),\n", + " 'c_567': array([-0.51580733, -0.6687333 , -0.07482805]),\n", + " 'c_459': array([-0.53298652, -0.69105029, -0.07673191]),\n", + " 'c_582': array([-0.66116607, 0.00847293, -0.63989699]),\n", + " 'c_587': array([-0.14886096, -0.52515906, 0.06761856]),\n", + " 'c_588': array([-0.14804856, -0.51660454, 0.04613083]),\n", + " 'c_401': array([-0.14618605, -0.52635211, 0.01507252]),\n", + " 'c_487': array([ 0.35533425, -0.47021201, -0.10041829]),\n", + " 'c_610': array([ 0.3479794 , -0.44808528, -0.08850586]),\n", + " 'c_704': array([ 0.29364726, 0.76195502, -0.39996147]),\n", + " 'c_667': array([ 0.28500265, 0.73842168, -0.38765511]),\n", + " 'c_666': array([ 0.27500042, 0.71138531, -0.37347007]),\n", + " 'c_709': array([-0.05939676, -0.2462094 , 0.80273652]),\n", + " 'c_732': array([-0.07511268, -0.25071266, 0.79706603]),\n", + " 'c_765': array([-0.09126937, -0.256019 , 0.79415816]),\n", + " 'c_724': array([ 0.92270339, 0.04582581, -0.39001361]),\n", + " 'c_742': array([ 0.89635342, 0.04391094, -0.37994739]),\n", + " 'c_746': array([ 0.8770321 , 0.04268769, -0.37115705]),\n", + " 'c_841': array([ 0.66070509, -0.04855346, -0.51565683]),\n", + " 'c_752': array([ 0.67830205, -0.04494305, -0.5128395 ]),\n", + " 'c_2293': array([ 0.64553207, -0.03694511, -0.49210849]),\n", + " 'c_925': array([ 0.63158697, -0.53997809, 0.29530749]),\n", + " 'c_839': array([ 0.64119267, -0.52926856, 0.28691044]),\n", + " 'c_852': array([ 0.625848 , -0.51341081, 0.27626684]),\n", + " 'c_954': array([ 0.63482064, -0.368503 , -0.28846985]),\n", + " 'c_843': array([ 0.65524989, -0.37932742, -0.2744818 ]),\n", + " 'c_900': array([ 0.63992381, -0.36898643, -0.28416577]),\n", + " 'c_859': array([ 0.66316515, -0.38385716, -0.28825644]),\n", + " 'c_868': array([ 0.66856706, -0.02661244, -0.51914984]),\n", + " 'c_850': array([ 0.68579948, -0.01418043, -0.5382632 ]),\n", + " 'c_871': array([ 0.66526306, -0.37026599, -0.29537737]),\n", + " 'c_879': array([ 0.6490379 , -0.39396554, -0.29037234]),\n", + " 'c_908': array([ 0.65307277, -0.36268637, -0.30299589]),\n", + " 'c_948': array([ 0.63214231, -0.0598294 , -0.48168117]),\n", + " 'c_930': array([ 0.62229723, -0.04631395, -0.46311444]),\n", + " 'c_846': array([ 0.61632711, -0.05038002, -0.43951926]),\n", + " 'c_832': array([-0.42649305, 0.17324187, 0.7645393 ]),\n", + " 'c_939': array([-0.42617729, 0.18229468, 0.78325474]),\n", + " 'c_845': array([-0.41033927, 0.18971515, 0.77759117]),\n", + " 'c_867': array([-0.6638335 , -0.38822562, -0.36334133]),\n", + " 'c_949': array([-0.66018969, -0.39522374, -0.34962103]),\n", + " 'c_981': array([-0.69037682, -0.41345882, -0.36635306]),\n", + " 'c_985': array([ 0.71593779, -0.4038741 , -0.29004803]),\n", + " 'c_955': array([ 0.68325466, -0.38743138, -0.28425285]),\n", + " 'c_896': array([ 0.70949918, 0.55865651, -0.10962531]),\n", + " 'c_967': array([ 0.68557262, 0.54258603, -0.11230328]),\n", + " 'c_840': array([ 0.69576758, 0.5551551 , -0.12424065]),\n", + " 'c_971': array([ 0.65835279, -0.38614702, -0.30116025]),\n", + " 'c_906': array([0.33028203, 0.52352214, 0.76956469]),\n", + " 'c_978': array([0.32192534, 0.51067764, 0.76596272]),\n", + " 'c_811': array([0.30931509, 0.49378088, 0.73898876]),\n", + " 'c_983': array([ 0.61926132, -0.37031892, -0.29137638]),\n", + " 'c_984': array([ 0.6109727 , -0.35229874, -0.27541572]),\n", + " 'c_634': array([-0.100504 , -0.62918729, -0.10201363]),\n", + " 'c_991': array([-0.10994336, -0.60079038, -0.09711782]),\n", + " 'c_600': array([-0.12094717, -0.55985874, -0.09316364]),\n", + " 'c_996': array([ 0.64865065, -0.38253754, -0.30790186]),\n", + " 'c_1191': array([-0.73469591, -0.10317007, 0.48487997]),\n", + " 'c_1004': array([-0.77464211, -0.10960639, 0.51126593]),\n", + " 'c_1112': array([-0.80639547, -0.11470947, 0.5322724 ]),\n", + " 'c_1009': array([ 0.64056051, -0.06054507, -0.50150573]),\n", + " 'c_1220': array([ 0.41615227, 0.10254636, -0.25952718]),\n", + " 'c_1011': array([ 0.40527004, 0.07199538, -0.27132258]),\n", + " 'c_1048': array([ 0.41615227, 0.10254636, -0.25952718]),\n", + " 'c_1012': array([ 0.45541537, 0.10419768, -0.26438636]),\n", + " 'c_1013': array([ 0.42455915, 0.09058721, -0.29371938]),\n", + " 'c_1014': array([ 0.45107079, 0.1174008 , -0.27204761]),\n", + " 'c_1015': array([ 0.45135531, 0.09167305, -0.27111977]),\n", + " 'c_1016': array([ 0.41025308, 0.07042061, -0.25595978]),\n", + " 'c_1017': array([ 0.38918668, 0.08892459, -0.27053833]),\n", + " 'c_1018': array([ 0.44220591, 0.12314528, -0.24365382]),\n", + " 'c_1027': array([ 0.42339775, 0.12749529, -0.28662905]),\n", + " 'c_1030': array([ 0.44148645, 0.08039977, -0.27604708]),\n", + " 'c_1031': array([ 0.43878138, 0.10373963, -0.29147995]),\n", + " 'c_1045': array([ 0.40960649, 0.12929095, -0.23950081]),\n", + " 'c_1046': array([ 0.43701595, 0.07810882, -0.24523862]),\n", + " 'c_1047': array([ 0.44123906, 0.12590827, -0.27868339]),\n", + " 'c_1062': array([ 0.44411424, 0.0928682 , -0.2391337 ]),\n", + " 'c_1064': array([ 0.39584056, 0.12573873, -0.25308129]),\n", + " 'c_1065': array([ 0.43046784, 0.13635132, -0.259974 ]),\n", + " 'c_1066': array([ 0.42626309, 0.07719206, -0.28308979]),\n", + " 'c_1067': array([ 0.38862002, 0.11608595, -0.26351777]),\n", + " 'c_1079': array([ 0.42252901, 0.07103655, -0.24702649]),\n", + " 'c_1080': array([ 0.40657341, 0.12711984, -0.28324243]),\n", + " 'c_1081': array([ 0.39295545, 0.12261759, -0.27531332]),\n", + " 'c_1091': array([ 0.42684019, 0.13405871, -0.24954405]),\n", + " 'c_1092': array([ 0.42386553, 0.10581184, -0.29637605]),\n", + " 'c_1229': array([-0.58819085, -0.33703247, -0.53834784]),\n", + " 'c_1103': array([-0.59554845, -0.34687355, -0.5282644 ]),\n", + " 'c_1899': array([-0.61706805, -0.35896295, -0.54662138]),\n", + " 'c_1104': array([ 0.45182645, 0.11555022, -0.25456363]),\n", + " 'c_1105': array([ 0.38709825, 0.10232028, -0.26669195]),\n", + " 'c_1106': array([ 0.44950408, 0.10655596, -0.24332374]),\n", + " 'c_1122': array([ 0.45149857, 0.09095503, -0.25456706]),\n", + " 'c_1123': array([ 0.43284529, 0.10530475, -0.22888646]),\n", + " 'c_1124': array([ 0.44998774, 0.10631528, -0.28115219]),\n", + " 'c_1147': array([ 0.39734542, 0.07969217, -0.26099718]),\n", + " 'c_1148': array([ 0.41238657, 0.07853786, -0.23935138]),\n", + " 'c_1157': array([ 0.42823377, 0.13472828, -0.27527139]),\n", + " 'c_1159': array([ 0.40545017, 0.09308075, -0.23748749]),\n", + " 'c_1172': array([ 0.41035336, 0.08139326, -0.28708291]),\n", + " 'c_1173': array([ 0.43001479, 0.12219632, -0.23389091]),\n", + " 'c_1175': array([ 0.44466978, 0.12807691, -0.26166683]),\n", + " 'c_1176': array([ 0.39640012, 0.08754312, -0.28378052]),\n", + " 'c_1197': array([ 0.40464789, 0.1176035 , -0.23753859]),\n", + " 'c_1198': array([ 0.40400633, 0.13418205, -0.26688373]),\n", + " 'c_1200': array([ 0.42430153, 0.06954052, -0.26785949]),\n", + " 'c_1094': array([-0.30405268, -0.43729034, -0.63803315]),\n", + " 'c_1206': array([-0.31117699, -0.45350432, -0.65605408]),\n", + " 'c_1162': array([-0.30569649, -0.46649355, -0.6470148 ]),\n", + " 'c_1218': array([ 0.4063184 , 0.10116006, -0.29384899]),\n", + " 'c_1219': array([ 0.41673717, 0.09769817, -0.22665697]),\n", + " 'c_1231': array([ 0.41392112, 0.11232516, -0.22755706]),\n", + " 'c_1233': array([ 0.41411528, 0.11665813, -0.29368505]),\n", + " 'c_1238': array([ 0.39181405, 0.10622188, -0.28397197]),\n", + " 'c_1240': array([ 0.42729813, 0.08624743, -0.23125426]),\n", + " 'c_1248': array([ 0.43631175, 0.11768592, -0.28973588]),\n", + " 'c_1249': array([ 0.44099876, 0.07635928, -0.26091972]),\n", + " 'c_1250': array([ 0.41221508, 0.13667387, -0.25340047]),\n", + " 'c_1251': array([ 0.44174215, 0.0911453 , -0.2861895 ]),\n", + " 'c_2379': array([ 0.56493032, 0.58741164, -0.55254531]),\n", + " 'c_1270': array([ 0.54937518, 0.56940246, -0.530949 ]),\n", + " 'c_2327': array([ 0.5580219 , 0.56940186, -0.51008385]),\n", + " 'c_2944': array([-0.36168325, -0.23857887, 0.22422771]),\n", + " 'c_1293': array([-0.34693059, -0.25151664, 0.22331694]),\n", + " 'c_1235': array([-0.31766859, -0.23304914, 0.22085167]),\n", + " 'c_1264': array([-0.26896784, -0.26514548, 0.24388494]),\n", + " 'c_1383': array([-0.28685927, -0.24267639, 0.22788332]),\n", + " 'c_1386': array([-0.29390383, -0.24568604, 0.23827967]),\n", + " 'c_1355': array([ 0.4661206 , 0.80148095, -0.08366073]),\n", + " 'c_1420': array([ 0.46142796, 0.8054235 , -0.09718483]),\n", + " 'c_1430': array([-0.34859017, -0.23143969, 0.23189008]),\n", + " 'c_1496': array([-0.2933158 , -0.25330135, 0.22557992]),\n", + " 'c_1903': array([-0.6054461 , -0.57548326, 0.27159235]),\n", + " 'c_1512': array([-0.59138709, -0.55718929, 0.26230299]),\n", + " 'c_1869': array([-0.36904404, -0.15625177, 0.64247972]),\n", + " 'c_1537': array([-0.369266 , -0.1496429 , 0.61003703]),\n", + " 'c_1603': array([-0.3928723 , -0.15010124, 0.59002936]),\n", + " 'c_1981': array([ 0.04187484, -0.35389674, -0.6514529 ]),\n", + " 'c_1547': array([ 0.03580042, -0.37295839, -0.64998657]),\n", + " 'c_1679': array([ 0.03768763, -0.35369924, -0.64412457]),\n", + " 'c_1579': array([-0.59924847, -0.58587986, 0.28382933]),\n", + " 'c_1583': array([ 0.04173516, -0.35260686, -0.66851777]),\n", + " 'c_1744': array([-0.35731912, 0.14834931, -0.92505622]),\n", + " 'c_1597': array([-0.34491017, 0.14218791, -0.88844544]),\n", + " 'c_1743': array([-0.35669625, 0.14711668, -0.89983958]),\n", + " 'c_1604': array([-0.40653375, -0.16925023, 0.62114954]),\n", + " 'c_1811': array([-0.41982386, -0.15468951, 0.61754179]),\n", + " 'c_1683': array([ 0.59007913, 0.58557475, -0.48677826]),\n", + " 'c_1624': array([ 0.57314843, 0.57543498, -0.4938176 ]),\n", + " 'c_30': array([ 0.47121066, -0.37982681, 0.3294864 ]),\n", + " 'c_1668': array([ 0.49332154, -0.37061101, 0.33326459]),\n", + " 'c_2034': array([ 0.51881164, -0.37825453, 0.34781021]),\n", + " 'c_1731': array([ 0.05457793, -0.36490697, -0.65429419]),\n", + " 'c_1657': array([-0.37518576, -0.61464548, 0.6277805 ]),\n", + " 'c_1742': array([-0.38693008, -0.63303357, 0.64314854]),\n", + " 'c_1557': array([-0.39724946, -0.64082313, 0.63354915]),\n", + " 'c_2597': array([-0.11570803, -0.41189966, 0.701581 ]),\n", + " 'c_1754': array([-0.1191594 , -0.42653045, 0.72747749]),\n", + " 'c_1875': array([-0.12040184, -0.44731361, 0.73997158]),\n", + " 'c_1641': array([-0.12388202, -0.44721305, 0.76351321]),\n", + " 'c_92': array([-0.12227397, -0.42716661, 0.7519322 ]),\n", + " 'c_1952': array([-0.42432037, -0.15173742, 0.6682232 ]),\n", + " 'c_1778': array([-0.40634087, -0.1464541 , 0.63047522]),\n", + " 'c_1813': array([-0.63260692, -0.60312635, 0.28219587]),\n", + " 'c_1847': array([ 0.46229747, -0.40020055, 0.33729792]),\n", + " 'c_1784': array([ 0.47514343, -0.41930488, 0.35328981]),\n", + " 'c_1781': array([0.67233419, 0.24586049, 0.60050368]),\n", + " 'c_1873': array([0.70303565, 0.25609764, 0.62808466]),\n", + " 'c_1844': array([0.72912812, 0.26479653, 0.65150338]),\n", + " 'c_1919': array([ 0.04274662, -0.33693242, -0.64834487]),\n", + " 'c_1975': array([ 0.74680018, -0.64884585, -0.09332652]),\n", + " 'c_1928': array([ 0.76258993, -0.65710396, -0.08817565]),\n", + " 'c_1691': array([ 0.77623403, -0.66025764, -0.07886124]),\n", + " 'c_1779': array([-0.44765833, -0.18151835, 0.65891427]),\n", + " 'c_1930': array([-0.4242948 , -0.16844583, 0.62560052]),\n", + " 'c_1934': array([-0.4958494 , -0.72300524, -0.25594357]),\n", + " 'c_1935': array([-0.49516809, -0.72098738, -0.23992124]),\n", + " 'c_1572': array([-0.48425081, -0.70468587, -0.22997358]),\n", + " 'c_1695': array([-0.37643129, -0.14126766, 0.51834178]),\n", + " 'c_1976': array([-0.38340661, -0.14506845, 0.55016643]),\n", + " 'c_2021': array([-0.27531934, -0.29602322, 0.25126049]),\n", + " 'c_2136': array([-0.26621854, -0.29938304, 0.26815709]),\n", + " 'c_2020': array([ 0.22572519, -0.38417846, 0.26562238]),\n", + " 'c_2022': array([ 0.2309071 , -0.38316014, 0.28278413]),\n", + " 'c_2041': array([ 0.22771151, -0.35378423, 0.27302089]),\n", + " 'c_2082': array([ 0.25605536, -0.36798805, 0.29398611]),\n", + " 'c_2193': array([ 0.24013524, -0.36441761, 0.30677718]),\n", + " 'c_2042': array([ 0.21602911, -0.37763554, 0.28189313]),\n", + " 'c_2044': array([-0.28175354, -0.29071394, 0.2640357 ]),\n", + " 'c_2060': array([ 0.35142019, -0.46068731, -0.49292269]),\n", + " 'c_2080': array([ 0.34258503, -0.44771999, -0.47675079]),\n", + " 'c_2084': array([-0.2626082 , -0.29851076, 0.25367585]),\n", + " 'c_2003': array([ 0.25615653, -0.40603724, 0.33710366]),\n", + " 'c_2093': array([ 0.24192113, -0.38271704, 0.30952883]),\n", + " 'c_3065': array([ 0.24768543, -0.31565517, 0.29026687]),\n", + " 'c_2094': array([ 0.24237594, -0.32865214, 0.27488598]),\n", + " 'c_1492': array([ 0.24568184, -0.85818011, 0.05785352]),\n", + " 'c_2095': array([ 0.25308576, -0.88523465, 0.05967483]),\n", + " 'c_41': array([ 0.26269427, -0.92418742, 0.06230067]),\n", + " 'c_2096': array([-0.25952071, -0.28686827, 0.26936585]),\n", + " 'c_2126': array([ 0.23137408, -0.32755953, 0.28465351]),\n", + " 'c_2144': array([-0.2726396 , -0.28253207, 0.27291489]),\n", + " 'c_2159': array([ 0.21429856, -0.37386099, 0.2652593 ]),\n", + " 'c_2171': array([ 0.24313122, -0.37878779, 0.27230975]),\n", + " 'c_2195': array([ 0.23870079, -0.37405583, 0.25888523]),\n", + " 'c_2254': array([-0.18912463, -0.05603654, -0.80254549]),\n", + " 'c_2222': array([-0.19689704, -0.05823056, -0.84552628]),\n", + " 'c_2269': array([-0.21078306, -0.06107292, -0.88180983]),\n", + " 'c_2256': array([-0.18377888, -0.05789541, -0.89547032]),\n", + " 'c_2255': array([-0.19039597, -0.05815464, -0.87421429]),\n", + " 'c_2382': array([0.60276574, 0.50112081, 0.29187855]),\n", + " 'c_2265': array([0.57572937, 0.4824504 , 0.28308663]),\n", + " 'c_2405': array([0.55706382, 0.46685439, 0.29232386]),\n", + " 'c_2100': array([ 0.30541024, -0.07570459, 0.89119756]),\n", + " 'c_2266': array([ 0.29582003, -0.07386259, 0.86343282]),\n", + " 'c_2407': array([ 0.2874127 , -0.07211428, 0.83887303]),\n", + " 'c_2402': array([ 0.11146453, 0.49852902, -0.71387815]),\n", + " 'c_2309': array([ 0.11600349, 0.51246703, -0.70319289]),\n", + " 'c_444': array([ 0.12003969, 0.54104912, -0.74724948]),\n", + " 'c_2179': array([ 0.1219553 , 0.52955663, -0.70261002]),\n", + " 'c_2264': array([0.55458152, 0.4572185 , 0.33480224]),\n", + " 'c_2312': array([0.54973495, 0.45738789, 0.31327182]),\n", + " 'c_2340': array([ 0.38866675, 0.55127358, -0.5645225 ]),\n", + " 'c_2342': array([ 0.38732836, 0.5334264 , -0.57613957]),\n", + " 'c_2454': array([ 0.38799527, 0.51493764, -0.59433442]),\n", + " 'c_1954': array([ 0.16825715, -0.4735733 , 0.74573123]),\n", + " 'c_2376': array([ 0.16140182, -0.45869648, 0.71217519]),\n", + " 'c_1715': array([ 0.16646278, -0.47336262, 0.72840214]),\n", + " 'c_2400': array([ 0.39849088, 0.50407094, -0.61004055]),\n", + " 'c_2363': array([ 0.38483542, 0.49048936, -0.60937369]),\n", + " 'c_2411': array([-0.34894136, -0.24226727, 0.21367981]),\n", + " 'c_2413': array([ 0.66692358, -0.04002366, -0.52141309]),\n", + " 'c_2453': array([ 0.38664809, 0.51076478, -0.61728811]),\n", + " 'c_2230': array([ 0.1266568 , 0.58634269, -0.81679034]),\n", + " 'c_2462': array([ 0.12366132, 0.56586522, -0.78516358]),\n", + " 'c_3112': array([ 0.32061723, -0.63070893, 0.06719189]),\n", + " 'c_2467': array([ 0.3440105 , -0.63750458, 0.05594406]),\n", + " 'c_3103': array([ 0.3187063 , -0.63841653, 0.05875045]),\n", + " 'c_2589': array([-0.8993727 , -0.37990341, 0.02792316]),\n", + " 'c_2476': array([-0.88738519, -0.37401798, 0.01956788]),\n", + " 'c_2552': array([-0.85404795, -0.36002949, 0.01949937]),\n", + " 'c_2639': array([ 0.26740628, -0.12991069, -0.11671764]),\n", + " 'c_2520': array([ 0.28929213, -0.12967156, -0.09137147]),\n", + " 'c_2568': array([ 0.31304926, -0.13940765, -0.07826415]),\n", + " 'c_2569': array([ 0.25840583, -0.15111791, -0.12791851]),\n", + " 'c_2543': array([ 0.25972271, -0.16115561, -0.14570512]),\n", + " 'c_2493': array([ 0.25056681, -0.14509577, -0.13368396]),\n", + " 'c_2595': array([ 0.28854409, -0.12609044, -0.1344268 ]),\n", + " 'c_2670': array([ 0.30059516, -0.12100868, -0.15156868]),\n", + " 'c_2628': array([-0.7766006 , -0.34140354, 0.21680517]),\n", + " 'c_2627': array([-0.77160341, -0.33007812, 0.23481618]),\n", + " 'c_2570': array([-0.77730089, -0.32459861, 0.25304765]),\n", + " 'c_2661': array([-0.79900712, -0.35586604, 0.21258874]),\n", + " 'c_2544': array([-0.82960659, -0.37043265, 0.21768324]),\n", + " 'c_2689': array([ 0.24834868, -0.16597548, -0.13490333]),\n", + " 'c_468': array([-0.18083537, -0.67515141, -0.0043404 ]),\n", + " 'c_2699': array([-0.1686645 , -0.63883698, -0.00854423]),\n", + " 'c_636': array([-0.15289524, -0.5943256 , -0.01753058]),\n", + " 'c_2700': array([-0.13781285, -0.58117867, -0.05541719]),\n", + " 'c_2997': array([-0.06061932, -0.85518515, 0.33642262]),\n", + " 'c_2756': array([-0.0712881 , -0.84646416, 0.32548457]),\n", + " 'c_2781': array([-0.08495287, -0.84410852, 0.31556198]),\n", + " 'c_2764': array([ 0.16112986, -0.46141946, 0.7358011 ]),\n", + " 'c_415': array([-0.19628815, -0.55999851, 0.05081188]),\n", + " 'c_2818': array([-0.17468056, -0.5461998 , 0.03521726]),\n", + " 'c_2825': array([ 0.29434037, -0.80005366, 0.43883505]),\n", + " 'c_2826': array([ 0.28268456, -0.77030843, 0.42009997]),\n", + " 'c_2715': array([ 0.27014312, -0.77671432, 0.41318882]),\n", + " 'c_2708': array([ 0.69889736, -0.28696451, -0.61781758]),\n", + " 'c_2874': array([ 0.72067219, -0.29615438, -0.63890183]),\n", + " 'c_2767': array([ 0.74516439, -0.30666256, -0.66298908]),\n", + " 'c_2899': array([-0.34679648, -0.24420914, 0.23606825]),\n", + " 'c_2911': array([-0.14558223, -0.52842742, 0.04685431]),\n", + " 'c_2912': array([-0.11022681, -0.32550791, -0.86109078]),\n", + " 'c_2934': array([-0.10694059, -0.3155497 , -0.83375996]),\n", + " 'c_2998': array([-0.10159049, -0.30097017, -0.79267454]),\n", + " 'c_2984': array([-0.15178119, -0.56490433, 0.0033631 ]),\n", + " 'c_3009': array([ 0.33913007, -0.65736425, 0.06005098]),\n", + " 'c_3017': array([ 0.33406818, -0.63746059, 0.08082554]),\n", + " 'c_3022': array([-0.13293515, -0.5412553 , -0.0385284 ]),\n", + " 'c_3024': array([ 0.33204332, -0.611633 , 0.10080938]),\n", + " 'c_3102': array([ 0.35144666, -0.62330264, 0.12518819]),\n", + " 'c_3094': array([ 0.32725942, -0.70762986, 0.02030512]),\n", + " 'c_3025': array([ 0.3162998 , -0.6709674 , 0.02977189]),\n", + " 'c_3036': array([ 0.0263078 , -0.36076644, -0.66197652]),\n", + " 'c_3106': array([-0.45474181, -0.60038447, -0.56189156]),\n", + " 'c_3040': array([-0.43648261, -0.57675177, -0.53866345]),\n", + " 'c_3031': array([-0.41459683, -0.54829478, -0.51086241]),\n", + " 'c_3041': array([-0.11005419, -0.60001951, -0.21604766]),\n", + " 'c_589': array([-0.12634565, -0.56259239, -0.14558694]),\n", + " 'c_3044': array([-0.11663916, -0.56637073, -0.11994178]),\n", + " 'c_3047': array([ 0.32028127, -0.65074569, 0.08381265]),\n", + " 'c_3057': array([ 0.3238405 , -0.66031015, 0.05472491]),\n", + " 'c_3062': array([ 0.30806193, -0.65746117, 0.05996823]),\n", + " 'c_3073': array([-0.1251898 , -0.55967897, -0.11878241]),\n", + " 'c_3071': array([-0.12589218, -0.58072418, -0.11094311]),\n", + " 'c_3074': array([ 0.30440024, -0.64786929, 0.07464463]),\n", + " 'c_3075': array([ 0.34442446, -0.64466095, 0.06981082]),\n", + " 'c_3098': array([-0.10650125, -0.56258112, -0.14352167]),\n", + " 'c_3101': array([ 0.32026789, -0.63017029, 0.04365446]),\n", + " 'c_3070': array([-0.36857587, -0.48832875, -0.45229977]),\n", + " 'c_3107': array([-0.39113846, -0.51773769, -0.48105574]),\n", + " 'c_3126': array([-0.13557693, -0.5666917 , -0.12238469]),\n", + " 'c_3134': array([-0.13012899, -0.58376974, -0.18133831]),\n", + " 'c_3136': array([ 0.33378097, -0.64709574, 0.04555361]),\n", + " 'c_3137': array([ 0.32007974, -0.66246307, 0.07198102]),\n", + " 'c_3145': array([ 0.33479407, -0.65836281, 0.07511748])}" + ] + }, + "execution_count": 335, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pos" + ] + }, + { + "cell_type": "code", + "execution_count": 349, + "id": "98d70b8a", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[-0.77464211, -0.10960639, 0.51126593],\n", + " [ 0.64056051, -0.06054507, -0.50150573],\n", + " [ 0.40527004, 0.07199538, -0.27132258],\n", + " ...,\n", + " [ 0.66825497, -0.07422744, 0.60354948],\n", + " [-0.78383523, -0.45038977, 0.38668162],\n", + " [-0.54465491, -0.50988781, 0.39263445]])" + ] + }, + "execution_count": 349, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import numpy as np\n", + "# Extract node and edge positions from the layout\n", + "node_xyz = np.array([pos[v] for v in sorted(graph)])\n", + "edge_xyz = np.array([(pos[u], pos[v]) for u, v in graph.edges()])\n", + "node_xyz\n", + "# edge_xyz" + ] + }, + { + "cell_type": "code", + "execution_count": 355, + "id": "2136a53e", + "metadata": {}, + "outputs": [], + "source": [ + "import plotly.graph_objects as go\n", + "edge_x = []\n", + "edge_y = []\n", + "edge_z = []\n", + "\n", + "edge_weight_x = []\n", + "edge_weight_y = []\n", + "\n", + "for edge in graph.edges():\n", + " x0, y0, z0 = pos[edge[0]]\n", + " x1, y1, z1 = pos[edge[1]]\n", + " # x2, y2, z2 = pos[edge[2]]\n", + " edge_x.append(x0)\n", + " edge_x.append(x1)\n", + " # edge_x.append(x2)\n", + "\n", + " edge_y.append(y0)\n", + " edge_y.append(y1)\n", + " # edge_y.append(y2)\n", + "\n", + " edge_z.append(z0)\n", + " edge_z.append(z1)\n", + " # edge_z.append(z2)\n", + "\n", + " # edge_weight_x.append(x1 + x1 - x0) \n", + " # edge_weight_y.append(y1 + y1 - y0)\n", + " # edge_weight_x.append(x0 + x0 - x1) \n", + " # edge_weight_y.append(y0 + y0 - y1)\n", + " # edge_weight_x.append(x0 + ((x1 - x0) / 2))\n", + " # edge_weight_y.append(y0 + ((y1 - y0) / 2))\n", + "\n", + "\n", + "\n", + "\n", + "edge_trace=go.Scatter3d(x=edge_x,\n", + " y=edge_y,\n", + " z=edge_z,\n", + " mode='lines',\n", + " line=dict(color='rgb(125,125,125)', width=1),\n", + " hoverinfo='none'\n", + " )\n", + "\n", + "node_x = []\n", + "node_y = []\n", + "node_z = []\n", + "for node in graph.nodes():\n", + " x, y, z = pos[node]\n", + " node_x.append(x)\n", + " node_y.append(y)\n", + " node_z.append(z)\n", + "\n", + "node_trace=go.Scatter3d(x=node_x,\n", + " y=node_y,\n", + " z=node_z,\n", + " mode='markers',\n", + " name='actors',\n", + " marker=dict(symbol='circle',\n", + " size=6,\n", + " color=\"blue\",\n", + " colorscale='Viridis',\n", + " line=dict(color='rgb(50,50,50)', width=0.5)\n", + " ),\n", + " # text=labels,\n", + " hoverinfo='text'\n", + " )\n", + "\n", + "axis=dict(showbackground=False,\n", + " showline=False,\n", + " zeroline=False,\n", + " showgrid=False,\n", + " showticklabels=False,\n", + " title=''\n", + " )\n", + "\n", + "layout = go.Layout(\n", + " title=\"Network of coappearances of characters in Victor Hugo's novel
Les Miserables (3D visualization)\",\n", + " width=1000,\n", + " height=1000,\n", + " showlegend=False,\n", + " scene=dict(\n", + " xaxis=dict(axis),\n", + " yaxis=dict(axis),\n", + " zaxis=dict(axis),\n", + " ),\n", + " margin=dict(\n", + " t=100\n", + " ),\n", + " hovermode='closest',\n", + " annotations=[\n", + " dict(\n", + " showarrow=False,\n", + " text=\"Data source: [1] miserables.json\",\n", + " xref='paper',\n", + " yref='paper',\n", + " x=0,\n", + " y=0.1,\n", + " xanchor='left',\n", + " yanchor='bottom',\n", + " font=dict(\n", + " size=14\n", + " )\n", + " )\n", + " ], )" + ] + }, + { + "cell_type": "code", + "execution_count": 356, + "id": "fdd20f64", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "['1. Freiburger Solarfonds Beteiligungs-KG', 'Jürgen Wetzel', 'Aurelius KG', 'Peter Esser', 'Bayer Design Fritz Bayer GmbH & Co KG', 'Michael Georg Neubauer', 'Bayern Immobilien Höller/Lechner KG', 'Erwin Höller', 'Bayern-Osteuropa OHG Travel Consulting Marketing', 'Eugen Guwa', 'Anna Guwa', 'Bayern Treuhand Obermeier & Kilger KG Wirtschaftsprüfungsgesellschaft', 'Hugo Obermeier', 'Bayern-Park KG', 'Eva Leitl', 'Silke Holzner', 'BAYERN-RALLYE Karussellbetrieb OHG', 'Christine Fahrenschon', 'Maximilian Fahrenschon', 'Bayer Rettungstechnik oHG', 'Peter Bayer', 'Bernd Klein', 'Deutsche Wohn- und Gewerbebau KG', 'Ottmar Mühlberger', 'E. Merck KG', 'Frank Stangenberg-Haverkamp', 'Johannes Baillou', 'Belén Garijo Lopez', 'Kai Beckmann', 'Marcus Kuhnert', 'Matthias Heinzel', 'Peter Guenter', 'Emanuel-Merck-Vermögens-KG', 'E. Merck Beteiligungen KG', 'Frye Ströer Legehennen KG', 'Reinhard Frye', 'Fielmann Augenoptik AG & Co. oHG Harburg-City', 'Sirous Shahsiah', 'Henkel Familien KG', 'Anna Henkel', 'Thomas Henkel', 'Hanspeter Grassl KG', 'Sebastian Graßl', 'Henkel KG Generalagentur', 'Ronny Polack', 'Grundstücksgesellschaft Pfingstanger Salzgitter Bad KG', 'Günter Nicklas', 'K & S Citystore OHG', 'Gesine Tanja Föller-Klügl', 'Carsten Klügl', 'K.M.S. Doruk Computer Systeme OHG', 'Andrea Doruk', 'MERCK Kommanditgesellschaft auf Aktien', 'MetroPolis Grundstücks oHG', 'Donat Kühne', 'Andreas Stahl', 'Mina Ansari', 'Klaus Markus Dahlmanns', 'Gregor Fachinger', 'David Ferré', 'Ralf Fischer', 'Ekaterina Grishina', 'Gerald Hartung', 'Eduard Hinken', 'Vyacheslav Antoliyovych Ivchenko', 'Reinhard Janssen', 'Karin Lenz', 'Petra Mai-Hartung', 'Klaus-Jürgen Müller', 'Gudela Noack', 'Rico Noack', 'Peter Uwe Petersen', 'Zhiyun Ren', 'Denis Sapozhnikov', 'Michael Scheele', 'Jochen Scholl', 'Arnd Schröder', 'Michael Süßkind', 'Andreas Thot', 'Jianshen Zhou', 'Ursula Deibler', 'Joachim Hahn', 'Ralf Karwat', 'Martina Mahlke', 'Jörgen Pisarz', 'Frank Weisser', 'Gerhard Löhlein', 'Franz Rauch', 'Bogumila Szyja', 'Karin Timmerberg', 'Charlotte Weichselsdorfer', 'Rainer Weichselsdorfer', 'Bernhard Heitele', 'Zeynep Ayse Hicsasmaz-Heitele', 'Katharina von Falkenhayn', 'Franziska von Malaisé', 'Heinrich Brendel', 'Han Deng', 'Ulrike Köhler', 'Thomas Köhler', 'Jochem Lange', 'Annette Ludwig', 'Friederike Maurer', 'Willi Maurer', 'Andreas Ramshorn', 'Ingo Schuck', 'Johann-Friedrich von der Borch', 'Richard Weiler', 'Johannes Busch', 'Christine Ehard', 'Thomas Eismann', 'Stefanie Frensch', 'Holger Gleich', 'Sonja Kreibich', 'Henrik Thomsen', 'Kerstin Herzinger', 'Iris Kraus', 'Volker Kreibich', 'Barbara Kreibich', 'Olivier Krenz', 'Andrea Layer', 'Ingrid Schuff', 'Harald Schuff', 'Wolfgang Siegel', 'Helmut Teichmann', 'Dirk Broneske', 'Hanns Heinrich Frensch', 'Monika Frensch', 'Nicole Gerken-Broneske', 'Andriy Krantvays', 'Alfredo Perl', 'Olaf Rehahn', 'Susanne Reiner-Koppmann', 'Anna Spektor', 'Ilona Steiert', 'Kerstin Viot', 'Dirk Weichselsdorfer', 'Wolfgang Becker', 'Robert Dilla', 'Aldona Kihl', 'Martin Winkler', 'Gerda Winkler', 'Claudia Beppler-Spahl', 'Hauke Hermann', 'Nancy Stahl', 'Ingrid Maaß', 'Sebastian Schneider', 'Thilo Spahl', 'Runa Speer', 'Karin Blumenthal', 'Agnes Kolodziej', 'Jörg Langert', 'Claudia Langert', 'Sebastian Metzger', 'Carl-Wilhelm Oesterley', 'Burkhard Stangl', 'Peter Geibel', 'Stefanie Granitza', 'David Granitza-Schultz', 'Stephanie Reimert', 'Ellen Hautmann', 'Jens Kaffenberger', 'Dandy Kleybrink', 'Lia Kleybrink', 'Martin Langendorf', 'Mathilde Langendorf', 'Peter Maier-Stein', 'Runhao Min', 'Thomas Neumann', 'Gerd Pasemann', 'Jan Reimert', 'Helene Renger', 'Volker Stampe', 'Gudrun Stein', 'York von Falkenhayn', 'Oscar Zach', 'Doris Bischler', 'Markus Bischof', 'Matthias Kühnle', 'Karina Schimert-zu Hohenlohe', 'Cristiana da Silva', 'Jörg Löbig', 'Stefan Krause', 'Dirk Kudlicz', 'Rolf Lange', 'Andreas Veauthier', 'Sebastian Bukow', 'Arndt Bercher', 'Nicole Bercher-von Jordan', 'Robert Birker', 'Caprice Birker', 'Nicola Brase', 'Stephan DuCharme', 'Claudia Kaloff', 'Vladimir Kotiasvili', 'Otto Kückmann', 'Winrich Kyas', 'Sylke Kyas-Litt', 'Holger Matthies', 'Roland Mohr', 'Harald Rammler', 'Seyed Mohammad Seyed Makki', 'Brigitte Trattner', 'Christine Buchheit', 'Horand Knaup', 'Nevin Dogan', 'Levent Dogan', 'Elisabeth Dubbers', 'Stella Roidi-Schnorrenberg', 'Julius Schellmann', 'Ekkehard Roidis-Schnorrenberg', 'Michael Lefmann', 'Wolf Christian Boes', 'Rupert Dörfler', 'Carsten Eckert', 'Hans Günter Klein', 'Peter Molitor', 'Hasan Ali San', 'Zeynep San', 'Biljana Boes', 'Florian Will', 'Michael Narazny', 'Angelika Weidemann', 'Norbert Brömme', 'Thomas Eggers', 'Katja Simons', 'Nicholas Whitaker', 'Stephan Kühne', 'Hans-Jürgen Braun', 'Georg Denninger', 'Rebekka Denninger', 'Ulrich Müller Brito', 'Michael Rost', 'Stefan Sommer', 'Margarete Stephan', 'Frank Weber', 'Michael Wrede', 'Reinhard Gundelwein', 'Philipp Kühne', 'Sabrina Meyer', 'Helga Pilz', 'Dieter Pilz', 'Elisabeth Schaper', 'Thomas Schaper', 'Peter Buntrock', 'Angela Hoffmann', 'Alisa Krasylna', 'Kirsten Peters', 'Oda Hagemeier', 'Yuyi Huang', 'Erich Paproth', 'Annette Wolpert', 'Sebastian Aman', 'Andreas Roland Mollenkopf', 'Barbara Doll', 'Winfried Rademacher', 'Markus Trefz', 'Sabine Trefz', 'Jürgen Wenzler', 'Alexander Schwardmann', 'Miron Chestakov', 'Lev Chestakov', 'Raphaela Meis', 'Matthias Meis', 'Anja Markfort', 'Sibille Allgayer', 'Helmut Dietrich', 'Richard Kurka', 'Sarah Julia Lee', 'Lena Eleonore Staiger', 'Maja Bernadette Staiger', 'Benjamin Rohé', 'Jörn Averkamp', 'Thomas Grube', 'Yi Li', 'Natthinee Mohr', 'Sonia Susanna Mohrmann Oviedo', 'Florian Peter Pröscholdt', 'Manuel Scholten', 'Franziska Luise Dorothea Weller', 'Nordex-Glas oHG', 'Ali Hakan Sualp', 'Sevgi Karaarslan', '\"PETER G. OHG,\" - Men & Women', 'Leonie Greis', 'Daniela Greis', 'REWE-Markt Ströer OHG', 'Silvio Ströer', 'Sartorius KG', 'Meik Sartorius', 'Aurubis AG', 'Aurubis Stolberg GmbH & Co. KG', 'Aurubis Stolberg Verwaltungs-GmbH', 'Aurubis Stolberg Asset GmbH & Co. KG', 'Aurubis Stolberg Asset Verwaltungs-GmbH', 'BayWa r.e. Wind Verwaltungs GmbH', 'BayWa r.e. Windparkportfolio 1 GmbH & Co. KG', 'BayWa r.e. Wind 20+ GmbH', 'BayWa BGM Verwaltungs GmbH', 'BayWa Bau- & Gartenmärkte GmbH & Co. KG', 'BayWa Pensionsverwaltung GmbH', 'Covestro Intellectual Property Verwaltungs GmbH', 'Covestro Intellectual Property GmbH & Co. KG', 'Covestro Deutschland AG', 'Brenntag Vermögensmanagement GmbH', 'Brenntag European Services GmbH & Co. KG', 'Brenntag Beteiligungs GmbH', 'Brenntag Foreign Holding GmbH', 'CM Komplementär 03-018 GmbH & Co. KG', 'BMW INTEC Beteiligungs GmbH', 'BMW Beteiligungs GmbH & Co. KG', 'BMW Vermögensverwaltungs GmbH', 'CM Komplementär 03-019 GmbH & Co. KG', 'BayWa r.e. Asset Verwaltungs GmbH', 'BayWa r.e. Solardächer II GmbH & Co. KG', 'BayWa r.e. AG', 'Covestro Procurement Services Verwaltungs GmbH', 'Covestro Procurement Services GmbH & Co. KG', 'Deutsche Post Adress Geschäftsführungs GmbH', 'Deutsche Post Adress GmbH & Co. KG', 'Deutsche Post Adress Beteiligungsgesellschaft mbH', 'Deutsche Post Verwaltungs Objekt GmbH', 'Deutsche Post Pensions-Treuhand GmbH & Co. KG', 'Deutsche Post AG', 'Deutsche Wohnen Zweite Fondsbeteiligungs GmbH', 'Deutsche Wohnen Beteiligungsverwaltungs GmbH & Co. KG', 'Deutsche Wohnen Fondsbeteiligungs GmbH', 'EnBW Real Estate GmbH', 'Der neue Stöckach GmbH & Co KG', 'Neckarwerke Stuttgart GmbH', 'EnBW He Dreiht Management GmbH', 'EnBW He Dreiht GmbH & Co. KG', 'EnBW Offshore 4 GmbH', 'EnBW Solar Verwaltungsgesellschaft mbH', 'EnBW Solarpark Lindenau GmbH & Co. KG', 'EnBW Solar GmbH', 'EnBW Solarpark Gickelfeld GmbH & Co. KG', 'EnBW City GmbH & Co. KG', 'EnBW Immobilienbeteiligungen GmbH', 'EnBW Solarpark Gückelhirn GmbH & Co. KG', 'EnBW Solarpark Sonnewalde GmbH & Co. KG', 'EnBW Solarpark Kroppen GmbH & Co. KG', 'EnBW Energie Baden-Württemberg AG', 'EnBW Übertragungsnetz Immobiliengesellschaft mbH & Co. KG', 'EnBW Übertragungsnetz Immobilien Verwaltungsgesellschaft mbH', 'EnBW WindInvest Management GmbH', 'EnBW WindInvest GmbH & Co. KG', 'EnBW Windkraftprojekte GmbH', 'EnBW Baltic 1 Verwaltungsgesellschaft mbH', 'EnBW Baltic 1 GmbH & Co. KG', 'EnBW Offshore 1 GmbH', 'EnBW SunInvest Management GmbH', 'EnBW SunInvest GmbH & Co. KG', 'EnBW Baltic 2 Management GmbH', 'EnBW Baltic 2 GmbH & Co. KG', 'EnBW Offshore 2 GmbH', 'EnBW Solarpark Rot an der Rot GmbH & Co. KG', 'EnBW Albatros Management GmbH', 'EnBW Albatros GmbH & Co. KG', 'EnBW Offshore 3 GmbH', 'EnBW Solarpark Emmingen-Liptingen GmbH & Co. KG', 'EnBW Solarpark Groß Lübbenau GmbH & Co. KG', 'BayWa r.e. EMEA IPP Holding GmbH', 'Dörenhagen Windenergieanlagen GmbH & Co. KG', 'BayWa r.e. IPP Verwaltungs GmbH', 'EnBW Solarpark Göritz GmbH & Co. KG', 'E.ON Real Estate GmbH', 'E.ON Grund&Boden GmbH & Co. KG', 'E.ON Grund&Boden Beteiligungs GmbH', 'EVGA Grundstücks- und Gebäudemanagement GmbH & Co. KG', 'Fielmann Aktiengesellschaft', 'Fielmann AG & Co. Brackwede KG', 'Fielmann Finanzservice GmbH', 'Fielmann AG & Co Bramfeld KG', 'Fielmann AG & Co. Centrum OHG', 'Fielmann AG & Co. Elberfeld OHG', 'Fielmann AG & Co. Hiltrup OHG', 'Fielmann AG & Co. Ochsenzoll OHG', 'Fielmann AG & Co. Rahlstedt OHG', 'Fielmann AG & Co. Rethelstraße OHG', 'Fielmann AG & Co. City-Arkaden OHG', 'Fielmann AG & Co. Mülheim OHG', 'Fielmann AG & Co. Oberkassel OHG', 'Fielmann AG & Co. Eimsbüttel OHG', 'Fielmann AG & Co. Venloer Straße OHG', 'Fielmann AG & Co. Wandsbek OHG', 'Fielmann AG & Co. Essen-Steele OHG', 'Fielmann AG & Co. Jahnplatz OHG', 'Fielmann AG & Co. OHG', 'Fielmann AG & Co. oHG Kalk', 'Fielmann AG & Co. Ottensen OHG', 'Fielmann AG & Co. am Markt KG', 'Fielmann AG & Co. Paunsdorf-Center OHG', 'Fielmann AG & Co-Volksdorf OHG', 'Fielmann AG & Co. oHG City-Galerie', 'Fielmann AG & Co. Othmarschen OHG', 'EWE HOCHTIEF Ladepartner Verwaltungs-GmbH', 'EWE Go HOCHTIEF Ladepartner GmbH & Co. KG', 'HOCHTIEF Ladepartner GmbH', 'Fielmann AG & Co. Harburg Sand OHG', 'Fielmann AG & Co. im Centrum OHG', 'Fielmann AG & Co. KG', 'Fielmann AG & Co. Barbarossaplatz OHG', 'Fielmann AG & Co. Bonn-Bad Godesberg OHG', 'Fielmann AG & Co. im Alstertal-Einkaufszentrum OHG', 'Fielmann AG & Co. Bad Cannstatt OHG', 'Fielmann AG & Co. Buer OHG', 'Fielmann AG & Co. Barmen OHG', 'Fielmann AG & Co. im Centrum KG', 'Fielmann AG & Co. Derendorf OHG', 'Fielmann AG & Co. oHG Ludwigsplatz', 'Fielmann AG & Co. Pferdemarkt OHG', 'Fielmann AG & Co. Zentrum KG', 'Fielmann AG & Co. Ebertplatz KG', 'Fielmann AG & Co. Klosterstraße OHG', 'Fielmann AG & Co Rathaus OHG', 'Fraport AG Frankfurt Airport Services Worldwide', 'Fraport Immobilienservice- u.-entwicklungs GmbH &Co.KG', 'Fraport Real Estate Verwaltungs GmbH', 'Fielmann AG & Co. Bergedorf KG', 'Fielmann AG & Co. oHG Allee-Center', 'Fielmann AG & Co. Essen-Rüttenscheid OHG', 'Fielmann AG & Co Wattenscheid KG', 'Fielmann AG & Co. Hamborn OHG', 'Fielmann AG & Co. Westliche Kaiserstraße KG', 'Fielmann AG & Co. An der Rothenburg OHG', 'Fielmann AG & Co. Billstedt KG', 'Fielmann AG & Co. Chorweiler KG', 'Fielmann AG & Co. oHG Hindenburgstraße', 'Rheinmetall Immobilien Hafenmole GmbH', 'GVMS Grundstücksverwaltung Service GmbH & Co. KG', 'Rheinmetall Automotive AG', 'STW Grundstücksverwaltung GmbH', 'GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Mönchengladbach ZV II KG', 'GBS Gesellschaft für Unternehmensbeteiligungen mbH', 'GKF Vermögensverwaltungsgesellschaft mbH', 'GKF Vermögensverwaltungsgesellschaft mbH & Co. Gewerbegrundstücke KG', 'GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Saar-Grund KG', 'Henkel Management AG', 'Henkel AG & Co. KGaA', 'GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Hamm KG', 'GKF Vermögensverwaltungsgesellschaft mbH & Co. 25. Objekt - KG', 'INDUS Holding Aktiengesellschaft', 'GSR Ventiltechnik GmbH & Co. KG', 'HOCHTIEF PPP Bundeswehrpartner FWK München Verwaltungs GmbH', 'HOCHTIEF PPP Bundeswehrpartner FWK München GmbH & Co. KG', 'HOCHTIEF PPP 1. Holding GmbH & Co. KG', 'KSB Energie Verwaltungs GmbH', 'KSB Erneuerbare Energien Eins GmbH & Co. KG', 'KSB Energie GmbH', 'Karl Simon GmbH & Co. KG', 'KSB Erneuerbare Energien Drei GmbH & Co. KG', 'LANXESS Trademark Management GmbH', 'LANXESS Trademark GmbH & Co. KG', 'LANXESS Deutschland GmbH', 'HOCHTIEF PPP 1. Holding Verwaltungsgesellschaft mbH', 'HOCHTIEF PPP Solutions GmbH', 'KS Grundstücksverwaltung Beteiligungs-GmbH', 'KS Grundstücksverwaltung GmbH & Co. KG', 'AIB Verwaltungs GmbH', 'Immobilien-Vermietungsgesellschaft von Quistorp GmbH & Co. Objekt Altlandsberg KG', 'METRO Leasing GmbH', 'KSB Erneuerbare Energien Fünf GmbH & Co. KG', 'KUKA Real Estate Management GmbH', 'KUKA Real Estate GmbH & Co. KG', 'KUKA Aktiengesellschaft', 'Schaeffler Wälzlager Beteiligungsgesellschaft mbH', 'IHO Holding GmbH & Co. KG', 'INA-Holding Schaeffler GmbH & Co. KG', 'IHO Management GmbH', 'ATESTEO Management GmbH', 'HOCHTIEF PPP Schulpartner Köln Rodenkirchen Verwaltungs GmbH', 'HOCHTIEF PPP Schulpartner Köln Rodenkirchen GmbH & Co. KG', 'HORNGROUP Holding GmbH & Co. KG', 'Kaufhalle GmbH & Co. Objekt Lager Apfelstädt KG', 'Kaufhalle GmbH', 'HUGO BOSS Beteiligungsgesellschaft mbH', 'HUGO BOSS Vermögensverwaltung GmbH & Co. KG', 'HUGO BOSS AG', 'KSB Windfeld Parstein GmbH & Co. KG', 'LMH Immobilien Holding GmbH & Co.KG', 'LMH Immobilien GmbH & Co. KG', 'Linde Material Handling GmbH', 'HOCHTIEF PPP Verwaltungs GmbH', 'HOCHTIEF PPP Schulpartner Köln P 1 GmbH & Co. KG', 'Infineon Technologies AG', 'Infineon Technologies Bipolar GmbH & Co. KG', 'Infineon Technologies Bipolar Verwaltungs GmbH', 'HOCHTIEF PPP Schulpartner Frankfurt am Main Verwaltungs GmbH', 'HOCHTIEF PPP Schulpartner Frankfurt am Main GmbH & Co. KG', 'MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Porta-Westfalica KG', 'Metro Cash & Carry Grundstücksverwaltungsgesellschaft mbH', 'Mainova Erneuerbare Energien Verwaltungs GmbH', 'Mainova Windpark Niederhambach GmbH & Co. KG', 'Mainova Erneuerbare Energien GmbH & Co. KG', 'Mainova Erneuerbare Energien Management GmbH', 'Mainova Aktiengesellschaft', 'Mainova Windpark Siegbach GmbH & Co. KG', 'MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Schwelm KG', 'Merck Life Science KGaA', 'Merck Schuchardt OHG', 'MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Hamburg-Altona KG', 'Mainova Wind Onshore Verwaltungs GmbH', 'Mainova Gemeinschaftswindpark Hohenahr GmbH & Co. KG', 'Zweite Mainova Erneuerbare Energien Verwaltungs GmbH', 'Mainova PV_Park 1GmbH & Co. KG', 'GEHE Immobilien Verwaltungs-GmbH', 'MATIS Immobilien OHG', 'ABG Apotheken-Beratungsgesellschaft mbH', 'MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt München-Pasing KG', 'Mainova PV_Park 3 GmbH & Co. KG', 'MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Berlin-Friedrichshain KG', 'Mainova Windpark Kaisten GmbH & Co. KG', 'Mainova Windpark Kloppenheim GmbH & Co. KG', 'Mainova Windpark Remlingen GmbH & Co. KG', 'Nordex Beteiligungen GmbH', 'Nordex Energy SE & Co. KG', 'Nordex SE', 'Nordex Forum II Verwaltungs GmbH', 'Nordex Forum II GmbH & Co. KG', 'Minebea Intec Bovenden Verwaltungs-GmbH', 'Minebea Intec Bovenden GmbH & Co. KG', 'Minebea Intec GmbH', 'METRO Dienstleistungs-Holding GmbH', 'MIP METRO Group Intellectual Property GmbH & Co. KG', 'MIP METRO Group Intellectual Property Management GmbH', 'METRO PROPERTIES Management GmbH', 'METRO PROPERTIES GmbH & Co. KG', 'CECONOMY AG', 'METRO AG', 'Minebea Intec Aachen Verwaltungs-GmbH', 'Minebea Intec Aachen GmbH & Co. KG', 'Rheinmetall Aktiengesellschaft', 'Rheinmetall Immobilien Kassel GmbH & Co. KG', 'Rheinmetall Immobilien GmbH', 'HOCHTIEF Solutions Real Estate GmbH', 'Projektgesellschaft Konrad-Adenauer-Ufer Köln GmbH & Co. KG', 'HOCHTIEF Solutions Real Estate Beteiligungsverwaltungsgesellschaft mbH', 'Rheinmetall Immobilien VEGA GmbH & Co. KG', 'Rheinmetall Immobilien Hamburg Friedensallee GmbH', 'NIGRA Verwaltung GmbH & Co. Objekt Neunkirchen KG', 'NWS Grundstücksmanagement GmbH & Co. KG', 'Rheinmetall Immobilien Flensburg GmbH & Co. KG', 'MWFS Zwischenholding Management GmbH', 'MWFS Zwischenholding GmbH & Co. KG', 'Zalando SE', 'Portokali Property Development III SE & Co. KG', 'Zalando Operations GmbH', 'Salzgitter Aktiengesellschaft', 'Salzgitter Hydroforming GmbH & Co KG', 'Salzgitter Hydroforming Verwaltungs GmbH', 'Schaeffler Technologies AG & Co. KG', 'Schaeffler Aerospace Germany GmbH & Co. KG', 'Schaeffler Aerospace Germany Beteiligungs GmbH', 'Schaeffler AG', 'Schaeffler Industrial Remanufacturing Services AG & Co. KG', 'Schaeffler Verwaltungsholding Vier GmbH', 'Schaeffler ByWire Technologie GmbH & Co. KG', 'Schaeffler ByWire Management GmbH', 'Schaeffler Bühl Verwaltungs GmbH', 'Schaeffler Automotive Buehl GmbH & Co. KG', 'Schaeffler Bühl Beteiligungs GmbH', 'Schaeffler Automotive Aftermarket GmbH & Co. KG', 'Schaeffler KWK Verwaltungs GmbH', 'Schaeffler Sondermaschinenbau AG & Co. KG', 'BayWa r.e. Solar Projects Verwaltungs GmbH', 'SPV Solarpark 102. GmbH & Co. KG', 'BayWa r.e. Solar Projects GmbH', 'SPV Solarpark 103. GmbH & Co. KG', 'Volkswagen Immobilien Management GmbH', 'Volkswagen Immobilien BLUE GmbH & Co. KG', 'Volkswagen Immobilien Investment GmbH', 'Tivoli Garden GmbH & Co. KG', 'BayWa r.e. Power Solutions GmbH', 'Solarpark Lupus GmbH & Co. KG', 'United Internet AG', 'United Internet Investments Holding AG & Co. KG', 'United Internet Corporate Services GmbH', 'Südwest Presse + Hapag-Lloyd Reisebüro Verwaltungs GmbH', 'Südwest Presse + Hapag-Lloyd Reisebüro GmbH & Co. KG', 'TUI Deutschland GmbH', 'SIL Verwaltung GmbH & Co. Objekt Haidach KG', 'Umspannwerk Klein Bünsdorf GmbH & Co. KG', 'Volkswagen Automobile Hamburg GmbH', 'Volkswagen Original Teile Logistik GmbH & Co. KG', 'Volkswagen Original Teile Logistik Beteiligungs-GmbH', 'Solarpark Aquarius GmbH & Co. KG', 'Zalando Customer Care DACH SE & Co. KG', 'Zalando Logistics Mönchengladbach SE & Co. KG', 'Windpark Wilhelmshöhe GmbH & Co. KG', 'Zalando Lounge Content Solutions SE & Co. KG', 'Zalando Lounge Service GmbH', 'Zalando Outlets GmbH', 'Zalando Stores GmbH & Co. KG', 'Windfeld Hohenfelde Vier GmbH & Co. KG', 'Wacker Neuson PGM Verwaltungs GmbH', 'Wacker Neuson Produktion GmbH & Co. KG', 'Wacker Neuson SE', 'Windpark Hessenweiler GmbH & Co. KG', 'BayWa r.e. Wind GmbH', 'Windpark Wilhelmshöhe III GmbH & Co. KG', 'Zalando Lounge Logistics SE & Co. KG', 'Zalando Logistics Gießen SE & Co. KG', 'Zalando Logistics Süd SE & Co. KG', 'Windpark Wilhelmshöhe II GmbH & Co. KG', 'Wilhelmshöhe Infrastruktur GmbH & Co. KG', 'Zalando BTD 007 SE & Co. KG', 'Zalando BTD 010 SE & Co. KG', 'Windpark Lindchen GmbH & Co. KG', 'Zalando Customer Care Central Services SE & Co. KG', 'Wacker Neuson SGM Verwaltungs GmbH', 'Wacker Neuson Vertrieb Deutschland GmbH & Co. KG', 'Windpark Freimersheim GmbH & Co. KG', 'Windpark Pferdsfeld GmbH & Co. KG', 'Zalando BTD 009 SE & Co. KG', 'Zalando BTD 011 SE & Co. KG', 'Zalando Customer Care International SE & Co. KG']\n" + ] + } + ], + "source": [ + "#Set Color by using the nodes DataFrame with its Color Attribute. The sequence matters!\n", + "colors = list(nx.get_node_attributes(graph, \"color\").values())\n", + "\n", + "node_names = []\n", + "for key, value in nodes.items():\n", + " \n", + " if 'name' in value.keys():\n", + " node_names.append(value[\"name\"])\n", + " else:\n", + " node_names.append(value[\"firstname\"] + \" \" + value[\"lastname\"])\n", + " # if value[\"name\"] is not None:\n", + " # node_names.append(value[\"name\"])\n", + " # if value[\"fristname\"] is not None:\n", + " # node_names.append(value[\"firstname\"] + \" \" + value[\"lastname\"])\n", + "print(node_names)\n", + "\n", + "node_trace.marker.color = colors\n", + "node_trace.text = node_names\n", + "\n", + "# print(list(df[\"eigenvector\"]*100))\n", + "# node_trace.marker.size = list(df[\"eigenvector\"]*100)" + ] + }, + { + "cell_type": "code", + "execution_count": 357, + "id": "a4395d63", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "hoverinfo": "none", + "line": { + "color": "rgb(125,125,125)", + "width": 1 + }, + "mode": "lines", + "type": "scatter3d", + "x": [ + -0.528657853603363, + -0.5138984322547913, + 0.5859984159469604, + 0.5688238739967346, + -0.09307336062192917, + -0.09626086056232452, + -0.346258282661438, + -0.3456539511680603, + 0.49849027395248413, + 0.4984590709209442, + 0.4984590709209442, + 0.4938879609107971, + -0.24533139169216156, + -0.24846753478050232, + -0.5241601467132568, + -0.503835916519165, + -0.503835916519165, + -0.49307504296302795, + 0.6360496282577515, + 0.6469334363937378, + 0.6469334363937378, + 0.6595121026039124, + 0.6476691365242004, + 0.6217299699783325, + 0.6217299699783325, + 0.5907010436058044, + 0.4192412495613098, + 0.4273888170719147, + 0.3654053807258606, + 0.372031569480896, + 0.3654053807258606, + 0.3745732605457306, + 0.3654053807258606, + 0.3503035306930542, + 0.372031569480896, + 0.3620119094848633, + 0.372031569480896, + 0.3925696909427643, + 0.372031569480896, + 0.3782775104045868, + 0.372031569480896, + 0.39102649688720703, + 0.372031569480896, + 0.3770085275173187, + 0.372031569480896, + 0.3856503665447235, + 0.372031569480896, + 0.3503035306930542, + 0.372031569480896, + 0.3739628195762634, + 0.3620119094848633, + 0.3745732605457306, + 0.3620119094848633, + 0.3503035306930542, + 0.3925696909427643, + 0.3739628195762634, + 0.3782775104045868, + 0.3739628195762634, + 0.39102649688720703, + 0.3739628195762634, + 0.3770085275173187, + 0.3739628195762634, + 0.3856503665447235, + 0.3739628195762634, + 0.3503035306930542, + 0.342585027217865, + 0.14011123776435852, + 0.14870716631412506, + -0.8061493039131165, + -0.818721354007721, + 0.540482223033905, + 0.5532180666923523, + 0.5532180666923523, + 0.54128497838974, + 0.16012896597385406, + 0.15590429306030273, + -0.5422264933586121, + -0.5290723443031311, + 0.9087445735931396, + 0.9329662919044495, + 0.9279165863990784, + 0.9501372575759888, + 0.9501372575759888, + 0.9418759346008301, + -0.7846552729606628, + -0.8207245469093323, + 0.3739628195762634, + 0.35142019391059875, + -0.259443461894989, + -0.21256673336029053, + -0.21256673336029053, + -0.18740513920783997, + -0.21256673336029053, + -0.2407667338848114, + -0.21256673336029053, + -0.27545803785324097, + -0.21256673336029053, + -0.17438861727714539, + -0.21256673336029053, + -0.1934042125940323, + -0.21256673336029053, + -0.27660974860191345, + -0.21256673336029053, + -0.21400609612464905, + -0.21256673336029053, + -0.18008984625339508, + -0.21256673336029053, + -0.24589043855667114, + -0.21256673336029053, + -0.19116783142089844, + -0.21256673336029053, + -0.1707245409488678, + -0.21256673336029053, + -0.1465626358985901, + -0.21256673336029053, + -0.2787643074989319, + -0.21256673336029053, + -0.2741311192512512, + -0.21256673336029053, + -0.20346452295780182, + -0.21256673336029053, + -0.2560737431049347, + -0.21256673336029053, + -0.16822391748428345, + -0.21256673336029053, + -0.17600272595882416, + -0.21256673336029053, + -0.2248801440000534, + -0.21256673336029053, + -0.18525253236293793, + -0.21256673336029053, + -0.16053476929664612, + -0.21256673336029053, + -0.2703617215156555, + -0.21256673336029053, + -0.27364403009414673, + -0.21256673336029053, + -0.20344485342502594, + -0.21256673336029053, + -0.17522448301315308, + -0.21256673336029053, + -0.2114248424768448, + -0.21256673336029053, + -0.215086430311203, + -0.21256673336029053, + -0.24459901452064514, + -0.21256673336029053, + -0.16140171885490417, + -0.21256673336029053, + -0.2820277512073517, + -0.21256673336029053, + -0.27596282958984375, + -0.21256673336029053, + -0.2673417329788208, + -0.21256673336029053, + -0.27231186628341675, + -0.21256673336029053, + -0.26948192715644836, + -0.21256673336029053, + -0.21326082944869995, + -0.21256673336029053, + -0.1511506289243698, + -0.21256673336029053, + -0.27849099040031433, + -0.21256673336029053, + -0.16262243688106537, + -0.21256673336029053, + -0.24630236625671387, + -0.21256673336029053, + -0.1622229665517807, + -0.21256673336029053, + -0.20759087800979614, + -0.21256673336029053, + -0.1903012990951538, + -0.21256673336029053, + -0.2847380042076111, + -0.21256673336029053, + -0.18720954656600952, + -0.21256673336029053, + -0.21930086612701416, + -0.21256673336029053, + -0.22756443917751312, + -0.21256673336029053, + -0.21922165155410767, + -0.21256673336029053, + -0.24657024443149567, + -0.21256673336029053, + -0.19782838225364685, + -0.21256673336029053, + -0.2100524753332138, + -0.21256673336029053, + -0.23701894283294678, + -0.21256673336029053, + -0.17062850296497345, + -0.21256673336029053, + -0.23306886851787567, + -0.21256673336029053, + -0.2668474614620209, + -0.21256673336029053, + -0.16800594329833984, + -0.21256673336029053, + -0.1642482727766037, + -0.21256673336029053, + -0.1532442420721054, + -0.21256673336029053, + -0.1933952122926712, + -0.21256673336029053, + -0.1802525520324707, + -0.21256673336029053, + -0.19298994541168213, + -0.21256673336029053, + -0.15413323044776917, + -0.21256673336029053, + -0.21098414063453674, + -0.21256673336029053, + -0.2605448365211487, + -0.21256673336029053, + -0.19866545498371124, + -0.21256673336029053, + -0.14801833033561707, + -0.21256673336029053, + -0.2502637207508087, + -0.21256673336029053, + -0.2021017074584961, + -0.21256673336029053, + -0.19272105395793915, + -0.21256673336029053, + -0.19304989278316498, + -0.21256673336029053, + -0.21142753958702087, + -0.21256673336029053, + -0.2389986366033554, + -0.21256673336029053, + -0.18174578249454498, + -0.21256673336029053, + -0.18914948403835297, + -0.21256673336029053, + -0.2200421839952469, + -0.21256673336029053, + -0.20432816445827484, + -0.21256673336029053, + -0.2445913702249527, + -0.21256673336029053, + -0.1580495983362198, + -0.21256673336029053, + -0.21166479587554932, + -0.21256673336029053, + -0.27521446347236633, + -0.21256673336029053, + -0.2214122712612152, + -0.21256673336029053, + -0.281821608543396, + -0.21256673336029053, + -0.14914213120937347, + -0.21256673336029053, + -0.15286535024642944, + -0.21256673336029053, + -0.17516914010047913, + -0.21256673336029053, + -0.21996580064296722, + -0.21256673336029053, + -0.2512102723121643, + -0.21256673336029053, + -0.24962258338928223, + -0.21256673336029053, + -0.190799281001091, + -0.21256673336029053, + -0.22992898523807526, + -0.21256673336029053, + -0.15364475548267365, + -0.21256673336029053, + -0.15822385251522064, + -0.21256673336029053, + -0.14645782113075256, + -0.21256673336029053, + -0.2620249092578888, + -0.21256673336029053, + -0.21848277747631073, + -0.21256673336029053, + -0.2556280493736267, + -0.21256673336029053, + -0.2618388533592224, + -0.21256673336029053, + -0.24979491531848907, + -0.21256673336029053, + -0.22109152376651764, + -0.21256673336029053, + -0.2531801760196686, + -0.21256673336029053, + -0.18388806283473969, + -0.21256673336029053, + -0.2263016551733017, + -0.21256673336029053, + -0.18443803489208221, + -0.21256673336029053, + -0.14610566198825836, + -0.21256673336029053, + -0.153420552611351, + -0.21256673336029053, + -0.17796945571899414, + -0.21256673336029053, + -0.16820667684078217, + -0.21256673336029053, + -0.16716744005680084, + -0.21256673336029053, + -0.20553146302700043, + -0.21256673336029053, + -0.22807137668132782, + -0.21256673336029053, + -0.15403293073177338, + -0.21256673336029053, + -0.15772783756256104, + -0.21256673336029053, + -0.26532912254333496, + -0.21256673336029053, + -0.25220757722854614, + -0.21256673336029053, + -0.23277461528778076, + -0.21256673336029053, + -0.21292340755462646, + -0.21256673336029053, + -0.2110433578491211, + -0.21256673336029053, + -0.23917168378829956, + -0.21256673336029053, + -0.20645242929458618, + -0.21256673336029053, + -0.15995009243488312, + -0.21256673336029053, + -0.18940964341163635, + -0.21256673336029053, + -0.20434345304965973, + -0.21256673336029053, + -0.2849380671977997, + -0.21256673336029053, + -0.2811838686466217, + -0.21256673336029053, + -0.20284752547740936, + -0.21256673336029053, + -0.17577317357063293, + -0.21256673336029053, + -0.26947975158691406, + -0.21256673336029053, + -0.1956416815519333, + -0.21256673336029053, + -0.23882710933685303, + -0.21256673336029053, + -0.2827981114387512, + -0.21256673336029053, + -0.26824504137039185, + -0.21256673336029053, + -0.2243727594614029, + -0.21256673336029053, + -0.2222081571817398, + -0.21256673336029053, + -0.21316364407539368, + -0.21256673336029053, + -0.23320768773555756, + -0.21256673336029053, + -0.14624857902526855, + -0.21256673336029053, + -0.2613241970539093, + -0.21256673336029053, + -0.1825651228427887, + -0.21256673336029053, + -0.14820730686187744, + -0.21256673336029053, + -0.2759946584701538, + -0.21256673336029053, + -0.2649465799331665, + -0.21256673336029053, + -0.1436144858598709, + -0.21256673336029053, + -0.2008890062570572, + -0.21256673336029053, + -0.26559382677078247, + -0.21256673336029053, + -0.22394351661205292, + -0.21256673336029053, + -0.236678346991539, + -0.21256673336029053, + -0.19827112555503845, + -0.21256673336029053, + -0.2354286015033722, + -0.21256673336029053, + -0.17291966080665588, + -0.21256673336029053, + -0.27979493141174316, + -0.21256673336029053, + -0.2405146211385727, + -0.21256673336029053, + -0.26413846015930176, + -0.21256673336029053, + -0.25537109375, + -0.21256673336029053, + -0.22242654860019684, + -0.21256673336029053, + -0.2694515585899353, + -0.21256673336029053, + -0.28069767355918884, + -0.21256673336029053, + -0.25127530097961426, + -0.21256673336029053, + -0.2556663453578949, + -0.21256673336029053, + -0.18850493431091309, + -0.21256673336029053, + -0.2685583531856537, + -0.21256673336029053, + -0.16381540894508362, + -0.21256673336029053, + -0.24433600902557373, + -0.21256673336029053, + -0.15164238214492798, + -0.21256673336029053, + -0.16337712109088898, + -0.21256673336029053, + -0.17686450481414795, + -0.21256673336029053, + -0.1966848224401474, + -0.21256673336029053, + -0.16550639271736145, + -0.21256673336029053, + -0.23590035736560822, + -0.21256673336029053, + -0.28575459122657776, + -0.21256673336029053, + -0.153610497713089, + -0.21256673336029053, + -0.2370135635137558, + -0.21256673336029053, + -0.25911447405815125, + -0.21256673336029053, + -0.22130681574344635, + -0.21256673336029053, + -0.258798748254776, + -0.21256673336029053, + -0.24903355538845062, + -0.21256673336029053, + -0.22896312177181244, + -0.21256673336029053, + -0.2486342489719391, + -0.21256673336029053, + -0.23110507428646088, + -0.21256673336029053, + -0.17846490442752838, + -0.21256673336029053, + -0.18409554660320282, + -0.21256673336029053, + -0.23566925525665283, + -0.21256673336029053, + -0.22238044440746307, + -0.21256673336029053, + -0.23642151057720184, + -0.21256673336029053, + -0.25639861822128296, + -0.21256673336029053, + -0.20075350999832153, + -0.21256673336029053, + -0.21287822723388672, + -0.21256673336029053, + -0.2029116153717041, + -0.21256673336029053, + -0.17270773649215698, + -0.21256673336029053, + -0.209257572889328, + -0.21256673336029053, + -0.22349819540977478, + -0.21256673336029053, + -0.1439959704875946, + -0.21256673336029053, + -0.17470844089984894, + -0.21256673336029053, + -0.22709666192531586, + -0.21256673336029053, + -0.25495898723602295, + -0.21256673336029053, + -0.16665081679821014, + -0.21256673336029053, + -0.16506022214889526, + -0.21256673336029053, + -0.21117565035820007, + -0.21256673336029053, + -0.1943730264902115, + -0.21256673336029053, + -0.25853869318962097, + -0.21256673336029053, + -0.14632338285446167, + -0.21256673336029053, + -0.2639811933040619, + -0.21256673336029053, + -0.2334693968296051, + -0.21256673336029053, + -0.15738403797149658, + -0.21256673336029053, + -0.2750586271286011, + -0.21256673336029053, + -0.22520655393600464, + -0.21256673336029053, + -0.17999187111854553, + -0.21256673336029053, + -0.23255281150341034, + -0.21256673336029053, + -0.23408399522304535, + -0.21256673336029053, + -0.20566809177398682, + -0.21256673336029053, + -0.25440946221351624, + -0.21256673336029053, + -0.2484438717365265, + -0.21256673336029053, + -0.1972646266222, + -0.21256673336029053, + -0.24074578285217285, + -0.21256673336029053, + -0.25171491503715515, + -0.21256673336029053, + -0.2672234773635864, + -0.21256673336029053, + -0.18133682012557983, + -0.21256673336029053, + -0.15716134011745453, + -0.21256673336029053, + -0.1955302655696869, + -0.21256673336029053, + -0.24817855656147003, + -0.21256673336029053, + -0.18250739574432373, + -0.21256673336029053, + -0.27368196845054626, + -0.21256673336029053, + -0.1651466339826584, + -0.21256673336029053, + -0.18036548793315887, + -0.21256673336029053, + -0.27486059069633484, + -0.21256673336029053, + -0.16373293101787567, + -0.21256673336029053, + -0.24911686778068542, + 0.6040742993354797, + 0.583387017250061, + 0.583387017250061, + 0.5520933270454407, + 0.6263462901115417, + 0.6487942337989807, + 0.6487942337989807, + 0.6682549715042114, + -0.783835232257843, + -0.7645514011383057, + -0.544654905796051, + -0.5606129169464111, + 0.022913947701454163, + 0.020421987399458885, + 0.020421987399458885, + 0.024055227637290955, + 0.020421987399458885, + 0.006722558755427599, + 0.006722558755427599, + -0.0016135754995048046, + -0.12621307373046875, + -0.11210855096578598, + -0.12621307373046875, + -0.11005419492721558, + -0.12621307373046875, + -0.13012899458408356, + -0.11210855096578598, + -0.10548268258571625, + -0.10548268258571625, + -0.11005419492721558, + -0.10548268258571625, + -0.1065012514591217, + -0.7629328370094299, + -0.7550767660140991, + -0.7550767660140991, + -0.7373529672622681, + 0.40331336855888367, + 0.38000744581222534, + 0.38000744581222534, + 0.35754016041755676, + 0.35754016041755676, + 0.3479793965816498, + -0.16028150916099548, + -0.15378724038600922, + -0.15378724038600922, + -0.14385733008384705, + -0.6870828866958618, + -0.6774787902832031, + -0.6774787902832031, + -0.6611660718917847, + -0.49828121066093445, + -0.5158073306083679, + -0.5158073306083679, + -0.5329865217208862, + -0.14886096119880676, + -0.14804856479167938, + -0.14886096119880676, + -0.14558222889900208, + -0.14804856479167938, + -0.14618605375289917, + -0.14618605375289917, + -0.17468056082725525, + -0.14618605375289917, + -0.14558222889900208, + -0.14618605375289917, + -0.15178118646144867, + -0.14618605375289917, + -0.13293515145778656, + 0.35533425211906433, + 0.3479793965816498, + 0.29364725947380066, + 0.2850026488304138, + 0.2850026488304138, + 0.2750004231929779, + -0.059396758675575256, + -0.07511267811059952, + -0.07511267811059952, + -0.09126937389373779, + 0.9227033853530884, + 0.8963534235954285, + 0.8963534235954285, + 0.8770321011543274, + 0.6607050895690918, + 0.6783020496368408, + 0.6607050895690918, + 0.6685670614242554, + 0.6607050895690918, + 0.640560507774353, + 0.6607050895690918, + 0.6669235825538635, + 0.6783020496368408, + 0.6455320715904236, + 0.6455320715904236, + 0.6685670614242554, + 0.6455320715904236, + 0.6222972273826599, + 0.6455320715904236, + 0.6669235825538635, + 0.6315869688987732, + 0.6411926746368408, + 0.6411926746368408, + 0.6258479952812195, + 0.6348206400871277, + 0.6552498936653137, + 0.6348206400871277, + 0.6631651520729065, + 0.6348206400871277, + 0.6652630567550659, + 0.6348206400871277, + 0.6490378975868225, + 0.6348206400871277, + 0.6530727744102478, + 0.6348206400871277, + 0.658352792263031, + 0.6348206400871277, + 0.6192613244056702, + 0.6348206400871277, + 0.6109727025032043, + 0.6348206400871277, + 0.6486506462097168, + 0.6552498936653137, + 0.6399238109588623, + 0.6399238109588623, + 0.6631651520729065, + 0.6399238109588623, + 0.6652630567550659, + 0.6399238109588623, + 0.6490378975868225, + 0.6399238109588623, + 0.6530727744102478, + 0.6399238109588623, + 0.6832546591758728, + 0.6399238109588623, + 0.658352792263031, + 0.6399238109588623, + 0.6192613244056702, + 0.6399238109588623, + 0.6109727025032043, + 0.6399238109588623, + 0.6486506462097168, + 0.6685670614242554, + 0.6857994794845581, + 0.6321423053741455, + 0.6222972273826599, + 0.6321423053741455, + 0.640560507774353, + 0.6222972273826599, + 0.6163271069526672, + -0.4264930486679077, + -0.4261772930622101, + -0.4261772930622101, + -0.41033926606178284, + -0.663833498954773, + -0.660189688205719, + -0.660189688205719, + -0.6903768181800842, + 0.7159377932548523, + 0.6832546591758728, + 0.709499180316925, + 0.685572624206543, + 0.685572624206543, + 0.6957675814628601, + 0.3302820324897766, + 0.3219253420829773, + 0.3219253420829773, + 0.3093150854110718, + -0.10050400346517563, + -0.10994336009025574, + -0.10994336009025574, + -0.12094716727733612, + -0.12094716727733612, + -0.13781285285949707, + -0.12094716727733612, + -0.13293515145778656, + -0.12094716727733612, + -0.1166391596198082, + -0.12094716727733612, + -0.12589217722415924, + -0.12094716727733612, + -0.12518979609012604, + -0.12094716727733612, + -0.1065012514591217, + -0.12094716727733612, + -0.13557693362236023, + -0.7346959114074707, + -0.7746421098709106, + -0.7746421098709106, + -0.8063954710960388, + 0.4161522686481476, + 0.4052700400352478, + 0.4161522686481476, + 0.45541536808013916, + 0.4161522686481476, + 0.4245591461658478, + 0.4161522686481476, + 0.45107078552246094, + 0.4161522686481476, + 0.45135530829429626, + 0.4161522686481476, + 0.4102530777454376, + 0.4161522686481476, + 0.38918668031692505, + 0.4161522686481476, + 0.44220590591430664, + 0.4161522686481476, + 0.4233977496623993, + 0.4161522686481476, + 0.4414864480495453, + 0.4161522686481476, + 0.43878138065338135, + 0.4161522686481476, + 0.4096064865589142, + 0.4161522686481476, + 0.43701595067977905, + 0.4161522686481476, + 0.44123905897140503, + 0.4161522686481476, + 0.44411423802375793, + 0.4161522686481476, + 0.3958405554294586, + 0.4161522686481476, + 0.4304678440093994, + 0.4161522686481476, + 0.42626309394836426, + 0.4161522686481476, + 0.3886200189590454, + 0.4161522686481476, + 0.422529011964798, + 0.4161522686481476, + 0.40657341480255127, + 0.4161522686481476, + 0.3929554522037506, + 0.4161522686481476, + 0.4268401861190796, + 0.4161522686481476, + 0.42386552691459656, + 0.4161522686481476, + 0.45182645320892334, + 0.4161522686481476, + 0.3870982527732849, + 0.4161522686481476, + 0.4495040774345398, + 0.4161522686481476, + 0.4514985680580139, + 0.4161522686481476, + 0.4328452944755554, + 0.4161522686481476, + 0.4499877393245697, + 0.4161522686481476, + 0.3973454236984253, + 0.4161522686481476, + 0.41238656640052795, + 0.4161522686481476, + 0.4282337725162506, + 0.4161522686481476, + 0.40545016527175903, + 0.4161522686481476, + 0.4103533625602722, + 0.4161522686481476, + 0.43001478910446167, + 0.4161522686481476, + 0.44466978311538696, + 0.4161522686481476, + 0.39640012383461, + 0.4161522686481476, + 0.4046478867530823, + 0.4161522686481476, + 0.40400633215904236, + 0.4161522686481476, + 0.42430153489112854, + 0.4161522686481476, + 0.40631839632987976, + 0.4161522686481476, + 0.4167371690273285, + 0.4161522686481476, + 0.4139211177825928, + 0.4161522686481476, + 0.4141152799129486, + 0.4161522686481476, + 0.39181405305862427, + 0.4161522686481476, + 0.4272981286048889, + 0.4161522686481476, + 0.4363117516040802, + 0.4161522686481476, + 0.44099876284599304, + 0.4161522686481476, + 0.41221508383750916, + 0.4161522686481476, + 0.4417421519756317, + 0.4052700400352478, + 0.4161522686481476, + 0.4161522686481476, + 0.45541536808013916, + 0.4161522686481476, + 0.4245591461658478, + 0.4161522686481476, + 0.45107078552246094, + 0.4161522686481476, + 0.45135530829429626, + 0.4161522686481476, + 0.4102530777454376, + 0.4161522686481476, + 0.38918668031692505, + 0.4161522686481476, + 0.44220590591430664, + 0.4161522686481476, + 0.4233977496623993, + 0.4161522686481476, + 0.4414864480495453, + 0.4161522686481476, + 0.43878138065338135, + 0.4161522686481476, + 0.4096064865589142, + 0.4161522686481476, + 0.43701595067977905, + 0.4161522686481476, + 0.44123905897140503, + 0.4161522686481476, + 0.44411423802375793, + 0.4161522686481476, + 0.3958405554294586, + 0.4161522686481476, + 0.4304678440093994, + 0.4161522686481476, + 0.42626309394836426, + 0.4161522686481476, + 0.3886200189590454, + 0.4161522686481476, + 0.422529011964798, + 0.4161522686481476, + 0.40657341480255127, + 0.4161522686481476, + 0.3929554522037506, + 0.4161522686481476, + 0.4268401861190796, + 0.4161522686481476, + 0.42386552691459656, + 0.4161522686481476, + 0.45182645320892334, + 0.4161522686481476, + 0.3870982527732849, + 0.4161522686481476, + 0.4495040774345398, + 0.4161522686481476, + 0.4514985680580139, + 0.4161522686481476, + 0.4328452944755554, + 0.4161522686481476, + 0.4499877393245697, + 0.4161522686481476, + 0.3973454236984253, + 0.4161522686481476, + 0.41238656640052795, + 0.4161522686481476, + 0.4282337725162506, + 0.4161522686481476, + 0.40545016527175903, + 0.4161522686481476, + 0.4103533625602722, + 0.4161522686481476, + 0.43001478910446167, + 0.4161522686481476, + 0.44466978311538696, + 0.4161522686481476, + 0.39640012383461, + 0.4161522686481476, + 0.4046478867530823, + 0.4161522686481476, + 0.40400633215904236, + 0.4161522686481476, + 0.42430153489112854, + 0.4161522686481476, + 0.40631839632987976, + 0.4161522686481476, + 0.4167371690273285, + 0.4161522686481476, + 0.4139211177825928, + 0.4161522686481476, + 0.4141152799129486, + 0.4161522686481476, + 0.39181405305862427, + 0.4161522686481476, + 0.4272981286048889, + 0.4161522686481476, + 0.4363117516040802, + 0.4161522686481476, + 0.44099876284599304, + 0.4161522686481476, + 0.41221508383750916, + 0.4161522686481476, + 0.4417421519756317, + -0.5881908535957336, + -0.5955484509468079, + -0.5955484509468079, + -0.6170680522918701, + -0.3040526807308197, + -0.31117698550224304, + -0.31117698550224304, + -0.3056964874267578, + 0.5649303197860718, + 0.5493751764297485, + 0.5493751764297485, + 0.5580219030380249, + 0.5580219030380249, + 0.5731484293937683, + -0.3616832494735718, + -0.346930593252182, + -0.3616832494735718, + -0.3485901653766632, + -0.3616832494735718, + -0.3489413559436798, + -0.3616832494735718, + -0.3467964828014374, + -0.346930593252182, + -0.3176685869693756, + -0.3176685869693756, + -0.28685927391052246, + -0.3176685869693756, + -0.29390382766723633, + -0.3176685869693756, + -0.3485901653766632, + -0.3176685869693756, + -0.2933157980442047, + -0.3176685869693756, + -0.3489413559436798, + -0.3176685869693756, + -0.3467964828014374, + -0.2689678370952606, + -0.28685927391052246, + -0.2689678370952606, + -0.29390382766723633, + -0.2689678370952606, + -0.2933157980442047, + -0.2689678370952606, + -0.27531933784484863, + -0.2689678370952606, + -0.2817535400390625, + -0.2689678370952606, + -0.26260820031166077, + -0.2689678370952606, + -0.2595207095146179, + -0.2689678370952606, + -0.27263960242271423, + 0.4661206007003784, + 0.4614279568195343, + -0.6054461002349854, + -0.5913870930671692, + -0.6054461002349854, + -0.599248468875885, + -0.6054461002349854, + -0.6326069235801697, + -0.3690440356731415, + -0.36926600337028503, + -0.36926600337028503, + -0.39287230372428894, + -0.39287230372428894, + -0.40653374791145325, + -0.39287230372428894, + -0.41982385516166687, + -0.39287230372428894, + -0.4063408672809601, + -0.39287230372428894, + -0.4242947995662689, + -0.39287230372428894, + -0.3834066092967987, + 0.04187484085559845, + 0.03580041974782944, + 0.04187484085559845, + 0.04173516109585762, + 0.04187484085559845, + 0.05457792803645134, + 0.04187484085559845, + 0.04274662211537361, + 0.04187484085559845, + 0.026307804509997368, + 0.03580041974782944, + 0.03768763318657875, + 0.03768763318657875, + 0.04173516109585762, + 0.03768763318657875, + 0.05457792803645134, + 0.03768763318657875, + 0.04274662211537361, + 0.03768763318657875, + 0.026307804509997368, + -0.3573191165924072, + -0.3449101746082306, + -0.3449101746082306, + -0.3566962480545044, + 0.590079128742218, + 0.5731484293937683, + 0.47121065855026245, + 0.4933215379714966, + 0.47121065855026245, + 0.4622974693775177, + 0.4933215379714966, + 0.5188116431236267, + -0.3751857578754425, + -0.38693007826805115, + -0.38693007826805115, + -0.3972494602203369, + -0.11570803076028824, + -0.11915940046310425, + -0.11915940046310425, + -0.12040183693170547, + -0.11915940046310425, + -0.12388201802968979, + -0.11915940046310425, + -0.12227396667003632, + -0.42432036995887756, + -0.4063408672809601, + 0.4622974693775177, + 0.4751434326171875, + 0.6723341941833496, + 0.7030356526374817, + 0.7030356526374817, + 0.7291281223297119, + 0.7468001842498779, + 0.7625899314880371, + 0.7625899314880371, + 0.7762340307235718, + -0.44765833020210266, + -0.4242947995662689, + -0.4958494007587433, + -0.4951680898666382, + -0.4951680898666382, + -0.4842508137226105, + -0.37643128633499146, + -0.3834066092967987, + -0.27531933784484863, + -0.26621854305267334, + -0.26621854305267334, + -0.2817535400390625, + -0.26621854305267334, + -0.26260820031166077, + -0.26621854305267334, + -0.2595207095146179, + -0.26621854305267334, + -0.27263960242271423, + 0.2257251888513565, + 0.23090709745883942, + 0.2257251888513565, + 0.2160291075706482, + 0.2257251888513565, + 0.2142985612154007, + 0.2257251888513565, + 0.24313122034072876, + 0.2257251888513565, + 0.23870079219341278, + 0.23090709745883942, + 0.2277115136384964, + 0.2277115136384964, + 0.2560553550720215, + 0.2277115136384964, + 0.24013523757457733, + 0.2277115136384964, + 0.2160291075706482, + 0.2277115136384964, + 0.24192112684249878, + 0.2277115136384964, + 0.2423759400844574, + 0.2277115136384964, + 0.2313740849494934, + 0.2277115136384964, + 0.2142985612154007, + 0.2277115136384964, + 0.24313122034072876, + 0.2277115136384964, + 0.23870079219341278, + 0.35142019391059875, + 0.342585027217865, + 0.2561565339565277, + 0.24192112684249878, + 0.24768543243408203, + 0.2423759400844574, + 0.24768543243408203, + 0.2313740849494934, + 0.24568183720111847, + 0.25308576226234436, + 0.25308576226234436, + 0.26269426941871643, + -0.18912462890148163, + -0.19689704477787018, + -0.19689704477787018, + -0.21078306436538696, + -0.19689704477787018, + -0.19039596617221832, + -0.18377888202667236, + -0.19039596617221832, + 0.6027657389640808, + 0.5757293701171875, + 0.5757293701171875, + 0.5570638179779053, + 0.5570638179779053, + 0.5497349500656128, + 0.305410236120224, + 0.295820027589798, + 0.295820027589798, + 0.28741270303726196, + 0.11146453022956848, + 0.11600349098443985, + 0.11600349098443985, + 0.1200396940112114, + 0.11600349098443985, + 0.12195529788732529, + 0.1200396940112114, + 0.12366132438182831, + 0.5545815229415894, + 0.5497349500656128, + 0.3886667490005493, + 0.3873283565044403, + 0.3873283565044403, + 0.38799527287483215, + 0.38799527287483215, + 0.39849087595939636, + 0.38799527287483215, + 0.3866480886936188, + 0.16825714707374573, + 0.16140182316303253, + 0.16825714707374573, + 0.16112986207008362, + 0.16140182316303253, + 0.16646277904510498, + 0.16646277904510498, + 0.16112986207008362, + 0.39849087595939636, + 0.384835422039032, + 0.384835422039032, + 0.3866480886936188, + 0.12665680050849915, + 0.12366132438182831, + 0.3206172287464142, + 0.34401050209999084, + 0.3206172287464142, + 0.33913007378578186, + 0.3206172287464142, + 0.3340681791305542, + 0.3206172287464142, + 0.332043319940567, + 0.3206172287464142, + 0.3202812671661377, + 0.3206172287464142, + 0.32384049892425537, + 0.3206172287464142, + 0.3080619275569916, + 0.3206172287464142, + 0.304400235414505, + 0.3206172287464142, + 0.34442445635795593, + 0.3206172287464142, + 0.3202678859233856, + 0.3206172287464142, + 0.333780974149704, + 0.3206172287464142, + 0.3200797438621521, + 0.3206172287464142, + 0.3347940742969513, + 0.34401050209999084, + 0.31870630383491516, + 0.31870630383491516, + 0.33913007378578186, + 0.31870630383491516, + 0.3340681791305542, + 0.31870630383491516, + 0.31629979610443115, + 0.31870630383491516, + 0.3202812671661377, + 0.31870630383491516, + 0.32384049892425537, + 0.31870630383491516, + 0.3080619275569916, + 0.31870630383491516, + 0.304400235414505, + 0.31870630383491516, + 0.34442445635795593, + 0.31870630383491516, + 0.3202678859233856, + 0.31870630383491516, + 0.333780974149704, + 0.31870630383491516, + 0.3200797438621521, + 0.31870630383491516, + 0.3347940742969513, + -0.8993726968765259, + -0.8873851895332336, + -0.8873851895332336, + -0.854047954082489, + 0.26740628480911255, + 0.2892921268939972, + 0.26740628480911255, + 0.28854408860206604, + 0.26740628480911255, + 0.2505668103694916, + 0.26740628480911255, + 0.2584058344364166, + 0.2892921268939972, + 0.3130492568016052, + 0.2584058344364166, + 0.2597227096557617, + 0.2584058344364166, + 0.2483486831188202, + 0.2597227096557617, + 0.2505668103694916, + 0.2505668103694916, + 0.2483486831188202, + 0.28854408860206604, + 0.30059516429901123, + -0.7766005992889404, + -0.7716034054756165, + -0.7766005992889404, + -0.7990071177482605, + -0.7716034054756165, + -0.7773008942604065, + -0.7990071177482605, + -0.8296065926551819, + -0.18083536624908447, + -0.16866450011730194, + -0.16866450011730194, + -0.1528952419757843, + -0.1528952419757843, + -0.13781285285949707, + -0.1528952419757843, + -0.15178118646144867, + -0.06061932072043419, + -0.071288101375103, + -0.071288101375103, + -0.08495286852121353, + -0.19628815352916718, + -0.17468056082725525, + 0.2943403720855713, + 0.2826845645904541, + 0.2826845645904541, + 0.2701431214809418, + 0.6988973617553711, + 0.7206721901893616, + 0.7206721901893616, + 0.7451643943786621, + -0.11022680997848511, + -0.10694058984518051, + -0.10694058984518051, + -0.10159049183130264, + 0.332043319940567, + 0.35144665837287903, + 0.3272594213485718, + 0.31629979610443115, + -0.45474180579185486, + -0.43648260831832886, + -0.43648260831832886, + -0.414596825838089, + -0.414596825838089, + -0.3911384642124176, + -0.1263456493616104, + -0.1166391596198082, + -0.1263456493616104, + -0.12518979609012604, + -0.1263456493616104, + -0.13557693362236023, + -0.1263456493616104, + -0.13012899458408356, + -0.1166391596198082, + -0.12589217722415924, + -0.12518979609012604, + -0.12589217722415924, + -0.3685758709907532, + -0.3911384642124176 + ], + "y": [ + 0.706129789352417, + 0.6867745518684387, + -0.6201493144035339, + -0.5995899438858032, + -0.7456690073013306, + -0.7726479172706604, + -0.6920101642608643, + -0.6862857341766357, + -0.34007754921913147, + -0.3510674238204956, + -0.3510674238204956, + -0.35627612471580505, + 0.7371575236320496, + 0.7278721332550049, + -0.04981059953570366, + -0.047690700739622116, + -0.047690700739622116, + -0.04510679095983505, + 0.33140769600868225, + 0.3290269672870636, + 0.3290269672870636, + 0.32842308282852173, + -0.4403519928455353, + -0.42493194341659546, + -0.42493194341659546, + -0.40646764636039734, + 0.6750103235244751, + 0.6880626678466797, + -0.4107622802257538, + -0.43278008699417114, + -0.4107622802257538, + -0.4030531942844391, + -0.4107622802257538, + -0.42301857471466064, + -0.43278008699417114, + -0.4151023030281067, + -0.43278008699417114, + -0.450390100479126, + -0.43278008699417114, + -0.4620475769042969, + -0.43278008699417114, + -0.45796826481819153, + -0.43278008699417114, + -0.45016252994537354, + -0.43278008699417114, + -0.4364905059337616, + -0.43278008699417114, + -0.42301857471466064, + -0.43278008699417114, + -0.4466724991798401, + -0.4151023030281067, + -0.4030531942844391, + -0.4151023030281067, + -0.42301857471466064, + -0.450390100479126, + -0.4466724991798401, + -0.4620475769042969, + -0.4466724991798401, + -0.45796826481819153, + -0.4466724991798401, + -0.45016252994537354, + -0.4466724991798401, + -0.4364905059337616, + -0.4466724991798401, + -0.42301857471466064, + -0.4477199912071228, + 0.8702352643013, + 0.8586172461509705, + 0.04285314306616783, + 0.03686973452568054, + 0.20393717288970947, + 0.21606063842773438, + 0.21606063842773438, + 0.2144186794757843, + -0.6350516676902771, + -0.6188231110572815, + -0.4905749559402466, + -0.4789688289165497, + -0.06052365154027939, + -0.06255777925252914, + 0.11939678341150284, + 0.11567723751068115, + 0.11567723751068115, + 0.09986206144094467, + -0.26721543073654175, + -0.27805274724960327, + -0.4466724991798401, + -0.4606873095035553, + 0.31978756189346313, + 0.3096996545791626, + 0.3096996545791626, + 0.25123831629753113, + 0.3096996545791626, + 0.3638668358325958, + 0.3096996545791626, + 0.30534595251083374, + 0.3096996545791626, + 0.3323171138763428, + 0.3096996545791626, + 0.34721750020980835, + 0.3096996545791626, + 0.3139396905899048, + 0.3096996545791626, + 0.3564130663871765, + 0.3096996545791626, + 0.376350998878479, + 0.3096996545791626, + 0.3267365097999573, + 0.3096996545791626, + 0.33371588587760925, + 0.3096996545791626, + 0.2641892433166504, + 0.3096996545791626, + 0.292741984128952, + 0.3096996545791626, + 0.3455585241317749, + 0.3096996545791626, + 0.29316800832748413, + 0.3096996545791626, + 0.3679462969303131, + 0.3096996545791626, + 0.30655404925346375, + 0.3096996545791626, + 0.3577019274234772, + 0.3096996545791626, + 0.26210466027259827, + 0.3096996545791626, + 0.3675840198993683, + 0.3096996545791626, + 0.29348987340927124, + 0.3096996545791626, + 0.32805779576301575, + 0.3096996545791626, + 0.35971930623054504, + 0.3096996545791626, + 0.332965612411499, + 0.3096996545791626, + 0.3479999005794525, + 0.3096996545791626, + 0.25565972924232483, + 0.3096996545791626, + 0.3298463225364685, + 0.3096996545791626, + 0.3765603303909302, + 0.3096996545791626, + 0.37611907720565796, + 0.3096996545791626, + 0.358580082654953, + 0.3096996545791626, + 0.3303104639053345, + 0.3096996545791626, + 0.34404870867729187, + 0.3096996545791626, + 0.2984473407268524, + 0.3096996545791626, + 0.3329269587993622, + 0.3096996545791626, + 0.31969153881073, + 0.3096996545791626, + 0.3091573119163513, + 0.3096996545791626, + 0.28529417514801025, + 0.3096996545791626, + 0.292553186416626, + 0.3096996545791626, + 0.2700044512748718, + 0.3096996545791626, + 0.2487301528453827, + 0.3096996545791626, + 0.3152306377887726, + 0.3096996545791626, + 0.2916907072067261, + 0.3096996545791626, + 0.3380719721317291, + 0.3096996545791626, + 0.30232536792755127, + 0.3096996545791626, + 0.35475578904151917, + 0.3096996545791626, + 0.3078688085079193, + 0.3096996545791626, + 0.246383398771286, + 0.3096996545791626, + 0.38449302315711975, + 0.3096996545791626, + 0.2510521113872528, + 0.3096996545791626, + 0.26730939745903015, + 0.3096996545791626, + 0.24326936900615692, + 0.3096996545791626, + 0.3540525734424591, + 0.3096996545791626, + 0.29010140895843506, + 0.3096996545791626, + 0.31877222657203674, + 0.3096996545791626, + 0.2753402590751648, + 0.3096996545791626, + 0.3286397457122803, + 0.3096996545791626, + 0.3094123303890228, + 0.3096996545791626, + 0.2816193103790283, + 0.3096996545791626, + 0.3576372265815735, + 0.3096996545791626, + 0.34909212589263916, + 0.3096996545791626, + 0.246873676776886, + 0.3096996545791626, + 0.33605387806892395, + 0.3096996545791626, + 0.2471499741077423, + 0.3096996545791626, + 0.3376084864139557, + 0.3096996545791626, + 0.3757556080818176, + 0.3096996545791626, + 0.3147132098674774, + 0.3096996545791626, + 0.3706943988800049, + 0.3096996545791626, + 0.29534971714019775, + 0.3096996545791626, + 0.3105369210243225, + 0.3096996545791626, + 0.2510479986667633, + 0.3096996545791626, + 0.3434383273124695, + 0.3096996545791626, + 0.29122456908226013, + 0.3096996545791626, + 0.28643983602523804, + 0.3096996545791626, + 0.368894100189209, + 0.3096996545791626, + 0.34645238518714905, + 0.3096996545791626, + 0.24797755479812622, + 0.3096996545791626, + 0.34136274456977844, + 0.3096996545791626, + 0.30176541209220886, + 0.3096996545791626, + 0.3833869397640228, + 0.3096996545791626, + 0.2815479338169098, + 0.3096996545791626, + 0.28862765431404114, + 0.3096996545791626, + 0.32457172870635986, + 0.3096996545791626, + 0.3329591751098633, + 0.3096996545791626, + 0.28965067863464355, + 0.3096996545791626, + 0.27511918544769287, + 0.3096996545791626, + 0.32890626788139343, + 0.3096996545791626, + 0.3617132604122162, + 0.3096996545791626, + 0.25486794114112854, + 0.3096996545791626, + 0.2803870439529419, + 0.3096996545791626, + 0.38166457414627075, + 0.3096996545791626, + 0.3473694920539856, + 0.3096996545791626, + 0.27076831459999084, + 0.3096996545791626, + 0.3327893614768982, + 0.3096996545791626, + 0.2634505033493042, + 0.3096996545791626, + 0.316804438829422, + 0.3096996545791626, + 0.35422566533088684, + 0.3096996545791626, + 0.3595854938030243, + 0.3096996545791626, + 0.2585456669330597, + 0.3096996545791626, + 0.27126264572143555, + 0.3096996545791626, + 0.37221190333366394, + 0.3096996545791626, + 0.30803385376930237, + 0.3096996545791626, + 0.2446887046098709, + 0.3096996545791626, + 0.36556655168533325, + 0.3096996545791626, + 0.3047226369380951, + 0.3096996545791626, + 0.292223185300827, + 0.3096996545791626, + 0.3209247887134552, + 0.3096996545791626, + 0.26189038157463074, + 0.3096996545791626, + 0.35910409688949585, + 0.3096996545791626, + 0.31432536244392395, + 0.3096996545791626, + 0.3383749723434448, + 0.3096996545791626, + 0.3021726906299591, + 0.3096996545791626, + 0.3448396623134613, + 0.3096996545791626, + 0.2630150318145752, + 0.3096996545791626, + 0.26151320338249207, + 0.3096996545791626, + 0.3036893904209137, + 0.3096996545791626, + 0.24274607002735138, + 0.3096996545791626, + 0.3780209422111511, + 0.3096996545791626, + 0.3795938491821289, + 0.3096996545791626, + 0.2558918297290802, + 0.3096996545791626, + 0.2732325494289398, + 0.3096996545791626, + 0.26868417859077454, + 0.3096996545791626, + 0.3310723900794983, + 0.3096996545791626, + 0.31214639544487, + 0.3096996545791626, + 0.29815784096717834, + 0.3096996545791626, + 0.3642328083515167, + 0.3096996545791626, + 0.304572194814682, + 0.3096996545791626, + 0.306183785200119, + 0.3096996545791626, + 0.3003524839878082, + 0.3096996545791626, + 0.25604957342147827, + 0.3096996545791626, + 0.3148643970489502, + 0.3096996545791626, + 0.32474982738494873, + 0.3096996545791626, + 0.37206071615219116, + 0.3096996545791626, + 0.290763795375824, + 0.3096996545791626, + 0.35999879240989685, + 0.3096996545791626, + 0.37641441822052, + 0.3096996545791626, + 0.3016018569469452, + 0.3096996545791626, + 0.2876667082309723, + 0.3096996545791626, + 0.26063114404678345, + 0.3096996545791626, + 0.3145846128463745, + 0.3096996545791626, + 0.27710139751434326, + 0.3096996545791626, + 0.35935619473457336, + 0.3096996545791626, + 0.32126903533935547, + 0.3096996545791626, + 0.3809909224510193, + 0.3096996545791626, + 0.2694554030895233, + 0.3096996545791626, + 0.3604844808578491, + 0.3096996545791626, + 0.26821449398994446, + 0.3096996545791626, + 0.25704678893089294, + 0.3096996545791626, + 0.25302281975746155, + 0.3096996545791626, + 0.36540406942367554, + 0.3096996545791626, + 0.3108685612678528, + 0.3096996545791626, + 0.26493680477142334, + 0.3096996545791626, + 0.348163366317749, + 0.3096996545791626, + 0.27422404289245605, + 0.3096996545791626, + 0.2558499574661255, + 0.3096996545791626, + 0.26862239837646484, + 0.3096996545791626, + 0.2926228940486908, + 0.3096996545791626, + 0.2931216061115265, + 0.3096996545791626, + 0.29649072885513306, + 0.3096996545791626, + 0.2604463994503021, + 0.3096996545791626, + 0.3395405113697052, + 0.3096996545791626, + 0.28964391350746155, + 0.3096996545791626, + 0.3382134437561035, + 0.3096996545791626, + 0.3468222916126251, + 0.3096996545791626, + 0.2825070023536682, + 0.3096996545791626, + 0.34053587913513184, + 0.3096996545791626, + 0.2459200769662857, + 0.3096996545791626, + 0.31325697898864746, + 0.3096996545791626, + 0.28297367691993713, + 0.3096996545791626, + 0.32746875286102295, + 0.3096996545791626, + 0.3300389051437378, + 0.3096996545791626, + 0.36226823925971985, + 0.3096996545791626, + 0.35499122738838196, + 0.3096996545791626, + 0.38034161925315857, + 0.3096996545791626, + 0.3691103756427765, + 0.3096996545791626, + 0.3087437152862549, + 0.3096996545791626, + 0.24321380257606506, + 0.3096996545791626, + 0.27826735377311707, + 0.3096996545791626, + 0.27697038650512695, + 0.3096996545791626, + 0.2740262746810913, + 0.3096996545791626, + 0.3763512074947357, + 0.3096996545791626, + 0.3757820427417755, + 0.3096996545791626, + 0.24786321818828583, + 0.3096996545791626, + 0.29484015703201294, + 0.3096996545791626, + 0.2707909941673279, + 0.3096996545791626, + 0.3822256624698639, + 0.3096996545791626, + 0.25627681612968445, + 0.3096996545791626, + 0.3691226541996002, + 0.3096996545791626, + 0.29828840494155884, + 0.3096996545791626, + 0.28224384784698486, + 0.3096996545791626, + 0.26575541496276855, + 0.3096996545791626, + 0.31188973784446716, + 0.3096996545791626, + 0.35848984122276306, + 0.3096996545791626, + 0.25718066096305847, + 0.3096996545791626, + 0.31876257061958313, + 0.3096996545791626, + 0.3448180556297302, + 0.3096996545791626, + 0.3441428244113922, + 0.3096996545791626, + 0.27360060811042786, + 0.3096996545791626, + 0.37464332580566406, + 0.3096996545791626, + 0.25730523467063904, + 0.3096996545791626, + 0.32464146614074707, + 0.3096996545791626, + 0.3540745973587036, + 0.3096996545791626, + 0.33348655700683594, + 0.3096996545791626, + 0.3457643985748291, + 0.3096996545791626, + 0.28284475207328796, + 0.3096996545791626, + 0.3715299367904663, + 0.3096996545791626, + 0.25298240780830383, + 0.3096996545791626, + 0.3540712594985962, + 0.3096996545791626, + 0.3148069679737091, + 0.3096996545791626, + 0.2682185769081116, + 0.3096996545791626, + 0.3404909074306488, + 0.3096996545791626, + 0.3674767017364502, + 0.3096996545791626, + 0.3197777271270752, + 0.3096996545791626, + 0.24731698632240295, + 0.3096996545791626, + 0.3237888216972351, + 0.3096996545791626, + 0.282462477684021, + 0.3096996545791626, + 0.3713642954826355, + 0.3096996545791626, + 0.31904923915863037, + 0.3096996545791626, + 0.281443327665329, + 0.3096996545791626, + 0.3505496680736542, + 0.3096996545791626, + 0.3210502564907074, + 0.3096996545791626, + 0.33264467120170593, + 0.3096996545791626, + 0.27649030089378357, + 0.3096996545791626, + 0.3642131984233856, + 0.3096996545791626, + 0.3471643328666687, + 0.3096996545791626, + 0.3625968098640442, + 0.3096996545791626, + 0.2827596962451935, + 0.596368670463562, + 0.577892541885376, + 0.577892541885376, + 0.548254668712616, + -0.07042227685451508, + -0.07243717461824417, + -0.07243717461824417, + -0.07422744482755661, + -0.4503897726535797, + -0.4388904571533203, + -0.5098878145217896, + -0.5265282988548279, + -0.8727532625198364, + -0.8327925801277161, + -0.8327925801277161, + -0.8041682839393616, + -0.8327925801277161, + -0.8467949032783508, + -0.8467949032783508, + -0.8684954047203064, + -0.6026697158813477, + -0.6136389970779419, + -0.6026697158813477, + -0.6000195145606995, + -0.6026697158813477, + -0.5837697386741638, + -0.6136389970779419, + -0.5844860672950745, + -0.5844860672950745, + -0.6000195145606995, + -0.5844860672950745, + -0.5625811219215393, + -0.40814921259880066, + -0.4216165244579315, + -0.4216165244579315, + -0.42155560851097107, + -0.4469653069972992, + -0.4329999089241028, + -0.4329999089241028, + -0.43251001834869385, + -0.43251001834869385, + -0.4480852782726288, + 1, + 0.9821590185165405, + 0.9821590185165405, + 0.9873853921890259, + -0.01040453091263771, + 0.0024913453962653875, + 0.0024913453962653875, + 0.008472932502627373, + -0.6458683013916016, + -0.6687332987785339, + -0.6687332987785339, + -0.6910502910614014, + -0.5251590609550476, + -0.5166045427322388, + -0.5251590609550476, + -0.5284274220466614, + -0.5166045427322388, + -0.5263521075248718, + -0.5263521075248718, + -0.5461997985839844, + -0.5263521075248718, + -0.5284274220466614, + -0.5263521075248718, + -0.5649043321609497, + -0.5263521075248718, + -0.5412552952766418, + -0.47021201252937317, + -0.4480852782726288, + 0.7619550228118896, + 0.7384216785430908, + 0.7384216785430908, + 0.7113853096961975, + -0.24620939791202545, + -0.25071266293525696, + -0.25071266293525696, + -0.2560189962387085, + 0.045825812965631485, + 0.04391094297170639, + 0.04391094297170639, + 0.042687688022851944, + -0.048553455621004105, + -0.04494304955005646, + -0.048553455621004105, + -0.02661244384944439, + -0.048553455621004105, + -0.060545071959495544, + -0.048553455621004105, + -0.04002366214990616, + -0.04494304955005646, + -0.03694510832428932, + -0.03694510832428932, + -0.02661244384944439, + -0.03694510832428932, + -0.04631395265460014, + -0.03694510832428932, + -0.04002366214990616, + -0.5399780869483948, + -0.5292685627937317, + -0.5292685627937317, + -0.5134108066558838, + -0.36850300431251526, + -0.3793274164199829, + -0.36850300431251526, + -0.3838571608066559, + -0.36850300431251526, + -0.37026599049568176, + -0.36850300431251526, + -0.39396554231643677, + -0.36850300431251526, + -0.3626863658428192, + -0.36850300431251526, + -0.38614702224731445, + -0.36850300431251526, + -0.3703189194202423, + -0.36850300431251526, + -0.3522987365722656, + -0.36850300431251526, + -0.3825375437736511, + -0.3793274164199829, + -0.36898642778396606, + -0.36898642778396606, + -0.3838571608066559, + -0.36898642778396606, + -0.37026599049568176, + -0.36898642778396606, + -0.39396554231643677, + -0.36898642778396606, + -0.3626863658428192, + -0.36898642778396606, + -0.38743138313293457, + -0.36898642778396606, + -0.38614702224731445, + -0.36898642778396606, + -0.3703189194202423, + -0.36898642778396606, + -0.3522987365722656, + -0.36898642778396606, + -0.3825375437736511, + -0.02661244384944439, + -0.014180426485836506, + -0.05982940271496773, + -0.04631395265460014, + -0.05982940271496773, + -0.060545071959495544, + -0.04631395265460014, + -0.05038002133369446, + 0.17324186861515045, + 0.18229468166828156, + 0.18229468166828156, + 0.18971514701843262, + -0.38822561502456665, + -0.3952237367630005, + -0.3952237367630005, + -0.41345882415771484, + -0.40387409925460815, + -0.38743138313293457, + 0.5586565136909485, + 0.5425860285758972, + 0.5425860285758972, + 0.5551550984382629, + 0.523522138595581, + 0.5106776356697083, + 0.5106776356697083, + 0.49378088116645813, + -0.629187285900116, + -0.6007903814315796, + -0.6007903814315796, + -0.5598587393760681, + -0.5598587393760681, + -0.5811786651611328, + -0.5598587393760681, + -0.5412552952766418, + -0.5598587393760681, + -0.5663707256317139, + -0.5598587393760681, + -0.5807241797447205, + -0.5598587393760681, + -0.5596789717674255, + -0.5598587393760681, + -0.5625811219215393, + -0.5598587393760681, + -0.5666916966438293, + -0.10317007452249527, + -0.10960638523101807, + -0.10960638523101807, + -0.11470946669578552, + 0.10254635661840439, + 0.07199537754058838, + 0.10254635661840439, + 0.1041976809501648, + 0.10254635661840439, + 0.09058721363544464, + 0.10254635661840439, + 0.11740080267190933, + 0.10254635661840439, + 0.09167305380105972, + 0.10254635661840439, + 0.07042060792446136, + 0.10254635661840439, + 0.0889245867729187, + 0.10254635661840439, + 0.12314528226852417, + 0.10254635661840439, + 0.12749528884887695, + 0.10254635661840439, + 0.0803997740149498, + 0.10254635661840439, + 0.10373962670564651, + 0.10254635661840439, + 0.12929095327854156, + 0.10254635661840439, + 0.07810881733894348, + 0.10254635661840439, + 0.1259082704782486, + 0.10254635661840439, + 0.09286820143461227, + 0.10254635661840439, + 0.125738725066185, + 0.10254635661840439, + 0.1363513171672821, + 0.10254635661840439, + 0.07719206064939499, + 0.10254635661840439, + 0.1160859540104866, + 0.10254635661840439, + 0.07103654742240906, + 0.10254635661840439, + 0.12711983919143677, + 0.10254635661840439, + 0.12261759489774704, + 0.10254635661840439, + 0.13405871391296387, + 0.10254635661840439, + 0.10581184178590775, + 0.10254635661840439, + 0.1155502200126648, + 0.10254635661840439, + 0.10232028365135193, + 0.10254635661840439, + 0.10655596107244492, + 0.10254635661840439, + 0.09095503389835358, + 0.10254635661840439, + 0.10530474781990051, + 0.10254635661840439, + 0.10631528496742249, + 0.10254635661840439, + 0.07969217002391815, + 0.10254635661840439, + 0.07853785902261734, + 0.10254635661840439, + 0.13472828269004822, + 0.10254635661840439, + 0.09308075159788132, + 0.10254635661840439, + 0.08139326423406601, + 0.10254635661840439, + 0.12219631671905518, + 0.10254635661840439, + 0.12807691097259521, + 0.10254635661840439, + 0.08754312247037888, + 0.10254635661840439, + 0.11760349571704865, + 0.10254635661840439, + 0.13418205082416534, + 0.10254635661840439, + 0.06954051554203033, + 0.10254635661840439, + 0.10116005688905716, + 0.10254635661840439, + 0.0976981669664383, + 0.10254635661840439, + 0.11232516169548035, + 0.10254635661840439, + 0.11665812879800797, + 0.10254635661840439, + 0.10622187703847885, + 0.10254635661840439, + 0.08624742925167084, + 0.10254635661840439, + 0.11768592149019241, + 0.10254635661840439, + 0.07635927945375443, + 0.10254635661840439, + 0.13667386770248413, + 0.10254635661840439, + 0.09114529937505722, + 0.07199537754058838, + 0.10254635661840439, + 0.10254635661840439, + 0.1041976809501648, + 0.10254635661840439, + 0.09058721363544464, + 0.10254635661840439, + 0.11740080267190933, + 0.10254635661840439, + 0.09167305380105972, + 0.10254635661840439, + 0.07042060792446136, + 0.10254635661840439, + 0.0889245867729187, + 0.10254635661840439, + 0.12314528226852417, + 0.10254635661840439, + 0.12749528884887695, + 0.10254635661840439, + 0.0803997740149498, + 0.10254635661840439, + 0.10373962670564651, + 0.10254635661840439, + 0.12929095327854156, + 0.10254635661840439, + 0.07810881733894348, + 0.10254635661840439, + 0.1259082704782486, + 0.10254635661840439, + 0.09286820143461227, + 0.10254635661840439, + 0.125738725066185, + 0.10254635661840439, + 0.1363513171672821, + 0.10254635661840439, + 0.07719206064939499, + 0.10254635661840439, + 0.1160859540104866, + 0.10254635661840439, + 0.07103654742240906, + 0.10254635661840439, + 0.12711983919143677, + 0.10254635661840439, + 0.12261759489774704, + 0.10254635661840439, + 0.13405871391296387, + 0.10254635661840439, + 0.10581184178590775, + 0.10254635661840439, + 0.1155502200126648, + 0.10254635661840439, + 0.10232028365135193, + 0.10254635661840439, + 0.10655596107244492, + 0.10254635661840439, + 0.09095503389835358, + 0.10254635661840439, + 0.10530474781990051, + 0.10254635661840439, + 0.10631528496742249, + 0.10254635661840439, + 0.07969217002391815, + 0.10254635661840439, + 0.07853785902261734, + 0.10254635661840439, + 0.13472828269004822, + 0.10254635661840439, + 0.09308075159788132, + 0.10254635661840439, + 0.08139326423406601, + 0.10254635661840439, + 0.12219631671905518, + 0.10254635661840439, + 0.12807691097259521, + 0.10254635661840439, + 0.08754312247037888, + 0.10254635661840439, + 0.11760349571704865, + 0.10254635661840439, + 0.13418205082416534, + 0.10254635661840439, + 0.06954051554203033, + 0.10254635661840439, + 0.10116005688905716, + 0.10254635661840439, + 0.0976981669664383, + 0.10254635661840439, + 0.11232516169548035, + 0.10254635661840439, + 0.11665812879800797, + 0.10254635661840439, + 0.10622187703847885, + 0.10254635661840439, + 0.08624742925167084, + 0.10254635661840439, + 0.11768592149019241, + 0.10254635661840439, + 0.07635927945375443, + 0.10254635661840439, + 0.13667386770248413, + 0.10254635661840439, + 0.09114529937505722, + -0.3370324671268463, + -0.34687355160713196, + -0.34687355160713196, + -0.3589629530906677, + -0.43729034066200256, + -0.4535043239593506, + -0.4535043239593506, + -0.46649354696273804, + 0.587411642074585, + 0.5694024562835693, + 0.5694024562835693, + 0.5694018602371216, + 0.5694018602371216, + 0.5754349827766418, + -0.23857887089252472, + -0.2515166401863098, + -0.23857887089252472, + -0.23143969476222992, + -0.23857887089252472, + -0.24226726591587067, + -0.23857887089252472, + -0.2442091405391693, + -0.2515166401863098, + -0.23304913938045502, + -0.23304913938045502, + -0.24267639219760895, + -0.23304913938045502, + -0.24568603932857513, + -0.23304913938045502, + -0.23143969476222992, + -0.23304913938045502, + -0.25330135226249695, + -0.23304913938045502, + -0.24226726591587067, + -0.23304913938045502, + -0.2442091405391693, + -0.265145480632782, + -0.24267639219760895, + -0.265145480632782, + -0.24568603932857513, + -0.265145480632782, + -0.25330135226249695, + -0.265145480632782, + -0.2960232198238373, + -0.265145480632782, + -0.29071393609046936, + -0.265145480632782, + -0.29851076006889343, + -0.265145480632782, + -0.28686827421188354, + -0.265145480632782, + -0.28253206610679626, + 0.8014809489250183, + 0.8054234981536865, + -0.5754832625389099, + -0.5571892857551575, + -0.5754832625389099, + -0.5858798623085022, + -0.5754832625389099, + -0.6031263470649719, + -0.15625177323818207, + -0.14964289963245392, + -0.14964289963245392, + -0.15010124444961548, + -0.15010124444961548, + -0.1692502349615097, + -0.15010124444961548, + -0.1546895056962967, + -0.15010124444961548, + -0.1464540958404541, + -0.15010124444961548, + -0.16844582557678223, + -0.15010124444961548, + -0.1450684517621994, + -0.35389673709869385, + -0.37295839190483093, + -0.35389673709869385, + -0.352606862783432, + -0.35389673709869385, + -0.3649069666862488, + -0.35389673709869385, + -0.3369324207305908, + -0.35389673709869385, + -0.3607664406299591, + -0.37295839190483093, + -0.3536992371082306, + -0.3536992371082306, + -0.352606862783432, + -0.3536992371082306, + -0.3649069666862488, + -0.3536992371082306, + -0.3369324207305908, + -0.3536992371082306, + -0.3607664406299591, + 0.1483493149280548, + 0.1421879082918167, + 0.1421879082918167, + 0.14711667597293854, + 0.585574746131897, + 0.5754349827766418, + -0.3798268139362335, + -0.3706110119819641, + -0.3798268139362335, + -0.4002005457878113, + -0.3706110119819641, + -0.3782545328140259, + -0.6146454811096191, + -0.6330335736274719, + -0.6330335736274719, + -0.6408231258392334, + -0.4118996560573578, + -0.4265304505825043, + -0.4265304505825043, + -0.4473136067390442, + -0.4265304505825043, + -0.4472130537033081, + -0.4265304505825043, + -0.427166610956192, + -0.15173742175102234, + -0.1464540958404541, + -0.4002005457878113, + -0.41930487751960754, + 0.2458604872226715, + 0.2560976445674896, + 0.2560976445674896, + 0.26479652523994446, + -0.6488458514213562, + -0.657103955745697, + -0.657103955745697, + -0.6602576375007629, + -0.1815183460712433, + -0.16844582557678223, + -0.7230052351951599, + -0.7209873795509338, + -0.7209873795509338, + -0.7046858668327332, + -0.14126765727996826, + -0.1450684517621994, + -0.2960232198238373, + -0.2993830442428589, + -0.2993830442428589, + -0.29071393609046936, + -0.2993830442428589, + -0.29851076006889343, + -0.2993830442428589, + -0.28686827421188354, + -0.2993830442428589, + -0.28253206610679626, + -0.3841784596443176, + -0.38316014409065247, + -0.3841784596443176, + -0.37763553857803345, + -0.3841784596443176, + -0.3738609850406647, + -0.3841784596443176, + -0.3787877857685089, + -0.3841784596443176, + -0.3740558326244354, + -0.38316014409065247, + -0.3537842333316803, + -0.3537842333316803, + -0.36798804998397827, + -0.3537842333316803, + -0.3644176125526428, + -0.3537842333316803, + -0.37763553857803345, + -0.3537842333316803, + -0.3827170431613922, + -0.3537842333316803, + -0.32865214347839355, + -0.3537842333316803, + -0.32755953073501587, + -0.3537842333316803, + -0.3738609850406647, + -0.3537842333316803, + -0.3787877857685089, + -0.3537842333316803, + -0.3740558326244354, + -0.4606873095035553, + -0.4477199912071228, + -0.40603724122047424, + -0.3827170431613922, + -0.3156551718711853, + -0.32865214347839355, + -0.3156551718711853, + -0.32755953073501587, + -0.8581801056861877, + -0.8852346539497375, + -0.8852346539497375, + -0.924187421798706, + -0.05603654310107231, + -0.05823056027293205, + -0.05823056027293205, + -0.06107292324304581, + -0.05823056027293205, + -0.0581546388566494, + -0.05789541080594063, + -0.0581546388566494, + 0.5011208057403564, + 0.482450395822525, + 0.482450395822525, + 0.46685439348220825, + 0.46685439348220825, + 0.45738789439201355, + -0.07570458948612213, + -0.07386258989572525, + -0.07386258989572525, + -0.07211428135633469, + 0.49852901697158813, + 0.5124670267105103, + 0.5124670267105103, + 0.5410491228103638, + 0.5124670267105103, + 0.5295566320419312, + 0.5410491228103638, + 0.5658652186393738, + 0.4572184979915619, + 0.45738789439201355, + 0.5512735843658447, + 0.5334264039993286, + 0.5334264039993286, + 0.5149376392364502, + 0.5149376392364502, + 0.5040709376335144, + 0.5149376392364502, + 0.5107647776603699, + -0.4735732972621918, + -0.45869648456573486, + -0.4735732972621918, + -0.4614194631576538, + -0.45869648456573486, + -0.47336262464523315, + -0.47336262464523315, + -0.4614194631576538, + 0.5040709376335144, + 0.4904893636703491, + 0.4904893636703491, + 0.5107647776603699, + 0.5863426923751831, + 0.5658652186393738, + -0.6307089328765869, + -0.6375045776367188, + -0.6307089328765869, + -0.6573642492294312, + -0.6307089328765869, + -0.6374605894088745, + -0.6307089328765869, + -0.6116330027580261, + -0.6307089328765869, + -0.650745689868927, + -0.6307089328765869, + -0.6603101491928101, + -0.6307089328765869, + -0.6574611663818359, + -0.6307089328765869, + -0.6478692889213562, + -0.6307089328765869, + -0.6446609497070312, + -0.6307089328765869, + -0.6301702857017517, + -0.6307089328765869, + -0.6470957398414612, + -0.6307089328765869, + -0.6624630689620972, + -0.6307089328765869, + -0.6583628058433533, + -0.6375045776367188, + -0.6384165287017822, + -0.6384165287017822, + -0.6573642492294312, + -0.6384165287017822, + -0.6374605894088745, + -0.6384165287017822, + -0.6709674000740051, + -0.6384165287017822, + -0.650745689868927, + -0.6384165287017822, + -0.6603101491928101, + -0.6384165287017822, + -0.6574611663818359, + -0.6384165287017822, + -0.6478692889213562, + -0.6384165287017822, + -0.6446609497070312, + -0.6384165287017822, + -0.6301702857017517, + -0.6384165287017822, + -0.6470957398414612, + -0.6384165287017822, + -0.6624630689620972, + -0.6384165287017822, + -0.6583628058433533, + -0.3799034059047699, + -0.37401798367500305, + -0.37401798367500305, + -0.3600294888019562, + -0.1299106925725937, + -0.12967155873775482, + -0.1299106925725937, + -0.12609043717384338, + -0.1299106925725937, + -0.14509576559066772, + -0.1299106925725937, + -0.15111790597438812, + -0.12967155873775482, + -0.13940764963626862, + -0.15111790597438812, + -0.1611556112766266, + -0.15111790597438812, + -0.16597548127174377, + -0.1611556112766266, + -0.14509576559066772, + -0.14509576559066772, + -0.16597548127174377, + -0.12609043717384338, + -0.12100867927074432, + -0.3414035439491272, + -0.330078125, + -0.3414035439491272, + -0.35586604475975037, + -0.330078125, + -0.32459861040115356, + -0.35586604475975037, + -0.37043264508247375, + -0.6751514077186584, + -0.6388369798660278, + -0.6388369798660278, + -0.594325602054596, + -0.594325602054596, + -0.5811786651611328, + -0.594325602054596, + -0.5649043321609497, + -0.8551851511001587, + -0.8464641571044922, + -0.8464641571044922, + -0.844108521938324, + -0.5599985122680664, + -0.5461997985839844, + -0.8000536561012268, + -0.7703084349632263, + -0.7703084349632263, + -0.7767143249511719, + -0.2869645059108734, + -0.2961543798446655, + -0.2961543798446655, + -0.30666255950927734, + -0.32550790905952454, + -0.31554970145225525, + -0.31554970145225525, + -0.3009701669216156, + -0.6116330027580261, + -0.6233026385307312, + -0.7076298594474792, + -0.6709674000740051, + -0.6003844738006592, + -0.5767517685890198, + -0.5767517685890198, + -0.5482947826385498, + -0.5482947826385498, + -0.5177376866340637, + -0.5625923871994019, + -0.5663707256317139, + -0.5625923871994019, + -0.5596789717674255, + -0.5625923871994019, + -0.5666916966438293, + -0.5625923871994019, + -0.5837697386741638, + -0.5663707256317139, + -0.5807241797447205, + -0.5596789717674255, + -0.5807241797447205, + -0.488328754901886, + -0.5177376866340637 + ], + "z": [ + 0.6296226978302002, + 0.6100324392318726, + -0.6613198518753052, + -0.6392405033111572, + 0.6735652685165405, + 0.6981338858604431, + -0.4887162446975708, + -0.5023712515830994, + 0.7638217210769653, + 0.7510988116264343, + 0.7510988116264343, + 0.7347540855407715, + 0.48237183690071106, + 0.47096937894821167, + -0.7893484830856323, + -0.7570911645889282, + -0.7570911645889282, + -0.7449675798416138, + 0.25800076127052307, + 0.27133625745773315, + 0.27133625745773315, + 0.28412699699401855, + 0.5734571814537048, + 0.5501733422279358, + 0.5501733422279358, + 0.5222890973091125, + 0.2123567909002304, + 0.2183264195919037, + -0.4626101851463318, + -0.4803663194179535, + -0.4626101851463318, + -0.44791552424430847, + -0.4626101851463318, + -0.46088331937789917, + -0.4803663194179535, + -0.45179155468940735, + -0.4803663194179535, + -0.5044323205947876, + -0.4803663194179535, + -0.5007185935974121, + -0.4803663194179535, + -0.49208590388298035, + -0.4803663194179535, + -0.5126955509185791, + -0.4803663194179535, + -0.5066725015640259, + -0.4803663194179535, + -0.46088331937789917, + -0.4803663194179535, + -0.4940248429775238, + -0.45179155468940735, + -0.44791552424430847, + -0.45179155468940735, + -0.46088331937789917, + -0.5044323205947876, + -0.4940248429775238, + -0.5007185935974121, + -0.4940248429775238, + -0.49208590388298035, + -0.4940248429775238, + -0.5126955509185791, + -0.4940248429775238, + -0.5066725015640259, + -0.4940248429775238, + -0.46088331937789917, + -0.47675079107284546, + 0.49715229868888855, + 0.5005994439125061, + -0.6233513355255127, + -0.6182869672775269, + 0.8718438148498535, + 0.8763830661773682, + 0.8763830661773682, + 0.8511614203453064, + 0.5935928821563721, + 0.577713131904602, + -0.8110530972480774, + -0.7906119227409363, + 0.1319630742073059, + 0.13680236041545868, + 0.1799403727054596, + 0.18672488629817963, + 0.18672488629817963, + 0.18754376471042633, + -0.14198185503482819, + -0.15049327909946442, + -0.4940248429775238, + -0.49292269349098206, + 0.11472795158624649, + 0.07368668168783188, + 0.07368668168783188, + 0.0958089753985405, + 0.07368668168783188, + 0.03397706523537636, + 0.07368668168783188, + 0.1101500391960144, + 0.07368668168783188, + 0.128946915268898, + 0.07368668168783188, + 0.01530342549085617, + 0.07368668168783188, + 0.041678935289382935, + 0.07368668168783188, + 0.01770070753991604, + 0.07368668168783188, + 0.06962045282125473, + 0.07368668168783188, + 0.011851776391267776, + 0.07368668168783188, + 0.01048420649021864, + 0.07368668168783188, + 0.100949227809906, + 0.07368668168783188, + 0.07371766120195389, + 0.07368668168783188, + 0.07328572869300842, + 0.07368668168783188, + 0.040786292403936386, + 0.07368668168783188, + 0.11577306687831879, + 0.07368668168783188, + 0.01526591181755066, + 0.07368668168783188, + 0.1048399955034256, + 0.07368668168783188, + 0.04603274166584015, + 0.07368668168783188, + 0.11935625970363617, + 0.07368668168783188, + 0.13732823729515076, + 0.07368668168783188, + 0.12045028060674667, + 0.07368668168783188, + 0.07775420695543289, + 0.07368668168783188, + 0.10873951762914658, + 0.07368668168783188, + 0.13442766666412354, + 0.07368668168783188, + 0.08428696542978287, + 0.07368668168783188, + 0.004084589425474405, + 0.07368668168783188, + 0.10604370385408401, + 0.07368668168783188, + 0.0647023469209671, + 0.07368668168783188, + 0.08596217632293701, + 0.07368668168783188, + 0.05873233452439308, + 0.07368668168783188, + 0.09475277364253998, + 0.07368668168783188, + 0.1200379729270935, + 0.07368668168783188, + 0.04761236160993576, + 0.07368668168783188, + 0.12283379584550858, + 0.07368668168783188, + 0.0009855969110503793, + 0.07368668168783188, + 0.08840719610452652, + 0.07368668168783188, + 0.09906359016895294, + 0.07368668168783188, + 0.055711280554533005, + 0.07368668168783188, + 0.07111482322216034, + 0.07368668168783188, + 0.10759679228067398, + 0.07368668168783188, + 0.005626805126667023, + 0.07368668168783188, + 0.13486897945404053, + 0.07368668168783188, + 0.0838770791888237, + 0.07368668168783188, + 0.027169374749064445, + 0.07368668168783188, + 0.1451202780008316, + 0.07368668168783188, + 0.05257939174771309, + 0.07368668168783188, + 0.08776042610406876, + 0.07368668168783188, + 0.057361118495464325, + 0.07368668168783188, + 0.022390451282262802, + 0.07368668168783188, + 0.08456186205148697, + 0.07368668168783188, + 0.020789798349142075, + 0.07368668168783188, + 0.126682847738266, + 0.07368668168783188, + 0.004836606327444315, + 0.07368668168783188, + 0.04322237893939018, + 0.07368668168783188, + 0.022336285561323166, + 0.07368668168783188, + 0.024158567190170288, + 0.07368668168783188, + 0.06442777812480927, + 0.07368668168783188, + 0.1240607425570488, + 0.07368668168783188, + 0.12311002612113953, + 0.07368668168783188, + 0.08052293956279755, + 0.07368668168783188, + 0.10593364387750626, + 0.07368668168783188, + 0.04794953018426895, + 0.07368668168783188, + 0.12279069423675537, + 0.07368668168783188, + 0.10211848467588425, + 0.07368668168783188, + 0.05014780908823013, + 0.07368668168783188, + 0.09738484025001526, + 0.07368668168783188, + 0.14215819537639618, + 0.07368668168783188, + 0.14365120232105255, + 0.07368668168783188, + 0.04841945320367813, + 0.07368668168783188, + 0.01282550860196352, + 0.07368668168783188, + 0.009417327120900154, + 0.07368668168783188, + 0.017081378027796745, + 0.07368668168783188, + 0.03792329505085945, + 0.07368668168783188, + 0.13558751344680786, + 0.07368668168783188, + 0.10050597041845322, + 0.07368668168783188, + 0.016810845583677292, + 0.07368668168783188, + 0.11891643702983856, + 0.07368668168783188, + 0.07266117632389069, + 0.07368668168783188, + 0.0556216724216938, + 0.07368668168783188, + 0.006572774611413479, + 0.07368668168783188, + 0.0962524488568306, + 0.07368668168783188, + 0.05982678383588791, + 0.07368668168783188, + 0.049807772040367126, + 0.07368668168783188, + 0.12030810117721558, + 0.07368668168783188, + 0.1405196487903595, + 0.07368668168783188, + 0.11335626244544983, + 0.07368668168783188, + 0.09477125853300095, + 0.07368668168783188, + 0.13417507708072662, + 0.07368668168783188, + 0.06957540661096573, + 0.07368668168783188, + 0.062959685921669, + 0.07368668168783188, + 0.07936537265777588, + 0.07368668168783188, + 0.08130030333995819, + 0.07368668168783188, + 0.05295603722333908, + 0.07368668168783188, + 0.012826242484152317, + 0.07368668168783188, + 0.033052150160074234, + 0.07368668168783188, + 0.04766141623258591, + 0.07368668168783188, + 0.043664366006851196, + 0.07368668168783188, + 0.13277257978916168, + 0.07368668168783188, + 0.08088237047195435, + 0.07368668168783188, + 0.009871629998087883, + 0.07368668168783188, + 0.0877780094742775, + 0.07368668168783188, + 0.11163407564163208, + 0.07368668168783188, + 0.06252270191907883, + 0.07368668168783188, + 0.10508019477128983, + 0.07368668168783188, + 0.013396818190813065, + 0.07368668168783188, + 0.07031437754631042, + 0.07368668168783188, + 0.05142410844564438, + 0.07368668168783188, + 0.13973040878772736, + 0.07368668168783188, + 0.009672586806118488, + 0.07368668168783188, + 0.039909567683935165, + 0.07368668168783188, + 0.0472247377038002, + 0.07368668168783188, + 0.06661775708198547, + 0.07368668168783188, + 0.10843563824892044, + 0.07368668168783188, + 0.005715379025787115, + 0.07368668168783188, + 0.06658496707677841, + 0.07368668168783188, + 0.04253706336021423, + 0.07368668168783188, + 0.08434087783098221, + 0.07368668168783188, + 0.0327918641269207, + 0.07368668168783188, + 0.09650259464979172, + 0.07368668168783188, + 0.12442217767238617, + 0.07368668168783188, + 0.14287079870700836, + 0.07368668168783188, + 0.0715658888220787, + 0.07368668168783188, + 0.056049592792987823, + 0.07368668168783188, + 0.0269453302025795, + 0.07368668168783188, + 0.13412265479564667, + 0.07368668168783188, + 0.029804982244968414, + 0.07368668168783188, + 0.006394612602889538, + 0.07368668168783188, + 0.1091078594326973, + 0.07368668168783188, + 0.05586455017328262, + 0.07368668168783188, + 0.028803551569581032, + 0.07368668168783188, + 0.03639628738164902, + 0.07368668168783188, + 0.1420944482088089, + 0.07368668168783188, + 0.12652982771396637, + 0.07368668168783188, + 0.10400919616222382, + 0.07368668168783188, + 0.09238815307617188, + 0.07368668168783188, + 0.031112603843212128, + 0.07368668168783188, + 0.11004547774791718, + 0.07368668168783188, + 0.1067998856306076, + 0.07368668168783188, + 0.07080134004354477, + 0.07368668168783188, + 0.09938261657953262, + 0.07368668168783188, + 0.06772048771381378, + 0.07368668168783188, + 0.08674592524766922, + 0.07368668168783188, + 0.0989985466003418, + 0.07368668168783188, + 0.027444200590252876, + 0.07368668168783188, + 0.12793536484241486, + 0.07368668168783188, + 0.11479996144771576, + 0.07368668168783188, + 0.040469441562891006, + 0.07368668168783188, + 0.07786206901073456, + 0.07368668168783188, + 0.09664683043956757, + 0.07368668168783188, + 0.027713222429156303, + 0.07368668168783188, + 0.11057385802268982, + 0.07368668168783188, + 0.1164366826415062, + 0.07368668168783188, + 0.032579101622104645, + 0.07368668168783188, + 0.08362514525651932, + 0.07368668168783188, + 0.07262644916772842, + 0.07368668168783188, + 0.018635977059602737, + 0.07368668168783188, + 0.12796832621097565, + 0.07368668168783188, + 0.03445110842585564, + 0.07368668168783188, + 0.03494853526353836, + 0.07368668168783188, + 0.031042711809277534, + 0.07368668168783188, + 0.13199734687805176, + 0.07368668168783188, + 0.07882478088140488, + 0.07368668168783188, + 0.11295634508132935, + 0.07368668168783188, + 0.023233674466609955, + 0.07368668168783188, + 0.06437402218580246, + 0.07368668168783188, + 0.1277129054069519, + 0.07368668168783188, + 0.12372935563325882, + 0.07368668168783188, + 0.07667641341686249, + 0.07368668168783188, + 0.042233891785144806, + 0.07368668168783188, + 0.1105690747499466, + 0.07368668168783188, + 0.08731153607368469, + 0.07368668168783188, + 0.056470803916454315, + 0.07368668168783188, + 0.065487802028656, + 0.07368668168783188, + 0.13584652543067932, + 0.07368668168783188, + 0.0690280869603157, + 0.07368668168783188, + 0.01993785984814167, + 0.07368668168783188, + 0.01401362195611, + 0.07368668168783188, + 0.027782684192061424, + 0.07368668168783188, + 0.08942268788814545, + 0.07368668168783188, + 0.05006195604801178, + 0.07368668168783188, + 0.10250794887542725, + 0.07368668168783188, + 0.1396200805902481, + 0.07368668168783188, + 0.03242106735706329, + 0.07368668168783188, + 0.0589824803173542, + 0.07368668168783188, + 0.11745483428239822, + 0.07368668168783188, + 0.04746420681476593, + 0.07368668168783188, + 0.018884548917412758, + 0.07368668168783188, + 0.13910959661006927, + 0.07368668168783188, + 0.02095326967537403, + 0.07368668168783188, + 0.08086420595645905, + 0.07368668168783188, + 0.03748471662402153, + 0.07368668168783188, + 0.11812679469585419, + 0.07368668168783188, + 0.021020077168941498, + 0.07368668168783188, + 0.11550244688987732, + 0.07368668168783188, + 0.03315466269850731, + 0.07368668168783188, + 0.014606977812945843, + 0.07368668168783188, + 0.07026687264442444, + 0.07368668168783188, + 0.08045192062854767, + 0.07368668168783188, + 0.09406816959381104, + 0.07368668168783188, + 0.06241920217871666, + 0.07368668168783188, + 0.1403817981481552, + 0.07368668168783188, + 0.09529455006122589, + 0.07368668168783188, + 0.08969749510288239, + 0.07368668168783188, + 0.08939073979854584, + 0.07368668168783188, + 0.0629391297698021, + 0.07368668168783188, + 0.12924768030643463, + 0.07368668168783188, + 0.14196419715881348, + 0.07368668168783188, + 0.13000217080116272, + 0.07368668168783188, + 0.0291365347802639, + 0.07368668168783188, + 0.04759441316127777, + 0.07368668168783188, + 0.004848686512559652, + 0.07368668168783188, + 0.08578405529260635, + 0.07368668168783188, + 0.13395649194717407, + 0.07368668168783188, + 0.11112469434738159, + 0.07368668168783188, + 0.05276527628302574, + 0.07368668168783188, + 0.033227335661649704, + 0.07368668168783188, + 0.0130787193775177, + 0.07368668168783188, + 0.12365274876356125, + 0.07368668168783188, + 0.13699208199977875, + 0.07368668168783188, + 0.08304546773433685, + 0.07368668168783188, + 0.040177661925554276, + 0.07368668168783188, + 0.09642869234085083, + 0.07368668168783188, + 0.05440424010157585, + 0.07368668168783188, + 0.0661991536617279, + 0.07368668168783188, + 0.13131408393383026, + 0.33444905281066895, + 0.3226282000541687, + 0.3226282000541687, + 0.3041708469390869, + 0.5656177997589111, + 0.5859631299972534, + 0.5859631299972534, + 0.6035494804382324, + 0.38668161630630493, + 0.37670794129371643, + 0.39263445138931274, + 0.40597617626190186, + -0.12406104058027267, + -0.11445768177509308, + -0.11445768177509308, + -0.11300282925367355, + -0.11445768177509308, + -0.10226701200008392, + -0.10226701200008392, + -0.09710594266653061, + -0.20846398174762726, + -0.20861200988292694, + -0.20846398174762726, + -0.21604765951633453, + -0.20846398174762726, + -0.18133831024169922, + -0.20861200988292694, + -0.18790338933467865, + -0.18790338933467865, + -0.21604765951633453, + -0.18790338933467865, + -0.14352166652679443, + -0.20625442266464233, + -0.19943153858184814, + -0.19943153858184814, + -0.19168482720851898, + -0.05576648190617561, + -0.05910889431834221, + -0.05910889431834221, + -0.07155555486679077, + -0.07155555486679077, + -0.08850586414337158, + -0.18875183165073395, + -0.1789701133966446, + -0.1789701133966446, + -0.1661754846572876, + -0.6448040008544922, + -0.6496341228485107, + -0.6496341228485107, + -0.6398969888687134, + -0.07295409590005875, + -0.07482805103063583, + -0.07482805103063583, + -0.07673190534114838, + 0.06761856377124786, + 0.04613082855939865, + 0.06761856377124786, + 0.046854306012392044, + 0.04613082855939865, + 0.015072520822286606, + 0.015072520822286606, + 0.03521725535392761, + 0.015072520822286606, + 0.046854306012392044, + 0.015072520822286606, + 0.0033630968537181616, + 0.015072520822286606, + -0.03852839767932892, + -0.10041829198598862, + -0.08850586414337158, + -0.3999614715576172, + -0.387655109167099, + -0.387655109167099, + -0.3734700679779053, + 0.8027365207672119, + 0.7970660328865051, + 0.7970660328865051, + 0.7941581606864929, + -0.39001360535621643, + -0.37994739413261414, + -0.37994739413261414, + -0.37115705013275146, + -0.5156568288803101, + -0.5128394961357117, + -0.5156568288803101, + -0.5191498398780823, + -0.5156568288803101, + -0.5015057325363159, + -0.5156568288803101, + -0.5214130878448486, + -0.5128394961357117, + -0.4921084940433502, + -0.4921084940433502, + -0.5191498398780823, + -0.4921084940433502, + -0.4631144404411316, + -0.4921084940433502, + -0.5214130878448486, + 0.2953074872493744, + 0.28691044449806213, + 0.28691044449806213, + 0.27626684308052063, + -0.2884698510169983, + -0.27448180317878723, + -0.2884698510169983, + -0.28825643658638, + -0.2884698510169983, + -0.29537737369537354, + -0.2884698510169983, + -0.2903723418712616, + -0.2884698510169983, + -0.302995890378952, + -0.2884698510169983, + -0.3011602461338043, + -0.2884698510169983, + -0.29137638211250305, + -0.2884698510169983, + -0.27541571855545044, + -0.2884698510169983, + -0.30790185928344727, + -0.27448180317878723, + -0.28416576981544495, + -0.28416576981544495, + -0.28825643658638, + -0.28416576981544495, + -0.29537737369537354, + -0.28416576981544495, + -0.2903723418712616, + -0.28416576981544495, + -0.302995890378952, + -0.28416576981544495, + -0.2842528522014618, + -0.28416576981544495, + -0.3011602461338043, + -0.28416576981544495, + -0.29137638211250305, + -0.28416576981544495, + -0.27541571855545044, + -0.28416576981544495, + -0.30790185928344727, + -0.5191498398780823, + -0.538263201713562, + -0.4816811680793762, + -0.4631144404411316, + -0.4816811680793762, + -0.5015057325363159, + -0.4631144404411316, + -0.4395192563533783, + 0.7645393013954163, + 0.7832547426223755, + 0.7832547426223755, + 0.7775911688804626, + -0.3633413314819336, + -0.3496210277080536, + -0.3496210277080536, + -0.3663530647754669, + -0.2900480329990387, + -0.2842528522014618, + -0.10962530970573425, + -0.11230327934026718, + -0.11230327934026718, + -0.12424065172672272, + 0.769564688205719, + 0.7659627199172974, + 0.7659627199172974, + 0.7389887571334839, + -0.10201362520456314, + -0.0971178188920021, + -0.0971178188920021, + -0.0931636393070221, + -0.0931636393070221, + -0.05541719123721123, + -0.0931636393070221, + -0.03852839767932892, + -0.0931636393070221, + -0.11994177848100662, + -0.0931636393070221, + -0.11094310879707336, + -0.0931636393070221, + -0.1187824085354805, + -0.0931636393070221, + -0.14352166652679443, + -0.0931636393070221, + -0.1223846897482872, + 0.4848799705505371, + 0.5112659335136414, + 0.5112659335136414, + 0.5322723984718323, + -0.25952717661857605, + -0.2713225781917572, + -0.25952717661857605, + -0.2643863558769226, + -0.25952717661857605, + -0.2937193810939789, + -0.25952717661857605, + -0.27204760909080505, + -0.25952717661857605, + -0.27111977338790894, + -0.25952717661857605, + -0.25595977902412415, + -0.25952717661857605, + -0.270538330078125, + -0.25952717661857605, + -0.2436538189649582, + -0.25952717661857605, + -0.2866290509700775, + -0.25952717661857605, + -0.27604708075523376, + -0.25952717661857605, + -0.2914799451828003, + -0.25952717661857605, + -0.23950080573558807, + -0.25952717661857605, + -0.24523861706256866, + -0.25952717661857605, + -0.2786833941936493, + -0.25952717661857605, + -0.23913370072841644, + -0.25952717661857605, + -0.2530812919139862, + -0.25952717661857605, + -0.25997400283813477, + -0.25952717661857605, + -0.2830897867679596, + -0.25952717661857605, + -0.2635177671909332, + -0.25952717661857605, + -0.2470264881849289, + -0.25952717661857605, + -0.28324243426322937, + -0.25952717661857605, + -0.2753133177757263, + -0.25952717661857605, + -0.24954405426979065, + -0.25952717661857605, + -0.2963760495185852, + -0.25952717661857605, + -0.2545636296272278, + -0.25952717661857605, + -0.2666919529438019, + -0.25952717661857605, + -0.24332374334335327, + -0.25952717661857605, + -0.25456705689430237, + -0.25952717661857605, + -0.2288864552974701, + -0.25952717661857605, + -0.2811521887779236, + -0.25952717661857605, + -0.2609971761703491, + -0.25952717661857605, + -0.23935137689113617, + -0.25952717661857605, + -0.27527138590812683, + -0.25952717661857605, + -0.23748749494552612, + -0.25952717661857605, + -0.2870829105377197, + -0.25952717661857605, + -0.23389090597629547, + -0.25952717661857605, + -0.26166683435440063, + -0.25952717661857605, + -0.2837805151939392, + -0.25952717661857605, + -0.23753859102725983, + -0.25952717661857605, + -0.2668837308883667, + -0.25952717661857605, + -0.26785948872566223, + -0.25952717661857605, + -0.29384899139404297, + -0.25952717661857605, + -0.226656973361969, + -0.25952717661857605, + -0.22755706310272217, + -0.25952717661857605, + -0.29368504881858826, + -0.25952717661857605, + -0.28397196531295776, + -0.25952717661857605, + -0.23125426471233368, + -0.25952717661857605, + -0.28973588347435, + -0.25952717661857605, + -0.2609197199344635, + -0.25952717661857605, + -0.2534004747867584, + -0.25952717661857605, + -0.2861894965171814, + -0.2713225781917572, + -0.25952717661857605, + -0.25952717661857605, + -0.2643863558769226, + -0.25952717661857605, + -0.2937193810939789, + -0.25952717661857605, + -0.27204760909080505, + -0.25952717661857605, + -0.27111977338790894, + -0.25952717661857605, + -0.25595977902412415, + -0.25952717661857605, + -0.270538330078125, + -0.25952717661857605, + -0.2436538189649582, + -0.25952717661857605, + -0.2866290509700775, + -0.25952717661857605, + -0.27604708075523376, + -0.25952717661857605, + -0.2914799451828003, + -0.25952717661857605, + -0.23950080573558807, + -0.25952717661857605, + -0.24523861706256866, + -0.25952717661857605, + -0.2786833941936493, + -0.25952717661857605, + -0.23913370072841644, + -0.25952717661857605, + -0.2530812919139862, + -0.25952717661857605, + -0.25997400283813477, + -0.25952717661857605, + -0.2830897867679596, + -0.25952717661857605, + -0.2635177671909332, + -0.25952717661857605, + -0.2470264881849289, + -0.25952717661857605, + -0.28324243426322937, + -0.25952717661857605, + -0.2753133177757263, + -0.25952717661857605, + -0.24954405426979065, + -0.25952717661857605, + -0.2963760495185852, + -0.25952717661857605, + -0.2545636296272278, + -0.25952717661857605, + -0.2666919529438019, + -0.25952717661857605, + -0.24332374334335327, + -0.25952717661857605, + -0.25456705689430237, + -0.25952717661857605, + -0.2288864552974701, + -0.25952717661857605, + -0.2811521887779236, + -0.25952717661857605, + -0.2609971761703491, + -0.25952717661857605, + -0.23935137689113617, + -0.25952717661857605, + -0.27527138590812683, + -0.25952717661857605, + -0.23748749494552612, + -0.25952717661857605, + -0.2870829105377197, + -0.25952717661857605, + -0.23389090597629547, + -0.25952717661857605, + -0.26166683435440063, + -0.25952717661857605, + -0.2837805151939392, + -0.25952717661857605, + -0.23753859102725983, + -0.25952717661857605, + -0.2668837308883667, + -0.25952717661857605, + -0.26785948872566223, + -0.25952717661857605, + -0.29384899139404297, + -0.25952717661857605, + -0.226656973361969, + -0.25952717661857605, + -0.22755706310272217, + -0.25952717661857605, + -0.29368504881858826, + -0.25952717661857605, + -0.28397196531295776, + -0.25952717661857605, + -0.23125426471233368, + -0.25952717661857605, + -0.28973588347435, + -0.25952717661857605, + -0.2609197199344635, + -0.25952717661857605, + -0.2534004747867584, + -0.25952717661857605, + -0.2861894965171814, + -0.5383478403091431, + -0.5282644033432007, + -0.5282644033432007, + -0.5466213822364807, + -0.6380331516265869, + -0.6560540795326233, + -0.6560540795326233, + -0.6470147967338562, + -0.5525453090667725, + -0.5309489965438843, + -0.5309489965438843, + -0.5100838541984558, + -0.5100838541984558, + -0.49381759762763977, + 0.22422771155834198, + 0.22331693768501282, + 0.22422771155834198, + 0.23189008235931396, + 0.22422771155834198, + 0.21367980539798737, + 0.22422771155834198, + 0.2360682487487793, + 0.22331693768501282, + 0.22085167467594147, + 0.22085167467594147, + 0.22788332402706146, + 0.22085167467594147, + 0.23827967047691345, + 0.22085167467594147, + 0.23189008235931396, + 0.22085167467594147, + 0.22557991743087769, + 0.22085167467594147, + 0.21367980539798737, + 0.22085167467594147, + 0.2360682487487793, + 0.24388493597507477, + 0.22788332402706146, + 0.24388493597507477, + 0.23827967047691345, + 0.24388493597507477, + 0.22557991743087769, + 0.24388493597507477, + 0.2512604892253876, + 0.24388493597507477, + 0.264035701751709, + 0.24388493597507477, + 0.2536758482456207, + 0.24388493597507477, + 0.2693658471107483, + 0.24388493597507477, + 0.2729148864746094, + -0.08366072922945023, + -0.09718482941389084, + 0.2715923488140106, + 0.2623029947280884, + 0.2715923488140106, + 0.28382933139801025, + 0.2715923488140106, + 0.2821958661079407, + 0.6424797177314758, + 0.6100370287895203, + 0.6100370287895203, + 0.5900293588638306, + 0.5900293588638306, + 0.6211495399475098, + 0.5900293588638306, + 0.6175417900085449, + 0.5900293588638306, + 0.6304752230644226, + 0.5900293588638306, + 0.6256005167961121, + 0.5900293588638306, + 0.5501664280891418, + -0.651452898979187, + -0.6499865651130676, + -0.651452898979187, + -0.6685177683830261, + -0.651452898979187, + -0.6542941927909851, + -0.651452898979187, + -0.648344874382019, + -0.651452898979187, + -0.6619765162467957, + -0.6499865651130676, + -0.6441245675086975, + -0.6441245675086975, + -0.6685177683830261, + -0.6441245675086975, + -0.6542941927909851, + -0.6441245675086975, + -0.648344874382019, + -0.6441245675086975, + -0.6619765162467957, + -0.9250562191009521, + -0.8884454369544983, + -0.8884454369544983, + -0.8998395800590515, + -0.48677825927734375, + -0.49381759762763977, + 0.3294863998889923, + 0.3332645893096924, + 0.3294863998889923, + 0.3372979164123535, + 0.3332645893096924, + 0.34781020879745483, + 0.6277804970741272, + 0.6431485414505005, + 0.6431485414505005, + 0.633549153804779, + 0.7015810012817383, + 0.727477490901947, + 0.727477490901947, + 0.7399715781211853, + 0.727477490901947, + 0.7635132074356079, + 0.727477490901947, + 0.7519322037696838, + 0.6682232022285461, + 0.6304752230644226, + 0.3372979164123535, + 0.35328981280326843, + 0.60050368309021, + 0.628084659576416, + 0.628084659576416, + 0.6515033841133118, + -0.09332651644945145, + -0.08817565441131592, + -0.08817565441131592, + -0.07886124402284622, + 0.6589142680168152, + 0.6256005167961121, + -0.25594356656074524, + -0.23992124199867249, + -0.23992124199867249, + -0.22997358441352844, + 0.5183417797088623, + 0.5501664280891418, + 0.2512604892253876, + 0.26815709471702576, + 0.26815709471702576, + 0.264035701751709, + 0.26815709471702576, + 0.2536758482456207, + 0.26815709471702576, + 0.2693658471107483, + 0.26815709471702576, + 0.2729148864746094, + 0.2656223773956299, + 0.2827841341495514, + 0.2656223773956299, + 0.28189313411712646, + 0.2656223773956299, + 0.2652592957019806, + 0.2656223773956299, + 0.2723097503185272, + 0.2656223773956299, + 0.2588852345943451, + 0.2827841341495514, + 0.2730208933353424, + 0.2730208933353424, + 0.29398611187934875, + 0.2730208933353424, + 0.3067771792411804, + 0.2730208933353424, + 0.28189313411712646, + 0.2730208933353424, + 0.30952882766723633, + 0.2730208933353424, + 0.27488598227500916, + 0.2730208933353424, + 0.28465351462364197, + 0.2730208933353424, + 0.2652592957019806, + 0.2730208933353424, + 0.2723097503185272, + 0.2730208933353424, + 0.2588852345943451, + -0.49292269349098206, + -0.47675079107284546, + 0.3371036648750305, + 0.30952882766723633, + 0.29026687145233154, + 0.27488598227500916, + 0.29026687145233154, + 0.28465351462364197, + 0.057853519916534424, + 0.05967482924461365, + 0.05967482924461365, + 0.0623006671667099, + -0.8025454878807068, + -0.8455262780189514, + -0.8455262780189514, + -0.8818098306655884, + -0.8455262780189514, + -0.8742142915725708, + -0.8954703211784363, + -0.8742142915725708, + 0.2918785512447357, + 0.2830866277217865, + 0.2830866277217865, + 0.29232385754585266, + 0.29232385754585266, + 0.31327182054519653, + 0.8911975622177124, + 0.8634328246116638, + 0.8634328246116638, + 0.838873028755188, + -0.7138781547546387, + -0.7031928896903992, + -0.7031928896903992, + -0.7472494840621948, + -0.7031928896903992, + -0.7026100158691406, + -0.7472494840621948, + -0.7851635813713074, + 0.3348022401332855, + 0.31327182054519653, + -0.5645225048065186, + -0.5761395692825317, + -0.5761395692825317, + -0.5943344235420227, + -0.5943344235420227, + -0.610040545463562, + -0.5943344235420227, + -0.6172881126403809, + 0.7457312345504761, + 0.712175190448761, + 0.7457312345504761, + 0.735801100730896, + 0.712175190448761, + 0.7284021377563477, + 0.7284021377563477, + 0.735801100730896, + -0.610040545463562, + -0.6093736886978149, + -0.6093736886978149, + -0.6172881126403809, + -0.8167903423309326, + -0.7851635813713074, + 0.06719189137220383, + 0.055944062769412994, + 0.06719189137220383, + 0.060050979256629944, + 0.06719189137220383, + 0.08082554489374161, + 0.06719189137220383, + 0.10080938041210175, + 0.06719189137220383, + 0.0838126465678215, + 0.06719189137220383, + 0.054724909365177155, + 0.06719189137220383, + 0.05996822938323021, + 0.06719189137220383, + 0.07464462518692017, + 0.06719189137220383, + 0.06981082260608673, + 0.06719189137220383, + 0.043654464185237885, + 0.06719189137220383, + 0.04555360600352287, + 0.06719189137220383, + 0.0719810202717781, + 0.06719189137220383, + 0.07511748373508453, + 0.055944062769412994, + 0.0587504543364048, + 0.0587504543364048, + 0.060050979256629944, + 0.0587504543364048, + 0.08082554489374161, + 0.0587504543364048, + 0.029771890491247177, + 0.0587504543364048, + 0.0838126465678215, + 0.0587504543364048, + 0.054724909365177155, + 0.0587504543364048, + 0.05996822938323021, + 0.0587504543364048, + 0.07464462518692017, + 0.0587504543364048, + 0.06981082260608673, + 0.0587504543364048, + 0.043654464185237885, + 0.0587504543364048, + 0.04555360600352287, + 0.0587504543364048, + 0.0719810202717781, + 0.0587504543364048, + 0.07511748373508453, + 0.027923161163926125, + 0.019567880779504776, + 0.019567880779504776, + 0.019499368965625763, + -0.11671764403581619, + -0.09137146919965744, + -0.11671764403581619, + -0.1344268023967743, + -0.11671764403581619, + -0.1336839646100998, + -0.11671764403581619, + -0.12791851162910461, + -0.09137146919965744, + -0.07826414704322815, + -0.12791851162910461, + -0.14570511877536774, + -0.12791851162910461, + -0.13490332663059235, + -0.14570511877536774, + -0.1336839646100998, + -0.1336839646100998, + -0.13490332663059235, + -0.1344268023967743, + -0.1515686810016632, + 0.21680517494678497, + 0.23481617867946625, + 0.21680517494678497, + 0.21258874237537384, + 0.23481617867946625, + 0.2530476450920105, + 0.21258874237537384, + 0.21768324077129364, + -0.004340399522334337, + -0.008544227108359337, + -0.008544227108359337, + -0.01753058098256588, + -0.01753058098256588, + -0.05541719123721123, + -0.01753058098256588, + 0.0033630968537181616, + 0.3364226222038269, + 0.32548457384109497, + 0.32548457384109497, + 0.315561980009079, + 0.050811879336833954, + 0.03521725535392761, + 0.4388350546360016, + 0.42009997367858887, + 0.42009997367858887, + 0.4131888151168823, + -0.6178175806999207, + -0.6389018297195435, + -0.6389018297195435, + -0.66298907995224, + -0.8610907793045044, + -0.8337599635124207, + -0.8337599635124207, + -0.7926745414733887, + 0.10080938041210175, + 0.1251881867647171, + 0.020305121317505836, + 0.029771890491247177, + -0.5618915557861328, + -0.5386634469032288, + -0.5386634469032288, + -0.510862410068512, + -0.510862410068512, + -0.48105573654174805, + -0.14558693766593933, + -0.11994177848100662, + -0.14558693766593933, + -0.1187824085354805, + -0.14558693766593933, + -0.1223846897482872, + -0.14558693766593933, + -0.18133831024169922, + -0.11994177848100662, + -0.11094310879707336, + -0.1187824085354805, + -0.11094310879707336, + -0.4522997736930847, + -0.48105573654174805 + ] + }, + { + "hoverinfo": "text", + "marker": { + "color": [ + "red", + "blue", + "red", + "blue", + "red", + "blue", + "red", + "blue", + "red", + "blue", + "red", + "red", + "blue", + "red", + "blue", + "red", + "red", + "blue", + "red", + "red", + "blue", + "red", + "red", + "blue", + "red", + "blue", + "red", + "red", + "red", + "red", + "red", + "red", + "blue", + "blue", + "red", + "blue", + "red", + "blue", + "red", + "blue", + "red", + "red", + "blue", + "red", + "blue", + "red", + "blue", + "red", + "blue", + "red", + "red", + "blue", + "blue", + "red", + "blue", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "red", + "blue", + "red", + "red", + "blue", + "red", + "red", + "blue", + "red", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue", + "blue" + ], + "colorscale": [ + [ + 0, + "#440154" + ], + [ + 0.1111111111111111, + "#482878" + ], + [ + 0.2222222222222222, + "#3e4989" + ], + [ + 0.3333333333333333, + "#31688e" + ], + [ + 0.4444444444444444, + "#26828e" + ], + [ + 0.5555555555555556, + "#1f9e89" + ], + [ + 0.6666666666666666, + "#35b779" + ], + [ + 0.7777777777777778, + "#6ece58" + ], + [ + 0.8888888888888888, + "#b5de2b" + ], + [ + 1, + "#fde725" + ] + ], + "line": { + "color": "rgb(50,50,50)", + "width": 0.5 + }, + "size": 6, + "symbol": "circle" + }, + "mode": "markers", + "name": "actors", + "text": [ + "1. Freiburger Solarfonds Beteiligungs-KG", + "Jürgen Wetzel", + "Aurelius KG", + "Peter Esser", + "Bayer Design Fritz Bayer GmbH & Co KG", + "Michael Georg Neubauer", + "Bayern Immobilien Höller/Lechner KG", + "Erwin Höller", + "Bayern-Osteuropa OHG Travel Consulting Marketing", + "Eugen Guwa", + "Anna Guwa", + "Bayern Treuhand Obermeier & Kilger KG Wirtschaftsprüfungsgesellschaft", + "Hugo Obermeier", + "Bayern-Park KG", + "Eva Leitl", + "Silke Holzner", + "BAYERN-RALLYE Karussellbetrieb OHG", + "Christine Fahrenschon", + "Maximilian Fahrenschon", + "Bayer Rettungstechnik oHG", + "Peter Bayer", + "Bernd Klein", + "Deutsche Wohn- und Gewerbebau KG", + "Ottmar Mühlberger", + "E. Merck KG", + "Frank Stangenberg-Haverkamp", + "Johannes Baillou", + "Belén Garijo Lopez", + "Kai Beckmann", + "Marcus Kuhnert", + "Matthias Heinzel", + "Peter Guenter", + "Emanuel-Merck-Vermögens-KG", + "E. Merck Beteiligungen KG", + "Frye Ströer Legehennen KG", + "Reinhard Frye", + "Fielmann Augenoptik AG & Co. oHG Harburg-City", + "Sirous Shahsiah", + "Henkel Familien KG", + "Anna Henkel", + "Thomas Henkel", + "Hanspeter Grassl KG", + "Sebastian Graßl", + "Henkel KG Generalagentur", + "Ronny Polack", + "Grundstücksgesellschaft Pfingstanger Salzgitter Bad KG", + "Günter Nicklas", + "K & S Citystore OHG", + "Gesine Tanja Föller-Klügl", + "Carsten Klügl", + "K.M.S. Doruk Computer Systeme OHG", + "Andrea Doruk", + "MERCK Kommanditgesellschaft auf Aktien", + "MetroPolis Grundstücks oHG", + "Donat Kühne", + "Andreas Stahl", + "Mina Ansari", + "Klaus Markus Dahlmanns", + "Gregor Fachinger", + "David Ferré", + "Ralf Fischer", + "Ekaterina Grishina", + "Gerald Hartung", + "Eduard Hinken", + "Vyacheslav Antoliyovych Ivchenko", + "Reinhard Janssen", + "Karin Lenz", + "Petra Mai-Hartung", + "Klaus-Jürgen Müller", + "Gudela Noack", + "Rico Noack", + "Peter Uwe Petersen", + "Zhiyun Ren", + "Denis Sapozhnikov", + "Michael Scheele", + "Jochen Scholl", + "Arnd Schröder", + "Michael Süßkind", + "Andreas Thot", + "Jianshen Zhou", + "Ursula Deibler", + "Joachim Hahn", + "Ralf Karwat", + "Martina Mahlke", + "Jörgen Pisarz", + "Frank Weisser", + "Gerhard Löhlein", + "Franz Rauch", + "Bogumila Szyja", + "Karin Timmerberg", + "Charlotte Weichselsdorfer", + "Rainer Weichselsdorfer", + "Bernhard Heitele", + "Zeynep Ayse Hicsasmaz-Heitele", + "Katharina von Falkenhayn", + "Franziska von Malaisé", + "Heinrich Brendel", + "Han Deng", + "Ulrike Köhler", + "Thomas Köhler", + "Jochem Lange", + "Annette Ludwig", + "Friederike Maurer", + "Willi Maurer", + "Andreas Ramshorn", + "Ingo Schuck", + "Johann-Friedrich von der Borch", + "Richard Weiler", + "Johannes Busch", + "Christine Ehard", + "Thomas Eismann", + "Stefanie Frensch", + "Holger Gleich", + "Sonja Kreibich", + "Henrik Thomsen", + "Kerstin Herzinger", + "Iris Kraus", + "Volker Kreibich", + "Barbara Kreibich", + "Olivier Krenz", + "Andrea Layer", + "Ingrid Schuff", + "Harald Schuff", + "Wolfgang Siegel", + "Helmut Teichmann", + "Dirk Broneske", + "Hanns Heinrich Frensch", + "Monika Frensch", + "Nicole Gerken-Broneske", + "Andriy Krantvays", + "Alfredo Perl", + "Olaf Rehahn", + "Susanne Reiner-Koppmann", + "Anna Spektor", + "Ilona Steiert", + "Kerstin Viot", + "Dirk Weichselsdorfer", + "Wolfgang Becker", + "Robert Dilla", + "Aldona Kihl", + "Martin Winkler", + "Gerda Winkler", + "Claudia Beppler-Spahl", + "Hauke Hermann", + "Nancy Stahl", + "Ingrid Maaß", + "Sebastian Schneider", + "Thilo Spahl", + "Runa Speer", + "Karin Blumenthal", + "Agnes Kolodziej", + "Jörg Langert", + "Claudia Langert", + "Sebastian Metzger", + "Carl-Wilhelm Oesterley", + "Burkhard Stangl", + "Peter Geibel", + "Stefanie Granitza", + "David Granitza-Schultz", + "Stephanie Reimert", + "Ellen Hautmann", + "Jens Kaffenberger", + "Dandy Kleybrink", + "Lia Kleybrink", + "Martin Langendorf", + "Mathilde Langendorf", + "Peter Maier-Stein", + "Runhao Min", + "Thomas Neumann", + "Gerd Pasemann", + "Jan Reimert", + "Helene Renger", + "Volker Stampe", + "Gudrun Stein", + "York von Falkenhayn", + "Oscar Zach", + "Doris Bischler", + "Markus Bischof", + "Matthias Kühnle", + "Karina Schimert-zu Hohenlohe", + "Cristiana da Silva", + "Jörg Löbig", + "Stefan Krause", + "Dirk Kudlicz", + "Rolf Lange", + "Andreas Veauthier", + "Sebastian Bukow", + "Arndt Bercher", + "Nicole Bercher-von Jordan", + "Robert Birker", + "Caprice Birker", + "Nicola Brase", + "Stephan DuCharme", + "Claudia Kaloff", + "Vladimir Kotiasvili", + "Otto Kückmann", + "Winrich Kyas", + "Sylke Kyas-Litt", + "Holger Matthies", + "Roland Mohr", + "Harald Rammler", + "Seyed Mohammad Seyed Makki", + "Brigitte Trattner", + "Christine Buchheit", + "Horand Knaup", + "Nevin Dogan", + "Levent Dogan", + "Elisabeth Dubbers", + "Stella Roidi-Schnorrenberg", + "Julius Schellmann", + "Ekkehard Roidis-Schnorrenberg", + "Michael Lefmann", + "Wolf Christian Boes", + "Rupert Dörfler", + "Carsten Eckert", + "Hans Günter Klein", + "Peter Molitor", + "Hasan Ali San", + "Zeynep San", + "Biljana Boes", + "Florian Will", + "Michael Narazny", + "Angelika Weidemann", + "Norbert Brömme", + "Thomas Eggers", + "Katja Simons", + "Nicholas Whitaker", + "Stephan Kühne", + "Hans-Jürgen Braun", + "Georg Denninger", + "Rebekka Denninger", + "Ulrich Müller Brito", + "Michael Rost", + "Stefan Sommer", + "Margarete Stephan", + "Frank Weber", + "Michael Wrede", + "Reinhard Gundelwein", + "Philipp Kühne", + "Sabrina Meyer", + "Helga Pilz", + "Dieter Pilz", + "Elisabeth Schaper", + "Thomas Schaper", + "Peter Buntrock", + "Angela Hoffmann", + "Alisa Krasylna", + "Kirsten Peters", + "Oda Hagemeier", + "Yuyi Huang", + "Erich Paproth", + "Annette Wolpert", + "Sebastian Aman", + "Andreas Roland Mollenkopf", + "Barbara Doll", + "Winfried Rademacher", + "Markus Trefz", + "Sabine Trefz", + "Jürgen Wenzler", + "Alexander Schwardmann", + "Miron Chestakov", + "Lev Chestakov", + "Raphaela Meis", + "Matthias Meis", + "Anja Markfort", + "Sibille Allgayer", + "Helmut Dietrich", + "Richard Kurka", + "Sarah Julia Lee", + "Lena Eleonore Staiger", + "Maja Bernadette Staiger", + "Benjamin Rohé", + "Jörn Averkamp", + "Thomas Grube", + "Yi Li", + "Natthinee Mohr", + "Sonia Susanna Mohrmann Oviedo", + "Florian Peter Pröscholdt", + "Manuel Scholten", + "Franziska Luise Dorothea Weller", + "Nordex-Glas oHG", + "Ali Hakan Sualp", + "Sevgi Karaarslan", + "\"PETER G. OHG,\" - Men & Women", + "Leonie Greis", + "Daniela Greis", + "REWE-Markt Ströer OHG", + "Silvio Ströer", + "Sartorius KG", + "Meik Sartorius", + "Aurubis AG", + "Aurubis Stolberg GmbH & Co. KG", + "Aurubis Stolberg Verwaltungs-GmbH", + "Aurubis Stolberg Asset GmbH & Co. KG", + "Aurubis Stolberg Asset Verwaltungs-GmbH", + "BayWa r.e. Wind Verwaltungs GmbH", + "BayWa r.e. Windparkportfolio 1 GmbH & Co. KG", + "BayWa r.e. Wind 20+ GmbH", + "BayWa BGM Verwaltungs GmbH", + "BayWa Bau- & Gartenmärkte GmbH & Co. KG", + "BayWa Pensionsverwaltung GmbH", + "Covestro Intellectual Property Verwaltungs GmbH", + "Covestro Intellectual Property GmbH & Co. KG", + "Covestro Deutschland AG", + "Brenntag Vermögensmanagement GmbH", + "Brenntag European Services GmbH & Co. KG", + "Brenntag Beteiligungs GmbH", + "Brenntag Foreign Holding GmbH", + "CM Komplementär 03-018 GmbH & Co. KG", + "BMW INTEC Beteiligungs GmbH", + "BMW Beteiligungs GmbH & Co. KG", + "BMW Vermögensverwaltungs GmbH", + "CM Komplementär 03-019 GmbH & Co. KG", + "BayWa r.e. Asset Verwaltungs GmbH", + "BayWa r.e. Solardächer II GmbH & Co. KG", + "BayWa r.e. AG", + "Covestro Procurement Services Verwaltungs GmbH", + "Covestro Procurement Services GmbH & Co. KG", + "Deutsche Post Adress Geschäftsführungs GmbH", + "Deutsche Post Adress GmbH & Co. KG", + "Deutsche Post Adress Beteiligungsgesellschaft mbH", + "Deutsche Post Verwaltungs Objekt GmbH", + "Deutsche Post Pensions-Treuhand GmbH & Co. KG", + "Deutsche Post AG", + "Deutsche Wohnen Zweite Fondsbeteiligungs GmbH", + "Deutsche Wohnen Beteiligungsverwaltungs GmbH & Co. KG", + "Deutsche Wohnen Fondsbeteiligungs GmbH", + "EnBW Real Estate GmbH", + "Der neue Stöckach GmbH & Co KG", + "Neckarwerke Stuttgart GmbH", + "EnBW He Dreiht Management GmbH", + "EnBW He Dreiht GmbH & Co. KG", + "EnBW Offshore 4 GmbH", + "EnBW Solar Verwaltungsgesellschaft mbH", + "EnBW Solarpark Lindenau GmbH & Co. KG", + "EnBW Solar GmbH", + "EnBW Solarpark Gickelfeld GmbH & Co. KG", + "EnBW City GmbH & Co. KG", + "EnBW Immobilienbeteiligungen GmbH", + "EnBW Solarpark Gückelhirn GmbH & Co. KG", + "EnBW Solarpark Sonnewalde GmbH & Co. KG", + "EnBW Solarpark Kroppen GmbH & Co. KG", + "EnBW Energie Baden-Württemberg AG", + "EnBW Übertragungsnetz Immobiliengesellschaft mbH & Co. KG", + "EnBW Übertragungsnetz Immobilien Verwaltungsgesellschaft mbH", + "EnBW WindInvest Management GmbH", + "EnBW WindInvest GmbH & Co. KG", + "EnBW Windkraftprojekte GmbH", + "EnBW Baltic 1 Verwaltungsgesellschaft mbH", + "EnBW Baltic 1 GmbH & Co. KG", + "EnBW Offshore 1 GmbH", + "EnBW SunInvest Management GmbH", + "EnBW SunInvest GmbH & Co. KG", + "EnBW Baltic 2 Management GmbH", + "EnBW Baltic 2 GmbH & Co. KG", + "EnBW Offshore 2 GmbH", + "EnBW Solarpark Rot an der Rot GmbH & Co. KG", + "EnBW Albatros Management GmbH", + "EnBW Albatros GmbH & Co. KG", + "EnBW Offshore 3 GmbH", + "EnBW Solarpark Emmingen-Liptingen GmbH & Co. KG", + "EnBW Solarpark Groß Lübbenau GmbH & Co. KG", + "BayWa r.e. EMEA IPP Holding GmbH", + "Dörenhagen Windenergieanlagen GmbH & Co. KG", + "BayWa r.e. IPP Verwaltungs GmbH", + "EnBW Solarpark Göritz GmbH & Co. KG", + "E.ON Real Estate GmbH", + "E.ON Grund&Boden GmbH & Co. KG", + "E.ON Grund&Boden Beteiligungs GmbH", + "EVGA Grundstücks- und Gebäudemanagement GmbH & Co. KG", + "Fielmann Aktiengesellschaft", + "Fielmann AG & Co. Brackwede KG", + "Fielmann Finanzservice GmbH", + "Fielmann AG & Co Bramfeld KG", + "Fielmann AG & Co. Centrum OHG", + "Fielmann AG & Co. Elberfeld OHG", + "Fielmann AG & Co. Hiltrup OHG", + "Fielmann AG & Co. Ochsenzoll OHG", + "Fielmann AG & Co. Rahlstedt OHG", + "Fielmann AG & Co. Rethelstraße OHG", + "Fielmann AG & Co. City-Arkaden OHG", + "Fielmann AG & Co. Mülheim OHG", + "Fielmann AG & Co. Oberkassel OHG", + "Fielmann AG & Co. Eimsbüttel OHG", + "Fielmann AG & Co. Venloer Straße OHG", + "Fielmann AG & Co. Wandsbek OHG", + "Fielmann AG & Co. Essen-Steele OHG", + "Fielmann AG & Co. Jahnplatz OHG", + "Fielmann AG & Co. OHG", + "Fielmann AG & Co. oHG Kalk", + "Fielmann AG & Co. Ottensen OHG", + "Fielmann AG & Co. am Markt KG", + "Fielmann AG & Co. Paunsdorf-Center OHG", + "Fielmann AG & Co-Volksdorf OHG", + "Fielmann AG & Co. oHG City-Galerie", + "Fielmann AG & Co. Othmarschen OHG", + "EWE HOCHTIEF Ladepartner Verwaltungs-GmbH", + "EWE Go HOCHTIEF Ladepartner GmbH & Co. KG", + "HOCHTIEF Ladepartner GmbH", + "Fielmann AG & Co. Harburg Sand OHG", + "Fielmann AG & Co. im Centrum OHG", + "Fielmann AG & Co. KG", + "Fielmann AG & Co. Barbarossaplatz OHG", + "Fielmann AG & Co. Bonn-Bad Godesberg OHG", + "Fielmann AG & Co. im Alstertal-Einkaufszentrum OHG", + "Fielmann AG & Co. Bad Cannstatt OHG", + "Fielmann AG & Co. Buer OHG", + "Fielmann AG & Co. Barmen OHG", + "Fielmann AG & Co. im Centrum KG", + "Fielmann AG & Co. Derendorf OHG", + "Fielmann AG & Co. oHG Ludwigsplatz", + "Fielmann AG & Co. Pferdemarkt OHG", + "Fielmann AG & Co. Zentrum KG", + "Fielmann AG & Co. Ebertplatz KG", + "Fielmann AG & Co. Klosterstraße OHG", + "Fielmann AG & Co Rathaus OHG", + "Fraport AG Frankfurt Airport Services Worldwide", + "Fraport Immobilienservice- u.-entwicklungs GmbH &Co.KG", + "Fraport Real Estate Verwaltungs GmbH", + "Fielmann AG & Co. Bergedorf KG", + "Fielmann AG & Co. oHG Allee-Center", + "Fielmann AG & Co. Essen-Rüttenscheid OHG", + "Fielmann AG & Co Wattenscheid KG", + "Fielmann AG & Co. Hamborn OHG", + "Fielmann AG & Co. Westliche Kaiserstraße KG", + "Fielmann AG & Co. An der Rothenburg OHG", + "Fielmann AG & Co. Billstedt KG", + "Fielmann AG & Co. Chorweiler KG", + "Fielmann AG & Co. oHG Hindenburgstraße", + "Rheinmetall Immobilien Hafenmole GmbH", + "GVMS Grundstücksverwaltung Service GmbH & Co. KG", + "Rheinmetall Automotive AG", + "STW Grundstücksverwaltung GmbH", + "GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Mönchengladbach ZV II KG", + "GBS Gesellschaft für Unternehmensbeteiligungen mbH", + "GKF Vermögensverwaltungsgesellschaft mbH", + "GKF Vermögensverwaltungsgesellschaft mbH & Co. Gewerbegrundstücke KG", + "GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Saar-Grund KG", + "Henkel Management AG", + "Henkel AG & Co. KGaA", + "GKF Vermögensverwaltungsgesellschaft mbH & Co. Objekt Hamm KG", + "GKF Vermögensverwaltungsgesellschaft mbH & Co. 25. Objekt - KG", + "INDUS Holding Aktiengesellschaft", + "GSR Ventiltechnik GmbH & Co. KG", + "HOCHTIEF PPP Bundeswehrpartner FWK München Verwaltungs GmbH", + "HOCHTIEF PPP Bundeswehrpartner FWK München GmbH & Co. KG", + "HOCHTIEF PPP 1. Holding GmbH & Co. KG", + "KSB Energie Verwaltungs GmbH", + "KSB Erneuerbare Energien Eins GmbH & Co. KG", + "KSB Energie GmbH", + "Karl Simon GmbH & Co. KG", + "KSB Erneuerbare Energien Drei GmbH & Co. KG", + "LANXESS Trademark Management GmbH", + "LANXESS Trademark GmbH & Co. KG", + "LANXESS Deutschland GmbH", + "HOCHTIEF PPP 1. Holding Verwaltungsgesellschaft mbH", + "HOCHTIEF PPP Solutions GmbH", + "KS Grundstücksverwaltung Beteiligungs-GmbH", + "KS Grundstücksverwaltung GmbH & Co. KG", + "AIB Verwaltungs GmbH", + "Immobilien-Vermietungsgesellschaft von Quistorp GmbH & Co. Objekt Altlandsberg KG", + "METRO Leasing GmbH", + "KSB Erneuerbare Energien Fünf GmbH & Co. KG", + "KUKA Real Estate Management GmbH", + "KUKA Real Estate GmbH & Co. KG", + "KUKA Aktiengesellschaft", + "Schaeffler Wälzlager Beteiligungsgesellschaft mbH", + "IHO Holding GmbH & Co. KG", + "INA-Holding Schaeffler GmbH & Co. KG", + "IHO Management GmbH", + "ATESTEO Management GmbH", + "HOCHTIEF PPP Schulpartner Köln Rodenkirchen Verwaltungs GmbH", + "HOCHTIEF PPP Schulpartner Köln Rodenkirchen GmbH & Co. KG", + "HORNGROUP Holding GmbH & Co. KG", + "Kaufhalle GmbH & Co. Objekt Lager Apfelstädt KG", + "Kaufhalle GmbH", + "HUGO BOSS Beteiligungsgesellschaft mbH", + "HUGO BOSS Vermögensverwaltung GmbH & Co. KG", + "HUGO BOSS AG", + "KSB Windfeld Parstein GmbH & Co. KG", + "LMH Immobilien Holding GmbH & Co.KG", + "LMH Immobilien GmbH & Co. KG", + "Linde Material Handling GmbH", + "HOCHTIEF PPP Verwaltungs GmbH", + "HOCHTIEF PPP Schulpartner Köln P 1 GmbH & Co. KG", + "Infineon Technologies AG", + "Infineon Technologies Bipolar GmbH & Co. KG", + "Infineon Technologies Bipolar Verwaltungs GmbH", + "HOCHTIEF PPP Schulpartner Frankfurt am Main Verwaltungs GmbH", + "HOCHTIEF PPP Schulpartner Frankfurt am Main GmbH & Co. KG", + "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Porta-Westfalica KG", + "Metro Cash & Carry Grundstücksverwaltungsgesellschaft mbH", + "Mainova Erneuerbare Energien Verwaltungs GmbH", + "Mainova Windpark Niederhambach GmbH & Co. KG", + "Mainova Erneuerbare Energien GmbH & Co. KG", + "Mainova Erneuerbare Energien Management GmbH", + "Mainova Aktiengesellschaft", + "Mainova Windpark Siegbach GmbH & Co. KG", + "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Schwelm KG", + "Merck Life Science KGaA", + "Merck Schuchardt OHG", + "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Hamburg-Altona KG", + "Mainova Wind Onshore Verwaltungs GmbH", + "Mainova Gemeinschaftswindpark Hohenahr GmbH & Co. KG", + "Zweite Mainova Erneuerbare Energien Verwaltungs GmbH", + "Mainova PV_Park 1GmbH & Co. KG", + "GEHE Immobilien Verwaltungs-GmbH", + "MATIS Immobilien OHG", + "ABG Apotheken-Beratungsgesellschaft mbH", + "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt München-Pasing KG", + "Mainova PV_Park 3 GmbH & Co. KG", + "MCC Grundstücksverwaltungsgesellschaft mbH & Co. Objekt Berlin-Friedrichshain KG", + "Mainova Windpark Kaisten GmbH & Co. KG", + "Mainova Windpark Kloppenheim GmbH & Co. KG", + "Mainova Windpark Remlingen GmbH & Co. KG", + "Nordex Beteiligungen GmbH", + "Nordex Energy SE & Co. KG", + "Nordex SE", + "Nordex Forum II Verwaltungs GmbH", + "Nordex Forum II GmbH & Co. KG", + "Minebea Intec Bovenden Verwaltungs-GmbH", + "Minebea Intec Bovenden GmbH & Co. KG", + "Minebea Intec GmbH", + "METRO Dienstleistungs-Holding GmbH", + "MIP METRO Group Intellectual Property GmbH & Co. KG", + "MIP METRO Group Intellectual Property Management GmbH", + "METRO PROPERTIES Management GmbH", + "METRO PROPERTIES GmbH & Co. KG", + "CECONOMY AG", + "METRO AG", + "Minebea Intec Aachen Verwaltungs-GmbH", + "Minebea Intec Aachen GmbH & Co. KG", + "Rheinmetall Aktiengesellschaft", + "Rheinmetall Immobilien Kassel GmbH & Co. KG", + "Rheinmetall Immobilien GmbH", + "HOCHTIEF Solutions Real Estate GmbH", + "Projektgesellschaft Konrad-Adenauer-Ufer Köln GmbH & Co. KG", + "HOCHTIEF Solutions Real Estate Beteiligungsverwaltungsgesellschaft mbH", + "Rheinmetall Immobilien VEGA GmbH & Co. KG", + "Rheinmetall Immobilien Hamburg Friedensallee GmbH", + "NIGRA Verwaltung GmbH & Co. Objekt Neunkirchen KG", + "NWS Grundstücksmanagement GmbH & Co. KG", + "Rheinmetall Immobilien Flensburg GmbH & Co. KG", + "MWFS Zwischenholding Management GmbH", + "MWFS Zwischenholding GmbH & Co. KG", + "Zalando SE", + "Portokali Property Development III SE & Co. KG", + "Zalando Operations GmbH", + "Salzgitter Aktiengesellschaft", + "Salzgitter Hydroforming GmbH & Co KG", + "Salzgitter Hydroforming Verwaltungs GmbH", + "Schaeffler Technologies AG & Co. KG", + "Schaeffler Aerospace Germany GmbH & Co. KG", + "Schaeffler Aerospace Germany Beteiligungs GmbH", + "Schaeffler AG", + "Schaeffler Industrial Remanufacturing Services AG & Co. KG", + "Schaeffler Verwaltungsholding Vier GmbH", + "Schaeffler ByWire Technologie GmbH & Co. KG", + "Schaeffler ByWire Management GmbH", + "Schaeffler Bühl Verwaltungs GmbH", + "Schaeffler Automotive Buehl GmbH & Co. KG", + "Schaeffler Bühl Beteiligungs GmbH", + "Schaeffler Automotive Aftermarket GmbH & Co. KG", + "Schaeffler KWK Verwaltungs GmbH", + "Schaeffler Sondermaschinenbau AG & Co. KG", + "BayWa r.e. Solar Projects Verwaltungs GmbH", + "SPV Solarpark 102. GmbH & Co. KG", + "BayWa r.e. Solar Projects GmbH", + "SPV Solarpark 103. GmbH & Co. KG", + "Volkswagen Immobilien Management GmbH", + "Volkswagen Immobilien BLUE GmbH & Co. KG", + "Volkswagen Immobilien Investment GmbH", + "Tivoli Garden GmbH & Co. KG", + "BayWa r.e. Power Solutions GmbH", + "Solarpark Lupus GmbH & Co. KG", + "United Internet AG", + "United Internet Investments Holding AG & Co. KG", + "United Internet Corporate Services GmbH", + "Südwest Presse + Hapag-Lloyd Reisebüro Verwaltungs GmbH", + "Südwest Presse + Hapag-Lloyd Reisebüro GmbH & Co. KG", + "TUI Deutschland GmbH", + "SIL Verwaltung GmbH & Co. Objekt Haidach KG", + "Umspannwerk Klein Bünsdorf GmbH & Co. KG", + "Volkswagen Automobile Hamburg GmbH", + "Volkswagen Original Teile Logistik GmbH & Co. KG", + "Volkswagen Original Teile Logistik Beteiligungs-GmbH", + "Solarpark Aquarius GmbH & Co. KG", + "Zalando Customer Care DACH SE & Co. KG", + "Zalando Logistics Mönchengladbach SE & Co. KG", + "Windpark Wilhelmshöhe GmbH & Co. KG", + "Zalando Lounge Content Solutions SE & Co. KG", + "Zalando Lounge Service GmbH", + "Zalando Outlets GmbH", + "Zalando Stores GmbH & Co. KG", + "Windfeld Hohenfelde Vier GmbH & Co. KG", + "Wacker Neuson PGM Verwaltungs GmbH", + "Wacker Neuson Produktion GmbH & Co. KG", + "Wacker Neuson SE", + "Windpark Hessenweiler GmbH & Co. KG", + "BayWa r.e. Wind GmbH", + "Windpark Wilhelmshöhe III GmbH & Co. KG", + "Zalando Lounge Logistics SE & Co. KG", + "Zalando Logistics Gießen SE & Co. KG", + "Zalando Logistics Süd SE & Co. KG", + "Windpark Wilhelmshöhe II GmbH & Co. KG", + "Wilhelmshöhe Infrastruktur GmbH & Co. KG", + "Zalando BTD 007 SE & Co. KG", + "Zalando BTD 010 SE & Co. KG", + "Windpark Lindchen GmbH & Co. KG", + "Zalando Customer Care Central Services SE & Co. KG", + "Wacker Neuson SGM Verwaltungs GmbH", + "Wacker Neuson Vertrieb Deutschland GmbH & Co. KG", + "Windpark Freimersheim GmbH & Co. KG", + "Windpark Pferdsfeld GmbH & Co. KG", + "Zalando BTD 009 SE & Co. KG", + "Zalando BTD 011 SE & Co. KG", + "Zalando Customer Care International SE & Co. KG" + ], + "type": "scatter3d", + "x": [ + -0.528657853603363, + -0.5138984322547913, + 0.5859984159469604, + 0.5688238739967346, + -0.09307336062192917, + -0.09626086056232452, + -0.346258282661438, + -0.3456539511680603, + 0.49849027395248413, + 0.4984590709209442, + 0.4938879609107971, + -0.24533139169216156, + -0.24846753478050232, + -0.5241601467132568, + -0.503835916519165, + -0.49307504296302795, + 0.6360496282577515, + 0.6469334363937378, + 0.6595121026039124, + 0.6476691365242004, + 0.6217299699783325, + 0.5907010436058044, + 0.4192412495613098, + 0.4273888170719147, + 0.3654053807258606, + 0.372031569480896, + 0.3620119094848633, + 0.3925696909427643, + 0.3782775104045868, + 0.39102649688720703, + 0.3770085275173187, + 0.3856503665447235, + 0.3745732605457306, + 0.3503035306930542, + 0.14011123776435852, + 0.14870716631412506, + -0.8061493039131165, + -0.818721354007721, + 0.540482223033905, + 0.5532180666923523, + 0.54128497838974, + 0.16012896597385406, + 0.15590429306030273, + -0.5422264933586121, + -0.5290723443031311, + 0.9087445735931396, + 0.9329662919044495, + 0.9279165863990784, + 0.9501372575759888, + 0.9418759346008301, + -0.7846552729606628, + -0.8207245469093323, + 0.3739628195762634, + -0.259443461894989, + -0.21256673336029053, + -0.18740513920783997, + -0.2407667338848114, + -0.27545803785324097, + -0.17438861727714539, + -0.1934042125940323, + -0.27660974860191345, + -0.21400609612464905, + -0.18008984625339508, + -0.24589043855667114, + -0.19116783142089844, + -0.1707245409488678, + -0.1465626358985901, + -0.2787643074989319, + -0.2741311192512512, + -0.20346452295780182, + -0.2560737431049347, + -0.16822391748428345, + -0.17600272595882416, + -0.2248801440000534, + -0.18525253236293793, + -0.16053476929664612, + -0.2703617215156555, + -0.27364403009414673, + -0.20344485342502594, + -0.17522448301315308, + -0.2114248424768448, + -0.215086430311203, + -0.24459901452064514, + -0.16140171885490417, + -0.2820277512073517, + -0.27596282958984375, + -0.2673417329788208, + -0.27231186628341675, + -0.26948192715644836, + -0.21326082944869995, + -0.1511506289243698, + -0.27849099040031433, + -0.16262243688106537, + -0.24630236625671387, + -0.1622229665517807, + -0.20759087800979614, + -0.1903012990951538, + -0.2847380042076111, + -0.18720954656600952, + -0.21930086612701416, + -0.22756443917751312, + -0.21922165155410767, + -0.24657024443149567, + -0.19782838225364685, + -0.2100524753332138, + -0.23701894283294678, + -0.17062850296497345, + -0.23306886851787567, + -0.2668474614620209, + -0.16800594329833984, + -0.1642482727766037, + -0.1532442420721054, + -0.1933952122926712, + -0.1802525520324707, + -0.19298994541168213, + -0.15413323044776917, + -0.21098414063453674, + -0.2605448365211487, + -0.19866545498371124, + -0.14801833033561707, + -0.2502637207508087, + -0.2021017074584961, + -0.19272105395793915, + -0.19304989278316498, + -0.21142753958702087, + -0.2389986366033554, + -0.18174578249454498, + -0.18914948403835297, + -0.2200421839952469, + -0.20432816445827484, + -0.2445913702249527, + -0.1580495983362198, + -0.21166479587554932, + -0.27521446347236633, + -0.2214122712612152, + -0.281821608543396, + -0.14914213120937347, + -0.15286535024642944, + -0.17516914010047913, + -0.21996580064296722, + -0.2512102723121643, + -0.24962258338928223, + -0.190799281001091, + -0.22992898523807526, + -0.15364475548267365, + -0.15822385251522064, + -0.14645782113075256, + -0.2620249092578888, + -0.21848277747631073, + -0.2556280493736267, + -0.2618388533592224, + -0.24979491531848907, + -0.22109152376651764, + -0.2531801760196686, + -0.18388806283473969, + -0.2263016551733017, + -0.18443803489208221, + -0.14610566198825836, + -0.153420552611351, + -0.17796945571899414, + -0.16820667684078217, + -0.16716744005680084, + -0.20553146302700043, + -0.22807137668132782, + -0.15403293073177338, + -0.15772783756256104, + -0.26532912254333496, + -0.25220757722854614, + -0.23277461528778076, + -0.21292340755462646, + -0.2110433578491211, + -0.23917168378829956, + -0.20645242929458618, + -0.15995009243488312, + -0.18940964341163635, + -0.20434345304965973, + -0.2849380671977997, + -0.2811838686466217, + -0.20284752547740936, + -0.17577317357063293, + -0.26947975158691406, + -0.1956416815519333, + -0.23882710933685303, + -0.2827981114387512, + -0.26824504137039185, + -0.2243727594614029, + -0.2222081571817398, + -0.21316364407539368, + -0.23320768773555756, + -0.14624857902526855, + -0.2613241970539093, + -0.1825651228427887, + -0.14820730686187744, + -0.2759946584701538, + -0.2649465799331665, + -0.1436144858598709, + -0.2008890062570572, + -0.26559382677078247, + -0.22394351661205292, + -0.236678346991539, + -0.19827112555503845, + -0.2354286015033722, + -0.17291966080665588, + -0.27979493141174316, + -0.2405146211385727, + -0.26413846015930176, + -0.25537109375, + -0.22242654860019684, + -0.2694515585899353, + -0.28069767355918884, + -0.25127530097961426, + -0.2556663453578949, + -0.18850493431091309, + -0.2685583531856537, + -0.16381540894508362, + -0.24433600902557373, + -0.15164238214492798, + -0.16337712109088898, + -0.17686450481414795, + -0.1966848224401474, + -0.16550639271736145, + -0.23590035736560822, + -0.28575459122657776, + -0.153610497713089, + -0.2370135635137558, + -0.25911447405815125, + -0.22130681574344635, + -0.258798748254776, + -0.24903355538845062, + -0.22896312177181244, + -0.2486342489719391, + -0.23110507428646088, + -0.17846490442752838, + -0.18409554660320282, + -0.23566925525665283, + -0.22238044440746307, + -0.23642151057720184, + -0.25639861822128296, + -0.20075350999832153, + -0.21287822723388672, + -0.2029116153717041, + -0.17270773649215698, + -0.209257572889328, + -0.22349819540977478, + -0.1439959704875946, + -0.17470844089984894, + -0.22709666192531586, + -0.25495898723602295, + -0.16665081679821014, + -0.16506022214889526, + -0.21117565035820007, + -0.1943730264902115, + -0.25853869318962097, + -0.14632338285446167, + -0.2639811933040619, + -0.2334693968296051, + -0.15738403797149658, + -0.2750586271286011, + -0.22520655393600464, + -0.17999187111854553, + -0.23255281150341034, + -0.23408399522304535, + -0.20566809177398682, + -0.25440946221351624, + -0.2484438717365265, + -0.1972646266222, + -0.24074578285217285, + -0.25171491503715515, + -0.2672234773635864, + -0.18133682012557983, + -0.15716134011745453, + -0.1955302655696869, + -0.24817855656147003, + -0.18250739574432373, + -0.27368196845054626, + -0.1651466339826584, + -0.18036548793315887, + -0.27486059069633484, + -0.16373293101787567, + -0.24911686778068542, + 0.6040742993354797, + 0.583387017250061, + 0.5520933270454407, + 0.6263462901115417, + 0.6487942337989807, + 0.6682549715042114, + -0.783835232257843, + -0.7645514011383057, + -0.544654905796051, + -0.5606129169464111, + 0.022913947701454163, + 0.020421987399458885, + 0.024055227637290955, + 0.006722558755427599, + -0.0016135754995048046, + -0.12621307373046875, + -0.11210855096578598, + -0.10548268258571625, + -0.7629328370094299, + -0.7550767660140991, + -0.7373529672622681, + 0.40331336855888367, + 0.38000744581222534, + 0.35754016041755676, + -0.16028150916099548, + -0.15378724038600922, + -0.14385733008384705, + -0.6870828866958618, + -0.6774787902832031, + -0.49828121066093445, + -0.5158073306083679, + -0.5329865217208862, + -0.6611660718917847, + -0.14886096119880676, + -0.14804856479167938, + -0.14618605375289917, + 0.35533425211906433, + 0.3479793965816498, + 0.29364725947380066, + 0.2850026488304138, + 0.2750004231929779, + -0.059396758675575256, + -0.07511267811059952, + -0.09126937389373779, + 0.9227033853530884, + 0.8963534235954285, + 0.8770321011543274, + 0.6607050895690918, + 0.6783020496368408, + 0.6455320715904236, + 0.6315869688987732, + 0.6411926746368408, + 0.6258479952812195, + 0.6348206400871277, + 0.6552498936653137, + 0.6399238109588623, + 0.6631651520729065, + 0.6685670614242554, + 0.6857994794845581, + 0.6652630567550659, + 0.6490378975868225, + 0.6530727744102478, + 0.6321423053741455, + 0.6222972273826599, + 0.6163271069526672, + -0.4264930486679077, + -0.4261772930622101, + -0.41033926606178284, + -0.663833498954773, + -0.660189688205719, + -0.6903768181800842, + 0.7159377932548523, + 0.6832546591758728, + 0.709499180316925, + 0.685572624206543, + 0.6957675814628601, + 0.658352792263031, + 0.3302820324897766, + 0.3219253420829773, + 0.3093150854110718, + 0.6192613244056702, + 0.6109727025032043, + -0.10050400346517563, + -0.10994336009025574, + -0.12094716727733612, + 0.6486506462097168, + -0.7346959114074707, + -0.7746421098709106, + -0.8063954710960388, + 0.640560507774353, + 0.4161522686481476, + 0.4052700400352478, + 0.4161522686481476, + 0.45541536808013916, + 0.4245591461658478, + 0.45107078552246094, + 0.45135530829429626, + 0.4102530777454376, + 0.38918668031692505, + 0.44220590591430664, + 0.4233977496623993, + 0.4414864480495453, + 0.43878138065338135, + 0.4096064865589142, + 0.43701595067977905, + 0.44123905897140503, + 0.44411423802375793, + 0.3958405554294586, + 0.4304678440093994, + 0.42626309394836426, + 0.3886200189590454, + 0.422529011964798, + 0.40657341480255127, + 0.3929554522037506, + 0.4268401861190796, + 0.42386552691459656, + -0.5881908535957336, + -0.5955484509468079, + -0.6170680522918701, + 0.45182645320892334, + 0.3870982527732849, + 0.4495040774345398, + 0.4514985680580139, + 0.4328452944755554, + 0.4499877393245697, + 0.3973454236984253, + 0.41238656640052795, + 0.4282337725162506, + 0.40545016527175903, + 0.4103533625602722, + 0.43001478910446167, + 0.44466978311538696, + 0.39640012383461, + 0.4046478867530823, + 0.40400633215904236, + 0.42430153489112854, + -0.3040526807308197, + -0.31117698550224304, + -0.3056964874267578, + 0.40631839632987976, + 0.4167371690273285, + 0.4139211177825928, + 0.4141152799129486, + 0.39181405305862427, + 0.4272981286048889, + 0.4363117516040802, + 0.44099876284599304, + 0.41221508383750916, + 0.4417421519756317, + 0.5649303197860718, + 0.5493751764297485, + 0.5580219030380249, + -0.3616832494735718, + -0.346930593252182, + -0.3176685869693756, + -0.2689678370952606, + -0.28685927391052246, + -0.29390382766723633, + 0.4661206007003784, + 0.4614279568195343, + -0.3485901653766632, + -0.2933157980442047, + -0.6054461002349854, + -0.5913870930671692, + -0.3690440356731415, + -0.36926600337028503, + -0.39287230372428894, + 0.04187484085559845, + 0.03580041974782944, + 0.03768763318657875, + -0.599248468875885, + 0.04173516109585762, + -0.3573191165924072, + -0.3449101746082306, + -0.3566962480545044, + -0.40653374791145325, + -0.41982385516166687, + 0.590079128742218, + 0.5731484293937683, + 0.47121065855026245, + 0.4933215379714966, + 0.5188116431236267, + 0.05457792803645134, + -0.3751857578754425, + -0.38693007826805115, + -0.3972494602203369, + -0.11570803076028824, + -0.11915940046310425, + -0.12040183693170547, + -0.12388201802968979, + -0.12227396667003632, + -0.42432036995887756, + -0.4063408672809601, + -0.6326069235801697, + 0.4622974693775177, + 0.4751434326171875, + 0.6723341941833496, + 0.7030356526374817, + 0.7291281223297119, + 0.04274662211537361, + 0.7468001842498779, + 0.7625899314880371, + 0.7762340307235718, + -0.44765833020210266, + -0.4242947995662689, + -0.4958494007587433, + -0.4951680898666382, + -0.4842508137226105, + -0.37643128633499146, + -0.3834066092967987, + -0.27531933784484863, + -0.26621854305267334, + 0.2257251888513565, + 0.23090709745883942, + 0.2277115136384964, + 0.2560553550720215, + 0.24013523757457733, + 0.2160291075706482, + -0.2817535400390625, + 0.35142019391059875, + 0.342585027217865, + -0.26260820031166077, + 0.2561565339565277, + 0.24192112684249878, + 0.24768543243408203, + 0.2423759400844574, + 0.24568183720111847, + 0.25308576226234436, + 0.26269426941871643, + -0.2595207095146179, + 0.2313740849494934, + -0.27263960242271423, + 0.2142985612154007, + 0.24313122034072876, + 0.23870079219341278, + -0.18912462890148163, + -0.19689704477787018, + -0.21078306436538696, + -0.18377888202667236, + -0.19039596617221832, + 0.6027657389640808, + 0.5757293701171875, + 0.5570638179779053, + 0.305410236120224, + 0.295820027589798, + 0.28741270303726196, + 0.11146453022956848, + 0.11600349098443985, + 0.1200396940112114, + 0.12195529788732529, + 0.5545815229415894, + 0.5497349500656128, + 0.3886667490005493, + 0.3873283565044403, + 0.38799527287483215, + 0.16825714707374573, + 0.16140182316303253, + 0.16646277904510498, + 0.39849087595939636, + 0.384835422039032, + -0.3489413559436798, + 0.6669235825538635, + 0.3866480886936188, + 0.12665680050849915, + 0.12366132438182831, + 0.3206172287464142, + 0.34401050209999084, + 0.31870630383491516, + -0.8993726968765259, + -0.8873851895332336, + -0.854047954082489, + 0.26740628480911255, + 0.2892921268939972, + 0.3130492568016052, + 0.2584058344364166, + 0.2597227096557617, + 0.2505668103694916, + 0.28854408860206604, + 0.30059516429901123, + -0.7766005992889404, + -0.7716034054756165, + -0.7773008942604065, + -0.7990071177482605, + -0.8296065926551819, + 0.2483486831188202, + -0.18083536624908447, + -0.16866450011730194, + -0.1528952419757843, + -0.13781285285949707, + -0.06061932072043419, + -0.071288101375103, + -0.08495286852121353, + 0.16112986207008362, + -0.19628815352916718, + -0.17468056082725525, + 0.2943403720855713, + 0.2826845645904541, + 0.2701431214809418, + 0.6988973617553711, + 0.7206721901893616, + 0.7451643943786621, + -0.3467964828014374, + -0.14558222889900208, + -0.11022680997848511, + -0.10694058984518051, + -0.10159049183130264, + -0.15178118646144867, + 0.33913007378578186, + 0.3340681791305542, + -0.13293515145778656, + 0.332043319940567, + 0.35144665837287903, + 0.3272594213485718, + 0.31629979610443115, + 0.026307804509997368, + -0.45474180579185486, + -0.43648260831832886, + -0.414596825838089, + -0.11005419492721558, + -0.1263456493616104, + -0.1166391596198082, + 0.3202812671661377, + 0.32384049892425537, + 0.3080619275569916, + -0.12518979609012604, + -0.12589217722415924, + 0.304400235414505, + 0.34442445635795593, + -0.1065012514591217, + 0.3202678859233856, + -0.3685758709907532, + -0.3911384642124176, + -0.13557693362236023, + -0.13012899458408356, + 0.333780974149704, + 0.3200797438621521, + 0.3347940742969513 + ], + "y": [ + 0.706129789352417, + 0.6867745518684387, + -0.6201493144035339, + -0.5995899438858032, + -0.7456690073013306, + -0.7726479172706604, + -0.6920101642608643, + -0.6862857341766357, + -0.34007754921913147, + -0.3510674238204956, + -0.35627612471580505, + 0.7371575236320496, + 0.7278721332550049, + -0.04981059953570366, + -0.047690700739622116, + -0.04510679095983505, + 0.33140769600868225, + 0.3290269672870636, + 0.32842308282852173, + -0.4403519928455353, + -0.42493194341659546, + -0.40646764636039734, + 0.6750103235244751, + 0.6880626678466797, + -0.4107622802257538, + -0.43278008699417114, + -0.4151023030281067, + -0.450390100479126, + -0.4620475769042969, + -0.45796826481819153, + -0.45016252994537354, + -0.4364905059337616, + -0.4030531942844391, + -0.42301857471466064, + 0.8702352643013, + 0.8586172461509705, + 0.04285314306616783, + 0.03686973452568054, + 0.20393717288970947, + 0.21606063842773438, + 0.2144186794757843, + -0.6350516676902771, + -0.6188231110572815, + -0.4905749559402466, + -0.4789688289165497, + -0.06052365154027939, + -0.06255777925252914, + 0.11939678341150284, + 0.11567723751068115, + 0.09986206144094467, + -0.26721543073654175, + -0.27805274724960327, + -0.4466724991798401, + 0.31978756189346313, + 0.3096996545791626, + 0.25123831629753113, + 0.3638668358325958, + 0.30534595251083374, + 0.3323171138763428, + 0.34721750020980835, + 0.3139396905899048, + 0.3564130663871765, + 0.376350998878479, + 0.3267365097999573, + 0.33371588587760925, + 0.2641892433166504, + 0.292741984128952, + 0.3455585241317749, + 0.29316800832748413, + 0.3679462969303131, + 0.30655404925346375, + 0.3577019274234772, + 0.26210466027259827, + 0.3675840198993683, + 0.29348987340927124, + 0.32805779576301575, + 0.35971930623054504, + 0.332965612411499, + 0.3479999005794525, + 0.25565972924232483, + 0.3298463225364685, + 0.3765603303909302, + 0.37611907720565796, + 0.358580082654953, + 0.3303104639053345, + 0.34404870867729187, + 0.2984473407268524, + 0.3329269587993622, + 0.31969153881073, + 0.3091573119163513, + 0.28529417514801025, + 0.292553186416626, + 0.2700044512748718, + 0.2487301528453827, + 0.3152306377887726, + 0.2916907072067261, + 0.3380719721317291, + 0.30232536792755127, + 0.35475578904151917, + 0.3078688085079193, + 0.246383398771286, + 0.38449302315711975, + 0.2510521113872528, + 0.26730939745903015, + 0.24326936900615692, + 0.3540525734424591, + 0.29010140895843506, + 0.31877222657203674, + 0.2753402590751648, + 0.3286397457122803, + 0.3094123303890228, + 0.2816193103790283, + 0.3576372265815735, + 0.34909212589263916, + 0.246873676776886, + 0.33605387806892395, + 0.2471499741077423, + 0.3376084864139557, + 0.3757556080818176, + 0.3147132098674774, + 0.3706943988800049, + 0.29534971714019775, + 0.3105369210243225, + 0.2510479986667633, + 0.3434383273124695, + 0.29122456908226013, + 0.28643983602523804, + 0.368894100189209, + 0.34645238518714905, + 0.24797755479812622, + 0.34136274456977844, + 0.30176541209220886, + 0.3833869397640228, + 0.2815479338169098, + 0.28862765431404114, + 0.32457172870635986, + 0.3329591751098633, + 0.28965067863464355, + 0.27511918544769287, + 0.32890626788139343, + 0.3617132604122162, + 0.25486794114112854, + 0.2803870439529419, + 0.38166457414627075, + 0.3473694920539856, + 0.27076831459999084, + 0.3327893614768982, + 0.2634505033493042, + 0.316804438829422, + 0.35422566533088684, + 0.3595854938030243, + 0.2585456669330597, + 0.27126264572143555, + 0.37221190333366394, + 0.30803385376930237, + 0.2446887046098709, + 0.36556655168533325, + 0.3047226369380951, + 0.292223185300827, + 0.3209247887134552, + 0.26189038157463074, + 0.35910409688949585, + 0.31432536244392395, + 0.3383749723434448, + 0.3021726906299591, + 0.3448396623134613, + 0.2630150318145752, + 0.26151320338249207, + 0.3036893904209137, + 0.24274607002735138, + 0.3780209422111511, + 0.3795938491821289, + 0.2558918297290802, + 0.2732325494289398, + 0.26868417859077454, + 0.3310723900794983, + 0.31214639544487, + 0.29815784096717834, + 0.3642328083515167, + 0.304572194814682, + 0.306183785200119, + 0.3003524839878082, + 0.25604957342147827, + 0.3148643970489502, + 0.32474982738494873, + 0.37206071615219116, + 0.290763795375824, + 0.35999879240989685, + 0.37641441822052, + 0.3016018569469452, + 0.2876667082309723, + 0.26063114404678345, + 0.3145846128463745, + 0.27710139751434326, + 0.35935619473457336, + 0.32126903533935547, + 0.3809909224510193, + 0.2694554030895233, + 0.3604844808578491, + 0.26821449398994446, + 0.25704678893089294, + 0.25302281975746155, + 0.36540406942367554, + 0.3108685612678528, + 0.26493680477142334, + 0.348163366317749, + 0.27422404289245605, + 0.2558499574661255, + 0.26862239837646484, + 0.2926228940486908, + 0.2931216061115265, + 0.29649072885513306, + 0.2604463994503021, + 0.3395405113697052, + 0.28964391350746155, + 0.3382134437561035, + 0.3468222916126251, + 0.2825070023536682, + 0.34053587913513184, + 0.2459200769662857, + 0.31325697898864746, + 0.28297367691993713, + 0.32746875286102295, + 0.3300389051437378, + 0.36226823925971985, + 0.35499122738838196, + 0.38034161925315857, + 0.3691103756427765, + 0.3087437152862549, + 0.24321380257606506, + 0.27826735377311707, + 0.27697038650512695, + 0.2740262746810913, + 0.3763512074947357, + 0.3757820427417755, + 0.24786321818828583, + 0.29484015703201294, + 0.2707909941673279, + 0.3822256624698639, + 0.25627681612968445, + 0.3691226541996002, + 0.29828840494155884, + 0.28224384784698486, + 0.26575541496276855, + 0.31188973784446716, + 0.35848984122276306, + 0.25718066096305847, + 0.31876257061958313, + 0.3448180556297302, + 0.3441428244113922, + 0.27360060811042786, + 0.37464332580566406, + 0.25730523467063904, + 0.32464146614074707, + 0.3540745973587036, + 0.33348655700683594, + 0.3457643985748291, + 0.28284475207328796, + 0.3715299367904663, + 0.25298240780830383, + 0.3540712594985962, + 0.3148069679737091, + 0.2682185769081116, + 0.3404909074306488, + 0.3674767017364502, + 0.3197777271270752, + 0.24731698632240295, + 0.3237888216972351, + 0.282462477684021, + 0.3713642954826355, + 0.31904923915863037, + 0.281443327665329, + 0.3505496680736542, + 0.3210502564907074, + 0.33264467120170593, + 0.27649030089378357, + 0.3642131984233856, + 0.3471643328666687, + 0.3625968098640442, + 0.2827596962451935, + 0.596368670463562, + 0.577892541885376, + 0.548254668712616, + -0.07042227685451508, + -0.07243717461824417, + -0.07422744482755661, + -0.4503897726535797, + -0.4388904571533203, + -0.5098878145217896, + -0.5265282988548279, + -0.8727532625198364, + -0.8327925801277161, + -0.8041682839393616, + -0.8467949032783508, + -0.8684954047203064, + -0.6026697158813477, + -0.6136389970779419, + -0.5844860672950745, + -0.40814921259880066, + -0.4216165244579315, + -0.42155560851097107, + -0.4469653069972992, + -0.4329999089241028, + -0.43251001834869385, + 1, + 0.9821590185165405, + 0.9873853921890259, + -0.01040453091263771, + 0.0024913453962653875, + -0.6458683013916016, + -0.6687332987785339, + -0.6910502910614014, + 0.008472932502627373, + -0.5251590609550476, + -0.5166045427322388, + -0.5263521075248718, + -0.47021201252937317, + -0.4480852782726288, + 0.7619550228118896, + 0.7384216785430908, + 0.7113853096961975, + -0.24620939791202545, + -0.25071266293525696, + -0.2560189962387085, + 0.045825812965631485, + 0.04391094297170639, + 0.042687688022851944, + -0.048553455621004105, + -0.04494304955005646, + -0.03694510832428932, + -0.5399780869483948, + -0.5292685627937317, + -0.5134108066558838, + -0.36850300431251526, + -0.3793274164199829, + -0.36898642778396606, + -0.3838571608066559, + -0.02661244384944439, + -0.014180426485836506, + -0.37026599049568176, + -0.39396554231643677, + -0.3626863658428192, + -0.05982940271496773, + -0.04631395265460014, + -0.05038002133369446, + 0.17324186861515045, + 0.18229468166828156, + 0.18971514701843262, + -0.38822561502456665, + -0.3952237367630005, + -0.41345882415771484, + -0.40387409925460815, + -0.38743138313293457, + 0.5586565136909485, + 0.5425860285758972, + 0.5551550984382629, + -0.38614702224731445, + 0.523522138595581, + 0.5106776356697083, + 0.49378088116645813, + -0.3703189194202423, + -0.3522987365722656, + -0.629187285900116, + -0.6007903814315796, + -0.5598587393760681, + -0.3825375437736511, + -0.10317007452249527, + -0.10960638523101807, + -0.11470946669578552, + -0.060545071959495544, + 0.10254635661840439, + 0.07199537754058838, + 0.10254635661840439, + 0.1041976809501648, + 0.09058721363544464, + 0.11740080267190933, + 0.09167305380105972, + 0.07042060792446136, + 0.0889245867729187, + 0.12314528226852417, + 0.12749528884887695, + 0.0803997740149498, + 0.10373962670564651, + 0.12929095327854156, + 0.07810881733894348, + 0.1259082704782486, + 0.09286820143461227, + 0.125738725066185, + 0.1363513171672821, + 0.07719206064939499, + 0.1160859540104866, + 0.07103654742240906, + 0.12711983919143677, + 0.12261759489774704, + 0.13405871391296387, + 0.10581184178590775, + -0.3370324671268463, + -0.34687355160713196, + -0.3589629530906677, + 0.1155502200126648, + 0.10232028365135193, + 0.10655596107244492, + 0.09095503389835358, + 0.10530474781990051, + 0.10631528496742249, + 0.07969217002391815, + 0.07853785902261734, + 0.13472828269004822, + 0.09308075159788132, + 0.08139326423406601, + 0.12219631671905518, + 0.12807691097259521, + 0.08754312247037888, + 0.11760349571704865, + 0.13418205082416534, + 0.06954051554203033, + -0.43729034066200256, + -0.4535043239593506, + -0.46649354696273804, + 0.10116005688905716, + 0.0976981669664383, + 0.11232516169548035, + 0.11665812879800797, + 0.10622187703847885, + 0.08624742925167084, + 0.11768592149019241, + 0.07635927945375443, + 0.13667386770248413, + 0.09114529937505722, + 0.587411642074585, + 0.5694024562835693, + 0.5694018602371216, + -0.23857887089252472, + -0.2515166401863098, + -0.23304913938045502, + -0.265145480632782, + -0.24267639219760895, + -0.24568603932857513, + 0.8014809489250183, + 0.8054234981536865, + -0.23143969476222992, + -0.25330135226249695, + -0.5754832625389099, + -0.5571892857551575, + -0.15625177323818207, + -0.14964289963245392, + -0.15010124444961548, + -0.35389673709869385, + -0.37295839190483093, + -0.3536992371082306, + -0.5858798623085022, + -0.352606862783432, + 0.1483493149280548, + 0.1421879082918167, + 0.14711667597293854, + -0.1692502349615097, + -0.1546895056962967, + 0.585574746131897, + 0.5754349827766418, + -0.3798268139362335, + -0.3706110119819641, + -0.3782545328140259, + -0.3649069666862488, + -0.6146454811096191, + -0.6330335736274719, + -0.6408231258392334, + -0.4118996560573578, + -0.4265304505825043, + -0.4473136067390442, + -0.4472130537033081, + -0.427166610956192, + -0.15173742175102234, + -0.1464540958404541, + -0.6031263470649719, + -0.4002005457878113, + -0.41930487751960754, + 0.2458604872226715, + 0.2560976445674896, + 0.26479652523994446, + -0.3369324207305908, + -0.6488458514213562, + -0.657103955745697, + -0.6602576375007629, + -0.1815183460712433, + -0.16844582557678223, + -0.7230052351951599, + -0.7209873795509338, + -0.7046858668327332, + -0.14126765727996826, + -0.1450684517621994, + -0.2960232198238373, + -0.2993830442428589, + -0.3841784596443176, + -0.38316014409065247, + -0.3537842333316803, + -0.36798804998397827, + -0.3644176125526428, + -0.37763553857803345, + -0.29071393609046936, + -0.4606873095035553, + -0.4477199912071228, + -0.29851076006889343, + -0.40603724122047424, + -0.3827170431613922, + -0.3156551718711853, + -0.32865214347839355, + -0.8581801056861877, + -0.8852346539497375, + -0.924187421798706, + -0.28686827421188354, + -0.32755953073501587, + -0.28253206610679626, + -0.3738609850406647, + -0.3787877857685089, + -0.3740558326244354, + -0.05603654310107231, + -0.05823056027293205, + -0.06107292324304581, + -0.05789541080594063, + -0.0581546388566494, + 0.5011208057403564, + 0.482450395822525, + 0.46685439348220825, + -0.07570458948612213, + -0.07386258989572525, + -0.07211428135633469, + 0.49852901697158813, + 0.5124670267105103, + 0.5410491228103638, + 0.5295566320419312, + 0.4572184979915619, + 0.45738789439201355, + 0.5512735843658447, + 0.5334264039993286, + 0.5149376392364502, + -0.4735732972621918, + -0.45869648456573486, + -0.47336262464523315, + 0.5040709376335144, + 0.4904893636703491, + -0.24226726591587067, + -0.04002366214990616, + 0.5107647776603699, + 0.5863426923751831, + 0.5658652186393738, + -0.6307089328765869, + -0.6375045776367188, + -0.6384165287017822, + -0.3799034059047699, + -0.37401798367500305, + -0.3600294888019562, + -0.1299106925725937, + -0.12967155873775482, + -0.13940764963626862, + -0.15111790597438812, + -0.1611556112766266, + -0.14509576559066772, + -0.12609043717384338, + -0.12100867927074432, + -0.3414035439491272, + -0.330078125, + -0.32459861040115356, + -0.35586604475975037, + -0.37043264508247375, + -0.16597548127174377, + -0.6751514077186584, + -0.6388369798660278, + -0.594325602054596, + -0.5811786651611328, + -0.8551851511001587, + -0.8464641571044922, + -0.844108521938324, + -0.4614194631576538, + -0.5599985122680664, + -0.5461997985839844, + -0.8000536561012268, + -0.7703084349632263, + -0.7767143249511719, + -0.2869645059108734, + -0.2961543798446655, + -0.30666255950927734, + -0.2442091405391693, + -0.5284274220466614, + -0.32550790905952454, + -0.31554970145225525, + -0.3009701669216156, + -0.5649043321609497, + -0.6573642492294312, + -0.6374605894088745, + -0.5412552952766418, + -0.6116330027580261, + -0.6233026385307312, + -0.7076298594474792, + -0.6709674000740051, + -0.3607664406299591, + -0.6003844738006592, + -0.5767517685890198, + -0.5482947826385498, + -0.6000195145606995, + -0.5625923871994019, + -0.5663707256317139, + -0.650745689868927, + -0.6603101491928101, + -0.6574611663818359, + -0.5596789717674255, + -0.5807241797447205, + -0.6478692889213562, + -0.6446609497070312, + -0.5625811219215393, + -0.6301702857017517, + -0.488328754901886, + -0.5177376866340637, + -0.5666916966438293, + -0.5837697386741638, + -0.6470957398414612, + -0.6624630689620972, + -0.6583628058433533 + ], + "z": [ + 0.6296226978302002, + 0.6100324392318726, + -0.6613198518753052, + -0.6392405033111572, + 0.6735652685165405, + 0.6981338858604431, + -0.4887162446975708, + -0.5023712515830994, + 0.7638217210769653, + 0.7510988116264343, + 0.7347540855407715, + 0.48237183690071106, + 0.47096937894821167, + -0.7893484830856323, + -0.7570911645889282, + -0.7449675798416138, + 0.25800076127052307, + 0.27133625745773315, + 0.28412699699401855, + 0.5734571814537048, + 0.5501733422279358, + 0.5222890973091125, + 0.2123567909002304, + 0.2183264195919037, + -0.4626101851463318, + -0.4803663194179535, + -0.45179155468940735, + -0.5044323205947876, + -0.5007185935974121, + -0.49208590388298035, + -0.5126955509185791, + -0.5066725015640259, + -0.44791552424430847, + -0.46088331937789917, + 0.49715229868888855, + 0.5005994439125061, + -0.6233513355255127, + -0.6182869672775269, + 0.8718438148498535, + 0.8763830661773682, + 0.8511614203453064, + 0.5935928821563721, + 0.577713131904602, + -0.8110530972480774, + -0.7906119227409363, + 0.1319630742073059, + 0.13680236041545868, + 0.1799403727054596, + 0.18672488629817963, + 0.18754376471042633, + -0.14198185503482819, + -0.15049327909946442, + -0.4940248429775238, + 0.11472795158624649, + 0.07368668168783188, + 0.0958089753985405, + 0.03397706523537636, + 0.1101500391960144, + 0.128946915268898, + 0.01530342549085617, + 0.041678935289382935, + 0.01770070753991604, + 0.06962045282125473, + 0.011851776391267776, + 0.01048420649021864, + 0.100949227809906, + 0.07371766120195389, + 0.07328572869300842, + 0.040786292403936386, + 0.11577306687831879, + 0.01526591181755066, + 0.1048399955034256, + 0.04603274166584015, + 0.11935625970363617, + 0.13732823729515076, + 0.12045028060674667, + 0.07775420695543289, + 0.10873951762914658, + 0.13442766666412354, + 0.08428696542978287, + 0.004084589425474405, + 0.10604370385408401, + 0.0647023469209671, + 0.08596217632293701, + 0.05873233452439308, + 0.09475277364253998, + 0.1200379729270935, + 0.04761236160993576, + 0.12283379584550858, + 0.0009855969110503793, + 0.08840719610452652, + 0.09906359016895294, + 0.055711280554533005, + 0.07111482322216034, + 0.10759679228067398, + 0.005626805126667023, + 0.13486897945404053, + 0.0838770791888237, + 0.027169374749064445, + 0.1451202780008316, + 0.05257939174771309, + 0.08776042610406876, + 0.057361118495464325, + 0.022390451282262802, + 0.08456186205148697, + 0.020789798349142075, + 0.126682847738266, + 0.004836606327444315, + 0.04322237893939018, + 0.022336285561323166, + 0.024158567190170288, + 0.06442777812480927, + 0.1240607425570488, + 0.12311002612113953, + 0.08052293956279755, + 0.10593364387750626, + 0.04794953018426895, + 0.12279069423675537, + 0.10211848467588425, + 0.05014780908823013, + 0.09738484025001526, + 0.14215819537639618, + 0.14365120232105255, + 0.04841945320367813, + 0.01282550860196352, + 0.009417327120900154, + 0.017081378027796745, + 0.03792329505085945, + 0.13558751344680786, + 0.10050597041845322, + 0.016810845583677292, + 0.11891643702983856, + 0.07266117632389069, + 0.0556216724216938, + 0.006572774611413479, + 0.0962524488568306, + 0.05982678383588791, + 0.049807772040367126, + 0.12030810117721558, + 0.1405196487903595, + 0.11335626244544983, + 0.09477125853300095, + 0.13417507708072662, + 0.06957540661096573, + 0.062959685921669, + 0.07936537265777588, + 0.08130030333995819, + 0.05295603722333908, + 0.012826242484152317, + 0.033052150160074234, + 0.04766141623258591, + 0.043664366006851196, + 0.13277257978916168, + 0.08088237047195435, + 0.009871629998087883, + 0.0877780094742775, + 0.11163407564163208, + 0.06252270191907883, + 0.10508019477128983, + 0.013396818190813065, + 0.07031437754631042, + 0.05142410844564438, + 0.13973040878772736, + 0.009672586806118488, + 0.039909567683935165, + 0.0472247377038002, + 0.06661775708198547, + 0.10843563824892044, + 0.005715379025787115, + 0.06658496707677841, + 0.04253706336021423, + 0.08434087783098221, + 0.0327918641269207, + 0.09650259464979172, + 0.12442217767238617, + 0.14287079870700836, + 0.0715658888220787, + 0.056049592792987823, + 0.0269453302025795, + 0.13412265479564667, + 0.029804982244968414, + 0.006394612602889538, + 0.1091078594326973, + 0.05586455017328262, + 0.028803551569581032, + 0.03639628738164902, + 0.1420944482088089, + 0.12652982771396637, + 0.10400919616222382, + 0.09238815307617188, + 0.031112603843212128, + 0.11004547774791718, + 0.1067998856306076, + 0.07080134004354477, + 0.09938261657953262, + 0.06772048771381378, + 0.08674592524766922, + 0.0989985466003418, + 0.027444200590252876, + 0.12793536484241486, + 0.11479996144771576, + 0.040469441562891006, + 0.07786206901073456, + 0.09664683043956757, + 0.027713222429156303, + 0.11057385802268982, + 0.1164366826415062, + 0.032579101622104645, + 0.08362514525651932, + 0.07262644916772842, + 0.018635977059602737, + 0.12796832621097565, + 0.03445110842585564, + 0.03494853526353836, + 0.031042711809277534, + 0.13199734687805176, + 0.07882478088140488, + 0.11295634508132935, + 0.023233674466609955, + 0.06437402218580246, + 0.1277129054069519, + 0.12372935563325882, + 0.07667641341686249, + 0.042233891785144806, + 0.1105690747499466, + 0.08731153607368469, + 0.056470803916454315, + 0.065487802028656, + 0.13584652543067932, + 0.0690280869603157, + 0.01993785984814167, + 0.01401362195611, + 0.027782684192061424, + 0.08942268788814545, + 0.05006195604801178, + 0.10250794887542725, + 0.1396200805902481, + 0.03242106735706329, + 0.0589824803173542, + 0.11745483428239822, + 0.04746420681476593, + 0.018884548917412758, + 0.13910959661006927, + 0.02095326967537403, + 0.08086420595645905, + 0.03748471662402153, + 0.11812679469585419, + 0.021020077168941498, + 0.11550244688987732, + 0.03315466269850731, + 0.014606977812945843, + 0.07026687264442444, + 0.08045192062854767, + 0.09406816959381104, + 0.06241920217871666, + 0.1403817981481552, + 0.09529455006122589, + 0.08969749510288239, + 0.08939073979854584, + 0.0629391297698021, + 0.12924768030643463, + 0.14196419715881348, + 0.13000217080116272, + 0.0291365347802639, + 0.04759441316127777, + 0.004848686512559652, + 0.08578405529260635, + 0.13395649194717407, + 0.11112469434738159, + 0.05276527628302574, + 0.033227335661649704, + 0.0130787193775177, + 0.12365274876356125, + 0.13699208199977875, + 0.08304546773433685, + 0.040177661925554276, + 0.09642869234085083, + 0.05440424010157585, + 0.0661991536617279, + 0.13131408393383026, + 0.33444905281066895, + 0.3226282000541687, + 0.3041708469390869, + 0.5656177997589111, + 0.5859631299972534, + 0.6035494804382324, + 0.38668161630630493, + 0.37670794129371643, + 0.39263445138931274, + 0.40597617626190186, + -0.12406104058027267, + -0.11445768177509308, + -0.11300282925367355, + -0.10226701200008392, + -0.09710594266653061, + -0.20846398174762726, + -0.20861200988292694, + -0.18790338933467865, + -0.20625442266464233, + -0.19943153858184814, + -0.19168482720851898, + -0.05576648190617561, + -0.05910889431834221, + -0.07155555486679077, + -0.18875183165073395, + -0.1789701133966446, + -0.1661754846572876, + -0.6448040008544922, + -0.6496341228485107, + -0.07295409590005875, + -0.07482805103063583, + -0.07673190534114838, + -0.6398969888687134, + 0.06761856377124786, + 0.04613082855939865, + 0.015072520822286606, + -0.10041829198598862, + -0.08850586414337158, + -0.3999614715576172, + -0.387655109167099, + -0.3734700679779053, + 0.8027365207672119, + 0.7970660328865051, + 0.7941581606864929, + -0.39001360535621643, + -0.37994739413261414, + -0.37115705013275146, + -0.5156568288803101, + -0.5128394961357117, + -0.4921084940433502, + 0.2953074872493744, + 0.28691044449806213, + 0.27626684308052063, + -0.2884698510169983, + -0.27448180317878723, + -0.28416576981544495, + -0.28825643658638, + -0.5191498398780823, + -0.538263201713562, + -0.29537737369537354, + -0.2903723418712616, + -0.302995890378952, + -0.4816811680793762, + -0.4631144404411316, + -0.4395192563533783, + 0.7645393013954163, + 0.7832547426223755, + 0.7775911688804626, + -0.3633413314819336, + -0.3496210277080536, + -0.3663530647754669, + -0.2900480329990387, + -0.2842528522014618, + -0.10962530970573425, + -0.11230327934026718, + -0.12424065172672272, + -0.3011602461338043, + 0.769564688205719, + 0.7659627199172974, + 0.7389887571334839, + -0.29137638211250305, + -0.27541571855545044, + -0.10201362520456314, + -0.0971178188920021, + -0.0931636393070221, + -0.30790185928344727, + 0.4848799705505371, + 0.5112659335136414, + 0.5322723984718323, + -0.5015057325363159, + -0.25952717661857605, + -0.2713225781917572, + -0.25952717661857605, + -0.2643863558769226, + -0.2937193810939789, + -0.27204760909080505, + -0.27111977338790894, + -0.25595977902412415, + -0.270538330078125, + -0.2436538189649582, + -0.2866290509700775, + -0.27604708075523376, + -0.2914799451828003, + -0.23950080573558807, + -0.24523861706256866, + -0.2786833941936493, + -0.23913370072841644, + -0.2530812919139862, + -0.25997400283813477, + -0.2830897867679596, + -0.2635177671909332, + -0.2470264881849289, + -0.28324243426322937, + -0.2753133177757263, + -0.24954405426979065, + -0.2963760495185852, + -0.5383478403091431, + -0.5282644033432007, + -0.5466213822364807, + -0.2545636296272278, + -0.2666919529438019, + -0.24332374334335327, + -0.25456705689430237, + -0.2288864552974701, + -0.2811521887779236, + -0.2609971761703491, + -0.23935137689113617, + -0.27527138590812683, + -0.23748749494552612, + -0.2870829105377197, + -0.23389090597629547, + -0.26166683435440063, + -0.2837805151939392, + -0.23753859102725983, + -0.2668837308883667, + -0.26785948872566223, + -0.6380331516265869, + -0.6560540795326233, + -0.6470147967338562, + -0.29384899139404297, + -0.226656973361969, + -0.22755706310272217, + -0.29368504881858826, + -0.28397196531295776, + -0.23125426471233368, + -0.28973588347435, + -0.2609197199344635, + -0.2534004747867584, + -0.2861894965171814, + -0.5525453090667725, + -0.5309489965438843, + -0.5100838541984558, + 0.22422771155834198, + 0.22331693768501282, + 0.22085167467594147, + 0.24388493597507477, + 0.22788332402706146, + 0.23827967047691345, + -0.08366072922945023, + -0.09718482941389084, + 0.23189008235931396, + 0.22557991743087769, + 0.2715923488140106, + 0.2623029947280884, + 0.6424797177314758, + 0.6100370287895203, + 0.5900293588638306, + -0.651452898979187, + -0.6499865651130676, + -0.6441245675086975, + 0.28382933139801025, + -0.6685177683830261, + -0.9250562191009521, + -0.8884454369544983, + -0.8998395800590515, + 0.6211495399475098, + 0.6175417900085449, + -0.48677825927734375, + -0.49381759762763977, + 0.3294863998889923, + 0.3332645893096924, + 0.34781020879745483, + -0.6542941927909851, + 0.6277804970741272, + 0.6431485414505005, + 0.633549153804779, + 0.7015810012817383, + 0.727477490901947, + 0.7399715781211853, + 0.7635132074356079, + 0.7519322037696838, + 0.6682232022285461, + 0.6304752230644226, + 0.2821958661079407, + 0.3372979164123535, + 0.35328981280326843, + 0.60050368309021, + 0.628084659576416, + 0.6515033841133118, + -0.648344874382019, + -0.09332651644945145, + -0.08817565441131592, + -0.07886124402284622, + 0.6589142680168152, + 0.6256005167961121, + -0.25594356656074524, + -0.23992124199867249, + -0.22997358441352844, + 0.5183417797088623, + 0.5501664280891418, + 0.2512604892253876, + 0.26815709471702576, + 0.2656223773956299, + 0.2827841341495514, + 0.2730208933353424, + 0.29398611187934875, + 0.3067771792411804, + 0.28189313411712646, + 0.264035701751709, + -0.49292269349098206, + -0.47675079107284546, + 0.2536758482456207, + 0.3371036648750305, + 0.30952882766723633, + 0.29026687145233154, + 0.27488598227500916, + 0.057853519916534424, + 0.05967482924461365, + 0.0623006671667099, + 0.2693658471107483, + 0.28465351462364197, + 0.2729148864746094, + 0.2652592957019806, + 0.2723097503185272, + 0.2588852345943451, + -0.8025454878807068, + -0.8455262780189514, + -0.8818098306655884, + -0.8954703211784363, + -0.8742142915725708, + 0.2918785512447357, + 0.2830866277217865, + 0.29232385754585266, + 0.8911975622177124, + 0.8634328246116638, + 0.838873028755188, + -0.7138781547546387, + -0.7031928896903992, + -0.7472494840621948, + -0.7026100158691406, + 0.3348022401332855, + 0.31327182054519653, + -0.5645225048065186, + -0.5761395692825317, + -0.5943344235420227, + 0.7457312345504761, + 0.712175190448761, + 0.7284021377563477, + -0.610040545463562, + -0.6093736886978149, + 0.21367980539798737, + -0.5214130878448486, + -0.6172881126403809, + -0.8167903423309326, + -0.7851635813713074, + 0.06719189137220383, + 0.055944062769412994, + 0.0587504543364048, + 0.027923161163926125, + 0.019567880779504776, + 0.019499368965625763, + -0.11671764403581619, + -0.09137146919965744, + -0.07826414704322815, + -0.12791851162910461, + -0.14570511877536774, + -0.1336839646100998, + -0.1344268023967743, + -0.1515686810016632, + 0.21680517494678497, + 0.23481617867946625, + 0.2530476450920105, + 0.21258874237537384, + 0.21768324077129364, + -0.13490332663059235, + -0.004340399522334337, + -0.008544227108359337, + -0.01753058098256588, + -0.05541719123721123, + 0.3364226222038269, + 0.32548457384109497, + 0.315561980009079, + 0.735801100730896, + 0.050811879336833954, + 0.03521725535392761, + 0.4388350546360016, + 0.42009997367858887, + 0.4131888151168823, + -0.6178175806999207, + -0.6389018297195435, + -0.66298907995224, + 0.2360682487487793, + 0.046854306012392044, + -0.8610907793045044, + -0.8337599635124207, + -0.7926745414733887, + 0.0033630968537181616, + 0.060050979256629944, + 0.08082554489374161, + -0.03852839767932892, + 0.10080938041210175, + 0.1251881867647171, + 0.020305121317505836, + 0.029771890491247177, + -0.6619765162467957, + -0.5618915557861328, + -0.5386634469032288, + -0.510862410068512, + -0.21604765951633453, + -0.14558693766593933, + -0.11994177848100662, + 0.0838126465678215, + 0.054724909365177155, + 0.05996822938323021, + -0.1187824085354805, + -0.11094310879707336, + 0.07464462518692017, + 0.06981082260608673, + -0.14352166652679443, + 0.043654464185237885, + -0.4522997736930847, + -0.48105573654174805, + -0.1223846897482872, + -0.18133831024169922, + 0.04555360600352287, + 0.0719810202717781, + 0.07511748373508453 + ] + } + ], + "layout": { + "annotations": [ + { + "font": { + "size": 14 + }, + "showarrow": false, + "text": "Data source: [1] miserables.json", + "x": 0, + "xanchor": "left", + "xref": "paper", + "y": 0.1, + "yanchor": "bottom", + "yref": "paper" + } + ], + "height": 1000, + "hovermode": "closest", + "margin": { + "t": 100 + }, + "scene": { + "xaxis": { + "showbackground": false, + "showgrid": false, + "showline": false, + "showticklabels": false, + "title": { + "text": "" + }, + "zeroline": false + }, + "yaxis": { + "showbackground": false, + "showgrid": false, + "showline": false, + "showticklabels": false, + "title": { + "text": "" + }, + "zeroline": false + }, + "zaxis": { + "showbackground": false, + "showgrid": false, + "showline": false, + "showticklabels": false, + "title": { + "text": "" + }, + "zeroline": false + } + }, + "showlegend": false, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "Network of coappearances of characters in Victor Hugo's novel
Les Miserables (3D visualization)" + }, + "width": 1000 + } + } + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "# edge_trace, \n", + "data=[edge_trace, node_trace]\n", + "fig=go.Figure(data=data, layout=layout)\n", + "\n", + "fig.show()" ] } ], From bcb6df8e5d2eaed77003454de47b1d799fcf55f0 Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 24 Oct 2023 17:24:37 +0200 Subject: [PATCH 14/36] Added 2d and 3d network to dash --- .../ui/assets/networkx_style.css | 12 +- .../ui/pages/home.py | 263 ++-- .../utils/networkx/network_2d.py | 128 ++ .../utils/networkx/network_3d.py | 142 ++ .../utils/networkx/networkx_data.py | 148 +- .../networkx/sql_alchemy_to_networkx_v2.ipynb | 1350 ++++++++++++++++- 6 files changed, 1903 insertions(+), 140 deletions(-) create mode 100644 src/aki_prj23_transparenzregister/utils/networkx/network_2d.py create mode 100644 src/aki_prj23_transparenzregister/utils/networkx/network_3d.py diff --git a/src/aki_prj23_transparenzregister/ui/assets/networkx_style.css b/src/aki_prj23_transparenzregister/ui/assets/networkx_style.css index 5e49be9..48a6db7 100644 --- a/src/aki_prj23_transparenzregister/ui/assets/networkx_style.css +++ b/src/aki_prj23_transparenzregister/ui/assets/networkx_style.css @@ -1,18 +1,20 @@ .networkx_style { float: right; margin-top: 20px; - margin-left: 20px; + margin-left: 10px; + margin-right: 20px; border: 1px solid; border-color: blue; - width: 45%; - height: 500px; + width: 57%; + height: 100%; } .top_companytable_style { float: left; margin-top: 20px; - margin-right: 20px; + margin-left: 20px; + margin-right: 10px; border: 1px solid; - width: 45%; + width: 37%; height: 100%; } \ No newline at end of file diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index c82d12b..8b07938 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -3,14 +3,32 @@ import dash import networkx as nx import pandas as pd import plotly.graph_objects as go -from dash import Input, Output, callback, html +from dash import Input, Output, callback, html, dcc, dash_table, ctx +import dash_daq as daq + from aki_prj23_transparenzregister.utils.networkx.networkx_data import ( find_all_company_relations, find_top_companies, + get_all_person_relations, + get_all_company_relations, + filter_relation_type, + filter_relation_with_more_than_one_connection, + create_edge_and_node_list +) +from aki_prj23_transparenzregister.utils.networkx.network_3d import ( + initialize_network, + create_3d_graph, +) + +from aki_prj23_transparenzregister.utils.networkx.network_2d import ( + create_2d_graph, ) +# Get Data +person_relation = filter_relation_type(get_all_person_relations(), "HAFTENDER_GESELLSCHAFTER") +company_relation = filter_relation_with_more_than_one_connection(get_all_company_relations(), "id_company_to", "id_company_from") dash.register_page( __name__, @@ -29,99 +47,14 @@ dash.register_page( def networkGraph(EGDE_VAR: None) -> go.Figure: # find_all_company_relations() - edges = [] - for index, row in find_all_company_relations().iterrows(): - edges.append([row["company_name"], row["connected_company_name"]]) - network_graph = nx.Graph() - network_graph.add_edges_from(edges) - pos = nx.spring_layout(network_graph) +graph, metrices = initialize_network(nodes = nodes, edges = edges) +# print(graph) +metric = None +network = create_3d_graph(graph, nodes, edges, metrices, metric) - # edges trace - edge_x = [] - edge_y = [] - for edge in network_graph.edges(): - x0, y0 = pos[edge[0]] - x1, y1 = pos[edge[1]] - edge_x.append(x0) - edge_x.append(x1) - edge_x.append(None) - edge_y.append(y0) - edge_y.append(y1) - edge_y.append(None) - - edge_trace = go.Scatter( - x=edge_x, - y=edge_y, - line={"color": "black", "width": 1}, - hoverinfo="none", - showlegend=False, - mode="lines", - ) - - # nodes trace - node_x = [] - node_y = [] - text = [] - for node in network_graph.nodes(): - x, y = pos[node] - node_x.append(x) - node_y.append(y) - text.append(node) - - node_trace = go.Scatter( - x=node_x, - y=node_y, - text=text, - mode="markers+text", - showlegend=False, - hoverinfo="none", - marker={"color": "pink", "size": 50, "line": {"color": "black", "width": 1}}, - ) - - # layout - layout = { - "plot_bgcolor": "white", - "paper_bgcolor": "white", - "margin": {"t": 10, "b": 10, "l": 10, "r": 10, "pad": 0}, - "xaxis": { - "linecolor": "black", - "showgrid": False, - "showticklabels": False, - "mirror": True, - }, - "yaxis": { - "linecolor": "black", - "showgrid": False, - "showticklabels": False, - "mirror": True, - }, - } - - print(nx.eigenvector_centrality(network_graph)) - measure_vector = {} - network_metrics_df = pd.DataFrame() - - measure_vector = nx.eigenvector_centrality(network_graph) - network_metrics_df["eigenvector"] = measure_vector.values() - - measure_vector = nx.degree_centrality(network_graph) - network_metrics_df["degree"] = measure_vector.values() - - measure_vector = nx.betweenness_centrality(network_graph) - network_metrics_df["betweeness"] = measure_vector.values() - - measure_vector = nx.closeness_centrality(network_graph) - network_metrics_df["closeness"] = measure_vector.values() - - # measure_vector = nx.pagerank(network_graph) - # network_metrics_df["pagerank"] = measure_vector.values() - - # measure_vector = nx.average_degree_connectivity(network_graph) - # network_metrics_df["average_degree"] = measure_vector.values() - print(network_metrics_df) - - # figure - return go.Figure(data=[edge_trace, node_trace], layout=layout) +company_relation_type_filter = get_all_person_relations()["relation_type"].unique() +print(company_relation_type_filter) +person_relation_type_filter = get_all_company_relations()["relation_type"].unique() df = find_top_companies() @@ -130,44 +63,122 @@ with open("src/aki_prj23_transparenzregister/ui/assets/network_graph.html") as f layout = html.Div( - children=[ - # NOTE lib dir created by NetworkX has to be placed in assets - html.Iframe( - src="assets/network_graph.html", - style={"height": "100vh", "width": "100vw"}, - allow="*", - ) - ] - # children = html.Div( - # children=[ - # html.Div( - # className="top_companytable_style", - # children=[ - # html.Title(title="Top Ten Unternehmen", style={"align": "mid"}), - # dash_table.DataTable(df.to_dict('records'), [{"name": i, "id": i} for i in df.columns]) - # ] - # ), - # html.Div( - # className="networkx_style", - # children=[ - # html.Header(title="Social Graph"), - # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='demo-dropdown'), - # "Text", - # dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), - # # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='metric-dropdown'), - # dcc.Graph(id="my-graph"), - # ] - # ) - # ] - # ) + # children=[ + # # NOTE lib dir created by NetworkX has to be placed in assets + # # html.Iframe( + # # src="assets/network_graph.html", + # # style={"height": "100vh", "width": "100vw"}, + # # allow="*", + # # ) + # ] + children = html.Div( + children=[ + html.Div( + className="top_companytable_style", + children=[ + html.Title(title="Top Ten Unternehmen", style={"align": "mid"}), + dash_table.DataTable(df.to_dict('records'), [{"name": i, "id": i} for i in df.columns]) + ] + ), + html.Div( + className="networkx_style", + children=[ + html.Header(title="Social Graph"), + "Company Relation Type Filter:", + dcc.Dropdown(company_relation_type_filter, company_relation_type_filter[0], id='dropdown_companyrelation_filter'), + "Person Relation Type Filter:", + dcc.Dropdown(person_relation_type_filter, person_relation_type_filter[0], id='dropdown_personrelation_filter'), + "Choose Graph Metric:", + dcc.Dropdown(['None','eigenvector', 'degree', 'betweeness', 'closeness'], 'None', id='dropdown'), + # "Text", + # dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), + daq.BooleanSwitch(id='switch', on=False), + # html.Div(id='switch'), + # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='metric-dropdown'), + # dcc.Graph(id="my-graph"), + dcc.Graph(figure = network, id='my-graph'), + # html.Div(id='my-graph'), + ] + ) + ] + ) ) @callback( Output("my-graph", "figure"), # Input('metric-dropdown', 'value'), - [Input("EGDE_VAR", "value")], + [Input("dropdown", "value"), + Input("switch", "on"), + Input("dropdown_companyrelation_filter", "value"), + Input("dropdown_personrelation_filter", "value")], + prevent_initial_call=True, + allow_duplicate=True ) -def update_output(EGDE_VAR: None) -> None: +def update_figure(selected_value, on, c_relation_filter, p_relation_filter): + triggered_id = ctx.triggered_id + + find_top_companies() - return networkGraph(EGDE_VAR) + + if selected_value == "None": + metric = None + else: + metric = selected_value + + + + if triggered_id == 'switch': + + if on: + return update_mode(on, selected_value) + else: + return create_3d_graph(graph, nodes, edges, metrices, metric) + elif triggered_id == 'dropdown': + + if on: + return update_mode(on, selected_value) + else: + return create_3d_graph(graph, nodes, edges, metrices, metric) + + # print(c_relation_filter) + # print(p_relation_filter) + # if triggered_id == 'dropdown_companyrelation_filter' or triggered_id == 'dropdown_personrelation_filter': + # print("Hallo") + # print(selected_value) + # graph, metrices = update_graph_data(person_relation_type= p_relation_filter, company_relation_type= c_relation_filter) + # if on: + # return update_mode(on, selected_value) + # else: + # return create_3d_graph(graph, nodes, edges, metrices, metric) + # print(metrices) + # print(graph) + +def update_mode(value, metric): + + if metric == "None": + metric = None + if value == True: + return create_2d_graph(graph, nodes, edges, metrices, metric) + + + + +def update_graph_data(person_relation_type = "HAFTENDER_GESELLSCHAFTER", company_relation_type = "GESCHAEFTSFUEHRER"): + # Get Data + person_df = get_all_person_relations() + company_df = get_all_company_relations() + + person_relation = filter_relation_type(person_df, person_relation_type) + company_relation = filter_relation_type(company_df, company_relation_type) + print(company_relation) + + # company_relation = filter_relation_with_more_than_one_connection(company_relation, "id_company_to", "id_company_from") + # print(company_relation) + #Create Edge and Node List from data + nodes, edges = create_edge_and_node_list(person_relation, company_relation) + # print(edges) + + graph, metrices = initialize_network(nodes = nodes, edges = edges) + return graph, metrices + \ No newline at end of file diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py b/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py new file mode 100644 index 0000000..a7fe3f3 --- /dev/null +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py @@ -0,0 +1,128 @@ +import networkx as nx +import pandas as pd +import plotly.graph_objects as go + +def initialize_network(edges: list, nodes: list): + # create edges from dataframe + df_edges = pd.DataFrame(edges) + graph = nx.from_pandas_edgelist(df_edges, source="from", target="to", edge_attr="type") + + # update node attributes from dataframe + nx.set_node_attributes(graph, nodes) + + metrices = pd.DataFrame(columns=["degree", "eigenvector", "betweeness", "closeness", "pagerank"]) + + metrices["eigenvector"] = nx.eigenvector_centrality(graph).values() + metrices["degree"] = nx.degree_centrality(graph).values() + metrices["betweeness"] = nx.betweenness_centrality(graph).values() + metrices["closeness"] = nx.closeness_centrality(graph).values() + metrices["pagerank"] = nx.pagerank(graph).values() + + return graph, metrices + +def create_2d_graph(graph, nodes, edges,metrices, metric): + edge_x = [] + edge_y = [] + + pos = nx.spring_layout(graph) + + edge_weight_x = [] + edge_weight_y = [] + G = graph + for edge in G.edges(): + x0, y0 = pos[edge[0]] + x1, y1 = pos[edge[1]] + edge_x.append(x0) + edge_x.append(x1) + edge_x.append(None) + edge_y.append(y0) + edge_y.append(y1) + edge_y.append(None) + + # edge_weight_x.append(x1 + x1 - x0) + # edge_weight_y.append(y1 + y1 - y0) + # edge_weight_x.append(x0 + x0 - x1) + # edge_weight_y.append(y0 + y0 - y1) + edge_weight_x.append(x0 + ((x1 - x0) / 2)) + edge_weight_y.append(y0 + ((y1 - y0) / 2)) + + edge_trace = go.Scatter( + x=edge_x, y=edge_y, + line=dict(width=0.5, color='#888'), + hoverinfo='none', + mode='lines') + + edge_weights_trace = go.Scatter(x=edge_weight_x,y= edge_weight_y, mode='text', + marker_size=1, + text=[0.45, 0.7, 0.34], + textposition='top center', + hovertemplate='weight: %{text}') + + + node_x = [] + node_y = [] + for node in G.nodes(): + x, y = pos[node] + node_x.append(x) + node_y.append(y) + + node_trace = go.Scatter( + x=node_x, y=node_y, + mode='markers', + hoverinfo='text', + marker=dict( + showscale=True, + colorscale='YlGnBu', + reversescale=True, + color=[], + size=10, + colorbar=dict( + thickness=15, + title='Node Connections', + xanchor='left', + titleside='right' + ), + line_width=2)) + + #Set Color by using the nodes DataFrame with its Color Attribute. The sequence matters! + colors = list(nx.get_node_attributes(graph, "color").values()) + + node_names = [] + for key, value in nodes.items(): + + if 'name' in value.keys(): + node_names.append(value["name"]) + else: + node_names.append(value["firstname"] + " " + value["lastname"]) + + + node_trace.marker.color = colors + node_trace.text = node_names + + if metric != None: + node_trace.marker.size = list(metrices[metric]*500) + # print(list(metrices[metric]*500)) + + + edge_type_list = [] + + for row in edges: + edge_type_list.append(row["type"]) + + edge_weights_trace.text = edge_type_list + + return go.Figure(data=[edge_trace, edge_weights_trace, node_trace], + layout=go.Layout( + title='
Network graph made with Python', + titlefont_size=16, + showlegend=False, + hovermode='closest', + margin=dict(b=20,l=5,r=5,t=40), + annotations=[ dict( + text="Python code: https://plotly.com/ipython-notebooks/network-graphs/", + showarrow=False, + xref="paper", yref="paper", + x=0.005, y=-0.002 ) ], + xaxis=dict(showgrid=False, zeroline=False, showticklabels=False), + yaxis=dict(showgrid=False, zeroline=False, showticklabels=False)) + ) \ No newline at end of file diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py b/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py new file mode 100644 index 0000000..c511cd6 --- /dev/null +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py @@ -0,0 +1,142 @@ +import networkx as nx +import pandas as pd +import plotly.graph_objects as go + +def initialize_network(edges: list, nodes: list): + # create edges from dataframe + df_edges = pd.DataFrame(edges) + graph = nx.from_pandas_edgelist(df_edges, source="from", target="to", edge_attr="type") + + # update node attributes from dataframe + nx.set_node_attributes(graph, nodes) + + metrices = pd.DataFrame(columns=["degree", "eigenvector", "betweeness", "closeness", "pagerank"]) + + metrices["eigenvector"] = nx.eigenvector_centrality(graph).values() + metrices["degree"] = nx.degree_centrality(graph).values() + metrices["betweeness"] = nx.betweenness_centrality(graph).values() + metrices["closeness"] = nx.closeness_centrality(graph).values() + metrices["pagerank"] = nx.pagerank(graph).values() + + return graph, metrices + +def create_3d_graph(graph, nodes, edges,metrices, metric): + edge_x = [] + edge_y = [] + edge_z = [] + + # 3d spring layout + pos = nx.spring_layout(graph, dim=3, seed=779) + + for edge in graph.edges(): + x0, y0, z0 = pos[edge[0]] + x1, y1, z1 = pos[edge[1]] + + edge_x.append(x0) + edge_x.append(x1) + + edge_y.append(y0) + edge_y.append(y1) + + edge_z.append(z0) + edge_z.append(z1) + + edge_trace=go.Scatter3d(x=edge_x, + y=edge_y, + z=edge_z, + mode='lines', + line=dict(color='rgb(125,125,125)', width=1), + hoverinfo='none' + ) + + node_x = [] + node_y = [] + node_z = [] + + for node in graph.nodes(): + x, y, z = pos[node] + node_x.append(x) + node_y.append(y) + node_z.append(z) + + node_trace=go.Scatter3d(x=node_x, + y=node_y, + z=node_z, + mode='markers', + name='actors', + marker=dict(symbol='circle', + size=6, + color="blue", + colorscale='Viridis', + line=dict(color='rgb(50,50,50)', width=0.5) + ), + # text=labels, + hoverinfo='text' + ) + + axis=dict(showbackground=False, + showline=False, + zeroline=False, + showgrid=False, + showticklabels=False, + title='' + ) + + layout = go.Layout( + title="Social Graph", + + showlegend=False, + scene=dict( + xaxis=dict(axis), + yaxis=dict(axis), + zaxis=dict(axis), + ), + margin=dict( + t=10 + ), + hovermode='closest', + annotations=[ + dict( + showarrow=False, + text="Companies (Blue) & Person (Red) Relation", + xref='paper', + yref='paper', + x=0, + y=0.1, + xanchor='left', + yanchor='bottom', + font=dict( + size=14 + ) + ) + ], ) + + #Set Color by using the nodes DataFrame with its Color Attribute. The sequence matters! + colors = list(nx.get_node_attributes(graph, "color").values()) + + node_names = [] + for key, value in nodes.items(): + + if 'name' in value.keys(): + node_names.append(value["name"]) + else: + node_names.append(value["firstname"] + " " + value["lastname"]) + + node_trace.marker.color = colors + node_trace.text = node_names + + if metric != None: + node_trace.marker.size = list(metrices[metric]*500) + print("Test") + + edge_colors = [] + for row in edges: + if row["type"] == "HAFTENDER_GESELLSCHAFTER": + edge_colors.append('rgb(255,0,0)') + else: + edge_colors.append('rgb(255,105,180)') + edge_trace.line = dict(color=edge_colors, width=2) + + + data=[edge_trace, node_trace] + return go.Figure(data=data, layout=layout) diff --git a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py index 4fe3c0e..9641955 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py @@ -1,6 +1,18 @@ from aki_prj23_transparenzregister.utils.sql import connector, entities from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider import pandas as pd +from sqlalchemy.orm import aliased +import pandas as pd +from sqlalchemy import func, text +from aki_prj23_transparenzregister.utils.sql.connector import get_session + +session = get_session(JsonFileConfigProvider("secrets.json")) + +# Alias for Company table for the base company +to_company = aliased(entities.Company, name="to_company") + +# Alias for Company table for the head company +from_company = aliased(entities.Company, name="from_company") def find_all_company_relations() -> pd.DataFrame: """_summary_ @@ -44,5 +56,137 @@ def find_top_companies() -> pd.DataFrame: companies_df["Platzierung"] = [1,2,3,4,5] companies_df["Umsatz M€"] = [1,2,3,4,5] companies_df = companies_df[['Platzierung', 'company_name', 'Umsatz M€']] - print(companies_df) - return companies_df \ No newline at end of file + # print(companies_df) + return companies_df + + + +def get_all_company_relations(): + # Query to fetch relations between companies + relations_company_query = ( + session.query( + to_company.id.label("id_company_to"), + to_company.name.label("name_company_to"), + entities.CompanyRelation.relation.label("relation_type"), + from_company.name.label("name_company_from"), + from_company.id.label("id_company_from"), + ) + .join( + entities.CompanyRelation, + entities.CompanyRelation.company_id == to_company.id, + ) + .join( + from_company, + entities.CompanyRelation.company2_id == from_company.id, + ) + ) + str(relations_company_query) + company_relations = pd.read_sql_query(str(relations_company_query), session.bind) + + company_relations['id_company_from'] = company_relations['id_company_from'].apply(lambda x: f"c_{x}") + company_relations['id_company_to'] = company_relations['id_company_to'].apply(lambda x: f"c_{x}") + + return company_relations + +def get_all_person_relations(): + relations_person_query = ( + session.query( + entities.Company.id.label("id_company"), + entities.Company.name.label("name_company"), + entities.PersonRelation.relation.label("relation_type"), + entities.Person.id.label("id_person"), + entities.Person.lastname.label("lastname"), + entities.Person.firstname.label("firstname"), + entities.Person.date_of_birth.label("date_of_birth"), + ) + .join( + entities.PersonRelation, + entities.PersonRelation.company_id == entities.Company.id, + ) + .join( + entities.Person, + entities.PersonRelation.person_id == entities.Person.id, + ) + ) + person_relations = pd.read_sql_query(str(relations_person_query), session.bind) + + person_relations['id_company'] = person_relations['id_company'].apply(lambda x: f"c_{x}") + person_relations['id_person'] = person_relations['id_person'].apply(lambda x: f"p_{x}") + + + return person_relations + + +def filter_relation_type(df: pd.DataFrame, selected_relation_type): + df = df.loc[df["relation_type"] == selected_relation_type] + return df + + +def filter_relation_with_more_than_one_connection(df: pd.DataFrame, id_column_name_to, id_column_name_from): + # print(df.columns.values) + tmp_df = pd.DataFrame(columns= df.columns.values) + # print(tmp_df) + for _index, row in df.iterrows(): + count = 0 + id = row[id_column_name_to] + for _index_sub, row_sub in df.iterrows(): + if id == row_sub[id_column_name_to]: + count = count + 1 + if id == row_sub[id_column_name_from]: + count = count + 1 + if count > 1: + break + + if count > 1: + # tmp_df = pd.concat([tmp_df, pd.DataFrame(row)])+ + tmp_df.loc[len(tmp_df)] = row + # print(row) + count = 0 + else: + count = 0 + continue + # print(tmp_df) + count = 0 + return tmp_df + + +def create_edge_and_node_list(person_relations: pd.DataFrame, company_relations:pd.DataFrame): + nodes = {} + edges = [] + + COLOR_COMPANY = "blue" + COLOR_PERSON = "red" + + # Iterate over person relations + for _index, row in person_relations.iterrows(): + if node:= nodes.get(row['id_company']) is None: + nodes[row['id_company']] = { + "id": row['id_company'], + 'name': row['name_company'], + 'color': COLOR_COMPANY + } + if node:= nodes.get(row['id_person']) is None: + nodes[row['id_person']] = { + "id": row['id_person'], + 'firstname': row['firstname'], + 'lastname': row['lastname'], + 'date_of_birth': row['date_of_birth'], + 'color': COLOR_PERSON + } + edges.append({'from': row['id_person'], 'to': row['id_company'], 'type': row['relation_type']}) + + for _index, row in company_relations.iterrows(): + if node:= nodes.get(row['id_company_from']) is None: + nodes[row['id_company_from']] = { + "id": row['id_company_from'], + 'name': row['name_company_from'], + 'color': COLOR_COMPANY + } + if node:= nodes.get(row['id_company_to']) is None: + nodes[row['id_company_to']] = { + "id": row['id_company_to'], + 'name': row['name_company_to'], + 'color': COLOR_COMPANY + } + edges.append({'from': row['id_company_from'], 'to': row['id_company_to'], 'type': row['relation_type']}) + return nodes, edges \ No newline at end of file diff --git a/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx_v2.ipynb b/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx_v2.ipynb index d509c4d..3ba69c8 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx_v2.ipynb +++ b/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx_v2.ipynb @@ -1494,22 +1494,676 @@ }, { "cell_type": "code", - "execution_count": 127, + "execution_count": 376, "metadata": {}, "outputs": [ { "data": { "text/plain": [ - "654" + "[{'from': 'p_545', 'to': 'c_53', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_758', 'to': 'c_77', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_1313', 'to': 'c_253', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_1706', 'to': 'c_301', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_1891', 'to': 'c_388', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_1892', 'to': 'c_388', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_1899', 'to': 'c_392', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_2332', 'to': 'c_523', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_2331', 'to': 'c_523', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_2457', 'to': 'c_574', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_2458', 'to': 'c_574', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_2499', 'to': 'c_598', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_2500', 'to': 'c_598', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_3171', 'to': 'c_770', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_3382', 'to': 'c_827', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_3486', 'to': 'c_827', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_3519', 'to': 'c_827', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_3530', 'to': 'c_827', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_3531', 'to': 'c_827', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_3541', 'to': 'c_827', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_3591', 'to': 'c_827', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_3382', 'to': 'c_895', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_3486', 'to': 'c_895', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_3382', 'to': 'c_992', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_3486', 'to': 'c_992', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_4319', 'to': 'c_1132', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_4470', 'to': 'c_1201', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_4905', 'to': 'c_1379', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_4906', 'to': 'c_1379', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_4919', 'to': 'c_1390', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_5038', 'to': 'c_1444', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_5084', 'to': 'c_1466', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_5203', 'to': 'c_1552', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_5204', 'to': 'c_1552', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6056', 'to': 'c_1913', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_3530', 'to': 'c_2014', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_3519', 'to': 'c_2014', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_3531', 'to': 'c_2014', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_3541', 'to': 'c_2014', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_3591', 'to': 'c_2014', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6596', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6597', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6598', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6599', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6600', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6601', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6602', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6603', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6604', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6605', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6606', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6607', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6608', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6609', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6610', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6611', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6612', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6613', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6614', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6615', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6616', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6617', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6618', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6619', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6620', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6621', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6622', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6623', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6624', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6625', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6626', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6627', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6628', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6629', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6630', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6631', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6632', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6633', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6634', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6635', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6636', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6637', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6638', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6639', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6640', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6641', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6642', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6643', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6644', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6645', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6646', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6647', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6648', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6649', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6650', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6651', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6652', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6653', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6654', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6655', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6656', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6657', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6658', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6659', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6660', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6661', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6662', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6663', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6664', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6665', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6666', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6667', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6668', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6669', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6670', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6671', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6672', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6673', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6674', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6675', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6676', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6677', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6678', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6679', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6680', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6681', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6682', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6683', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6684', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6685', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6686', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6687', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6688', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6689', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6690', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6691', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6692', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6693', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6694', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6695', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6696', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6697', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6698', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6699', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6700', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6701', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6702', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6703', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6704', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6705', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6706', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6707', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6708', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6709', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6710', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6711', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6712', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6713', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6714', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6715', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6716', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6717', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6718', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6719', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6720', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6721', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6722', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6723', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6724', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6725', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6726', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6727', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6728', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6729', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6730', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6731', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6732', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6733', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6734', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6735', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6736', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6737', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6738', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6739', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6740', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6741', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6742', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6743', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6744', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6745', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6746', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6747', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6748', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6749', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6750', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6751', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6752', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6753', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6754', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6755', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6756', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6757', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6758', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6759', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6760', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6761', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6762', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6763', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6764', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6765', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6766', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6767', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6768', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6769', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6770', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6771', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6772', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6773', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6774', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6775', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6776', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6777', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6778', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6779', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6780', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6781', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6782', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6783', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6784', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6785', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6786', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6787', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6788', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6789', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6790', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6791', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6792', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6793', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6794', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6795', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6796', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6797', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6798', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6799', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6800', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6801', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6802', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6803', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6804', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6805', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6806', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6807', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6808', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6809', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6810', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6811', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6812', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6813', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6814', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6815', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6816', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6817', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6818', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6819', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6820', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_6821', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_7347', 'to': 'c_2316', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_7348', 'to': 'c_2316', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_7647', 'to': 'c_2444', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_7648', 'to': 'c_2444', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_7679', 'to': 'c_2470', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'p_7864', 'to': 'c_2538', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_307', 'to': 'c_258', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_353', 'to': 'c_258', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_258', 'to': 'c_370', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_371', 'to': 'c_370', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_435', 'to': 'c_403', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_455', 'to': 'c_403', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_400', 'to': 'c_482', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_633', 'to': 'c_482', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_572', 'to': 'c_498', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_484', 'to': 'c_498', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_494', 'to': 'c_536', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_568', 'to': 'c_536', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_493', 'to': 'c_539', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_406', 'to': 'c_567', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_459', 'to': 'c_567', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_539', 'to': 'c_582', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_587', 'to': 'c_588', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_401', 'to': 'c_588', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_487', 'to': 'c_610', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_484', 'to': 'c_610', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_704', 'to': 'c_667', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_666', 'to': 'c_667', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_709', 'to': 'c_732', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_765', 'to': 'c_732', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_724', 'to': 'c_742', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_746', 'to': 'c_742', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_841', 'to': 'c_752', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2293', 'to': 'c_752', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_992', 'to': 'c_827', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_925', 'to': 'c_839', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_852', 'to': 'c_839', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_954', 'to': 'c_843', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_900', 'to': 'c_843', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_954', 'to': 'c_859', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_900', 'to': 'c_859', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_841', 'to': 'c_868', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2293', 'to': 'c_868', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_850', 'to': 'c_868', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_954', 'to': 'c_871', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_900', 'to': 'c_871', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_954', 'to': 'c_879', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_900', 'to': 'c_879', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_954', 'to': 'c_908', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_900', 'to': 'c_908', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_948', 'to': 'c_930', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2293', 'to': 'c_930', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_846', 'to': 'c_930', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_832', 'to': 'c_939', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_845', 'to': 'c_939', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_867', 'to': 'c_949', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_981', 'to': 'c_949', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_985', 'to': 'c_955', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_900', 'to': 'c_955', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_896', 'to': 'c_967', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_840', 'to': 'c_967', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_954', 'to': 'c_971', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_900', 'to': 'c_971', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_906', 'to': 'c_978', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_811', 'to': 'c_978', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_954', 'to': 'c_983', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_900', 'to': 'c_983', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_954', 'to': 'c_984', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_900', 'to': 'c_984', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_634', 'to': 'c_991', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_600', 'to': 'c_991', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_954', 'to': 'c_996', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_900', 'to': 'c_996', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1191', 'to': 'c_1004', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1112', 'to': 'c_1004', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_841', 'to': 'c_1009', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_948', 'to': 'c_1009', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1220', 'to': 'c_1011', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1011', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1220', 'to': 'c_1012', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1012', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1048', 'to': 'c_1013', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1013', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1014', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1014', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1015', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1015', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1016', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1016', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1017', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1017', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1018', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1018', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1027', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1027', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1030', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1030', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1031', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1031', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1045', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1045', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1046', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1046', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1047', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1047', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1062', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1062', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1064', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1064', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1065', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1065', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1066', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1066', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1067', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1067', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1079', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1079', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1220', 'to': 'c_1080', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1080', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1081', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1091', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1091', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1092', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1092', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1229', 'to': 'c_1103', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1899', 'to': 'c_1103', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1220', 'to': 'c_1104', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1104', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1105', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1105', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1106', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1106', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1220', 'to': 'c_1122', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1122', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1123', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1123', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1124', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1124', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1147', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1147', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1148', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1148', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1157', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1157', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1159', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1159', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1220', 'to': 'c_1172', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1172', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1173', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1173', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1175', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1175', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1176', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1176', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1220', 'to': 'c_1197', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1197', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1220', 'to': 'c_1198', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1198', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1200', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1200', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1094', 'to': 'c_1206', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1162', 'to': 'c_1206', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1218', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1218', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1220', 'to': 'c_1219', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1219', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1231', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1231', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1233', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1233', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1048', 'to': 'c_1238', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1238', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1240', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1240', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1220', 'to': 'c_1248', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1248', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1220', 'to': 'c_1249', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1249', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1220', 'to': 'c_1250', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1250', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1220', 'to': 'c_1251', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1048', 'to': 'c_1251', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2379', 'to': 'c_1270', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2327', 'to': 'c_1270', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2944', 'to': 'c_1293', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1235', 'to': 'c_1293', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1264', 'to': 'c_1383', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1235', 'to': 'c_1383', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1264', 'to': 'c_1386', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1235', 'to': 'c_1386', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1355', 'to': 'c_1420', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2944', 'to': 'c_1430', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1235', 'to': 'c_1430', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1264', 'to': 'c_1496', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1235', 'to': 'c_1496', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1903', 'to': 'c_1512', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1869', 'to': 'c_1537', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1603', 'to': 'c_1537', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1981', 'to': 'c_1547', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1679', 'to': 'c_1547', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1903', 'to': 'c_1579', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1981', 'to': 'c_1583', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1679', 'to': 'c_1583', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1744', 'to': 'c_1597', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1743', 'to': 'c_1597', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1604', 'to': 'c_1603', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1811', 'to': 'c_1603', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1683', 'to': 'c_1624', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2327', 'to': 'c_1624', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_30', 'to': 'c_1668', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2034', 'to': 'c_1668', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2034', 'to': 'c_1668', 'type': 'LIQUIDATOR'},\n", + " {'from': 'c_1981', 'to': 'c_1731', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1679', 'to': 'c_1731', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1657', 'to': 'c_1742', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1557', 'to': 'c_1742', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2597', 'to': 'c_1754', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1875', 'to': 'c_1754', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1641', 'to': 'c_1754', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_92', 'to': 'c_1754', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1952', 'to': 'c_1778', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1603', 'to': 'c_1778', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1903', 'to': 'c_1813', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_30', 'to': 'c_1847', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1784', 'to': 'c_1847', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1781', 'to': 'c_1873', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1844', 'to': 'c_1873', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1981', 'to': 'c_1919', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1679', 'to': 'c_1919', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1975', 'to': 'c_1928', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1691', 'to': 'c_1928', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1779', 'to': 'c_1930', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1603', 'to': 'c_1930', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1934', 'to': 'c_1935', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1572', 'to': 'c_1935', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1695', 'to': 'c_1976', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1603', 'to': 'c_1976', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_827', 'to': 'c_2014', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1264', 'to': 'c_2021', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2136', 'to': 'c_2021', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2020', 'to': 'c_2022', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2041', 'to': 'c_2022', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2082', 'to': 'c_2041', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2193', 'to': 'c_2041', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2020', 'to': 'c_2042', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2041', 'to': 'c_2042', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1264', 'to': 'c_2044', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2136', 'to': 'c_2044', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2014', 'to': 'c_2060', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_992', 'to': 'c_2080', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2060', 'to': 'c_2080', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1264', 'to': 'c_2084', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2136', 'to': 'c_2084', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2003', 'to': 'c_2093', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2041', 'to': 'c_2093', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_3065', 'to': 'c_2094', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2041', 'to': 'c_2094', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1492', 'to': 'c_2095', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_41', 'to': 'c_2095', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1264', 'to': 'c_2096', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2136', 'to': 'c_2096', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_3065', 'to': 'c_2126', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2041', 'to': 'c_2126', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1264', 'to': 'c_2144', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2136', 'to': 'c_2144', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2020', 'to': 'c_2159', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2041', 'to': 'c_2159', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2020', 'to': 'c_2171', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2041', 'to': 'c_2171', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2020', 'to': 'c_2195', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2041', 'to': 'c_2195', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2254', 'to': 'c_2222', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2269', 'to': 'c_2222', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2256', 'to': 'c_2255', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2222', 'to': 'c_2255', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2382', 'to': 'c_2265', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2405', 'to': 'c_2265', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2100', 'to': 'c_2266', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2407', 'to': 'c_2266', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2402', 'to': 'c_2309', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_444', 'to': 'c_2309', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2179', 'to': 'c_2309', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2264', 'to': 'c_2312', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2405', 'to': 'c_2312', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2340', 'to': 'c_2342', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2454', 'to': 'c_2342', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1954', 'to': 'c_2376', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1715', 'to': 'c_2376', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2454', 'to': 'c_2400', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2363', 'to': 'c_2400', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1235', 'to': 'c_2411', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2944', 'to': 'c_2411', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2293', 'to': 'c_2413', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_841', 'to': 'c_2413', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2454', 'to': 'c_2453', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2363', 'to': 'c_2453', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2230', 'to': 'c_2462', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_444', 'to': 'c_2462', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_3112', 'to': 'c_2467', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_3103', 'to': 'c_2467', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2589', 'to': 'c_2476', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2552', 'to': 'c_2476', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2639', 'to': 'c_2520', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2568', 'to': 'c_2520', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2569', 'to': 'c_2543', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2493', 'to': 'c_2543', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2639', 'to': 'c_2595', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2670', 'to': 'c_2595', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2628', 'to': 'c_2627', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2570', 'to': 'c_2627', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2493', 'to': 'c_2639', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2569', 'to': 'c_2639', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2628', 'to': 'c_2661', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2544', 'to': 'c_2661', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2569', 'to': 'c_2689', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2493', 'to': 'c_2689', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_468', 'to': 'c_2699', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_636', 'to': 'c_2699', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_636', 'to': 'c_2700', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_600', 'to': 'c_2700', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2997', 'to': 'c_2756', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2781', 'to': 'c_2756', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1954', 'to': 'c_2764', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1715', 'to': 'c_2764', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_415', 'to': 'c_2818', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_401', 'to': 'c_2818', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2825', 'to': 'c_2826', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2715', 'to': 'c_2826', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2708', 'to': 'c_2874', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_2767', 'to': 'c_2874', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2944', 'to': 'c_2899', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1235', 'to': 'c_2899', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_587', 'to': 'c_2911', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_401', 'to': 'c_2911', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2912', 'to': 'c_2934', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_2998', 'to': 'c_2934', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_636', 'to': 'c_2984', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_401', 'to': 'c_2984', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_3112', 'to': 'c_3009', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_3103', 'to': 'c_3009', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_3112', 'to': 'c_3017', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_3103', 'to': 'c_3017', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_401', 'to': 'c_3022', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_600', 'to': 'c_3022', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_3112', 'to': 'c_3024', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_3102', 'to': 'c_3024', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_3094', 'to': 'c_3025', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_3103', 'to': 'c_3025', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_1981', 'to': 'c_3036', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_1679', 'to': 'c_3036', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_3106', 'to': 'c_3040', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_3031', 'to': 'c_3040', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_435', 'to': 'c_3041', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_455', 'to': 'c_3041', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_589', 'to': 'c_3044', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_600', 'to': 'c_3044', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_3112', 'to': 'c_3047', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_3103', 'to': 'c_3047', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_3112', 'to': 'c_3057', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_3103', 'to': 'c_3057', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_3112', 'to': 'c_3062', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_3103', 'to': 'c_3062', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_3073', 'to': 'c_3071', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_3044', 'to': 'c_3071', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_600', 'to': 'c_3071', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_589', 'to': 'c_3073', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_600', 'to': 'c_3073', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_3112', 'to': 'c_3074', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_3103', 'to': 'c_3074', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_3112', 'to': 'c_3075', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_3103', 'to': 'c_3075', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_455', 'to': 'c_3098', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_600', 'to': 'c_3098', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_3112', 'to': 'c_3101', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_3103', 'to': 'c_3101', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_3070', 'to': 'c_3107', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_3031', 'to': 'c_3107', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_589', 'to': 'c_3126', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_600', 'to': 'c_3126', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_435', 'to': 'c_3134', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_589', 'to': 'c_3134', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_3112', 'to': 'c_3136', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_3103', 'to': 'c_3136', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_3112', 'to': 'c_3137', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_3103', 'to': 'c_3137', 'type': 'KOMMANDITIST'},\n", + " {'from': 'c_3112', 'to': 'c_3145', 'type': 'HAFTENDER_GESELLSCHAFTER'},\n", + " {'from': 'c_3103', 'to': 'c_3145', 'type': 'KOMMANDITIST'}]" ] }, - "execution_count": 127, + "execution_count": 376, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "len(edges)" + "len(edges)\n", + "edges" ] }, { @@ -12724,7 +13378,34 @@ }, { "cell_type": "code", - "execution_count": 357, + "execution_count": 374, + "id": "d51f7e94", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[{'from': 'p_545', 'to': 'c_53', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_758', 'to': 'c_77', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_1313', 'to': 'c_253', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_1706', 'to': 'c_301', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_1891', 'to': 'c_388', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_1892', 'to': 'c_388', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_1899', 'to': 'c_392', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_2332', 'to': 'c_523', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_2331', 'to': 'c_523', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_2457', 'to': 'c_574', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_2458', 'to': 'c_574', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_2499', 'to': 'c_598', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_2500', 'to': 'c_598', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_3171', 'to': 'c_770', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_3382', 'to': 'c_827', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_3486', 'to': 'c_827', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_3519', 'to': 'c_827', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_3530', 'to': 'c_827', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_3531', 'to': 'c_827', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_3541', 'to': 'c_827', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_3591', 'to': 'c_827', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_3382', 'to': 'c_895', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_3486', 'to': 'c_895', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_3382', 'to': 'c_992', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_3486', 'to': 'c_992', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_4319', 'to': 'c_1132', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_4470', 'to': 'c_1201', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_4905', 'to': 'c_1379', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_4906', 'to': 'c_1379', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_4919', 'to': 'c_1390', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_5038', 'to': 'c_1444', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_5084', 'to': 'c_1466', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_5203', 'to': 'c_1552', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_5204', 'to': 'c_1552', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6056', 'to': 'c_1913', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_3530', 'to': 'c_2014', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_3519', 'to': 'c_2014', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_3531', 'to': 'c_2014', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_3541', 'to': 'c_2014', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_3591', 'to': 'c_2014', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6596', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6597', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6598', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6599', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6600', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6601', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6602', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6603', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6604', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6605', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6606', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6607', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6608', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6609', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6610', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6611', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6612', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6613', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6614', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6615', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6616', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6617', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6618', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6619', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6620', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6621', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6622', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6623', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6624', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6625', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6626', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6627', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6628', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6629', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6630', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6631', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6632', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6633', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6634', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6635', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6636', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6637', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6638', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6639', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6640', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6641', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6642', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6643', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6644', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6645', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6646', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6647', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6648', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6649', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6650', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6651', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6652', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6653', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6654', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6655', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6656', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6657', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6658', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6659', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6660', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6661', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6662', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6663', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6664', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6665', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6666', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6667', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6668', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6669', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6670', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6671', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6672', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6673', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6674', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6675', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6676', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6677', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6678', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6679', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6680', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6681', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6682', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6683', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6684', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6685', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6686', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6687', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6688', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6689', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6690', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6691', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6692', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6693', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6694', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6695', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6696', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6697', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6698', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6699', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6700', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6701', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6702', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6703', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6704', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6705', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6706', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6707', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6708', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6709', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6710', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6711', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6712', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6713', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6714', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6715', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6716', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6717', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6718', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6719', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6720', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6721', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6722', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6723', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6724', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6725', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6726', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6727', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6728', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6729', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6730', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6731', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6732', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6733', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6734', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6735', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6736', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6737', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6738', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6739', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6740', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6741', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6742', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6743', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6744', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6745', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6746', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6747', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6748', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6749', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6750', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6751', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6752', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6753', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6754', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6755', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6756', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6757', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6758', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6759', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6760', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6761', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6762', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6763', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6764', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6765', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6766', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6767', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6768', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6769', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6770', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6771', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6772', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6773', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6774', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6775', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6776', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6777', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6778', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6779', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6780', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6781', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6782', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6783', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6784', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6785', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6786', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6787', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6788', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6789', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6790', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6791', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6792', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6793', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6794', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6795', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6796', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6797', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6798', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6799', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6800', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6801', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6802', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6803', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6804', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6805', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6806', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6807', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6808', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6809', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6810', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6811', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6812', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6813', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6814', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6815', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6816', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6817', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6818', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6819', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6820', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_6821', 'to': 'c_2081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_7347', 'to': 'c_2316', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_7348', 'to': 'c_2316', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_7647', 'to': 'c_2444', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_7648', 'to': 'c_2444', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_7679', 'to': 'c_2470', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'p_7864', 'to': 'c_2538', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_307', 'to': 'c_258', 'type': 'KOMMANDITIST'}, {'from': 'c_353', 'to': 'c_258', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_258', 'to': 'c_370', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_371', 'to': 'c_370', 'type': 'KOMMANDITIST'}, {'from': 'c_435', 'to': 'c_403', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_455', 'to': 'c_403', 'type': 'KOMMANDITIST'}, {'from': 'c_400', 'to': 'c_482', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_633', 'to': 'c_482', 'type': 'KOMMANDITIST'}, {'from': 'c_572', 'to': 'c_498', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_484', 'to': 'c_498', 'type': 'KOMMANDITIST'}, {'from': 'c_494', 'to': 'c_536', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_568', 'to': 'c_536', 'type': 'KOMMANDITIST'}, {'from': 'c_493', 'to': 'c_539', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_406', 'to': 'c_567', 'type': 'KOMMANDITIST'}, {'from': 'c_459', 'to': 'c_567', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_539', 'to': 'c_582', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_587', 'to': 'c_588', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_401', 'to': 'c_588', 'type': 'KOMMANDITIST'}, {'from': 'c_487', 'to': 'c_610', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_484', 'to': 'c_610', 'type': 'KOMMANDITIST'}, {'from': 'c_704', 'to': 'c_667', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_666', 'to': 'c_667', 'type': 'KOMMANDITIST'}, {'from': 'c_709', 'to': 'c_732', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_765', 'to': 'c_732', 'type': 'KOMMANDITIST'}, {'from': 'c_724', 'to': 'c_742', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_746', 'to': 'c_742', 'type': 'KOMMANDITIST'}, {'from': 'c_841', 'to': 'c_752', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2293', 'to': 'c_752', 'type': 'KOMMANDITIST'}, {'from': 'c_992', 'to': 'c_827', 'type': 'KOMMANDITIST'}, {'from': 'c_925', 'to': 'c_839', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_852', 'to': 'c_839', 'type': 'KOMMANDITIST'}, {'from': 'c_954', 'to': 'c_843', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_900', 'to': 'c_843', 'type': 'KOMMANDITIST'}, {'from': 'c_954', 'to': 'c_859', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_900', 'to': 'c_859', 'type': 'KOMMANDITIST'}, {'from': 'c_841', 'to': 'c_868', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2293', 'to': 'c_868', 'type': 'KOMMANDITIST'}, {'from': 'c_850', 'to': 'c_868', 'type': 'KOMMANDITIST'}, {'from': 'c_954', 'to': 'c_871', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_900', 'to': 'c_871', 'type': 'KOMMANDITIST'}, {'from': 'c_954', 'to': 'c_879', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_900', 'to': 'c_879', 'type': 'KOMMANDITIST'}, {'from': 'c_954', 'to': 'c_908', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_900', 'to': 'c_908', 'type': 'KOMMANDITIST'}, {'from': 'c_948', 'to': 'c_930', 'type': 'KOMMANDITIST'}, {'from': 'c_2293', 'to': 'c_930', 'type': 'KOMMANDITIST'}, {'from': 'c_846', 'to': 'c_930', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_832', 'to': 'c_939', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_845', 'to': 'c_939', 'type': 'KOMMANDITIST'}, {'from': 'c_867', 'to': 'c_949', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_981', 'to': 'c_949', 'type': 'KOMMANDITIST'}, {'from': 'c_985', 'to': 'c_955', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_900', 'to': 'c_955', 'type': 'KOMMANDITIST'}, {'from': 'c_896', 'to': 'c_967', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_840', 'to': 'c_967', 'type': 'KOMMANDITIST'}, {'from': 'c_954', 'to': 'c_971', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_900', 'to': 'c_971', 'type': 'KOMMANDITIST'}, {'from': 'c_906', 'to': 'c_978', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_811', 'to': 'c_978', 'type': 'KOMMANDITIST'}, {'from': 'c_954', 'to': 'c_983', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_900', 'to': 'c_983', 'type': 'KOMMANDITIST'}, {'from': 'c_954', 'to': 'c_984', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_900', 'to': 'c_984', 'type': 'KOMMANDITIST'}, {'from': 'c_634', 'to': 'c_991', 'type': 'KOMMANDITIST'}, {'from': 'c_600', 'to': 'c_991', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_954', 'to': 'c_996', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_900', 'to': 'c_996', 'type': 'KOMMANDITIST'}, {'from': 'c_1191', 'to': 'c_1004', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1112', 'to': 'c_1004', 'type': 'KOMMANDITIST'}, {'from': 'c_841', 'to': 'c_1009', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_948', 'to': 'c_1009', 'type': 'KOMMANDITIST'}, {'from': 'c_1220', 'to': 'c_1011', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1011', 'type': 'KOMMANDITIST'}, {'from': 'c_1220', 'to': 'c_1012', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1012', 'type': 'KOMMANDITIST'}, {'from': 'c_1048', 'to': 'c_1013', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1013', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1014', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1014', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1015', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1015', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1016', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1016', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1017', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1017', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1018', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1018', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1027', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1027', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1030', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1030', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1031', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1031', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1045', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1045', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1046', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1046', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1047', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1047', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1062', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1062', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1064', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1064', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1065', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1065', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1066', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1066', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1067', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1067', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1079', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1079', 'type': 'KOMMANDITIST'}, {'from': 'c_1220', 'to': 'c_1080', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1080', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1081', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1091', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1091', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1092', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1092', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1229', 'to': 'c_1103', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1899', 'to': 'c_1103', 'type': 'KOMMANDITIST'}, {'from': 'c_1220', 'to': 'c_1104', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1104', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1105', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1105', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1106', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1106', 'type': 'KOMMANDITIST'}, {'from': 'c_1220', 'to': 'c_1122', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1122', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1123', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1123', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1124', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1124', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1147', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1147', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1148', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1148', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1157', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1157', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1159', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1159', 'type': 'KOMMANDITIST'}, {'from': 'c_1220', 'to': 'c_1172', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1172', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1173', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1173', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1175', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1175', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1176', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1176', 'type': 'KOMMANDITIST'}, {'from': 'c_1220', 'to': 'c_1197', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1197', 'type': 'KOMMANDITIST'}, {'from': 'c_1220', 'to': 'c_1198', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1198', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1200', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1200', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1094', 'to': 'c_1206', 'type': 'KOMMANDITIST'}, {'from': 'c_1162', 'to': 'c_1206', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1218', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1218', 'type': 'KOMMANDITIST'}, {'from': 'c_1220', 'to': 'c_1219', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1219', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1231', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1231', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1233', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1233', 'type': 'KOMMANDITIST'}, {'from': 'c_1048', 'to': 'c_1238', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1238', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1240', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1240', 'type': 'KOMMANDITIST'}, {'from': 'c_1220', 'to': 'c_1248', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1248', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1220', 'to': 'c_1249', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1249', 'type': 'KOMMANDITIST'}, {'from': 'c_1220', 'to': 'c_1250', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1250', 'type': 'KOMMANDITIST'}, {'from': 'c_1220', 'to': 'c_1251', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1048', 'to': 'c_1251', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2379', 'to': 'c_1270', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2327', 'to': 'c_1270', 'type': 'KOMMANDITIST'}, {'from': 'c_2944', 'to': 'c_1293', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1235', 'to': 'c_1293', 'type': 'KOMMANDITIST'}, {'from': 'c_1264', 'to': 'c_1383', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1235', 'to': 'c_1383', 'type': 'KOMMANDITIST'}, {'from': 'c_1264', 'to': 'c_1386', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1235', 'to': 'c_1386', 'type': 'KOMMANDITIST'}, {'from': 'c_1355', 'to': 'c_1420', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2944', 'to': 'c_1430', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1235', 'to': 'c_1430', 'type': 'KOMMANDITIST'}, {'from': 'c_1264', 'to': 'c_1496', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1235', 'to': 'c_1496', 'type': 'KOMMANDITIST'}, {'from': 'c_1903', 'to': 'c_1512', 'type': 'KOMMANDITIST'}, {'from': 'c_1869', 'to': 'c_1537', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1603', 'to': 'c_1537', 'type': 'KOMMANDITIST'}, {'from': 'c_1981', 'to': 'c_1547', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1679', 'to': 'c_1547', 'type': 'KOMMANDITIST'}, {'from': 'c_1903', 'to': 'c_1579', 'type': 'KOMMANDITIST'}, {'from': 'c_1981', 'to': 'c_1583', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1679', 'to': 'c_1583', 'type': 'KOMMANDITIST'}, {'from': 'c_1744', 'to': 'c_1597', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1743', 'to': 'c_1597', 'type': 'KOMMANDITIST'}, {'from': 'c_1604', 'to': 'c_1603', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1811', 'to': 'c_1603', 'type': 'KOMMANDITIST'}, {'from': 'c_1683', 'to': 'c_1624', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2327', 'to': 'c_1624', 'type': 'KOMMANDITIST'}, {'from': 'c_30', 'to': 'c_1668', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2034', 'to': 'c_1668', 'type': 'KOMMANDITIST'}, {'from': 'c_2034', 'to': 'c_1668', 'type': 'LIQUIDATOR'}, {'from': 'c_1981', 'to': 'c_1731', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1679', 'to': 'c_1731', 'type': 'KOMMANDITIST'}, {'from': 'c_1657', 'to': 'c_1742', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1557', 'to': 'c_1742', 'type': 'KOMMANDITIST'}, {'from': 'c_2597', 'to': 'c_1754', 'type': 'KOMMANDITIST'}, {'from': 'c_1875', 'to': 'c_1754', 'type': 'KOMMANDITIST'}, {'from': 'c_1641', 'to': 'c_1754', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_92', 'to': 'c_1754', 'type': 'KOMMANDITIST'}, {'from': 'c_1952', 'to': 'c_1778', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1603', 'to': 'c_1778', 'type': 'KOMMANDITIST'}, {'from': 'c_1903', 'to': 'c_1813', 'type': 'KOMMANDITIST'}, {'from': 'c_30', 'to': 'c_1847', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1784', 'to': 'c_1847', 'type': 'KOMMANDITIST'}, {'from': 'c_1781', 'to': 'c_1873', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1844', 'to': 'c_1873', 'type': 'KOMMANDITIST'}, {'from': 'c_1981', 'to': 'c_1919', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1679', 'to': 'c_1919', 'type': 'KOMMANDITIST'}, {'from': 'c_1975', 'to': 'c_1928', 'type': 'KOMMANDITIST'}, {'from': 'c_1691', 'to': 'c_1928', 'type': 'KOMMANDITIST'}, {'from': 'c_1779', 'to': 'c_1930', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1603', 'to': 'c_1930', 'type': 'KOMMANDITIST'}, {'from': 'c_1934', 'to': 'c_1935', 'type': 'KOMMANDITIST'}, {'from': 'c_1572', 'to': 'c_1935', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1695', 'to': 'c_1976', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1603', 'to': 'c_1976', 'type': 'KOMMANDITIST'}, {'from': 'c_827', 'to': 'c_2014', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1264', 'to': 'c_2021', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2136', 'to': 'c_2021', 'type': 'KOMMANDITIST'}, {'from': 'c_2020', 'to': 'c_2022', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2041', 'to': 'c_2022', 'type': 'KOMMANDITIST'}, {'from': 'c_2082', 'to': 'c_2041', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2193', 'to': 'c_2041', 'type': 'KOMMANDITIST'}, {'from': 'c_2020', 'to': 'c_2042', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2041', 'to': 'c_2042', 'type': 'KOMMANDITIST'}, {'from': 'c_1264', 'to': 'c_2044', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2136', 'to': 'c_2044', 'type': 'KOMMANDITIST'}, {'from': 'c_2014', 'to': 'c_2060', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_992', 'to': 'c_2080', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2060', 'to': 'c_2080', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1264', 'to': 'c_2084', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2136', 'to': 'c_2084', 'type': 'KOMMANDITIST'}, {'from': 'c_2003', 'to': 'c_2093', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2041', 'to': 'c_2093', 'type': 'KOMMANDITIST'}, {'from': 'c_3065', 'to': 'c_2094', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2041', 'to': 'c_2094', 'type': 'KOMMANDITIST'}, {'from': 'c_1492', 'to': 'c_2095', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_41', 'to': 'c_2095', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1264', 'to': 'c_2096', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2136', 'to': 'c_2096', 'type': 'KOMMANDITIST'}, {'from': 'c_3065', 'to': 'c_2126', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2041', 'to': 'c_2126', 'type': 'KOMMANDITIST'}, {'from': 'c_1264', 'to': 'c_2144', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2136', 'to': 'c_2144', 'type': 'KOMMANDITIST'}, {'from': 'c_2020', 'to': 'c_2159', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2041', 'to': 'c_2159', 'type': 'KOMMANDITIST'}, {'from': 'c_2020', 'to': 'c_2171', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2041', 'to': 'c_2171', 'type': 'KOMMANDITIST'}, {'from': 'c_2020', 'to': 'c_2195', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2041', 'to': 'c_2195', 'type': 'KOMMANDITIST'}, {'from': 'c_2254', 'to': 'c_2222', 'type': 'KOMMANDITIST'}, {'from': 'c_2269', 'to': 'c_2222', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2256', 'to': 'c_2255', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2222', 'to': 'c_2255', 'type': 'KOMMANDITIST'}, {'from': 'c_2382', 'to': 'c_2265', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2405', 'to': 'c_2265', 'type': 'KOMMANDITIST'}, {'from': 'c_2100', 'to': 'c_2266', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2407', 'to': 'c_2266', 'type': 'KOMMANDITIST'}, {'from': 'c_2402', 'to': 'c_2309', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_444', 'to': 'c_2309', 'type': 'KOMMANDITIST'}, {'from': 'c_2179', 'to': 'c_2309', 'type': 'KOMMANDITIST'}, {'from': 'c_2264', 'to': 'c_2312', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2405', 'to': 'c_2312', 'type': 'KOMMANDITIST'}, {'from': 'c_2340', 'to': 'c_2342', 'type': 'KOMMANDITIST'}, {'from': 'c_2454', 'to': 'c_2342', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1954', 'to': 'c_2376', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1715', 'to': 'c_2376', 'type': 'KOMMANDITIST'}, {'from': 'c_2454', 'to': 'c_2400', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2363', 'to': 'c_2400', 'type': 'KOMMANDITIST'}, {'from': 'c_1235', 'to': 'c_2411', 'type': 'KOMMANDITIST'}, {'from': 'c_2944', 'to': 'c_2411', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2293', 'to': 'c_2413', 'type': 'KOMMANDITIST'}, {'from': 'c_841', 'to': 'c_2413', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2454', 'to': 'c_2453', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2363', 'to': 'c_2453', 'type': 'KOMMANDITIST'}, {'from': 'c_2230', 'to': 'c_2462', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_444', 'to': 'c_2462', 'type': 'KOMMANDITIST'}, {'from': 'c_3112', 'to': 'c_2467', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_3103', 'to': 'c_2467', 'type': 'KOMMANDITIST'}, {'from': 'c_2589', 'to': 'c_2476', 'type': 'KOMMANDITIST'}, {'from': 'c_2552', 'to': 'c_2476', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2639', 'to': 'c_2520', 'type': 'KOMMANDITIST'}, {'from': 'c_2568', 'to': 'c_2520', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2569', 'to': 'c_2543', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2493', 'to': 'c_2543', 'type': 'KOMMANDITIST'}, {'from': 'c_2639', 'to': 'c_2595', 'type': 'KOMMANDITIST'}, {'from': 'c_2670', 'to': 'c_2595', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2628', 'to': 'c_2627', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2570', 'to': 'c_2627', 'type': 'KOMMANDITIST'}, {'from': 'c_2493', 'to': 'c_2639', 'type': 'KOMMANDITIST'}, {'from': 'c_2569', 'to': 'c_2639', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2628', 'to': 'c_2661', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2544', 'to': 'c_2661', 'type': 'KOMMANDITIST'}, {'from': 'c_2569', 'to': 'c_2689', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2493', 'to': 'c_2689', 'type': 'KOMMANDITIST'}, {'from': 'c_468', 'to': 'c_2699', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_636', 'to': 'c_2699', 'type': 'KOMMANDITIST'}, {'from': 'c_636', 'to': 'c_2700', 'type': 'KOMMANDITIST'}, {'from': 'c_600', 'to': 'c_2700', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2997', 'to': 'c_2756', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2781', 'to': 'c_2756', 'type': 'KOMMANDITIST'}, {'from': 'c_1954', 'to': 'c_2764', 'type': 'KOMMANDITIST'}, {'from': 'c_1715', 'to': 'c_2764', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_415', 'to': 'c_2818', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_401', 'to': 'c_2818', 'type': 'KOMMANDITIST'}, {'from': 'c_2825', 'to': 'c_2826', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2715', 'to': 'c_2826', 'type': 'KOMMANDITIST'}, {'from': 'c_2708', 'to': 'c_2874', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_2767', 'to': 'c_2874', 'type': 'KOMMANDITIST'}, {'from': 'c_2944', 'to': 'c_2899', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1235', 'to': 'c_2899', 'type': 'KOMMANDITIST'}, {'from': 'c_587', 'to': 'c_2911', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_401', 'to': 'c_2911', 'type': 'KOMMANDITIST'}, {'from': 'c_2912', 'to': 'c_2934', 'type': 'KOMMANDITIST'}, {'from': 'c_2998', 'to': 'c_2934', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_636', 'to': 'c_2984', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_401', 'to': 'c_2984', 'type': 'KOMMANDITIST'}, {'from': 'c_3112', 'to': 'c_3009', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_3103', 'to': 'c_3009', 'type': 'KOMMANDITIST'}, {'from': 'c_3112', 'to': 'c_3017', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_3103', 'to': 'c_3017', 'type': 'KOMMANDITIST'}, {'from': 'c_401', 'to': 'c_3022', 'type': 'KOMMANDITIST'}, {'from': 'c_600', 'to': 'c_3022', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_3112', 'to': 'c_3024', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_3102', 'to': 'c_3024', 'type': 'KOMMANDITIST'}, {'from': 'c_3094', 'to': 'c_3025', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_3103', 'to': 'c_3025', 'type': 'KOMMANDITIST'}, {'from': 'c_1981', 'to': 'c_3036', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_1679', 'to': 'c_3036', 'type': 'KOMMANDITIST'}, {'from': 'c_3106', 'to': 'c_3040', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_3031', 'to': 'c_3040', 'type': 'KOMMANDITIST'}, {'from': 'c_435', 'to': 'c_3041', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_455', 'to': 'c_3041', 'type': 'KOMMANDITIST'}, {'from': 'c_589', 'to': 'c_3044', 'type': 'KOMMANDITIST'}, {'from': 'c_600', 'to': 'c_3044', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_3112', 'to': 'c_3047', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_3103', 'to': 'c_3047', 'type': 'KOMMANDITIST'}, {'from': 'c_3112', 'to': 'c_3057', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_3103', 'to': 'c_3057', 'type': 'KOMMANDITIST'}, {'from': 'c_3112', 'to': 'c_3062', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_3103', 'to': 'c_3062', 'type': 'KOMMANDITIST'}, {'from': 'c_3073', 'to': 'c_3071', 'type': 'KOMMANDITIST'}, {'from': 'c_3044', 'to': 'c_3071', 'type': 'KOMMANDITIST'}, {'from': 'c_600', 'to': 'c_3071', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_589', 'to': 'c_3073', 'type': 'KOMMANDITIST'}, {'from': 'c_600', 'to': 'c_3073', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_3112', 'to': 'c_3074', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_3103', 'to': 'c_3074', 'type': 'KOMMANDITIST'}, {'from': 'c_3112', 'to': 'c_3075', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_3103', 'to': 'c_3075', 'type': 'KOMMANDITIST'}, {'from': 'c_455', 'to': 'c_3098', 'type': 'KOMMANDITIST'}, {'from': 'c_600', 'to': 'c_3098', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_3112', 'to': 'c_3101', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_3103', 'to': 'c_3101', 'type': 'KOMMANDITIST'}, {'from': 'c_3070', 'to': 'c_3107', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_3031', 'to': 'c_3107', 'type': 'KOMMANDITIST'}, {'from': 'c_589', 'to': 'c_3126', 'type': 'KOMMANDITIST'}, {'from': 'c_600', 'to': 'c_3126', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_435', 'to': 'c_3134', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_589', 'to': 'c_3134', 'type': 'KOMMANDITIST'}, {'from': 'c_3112', 'to': 'c_3136', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_3103', 'to': 'c_3136', 'type': 'KOMMANDITIST'}, {'from': 'c_3112', 'to': 'c_3137', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_3103', 'to': 'c_3137', 'type': 'KOMMANDITIST'}, {'from': 'c_3112', 'to': 'c_3145', 'type': 'HAFTENDER_GESELLSCHAFTER'}, {'from': 'c_3103', 'to': 'c_3145', 'type': 'KOMMANDITIST'}]\n", + "['rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)', 'rgb(255,0,0)', 'rgb(255,105,180)']\n" + ] + } + ], + "source": [ + "print(edges)\n", + "edge_colors = []\n", + "for row in edges:\n", + " if row[\"type\"] == \"HAFTENDER_GESELLSCHAFTER\":\n", + " edge_colors.append('rgb(255,0,0)')\n", + " else:\n", + " edge_colors.append('rgb(255,105,180)')\n", + "print(edge_colors)\n", + "edge_trace.line = dict(color=edge_colors, width=2)" + ] + }, + { + "cell_type": "code", + "execution_count": 375, "id": "a4395d63", "metadata": {}, "outputs": [ @@ -12738,8 +13419,663 @@ { "hoverinfo": "none", "line": { - "color": "rgb(125,125,125)", - "width": 1 + "color": [ + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)", + "rgb(255,0,0)", + "rgb(255,105,180)" + ], + "width": 2 }, "mode": "lines", "type": "scatter3d", From 891ed277b6b60b000883fadcf5fa2d290451d375 Mon Sep 17 00:00:00 2001 From: Tim Date: Wed, 25 Oct 2023 09:49:58 +0200 Subject: [PATCH 15/36] Added comments, descriptions and cleaned up. --- .../ui/{ => archive}/networkx_dash_overall.py | 76 ++- .../ui/assets/networkx_style.css | 93 ++- .../ui/cytoscape_dash.py | 25 - .../ui/dashvis_networkx.py | 11 - .../ui/networkx_dash.py | 73 ++- .../ui/pages/home.py | 262 +++++---- .../utils/networkx/{ => archive}/Dev.ipynb | 145 ++--- .../{ => archive}/networkX_with_sql.ipynb | 38 +- .../networkx/{ => archive}/network_graph.html | 544 ++++++++--------- .../sql_alchemy_to_networkx.ipynb | 100 ++-- .../sql_alchemy_to_networkx_v2.ipynb | 338 ++++++----- .../utils/networkx/{ => archive}/tmp.html | 550 +++++++++--------- .../utils/networkx/network_2d.py | 175 +++--- .../utils/networkx/network_3d.py | 178 +++--- .../utils/networkx/network_base.py | 36 ++ .../utils/networkx/networkx_data.py | 209 ++++--- 16 files changed, 1602 insertions(+), 1251 deletions(-) rename src/aki_prj23_transparenzregister/ui/{ => archive}/networkx_dash_overall.py (77%) delete mode 100644 src/aki_prj23_transparenzregister/ui/cytoscape_dash.py delete mode 100644 src/aki_prj23_transparenzregister/ui/dashvis_networkx.py rename src/aki_prj23_transparenzregister/utils/networkx/{ => archive}/Dev.ipynb (99%) rename src/aki_prj23_transparenzregister/utils/networkx/{ => archive}/networkX_with_sql.ipynb (97%) rename src/aki_prj23_transparenzregister/utils/networkx/{ => archive}/network_graph.html (99%) rename src/aki_prj23_transparenzregister/utils/networkx/{ => archive}/sql_alchemy_to_networkx.ipynb (99%) rename src/aki_prj23_transparenzregister/utils/networkx/{ => archive}/sql_alchemy_to_networkx_v2.ipynb (99%) rename src/aki_prj23_transparenzregister/utils/networkx/{ => archive}/tmp.html (99%) create mode 100644 src/aki_prj23_transparenzregister/utils/networkx/network_base.py diff --git a/src/aki_prj23_transparenzregister/ui/networkx_dash_overall.py b/src/aki_prj23_transparenzregister/ui/archive/networkx_dash_overall.py similarity index 77% rename from src/aki_prj23_transparenzregister/ui/networkx_dash_overall.py rename to src/aki_prj23_transparenzregister/ui/archive/networkx_dash_overall.py index b1ffbc6..f196489 100644 --- a/src/aki_prj23_transparenzregister/ui/networkx_dash_overall.py +++ b/src/aki_prj23_transparenzregister/ui/archive/networkx_dash_overall.py @@ -1,21 +1,31 @@ -import pandas as pd +"""Old Module for NetworkX Graphs.""" import networkx as nx +import pandas as pd import plotly.graph_objects as go from dash import Dash, Input, Output, dcc, html + from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider from aki_prj23_transparenzregister.utils.sql import connector, entities -test_company = 13 #2213 # 13 +test_company = 13 # 2213 # 13 + def find_all_company_relations() -> pd.DataFrame: + """Searches for all companies and their relation in the DB. + + Returns: + pd.DataFrame: _description_ + """ session = connector.get_session(JsonFileConfigProvider("./secrets.json")) - query_companies = session.query(entities.Company) #.all() - query_relations = session.query(entities.CompanyRelation) # .all() + query_companies = session.query(entities.Company) # .all() + query_relations = session.query(entities.CompanyRelation) # .all() companies_df: pd.DataFrame = pd.read_sql(str(query_companies), session.bind) # type: ignore companies_relations_df: pd.DataFrame = pd.read_sql(str(query_relations), session.bind) # type: ignore # print(companies_relations_df) - companies_relations_df = companies_relations_df[["relation_id","company_relation_company2_id"]] + companies_relations_df = companies_relations_df[ + ["relation_id", "company_relation_company2_id"] + ] # print(companies_relations_df) company_name = [] connected_company_name = [] @@ -23,14 +33,22 @@ def find_all_company_relations() -> pd.DataFrame: companies_relations_df = companies_relations_df.head() # print(companies_relations_df) - for _, row in companies_relations_df.iterrows(): - # print(companies_df.loc[companies_df["company_id"] == row["relation_id"]]["company_name"].values[0]) - # print("TEst") - company_name.append(companies_df.loc[companies_df["company_id"] == row["relation_id"]]["company_name"].values[0]) - - connected_company_name.append(companies_df.loc[companies_df["company_id"] == row["company_relation_company2_id"]]["company_name"].values[0]) + for _, row in companies_relations_df.iterrows(): + # print(companies_df.loc[companies_df["company_id"] == row["relation_id"]]["company_name"].values[0]) + # print("TEst") + company_name.append( + companies_df.loc[companies_df["company_id"] == row["relation_id"]][ + "company_name" + ].values[0] + ) + + connected_company_name.append( + companies_df.loc[ + companies_df["company_id"] == row["company_relation_company2_id"] + ]["company_name"].values[0] + ) # print(connected_company_name) - + # print(company_name) companies_relations_df["company_name"] = company_name companies_relations_df["connected_company_name"] = connected_company_name @@ -38,10 +56,19 @@ def find_all_company_relations() -> pd.DataFrame: # print(companies_relations_df) return companies_relations_df + # Plotly figure def networkGraph(EGDE_VAR: None) -> go.Figure: + """Create a NetworkX Graph. + + Args: + EGDE_VAR (None): _description_ + + Returns: + go.Figure: _description_ + """ # find_all_company_relations() - + edges = [] for index, row in find_all_company_relations().iterrows(): edges.append([row["company_name"], row["connected_company_name"]]) @@ -113,12 +140,11 @@ def networkGraph(EGDE_VAR: None) -> go.Figure: "mirror": True, }, } - + print(nx.eigenvector_centrality(network_graph)) measure_vector = {} network_metrics_df = pd.DataFrame() - measure_vector = nx.eigenvector_centrality(network_graph) network_metrics_df["eigenvector"] = measure_vector.values() @@ -150,15 +176,14 @@ app = Dash(__name__) app.title = "Dash Networkx" # className="networkx_style" app.layout = html.Div( - - style={'width': '49%'}, - children = [ + style={"width": "49%"}, + children=[ html.I("Write your EDGE_VAR"), html.Br(), # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='metric-dropdown'), dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), - dcc.Graph(id="my-graph", style={'width': '49%'}), - ] + dcc.Graph(id="my-graph", style={"width": "49%"}), + ], ) @@ -167,9 +192,18 @@ app.layout = html.Div( # Input('metric-dropdown', 'value'), [Input("EGDE_VAR", "value")], ) -def update_output(EGDE_VAR: None) -> None: +def update_output(EGDE_VAR: None) -> go.Figure: + """Just Returns the go Figure of Plotly. + + Args: + EGDE_VAR (None): _description_ + + Returns: + go.Figure: _description_ + """ return networkGraph(EGDE_VAR) if __name__ == "__main__": + """Main Method to test this page.""" app.run(debug=True) diff --git a/src/aki_prj23_transparenzregister/ui/assets/networkx_style.css b/src/aki_prj23_transparenzregister/ui/assets/networkx_style.css index 48a6db7..ca5d9c7 100644 --- a/src/aki_prj23_transparenzregister/ui/assets/networkx_style.css +++ b/src/aki_prj23_transparenzregister/ui/assets/networkx_style.css @@ -4,7 +4,8 @@ margin-left: 10px; margin-right: 20px; border: 1px solid; - border-color: blue; + border-color: var(--raisin-black); + border-radius: 20px; width: 57%; height: 100%; } @@ -15,6 +16,94 @@ margin-left: 20px; margin-right: 10px; border: 1px solid; + border-color: var(--raisin-black); + border-radius: 20px; width: 37%; height: 100%; -} \ No newline at end of file +} +.networkx_style .filter-wrapper { + float: left; + width: 100%; + +} + +.networkx_style .filter-wrapper .filter-wrapper-item { + display: inline-block; + padding: 10px; + width: 31%; + +} + +.networkx_style .filter-wrapper .filter-wrapper-item .dropdown_style { + padding-bottom: 10px; + margin-top: 1px; + padding-left: 10px; + width: 100%; + font-size: '30%' + /* background-color: var(--raisin-black); */ + +} + +.networkx_style .header { + text-align: center; + align-items: center; + align-content: center; + vertical-align: middle; + padding: 20px; + margin: 0px; + /* margin: 5px; */ + color: var(--raisin-black); + /* background-color: var(--raisin-black); */ + +} + +.networkx_style .filter-wrapper .filter-wrapper-item .filter-description { + padding: 5px; + padding-left: 10px; + margin: 0px; + /* margin: 5px; */ + color: var(--raisin-black); + /* background-color: var(--raisin-black); */ + +} + +.networkx_style .switch-style { + align-self: left; + float: none; + padding-bottom: 10px; + margin-top: 1px; + padding-left: 10px; + width: 80%; + /* background-color: var(--raisin-black); */ + +} + +.networkx_style .switch-style .jAjsxw { + align-self: left; + float: none; + display: inline; + padding: 0px; + margin: 0px; + + /* background-color: var(--raisin-black); */ + +} + +.networkx_style .graph-style { + margin-top: 10px; + padding-bottom: 0px; + display: inline; + margin: 0px; + width: 100%; + height: 100%; + /* background-color: var(--raisin-black); */ + +} + +.networkx_style .graph-style .canvas { + padding: 0px; + margin: 0px; + width: 100% + /* background-color: var(--raisin-black); */ + +} diff --git a/src/aki_prj23_transparenzregister/ui/cytoscape_dash.py b/src/aki_prj23_transparenzregister/ui/cytoscape_dash.py deleted file mode 100644 index 0387ee4..0000000 --- a/src/aki_prj23_transparenzregister/ui/cytoscape_dash.py +++ /dev/null @@ -1,25 +0,0 @@ -import dash_cytoscape as cyto -from dash import Dash, html - -app = Dash(__name__) - -app.layout = html.Div( - [ - html.P("Dash Cytoscape:"), - cyto.Cytoscape( - id="cytoscape", - elements=[ - {"data": {"id": "ca", "label": "Canada"}}, - {"data": {"id": "on", "label": "Ontario"}}, - {"data": {"id": "qc", "label": "Quebec"}}, - {"data": {"source": "ca", "target": "on"}}, - {"data": {"source": "ca", "target": "qc"}}, - ], - layout={"name": "breadthfirst"}, - style={"width": "400px", "height": "500px"}, - ), - ] -) - -if __name__ == "__main__": - app.run_server(debug=True) diff --git a/src/aki_prj23_transparenzregister/ui/dashvis_networkx.py b/src/aki_prj23_transparenzregister/ui/dashvis_networkx.py deleted file mode 100644 index 476b214..0000000 --- a/src/aki_prj23_transparenzregister/ui/dashvis_networkx.py +++ /dev/null @@ -1,11 +0,0 @@ -# https://pypi.org/project/dashvis/ - -import dash -from dash import html -from dashvis import DashNetwork - -app = dash.Dash() -app.layout = html.Div([DashNetwork(1)]) - -if __name__ == "__main__": - app.run_server(debug=True) diff --git a/src/aki_prj23_transparenzregister/ui/networkx_dash.py b/src/aki_prj23_transparenzregister/ui/networkx_dash.py index bdddc57..9b8634a 100644 --- a/src/aki_prj23_transparenzregister/ui/networkx_dash.py +++ b/src/aki_prj23_transparenzregister/ui/networkx_dash.py @@ -1,13 +1,24 @@ -import pandas as pd +"""Old NetworkX Graph which needs to be discarded in the next commits.""" import networkx as nx +import pandas as pd import plotly.graph_objects as go -from dash import Dash, Input, Output, dcc, html, callback +from dash import dcc, html + from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider from aki_prj23_transparenzregister.utils.sql import connector, entities -test_company = 13 #2213 # 13 +test_company = 13 # 2213 # 13 + def find_company_relations(company_id: int) -> pd.DataFrame: + """_summary_. + + Args: + company_id (int): _description_ + + Returns: + pd.DataFrame: _description_ + """ session = connector.get_session(JsonFileConfigProvider("./secrets.json")) query_companies = session.query(entities.Company) query_relations = session.query(entities.CompanyRelation) @@ -15,24 +26,43 @@ def find_company_relations(company_id: int) -> pd.DataFrame: companies_df: pd.DataFrame = pd.read_sql(str(query_companies), session.bind) # type: ignore companies_relations_df: pd.DataFrame = pd.read_sql(str(query_relations), session.bind) # type: ignore - companies_relations_df = companies_relations_df.loc[companies_relations_df["relation_id"] == company_id,:][["relation_id","company_relation_company2_id"]] - + companies_relations_df = companies_relations_df.loc[ + companies_relations_df["relation_id"] == company_id, : + ][["relation_id", "company_relation_company2_id"]] + company_name = [] connected_company_name = [] - for _, row in companies_relations_df.iterrows(): - # print(companies_df.loc[companies_df["company_id"] == row["relation_id"]]["company_name"].values[0]) - company_name.append(companies_df.loc[companies_df["company_id"] == row["relation_id"]]["company_name"].values[0]) - connected_company_name.append(companies_df.loc[companies_df["company_id"] == row["company_relation_company2_id"]]["company_name"].values[0]) - + for _, row in companies_relations_df.iterrows(): + # print(companies_df.loc[companies_df["company_id"] == row["relation_id"]]["company_name"].values[0]) + company_name.append( + companies_df.loc[companies_df["company_id"] == row["relation_id"]][ + "company_name" + ].values[0] + ) + connected_company_name.append( + companies_df.loc[ + companies_df["company_id"] == row["company_relation_company2_id"] + ]["company_name"].values[0] + ) + # print(company_name) companies_relations_df["company_name"] = company_name companies_relations_df["connected_company_name"] = connected_company_name # print(companies_relations_df) return companies_relations_df + # Plotly figure def networkGraph(company_id: int) -> go.Figure: + """_summary_. + + Args: + company_id (int): _description_ + + Returns: + go.Figure: _description_ + """ # df = find_company_relations(test_company) edges = [] for index, row in find_company_relations(company_id).iterrows(): @@ -109,13 +139,18 @@ def networkGraph(company_id: int) -> go.Figure: # figure return go.Figure(data=[edge_trace, node_trace], layout=layout) -def networkx_component(company_id: int): - - layout = html.Div( - [ - - dcc.Graph(id="my-graph", figure=networkGraph(company_id)), - ] - ) - return layout +def networkx_component(company_id: int) -> html.Div: + """Retruns the Layout with a Graph. + + Args: + company_id (int): _description_ + + Returns: + any: _description_ + """ + return html.Div( + [ + dcc.Graph(id="my-graph", figure=networkGraph(company_id)), + ] + ) diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index 8b07938..007a7d1 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -1,34 +1,38 @@ """Content of home page.""" import dash +import dash_daq as daq import networkx as nx import pandas as pd import plotly.graph_objects as go -from dash import Input, Output, callback, html, dcc, dash_table, ctx -import dash_daq as daq - - -from aki_prj23_transparenzregister.utils.networkx.networkx_data import ( - find_all_company_relations, - find_top_companies, - get_all_person_relations, - get_all_company_relations, - filter_relation_type, - filter_relation_with_more_than_one_connection, - create_edge_and_node_list -) -from aki_prj23_transparenzregister.utils.networkx.network_3d import ( - initialize_network, - create_3d_graph, -) +from dash import Input, Output, callback, dash_table, dcc, html from aki_prj23_transparenzregister.utils.networkx.network_2d import ( create_2d_graph, ) +from aki_prj23_transparenzregister.utils.networkx.network_3d import ( + # initialize_network, + create_3d_graph, +) +from aki_prj23_transparenzregister.utils.networkx.network_base import ( + initialize_network, +) +from aki_prj23_transparenzregister.utils.networkx.networkx_data import ( + create_edge_and_node_list, + filter_relation_type, + filter_relation_with_more_than_one_connection, + find_top_companies, + get_all_company_relations, + get_all_person_relations, +) # Get Data -person_relation = filter_relation_type(get_all_person_relations(), "HAFTENDER_GESELLSCHAFTER") -company_relation = filter_relation_with_more_than_one_connection(get_all_company_relations(), "id_company_to", "id_company_from") +person_relation = filter_relation_type( + get_all_person_relations(), "HAFTENDER_GESELLSCHAFTER" +) +company_relation = filter_relation_with_more_than_one_connection( + get_all_company_relations(), "id_company_to", "id_company_from" +) dash.register_page( __name__, @@ -50,56 +54,105 @@ def networkGraph(EGDE_VAR: None) -> go.Figure: graph, metrices = initialize_network(nodes = nodes, edges = edges) # print(graph) metric = None -network = create_3d_graph(graph, nodes, edges, metrices, metric) +network = create_3d_graph(graph, nodes, edges, metrics, metric) +# Get the possible Filter values for the Dropdowns. company_relation_type_filter = get_all_person_relations()["relation_type"].unique() -print(company_relation_type_filter) person_relation_type_filter = get_all_company_relations()["relation_type"].unique() - -df = find_top_companies() -with open("src/aki_prj23_transparenzregister/ui/assets/network_graph.html") as file: - html_content = file.read() - +top_companies_df = find_top_companies() +# with open("src/aki_prj23_transparenzregister/ui/assets/network_graph.html") as file: +# html_content = file.read() layout = html.Div( - # children=[ - # # NOTE lib dir created by NetworkX has to be placed in assets - # # html.Iframe( - # # src="assets/network_graph.html", - # # style={"height": "100vh", "width": "100vw"}, - # # allow="*", - # # ) - # ] - children = html.Div( + children=html.Div( children=[ html.Div( className="top_companytable_style", children=[ html.Title(title="Top Ten Unternehmen", style={"align": "mid"}), - dash_table.DataTable(df.to_dict('records'), [{"name": i, "id": i} for i in df.columns]) - ] + dash_table.DataTable( + top_companies_df.to_dict("records"), + [{"name": i, "id": i} for i in top_companies_df.columns], + ), + ], ), html.Div( className="networkx_style", children=[ - html.Header(title="Social Graph"), - "Company Relation Type Filter:", - dcc.Dropdown(company_relation_type_filter, company_relation_type_filter[0], id='dropdown_companyrelation_filter'), - "Person Relation Type Filter:", - dcc.Dropdown(person_relation_type_filter, person_relation_type_filter[0], id='dropdown_personrelation_filter'), - "Choose Graph Metric:", - dcc.Dropdown(['None','eigenvector', 'degree', 'betweeness', 'closeness'], 'None', id='dropdown'), - # "Text", - # dcc.Input(id="EGDE_VAR", type="text", value="K", debounce=True), - daq.BooleanSwitch(id='switch', on=False), - # html.Div(id='switch'), - # dcc.Dropdown(['eigenvector', 'degree', 'betweeness', 'closeness'], 'eigenvector', id='metric-dropdown'), - # dcc.Graph(id="my-graph"), - dcc.Graph(figure = network, id='my-graph'), - # html.Div(id='my-graph'), - ] - ) + html.H1(className="header", children=["Social Graph"]), + html.Div( + className="filter-wrapper", + children=[ + html.Div( + className="filter-wrapper-item", + children=[ + html.H5( + className="filter-description", + children=["Company Relation Type Filter:"], + ), + dcc.Dropdown( + company_relation_type_filter, + company_relation_type_filter[0], + id="dropdown_companyrelation_filter", + className="dropdown_style", + ), + ], + ), + html.Div( + className="filter-wrapper-item", + children=[ + html.H5( + className="filter-description", + children=["Person Relation Type Filter:"], + ), + dcc.Dropdown( + person_relation_type_filter, + person_relation_type_filter[0], + id="dropdown_personrelation_filter", + className="dropdown_style", + ), + ], + ), + html.Div( + className="filter-wrapper-item", + children=[ + html.H5( + className="filter-description", + children=["Choose Graph Metric:"], + ), + dcc.Dropdown( + [ + "None", + "eigenvector", + "degree", + "betweeness", + "closeness", + ], + "None", + id="dropdown", + className="dropdown_style", + ), + ], + ), + ], + ), + html.Div( + className="filter-wrapper-item", + children=[ + html.H5( + className="filter-description", + children=["Switch to 2D Diagramm"], + ), + html.Div( + className="switch-style", + children=[daq.BooleanSwitch(id="switch", on=False)], + ), + ], + ), + dcc.Graph(figure=network, id="my-graph", className="graph-style"), + ], + ), ] ) ) @@ -107,78 +160,65 @@ layout = html.Div( @callback( Output("my-graph", "figure"), - # Input('metric-dropdown', 'value'), - [Input("dropdown", "value"), - Input("switch", "on"), - Input("dropdown_companyrelation_filter", "value"), - Input("dropdown_personrelation_filter", "value")], + [ + Input("dropdown", "value"), + Input("switch", "on"), + Input("dropdown_companyrelation_filter", "value"), + Input("dropdown_personrelation_filter", "value"), + ], prevent_initial_call=True, - allow_duplicate=True + allow_duplicate=True, ) -def update_figure(selected_value, on, c_relation_filter, p_relation_filter): - triggered_id = ctx.triggered_id - +def update_figure( + selected_metric: str, + switch_value: bool, + c_relation_filter_value: str, + p_relation_filter_value: str, +) -> go.Figure: + """In this Callback the Value of the Dropdown is used to filter the Data. In Addition it takes the filter for the Graph metrics and creates a new graph, or switches between 3D and 2D. - find_top_companies() + Args: + selected_metric (_type_): _description_ + switch_value (bool): _description_ + c_relation_filter_value (_type_): _description_ + p_relation_filter_value (_type_): _description_ + + Returns: + Network Graph(Plotly Figure): Plotly Figure in 3 or 2D + """ + _ = c_relation_filter_value, p_relation_filter_value + + # find_top_companies() + + metric = None if selected_metric == "None" else selected_metric - if selected_value == "None": - metric = None - else: - metric = selected_value - - - - if triggered_id == 'switch': - - if on: - return update_mode(on, selected_value) - else: - return create_3d_graph(graph, nodes, edges, metrices, metric) - elif triggered_id == 'dropdown': - - if on: - return update_mode(on, selected_value) - else: - return create_3d_graph(graph, nodes, edges, metrices, metric) - - # print(c_relation_filter) - # print(p_relation_filter) # if triggered_id == 'dropdown_companyrelation_filter' or triggered_id == 'dropdown_personrelation_filter': - # print("Hallo") # print(selected_value) - # graph, metrices = update_graph_data(person_relation_type= p_relation_filter, company_relation_type= c_relation_filter) - # if on: - # return update_mode(on, selected_value) - # else: - # return create_3d_graph(graph, nodes, edges, metrices, metric) - # print(metrices) - # print(graph) + # print(metrics) + # print(graph) + # graph, metrics = update_graph_data(person_relation_type= p_relation_filter, company_relation_type= c_relation_filter) -def update_mode(value, metric): - - if metric == "None": - metric = None - if value == True: - return create_2d_graph(graph, nodes, edges, metrices, metric) - + if switch_value: + return create_2d_graph(graph, nodes, edges, metrics, metric) + else: + return create_3d_graph(graph, nodes, edges, metrics, metric) - -def update_graph_data(person_relation_type = "HAFTENDER_GESELLSCHAFTER", company_relation_type = "GESCHAEFTSFUEHRER"): +def update_graph_data( + person_relation_type: str = "HAFTENDER_GESELLSCHAFTER", + company_relation_type: str = "GESCHAEFTSFUEHRER", +) -> tuple[nx.Graph, pd.DataFrame]: # Get Data person_df = get_all_person_relations() company_df = get_all_company_relations() person_relation = filter_relation_type(person_df, person_relation_type) company_relation = filter_relation_type(company_df, company_relation_type) - print(company_relation) # company_relation = filter_relation_with_more_than_one_connection(company_relation, "id_company_to", "id_company_from") - # print(company_relation) - #Create Edge and Node List from data - nodes, edges = create_edge_and_node_list(person_relation, company_relation) - # print(edges) - graph, metrices = initialize_network(nodes = nodes, edges = edges) - return graph, metrices - \ No newline at end of file + # Create Edge and Node List from data + nodes, edges = create_edge_and_node_list(person_relation, company_relation) + + graph, metrics = initialize_network(nodes=nodes, edges=edges) + return graph, metrics diff --git a/src/aki_prj23_transparenzregister/utils/networkx/Dev.ipynb b/src/aki_prj23_transparenzregister/utils/networkx/archive/Dev.ipynb similarity index 99% rename from src/aki_prj23_transparenzregister/utils/networkx/Dev.ipynb rename to src/aki_prj23_transparenzregister/utils/networkx/archive/Dev.ipynb index 1c0c38e..458a3c3 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/Dev.ipynb +++ b/src/aki_prj23_transparenzregister/utils/networkx/archive/Dev.ipynb @@ -1795,7 +1795,7 @@ "import networkx as nx\n", "\n", "G = graph\n", - "pos=nx.fruchterman_reingold_layout(G)\n", + "pos = nx.fruchterman_reingold_layout(G)\n", "pos" ] }, @@ -1929,7 +1929,7 @@ ], "source": [ "nodes = pd.DataFrame(pos)\n", - "nodes\n" + "nodes" ] }, { @@ -1938,41 +1938,45 @@ "metadata": {}, "outputs": [], "source": [ - "\n", - "Xv=[pos[k][0] for k in range(N)]\n", - "Yv=[pos[k][1] for k in range(N)]\n", - "Xed=[]\n", - "Yed=[]\n", + "Xv = [pos[k][0] for k in range(N)]\n", + "Yv = [pos[k][1] for k in range(N)]\n", + "Xed = []\n", + "Yed = []\n", "for edge in E:\n", - " Xed+=[pos[edge[0]][0],pos[edge[1]][0], None]\n", - " Yed+=[pos[edge[0]][1],pos[edge[1]][1], None]\n", + " Xed += [pos[edge[0]][0], pos[edge[1]][0], None]\n", + " Yed += [pos[edge[0]][1], pos[edge[1]][1], None]\n", "\n", - "trace3=Scatter(x=Xed,\n", - " y=Yed,\n", - " mode='lines',\n", - " line=dict(color='rgb(210,210,210)', width=1),\n", - " hoverinfo='none'\n", - " )\n", - "trace4=Scatter(x=Xv,\n", - " y=Yv,\n", - " mode='markers',\n", - " name='net',\n", - " marker=dict(symbol='circle-dot',\n", - " size=5,\n", - " color='#6959CD',\n", - " line=dict(color='rgb(50,50,50)', width=0.5)\n", - " ),\n", - " text=labels,\n", - " hoverinfo='text'\n", - " )\n", + "trace3 = Scatter(\n", + " x=Xed,\n", + " y=Yed,\n", + " mode=\"lines\",\n", + " line=dict(color=\"rgb(210,210,210)\", width=1),\n", + " hoverinfo=\"none\",\n", + ")\n", + "trace4 = Scatter(\n", + " x=Xv,\n", + " y=Yv,\n", + " mode=\"markers\",\n", + " name=\"net\",\n", + " marker=dict(\n", + " symbol=\"circle-dot\",\n", + " size=5,\n", + " color=\"#6959CD\",\n", + " line=dict(color=\"rgb(50,50,50)\", width=0.5),\n", + " ),\n", + " text=labels,\n", + " hoverinfo=\"text\",\n", + ")\n", "\n", - "annot=\"This networkx.Graph has the Fruchterman-Reingold layout
Code:\"+\\\n", - "\" [2]\"\n", + "annot = (\n", + " \"This networkx.Graph has the Fruchterman-Reingold layout
Code:\"\n", + " + \" [2]\"\n", + ")\n", "\n", - "data1=[trace3, trace4]\n", - "fig1=Figure(data=data1, layout=layout)\n", - "fig1['layout']['annotations'][0]['text']=annot\n", - "py.iplot(fig1, filename='Coautorship-network-nx')" + "data1 = [trace3, trace4]\n", + "fig1 = Figure(data=data1, layout=layout)\n", + "fig1[\"layout\"][\"annotations\"][0][\"text\"] = annot\n", + "py.iplot(fig1, filename=\"Coautorship-network-nx\")" ] }, { @@ -1998,12 +2002,12 @@ "import networkx as nx\n", "\n", "G = graph\n", - "pos=nx.fruchterman_reingold_layout(G)\n", + "pos = nx.fruchterman_reingold_layout(G)\n", "edge_x = []\n", "edge_y = []\n", "for edge in G.edges():\n", - " x0, y0 = G.nodes[edge[0]]['pos']\n", - " x1, y1 = G.nodes[edge[1]]['pos']\n", + " x0, y0 = G.nodes[edge[0]][\"pos\"]\n", + " x1, y1 = G.nodes[edge[1]][\"pos\"]\n", " edge_x.append(x0)\n", " edge_x.append(x1)\n", " edge_x.append(None)\n", @@ -2012,39 +2016,41 @@ " edge_y.append(None)\n", "\n", "edge_trace = go.Scatter(\n", - " x=edge_x, y=edge_y,\n", - " line=dict(width=0.5, color='#888'),\n", - " hoverinfo='none',\n", - " mode='lines')\n", + " x=edge_x,\n", + " y=edge_y,\n", + " line=dict(width=0.5, color=\"#888\"),\n", + " hoverinfo=\"none\",\n", + " mode=\"lines\",\n", + ")\n", "\n", "node_x = []\n", "node_y = []\n", "for node in G.nodes():\n", - " x, y = G.nodes[node]['pos']\n", + " x, y = G.nodes[node][\"pos\"]\n", " node_x.append(x)\n", " node_y.append(y)\n", "\n", "node_trace = go.Scatter(\n", - " x=node_x, y=node_y,\n", - " mode='markers',\n", - " hoverinfo='text',\n", + " x=node_x,\n", + " y=node_y,\n", + " mode=\"markers\",\n", + " hoverinfo=\"text\",\n", " marker=dict(\n", " showscale=True,\n", " # colorscale options\n", " #'Greys' | 'YlGnBu' | 'Greens' | 'YlOrRd' | 'Bluered' | 'RdBu' |\n", " #'Reds' | 'Blues' | 'Picnic' | 'Rainbow' | 'Portland' | 'Jet' |\n", " #'Hot' | 'Blackbody' | 'Earth' | 'Electric' | 'Viridis' |\n", - " colorscale='YlGnBu',\n", + " colorscale=\"YlGnBu\",\n", " reversescale=True,\n", " color=[],\n", " size=10,\n", " colorbar=dict(\n", - " thickness=15,\n", - " title='Node Connections',\n", - " xanchor='left',\n", - " titleside='right'\n", + " thickness=15, title=\"Node Connections\", xanchor=\"left\", titleside=\"right\"\n", " ),\n", - " line_width=2))" + " line_width=2,\n", + " ),\n", + ")" ] }, { @@ -2057,7 +2063,7 @@ "node_text = []\n", "for node, adjacencies in enumerate(G.adjacency()):\n", " node_adjacencies.append(len(adjacencies[1]))\n", - " node_text.append('# of connections: '+str(len(adjacencies[1])))\n", + " node_text.append(\"# of connections: \" + str(len(adjacencies[1])))\n", "\n", "node_trace.marker.color = node_adjacencies\n", "node_trace.text = node_text" @@ -2069,21 +2075,28 @@ "metadata": {}, "outputs": [], "source": [ - "fig = go.Figure(data=[edge_trace, node_trace],\n", - " layout=go.Layout(\n", - " title='
Network graph made with Python',\n", - " titlefont_size=16,\n", - " showlegend=False,\n", - " hovermode='closest',\n", - " margin=dict(b=20,l=5,r=5,t=40),\n", - " annotations=[ dict(\n", - " text=\"Python code: https://plotly.com/ipython-notebooks/network-graphs/\",\n", - " showarrow=False,\n", - " xref=\"paper\", yref=\"paper\",\n", - " x=0.005, y=-0.002 ) ],\n", - " xaxis=dict(showgrid=False, zeroline=False, showticklabels=False),\n", - " yaxis=dict(showgrid=False, zeroline=False, showticklabels=False))\n", - " )\n", + "fig = go.Figure(\n", + " data=[edge_trace, node_trace],\n", + " layout=go.Layout(\n", + " title=\"
Network graph made with Python\",\n", + " titlefont_size=16,\n", + " showlegend=False,\n", + " hovermode=\"closest\",\n", + " margin=dict(b=20, l=5, r=5, t=40),\n", + " annotations=[\n", + " dict(\n", + " text=\"Python code: https://plotly.com/ipython-notebooks/network-graphs/\",\n", + " showarrow=False,\n", + " xref=\"paper\",\n", + " yref=\"paper\",\n", + " x=0.005,\n", + " y=-0.002,\n", + " )\n", + " ],\n", + " xaxis=dict(showgrid=False, zeroline=False, showticklabels=False),\n", + " yaxis=dict(showgrid=False, zeroline=False, showticklabels=False),\n", + " ),\n", + ")\n", "fig.show()" ] } diff --git a/src/aki_prj23_transparenzregister/utils/networkx/networkX_with_sql.ipynb b/src/aki_prj23_transparenzregister/utils/networkx/archive/networkX_with_sql.ipynb similarity index 97% rename from src/aki_prj23_transparenzregister/utils/networkx/networkX_with_sql.ipynb rename to src/aki_prj23_transparenzregister/utils/networkx/archive/networkX_with_sql.ipynb index eb26044..4a83d78 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/networkX_with_sql.ipynb +++ b/src/aki_prj23_transparenzregister/utils/networkx/archive/networkX_with_sql.ipynb @@ -780,7 +780,9 @@ "source": [ "relations_df = pd.DataFrame(relations_query.all())\n", "relations_df[\"person_name\"] = relations_df[\"lastname\"] + relations_df[\"firstname\"]\n", - "relations_df.rename(columns={'oldName1': 'newName1', 'oldName2': 'newName2'}, inplace=True)\n", + "relations_df.rename(\n", + " columns={\"oldName1\": \"newName1\", \"oldName2\": \"newName2\"}, inplace=True\n", + ")\n", "relations_df" ] }, @@ -791,22 +793,21 @@ "outputs": [], "source": [ "node_template = {\n", - " \"id\": \"(company|person)_\\d\",\n", - " \"label\": \"Name from entries\",\n", - " \"type\": \"Company|Person\",\n", - " \"shape\": \"dot\",\n", - " \"color\": \"#729b79ff\",\n", - " # TODO add title for hover effect in graph \"title\": \"\"\n", - " }\n", + " \"id\": \"(company|person)_\\d\",\n", + " \"label\": \"Name from entries\",\n", + " \"type\": \"Company|Person\",\n", + " \"shape\": \"dot\",\n", + " \"color\": \"#729b79ff\",\n", + " # TODO add title for hover effect in graph \"title\": \"\"\n", + "}\n", "nodes = relations_df\n", "for index in relations_df.index:\n", - " \n", " nodes[\"index\"] = {\n", - " \"label\": company_2.name,\n", - " \"type\": \"Company\",\n", - " \"shape\": \"dot\",\n", - " \"color\": \"#729b79ff\",\n", - " }" + " \"label\": company_2.name,\n", + " \"type\": \"Company\",\n", + " \"shape\": \"dot\",\n", + " \"color\": \"#729b79ff\",\n", + " }" ] }, { @@ -879,15 +880,10 @@ " else:\n", " size = measure_vector[node_id] * 50\n", " next(\n", - " (\n", - " node.update({\"size\": size})\n", - " for node in net.nodes\n", - " if node[\"id\"] == node_id\n", - " ),\n", + " (node.update({\"size\": size}) for node in net.nodes if node[\"id\"] == node_id),\n", " None,\n", " )\n", "\n", - " \n", "\n", "net.repulsion()\n", "net.show_buttons(filter_=[\"physics\"])\n", @@ -895,7 +891,7 @@ "# net.show_buttons()\n", "\n", "# save graph as HTML\n", - "net.save_graph(\"./tmp.html\")\n" + "net.save_graph(\"./tmp.html\")" ] } ], diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_graph.html b/src/aki_prj23_transparenzregister/utils/networkx/archive/network_graph.html similarity index 99% rename from src/aki_prj23_transparenzregister/utils/networkx/network_graph.html rename to src/aki_prj23_transparenzregister/utils/networkx/archive/network_graph.html index d8a61cf..370071a 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_graph.html +++ b/src/aki_prj23_transparenzregister/utils/networkx/archive/network_graph.html @@ -1,272 +1,272 @@ - - - - - - - - - -
-

-
- - - - - - -
-

-
- - - - - -
- - -
-
- - -
-
-
0%
-
-
-
-
-
- - -
- - - - - + + + + + + + + + +
+

+
+ + + + + + +
+

+
+ + + + + +
+ + +
+
+ + +
+
+
0%
+
+
+
+
+
+ + +
+ + + + + diff --git a/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx.ipynb b/src/aki_prj23_transparenzregister/utils/networkx/archive/sql_alchemy_to_networkx.ipynb similarity index 99% rename from src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx.ipynb rename to src/aki_prj23_transparenzregister/utils/networkx/archive/sql_alchemy_to_networkx.ipynb index 3c25c7b..bf0a4e1 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx.ipynb +++ b/src/aki_prj23_transparenzregister/utils/networkx/archive/sql_alchemy_to_networkx.ipynb @@ -680,8 +680,10 @@ } ], "source": [ - "person_relations['id_company'] = person_relations['id_company'].apply(lambda x: f\"c_{x}\")\n", - "person_relations['id_person'] = person_relations['id_person'].apply(lambda x: f\"p_{x}\")\n", + "person_relations[\"id_company\"] = person_relations[\"id_company\"].apply(\n", + " lambda x: f\"c_{x}\"\n", + ")\n", + "person_relations[\"id_person\"] = person_relations[\"id_person\"].apply(lambda x: f\"p_{x}\")\n", "person_relations.head()" ] }, @@ -10172,7 +10174,9 @@ } ], "source": [ - "person_relations_df[[\"from_x\", \"from_y\"]] = (company_df.set_index(\"id\", drop=True)).loc[person_relations_df[\"company_id\"], [\"x\", \"y\"]]\n", + "person_relations_df[[\"from_x\", \"from_y\"]] = (company_df.set_index(\"id\", drop=True)).loc[\n", + " person_relations_df[\"company_id\"], [\"x\", \"y\"]\n", + "]\n", "person_relations_df.head().T" ] }, @@ -10202,7 +10206,9 @@ "outputs": [], "source": [ "df_temp_df: pd.DataFrame = company_df.set_index(\"id\", drop=True)\n", - "person_relations_df[[\"company_from_x\", \"company_from_y\"]] = df_temp_df.loc[person_relations_df[\"company_id\"] , [\"x\", \"y\"]].reset_index(drop=True)" + "person_relations_df[[\"company_from_x\", \"company_from_y\"]] = df_temp_df.loc[\n", + " person_relations_df[\"company_id\"], [\"x\", \"y\"]\n", + "].reset_index(drop=True)" ] }, { @@ -10213,7 +10219,9 @@ "outputs": [], "source": [ "df_person_tmp: pd.DataFrame = person_df.set_index(\"id\", drop=True)\n", - "person_relations_df[[\"to_person_x\", \"to_person_y\"]] = df_person_tmp.loc[person_relations_df[\"person_id\"] , [\"x\", \"y\"]].reset_index(drop=True)\n" + "person_relations_df[[\"to_person_x\", \"to_person_y\"]] = df_person_tmp.loc[\n", + " person_relations_df[\"person_id\"], [\"x\", \"y\"]\n", + "].reset_index(drop=True)" ] }, { @@ -10242,10 +10250,14 @@ "outputs": [], "source": [ "df_temp_df: pd.DataFrame = company_df.set_index(\"id\", drop=True)\n", - "company_relations_df[[\"company_from_x\", \"company_from_y\"]] = df_temp_df.loc[company_relations_df[\"company_from_id\"] , [\"x\", \"y\"]].reset_index(drop=True)\n", + "company_relations_df[[\"company_from_x\", \"company_from_y\"]] = df_temp_df.loc[\n", + " company_relations_df[\"company_from_id\"], [\"x\", \"y\"]\n", + "].reset_index(drop=True)\n", "\n", "\n", - "company_relations_df[[\"company_to_x\", \"company_to_y\"]] = df_temp_df.loc[company_relations_df[\"company_to_id\"] , [\"x\", \"y\"]].reset_index(drop=True)\n", + "company_relations_df[[\"company_to_x\", \"company_to_y\"]] = df_temp_df.loc[\n", + " company_relations_df[\"company_to_id\"], [\"x\", \"y\"]\n", + "].reset_index(drop=True)\n", "company_relations_df" ] }, @@ -10278,39 +10290,45 @@ "fig = go.Figure()\n", "\n", "# Scatter plot for df1\n", - "fig.add_trace(go.Scatter(\n", - " x=df1['x'],\n", - " y=df1['y'],\n", - " mode='markers',\n", - " name='DataFrame 1',\n", - " hovertext=df1[\"name\"]\n", - "))\n", + "fig.add_trace(\n", + " go.Scatter(\n", + " x=df1[\"x\"],\n", + " y=df1[\"y\"],\n", + " mode=\"markers\",\n", + " name=\"DataFrame 1\",\n", + " hovertext=df1[\"name\"],\n", + " )\n", + ")\n", "\n", "# Scatter plot for df2\n", - "fig.add_trace(go.Scatter(\n", - " x=df2['x'],\n", - " y=df2['y'],\n", - " mode='markers',\n", - " name='DataFrame 2',\n", - " hovertext=df2[\"firstname\"]\n", - "))\n", + "fig.add_trace(\n", + " go.Scatter(\n", + " x=df2[\"x\"],\n", + " y=df2[\"y\"],\n", + " mode=\"markers\",\n", + " name=\"DataFrame 2\",\n", + " hovertext=df2[\"firstname\"],\n", + " )\n", + ")\n", "\n", "# Scatter plot for df3\n", "for i in range(len(df1)):\n", - " fig.add_trace(go.Scatter(\n", - " x=[df3['company_from_x'][i], df3['to_person_x'][i]],\n", - " y=[df3['company_from_y'][i], df3['to_person_y'][i]],\n", - " mode='lines',\n", - " name='Line DataFrame 1',\n", - " line=dict(color='blue')\n", - " ))\n", + " fig.add_trace(\n", + " go.Scatter(\n", + " x=[df3[\"company_from_x\"][i], df3[\"to_person_x\"][i]],\n", + " y=[df3[\"company_from_y\"][i], df3[\"to_person_y\"][i]],\n", + " mode=\"lines\",\n", + " name=\"Line DataFrame 1\",\n", + " line=dict(color=\"blue\"),\n", + " )\n", + " )\n", "\n", "# Customize the layout of the plot\n", "fig.update_layout(\n", - " title='Overlayed Scatter Plot',\n", - " xaxis=dict(title='X-axis Label'),\n", - " yaxis=dict(title='Y-axis Label'),\n", - " showlegend=True # Show legend with dataframe names\n", + " title=\"Overlayed Scatter Plot\",\n", + " xaxis=dict(title=\"X-axis Label\"),\n", + " yaxis=dict(title=\"Y-axis Label\"),\n", + " showlegend=True, # Show legend with dataframe names\n", ")\n", "\n", "# Show the plot\n", @@ -10324,13 +10342,15 @@ "outputs": [], "source": [ "for i in range(len(df1)):\n", - " fig.add_trace(go.Scatter(\n", - " x=[df1['x0_column'][i], df1['x1_column'][i]],\n", - " y=[df1['y0_column'][i], df1['y1_column'][i]],\n", - " mode='lines',\n", - " name='Line DataFrame 1',\n", - " line=dict(color='blue')\n", - " ))" + " fig.add_trace(\n", + " go.Scatter(\n", + " x=[df1[\"x0_column\"][i], df1[\"x1_column\"][i]],\n", + " y=[df1[\"y0_column\"][i], df1[\"y1_column\"][i]],\n", + " mode=\"lines\",\n", + " name=\"Line DataFrame 1\",\n", + " line=dict(color=\"blue\"),\n", + " )\n", + " )" ] }, { @@ -129718,7 +129738,7 @@ ")\n", "\n", "# Show the plot\n", - "fig.show()\n" + "fig.show()" ] }, { diff --git a/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx_v2.ipynb b/src/aki_prj23_transparenzregister/utils/networkx/archive/sql_alchemy_to_networkx_v2.ipynb similarity index 99% rename from src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx_v2.ipynb rename to src/aki_prj23_transparenzregister/utils/networkx/archive/sql_alchemy_to_networkx_v2.ipynb index 3ba69c8..35d858d 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/sql_alchemy_to_networkx_v2.ipynb +++ b/src/aki_prj23_transparenzregister/utils/networkx/archive/sql_alchemy_to_networkx_v2.ipynb @@ -48,7 +48,7 @@ "\n", "if not os.path.exists(\"src\"):\n", " %cd \"../\"\n", - "os.path.abspath(\".\") " + "os.path.abspath(\".\")" ] }, { @@ -675,8 +675,12 @@ } ], "source": [ - "company_relations['id_company_from'] = company_relations['id_company_from'].apply(lambda x: f\"c_{x}\")\n", - "company_relations['id_company_to'] = company_relations['id_company_to'].apply(lambda x: f\"c_{x}\")\n", + "company_relations[\"id_company_from\"] = company_relations[\"id_company_from\"].apply(\n", + " lambda x: f\"c_{x}\"\n", + ")\n", + "company_relations[\"id_company_to\"] = company_relations[\"id_company_to\"].apply(\n", + " lambda x: f\"c_{x}\"\n", + ")\n", "company_relations.head()" ] }, @@ -793,8 +797,10 @@ } ], "source": [ - "person_relations['id_company'] = person_relations['id_company'].apply(lambda x: f\"c_{x}\")\n", - "person_relations['id_person'] = person_relations['id_person'].apply(lambda x: f\"p_{x}\")\n", + "person_relations[\"id_company\"] = person_relations[\"id_company\"].apply(\n", + " lambda x: f\"c_{x}\"\n", + ")\n", + "person_relations[\"id_person\"] = person_relations[\"id_person\"].apply(lambda x: f\"p_{x}\")\n", "person_relations.head()" ] }, @@ -1051,10 +1057,12 @@ "source": [ "import pandas as pd\n", "\n", + "\n", "def filter_relation_type(df: pd.DataFrame, selected_relation_type):\n", " df = df.loc[df[\"relation_type\"] == selected_relation_type]\n", " return df\n", "\n", + "\n", "relation_type_set = set(company_relations[\"relation_type\"].unique())\n", "relation_type_set\n", "# {'HAFTENDER_GESELLSCHAFTER', 'INHABER', 'KOMMANDITIST', 'LIQUIDATOR'}\n", @@ -1247,9 +1255,11 @@ } ], "source": [ - "def filter_relation_with_more_than_one_connection(df: pd.DataFrame, id_column_name_to, id_column_name_from):\n", + "def filter_relation_with_more_than_one_connection(\n", + " df: pd.DataFrame, id_column_name_to, id_column_name_from\n", + "):\n", " # print(df.columns.values)\n", - " tmp_df = pd.DataFrame(columns= df.columns.values)\n", + " tmp_df = pd.DataFrame(columns=df.columns.values)\n", " # print(tmp_df)\n", " for _index, row in df.iterrows():\n", " count = 0\n", @@ -1261,7 +1271,7 @@ " count = count + 1\n", " if count > 1:\n", " break\n", - " \n", + "\n", " if count > 1:\n", " # tmp_df = pd.concat([tmp_df, pd.DataFrame(row)])+\n", " tmp_df.loc[len(tmp_df)] = row\n", @@ -1274,7 +1284,10 @@ " count = 0\n", " return tmp_df\n", "\n", - "tmp_df = filter_relation_with_more_than_one_connection(company_relations, \"id_company_to\", \"id_company_from\")\n", + "\n", + "tmp_df = filter_relation_with_more_than_one_connection(\n", + " company_relations, \"id_company_to\", \"id_company_from\"\n", + ")\n", "tmp_df\n", "# Für Companys 10 sekunden\n", "# tmp_df = filter_relation_with_more_than_one_connection(person_relations, \"id_company\", \"id_person\")\n", @@ -1412,43 +1425,57 @@ "metadata": {}, "outputs": [], "source": [ - "def create_edge_and_node_list(person_relations: pd.DataFrame, company_relations:pd.DataFrame):\n", + "def create_edge_and_node_list(\n", + " person_relations: pd.DataFrame, company_relations: pd.DataFrame\n", + "):\n", " nodes = {}\n", " edges = []\n", "\n", " # Iterate over person relations\n", " for _index, row in person_relations.iterrows():\n", - " if node:= nodes.get(row['id_company']) is None:\n", - " nodes[row['id_company']] = {\n", - " \"id\": row['id_company'],\n", - " 'name': row['name_company'],\n", - " 'color': COLOR_COMPANY\n", + " if node := nodes.get(row[\"id_company\"]) is None:\n", + " nodes[row[\"id_company\"]] = {\n", + " \"id\": row[\"id_company\"],\n", + " \"name\": row[\"name_company\"],\n", + " \"color\": COLOR_COMPANY,\n", " }\n", - " if node:= nodes.get(row['id_person']) is None:\n", - " nodes[row['id_person']] = {\n", - " \"id\": row['id_person'],\n", - " 'firstname': row['firstname'],\n", - " 'lastname': row['lastname'],\n", - " 'date_of_birth': row['date_of_birth'],\n", - " 'color': COLOR_PERSON\n", - " } \n", - " edges.append({'from': row['id_person'], 'to': row['id_company'], 'type': row['relation_type']})\n", + " if node := nodes.get(row[\"id_person\"]) is None:\n", + " nodes[row[\"id_person\"]] = {\n", + " \"id\": row[\"id_person\"],\n", + " \"firstname\": row[\"firstname\"],\n", + " \"lastname\": row[\"lastname\"],\n", + " \"date_of_birth\": row[\"date_of_birth\"],\n", + " \"color\": COLOR_PERSON,\n", + " }\n", + " edges.append(\n", + " {\n", + " \"from\": row[\"id_person\"],\n", + " \"to\": row[\"id_company\"],\n", + " \"type\": row[\"relation_type\"],\n", + " }\n", + " )\n", "\n", " for _index, row in company_relations.iterrows():\n", - " if node:= nodes.get(row['id_company_from']) is None:\n", - " nodes[row['id_company_from']] = {\n", - " \"id\": row['id_company_from'],\n", - " 'name': row['name_company_from'],\n", - " 'color': COLOR_COMPANY\n", + " if node := nodes.get(row[\"id_company_from\"]) is None:\n", + " nodes[row[\"id_company_from\"]] = {\n", + " \"id\": row[\"id_company_from\"],\n", + " \"name\": row[\"name_company_from\"],\n", + " \"color\": COLOR_COMPANY,\n", " }\n", - " if node:= nodes.get(row['id_company_to']) is None:\n", - " nodes[row['id_company_to']] = {\n", - " \"id\": row['id_company_to'],\n", - " 'name': row['name_company_to'],\n", - " 'color': COLOR_COMPANY\n", - " } \n", - " edges.append({'from': row['id_company_from'], 'to': row['id_company_to'], 'type': row['relation_type']})\n", - " return nodes, edges\n" + " if node := nodes.get(row[\"id_company_to\"]) is None:\n", + " nodes[row[\"id_company_to\"]] = {\n", + " \"id\": row[\"id_company_to\"],\n", + " \"name\": row[\"name_company_to\"],\n", + " \"color\": COLOR_COMPANY,\n", + " }\n", + " edges.append(\n", + " {\n", + " \"from\": row[\"id_company_from\"],\n", + " \"to\": row[\"id_company_to\"],\n", + " \"type\": row[\"relation_type\"],\n", + " }\n", + " )\n", + " return nodes, edges" ] }, { @@ -1458,7 +1485,9 @@ "metadata": {}, "outputs": [], "source": [ - "tmp_company = filter_relation_with_more_than_one_connection(company_relations, \"id_company_to\", \"id_company_from\")\n", + "tmp_company = filter_relation_with_more_than_one_connection(\n", + " company_relations, \"id_company_to\", \"id_company_from\"\n", + ")\n", "tmp_persons = filter_relation_type(person_relations, \"HAFTENDER_GESELLSCHAFTER\")" ] }, @@ -2257,7 +2286,9 @@ "\n", "measure_type = \"degree\"\n", "measure_vector = {}\n", - "df = pd.DataFrame(columns=[\"degree\", \"eigenvector\", \"degree\", \"betweeness\", \"closeness\", \"pagerank\"])\n", + "df = pd.DataFrame(\n", + " columns=[\"degree\", \"eigenvector\", \"degree\", \"betweeness\", \"closeness\", \"pagerank\"]\n", + ")\n", "\n", "# if measure_type == \"eigenvector\":\n", "# measure_vector = nx.eigenvector_centrality(graph)\n", @@ -2275,7 +2306,6 @@ "# df[\"pagerank\"] = measure_vector.values()\n", "# if measure_type == \"average_degree\":\n", "# measure_vector = nx.average_degree_connectivity(graph)\n", - " \n", "\n", "\n", "df[\"eigenvector\"] = nx.eigenvector_centrality(graph).values()\n", @@ -2301,6 +2331,7 @@ "outputs": [], "source": [ "import igraph as ig\n", + "\n", "# convert to igraph\n", "h = ig.Graph.from_networkx(graph)" ] @@ -2376,7 +2407,7 @@ ], "source": [ "# Nur wenn Pos vorher gesetzt wurde\n", - "pos2 = nx.get_node_attributes(graph,'pos')\n", + "pos2 = nx.get_node_attributes(graph, \"pos\")\n", "print(pos2)" ] }, @@ -2411,6 +2442,7 @@ "outputs": [], "source": [ "import plotly.graph_objects as go\n", + "\n", "edge_x = []\n", "edge_y = []\n", "\n", @@ -2427,25 +2459,31 @@ " edge_y.append(y1)\n", " edge_y.append(None)\n", "\n", - " # edge_weight_x.append(x1 + x1 - x0) \n", + " # edge_weight_x.append(x1 + x1 - x0)\n", " # edge_weight_y.append(y1 + y1 - y0)\n", - " # edge_weight_x.append(x0 + x0 - x1) \n", + " # edge_weight_x.append(x0 + x0 - x1)\n", " # edge_weight_y.append(y0 + y0 - y1)\n", " edge_weight_x.append(x0 + ((x1 - x0) / 2))\n", " edge_weight_y.append(y0 + ((y1 - y0) / 2))\n", "\n", "edge_trace = go.Scatter(\n", - " x=edge_x, y=edge_y,\n", - " line=dict(width=0.5, color='#888'),\n", - " hoverinfo='none',\n", - " mode='lines')\n", + " x=edge_x,\n", + " y=edge_y,\n", + " line=dict(width=0.5, color=\"#888\"),\n", + " hoverinfo=\"none\",\n", + " mode=\"lines\",\n", + ")\n", + "\n", + "edge_weights_trace = go.Scatter(\n", + " x=edge_weight_x,\n", + " y=edge_weight_y,\n", + " mode=\"text\",\n", + " marker_size=1,\n", + " text=[0.45, 0.7, 0.34],\n", + " textposition=\"top center\",\n", + " hovertemplate=\"weight: %{text}\",\n", + ")\n", "\n", - "edge_weights_trace = go.Scatter(x=edge_weight_x,y= edge_weight_y, mode='text',\n", - " marker_size=1,\n", - " text=[0.45, 0.7, 0.34],\n", - " textposition='top center',\n", - " hovertemplate='weight: %{text}')\n", - " \n", "\n", "node_x = []\n", "node_y = []\n", @@ -2455,26 +2493,26 @@ " node_y.append(y)\n", "\n", "node_trace = go.Scatter(\n", - " x=node_x, y=node_y,\n", - " mode='markers',\n", - " hoverinfo='text',\n", + " x=node_x,\n", + " y=node_y,\n", + " mode=\"markers\",\n", + " hoverinfo=\"text\",\n", " marker=dict(\n", " showscale=True,\n", " # colorscale options\n", " #'Greys' | 'YlGnBu' | 'Greens' | 'YlOrRd' | 'Bluered' | 'RdBu' |\n", " #'Reds' | 'Blues' | 'Picnic' | 'Rainbow' | 'Portland' | 'Jet' |\n", " #'Hot' | 'Blackbody' | 'Earth' | 'Electric' | 'Viridis' |\n", - " colorscale='YlGnBu',\n", + " colorscale=\"YlGnBu\",\n", " reversescale=True,\n", " color=[],\n", " size=10,\n", " colorbar=dict(\n", - " thickness=15,\n", - " title='Node Connections',\n", - " xanchor='left',\n", - " titleside='right'\n", + " thickness=15, title=\"Node Connections\", xanchor=\"left\", titleside=\"right\"\n", " ),\n", - " line_width=2))" + " line_width=2,\n", + " ),\n", + ")" ] }, { @@ -2511,8 +2549,8 @@ " node_adjacencies.append(len(adjacencies[1]))\n", " # node_text.append('# of connections: '+str(len(adjacencies[1])))\n", " # node_adjacencies.append(nodes[node].color)\n", - " node_text.append('# of connections: '+str(len(adjacencies[1])))\n", - " \n", + " node_text.append(\"# of connections: \" + str(len(adjacencies[1])))\n", + "\n", "print(node_adjacencies)\n", "# node_trace.marker.color = node_adjacencies\n", "# node_trace.text = node_text\n", @@ -2543,13 +2581,12 @@ } ], "source": [ - "#Set Color by using the nodes DataFrame with its Color Attribute. The sequence matters!\n", + "# Set Color by using the nodes DataFrame with its Color Attribute. The sequence matters!\n", "colors = list(nx.get_node_attributes(graph, \"color\").values())\n", "\n", "node_names = []\n", "for key, value in nodes.items():\n", - " \n", - " if 'name' in value.keys():\n", + " if \"name\" in value.keys():\n", " node_names.append(value[\"name\"])\n", " else:\n", " node_names.append(value[\"firstname\"] + \" \" + value[\"lastname\"])\n", @@ -2561,8 +2598,8 @@ "\n", "node_trace.marker.color = colors\n", "node_trace.text = node_names\n", - "print(list(df[\"eigenvector\"]*100))\n", - "node_trace.marker.size = list(df[\"eigenvector\"]*100)" + "print(list(df[\"eigenvector\"] * 100))\n", + "node_trace.marker.size = list(df[\"eigenvector\"] * 100)" ] }, { @@ -12520,21 +12557,28 @@ } ], "source": [ - "fig = go.Figure(data=[edge_trace, edge_weights_trace, node_trace],\n", - " layout=go.Layout(\n", - " title='
Network graph made with Python',\n", - " titlefont_size=16,\n", - " showlegend=False,\n", - " hovermode='closest',\n", - " margin=dict(b=20,l=5,r=5,t=40),\n", - " annotations=[ dict(\n", - " text=\"Python code: https://plotly.com/ipython-notebooks/network-graphs/\",\n", - " showarrow=False,\n", - " xref=\"paper\", yref=\"paper\",\n", - " x=0.005, y=-0.002 ) ],\n", - " xaxis=dict(showgrid=False, zeroline=False, showticklabels=False),\n", - " yaxis=dict(showgrid=False, zeroline=False, showticklabels=False))\n", - " )\n", + "fig = go.Figure(\n", + " data=[edge_trace, edge_weights_trace, node_trace],\n", + " layout=go.Layout(\n", + " title=\"
Network graph made with Python\",\n", + " titlefont_size=16,\n", + " showlegend=False,\n", + " hovermode=\"closest\",\n", + " margin=dict(b=20, l=5, r=5, t=40),\n", + " annotations=[\n", + " dict(\n", + " text=\"Python code: https://plotly.com/ipython-notebooks/network-graphs/\",\n", + " showarrow=False,\n", + " xref=\"paper\",\n", + " yref=\"paper\",\n", + " x=0.005,\n", + " y=-0.002,\n", + " )\n", + " ],\n", + " xaxis=dict(showgrid=False, zeroline=False, showticklabels=False),\n", + " yaxis=dict(showgrid=False, zeroline=False, showticklabels=False),\n", + " ),\n", + ")\n", "fig.show()" ] }, @@ -13219,6 +13263,7 @@ ], "source": [ "import numpy as np\n", + "\n", "# Extract node and edge positions from the layout\n", "node_xyz = np.array([pos[v] for v in sorted(graph)])\n", "edge_xyz = np.array([(pos[u], pos[v]) for u, v in graph.edges()])\n", @@ -13234,6 +13279,7 @@ "outputs": [], "source": [ "import plotly.graph_objects as go\n", + "\n", "edge_x = []\n", "edge_y = []\n", "edge_z = []\n", @@ -13257,23 +13303,22 @@ " edge_z.append(z1)\n", " # edge_z.append(z2)\n", "\n", - " # edge_weight_x.append(x1 + x1 - x0) \n", + " # edge_weight_x.append(x1 + x1 - x0)\n", " # edge_weight_y.append(y1 + y1 - y0)\n", - " # edge_weight_x.append(x0 + x0 - x1) \n", + " # edge_weight_x.append(x0 + x0 - x1)\n", " # edge_weight_y.append(y0 + y0 - y1)\n", " # edge_weight_x.append(x0 + ((x1 - x0) / 2))\n", " # edge_weight_y.append(y0 + ((y1 - y0) / 2))\n", "\n", "\n", - "\n", - "\n", - "edge_trace=go.Scatter3d(x=edge_x,\n", - " y=edge_y,\n", - " z=edge_z,\n", - " mode='lines',\n", - " line=dict(color='rgb(125,125,125)', width=1),\n", - " hoverinfo='none'\n", - " )\n", + "edge_trace = go.Scatter3d(\n", + " x=edge_x,\n", + " y=edge_y,\n", + " z=edge_z,\n", + " mode=\"lines\",\n", + " line=dict(color=\"rgb(125,125,125)\", width=1),\n", + " hoverinfo=\"none\",\n", + ")\n", "\n", "node_x = []\n", "node_y = []\n", @@ -13284,58 +13329,58 @@ " node_y.append(y)\n", " node_z.append(z)\n", "\n", - "node_trace=go.Scatter3d(x=node_x,\n", - " y=node_y,\n", - " z=node_z,\n", - " mode='markers',\n", - " name='actors',\n", - " marker=dict(symbol='circle',\n", - " size=6,\n", - " color=\"blue\",\n", - " colorscale='Viridis',\n", - " line=dict(color='rgb(50,50,50)', width=0.5)\n", - " ),\n", - " # text=labels,\n", - " hoverinfo='text'\n", - " )\n", + "node_trace = go.Scatter3d(\n", + " x=node_x,\n", + " y=node_y,\n", + " z=node_z,\n", + " mode=\"markers\",\n", + " name=\"actors\",\n", + " marker=dict(\n", + " symbol=\"circle\",\n", + " size=6,\n", + " color=\"blue\",\n", + " colorscale=\"Viridis\",\n", + " line=dict(color=\"rgb(50,50,50)\", width=0.5),\n", + " ),\n", + " # text=labels,\n", + " hoverinfo=\"text\",\n", + ")\n", "\n", - "axis=dict(showbackground=False,\n", - " showline=False,\n", - " zeroline=False,\n", - " showgrid=False,\n", - " showticklabels=False,\n", - " title=''\n", - " )\n", + "axis = dict(\n", + " showbackground=False,\n", + " showline=False,\n", + " zeroline=False,\n", + " showgrid=False,\n", + " showticklabels=False,\n", + " title=\"\",\n", + ")\n", "\n", "layout = go.Layout(\n", - " title=\"Network of coappearances of characters in Victor Hugo's novel
Les Miserables (3D visualization)\",\n", - " width=1000,\n", - " height=1000,\n", - " showlegend=False,\n", - " scene=dict(\n", - " xaxis=dict(axis),\n", - " yaxis=dict(axis),\n", - " zaxis=dict(axis),\n", - " ),\n", - " margin=dict(\n", - " t=100\n", + " title=\"Network of coappearances of characters in Victor Hugo's novel
Les Miserables (3D visualization)\",\n", + " width=1000,\n", + " height=1000,\n", + " showlegend=False,\n", + " scene=dict(\n", + " xaxis=dict(axis),\n", + " yaxis=dict(axis),\n", + " zaxis=dict(axis),\n", " ),\n", - " hovermode='closest',\n", + " margin=dict(t=100),\n", + " hovermode=\"closest\",\n", " annotations=[\n", - " dict(\n", - " showarrow=False,\n", + " dict(\n", + " showarrow=False,\n", " text=\"Data source: [1] miserables.json\",\n", - " xref='paper',\n", - " yref='paper',\n", + " xref=\"paper\",\n", + " yref=\"paper\",\n", " x=0,\n", " y=0.1,\n", - " xanchor='left',\n", - " yanchor='bottom',\n", - " font=dict(\n", - " size=14\n", - " )\n", - " )\n", - " ], )" + " xanchor=\"left\",\n", + " yanchor=\"bottom\",\n", + " font=dict(size=14),\n", + " )\n", + " ],\n", + ")" ] }, { @@ -13353,13 +13398,12 @@ } ], "source": [ - "#Set Color by using the nodes DataFrame with its Color Attribute. The sequence matters!\n", + "# Set Color by using the nodes DataFrame with its Color Attribute. The sequence matters!\n", "colors = list(nx.get_node_attributes(graph, \"color\").values())\n", "\n", "node_names = []\n", "for key, value in nodes.items():\n", - " \n", - " if 'name' in value.keys():\n", + " if \"name\" in value.keys():\n", " node_names.append(value[\"name\"])\n", " else:\n", " node_names.append(value[\"firstname\"] + \" \" + value[\"lastname\"])\n", @@ -13396,9 +13440,9 @@ "edge_colors = []\n", "for row in edges:\n", " if row[\"type\"] == \"HAFTENDER_GESELLSCHAFTER\":\n", - " edge_colors.append('rgb(255,0,0)')\n", + " edge_colors.append(\"rgb(255,0,0)\")\n", " else:\n", - " edge_colors.append('rgb(255,105,180)')\n", + " edge_colors.append(\"rgb(255,105,180)\")\n", "print(edge_colors)\n", "edge_trace.line = dict(color=edge_colors, width=2)" ] @@ -22038,9 +22082,9 @@ } ], "source": [ - "# edge_trace, \n", - "data=[edge_trace, node_trace]\n", - "fig=go.Figure(data=data, layout=layout)\n", + "# edge_trace,\n", + "data = [edge_trace, node_trace]\n", + "fig = go.Figure(data=data, layout=layout)\n", "\n", "fig.show()" ] diff --git a/src/aki_prj23_transparenzregister/utils/networkx/tmp.html b/src/aki_prj23_transparenzregister/utils/networkx/archive/tmp.html similarity index 99% rename from src/aki_prj23_transparenzregister/utils/networkx/tmp.html rename to src/aki_prj23_transparenzregister/utils/networkx/archive/tmp.html index dc4e0ac..d4e1a2c 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/tmp.html +++ b/src/aki_prj23_transparenzregister/utils/networkx/archive/tmp.html @@ -1,275 +1,275 @@ - - - - - - - - - -
-

-
- - - - - - -
-

-
- - - - - -
- - -
-
- - -
-
-
0%
-
-
-
-
-
- - -
- - - - - \ No newline at end of file + + + + + + + + + +
+

+
+ + + + + + +
+

+
+ + + + + +
+ + +
+
+ + +
+
+
0%
+
+
+
+
+
+ + +
+ + + + + diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py b/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py index a7fe3f3..39da7f3 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py @@ -1,128 +1,133 @@ +"""This Module contains the Method to create a 2D Network Graph with NetworkX.""" import networkx as nx import pandas as pd import plotly.graph_objects as go -def initialize_network(edges: list, nodes: list): - # create edges from dataframe - df_edges = pd.DataFrame(edges) - graph = nx.from_pandas_edgelist(df_edges, source="from", target="to", edge_attr="type") - # update node attributes from dataframe - nx.set_node_attributes(graph, nodes) +def create_2d_graph( + graph: nx.Graph, nodes: dict, edges: list, metrics: pd.DataFrame, metric: str | None +) -> go.Figure: + """This Method creates a 2d Network in Plotly with a Scatter Graph and retuns it. - metrices = pd.DataFrame(columns=["degree", "eigenvector", "betweeness", "closeness", "pagerank"]) - - metrices["eigenvector"] = nx.eigenvector_centrality(graph).values() - metrices["degree"] = nx.degree_centrality(graph).values() - metrices["betweeness"] = nx.betweenness_centrality(graph).values() - metrices["closeness"] = nx.closeness_centrality(graph).values() - metrices["pagerank"] = nx.pagerank(graph).values() - - return graph, metrices - -def create_2d_graph(graph, nodes, edges,metrices, metric): - edge_x = [] - edge_y = [] + Args: + graph (_type_): NetworkX Graph. + nodes (_type_): List of Nodes + edges (_type_): List of Edges + metrics (_type_): DataFrame with the MEtrics + metric (_type_): Selected Metric + Returns: + _type_: Plotly Figure + """ + # Set 2D Layout pos = nx.spring_layout(graph) + # Initialize Variables to set the Position of the Edges. + edge_x = [] + edge_y = [] + # Initialize Node Position Variables. + node_x = [] + node_y = [] + # Initialize Position Variables for the Description Text of the edges. edge_weight_x = [] edge_weight_y = [] - G = graph - for edge in G.edges(): + + # Getting the Positions from NetworkX and assign them to the variables. + for edge in graph.edges(): x0, y0 = pos[edge[0]] x1, y1 = pos[edge[1]] edge_x.append(x0) edge_x.append(x1) edge_x.append(None) + edge_y.append(y0) edge_y.append(y1) edge_y.append(None) - # edge_weight_x.append(x1 + x1 - x0) - # edge_weight_y.append(y1 + y1 - y0) - # edge_weight_x.append(x0 + x0 - x1) - # edge_weight_y.append(y0 + y0 - y1) edge_weight_x.append(x0 + ((x1 - x0) / 2)) edge_weight_y.append(y0 + ((y1 - y0) / 2)) - + edge_weight_y.append(None) + # Add the Edges to the scatter plot according to their Positions. edge_trace = go.Scatter( - x=edge_x, y=edge_y, - line=dict(width=0.5, color='#888'), - hoverinfo='none', - mode='lines') + x=edge_x, + y=edge_y, + line={"width": 0.5, "color": "#888"}, + hoverinfo="none", + mode="lines", + ) + # Add the Edgedescriptiontext to the scatter plot according to its Position. + edge_weights_trace = go.Scatter( + x=edge_weight_x, + y=edge_weight_y, + mode="text", + marker_size=1, + text=[0.45, 0.7, 0.34], + textposition="top center", + hovertemplate="weight: %{text}", + ) - edge_weights_trace = go.Scatter(x=edge_weight_x,y= edge_weight_y, mode='text', - marker_size=1, - text=[0.45, 0.7, 0.34], - textposition='top center', - hovertemplate='weight: %{text}') - - - node_x = [] - node_y = [] - for node in G.nodes(): + # Getting the Positions from NetworkX and assign it to the variables. + for node in graph.nodes(): x, y = pos[node] node_x.append(x) node_y.append(y) - + # Add the Nodes to the scatter plot according to their Positions. node_trace = go.Scatter( - x=node_x, y=node_y, - mode='markers', - hoverinfo='text', - marker=dict( - showscale=True, - colorscale='YlGnBu', - reversescale=True, - color=[], - size=10, - colorbar=dict( - thickness=15, - title='Node Connections', - xanchor='left', - titleside='right' - ), - line_width=2)) - - #Set Color by using the nodes DataFrame with its Color Attribute. The sequence matters! - colors = list(nx.get_node_attributes(graph, "color").values()) + x=node_x, + y=node_y, + mode="markers", + hoverinfo="text", + marker={ + "showscale": True, + "colorscale": "YlGnBu", + "reversescale": True, + "color": [], + "size": 10, + "colorbar": { + "thickness": 15, + "title": "Node Connections", + "xanchor": "left", + "titleside": "right", + }, + "line_width": 2, + }, + ) + # Set Color by using the nodes DataFrame with its Color Attribute. The sequence matters! + colors = list(nx.get_node_attributes(graph, "color").values()) + # Get the Node Text node_names = [] for key, value in nodes.items(): - - if 'name' in value.keys(): + if "name" in value: node_names.append(value["name"]) else: node_names.append(value["firstname"] + " " + value["lastname"]) - - + # Add Color and Names to the Scatter Plot. node_trace.marker.color = colors node_trace.text = node_names - if metric != None: - node_trace.marker.size = list(metrices[metric]*500) - # print(list(metrices[metric]*500)) - + # Highlight the Node Size in regards to the selected Metric. + if metric is not None: + node_trace.marker.size = list(metrics[metric] * 500) + # Add Relation_Type as a Descriptin for the edges. edge_type_list = [] - for row in edges: edge_type_list.append(row["type"]) - + edge_weights_trace.text = edge_type_list - return go.Figure(data=[edge_trace, edge_weights_trace, node_trace], - layout=go.Layout( - title='
Network graph made with Python', - titlefont_size=16, - showlegend=False, - hovermode='closest', - margin=dict(b=20,l=5,r=5,t=40), - annotations=[ dict( - text="Python code: https://plotly.com/ipython-notebooks/network-graphs/", - showarrow=False, - xref="paper", yref="paper", - x=0.005, y=-0.002 ) ], - xaxis=dict(showgrid=False, zeroline=False, showticklabels=False), - yaxis=dict(showgrid=False, zeroline=False, showticklabels=False)) - ) \ No newline at end of file + # Return the Plotly Figure + return go.Figure( + data=[edge_trace, edge_weights_trace, node_trace], + layout=go.Layout( + title="
Network graph made with Python", + titlefont_size=16, + showlegend=False, + hovermode="closest", + margin={"b": 20, "l": 5, "r": 5, "t": 20}, + # annotations=, + xaxis={"showgrid": False, "zeroline": False, "showticklabels": False}, + yaxis={"showgrid": False, "zeroline": False, "showticklabels": False}, + ), + ) diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py b/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py index c511cd6..980e98b 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py @@ -1,33 +1,38 @@ +"""This Module contains the Method to create a 3D Network Graph with NetworkX.""" import networkx as nx import pandas as pd import plotly.graph_objects as go -def initialize_network(edges: list, nodes: list): - # create edges from dataframe - df_edges = pd.DataFrame(edges) - graph = nx.from_pandas_edgelist(df_edges, source="from", target="to", edge_attr="type") - # update node attributes from dataframe - nx.set_node_attributes(graph, nodes) +def create_3d_graph( + graph: nx.Graph, nodes: dict, edges: list, metrics: pd.DataFrame, metric: str | None +) -> go.Figure: + """This Method creates a 3D Network in Plotly with a Scatter Graph and retuns it. - metrices = pd.DataFrame(columns=["degree", "eigenvector", "betweeness", "closeness", "pagerank"]) + Args: + graph (_type_): NetworkX Graph. + nodes (_type_): List of Nodes + edges (_type_): List of Edges + metrics (_type_): DataFrame with the MEtrics + metric (_type_): Selected Metric - metrices["eigenvector"] = nx.eigenvector_centrality(graph).values() - metrices["degree"] = nx.degree_centrality(graph).values() - metrices["betweeness"] = nx.betweenness_centrality(graph).values() - metrices["closeness"] = nx.closeness_centrality(graph).values() - metrices["pagerank"] = nx.pagerank(graph).values() + Returns: + _type_: Plotly Figure + """ + # 3d spring layout + pos = nx.spring_layout(graph, dim=3, seed=779) - return graph, metrices - -def create_3d_graph(graph, nodes, edges,metrices, metric): + # Initialize Variables to set the Position of the Edges. edge_x = [] edge_y = [] edge_z = [] - # 3d spring layout - pos = nx.spring_layout(graph, dim=3, seed=779) + # Initialize Node Position Variables. + node_x = [] + node_y = [] + node_z = [] + # Getting the Positions from NetworkX and assign them to the variables. for edge in graph.edges(): x0, y0, z0 = pos[edge[0]] x1, y1, z1 = pos[edge[1]] @@ -41,102 +46,101 @@ def create_3d_graph(graph, nodes, edges,metrices, metric): edge_z.append(z0) edge_z.append(z1) - edge_trace=go.Scatter3d(x=edge_x, - y=edge_y, - z=edge_z, - mode='lines', - line=dict(color='rgb(125,125,125)', width=1), - hoverinfo='none' - ) - - node_x = [] - node_y = [] - node_z = [] + # Add the Edges to the scatter plot according to their Positions. + edge_trace = go.Scatter3d( + x=edge_x, + y=edge_y, + z=edge_z, + mode="lines", + line={"color": "rgb(125,125,125)", "width": 1}, + hoverinfo="none", + ) + # Getting the Positions from NetworkX and assign it to the variables. for node in graph.nodes(): x, y, z = pos[node] node_x.append(x) node_y.append(y) node_z.append(z) - node_trace=go.Scatter3d(x=node_x, - y=node_y, - z=node_z, - mode='markers', - name='actors', - marker=dict(symbol='circle', - size=6, - color="blue", - colorscale='Viridis', - line=dict(color='rgb(50,50,50)', width=0.5) - ), - # text=labels, - hoverinfo='text' - ) + # Add the Nodes to the scatter plot according to their Positions. + node_trace = go.Scatter3d( + x=node_x, + y=node_y, + z=node_z, + mode="markers", + name="actors", + marker={ + "symbol": "circle", + "size": 6, + "color": "blue", + "colorscale": "Viridis", + "line": {"color": "rgb(50,50,50)", "width": 0.5}, + }, + # text=labels, + hoverinfo="text", + ) - axis=dict(showbackground=False, - showline=False, - zeroline=False, - showgrid=False, - showticklabels=False, - title='' - ) + axis = { + "showbackground": False, + "showline": False, + "zeroline": False, + "showgrid": False, + "showticklabels": False, + "title": "", + } layout = go.Layout( - title="Social Graph", - - showlegend=False, - scene=dict( - xaxis=dict(axis), - yaxis=dict(axis), - zaxis=dict(axis), - ), - margin=dict( - t=10 - ), - hovermode='closest', + title="Social Graph", + showlegend=False, + scene={ + "xaxis": dict(axis), + "yaxis": dict(axis), + "zaxis": dict(axis), + }, + margin={"t": 10}, + hovermode="closest", annotations=[ - dict( - showarrow=False, - text="Companies (Blue) & Person (Red) Relation", - xref='paper', - yref='paper', - x=0, - y=0.1, - xanchor='left', - yanchor='bottom', - font=dict( - size=14 - ) - ) - ], ) + { + "showarrow": False, + "text": "Companies (Blue) & Person (Red) Relation", + "xref": "paper", + "yref": "paper", + "x": 0, + "y": 0.1, + "xanchor": "left", + "yanchor": "bottom", + "font": {"size": 14}, + } + ], + ) - #Set Color by using the nodes DataFrame with its Color Attribute. The sequence matters! + # Set Color by using the nodes DataFrame with its Color Attribute. The sequence matters! colors = list(nx.get_node_attributes(graph, "color").values()) node_names = [] for key, value in nodes.items(): - - if 'name' in value.keys(): + if "name" in value: node_names.append(value["name"]) else: node_names.append(value["firstname"] + " " + value["lastname"]) - + # Add Color and Names to the Scatter Plot. node_trace.marker.color = colors node_trace.text = node_names - if metric != None: - node_trace.marker.size = list(metrices[metric]*500) - print("Test") + # Highlight the Node Size in regards to the selected Metric. + if metric is not None: + node_trace.marker.size = list(metrics[metric] * 500) + # Set the Color and width of Edges for better highlighting. edge_colors = [] for row in edges: if row["type"] == "HAFTENDER_GESELLSCHAFTER": - edge_colors.append('rgb(255,0,0)') + edge_colors.append("rgb(255,0,0)") else: - edge_colors.append('rgb(255,105,180)') - edge_trace.line = dict(color=edge_colors, width=2) + edge_colors.append("rgb(255,105,180)") + edge_trace.line = {"color": edge_colors, "width": 2} - - data=[edge_trace, node_trace] + # Return the Plotly Figure + data = [edge_trace, node_trace] return go.Figure(data=data, layout=layout) diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_base.py b/src/aki_prj23_transparenzregister/utils/networkx/network_base.py new file mode 100644 index 0000000..a30874b --- /dev/null +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_base.py @@ -0,0 +1,36 @@ +"""This Module has a Method to initialize a Network with NetworkX which can be used for 2D and 3D Graphs.""" +import networkx as nx +import pandas as pd + + +def initialize_network(edges: list, nodes: dict) -> tuple[nx.Graph, pd.DataFrame]: + """This Method creates a Network from the Framework NetworkX with the help of a Node and Edge List. Furthemore it creates a DataFrame with the most important Metrics. + + Args: + edges (list): List with the connections between Nodes. + nodes (list): List with all Nodes. + + Returns: + Graph: Plotly Figure + Metrices: DataFrame with Metrics + """ + # create edge dataframe + df_edges = pd.DataFrame(edges) + graph = nx.from_pandas_edgelist( + df_edges, source="from", target="to", edge_attr="type" + ) + + # update node attributes from dataframe + nx.set_node_attributes(graph, nodes) + + # Create a DataFrame with all Metrics + metrices = pd.DataFrame( + columns=["degree", "eigenvector", "betweeness", "closeness", "pagerank"] + ) + metrices["eigenvector"] = nx.eigenvector_centrality(graph).values() + metrices["degree"] = nx.degree_centrality(graph).values() + metrices["betweeness"] = nx.betweenness_centrality(graph).values() + metrices["closeness"] = nx.closeness_centrality(graph).values() + metrices["pagerank"] = nx.pagerank(graph).values() + + return graph, metrices diff --git a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py index 9641955..8f43023 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py @@ -1,11 +1,12 @@ -from aki_prj23_transparenzregister.utils.sql import connector, entities -from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider +"""Module to receive and filter Data for working with NetworkX.""" import pandas as pd from sqlalchemy.orm import aliased -import pandas as pd -from sqlalchemy import func, text + +from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider +from aki_prj23_transparenzregister.utils.sql import connector, entities from aki_prj23_transparenzregister.utils.sql.connector import get_session +# Gets the Session Key for the DB Connection. session = get_session(JsonFileConfigProvider("secrets.json")) # Alias for Company table for the base company @@ -14,54 +15,68 @@ to_company = aliased(entities.Company, name="to_company") # Alias for Company table for the head company from_company = aliased(entities.Company, name="from_company") + def find_all_company_relations() -> pd.DataFrame: - """_summary_ + """_summary_. Returns: pd.DataFrame: _description_ """ session = connector.get_session(JsonFileConfigProvider("./secrets.json")) - query_companies = session.query(entities.Company) #.all() - query_relations = session.query(entities.CompanyRelation) # .all() + query_companies = session.query(entities.Company) # .all() + query_relations = session.query(entities.CompanyRelation) # .all() companies_df: pd.DataFrame = pd.read_sql(str(query_companies), session.bind) # type: ignore companies_relations_df: pd.DataFrame = pd.read_sql(str(query_relations), session.bind) # type: ignore - companies_relations_df = companies_relations_df[["relation_id","company_relation_company2_id"]] + companies_relations_df = companies_relations_df[ + ["relation_id", "company_relation_company2_id"] + ] company_name = [] connected_company_name = [] companies_relations_df = companies_relations_df.head() - for _, row in companies_relations_df.iterrows(): - company_name.append(companies_df.loc[companies_df["company_id"] == row["relation_id"]]["company_name"].values[0]) - connected_company_name.append(companies_df.loc[companies_df["company_id"] == row["company_relation_company2_id"]]["company_name"].values[0]) - + for _, row in companies_relations_df.iterrows(): + company_name.append( + companies_df.loc[companies_df["company_id"] == row["relation_id"]][ + "company_name" + ].values[0] + ) + connected_company_name.append( + companies_df.loc[ + companies_df["company_id"] == row["company_relation_company2_id"] + ]["company_name"].values[0] + ) + companies_relations_df["company_name"] = company_name companies_relations_df["connected_company_name"] = connected_company_name - + return companies_relations_df + def find_top_companies() -> pd.DataFrame: - """_summary_ + """_summary_. Returns: pd.DataFrame: _description_ """ session = connector.get_session(JsonFileConfigProvider("./secrets.json")) - query_companies = session.query(entities.Company) #.all() + query_companies = session.query(entities.Company) # .all() companies_df: pd.DataFrame = pd.read_sql(str(query_companies), session.bind) # type: ignore companies_df = companies_df.head() companies_df = companies_df[["company_name"]] - companies_df["Platzierung"] = [1,2,3,4,5] - companies_df["Umsatz M€"] = [1,2,3,4,5] - companies_df = companies_df[['Platzierung', 'company_name', 'Umsatz M€']] - # print(companies_df) - return companies_df + companies_df["Platzierung"] = [1, 2, 3, 4, 5] + companies_df["Umsatz M€"] = [1, 2, 3, 4, 5] + return companies_df[["Platzierung", "company_name", "Umsatz M€"]] +def get_all_company_relations() -> pd.DataFrame: + """This Methods makes a Database Request for all Companies and their relations, modifies the ID Column and returns the Result as an DataFrame. -def get_all_company_relations(): + Returns: + DataFrame: DataFrame with all Relations between Companies. + """ # Query to fetch relations between companies relations_company_query = ( session.query( @@ -83,12 +98,22 @@ def get_all_company_relations(): str(relations_company_query) company_relations = pd.read_sql_query(str(relations_company_query), session.bind) - company_relations['id_company_from'] = company_relations['id_company_from'].apply(lambda x: f"c_{x}") - company_relations['id_company_to'] = company_relations['id_company_to'].apply(lambda x: f"c_{x}") + company_relations["id_company_from"] = company_relations["id_company_from"].apply( + lambda x: f"c_{x}" + ) + company_relations["id_company_to"] = company_relations["id_company_to"].apply( + lambda x: f"c_{x}" + ) return company_relations -def get_all_person_relations(): + +def get_all_person_relations() -> pd.DataFrame: + """This Methods makes a Database Request for all Persons and their relations, modifies the ID Column and returns the Result as an DataFrame. + + Returns: + DataFrame: DataFrame with all Relations between Persons and Companies. + """ relations_person_query = ( session.query( entities.Company.id.label("id_company"), @@ -110,83 +135,129 @@ def get_all_person_relations(): ) person_relations = pd.read_sql_query(str(relations_person_query), session.bind) - person_relations['id_company'] = person_relations['id_company'].apply(lambda x: f"c_{x}") - person_relations['id_person'] = person_relations['id_person'].apply(lambda x: f"p_{x}") + person_relations["id_company"] = person_relations["id_company"].apply( + lambda x: f"c_{x}" + ) + person_relations["id_person"] = person_relations["id_person"].apply( + lambda x: f"p_{x}" + ) - return person_relations -def filter_relation_type(df: pd.DataFrame, selected_relation_type): - df = df.loc[df["relation_type"] == selected_relation_type] - return df +def filter_relation_type( + relation_dataframe: pd.DataFrame, selected_relation_type: str +) -> pd.DataFrame: + """This Method filters the given DataFrame based on the selected Relation Type and returns it. + + Args: + relation_dataframe (pd.DataFrame): DataFrame must contain a column named "relation_type". + selected_relation_type (str): String with the filter value. + + Returns: + relation_dataframe (pd.DataFrame): The filtered DataFrame which now only contains entries with the selected Relation Type. + """ + return relation_dataframe.loc[ + relation_dataframe["relation_type"] == selected_relation_type + ] -def filter_relation_with_more_than_one_connection(df: pd.DataFrame, id_column_name_to, id_column_name_from): - # print(df.columns.values) - tmp_df = pd.DataFrame(columns= df.columns.values) - # print(tmp_df) - for _index, row in df.iterrows(): +def filter_relation_with_more_than_one_connection( + relation_dataframe: pd.DataFrame, id_column_name_to: str, id_column_name_from: str +) -> pd.DataFrame: + """Method to filter all Entries in an DataFrame which has more than one connection. + + Args: + relation_dataframe (pd.DataFrame): _description_ + id_column_name_to (_type_): _description_ + id_column_name_from (_type_): _description_ + + Returns: + relation_dataframe (pd.DataFrame): The DataFrame which now only contains entries with more than one connection. + """ + tmp_df = pd.DataFrame(columns=relation_dataframe.columns.values) + for _index, row in relation_dataframe.iterrows(): count = 0 id = row[id_column_name_to] - for _index_sub, row_sub in df.iterrows(): + for _index_sub, row_sub in relation_dataframe.iterrows(): if id == row_sub[id_column_name_to]: count = count + 1 if id == row_sub[id_column_name_from]: count = count + 1 if count > 1: break - + if count > 1: # tmp_df = pd.concat([tmp_df, pd.DataFrame(row)])+ tmp_df.loc[len(tmp_df)] = row - # print(row) count = 0 else: count = 0 continue - # print(tmp_df) count = 0 return tmp_df -def create_edge_and_node_list(person_relations: pd.DataFrame, company_relations:pd.DataFrame): - nodes = {} - edges = [] +def create_edge_and_node_list( + person_relations: pd.DataFrame, company_relations: pd.DataFrame +) -> tuple[dict, list]: + """In this Method the given DataFrame with the relation will be morphed to Edge and Node lists and enhanced by a coloring for companies and person Nodes. + + Args: + person_relations (pd.DataFrame): _description_ + company_relations (pd.DataFrame): _description_ + + Returns: + _type_: _description_ + """ + nodes: dict = {} + edges: list = [] COLOR_COMPANY = "blue" COLOR_PERSON = "red" # Iterate over person relations for _index, row in person_relations.iterrows(): - if node:= nodes.get(row['id_company']) is None: - nodes[row['id_company']] = { - "id": row['id_company'], - 'name': row['name_company'], - 'color': COLOR_COMPANY + if node := nodes.get(row["id_company"]) is None: + nodes[row["id_company"]] = { + "id": row["id_company"], + "name": row["name_company"], + "color": COLOR_COMPANY, } - if node:= nodes.get(row['id_person']) is None: - nodes[row['id_person']] = { - "id": row['id_person'], - 'firstname': row['firstname'], - 'lastname': row['lastname'], - 'date_of_birth': row['date_of_birth'], - 'color': COLOR_PERSON - } - edges.append({'from': row['id_person'], 'to': row['id_company'], 'type': row['relation_type']}) + if node := nodes.get(row["id_person"]) is None: + nodes[row["id_person"]] = { + "id": row["id_person"], + "firstname": row["firstname"], + "lastname": row["lastname"], + "date_of_birth": row["date_of_birth"], + "color": COLOR_PERSON, + } + edges.append( + { + "from": row["id_person"], + "to": row["id_company"], + "type": row["relation_type"], + } + ) for _index, row in company_relations.iterrows(): - if node:= nodes.get(row['id_company_from']) is None: - nodes[row['id_company_from']] = { - "id": row['id_company_from'], - 'name': row['name_company_from'], - 'color': COLOR_COMPANY + if node := nodes.get(row["id_company_from"]) is None: + nodes[row["id_company_from"]] = { + "id": row["id_company_from"], + "name": row["name_company_from"], + "color": COLOR_COMPANY, } - if node:= nodes.get(row['id_company_to']) is None: - nodes[row['id_company_to']] = { - "id": row['id_company_to'], - 'name': row['name_company_to'], - 'color': COLOR_COMPANY - } - edges.append({'from': row['id_company_from'], 'to': row['id_company_to'], 'type': row['relation_type']}) - return nodes, edges \ No newline at end of file + if node := nodes.get(row["id_company_to"]) is None: + nodes[row["id_company_to"]] = { + "id": row["id_company_to"], + "name": row["name_company_to"], + "color": COLOR_COMPANY, + } + edges.append( + { + "from": row["id_company_from"], + "to": row["id_company_to"], + "type": row["relation_type"], + } + ) + return nodes, edges From 7e8adfafd5df99dc719d653309833bd6c637df8a Mon Sep 17 00:00:00 2001 From: Tim Date: Wed, 25 Oct 2023 19:05:14 +0200 Subject: [PATCH 16/36] Test Version --- .../ui/company_elements.py | 36 ++++++- .../ui/pages/home.py | 8 +- .../utils/networkx/network_base.py | 18 ++-- .../utils/networkx/networkx_data.py | 100 +++++++++++++++++- .../utils/sql/connector.py | 3 +- tests/ui/cytoscape_dash_test.py | 6 -- tests/ui/dashvis_networkx_test.py | 6 -- tests/ui/home_page_test.py | 7 ++ tests/utils/networkx/network_2d_test.py | 38 +++++++ tests/utils/networkx/network_3d_test.py | 38 +++++++ tests/utils/networkx/network_base_test.py | 38 +++++++ tests/utils/networkx/networkx_data_test.py | 38 +++++++ 12 files changed, 307 insertions(+), 29 deletions(-) delete mode 100644 tests/ui/cytoscape_dash_test.py delete mode 100644 tests/ui/dashvis_networkx_test.py create mode 100644 tests/ui/home_page_test.py create mode 100644 tests/utils/networkx/network_2d_test.py create mode 100644 tests/utils/networkx/network_3d_test.py create mode 100644 tests/utils/networkx/network_base_test.py create mode 100644 tests/utils/networkx/networkx_data_test.py diff --git a/src/aki_prj23_transparenzregister/ui/company_elements.py b/src/aki_prj23_transparenzregister/ui/company_elements.py index f5b4dff..ec1c283 100644 --- a/src/aki_prj23_transparenzregister/ui/company_elements.py +++ b/src/aki_prj23_transparenzregister/ui/company_elements.py @@ -11,6 +11,9 @@ from sqlalchemy.orm import Session from aki_prj23_transparenzregister.ui import data_elements, finance_elements from aki_prj23_transparenzregister.ui.networkx_dash import networkx_component +from aki_prj23_transparenzregister.utils.networkx.networkx_data import ( + find_company_relations, +) COLORS = { "light": "#edefef", @@ -344,8 +347,27 @@ def person_relations_layout(selected_company_id: int, session: Session) -> html: style_filter={"text-align": "center", "backgroundColor": COLORS["light"]}, ) +def kennzahlen_layout(selected_finance_df: pd.DataFrame) -> html: + """Create metrics tab. -def network_layout(selected_company_id: int) -> html: + Args: + selected_finance_df: A dataframe containing all available finance information of the companies. + + Returns: + The html div to create the metrics tab of the company page. + """ + return html.Div( + [ + dcc.Graph( + figure=finance_elements.financials_figure( + selected_finance_df, "annual_finance_statement_ebit" + ) + ) + ] + ) + + +def network_layout(selected_company_id: int) -> html.Div: """Create network tab. Args: @@ -354,6 +376,16 @@ def network_layout(selected_company_id: int) -> html: Returns: The html div to create the network tab of the company page. """ - selected_company_id + person_relations, company_relations = find_company_relations(selected_company_id) + # Create Edge and Node List from data + # nodes, edges = create_edge_and_node_list_for_company(company_relations) + # Initialize the Network and receive the Graph and a DataFrame with Metrics + # print(nodes) + # print(pd.DataFrame(edges)) + # graph, metrics = initialize_network(nodes=nodes, edges=edges) + # metric = None + # figure = create_2d_graph(graph, nodes, edges, metrics, metric) + # selected_company_id + # print(company_relations) return networkx_component(selected_company_id) # return html.Div([f"Netzwerk von Unternehmen mit ID: {selected_company_id}"]) diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index 007a7d1..21cedb0 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -94,7 +94,7 @@ layout = html.Div( dcc.Dropdown( company_relation_type_filter, company_relation_type_filter[0], - id="dropdown_companyrelation_filter", + id="dropdown_company_relation_filter", className="dropdown_style", ), ], @@ -109,7 +109,7 @@ layout = html.Div( dcc.Dropdown( person_relation_type_filter, person_relation_type_filter[0], - id="dropdown_personrelation_filter", + id="dropdown_person_relation_filter", className="dropdown_style", ), ], @@ -163,8 +163,8 @@ layout = html.Div( [ Input("dropdown", "value"), Input("switch", "on"), - Input("dropdown_companyrelation_filter", "value"), - Input("dropdown_personrelation_filter", "value"), + Input("dropdown_company_relation_filter", "value"), + Input("dropdown_person_relation_filter", "value"), ], prevent_initial_call=True, allow_duplicate=True, diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_base.py b/src/aki_prj23_transparenzregister/utils/networkx/network_base.py index a30874b..37c2ec5 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_base.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_base.py @@ -8,14 +8,14 @@ def initialize_network(edges: list, nodes: dict) -> tuple[nx.Graph, pd.DataFrame Args: edges (list): List with the connections between Nodes. - nodes (list): List with all Nodes. + nodes (dict): Dict with all Nodes. Returns: Graph: Plotly Figure Metrices: DataFrame with Metrics """ # create edge dataframe - df_edges = pd.DataFrame(edges) + df_edges = pd.DataFrame(edges, columns=["from", "to", "type"]) graph = nx.from_pandas_edgelist( df_edges, source="from", target="to", edge_attr="type" ) @@ -24,13 +24,13 @@ def initialize_network(edges: list, nodes: dict) -> tuple[nx.Graph, pd.DataFrame nx.set_node_attributes(graph, nodes) # Create a DataFrame with all Metrics - metrices = pd.DataFrame( + metrics = pd.DataFrame( columns=["degree", "eigenvector", "betweeness", "closeness", "pagerank"] ) - metrices["eigenvector"] = nx.eigenvector_centrality(graph).values() - metrices["degree"] = nx.degree_centrality(graph).values() - metrices["betweeness"] = nx.betweenness_centrality(graph).values() - metrices["closeness"] = nx.closeness_centrality(graph).values() - metrices["pagerank"] = nx.pagerank(graph).values() + metrics["eigenvector"] = nx.eigenvector_centrality(graph).values() + metrics["degree"] = nx.degree_centrality(graph).values() + metrics["betweeness"] = nx.betweenness_centrality(graph).values() + metrics["closeness"] = nx.closeness_centrality(graph).values() + metrics["pagerank"] = nx.pagerank(graph).values() - return graph, metrices + return graph, metrics diff --git a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py index 8f43023..f71b655 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py @@ -1,5 +1,6 @@ """Module to receive and filter Data for working with NetworkX.""" import pandas as pd +from loguru import logger from sqlalchemy.orm import aliased from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider @@ -201,7 +202,7 @@ def filter_relation_with_more_than_one_connection( def create_edge_and_node_list( person_relations: pd.DataFrame, company_relations: pd.DataFrame ) -> tuple[dict, list]: - """In this Method the given DataFrame with the relation will be morphed to Edge and Node lists and enhanced by a coloring for companies and person Nodes. + """In this Method the given DataFrames with the relation will be morphed to Edge and Node lists and enhanced by a coloring for companies and person Nodes. Args: person_relations (pd.DataFrame): _description_ @@ -261,3 +262,100 @@ def create_edge_and_node_list( } ) return nodes, edges + + +def find_company_relations( + selected_company_id: int, +) -> tuple[pd.DataFrame, pd.DataFrame()]: + print("In Method:" + str(selected_company_id)) + selected_company_id = 312 + # print( entities.Company.id == selected_company_id) + relations_company_query = ( + session.query( + to_company.id.label("id_company_to"), + to_company.name.label("name_company_to"), + entities.CompanyRelation.relation.label("relation_type"), + from_company.name.label("name_company_from"), + from_company.id.label("id_company_from"), + ) + .join( + entities.CompanyRelation, + entities.CompanyRelation.company_id == to_company.id, + ) + .join( + from_company, + entities.CompanyRelation.company2_id == from_company.id, + ) + .where(to_company.id == selected_company_id) + ) + logger.debug(str(relations_company_query)) + # relations_company_query = relations_company_query.filter(entities.CompanyRelation.company2_id == selected_company_id) # or (entities.CompanyRelation.company2_id == selected_company_id)) + # logger.debug(str(relations_company_query)) + # tmp = str(relations_company_query) + " WHERE from_company.id = " + str(selected_company_id) + # print(tmp) + # query = str(relations_company_query.filter((entities.CompanyRelation.company_id == selected_company_id) or (entities.CompanyRelation.company2_id == selected_company_id))) + # print(query) + # company_relations = get_all_company_relations() + company_relations = pd.DataFrame( + relations_company_query.all(), + columns=[ + "id_company_to", + "name_company_to", + "relation_type", + "name_company_from", + "id_company_from", + ], + ) + logger.debug(str(relations_company_query)) + print("query ergebnis:") + + print(company_relations) + + company_relations["id_company_from"] = company_relations["id_company_from"].apply( + lambda x: f"c_{x}" + ) + company_relations["id_company_to"] = company_relations["id_company_to"].apply( + lambda x: f"c_{x}" + ) + + return pd.DataFrame(), company_relations # company_relations + + +def create_edge_and_node_list_for_company( + company_relations: pd.DataFrame, +) -> tuple[dict, list]: + """In this Method the given DataFrames with the relation will be morphed to Edge and Node lists and enhanced by a coloring for companies and person Nodes. + + Args: + person_relations (pd.DataFrame): _description_ + company_relations (pd.DataFrame): _description_ + + Returns: + _type_: _description_ + """ + nodes: dict = {} + edges: list = [] + + COLOR_COMPANY = "blue" + + for _index, row in company_relations.iterrows(): + if node := nodes.get(row["id_company_from"]) is None: + nodes[row["id_company_from"]] = { + "id": row["id_company_from"], + "name": row["name_company_from"], + "color": COLOR_COMPANY, + } + if node := nodes.get(row["id_company_to"]) is None: + nodes[row["id_company_to"]] = { + "id": row["id_company_to"], + "name": row["name_company_to"], + "color": COLOR_COMPANY, + } + edges.append( + { + "from": row["id_company_from"], + "to": row["id_company_to"], + "type": row["relation_type"], + } + ) + return nodes, edges diff --git a/src/aki_prj23_transparenzregister/utils/sql/connector.py b/src/aki_prj23_transparenzregister/utils/sql/connector.py index 7b95985..335e556 100644 --- a/src/aki_prj23_transparenzregister/utils/sql/connector.py +++ b/src/aki_prj23_transparenzregister/utils/sql/connector.py @@ -40,12 +40,13 @@ def get_engine(conn_args: SQLConnectionString) -> Engine: database=conn_args.database, port=conn_args.port, ) - return sa.create_engine(url) + return sa.create_engine(url, echo=True) if isinstance(conn_args, SQLiteConnectionString): return sa.create_engine( str(conn_args), connect_args={"check_same_thread": True}, poolclass=SingletonThreadPool, + echo=True, ) raise TypeError("The type of the configuration is invalid.") diff --git a/tests/ui/cytoscape_dash_test.py b/tests/ui/cytoscape_dash_test.py deleted file mode 100644 index edb9d5b..0000000 --- a/tests/ui/cytoscape_dash_test.py +++ /dev/null @@ -1,6 +0,0 @@ -"""Test for the NetworkX Component.""" - - -# def networkGraph(Edges) -> None: -# """Checks if an import co company_stats_dash can be made.""" -# assert networkx_dash is not None diff --git a/tests/ui/dashvis_networkx_test.py b/tests/ui/dashvis_networkx_test.py deleted file mode 100644 index edb9d5b..0000000 --- a/tests/ui/dashvis_networkx_test.py +++ /dev/null @@ -1,6 +0,0 @@ -"""Test for the NetworkX Component.""" - - -# def networkGraph(Edges) -> None: -# """Checks if an import co company_stats_dash can be made.""" -# assert networkx_dash is not None diff --git a/tests/ui/home_page_test.py b/tests/ui/home_page_test.py new file mode 100644 index 0000000..ce75cdd --- /dev/null +++ b/tests/ui/home_page_test.py @@ -0,0 +1,7 @@ +"""Test for the Home Page.""" +# from aki_prj23_transparenzregister.ui.pages.home import networkx_dash + + +# def networkGraph(Edges: None) -> None: +# """Checks if an import co company_stats_dash can be made.""" +# assert networkx_dash is not None diff --git a/tests/utils/networkx/network_2d_test.py b/tests/utils/networkx/network_2d_test.py new file mode 100644 index 0000000..ed2fd00 --- /dev/null +++ b/tests/utils/networkx/network_2d_test.py @@ -0,0 +1,38 @@ +"""Test the initialize Network function.""" +import datetime +from unittest import TestCase + +import networkx as nx +import pandas as pd + +from aki_prj23_transparenzregister.utils.networkx.network_base import initialize_network + +tc = TestCase() + + +def test_initialize_network() -> None: + edges: list = [ + {"from": "p_545", "to": "c_53", "type": "HAFTENDER_GESELLSCHAFTER"}, + {"from": "p_758", "to": "c_77", "type": "HAFTENDER_GESELLSCHAFTER"}, + ] + nodes: dict = { + "c_53": { + "id": "c_53", + "name": "1. Freiburger Solarfonds Beteiligungs-KG", + "color": "blue", + }, + "p_545": { + "id": "p_545", + "firstname": "Jürgen", + "lastname": "Wetzel", + "date_of_birth": datetime.date(1962, 11, 15), + "color": "red", + }, + } + graph, metrics = initialize_network(edges=edges, nodes=nodes) + assert type(graph) is nx.Graph + assert type(metrics) is pd.DataFrame + tc.assertListEqual( + list(metrics.columns), + ["degree", "eigenvector", "betweeness", "closeness", "pagerank"], + ) diff --git a/tests/utils/networkx/network_3d_test.py b/tests/utils/networkx/network_3d_test.py new file mode 100644 index 0000000..ed2fd00 --- /dev/null +++ b/tests/utils/networkx/network_3d_test.py @@ -0,0 +1,38 @@ +"""Test the initialize Network function.""" +import datetime +from unittest import TestCase + +import networkx as nx +import pandas as pd + +from aki_prj23_transparenzregister.utils.networkx.network_base import initialize_network + +tc = TestCase() + + +def test_initialize_network() -> None: + edges: list = [ + {"from": "p_545", "to": "c_53", "type": "HAFTENDER_GESELLSCHAFTER"}, + {"from": "p_758", "to": "c_77", "type": "HAFTENDER_GESELLSCHAFTER"}, + ] + nodes: dict = { + "c_53": { + "id": "c_53", + "name": "1. Freiburger Solarfonds Beteiligungs-KG", + "color": "blue", + }, + "p_545": { + "id": "p_545", + "firstname": "Jürgen", + "lastname": "Wetzel", + "date_of_birth": datetime.date(1962, 11, 15), + "color": "red", + }, + } + graph, metrics = initialize_network(edges=edges, nodes=nodes) + assert type(graph) is nx.Graph + assert type(metrics) is pd.DataFrame + tc.assertListEqual( + list(metrics.columns), + ["degree", "eigenvector", "betweeness", "closeness", "pagerank"], + ) diff --git a/tests/utils/networkx/network_base_test.py b/tests/utils/networkx/network_base_test.py new file mode 100644 index 0000000..ed2fd00 --- /dev/null +++ b/tests/utils/networkx/network_base_test.py @@ -0,0 +1,38 @@ +"""Test the initialize Network function.""" +import datetime +from unittest import TestCase + +import networkx as nx +import pandas as pd + +from aki_prj23_transparenzregister.utils.networkx.network_base import initialize_network + +tc = TestCase() + + +def test_initialize_network() -> None: + edges: list = [ + {"from": "p_545", "to": "c_53", "type": "HAFTENDER_GESELLSCHAFTER"}, + {"from": "p_758", "to": "c_77", "type": "HAFTENDER_GESELLSCHAFTER"}, + ] + nodes: dict = { + "c_53": { + "id": "c_53", + "name": "1. Freiburger Solarfonds Beteiligungs-KG", + "color": "blue", + }, + "p_545": { + "id": "p_545", + "firstname": "Jürgen", + "lastname": "Wetzel", + "date_of_birth": datetime.date(1962, 11, 15), + "color": "red", + }, + } + graph, metrics = initialize_network(edges=edges, nodes=nodes) + assert type(graph) is nx.Graph + assert type(metrics) is pd.DataFrame + tc.assertListEqual( + list(metrics.columns), + ["degree", "eigenvector", "betweeness", "closeness", "pagerank"], + ) diff --git a/tests/utils/networkx/networkx_data_test.py b/tests/utils/networkx/networkx_data_test.py new file mode 100644 index 0000000..ed2fd00 --- /dev/null +++ b/tests/utils/networkx/networkx_data_test.py @@ -0,0 +1,38 @@ +"""Test the initialize Network function.""" +import datetime +from unittest import TestCase + +import networkx as nx +import pandas as pd + +from aki_prj23_transparenzregister.utils.networkx.network_base import initialize_network + +tc = TestCase() + + +def test_initialize_network() -> None: + edges: list = [ + {"from": "p_545", "to": "c_53", "type": "HAFTENDER_GESELLSCHAFTER"}, + {"from": "p_758", "to": "c_77", "type": "HAFTENDER_GESELLSCHAFTER"}, + ] + nodes: dict = { + "c_53": { + "id": "c_53", + "name": "1. Freiburger Solarfonds Beteiligungs-KG", + "color": "blue", + }, + "p_545": { + "id": "p_545", + "firstname": "Jürgen", + "lastname": "Wetzel", + "date_of_birth": datetime.date(1962, 11, 15), + "color": "red", + }, + } + graph, metrics = initialize_network(edges=edges, nodes=nodes) + assert type(graph) is nx.Graph + assert type(metrics) is pd.DataFrame + tc.assertListEqual( + list(metrics.columns), + ["degree", "eigenvector", "betweeness", "closeness", "pagerank"], + ) From 30f9e4506f1e04186928a7dfdda7d3eda07b26dd Mon Sep 17 00:00:00 2001 From: Tim Date: Wed, 25 Oct 2023 20:10:29 +0200 Subject: [PATCH 17/36] solved errors --- .../ui/pages/home.py | 98 ++++++++++--------- .../utils/networkx/network_2d.py | 5 +- .../utils/networkx/network_3d.py | 5 +- .../utils/networkx/networkx_data.py | 20 ++-- .../utils/sql/connector.py | 5 +- tests/utils/networkx/network_base_test.py | 7 +- 6 files changed, 69 insertions(+), 71 deletions(-) diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index 21cedb0..865366f 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -1,10 +1,11 @@ """Content of home page.""" +from functools import lru_cache import dash import dash_daq as daq import networkx as nx import pandas as pd import plotly.graph_objects as go -from dash import Input, Output, callback, dash_table, dcc, html +from dash import Input, Output, callback, dash_table, dcc, html, ctx from aki_prj23_transparenzregister.utils.networkx.network_2d import ( create_2d_graph, @@ -157,53 +158,7 @@ layout = html.Div( ) ) - -@callback( - Output("my-graph", "figure"), - [ - Input("dropdown", "value"), - Input("switch", "on"), - Input("dropdown_company_relation_filter", "value"), - Input("dropdown_person_relation_filter", "value"), - ], - prevent_initial_call=True, - allow_duplicate=True, -) -def update_figure( - selected_metric: str, - switch_value: bool, - c_relation_filter_value: str, - p_relation_filter_value: str, -) -> go.Figure: - """In this Callback the Value of the Dropdown is used to filter the Data. In Addition it takes the filter for the Graph metrics and creates a new graph, or switches between 3D and 2D. - - Args: - selected_metric (_type_): _description_ - switch_value (bool): _description_ - c_relation_filter_value (_type_): _description_ - p_relation_filter_value (_type_): _description_ - - Returns: - Network Graph(Plotly Figure): Plotly Figure in 3 or 2D - """ - _ = c_relation_filter_value, p_relation_filter_value - - # find_top_companies() - - metric = None if selected_metric == "None" else selected_metric - - # if triggered_id == 'dropdown_companyrelation_filter' or triggered_id == 'dropdown_personrelation_filter': - # print(selected_value) - # print(metrics) - # print(graph) - # graph, metrics = update_graph_data(person_relation_type= p_relation_filter, company_relation_type= c_relation_filter) - - if switch_value: - return create_2d_graph(graph, nodes, edges, metrics, metric) - else: - return create_3d_graph(graph, nodes, edges, metrics, metric) - - +# @lru_cache(200) def update_graph_data( person_relation_type: str = "HAFTENDER_GESELLSCHAFTER", company_relation_type: str = "GESCHAEFTSFUEHRER", @@ -222,3 +177,50 @@ def update_graph_data( graph, metrics = initialize_network(nodes=nodes, edges=edges) return graph, metrics + + +@callback( + Output("my-graph", "figure"), + [ + Input("dropdown", "value"), + Input("switch", "on"), + Input("dropdown_company_relation_filter", "value"), + Input("dropdown_person_relation_filter", "value"), + ], + prevent_initial_call=True, + allow_duplicate=True, +) +# @lru_cache(20) +def update_figure( + selected_metric: str, + switch_value: bool, + c_relation_filter_value: str, + p_relation_filter_value: str, +) -> go.Figure: + """In this Callback the Value of the Dropdown is used to filter the Data. In Addition it takes the filter for the Graph metrics and creates a new graph, or switches between 3D and 2D. + + Args: + selected_metric (_type_): _description_ + switch_value (bool): _description_ + c_relation_filter_value (_type_): _description_ + p_relation_filter_value (_type_): _description_ + + Returns: + Network Graph(Plotly Figure): Plotly Figure in 3 or 2D + """ + _ = c_relation_filter_value, p_relation_filter_value + # triggered_id = ctx.triggered_id + + # if triggered_id == 'dropdown_companyrelation_filter' or triggered_id == 'dropdown_personrelation_filter': + # print(selected_value) + # print(metrics) + # print(graph) + graph, metrics = update_graph_data(person_relation_type= p_relation_filter_value, company_relation_type= c_relation_filter_value) + + if switch_value: + return create_2d_graph(graph, nodes, edges, metrics, selected_metric) + else: + return create_3d_graph(graph, nodes, edges, metrics, selected_metric) + + + diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py b/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py index 39da7f3..d6af5f3 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py @@ -1,5 +1,6 @@ """This Module contains the Method to create a 2D Network Graph with NetworkX.""" import networkx as nx +import numpy as np import pandas as pd import plotly.graph_objects as go @@ -107,8 +108,8 @@ def create_2d_graph( node_trace.text = node_names # Highlight the Node Size in regards to the selected Metric. - if metric is not None: - node_trace.marker.size = list(metrics[metric] * 500) + if metric != "None": + node_trace.marker.size = list(np.sqrt(metrics[metric]) * 200) # Add Relation_Type as a Descriptin for the edges. edge_type_list = [] diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py b/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py index 980e98b..f3a88a6 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py @@ -1,5 +1,6 @@ """This Module contains the Method to create a 3D Network Graph with NetworkX.""" import networkx as nx +import numpy as np import pandas as pd import plotly.graph_objects as go @@ -129,8 +130,8 @@ def create_3d_graph( node_trace.text = node_names # Highlight the Node Size in regards to the selected Metric. - if metric is not None: - node_trace.marker.size = list(metrics[metric] * 500) + if metric != "None": + node_trace.marker.size = list(np.cbrt(metrics[metric]) * 200) # Set the Color and width of Edges for better highlighting. edge_colors = [] diff --git a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py index f71b655..d582def 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py @@ -97,7 +97,7 @@ def get_all_company_relations() -> pd.DataFrame: ) ) str(relations_company_query) - company_relations = pd.read_sql_query(str(relations_company_query), session.bind) + company_relations = pd.read_sql_query(str(relations_company_query), session.bind) # type: ignore company_relations["id_company_from"] = company_relations["id_company_from"].apply( lambda x: f"c_{x}" @@ -134,7 +134,7 @@ def get_all_person_relations() -> pd.DataFrame: entities.PersonRelation.person_id == entities.Person.id, ) ) - person_relations = pd.read_sql_query(str(relations_person_query), session.bind) + person_relations = pd.read_sql_query(str(relations_person_query), session.bind) # type: ignore person_relations["id_company"] = person_relations["id_company"].apply( lambda x: f"c_{x}" @@ -190,7 +190,7 @@ def filter_relation_with_more_than_one_connection( if count > 1: # tmp_df = pd.concat([tmp_df, pd.DataFrame(row)])+ - tmp_df.loc[len(tmp_df)] = row + tmp_df.loc[len(tmp_df)] = row count = 0 else: count = 0 @@ -267,9 +267,6 @@ def create_edge_and_node_list( def find_company_relations( selected_company_id: int, ) -> tuple[pd.DataFrame, pd.DataFrame()]: - print("In Method:" + str(selected_company_id)) - selected_company_id = 312 - # print( entities.Company.id == selected_company_id) relations_company_query = ( session.query( to_company.id.label("id_company_to"), @@ -286,9 +283,10 @@ def find_company_relations( from_company, entities.CompanyRelation.company2_id == from_company.id, ) - .where(to_company.id == selected_company_id) + .filter((from_company.id == selected_company_id) | (to_company.id == selected_company_id)) ) - logger.debug(str(relations_company_query)) + company_relations = pd.DataFrame(relations_company_query.all()) + # logger.debug(str(relations_company_query)) # relations_company_query = relations_company_query.filter(entities.CompanyRelation.company2_id == selected_company_id) # or (entities.CompanyRelation.company2_id == selected_company_id)) # logger.debug(str(relations_company_query)) # tmp = str(relations_company_query) + " WHERE from_company.id = " + str(selected_company_id) @@ -306,11 +304,7 @@ def find_company_relations( "id_company_from", ], ) - logger.debug(str(relations_company_query)) - print("query ergebnis:") - - print(company_relations) - + company_relations["id_company_from"] = company_relations["id_company_from"].apply( lambda x: f"c_{x}" ) diff --git a/src/aki_prj23_transparenzregister/utils/sql/connector.py b/src/aki_prj23_transparenzregister/utils/sql/connector.py index 335e556..7208e0f 100644 --- a/src/aki_prj23_transparenzregister/utils/sql/connector.py +++ b/src/aki_prj23_transparenzregister/utils/sql/connector.py @@ -40,13 +40,12 @@ def get_engine(conn_args: SQLConnectionString) -> Engine: database=conn_args.database, port=conn_args.port, ) - return sa.create_engine(url, echo=True) + return sa.create_engine(url) if isinstance(conn_args, SQLiteConnectionString): return sa.create_engine( str(conn_args), connect_args={"check_same_thread": True}, - poolclass=SingletonThreadPool, - echo=True, + poolclass=SingletonThreadPool ) raise TypeError("The type of the configuration is invalid.") diff --git a/tests/utils/networkx/network_base_test.py b/tests/utils/networkx/network_base_test.py index ed2fd00..d040182 100644 --- a/tests/utils/networkx/network_base_test.py +++ b/tests/utils/networkx/network_base_test.py @@ -8,8 +8,9 @@ import pandas as pd from aki_prj23_transparenzregister.utils.networkx.network_base import initialize_network tc = TestCase() +import pytest - +@pytest.mark.tim def test_initialize_network() -> None: edges: list = [ {"from": "p_545", "to": "c_53", "type": "HAFTENDER_GESELLSCHAFTER"}, @@ -30,8 +31,8 @@ def test_initialize_network() -> None: }, } graph, metrics = initialize_network(edges=edges, nodes=nodes) - assert type(graph) is nx.Graph - assert type(metrics) is pd.DataFrame + assert isinstance(graph, nx.Graph) + assert isinstance(metrics, pd.DataFrame) tc.assertListEqual( list(metrics.columns), ["degree", "eigenvector", "betweeness", "closeness", "pagerank"], From b594add25706f91e600da80127bc2aa9ff2ba0f8 Mon Sep 17 00:00:00 2001 From: Tim Date: Mon, 30 Oct 2023 10:47:02 +0100 Subject: [PATCH 18/36] Added more customizing --- .../ui/assets/networkx_style.css | 7 +- .../ui/pages/home.py | 130 ++++++++++++++++-- .../utils/networkx/network_2d.py | 42 ++++-- .../utils/networkx/network_3d.py | 27 +++- 4 files changed, 185 insertions(+), 21 deletions(-) diff --git a/src/aki_prj23_transparenzregister/ui/assets/networkx_style.css b/src/aki_prj23_transparenzregister/ui/assets/networkx_style.css index ca5d9c7..a00fd21 100644 --- a/src/aki_prj23_transparenzregister/ui/assets/networkx_style.css +++ b/src/aki_prj23_transparenzregister/ui/assets/networkx_style.css @@ -74,6 +74,7 @@ margin-top: 1px; padding-left: 10px; width: 80%; + display: inline-block; /* background-color: var(--raisin-black); */ } @@ -81,7 +82,7 @@ .networkx_style .switch-style .jAjsxw { align-self: left; float: none; - display: inline; + display: inline-block; padding: 0px; margin: 0px; @@ -90,12 +91,14 @@ } .networkx_style .graph-style { + margin-top: 10px; padding-bottom: 0px; - display: inline; + display: inline-block; margin: 0px; width: 100%; height: 100%; + /* float: inline-end, */ /* background-color: var(--raisin-black); */ } diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index 865366f..2e94082 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -56,6 +56,18 @@ graph, metrices = initialize_network(nodes = nodes, edges = edges) # print(graph) metric = None network = create_3d_graph(graph, nodes, edges, metrics, metric) +# Create Edge and Node List from data +nodes, edges = create_edge_and_node_list(person_relation, company_relation) +# Initialize the Network and receive the Graph and a DataFrame with Metrics +node_count = len(nodes) +edge_count = len(edges) +graph, metrics = initialize_network(nodes=nodes, edges=edges) +metric = "None" +layout = "Spring" +switch_node_annotaion_value = False +switch_edge_annotaion_value = True +egde_thickness = 1 +network = create_3d_graph(graph, nodes, edges, metrics, metric, layout, switch_node_annotaion_value, switch_edge_annotaion_value, egde_thickness) # Get the possible Filter values for the Dropdowns. company_relation_type_filter = get_all_person_relations()["relation_type"].unique() @@ -136,21 +148,112 @@ layout = html.Div( ), ], ), + html.Div( + className="filter-wrapper-item", + children=[ + html.H5( + className="filter-description", + children=["Choose Layout:"], + ), + dcc.Dropdown( + [ + "Spring", + # "Bipartite", + "Circular", + "Kamada Kawai", + "Planar", + "Random", + "Shell", + "Spectral", + "Spiral", + "Multipartite" + ], + "Spring", + id="dropdown_layout", + className="dropdown_style", + ), + ], + ), + html.Div( + className="filter-wrapper-item", + children=[ + html.H5( + className="filter-description", + children=["Adjust Edge Thickness"], + ), + dcc.Slider( 1, 4, 1, + value=1, + id='slider', + ), + ],), ], ), html.Div( - className="filter-wrapper-item", + className="filter-wrapper", children=[ - html.H5( - className="filter-description", - children=["Switch to 2D Diagramm"], + html.Div( + className="filter-wrapper-item", + children=[ + html.H5( + className="filter-description", + children=["Switch to 2D Diagramm"], + ), + html.Div( + className="switch-style", + children=[daq.BooleanSwitch(id="switch", on=False)], + ), + ], ), html.Div( - className="switch-style", - children=[daq.BooleanSwitch(id="switch", on=False)], + className="filter-wrapper-item", + children=[ + html.H5( + className="filter-description", + children=["Enable Node Annotation"], + ), + html.Div( + className="switch-style", + children=[daq.BooleanSwitch(id="switch_node_annotation", on=False)], + ), + ], + ), + html.Div( + className="filter-wrapper-item", + children=[ + html.H5( + className="filter-description", + children=["Enable Edge Annotation"], + ), + html.Div( + className="switch-style", + children=[daq.BooleanSwitch(id="switch_edge_annotation", on=False)], + ), + ], ), ], ), + html.Div( + className="filter-wrapper", + children=[ + html.Div( + className="filter-wrapper-item", + children=[ + html.H5( + className="filter-description", + children=[f"""Number of shown Nodes: {node_count}"""], + ), + ],), + html.Div( + className="filter-wrapper-item", + children=[ + html.H5( + className="filter-description", + children=[f"""Number of shown Edges: {edge_count}"""], + ), + ],), + ], + ), + dcc.Graph(figure=network, id="my-graph", className="graph-style"), ], ), @@ -174,6 +277,8 @@ def update_graph_data( # Create Edge and Node List from data nodes, edges = create_edge_and_node_list(person_relation, company_relation) + # node_count = len(nodes) + # edge_count = len(edges) graph, metrics = initialize_network(nodes=nodes, edges=edges) return graph, metrics @@ -184,8 +289,12 @@ def update_graph_data( [ Input("dropdown", "value"), Input("switch", "on"), + Input("switch_node_annotation", "on"), + Input("switch_edge_annotation", "on"), Input("dropdown_company_relation_filter", "value"), Input("dropdown_person_relation_filter", "value"), + Input("dropdown_layout", "value"), + Input('slider', 'value') ], prevent_initial_call=True, allow_duplicate=True, @@ -194,8 +303,12 @@ def update_graph_data( def update_figure( selected_metric: str, switch_value: bool, + switch_node_annotaion_value: bool, + switch_edge_annotaion_value: bool, c_relation_filter_value: str, p_relation_filter_value: str, + layout: str, + slider_value: float ) -> go.Figure: """In this Callback the Value of the Dropdown is used to filter the Data. In Addition it takes the filter for the Graph metrics and creates a new graph, or switches between 3D and 2D. @@ -217,10 +330,11 @@ def update_figure( # print(graph) graph, metrics = update_graph_data(person_relation_type= p_relation_filter_value, company_relation_type= c_relation_filter_value) + if switch_value: - return create_2d_graph(graph, nodes, edges, metrics, selected_metric) + return create_2d_graph(graph, nodes, edges, metrics, selected_metric, layout, switch_node_annotaion_value, switch_edge_annotaion_value, slider_value) else: - return create_3d_graph(graph, nodes, edges, metrics, selected_metric) + return create_3d_graph(graph, nodes, edges, metrics, selected_metric, layout, switch_node_annotaion_value, switch_edge_annotaion_value, slider_value) diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py b/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py index d6af5f3..c4a1cd8 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py @@ -6,7 +6,7 @@ import plotly.graph_objects as go def create_2d_graph( - graph: nx.Graph, nodes: dict, edges: list, metrics: pd.DataFrame, metric: str | None + graph: nx.Graph, nodes: dict, edges: list, metrics: pd.DataFrame, metric: str | None, layout: str, node_annotation: bool, edge_annotation: bool, edge_thickness: int ) -> go.Figure: """This Method creates a 2d Network in Plotly with a Scatter Graph and retuns it. @@ -20,8 +20,29 @@ def create_2d_graph( Returns: _type_: Plotly Figure """ - # Set 2D Layout + # Set 2D Layout pos = nx.spring_layout(graph) + match layout: + case "Spring": + pos = nx.spring_layout(graph) + # case "Bipartite": + # pos = nx.bipartite_layout(graph) + case "Circular": + pos = nx.circular_layout(graph) + case "Kamada Kawai": + pos = nx.kamada_kawai_layout(graph) + # case "Planar": + # pos = nx.planar_layout(graph) + case "Random": + pos = nx.random_layout(graph) + case "Shell": + pos = nx.shell_layout(graph) + # case "Spectral": + # pos = nx.spectral_layout(graph) + case "Spiral": + pos = nx.spiral_layout(graph) + # case "Multipartite": + # pos = nx.multipartite_layout(graph) # Initialize Variables to set the Position of the Edges. edge_x = [] @@ -90,7 +111,7 @@ def create_2d_graph( "xanchor": "left", "titleside": "right", }, - "line_width": 2, + "line_width": edge_thickness, }, ) @@ -111,12 +132,17 @@ def create_2d_graph( if metric != "None": node_trace.marker.size = list(np.sqrt(metrics[metric]) * 200) - # Add Relation_Type as a Descriptin for the edges. - edge_type_list = [] - for row in edges: - edge_type_list.append(row["type"]) + # Add Relation_Type as a Description for the edges. + if edge_annotation: + edge_type_list = [] + for row in edges: + edge_type_list.append(row["type"]) - edge_weights_trace.text = edge_type_list + edge_weights_trace.text = edge_type_list + + if node_annotation: + print("Test") + # node_trace.text = nodes. # Return the Plotly Figure return go.Figure( diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py b/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py index f3a88a6..4f53a5d 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py @@ -6,7 +6,7 @@ import plotly.graph_objects as go def create_3d_graph( - graph: nx.Graph, nodes: dict, edges: list, metrics: pd.DataFrame, metric: str | None + graph: nx.Graph, nodes: dict, edges: list, metrics: pd.DataFrame, metric: str | None, layout: str, node_annotation: bool, edge_annotation: bool, edge_thickness: int ) -> go.Figure: """This Method creates a 3D Network in Plotly with a Scatter Graph and retuns it. @@ -21,7 +21,28 @@ def create_3d_graph( _type_: Plotly Figure """ # 3d spring layout - pos = nx.spring_layout(graph, dim=3, seed=779) + pos = nx.spring_layout(graph, dim=3) + match layout: + case "Spring": + pos = nx.spring_layout(graph, dim=3) + # case "Bipartite": + # pos = nx.bipartite_layout(graph, dim=3) + case "Circular": + pos = nx.circular_layout(graph, dim=3) + case "Kamada Kawai": + pos = nx.kamada_kawai_layout(graph, dim=3) + # case "Planar": + # pos = nx.planar_layout(graph, dim=3) + case "Random": + pos = nx.random_layout(graph, dim=3) + # case "Shell": + # pos = nx.shell_layout(graph, dim=3) + # case "Spectral": + # pos = nx.spectral_layout(graph, dim=3) + # case "Spiral": + # pos = nx.spiral_layout(graph, dim=3) + # case "Multipartite": + # pos = nx.multipartite_layout(graph, dim=3) # Initialize Variables to set the Position of the Edges. edge_x = [] @@ -140,7 +161,7 @@ def create_3d_graph( edge_colors.append("rgb(255,0,0)") else: edge_colors.append("rgb(255,105,180)") - edge_trace.line = {"color": edge_colors, "width": 2} + edge_trace.line = {"color": edge_colors, "width": edge_thickness} # Return the Plotly Figure data = [edge_trace, node_trace] From deee0cd09d1e689e520db9e05b85af9c25460a3a Mon Sep 17 00:00:00 2001 From: Tim Date: Mon, 30 Oct 2023 22:54:29 +0100 Subject: [PATCH 19/36] Added Datatable --- .../ui/pages/home.py | 44 +++++++++++++++++-- .../utils/networkx/networkx_data.py | 23 ++++++++++ 2 files changed, 63 insertions(+), 4 deletions(-) diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index 2e94082..e6f5f12 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -24,6 +24,7 @@ from aki_prj23_transparenzregister.utils.networkx.networkx_data import ( find_top_companies, get_all_company_relations, get_all_person_relations, + return_metric_table_df ) @@ -73,7 +74,8 @@ network = create_3d_graph(graph, nodes, edges, metrics, metric, layout, switch_n company_relation_type_filter = get_all_person_relations()["relation_type"].unique() person_relation_type_filter = get_all_company_relations()["relation_type"].unique() -top_companies_df = find_top_companies() + +top_companies_df = return_metric_table_df(metrics, nodes, "closeness") #find_top_companies() # with open("src/aki_prj23_transparenzregister/ui/assets/network_graph.html") as file: # html_content = file.read() @@ -83,10 +85,31 @@ layout = html.Div( html.Div( className="top_companytable_style", children=[ - html.Title(title="Top Ten Unternehmen", style={"align": "mid"}), - dash_table.DataTable( + html.H1(title="Top Ten Nodes in Graph by Metric", style={"align": "mid"}), + html.Div( + className="filter-wrapper-item", + children=[ + html.H5( + className="filter-description", + children=["Filter Metric:"], + ), + dcc.Dropdown( + [ + "eigenvector", + "degree", + "betweeness", + "closeness", + ], + "closeness", + id="dropdown_table_metric", + className="dropdown_style", + ), + ], + ), + dash_table.DataTable( top_companies_df.to_dict("records"), [{"name": i, "id": i} for i in top_companies_df.columns], + id="metric_table", ), ], ), @@ -337,4 +360,17 @@ def update_figure( return create_3d_graph(graph, nodes, edges, metrics, selected_metric, layout, switch_node_annotaion_value, switch_edge_annotaion_value, slider_value) - +@callback( + Output("metric_table", "data"), + [ + Input("dropdown_table_metric", "value"), + ], +) +def update_table(metric_dropdown_value: str) -> dict: + table_df = return_metric_table_df(metrics, nodes, metric_dropdown_value) + table_df.to_dict("records") + # print(table_df.to_dict("records")) + columns =[{"name": i, "id": i} for i in table_df.columns] + # print(columns) + + return table_df.to_dict("records") \ No newline at end of file diff --git a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py index d582def..c602009 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py @@ -353,3 +353,26 @@ def create_edge_and_node_list_for_company( } ) return nodes, edges + + +def return_metric_table_df(metrics: pd.DataFrame, nodes: dict, metric: str)-> pd.DataFrame: + # tmp = pd.DataFrame(columns=["Platzierung", "company_name", "Umsatz M€"]) + + tmp_list = [] + category = [] + for key, values in nodes.items(): + # print(values["id"]) + + if str(values["id"]).split("_")[0] == "c": + tmp_list.append(values["name"]) + category.append("company") + if str(values["id"]).split("_")[0] == "p": + tmp_list.append(str(values["firstname"]) + " " + str(values["lastname"])) + category.append("person") + metrics["designation"] = tmp_list + metrics["category"] = category + tmp_df = metrics.sort_values(metric, ascending=False) + tmp_df = tmp_df[["designation", metric, "category"]].head(10) + tmp_df.rename(columns={metric: "Metric"}, inplace=True) + # print(tmp_df[["designation", metric, "category"]].head(10)) + return tmp_df \ No newline at end of file From 4fe97dfd8671799c6caab4b1be7b34d33e78b619 Mon Sep 17 00:00:00 2001 From: Tim Date: Thu, 2 Nov 2023 14:28:30 +0100 Subject: [PATCH 20/36] Bug fixes --- .../ui/company_elements.py | 18 +++-- .../ui/pages/home.py | 74 +++++++++++++++---- .../utils/networkx/network_2d.py | 19 ++--- .../utils/networkx/network_3d.py | 32 +++++++- 4 files changed, 113 insertions(+), 30 deletions(-) diff --git a/src/aki_prj23_transparenzregister/ui/company_elements.py b/src/aki_prj23_transparenzregister/ui/company_elements.py index ec1c283..7555e0b 100644 --- a/src/aki_prj23_transparenzregister/ui/company_elements.py +++ b/src/aki_prj23_transparenzregister/ui/company_elements.py @@ -11,7 +11,10 @@ from sqlalchemy.orm import Session from aki_prj23_transparenzregister.ui import data_elements, finance_elements from aki_prj23_transparenzregister.ui.networkx_dash import networkx_component +from aki_prj23_transparenzregister.utils.networkx.network_2d import create_2d_graph +from aki_prj23_transparenzregister.utils.networkx.network_base import initialize_network from aki_prj23_transparenzregister.utils.networkx.networkx_data import ( + create_edge_and_node_list_for_company, find_company_relations, ) @@ -378,14 +381,17 @@ def network_layout(selected_company_id: int) -> html.Div: """ person_relations, company_relations = find_company_relations(selected_company_id) # Create Edge and Node List from data - # nodes, edges = create_edge_and_node_list_for_company(company_relations) + nodes, edges = create_edge_and_node_list_for_company(company_relations) # Initialize the Network and receive the Graph and a DataFrame with Metrics # print(nodes) + # print(edges) # print(pd.DataFrame(edges)) - # graph, metrics = initialize_network(nodes=nodes, edges=edges) - # metric = None - # figure = create_2d_graph(graph, nodes, edges, metrics, metric) + if nodes != {}: + graph, metrics = initialize_network(nodes=nodes, edges=edges) + metric = "None" + figure = create_2d_graph(graph, nodes, edges, metrics, metric, layout="Spring", edge_annotation=True, node_annotation=False, edge_thickness=1) # selected_company_id # print(company_relations) - return networkx_component(selected_company_id) - # return html.Div([f"Netzwerk von Unternehmen mit ID: {selected_company_id}"]) + return html.Div( children=[dcc.Graph(figure=figure, id="company-graph", className="graph-style")]) + # return networkx_component(selected_company_id) + return html.Div([html.H3(f"Leider gibt es keine Verbindungen vom Unternehmen mit ID: {selected_company_id}")]) diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index e6f5f12..f7fa2a8 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -66,7 +66,7 @@ graph, metrics = initialize_network(nodes=nodes, edges=edges) metric = "None" layout = "Spring" switch_node_annotaion_value = False -switch_edge_annotaion_value = True +switch_edge_annotaion_value = False egde_thickness = 1 network = create_3d_graph(graph, nodes, edges, metrics, metric, layout, switch_node_annotaion_value, switch_edge_annotaion_value, egde_thickness) @@ -119,6 +119,28 @@ layout = html.Div( html.H1(className="header", children=["Social Graph"]), html.Div( className="filter-wrapper", + children=[ + html.Div( + className="filter-wrapper-item", + children=[ + html.H5( + className="filter-description", + children=["Data Source:"], + ), + dcc.Dropdown( + ["Company Data only", "Person Data only", "Company & Person Data"], + "Company Data only", + id="dropdown_data_soruce_filter", + className="dropdown_style", + ), + ], + ), + ], + ), + html.Div( + className="filter-wrapper", + id= "company_dropdown", + # style="display: inline;", children=[ html.Div( className="filter-wrapper-item", @@ -137,6 +159,7 @@ layout = html.Div( ), html.Div( className="filter-wrapper-item", + # style="display: None;", children=[ html.H5( className="filter-description", @@ -184,12 +207,12 @@ layout = html.Div( # "Bipartite", "Circular", "Kamada Kawai", - "Planar", + # "Planar", "Random", - "Shell", - "Spectral", - "Spiral", - "Multipartite" + "Shell (only 2D)", + # "Spectral", + "Spiral (only 2D)", + # "Multipartite" ], "Spring", id="dropdown_layout", @@ -292,19 +315,22 @@ def update_graph_data( # Get Data person_df = get_all_person_relations() company_df = get_all_company_relations() + # print(company_df) person_relation = filter_relation_type(person_df, person_relation_type) company_relation = filter_relation_type(company_df, company_relation_type) # company_relation = filter_relation_with_more_than_one_connection(company_relation, "id_company_to", "id_company_from") - + # print(company_relation) + # print(len(company_relation)) # Create Edge and Node List from data - nodes, edges = create_edge_and_node_list(person_relation, company_relation) - # node_count = len(nodes) - # edge_count = len(edges) + nodes_tmp, edges_tmp = create_edge_and_node_list(person_relation, company_relation) + node_count = len(nodes_tmp) + edge_count = len(edges_tmp) + # print(edges_tmp) - graph, metrics = initialize_network(nodes=nodes, edges=edges) - return graph, metrics + graph, metrics = initialize_network(nodes=nodes_tmp, edges=edges_tmp) + return graph, metrics, nodes_tmp, edges_tmp @callback( @@ -351,7 +377,9 @@ def update_figure( # print(selected_value) # print(metrics) # print(graph) - graph, metrics = update_graph_data(person_relation_type= p_relation_filter_value, company_relation_type= c_relation_filter_value) + graph, metrics, nodes, edges = update_graph_data(person_relation_type= p_relation_filter_value, company_relation_type= c_relation_filter_value) + node_count = len(nodes) + edge_count = len(edges) if switch_value: @@ -373,4 +401,22 @@ def update_table(metric_dropdown_value: str) -> dict: columns =[{"name": i, "id": i} for i in table_df.columns] # print(columns) - return table_df.to_dict("records") \ No newline at end of file + return table_df.to_dict("records") + + +@callback( +Output("company_dropdown", "style"), +[ + Input("dropdown_data_soruce_filter", "value"), +], +) +def update_Dropdown(datasource_value: str) -> str: + style = "" + match datasource_value: + case "Company Data only": + style = "display: inline" + case "Person Data only": + style = "display: none" + case "Company & Person Data": + style = "display: inline" + return style \ No newline at end of file diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py b/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py index c4a1cd8..21ad91d 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py @@ -35,11 +35,11 @@ def create_2d_graph( # pos = nx.planar_layout(graph) case "Random": pos = nx.random_layout(graph) - case "Shell": + case "Shell only 2D)": pos = nx.shell_layout(graph) # case "Spectral": # pos = nx.spectral_layout(graph) - case "Spiral": + case "Spiral only 2D)": pos = nx.spiral_layout(graph) # case "Multipartite": # pos = nx.multipartite_layout(graph) @@ -60,15 +60,15 @@ def create_2d_graph( x1, y1 = pos[edge[1]] edge_x.append(x0) edge_x.append(x1) - edge_x.append(None) + # edge_x.append(None) edge_y.append(y0) edge_y.append(y1) - edge_y.append(None) + # edge_y.append(None) - edge_weight_x.append(x0 + ((x1 - x0) / 2)) - edge_weight_y.append(y0 + ((y1 - y0) / 2)) - edge_weight_y.append(None) + edge_weight_x.append(((x1 + x0) / 2)) + edge_weight_y.append(((y1 + y0) / 2)) + # edge_weight_y.append(None) # Add the Edges to the scatter plot according to their Positions. edge_trace = go.Scatter( x=edge_x, @@ -82,10 +82,10 @@ def create_2d_graph( x=edge_weight_x, y=edge_weight_y, mode="text", - marker_size=1, + marker_size=0.5, text=[0.45, 0.7, 0.34], textposition="top center", - hovertemplate="weight: %{text}", + hovertemplate="Relation: %{text}", ) # Getting the Positions from NetworkX and assign it to the variables. @@ -139,6 +139,7 @@ def create_2d_graph( edge_type_list.append(row["type"]) edge_weights_trace.text = edge_type_list + # print(edge_type_list) if node_annotation: print("Test") diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py b/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py index 4f53a5d..e0067ad 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py @@ -54,6 +54,11 @@ def create_3d_graph( node_y = [] node_z = [] + # Initialize Position Variables for the Description Text of the edges. + edge_weight_x = [] + edge_weight_y = [] + edge_weight_z = [] + # Getting the Positions from NetworkX and assign them to the variables. for edge in graph.edges(): x0, y0, z0 = pos[edge[0]] @@ -67,6 +72,11 @@ def create_3d_graph( edge_z.append(z0) edge_z.append(z1) + + # Calculate edge mid + edge_weight_x.append((x0+x1)/2) + edge_weight_y.append((y0+y1)/2) + edge_weight_z.append((z0+z1)/2) # Add the Edges to the scatter plot according to their Positions. edge_trace = go.Scatter3d( @@ -78,6 +88,18 @@ def create_3d_graph( hoverinfo="none", ) + # Add the Edgedescriptiontext to the scatter plot according to its Position. + edge_weights_trace = go.Scatter3d( + x=edge_weight_x, + y=edge_weight_y, + z=edge_weight_z, + mode="text", + marker_size=1, + text=[0.45, 0.7, 0.34], + textposition="top center", + hovertemplate="weight: %{text}", + ) + # Getting the Positions from NetworkX and assign it to the variables. for node in graph.nodes(): x, y, z = pos[node] @@ -163,6 +185,14 @@ def create_3d_graph( edge_colors.append("rgb(255,105,180)") edge_trace.line = {"color": edge_colors, "width": edge_thickness} + # Add Relation_Type as a Description for the edges. + if edge_annotation: + edge_type_list = [] + for row in edges: + edge_type_list.append(row["type"]) + + edge_weights_trace.text = edge_type_list + # Return the Plotly Figure - data = [edge_trace, node_trace] + data = [edge_trace,edge_weights_trace, node_trace] return go.Figure(data=data, layout=layout) From c5721362acdcdff7e43dfd17a20dc29e8b0a73b7 Mon Sep 17 00:00:00 2001 From: Tim Date: Sat, 4 Nov 2023 10:31:27 +0100 Subject: [PATCH 21/36] Test Bugs --- .../ui/company_elements.py | 9 +- .../ui/pages/home.py | 82 ++++++------------- .../utils/networkx/network_2d.py | 13 ++- .../utils/networkx/network_3d.py | 2 +- .../utils/networkx/networkx_data.py | 39 ++++++++- 5 files changed, 79 insertions(+), 66 deletions(-) diff --git a/src/aki_prj23_transparenzregister/ui/company_elements.py b/src/aki_prj23_transparenzregister/ui/company_elements.py index 7555e0b..3e7b065 100644 --- a/src/aki_prj23_transparenzregister/ui/company_elements.py +++ b/src/aki_prj23_transparenzregister/ui/company_elements.py @@ -382,16 +382,11 @@ def network_layout(selected_company_id: int) -> html.Div: person_relations, company_relations = find_company_relations(selected_company_id) # Create Edge and Node List from data nodes, edges = create_edge_and_node_list_for_company(company_relations) - # Initialize the Network and receive the Graph and a DataFrame with Metrics - # print(nodes) - # print(edges) - # print(pd.DataFrame(edges)) + # Initialize the Network and receive the Graph and a DataFrame with Metrics if nodes != {}: graph, metrics = initialize_network(nodes=nodes, edges=edges) metric = "None" figure = create_2d_graph(graph, nodes, edges, metrics, metric, layout="Spring", edge_annotation=True, node_annotation=False, edge_thickness=1) - # selected_company_id - # print(company_relations) + return html.Div( children=[dcc.Graph(figure=figure, id="company-graph", className="graph-style")]) - # return networkx_component(selected_company_id) return html.Div([html.H3(f"Leider gibt es keine Verbindungen vom Unternehmen mit ID: {selected_company_id}")]) diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index f7fa2a8..510a9de 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -60,8 +60,6 @@ network = create_3d_graph(graph, nodes, edges, metrics, metric) # Create Edge and Node List from data nodes, edges = create_edge_and_node_list(person_relation, company_relation) # Initialize the Network and receive the Graph and a DataFrame with Metrics -node_count = len(nodes) -edge_count = len(edges) graph, metrics = initialize_network(nodes=nodes, edges=edges) metric = "None" layout = "Spring" @@ -117,30 +115,30 @@ layout = html.Div( className="networkx_style", children=[ html.H1(className="header", children=["Social Graph"]), - html.Div( - className="filter-wrapper", - children=[ - html.Div( - className="filter-wrapper-item", - children=[ - html.H5( - className="filter-description", - children=["Data Source:"], - ), - dcc.Dropdown( - ["Company Data only", "Person Data only", "Company & Person Data"], - "Company Data only", - id="dropdown_data_soruce_filter", - className="dropdown_style", - ), - ], - ), - ], - ), + # html.Div( + # className="filter-wrapper", + # children=[ + # html.Div( + # className="filter-wrapper-item", + # children=[ + # html.H5( + # className="filter-description", + # children=["Data Source:"], + # ), + # dcc.Dropdown( + # ["Company Data only", "Person Data only", "Company & Person Data"], + # "Company Data only", + # id="dropdown_data_soruce_filter", + # className="dropdown_style", + # ), + # ], + # ), + # ], + # ), html.Div( className="filter-wrapper", id= "company_dropdown", - # style="display: inline;", + # style="visibility: hidden;", children=[ html.Div( className="filter-wrapper-item", @@ -159,7 +157,7 @@ layout = html.Div( ), html.Div( className="filter-wrapper-item", - # style="display: None;", + # style="visibility: visible;", children=[ html.H5( className="filter-description", @@ -278,27 +276,6 @@ layout = html.Div( ), ], ), - html.Div( - className="filter-wrapper", - children=[ - html.Div( - className="filter-wrapper-item", - children=[ - html.H5( - className="filter-description", - children=[f"""Number of shown Nodes: {node_count}"""], - ), - ],), - html.Div( - className="filter-wrapper-item", - children=[ - html.H5( - className="filter-description", - children=[f"""Number of shown Edges: {edge_count}"""], - ), - ],), - ], - ), dcc.Graph(figure=network, id="my-graph", className="graph-style"), ], @@ -321,13 +298,9 @@ def update_graph_data( company_relation = filter_relation_type(company_df, company_relation_type) # company_relation = filter_relation_with_more_than_one_connection(company_relation, "id_company_to", "id_company_from") - # print(company_relation) - # print(len(company_relation)) + # Create Edge and Node List from data nodes_tmp, edges_tmp = create_edge_and_node_list(person_relation, company_relation) - node_count = len(nodes_tmp) - edge_count = len(edges_tmp) - # print(edges_tmp) graph, metrics = initialize_network(nodes=nodes_tmp, edges=edges_tmp) return graph, metrics, nodes_tmp, edges_tmp @@ -378,9 +351,6 @@ def update_figure( # print(metrics) # print(graph) graph, metrics, nodes, edges = update_graph_data(person_relation_type= p_relation_filter_value, company_relation_type= c_relation_filter_value) - node_count = len(nodes) - edge_count = len(edges) - if switch_value: return create_2d_graph(graph, nodes, edges, metrics, selected_metric, layout, switch_node_annotaion_value, switch_edge_annotaion_value, slider_value) @@ -414,9 +384,9 @@ def update_Dropdown(datasource_value: str) -> str: style = "" match datasource_value: case "Company Data only": - style = "display: inline" + style = "visibility: visible;" case "Person Data only": - style = "display: none" + style = "visibility: hidden;" case "Company & Person Data": - style = "display: inline" + style = "visibility: visible;" return style \ No newline at end of file diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py b/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py index 21ad91d..d305f3b 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py @@ -154,7 +154,18 @@ def create_2d_graph( showlegend=False, hovermode="closest", margin={"b": 20, "l": 5, "r": 5, "t": 20}, - # annotations=, + annotations=[{ + "showarrow": False, + "text": f"Companies (Blue) & Person (Red) Relation \n node_count: {len(nodes)}, edge_count: {len(edges)}", + "xref": "paper", + "yref": "paper", + "x": 0, + "y": 0.1, + "xanchor": "left", + "yanchor": "bottom", + "font": {"size": 14}, + } + ], xaxis={"showgrid": False, "zeroline": False, "showticklabels": False}, yaxis={"showgrid": False, "zeroline": False, "showticklabels": False}, ), diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py b/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py index e0067ad..e05ebad 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py @@ -147,7 +147,7 @@ def create_3d_graph( annotations=[ { "showarrow": False, - "text": "Companies (Blue) & Person (Red) Relation", + "text": f"Companies (Blue) & Person (Red) Relation \n node_count: {len(nodes)}, edge_count: {len(edges)}", "xref": "paper", "yref": "paper", "x": 0, diff --git a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py index c602009..a85a238 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py @@ -158,6 +158,10 @@ def filter_relation_type( Returns: relation_dataframe (pd.DataFrame): The filtered DataFrame which now only contains entries with the selected Relation Type. """ + print(selected_relation_type) + print(relation_dataframe.loc[ + relation_dataframe["relation_type"] == selected_relation_type + ]) return relation_dataframe.loc[ relation_dataframe["relation_type"] == selected_relation_type ] @@ -356,6 +360,16 @@ def create_edge_and_node_list_for_company( def return_metric_table_df(metrics: pd.DataFrame, nodes: dict, metric: str)-> pd.DataFrame: + """_summary_ + + Args: + metrics (pd.DataFrame): _description_ + nodes (dict): _description_ + metric (str): _description_ + + Returns: + pd.DataFrame: _description_ + """ # tmp = pd.DataFrame(columns=["Platzierung", "company_name", "Umsatz M€"]) tmp_list = [] @@ -375,4 +389,27 @@ def return_metric_table_df(metrics: pd.DataFrame, nodes: dict, metric: str)-> pd tmp_df = tmp_df[["designation", metric, "category"]].head(10) tmp_df.rename(columns={metric: "Metric"}, inplace=True) # print(tmp_df[["designation", metric, "category"]].head(10)) - return tmp_df \ No newline at end of file + return tmp_df + + +def get_all_metrics_from_id(company_id: int)-> pd.DataFrame: + """_summary_ + + Args: + company_id (int): _description_ + + Returns: + pd.DataFrame: _description_ + """ + return pd.DataFrame + +def get_relations_number_from_id(company_id: int)->tuple[int,int,int]: + """_summary_ + + Args: + company_id (int): _description_ + + Returns: + tuple[int,int,int]: _description_ + """ + return (1,2,3) \ No newline at end of file From 31d7098d48500bedc4982f5dc816979c1d072ae7 Mon Sep 17 00:00:00 2001 From: Tim Date: Sat, 4 Nov 2023 12:00:23 +0100 Subject: [PATCH 22/36] Checkpoint commit --- .../ui/{ => archive}/networkx_dash.py | 0 .../ui/{ => archive}/ui_elements.py | 2 +- .../ui/company_elements.py | 1 - .../ui/pages/home.py | 59 ++++++++----------- .../utils/networkx/network_2d.py | 6 +- .../utils/networkx/network_3d.py | 2 +- .../utils/networkx/networkx_data.py | 5 +- tests/ui/home_page_test.py | 8 +-- 8 files changed, 33 insertions(+), 50 deletions(-) rename src/aki_prj23_transparenzregister/ui/{ => archive}/networkx_dash.py (100%) rename src/aki_prj23_transparenzregister/ui/{ => archive}/ui_elements.py (99%) diff --git a/src/aki_prj23_transparenzregister/ui/networkx_dash.py b/src/aki_prj23_transparenzregister/ui/archive/networkx_dash.py similarity index 100% rename from src/aki_prj23_transparenzregister/ui/networkx_dash.py rename to src/aki_prj23_transparenzregister/ui/archive/networkx_dash.py diff --git a/src/aki_prj23_transparenzregister/ui/ui_elements.py b/src/aki_prj23_transparenzregister/ui/archive/ui_elements.py similarity index 99% rename from src/aki_prj23_transparenzregister/ui/ui_elements.py rename to src/aki_prj23_transparenzregister/ui/archive/ui_elements.py index 39dcf93..c432e8a 100644 --- a/src/aki_prj23_transparenzregister/ui/ui_elements.py +++ b/src/aki_prj23_transparenzregister/ui/archive/ui_elements.py @@ -8,7 +8,7 @@ from sqlalchemy.engine import Engine from sqlalchemy.orm import Session from aki_prj23_transparenzregister.utils.sql import entities -from aki_prj23_transparenzregister.ui.networkx_dash import networkx_component +from aki_prj23_transparenzregister.ui.archive.networkx_dash import networkx_component COLORS = { "light": "#edefef", diff --git a/src/aki_prj23_transparenzregister/ui/company_elements.py b/src/aki_prj23_transparenzregister/ui/company_elements.py index 3e7b065..647805c 100644 --- a/src/aki_prj23_transparenzregister/ui/company_elements.py +++ b/src/aki_prj23_transparenzregister/ui/company_elements.py @@ -10,7 +10,6 @@ from dash import dash_table, dcc, html from sqlalchemy.orm import Session from aki_prj23_transparenzregister.ui import data_elements, finance_elements -from aki_prj23_transparenzregister.ui.networkx_dash import networkx_component from aki_prj23_transparenzregister.utils.networkx.network_2d import create_2d_graph from aki_prj23_transparenzregister.utils.networkx.network_base import initialize_network from aki_prj23_transparenzregister.utils.networkx.networkx_data import ( diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index 510a9de..1aa661b 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -27,6 +27,7 @@ from aki_prj23_transparenzregister.utils.networkx.networkx_data import ( return_metric_table_df ) +dash.register_page(__name__, path="/") # Get Data person_relation = filter_relation_type( @@ -63,19 +64,16 @@ nodes, edges = create_edge_and_node_list(person_relation, company_relation) graph, metrics = initialize_network(nodes=nodes, edges=edges) metric = "None" layout = "Spring" -switch_node_annotaion_value = False +# switch_node_annotaion_value = False switch_edge_annotaion_value = False egde_thickness = 1 -network = create_3d_graph(graph, nodes, edges, metrics, metric, layout, switch_node_annotaion_value, switch_edge_annotaion_value, egde_thickness) +network = create_3d_graph(graph, nodes, edges, metrics, metric, layout, switch_edge_annotaion_value, egde_thickness) # Get the possible Filter values for the Dropdowns. -company_relation_type_filter = get_all_person_relations()["relation_type"].unique() -person_relation_type_filter = get_all_company_relations()["relation_type"].unique() - +person_relation_type_filter = get_all_person_relations()["relation_type"].unique() +company_relation_type_filter = get_all_company_relations()["relation_type"].unique() top_companies_df = return_metric_table_df(metrics, nodes, "closeness") #find_top_companies() -# with open("src/aki_prj23_transparenzregister/ui/assets/network_graph.html") as file: -# html_content = file.read() layout = html.Div( children=html.Div( @@ -248,19 +246,19 @@ layout = html.Div( ), ], ), - html.Div( - className="filter-wrapper-item", - children=[ - html.H5( - className="filter-description", - children=["Enable Node Annotation"], - ), - html.Div( - className="switch-style", - children=[daq.BooleanSwitch(id="switch_node_annotation", on=False)], - ), - ], - ), + # html.Div( + # className="filter-wrapper-item", + # children=[ + # html.H5( + # className="filter-description", + # children=["Enable Node Annotation"], + # ), + # html.Div( + # className="switch-style", + # children=[daq.BooleanSwitch(id="switch_node_annotation", on=False)], + # ), + # ], + # ), html.Div( className="filter-wrapper-item", children=[ @@ -292,7 +290,6 @@ def update_graph_data( # Get Data person_df = get_all_person_relations() company_df = get_all_company_relations() - # print(company_df) person_relation = filter_relation_type(person_df, person_relation_type) company_relation = filter_relation_type(company_df, company_relation_type) @@ -311,7 +308,7 @@ def update_graph_data( [ Input("dropdown", "value"), Input("switch", "on"), - Input("switch_node_annotation", "on"), + # Input("switch_node_annotation", "on"), Input("switch_edge_annotation", "on"), Input("dropdown_company_relation_filter", "value"), Input("dropdown_person_relation_filter", "value"), @@ -325,7 +322,7 @@ def update_graph_data( def update_figure( selected_metric: str, switch_value: bool, - switch_node_annotaion_value: bool, + # switch_node_annotaion_value: bool, switch_edge_annotaion_value: bool, c_relation_filter_value: str, p_relation_filter_value: str, @@ -344,18 +341,13 @@ def update_figure( Network Graph(Plotly Figure): Plotly Figure in 3 or 2D """ _ = c_relation_filter_value, p_relation_filter_value - # triggered_id = ctx.triggered_id - # if triggered_id == 'dropdown_companyrelation_filter' or triggered_id == 'dropdown_personrelation_filter': - # print(selected_value) - # print(metrics) - # print(graph) - graph, metrics, nodes, edges = update_graph_data(person_relation_type= p_relation_filter_value, company_relation_type= c_relation_filter_value) + graph, metrics, nodes, edges = update_graph_data(person_relation_type= p_relation_filter_value, company_relation_type= c_relation_filter_value) if switch_value: - return create_2d_graph(graph, nodes, edges, metrics, selected_metric, layout, switch_node_annotaion_value, switch_edge_annotaion_value, slider_value) + return create_2d_graph(graph, nodes, edges, metrics, selected_metric, layout, switch_edge_annotaion_value, slider_value) else: - return create_3d_graph(graph, nodes, edges, metrics, selected_metric, layout, switch_node_annotaion_value, switch_edge_annotaion_value, slider_value) + return create_3d_graph(graph, nodes, edges, metrics, selected_metric, layout, switch_edge_annotaion_value, slider_value) @callback( @@ -367,10 +359,7 @@ def update_figure( def update_table(metric_dropdown_value: str) -> dict: table_df = return_metric_table_df(metrics, nodes, metric_dropdown_value) table_df.to_dict("records") - # print(table_df.to_dict("records")) - columns =[{"name": i, "id": i} for i in table_df.columns] - # print(columns) - + columns =[{"name": i, "id": i} for i in table_df.columns] return table_df.to_dict("records") diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py b/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py index d305f3b..fdf959b 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py @@ -6,7 +6,7 @@ import plotly.graph_objects as go def create_2d_graph( - graph: nx.Graph, nodes: dict, edges: list, metrics: pd.DataFrame, metric: str | None, layout: str, node_annotation: bool, edge_annotation: bool, edge_thickness: int + graph: nx.Graph, nodes: dict, edges: list, metrics: pd.DataFrame, metric: str | None, layout: str, edge_annotation: bool, edge_thickness: int ) -> go.Figure: """This Method creates a 2d Network in Plotly with a Scatter Graph and retuns it. @@ -141,9 +141,7 @@ def create_2d_graph( edge_weights_trace.text = edge_type_list # print(edge_type_list) - if node_annotation: - print("Test") - # node_trace.text = nodes. + # Return the Plotly Figure return go.Figure( diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py b/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py index e05ebad..4b195c1 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py @@ -6,7 +6,7 @@ import plotly.graph_objects as go def create_3d_graph( - graph: nx.Graph, nodes: dict, edges: list, metrics: pd.DataFrame, metric: str | None, layout: str, node_annotation: bool, edge_annotation: bool, edge_thickness: int + graph: nx.Graph, nodes: dict, edges: list, metrics: pd.DataFrame, metric: str | None, layout: str, edge_annotation: bool, edge_thickness: int ) -> go.Figure: """This Method creates a 3D Network in Plotly with a Scatter Graph and retuns it. diff --git a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py index a85a238..adcc720 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py @@ -158,10 +158,7 @@ def filter_relation_type( Returns: relation_dataframe (pd.DataFrame): The filtered DataFrame which now only contains entries with the selected Relation Type. """ - print(selected_relation_type) - print(relation_dataframe.loc[ - relation_dataframe["relation_type"] == selected_relation_type - ]) + return relation_dataframe.loc[ relation_dataframe["relation_type"] == selected_relation_type ] diff --git a/tests/ui/home_page_test.py b/tests/ui/home_page_test.py index ce75cdd..1bb3bb3 100644 --- a/tests/ui/home_page_test.py +++ b/tests/ui/home_page_test.py @@ -1,7 +1,7 @@ """Test for the Home Page.""" -# from aki_prj23_transparenzregister.ui.pages.home import networkx_dash +from aki_prj23_transparenzregister.ui.pages import home -# def networkGraph(Edges: None) -> None: -# """Checks if an import co company_stats_dash can be made.""" -# assert networkx_dash is not None +def test_import() -> None: + """Checks if an import co company_stats_dash can be made.""" + assert home is not None From 152743597e4091effd170f9efbcb9e23d75bc657 Mon Sep 17 00:00:00 2001 From: Tim Date: Sat, 4 Nov 2023 13:23:31 +0100 Subject: [PATCH 23/36] Bug fixes --- .../ui/pages/home.py | 185 +++++++++++------- .../utils/networkx/network_2d.py | 67 ++++--- .../utils/networkx/network_3d.py | 42 ++-- .../utils/networkx/network_base.py | 6 +- .../utils/networkx/networkx_data.py | 67 ++----- 5 files changed, 208 insertions(+), 159 deletions(-) diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index 1aa661b..ca00310 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -1,11 +1,10 @@ """Content of home page.""" -from functools import lru_cache import dash import dash_daq as daq import networkx as nx import pandas as pd import plotly.graph_objects as go -from dash import Input, Output, callback, dash_table, dcc, html, ctx +from dash import Input, Output, callback, dash_table, dcc, html from aki_prj23_transparenzregister.utils.networkx.network_2d import ( create_2d_graph, @@ -21,18 +20,14 @@ from aki_prj23_transparenzregister.utils.networkx.networkx_data import ( create_edge_and_node_list, filter_relation_type, filter_relation_with_more_than_one_connection, - find_top_companies, get_all_company_relations, get_all_person_relations, - return_metric_table_df ) dash.register_page(__name__, path="/") # Get Data -person_relation = filter_relation_type( - get_all_person_relations(), "HAFTENDER_GESELLSCHAFTER" -) +person_relation = filter_relation_type(get_all_person_relations(), "NACHFOLGER") company_relation = filter_relation_with_more_than_one_connection( get_all_company_relations(), "id_company_to", "id_company_from" ) @@ -67,13 +62,33 @@ layout = "Spring" # switch_node_annotaion_value = False switch_edge_annotaion_value = False egde_thickness = 1 -network = create_3d_graph(graph, nodes, edges, metrics, metric, layout, switch_edge_annotaion_value, egde_thickness) +network = create_3d_graph( + graph, + nodes, + edges, + metrics, + metric, + layout, + switch_edge_annotaion_value, + egde_thickness, +) # Get the possible Filter values for the Dropdowns. person_relation_type_filter = get_all_person_relations()["relation_type"].unique() company_relation_type_filter = get_all_company_relations()["relation_type"].unique() -top_companies_df = return_metric_table_df(metrics, nodes, "closeness") #find_top_companies() + +def update_table( + metric_dropdown_value: str, metrics: pd.DataFrame +) -> tuple[dict, list]: + table_df = metrics.sort_values(metric_dropdown_value, ascending=False).head(10) + table_df = table_df[["designation", "category", metric_dropdown_value]] + table_df.to_dict("records") + columns = [{"name": i, "id": i} for i in table_df.columns] + return table_df.to_dict("records"), columns # type: ignore + + +top_companies_dict, top_companies_columns = update_table("closeness", metrics) layout = html.Div( children=html.Div( @@ -81,30 +96,32 @@ layout = html.Div( html.Div( className="top_companytable_style", children=[ - html.H1(title="Top Ten Nodes in Graph by Metric", style={"align": "mid"}), + html.H1( + title="Top Ten Nodes in Graph by Metric", style={"align": "mid"} + ), html.Div( - className="filter-wrapper-item", - children=[ - html.H5( - className="filter-description", - children=["Filter Metric:"], - ), - dcc.Dropdown( - [ - "eigenvector", - "degree", - "betweeness", - "closeness", - ], - "closeness", - id="dropdown_table_metric", - className="dropdown_style", - ), - ], + className="filter-wrapper-item", + children=[ + html.H5( + className="filter-description", + children=["Filter Metric:"], ), - dash_table.DataTable( - top_companies_df.to_dict("records"), - [{"name": i, "id": i} for i in top_companies_df.columns], + dcc.Dropdown( + [ + "eigenvector", + "degree", + "betweenness", + "closeness", + ], + "closeness", + id="dropdown_table_metric", + className="dropdown_style", + ), + ], + ), + dash_table.DataTable( + top_companies_dict, + top_companies_columns, id="metric_table", ), ], @@ -135,7 +152,7 @@ layout = html.Div( # ), html.Div( className="filter-wrapper", - id= "company_dropdown", + id="company_dropdown", # style="visibility: hidden;", children=[ html.Div( @@ -181,7 +198,7 @@ layout = html.Div( "None", "eigenvector", "degree", - "betweeness", + "betweenness", "closeness", ], "None", @@ -219,15 +236,19 @@ layout = html.Div( html.Div( className="filter-wrapper-item", children=[ - html.H5( - className="filter-description", - children=["Adjust Edge Thickness"], - ), - dcc.Slider( 1, 4, 1, + html.H5( + className="filter-description", + children=["Adjust Edge Thickness"], + ), + dcc.Slider( + 1, + 4, + 1, value=1, - id='slider', - ), - ],), + id="slider", + ), + ], + ), ], ), html.Div( @@ -242,7 +263,9 @@ layout = html.Div( ), html.Div( className="switch-style", - children=[daq.BooleanSwitch(id="switch", on=False)], + children=[ + daq.BooleanSwitch(id="switch", on=False) + ], ), ], ), @@ -268,13 +291,16 @@ layout = html.Div( ), html.Div( className="switch-style", - children=[daq.BooleanSwitch(id="switch_edge_annotation", on=False)], + children=[ + daq.BooleanSwitch( + id="switch_edge_annotation", on=False + ) + ], ), ], ), ], ), - dcc.Graph(figure=network, id="my-graph", className="graph-style"), ], ), @@ -282,11 +308,12 @@ layout = html.Div( ) ) + # @lru_cache(200) def update_graph_data( person_relation_type: str = "HAFTENDER_GESELLSCHAFTER", company_relation_type: str = "GESCHAEFTSFUEHRER", -) -> tuple[nx.Graph, pd.DataFrame]: +) -> tuple[nx.Graph, pd.DataFrame, dict, list]: # Get Data person_df = get_all_person_relations() company_df = get_all_company_relations() @@ -304,7 +331,11 @@ def update_graph_data( @callback( - Output("my-graph", "figure"), + [ + Output("metric_table", "data"), + Output("metric_table", "columns"), + Output("my-graph", "figure"), + ], [ Input("dropdown", "value"), Input("switch", "on"), @@ -313,7 +344,8 @@ def update_graph_data( Input("dropdown_company_relation_filter", "value"), Input("dropdown_person_relation_filter", "value"), Input("dropdown_layout", "value"), - Input('slider', 'value') + Input("slider", "value"), + Input("dropdown_table_metric", "value"), ], prevent_initial_call=True, allow_duplicate=True, @@ -327,7 +359,8 @@ def update_figure( c_relation_filter_value: str, p_relation_filter_value: str, layout: str, - slider_value: float + slider_value: float, + metric_dropdown_value: str, ) -> go.Figure: """In this Callback the Value of the Dropdown is used to filter the Data. In Addition it takes the filter for the Graph metrics and creates a new graph, or switches between 3D and 2D. @@ -342,33 +375,51 @@ def update_figure( """ _ = c_relation_filter_value, p_relation_filter_value - graph, metrics, nodes, edges = update_graph_data(person_relation_type= p_relation_filter_value, company_relation_type= c_relation_filter_value) + graph, metrics, nodes, edges = update_graph_data( + person_relation_type=p_relation_filter_value, + company_relation_type=c_relation_filter_value, + ) + + table_dict, table_columns = update_table(metric_dropdown_value, metrics) if switch_value: - return create_2d_graph(graph, nodes, edges, metrics, selected_metric, layout, switch_edge_annotaion_value, slider_value) + return ( + table_dict, + table_columns, + create_2d_graph( + graph, + nodes, + edges, + metrics, + selected_metric, + layout, + switch_edge_annotaion_value, + slider_value,# type: ignore + ), + ) else: - return create_3d_graph(graph, nodes, edges, metrics, selected_metric, layout, switch_edge_annotaion_value, slider_value) + return ( + table_dict, + table_columns, + create_3d_graph( + graph, + nodes, + edges, + metrics, + selected_metric, + layout, + switch_edge_annotaion_value, + slider_value, # type: ignore + ), + ) @callback( - Output("metric_table", "data"), + Output("company_dropdown", "style"), [ - Input("dropdown_table_metric", "value"), + Input("dropdown_data_soruce_filter", "value"), ], ) -def update_table(metric_dropdown_value: str) -> dict: - table_df = return_metric_table_df(metrics, nodes, metric_dropdown_value) - table_df.to_dict("records") - columns =[{"name": i, "id": i} for i in table_df.columns] - return table_df.to_dict("records") - - -@callback( -Output("company_dropdown", "style"), -[ - Input("dropdown_data_soruce_filter", "value"), -], -) def update_Dropdown(datasource_value: str) -> str: style = "" match datasource_value: @@ -378,4 +429,4 @@ def update_Dropdown(datasource_value: str) -> str: style = "visibility: hidden;" case "Company & Person Data": style = "visibility: visible;" - return style \ No newline at end of file + return style diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py b/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py index fdf959b..15f3af2 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py @@ -6,7 +6,14 @@ import plotly.graph_objects as go def create_2d_graph( - graph: nx.Graph, nodes: dict, edges: list, metrics: pd.DataFrame, metric: str | None, layout: str, edge_annotation: bool, edge_thickness: int + graph: nx.Graph, + nodes: dict, + edges: list, + metrics: pd.DataFrame, + metric: str | None, + layout: str, + edge_annotation: bool, + edge_thickness: int, ) -> go.Figure: """This Method creates a 2d Network in Plotly with a Scatter Graph and retuns it. @@ -20,7 +27,7 @@ def create_2d_graph( Returns: _type_: Plotly Figure """ - # Set 2D Layout + # Set 2D Layout pos = nx.spring_layout(graph) match layout: case "Spring": @@ -66,8 +73,8 @@ def create_2d_graph( edge_y.append(y1) # edge_y.append(None) - edge_weight_x.append(((x1 + x0) / 2)) - edge_weight_y.append(((y1 + y0) / 2)) + edge_weight_x.append((x1 + x0) / 2) + edge_weight_y.append((y1 + y0) / 2) # edge_weight_y.append(None) # Add the Edges to the scatter plot according to their Positions. edge_trace = go.Scatter( @@ -115,16 +122,22 @@ def create_2d_graph( }, ) - # Set Color by using the nodes DataFrame with its Color Attribute. The sequence matters! + # # Set Color by using the nodes DataFrame with its Color Attribute. The sequence matters! colors = list(nx.get_node_attributes(graph, "color").values()) - # Get the Node Text - node_names = [] - for key, value in nodes.items(): - if "name" in value: - node_names.append(value["name"]) - else: - node_names.append(value["firstname"] + " " + value["lastname"]) - # Add Color and Names to the Scatter Plot. + node_names = list(nx.get_node_attributes(graph, "name").values()) + # ids = list(nx.get_node_attributes(graph, "id").values()) + # print(ids) + + # # Get the Node Text + # node_names = [] + # for key, value in nodes.items(): + # if "name" in value: + # node_names.append(value["name"]) + # else: + # node_names.append(value["firstname"] + " " + value["lastname"]) + # # Add Color and Names to the Scatter Plot. + # print(colors) + # print(node_names) node_trace.marker.color = colors node_trace.text = node_names @@ -139,9 +152,6 @@ def create_2d_graph( edge_type_list.append(row["type"]) edge_weights_trace.text = edge_type_list - # print(edge_type_list) - - # Return the Plotly Figure return go.Figure( @@ -152,18 +162,19 @@ def create_2d_graph( showlegend=False, hovermode="closest", margin={"b": 20, "l": 5, "r": 5, "t": 20}, - annotations=[{ - "showarrow": False, - "text": f"Companies (Blue) & Person (Red) Relation \n node_count: {len(nodes)}, edge_count: {len(edges)}", - "xref": "paper", - "yref": "paper", - "x": 0, - "y": 0.1, - "xanchor": "left", - "yanchor": "bottom", - "font": {"size": 14}, - } - ], + annotations=[ + { + "showarrow": False, + "text": f"Companies (Red) & Person (Blue) Relation \n node_count: {len(nodes)}, edge_count: {len(edges)}", + "xref": "paper", + "yref": "paper", + "x": 0, + "y": 0.1, + "xanchor": "left", + "yanchor": "bottom", + "font": {"size": 14}, + } + ], xaxis={"showgrid": False, "zeroline": False, "showticklabels": False}, yaxis={"showgrid": False, "zeroline": False, "showticklabels": False}, ), diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py b/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py index 4b195c1..329056e 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py @@ -6,7 +6,14 @@ import plotly.graph_objects as go def create_3d_graph( - graph: nx.Graph, nodes: dict, edges: list, metrics: pd.DataFrame, metric: str | None, layout: str, edge_annotation: bool, edge_thickness: int + graph: nx.Graph, + nodes: dict, + edges: list, + metrics: pd.DataFrame, + metric: str | None, + layout: str, + edge_annotation: bool, + edge_thickness: int, ) -> go.Figure: """This Method creates a 3D Network in Plotly with a Scatter Graph and retuns it. @@ -26,7 +33,7 @@ def create_3d_graph( case "Spring": pos = nx.spring_layout(graph, dim=3) # case "Bipartite": - # pos = nx.bipartite_layout(graph, dim=3) + # pos = nx.bipartite_layout(graph, dim=3) case "Circular": pos = nx.circular_layout(graph, dim=3) case "Kamada Kawai": @@ -72,11 +79,11 @@ def create_3d_graph( edge_z.append(z0) edge_z.append(z1) - + # Calculate edge mid - edge_weight_x.append((x0+x1)/2) - edge_weight_y.append((y0+y1)/2) - edge_weight_z.append((z0+z1)/2) + edge_weight_x.append((x0 + x1) / 2) + edge_weight_y.append((y0 + y1) / 2) + edge_weight_z.append((z0 + z1) / 2) # Add the Edges to the scatter plot according to their Positions. edge_trace = go.Scatter3d( @@ -147,7 +154,7 @@ def create_3d_graph( annotations=[ { "showarrow": False, - "text": f"Companies (Blue) & Person (Red) Relation \n node_count: {len(nodes)}, edge_count: {len(edges)}", + "text": f"Companies (Red) & Person (Blue) Relation \n node_count: {len(nodes)}, edge_count: {len(edges)}", "xref": "paper", "yref": "paper", "x": 0, @@ -161,13 +168,14 @@ def create_3d_graph( # Set Color by using the nodes DataFrame with its Color Attribute. The sequence matters! colors = list(nx.get_node_attributes(graph, "color").values()) - - node_names = [] - for key, value in nodes.items(): - if "name" in value: - node_names.append(value["name"]) - else: - node_names.append(value["firstname"] + " " + value["lastname"]) + node_names = list(nx.get_node_attributes(graph, "name").values()) + # node_names = [] + # for key, value in nodes.items(): + # if "name" in value: + # node_names.append(value["name"]) + # else: + # node_names.append(value["firstname"] + " " + value["lastname"]) + # Add Color and Names to the Scatter Plot. # Add Color and Names to the Scatter Plot. node_trace.marker.color = colors node_trace.text = node_names @@ -193,6 +201,10 @@ def create_3d_graph( edge_weights_trace.text = edge_type_list + # Set Color by using the nodes DataFrame with its Color Attribute. The sequence matters! + colors = list(nx.get_node_attributes(graph, "color").values()) + node_trace.marker.color = colors + # Return the Plotly Figure - data = [edge_trace,edge_weights_trace, node_trace] + data = [edge_trace, edge_weights_trace, node_trace] return go.Figure(data=data, layout=layout) diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_base.py b/src/aki_prj23_transparenzregister/utils/networkx/network_base.py index 37c2ec5..4e86eb6 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_base.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_base.py @@ -25,12 +25,14 @@ def initialize_network(edges: list, nodes: dict) -> tuple[nx.Graph, pd.DataFrame # Create a DataFrame with all Metrics metrics = pd.DataFrame( - columns=["degree", "eigenvector", "betweeness", "closeness", "pagerank"] + columns=["degree", "eigenvector", "betweenness", "closeness", "pagerank"] ) metrics["eigenvector"] = nx.eigenvector_centrality(graph).values() metrics["degree"] = nx.degree_centrality(graph).values() - metrics["betweeness"] = nx.betweenness_centrality(graph).values() + metrics["betweenness"] = nx.betweenness_centrality(graph).values() metrics["closeness"] = nx.closeness_centrality(graph).values() metrics["pagerank"] = nx.pagerank(graph).values() + metrics["category"] = nx.get_node_attributes(graph, "type").values() + metrics["designation"] = nx.get_node_attributes(graph, "name").values() return graph, metrics diff --git a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py index adcc720..67b7f26 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py @@ -1,6 +1,5 @@ """Module to receive and filter Data for working with NetworkX.""" import pandas as pd -from loguru import logger from sqlalchemy.orm import aliased from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider @@ -97,7 +96,7 @@ def get_all_company_relations() -> pd.DataFrame: ) ) str(relations_company_query) - company_relations = pd.read_sql_query(str(relations_company_query), session.bind) # type: ignore + company_relations = pd.read_sql_query(str(relations_company_query), session.bind) # type: ignore company_relations["id_company_from"] = company_relations["id_company_from"].apply( lambda x: f"c_{x}" @@ -134,7 +133,7 @@ def get_all_person_relations() -> pd.DataFrame: entities.PersonRelation.person_id == entities.Person.id, ) ) - person_relations = pd.read_sql_query(str(relations_person_query), session.bind) # type: ignore + person_relations = pd.read_sql_query(str(relations_person_query), session.bind) # type: ignore person_relations["id_company"] = person_relations["id_company"].apply( lambda x: f"c_{x}" @@ -158,7 +157,6 @@ def filter_relation_type( Returns: relation_dataframe (pd.DataFrame): The filtered DataFrame which now only contains entries with the selected Relation Type. """ - return relation_dataframe.loc[ relation_dataframe["relation_type"] == selected_relation_type ] @@ -191,7 +189,7 @@ def filter_relation_with_more_than_one_connection( if count > 1: # tmp_df = pd.concat([tmp_df, pd.DataFrame(row)])+ - tmp_df.loc[len(tmp_df)] = row + tmp_df.loc[len(tmp_df)] = row # type: ignore count = 0 else: count = 0 @@ -225,14 +223,15 @@ def create_edge_and_node_list( "id": row["id_company"], "name": row["name_company"], "color": COLOR_COMPANY, + "type": "company", } if node := nodes.get(row["id_person"]) is None: nodes[row["id_person"]] = { "id": row["id_person"], - "firstname": row["firstname"], - "lastname": row["lastname"], + "name": str(row["firstname"]) + " " + str(row["lastname"]), "date_of_birth": row["date_of_birth"], "color": COLOR_PERSON, + "type": "person", } edges.append( { @@ -248,12 +247,14 @@ def create_edge_and_node_list( "id": row["id_company_from"], "name": row["name_company_from"], "color": COLOR_COMPANY, + "type": "company", } if node := nodes.get(row["id_company_to"]) is None: nodes[row["id_company_to"]] = { "id": row["id_company_to"], "name": row["name_company_to"], "color": COLOR_COMPANY, + "type": "company", } edges.append( { @@ -262,12 +263,13 @@ def create_edge_and_node_list( "type": row["relation_type"], } ) + return nodes, edges def find_company_relations( selected_company_id: int, -) -> tuple[pd.DataFrame, pd.DataFrame()]: +) -> tuple[pd.DataFrame, pd.DataFrame]: relations_company_query = ( session.query( to_company.id.label("id_company_to"), @@ -284,7 +286,10 @@ def find_company_relations( from_company, entities.CompanyRelation.company2_id == from_company.id, ) - .filter((from_company.id == selected_company_id) | (to_company.id == selected_company_id)) + .filter( + (from_company.id == selected_company_id) + | (to_company.id == selected_company_id) + ) ) company_relations = pd.DataFrame(relations_company_query.all()) # logger.debug(str(relations_company_query)) @@ -305,7 +310,7 @@ def find_company_relations( "id_company_from", ], ) - + company_relations["id_company_from"] = company_relations["id_company_from"].apply( lambda x: f"c_{x}" ) @@ -356,40 +361,7 @@ def create_edge_and_node_list_for_company( return nodes, edges -def return_metric_table_df(metrics: pd.DataFrame, nodes: dict, metric: str)-> pd.DataFrame: - """_summary_ - - Args: - metrics (pd.DataFrame): _description_ - nodes (dict): _description_ - metric (str): _description_ - - Returns: - pd.DataFrame: _description_ - """ - # tmp = pd.DataFrame(columns=["Platzierung", "company_name", "Umsatz M€"]) - - tmp_list = [] - category = [] - for key, values in nodes.items(): - # print(values["id"]) - - if str(values["id"]).split("_")[0] == "c": - tmp_list.append(values["name"]) - category.append("company") - if str(values["id"]).split("_")[0] == "p": - tmp_list.append(str(values["firstname"]) + " " + str(values["lastname"])) - category.append("person") - metrics["designation"] = tmp_list - metrics["category"] = category - tmp_df = metrics.sort_values(metric, ascending=False) - tmp_df = tmp_df[["designation", metric, "category"]].head(10) - tmp_df.rename(columns={metric: "Metric"}, inplace=True) - # print(tmp_df[["designation", metric, "category"]].head(10)) - return tmp_df - - -def get_all_metrics_from_id(company_id: int)-> pd.DataFrame: +def get_all_metrics_from_id(company_id: int) -> pd.DataFrame: """_summary_ Args: @@ -398,9 +370,10 @@ def get_all_metrics_from_id(company_id: int)-> pd.DataFrame: Returns: pd.DataFrame: _description_ """ - return pd.DataFrame + return pd.DataFrame() -def get_relations_number_from_id(company_id: int)->tuple[int,int,int]: + +def get_relations_number_from_id(company_id: int) -> tuple[int, int, int]: """_summary_ Args: @@ -409,4 +382,4 @@ def get_relations_number_from_id(company_id: int)->tuple[int,int,int]: Returns: tuple[int,int,int]: _description_ """ - return (1,2,3) \ No newline at end of file + return (1, 2, 3) From 5b7f82a983c820cec4e312b128c00978b14a0561 Mon Sep 17 00:00:00 2001 From: Tim Date: Sat, 4 Nov 2023 13:23:40 +0100 Subject: [PATCH 24/36] Bug fixes v2 --- .../ui/pages/home.py | 32 +++++++++++++++++-- .../utils/networkx/networkx_data.py | 4 +-- 2 files changed, 31 insertions(+), 5 deletions(-) diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index ca00310..7b45335 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -81,11 +81,20 @@ company_relation_type_filter = get_all_company_relations()["relation_type"].uniq def update_table( metric_dropdown_value: str, metrics: pd.DataFrame ) -> tuple[dict, list]: + """_summary_. + + Args: + metric_dropdown_value (str): _description_ + metrics (pd.DataFrame): _description_ + + Returns: + tuple[dict, list]: _description_ + """ table_df = metrics.sort_values(metric_dropdown_value, ascending=False).head(10) table_df = table_df[["designation", "category", metric_dropdown_value]] table_df.to_dict("records") columns = [{"name": i, "id": i} for i in table_df.columns] - return table_df.to_dict("records"), columns # type: ignore + return table_df.to_dict("records"), columns # type: ignore top_companies_dict, top_companies_columns = update_table("closeness", metrics) @@ -314,6 +323,15 @@ def update_graph_data( person_relation_type: str = "HAFTENDER_GESELLSCHAFTER", company_relation_type: str = "GESCHAEFTSFUEHRER", ) -> tuple[nx.Graph, pd.DataFrame, dict, list]: + """_summary_. + + Args: + person_relation_type (str, optional): _description_. Defaults to "HAFTENDER_GESELLSCHAFTER". + company_relation_type (str, optional): _description_. Defaults to "GESCHAEFTSFUEHRER". + + Returns: + tuple[nx.Graph, pd.DataFrame, dict, list]: _description_ + """ # Get Data person_df = get_all_person_relations() company_df = get_all_company_relations() @@ -394,7 +412,7 @@ def update_figure( selected_metric, layout, switch_edge_annotaion_value, - slider_value,# type: ignore + slider_value, # type: ignore ), ) else: @@ -409,7 +427,7 @@ def update_figure( selected_metric, layout, switch_edge_annotaion_value, - slider_value, # type: ignore + slider_value, # type: ignore ), ) @@ -421,6 +439,14 @@ def update_figure( ], ) def update_Dropdown(datasource_value: str) -> str: + """_summary_. + + Args: + datasource_value (str): _description_ + + Returns: + str: _description_ + """ style = "" match datasource_value: case "Company Data only": diff --git a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py index 67b7f26..9322992 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py @@ -189,7 +189,7 @@ def filter_relation_with_more_than_one_connection( if count > 1: # tmp_df = pd.concat([tmp_df, pd.DataFrame(row)])+ - tmp_df.loc[len(tmp_df)] = row # type: ignore + tmp_df.loc[len(tmp_df)] = row # type: ignore count = 0 else: count = 0 @@ -269,7 +269,7 @@ def create_edge_and_node_list( def find_company_relations( selected_company_id: int, -) -> tuple[pd.DataFrame, pd.DataFrame]: +) -> tuple[pd.DataFrame, pd.DataFrame]: relations_company_query = ( session.query( to_company.id.label("id_company_to"), From 76af89ff32ca95126156f7474855bb6299ef41c3 Mon Sep 17 00:00:00 2001 From: Tim Date: Sat, 4 Nov 2023 13:33:17 +0100 Subject: [PATCH 25/36] updated poetry lock --- poetry.lock | 604 +++++++++++++++++++++++----------------------------- 1 file changed, 261 insertions(+), 343 deletions(-) diff --git a/poetry.lock b/poetry.lock index bd62375..180bbb2 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1,4 +1,4 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. +# This file is automatically @generated by Poetry 1.5.1 and should not be changed by hand. [[package]] name = "accelerate" @@ -684,22 +684,20 @@ cron = ["capturer (>=2.4)"] [[package]] name = "comm" -version = "0.1.4" +version = "0.2.0" description = "Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc." optional = false -python-versions = ">=3.6" +python-versions = ">=3.8" files = [ - {file = "comm-0.1.4-py3-none-any.whl", hash = "sha256:6d52794cba11b36ed9860999cd10fd02d6b2eac177068fdd585e1e2f8a96e67a"}, - {file = "comm-0.1.4.tar.gz", hash = "sha256:354e40a59c9dd6db50c5cc6b4acc887d82e9603787f83b68c01a80a923984d15"}, + {file = "comm-0.2.0-py3-none-any.whl", hash = "sha256:2da8d9ebb8dd7bfc247adaff99f24dce705638a8042b85cb995066793e391001"}, + {file = "comm-0.2.0.tar.gz", hash = "sha256:a517ea2ca28931c7007a7a99c562a0fa5883cfb48963140cf642c41c948498be"}, ] [package.dependencies] traitlets = ">=4" [package.extras] -lint = ["black (>=22.6.0)", "mdformat (>0.7)", "mdformat-gfm (>=0.3.5)", "ruff (>=0.0.156)"] test = ["pytest"] -typing = ["mypy (>=0.990)"] [[package]] name = "confection" @@ -718,136 +716,66 @@ srsly = ">=2.4.0,<3.0.0" [[package]] name = "contourpy" -version = "1.1.0" +version = "1.2.0" description = "Python library for calculating contours of 2D quadrilateral grids" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "contourpy-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:89f06eff3ce2f4b3eb24c1055a26981bffe4e7264acd86f15b97e40530b794bc"}, - {file = "contourpy-1.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:dffcc2ddec1782dd2f2ce1ef16f070861af4fb78c69862ce0aab801495dda6a3"}, - {file = "contourpy-1.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:25ae46595e22f93592d39a7eac3d638cda552c3e1160255258b695f7b58e5655"}, - {file = "contourpy-1.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:17cfaf5ec9862bc93af1ec1f302457371c34e688fbd381f4035a06cd47324f48"}, - {file = "contourpy-1.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:18a64814ae7bce73925131381603fff0116e2df25230dfc80d6d690aa6e20b37"}, - {file = "contourpy-1.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:90c81f22b4f572f8a2110b0b741bb64e5a6427e0a198b2cdc1fbaf85f352a3aa"}, - {file = "contourpy-1.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:53cc3a40635abedbec7f1bde60f8c189c49e84ac180c665f2cd7c162cc454baa"}, - {file = "contourpy-1.1.0-cp310-cp310-win32.whl", hash = "sha256:9b2dd2ca3ac561aceef4c7c13ba654aaa404cf885b187427760d7f7d4c57cff8"}, - {file = "contourpy-1.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:1f795597073b09d631782e7245016a4323cf1cf0b4e06eef7ea6627e06a37ff2"}, - {file = "contourpy-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0b7b04ed0961647691cfe5d82115dd072af7ce8846d31a5fac6c142dcce8b882"}, - {file = "contourpy-1.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:27bc79200c742f9746d7dd51a734ee326a292d77e7d94c8af6e08d1e6c15d545"}, - {file = "contourpy-1.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:052cc634bf903c604ef1a00a5aa093c54f81a2612faedaa43295809ffdde885e"}, - {file = "contourpy-1.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9382a1c0bc46230fb881c36229bfa23d8c303b889b788b939365578d762b5c18"}, - {file = "contourpy-1.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5cec36c5090e75a9ac9dbd0ff4a8cf7cecd60f1b6dc23a374c7d980a1cd710e"}, - {file = "contourpy-1.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1f0cbd657e9bde94cd0e33aa7df94fb73c1ab7799378d3b3f902eb8eb2e04a3a"}, - {file = "contourpy-1.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:181cbace49874f4358e2929aaf7ba84006acb76694102e88dd15af861996c16e"}, - {file = "contourpy-1.1.0-cp311-cp311-win32.whl", hash = "sha256:edb989d31065b1acef3828a3688f88b2abb799a7db891c9e282df5ec7e46221b"}, - {file = "contourpy-1.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:fb3b7d9e6243bfa1efb93ccfe64ec610d85cfe5aec2c25f97fbbd2e58b531256"}, - {file = "contourpy-1.1.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:bcb41692aa09aeb19c7c213411854402f29f6613845ad2453d30bf421fe68fed"}, - {file = "contourpy-1.1.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:5d123a5bc63cd34c27ff9c7ac1cd978909e9c71da12e05be0231c608048bb2ae"}, - {file = "contourpy-1.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:62013a2cf68abc80dadfd2307299bfa8f5aa0dcaec5b2954caeb5fa094171103"}, - {file = "contourpy-1.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0b6616375d7de55797d7a66ee7d087efe27f03d336c27cf1f32c02b8c1a5ac70"}, - {file = "contourpy-1.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:317267d915490d1e84577924bd61ba71bf8681a30e0d6c545f577363157e5e94"}, - {file = "contourpy-1.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d551f3a442655f3dcc1285723f9acd646ca5858834efeab4598d706206b09c9f"}, - {file = "contourpy-1.1.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:e7a117ce7df5a938fe035cad481b0189049e8d92433b4b33aa7fc609344aafa1"}, - {file = "contourpy-1.1.0-cp38-cp38-win32.whl", hash = "sha256:108dfb5b3e731046a96c60bdc46a1a0ebee0760418951abecbe0fc07b5b93b27"}, - {file = "contourpy-1.1.0-cp38-cp38-win_amd64.whl", hash = "sha256:d4f26b25b4f86087e7d75e63212756c38546e70f2a92d2be44f80114826e1cd4"}, - {file = "contourpy-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bc00bb4225d57bff7ebb634646c0ee2a1298402ec10a5fe7af79df9a51c1bfd9"}, - {file = "contourpy-1.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:189ceb1525eb0655ab8487a9a9c41f42a73ba52d6789754788d1883fb06b2d8a"}, - {file = "contourpy-1.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f2931ed4741f98f74b410b16e5213f71dcccee67518970c42f64153ea9313b9"}, - {file = "contourpy-1.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:30f511c05fab7f12e0b1b7730ebdc2ec8deedcfb505bc27eb570ff47c51a8f15"}, - {file = "contourpy-1.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:143dde50520a9f90e4a2703f367cf8ec96a73042b72e68fcd184e1279962eb6f"}, - {file = "contourpy-1.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e94bef2580e25b5fdb183bf98a2faa2adc5b638736b2c0a4da98691da641316a"}, - {file = "contourpy-1.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:ed614aea8462735e7d70141374bd7650afd1c3f3cb0c2dbbcbe44e14331bf002"}, - {file = "contourpy-1.1.0-cp39-cp39-win32.whl", hash = "sha256:71551f9520f008b2950bef5f16b0e3587506ef4f23c734b71ffb7b89f8721999"}, - {file = "contourpy-1.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:438ba416d02f82b692e371858143970ed2eb6337d9cdbbede0d8ad9f3d7dd17d"}, - {file = "contourpy-1.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a698c6a7a432789e587168573a864a7ea374c6be8d4f31f9d87c001d5a843493"}, - {file = "contourpy-1.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:397b0ac8a12880412da3551a8cb5a187d3298a72802b45a3bd1805e204ad8439"}, - {file = "contourpy-1.1.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:a67259c2b493b00e5a4d0f7bfae51fb4b3371395e47d079a4446e9b0f4d70e76"}, - {file = "contourpy-1.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:2b836d22bd2c7bb2700348e4521b25e077255ebb6ab68e351ab5aa91ca27e027"}, - {file = "contourpy-1.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:084eaa568400cfaf7179b847ac871582199b1b44d5699198e9602ecbbb5f6104"}, - {file = "contourpy-1.1.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:911ff4fd53e26b019f898f32db0d4956c9d227d51338fb3b03ec72ff0084ee5f"}, - {file = "contourpy-1.1.0.tar.gz", hash = "sha256:e53046c3863828d21d531cc3b53786e6580eb1ba02477e8681009b6aa0870b21"}, + {file = "contourpy-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0274c1cb63625972c0c007ab14dd9ba9e199c36ae1a231ce45d725cbcbfd10a8"}, + {file = "contourpy-1.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ab459a1cbbf18e8698399c595a01f6dcc5c138220ca3ea9e7e6126232d102bb4"}, + {file = "contourpy-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6fdd887f17c2f4572ce548461e4f96396681212d858cae7bd52ba3310bc6f00f"}, + {file = "contourpy-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5d16edfc3fc09968e09ddffada434b3bf989bf4911535e04eada58469873e28e"}, + {file = "contourpy-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1c203f617abc0dde5792beb586f827021069fb6d403d7f4d5c2b543d87edceb9"}, + {file = "contourpy-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b69303ceb2e4d4f146bf82fda78891ef7bcd80c41bf16bfca3d0d7eb545448aa"}, + {file = "contourpy-1.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:884c3f9d42d7218304bc74a8a7693d172685c84bd7ab2bab1ee567b769696df9"}, + {file = "contourpy-1.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4a1b1208102be6e851f20066bf0e7a96b7d48a07c9b0cfe6d0d4545c2f6cadab"}, + {file = "contourpy-1.2.0-cp310-cp310-win32.whl", hash = "sha256:34b9071c040d6fe45d9826cbbe3727d20d83f1b6110d219b83eb0e2a01d79488"}, + {file = "contourpy-1.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:bd2f1ae63998da104f16a8b788f685e55d65760cd1929518fd94cd682bf03e41"}, + {file = "contourpy-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:dd10c26b4eadae44783c45ad6655220426f971c61d9b239e6f7b16d5cdaaa727"}, + {file = "contourpy-1.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5c6b28956b7b232ae801406e529ad7b350d3f09a4fde958dfdf3c0520cdde0dd"}, + {file = "contourpy-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ebeac59e9e1eb4b84940d076d9f9a6cec0064e241818bcb6e32124cc5c3e377a"}, + {file = "contourpy-1.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:139d8d2e1c1dd52d78682f505e980f592ba53c9f73bd6be102233e358b401063"}, + {file = "contourpy-1.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1e9dc350fb4c58adc64df3e0703ab076f60aac06e67d48b3848c23647ae4310e"}, + {file = "contourpy-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18fc2b4ed8e4a8fe849d18dce4bd3c7ea637758c6343a1f2bae1e9bd4c9f4686"}, + {file = "contourpy-1.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:16a7380e943a6d52472096cb7ad5264ecee36ed60888e2a3d3814991a0107286"}, + {file = "contourpy-1.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:8d8faf05be5ec8e02a4d86f616fc2a0322ff4a4ce26c0f09d9f7fb5330a35c95"}, + {file = "contourpy-1.2.0-cp311-cp311-win32.whl", hash = "sha256:67b7f17679fa62ec82b7e3e611c43a016b887bd64fb933b3ae8638583006c6d6"}, + {file = "contourpy-1.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:99ad97258985328b4f207a5e777c1b44a83bfe7cf1f87b99f9c11d4ee477c4de"}, + {file = "contourpy-1.2.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:575bcaf957a25d1194903a10bc9f316c136c19f24e0985a2b9b5608bdf5dbfe0"}, + {file = "contourpy-1.2.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9e6c93b5b2dbcedad20a2f18ec22cae47da0d705d454308063421a3b290d9ea4"}, + {file = "contourpy-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:464b423bc2a009088f19bdf1f232299e8b6917963e2b7e1d277da5041f33a779"}, + {file = "contourpy-1.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:68ce4788b7d93e47f84edd3f1f95acdcd142ae60bc0e5493bfd120683d2d4316"}, + {file = "contourpy-1.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d7d1f8871998cdff5d2ff6a087e5e1780139abe2838e85b0b46b7ae6cc25399"}, + {file = "contourpy-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e739530c662a8d6d42c37c2ed52a6f0932c2d4a3e8c1f90692ad0ce1274abe0"}, + {file = "contourpy-1.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:247b9d16535acaa766d03037d8e8fb20866d054d3c7fbf6fd1f993f11fc60ca0"}, + {file = "contourpy-1.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:461e3ae84cd90b30f8d533f07d87c00379644205b1d33a5ea03381edc4b69431"}, + {file = "contourpy-1.2.0-cp312-cp312-win32.whl", hash = "sha256:1c2559d6cffc94890b0529ea7eeecc20d6fadc1539273aa27faf503eb4656d8f"}, + {file = "contourpy-1.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:491b1917afdd8638a05b611a56d46587d5a632cabead889a5440f7c638bc6ed9"}, + {file = "contourpy-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5fd1810973a375ca0e097dee059c407913ba35723b111df75671a1976efa04bc"}, + {file = "contourpy-1.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:999c71939aad2780f003979b25ac5b8f2df651dac7b38fb8ce6c46ba5abe6ae9"}, + {file = "contourpy-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b7caf9b241464c404613512d5594a6e2ff0cc9cb5615c9475cc1d9b514218ae8"}, + {file = "contourpy-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:266270c6f6608340f6c9836a0fb9b367be61dde0c9a9a18d5ece97774105ff3e"}, + {file = "contourpy-1.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dbd50d0a0539ae2e96e537553aff6d02c10ed165ef40c65b0e27e744a0f10af8"}, + {file = "contourpy-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11f8d2554e52f459918f7b8e6aa20ec2a3bce35ce95c1f0ef4ba36fbda306df5"}, + {file = "contourpy-1.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:ce96dd400486e80ac7d195b2d800b03e3e6a787e2a522bfb83755938465a819e"}, + {file = "contourpy-1.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:6d3364b999c62f539cd403f8123ae426da946e142312a514162adb2addd8d808"}, + {file = "contourpy-1.2.0-cp39-cp39-win32.whl", hash = "sha256:1c88dfb9e0c77612febebb6ac69d44a8d81e3dc60f993215425b62c1161353f4"}, + {file = "contourpy-1.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:78e6ad33cf2e2e80c5dfaaa0beec3d61face0fb650557100ee36db808bfa6843"}, + {file = "contourpy-1.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:be16975d94c320432657ad2402f6760990cb640c161ae6da1363051805fa8108"}, + {file = "contourpy-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b95a225d4948b26a28c08307a60ac00fb8671b14f2047fc5476613252a129776"}, + {file = "contourpy-1.2.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:0d7e03c0f9a4f90dc18d4e77e9ef4ec7b7bbb437f7f675be8e530d65ae6ef956"}, + {file = "contourpy-1.2.0.tar.gz", hash = "sha256:171f311cb758de7da13fc53af221ae47a5877be5a0843a9fe150818c51ed276a"}, ] [package.dependencies] -numpy = ">=1.16" - -[package.extras] -bokeh = ["bokeh", "selenium"] -docs = ["furo", "sphinx-copybutton"] -mypy = ["contourpy[bokeh,docs]", "docutils-stubs", "mypy (==1.2.0)", "types-Pillow"] -test = ["Pillow", "contourpy[test-no-images]", "matplotlib"] -test-no-images = ["pytest", "pytest-cov", "wurlitzer"] - -[[package]] -name = "contourpy" -version = "1.1.1" -description = "Python library for calculating contours of 2D quadrilateral grids" -optional = false -python-versions = ">=3.8" -files = [ - {file = "contourpy-1.1.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:46e24f5412c948d81736509377e255f6040e94216bf1a9b5ea1eaa9d29f6ec1b"}, - {file = "contourpy-1.1.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0e48694d6a9c5a26ee85b10130c77a011a4fedf50a7279fa0bdaf44bafb4299d"}, - {file = "contourpy-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a66045af6cf00e19d02191ab578a50cb93b2028c3eefed999793698e9ea768ae"}, - {file = "contourpy-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4ebf42695f75ee1a952f98ce9775c873e4971732a87334b099dde90b6af6a916"}, - {file = "contourpy-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f6aec19457617ef468ff091669cca01fa7ea557b12b59a7908b9474bb9674cf0"}, - {file = "contourpy-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:462c59914dc6d81e0b11f37e560b8a7c2dbab6aca4f38be31519d442d6cde1a1"}, - {file = "contourpy-1.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6d0a8efc258659edc5299f9ef32d8d81de8b53b45d67bf4bfa3067f31366764d"}, - {file = "contourpy-1.1.1-cp310-cp310-win32.whl", hash = "sha256:d6ab42f223e58b7dac1bb0af32194a7b9311065583cc75ff59dcf301afd8a431"}, - {file = "contourpy-1.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:549174b0713d49871c6dee90a4b499d3f12f5e5f69641cd23c50a4542e2ca1eb"}, - {file = "contourpy-1.1.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:407d864db716a067cc696d61fa1ef6637fedf03606e8417fe2aeed20a061e6b2"}, - {file = "contourpy-1.1.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:dfe80c017973e6a4c367e037cb31601044dd55e6bfacd57370674867d15a899b"}, - {file = "contourpy-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e30aaf2b8a2bac57eb7e1650df1b3a4130e8d0c66fc2f861039d507a11760e1b"}, - {file = "contourpy-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3de23ca4f381c3770dee6d10ead6fff524d540c0f662e763ad1530bde5112532"}, - {file = "contourpy-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:566f0e41df06dfef2431defcfaa155f0acfa1ca4acbf8fd80895b1e7e2ada40e"}, - {file = "contourpy-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b04c2f0adaf255bf756cf08ebef1be132d3c7a06fe6f9877d55640c5e60c72c5"}, - {file = "contourpy-1.1.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d0c188ae66b772d9d61d43c6030500344c13e3f73a00d1dc241da896f379bb62"}, - {file = "contourpy-1.1.1-cp311-cp311-win32.whl", hash = "sha256:0683e1ae20dc038075d92e0e0148f09ffcefab120e57f6b4c9c0f477ec171f33"}, - {file = "contourpy-1.1.1-cp311-cp311-win_amd64.whl", hash = "sha256:8636cd2fc5da0fb102a2504fa2c4bea3cbc149533b345d72cdf0e7a924decc45"}, - {file = "contourpy-1.1.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:560f1d68a33e89c62da5da4077ba98137a5e4d3a271b29f2f195d0fba2adcb6a"}, - {file = "contourpy-1.1.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:24216552104ae8f3b34120ef84825400b16eb6133af2e27a190fdc13529f023e"}, - {file = "contourpy-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:56de98a2fb23025882a18b60c7f0ea2d2d70bbbcfcf878f9067234b1c4818442"}, - {file = "contourpy-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:07d6f11dfaf80a84c97f1a5ba50d129d9303c5b4206f776e94037332e298dda8"}, - {file = "contourpy-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f1eaac5257a8f8a047248d60e8f9315c6cff58f7803971170d952555ef6344a7"}, - {file = "contourpy-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:19557fa407e70f20bfaba7d55b4d97b14f9480856c4fb65812e8a05fe1c6f9bf"}, - {file = "contourpy-1.1.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:081f3c0880712e40effc5f4c3b08feca6d064cb8cfbb372ca548105b86fd6c3d"}, - {file = "contourpy-1.1.1-cp312-cp312-win32.whl", hash = "sha256:059c3d2a94b930f4dafe8105bcdc1b21de99b30b51b5bce74c753686de858cb6"}, - {file = "contourpy-1.1.1-cp312-cp312-win_amd64.whl", hash = "sha256:f44d78b61740e4e8c71db1cf1fd56d9050a4747681c59ec1094750a658ceb970"}, - {file = "contourpy-1.1.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:70e5a10f8093d228bb2b552beeb318b8928b8a94763ef03b858ef3612b29395d"}, - {file = "contourpy-1.1.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:8394e652925a18ef0091115e3cc191fef350ab6dc3cc417f06da66bf98071ae9"}, - {file = "contourpy-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c5bd5680f844c3ff0008523a71949a3ff5e4953eb7701b28760805bc9bcff217"}, - {file = "contourpy-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:66544f853bfa85c0d07a68f6c648b2ec81dafd30f272565c37ab47a33b220684"}, - {file = "contourpy-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e0c02b75acfea5cab07585d25069207e478d12309557f90a61b5a3b4f77f46ce"}, - {file = "contourpy-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:41339b24471c58dc1499e56783fedc1afa4bb018bcd035cfb0ee2ad2a7501ef8"}, - {file = "contourpy-1.1.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:f29fb0b3f1217dfe9362ec55440d0743fe868497359f2cf93293f4b2701b8251"}, - {file = "contourpy-1.1.1-cp38-cp38-win32.whl", hash = "sha256:f9dc7f933975367251c1b34da882c4f0e0b2e24bb35dc906d2f598a40b72bfc7"}, - {file = "contourpy-1.1.1-cp38-cp38-win_amd64.whl", hash = "sha256:498e53573e8b94b1caeb9e62d7c2d053c263ebb6aa259c81050766beb50ff8d9"}, - {file = "contourpy-1.1.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:ba42e3810999a0ddd0439e6e5dbf6d034055cdc72b7c5c839f37a7c274cb4eba"}, - {file = "contourpy-1.1.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:6c06e4c6e234fcc65435223c7b2a90f286b7f1b2733058bdf1345d218cc59e34"}, - {file = "contourpy-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ca6fab080484e419528e98624fb5c4282148b847e3602dc8dbe0cb0669469887"}, - {file = "contourpy-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:93df44ab351119d14cd1e6b52a5063d3336f0754b72736cc63db59307dabb718"}, - {file = "contourpy-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:eafbef886566dc1047d7b3d4b14db0d5b7deb99638d8e1be4e23a7c7ac59ff0f"}, - {file = "contourpy-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efe0fab26d598e1ec07d72cf03eaeeba8e42b4ecf6b9ccb5a356fde60ff08b85"}, - {file = "contourpy-1.1.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:f08e469821a5e4751c97fcd34bcb586bc243c39c2e39321822060ba902eac49e"}, - {file = "contourpy-1.1.1-cp39-cp39-win32.whl", hash = "sha256:bfc8a5e9238232a45ebc5cb3bfee71f1167064c8d382cadd6076f0d51cff1da0"}, - {file = "contourpy-1.1.1-cp39-cp39-win_amd64.whl", hash = "sha256:c84fdf3da00c2827d634de4fcf17e3e067490c4aea82833625c4c8e6cdea0887"}, - {file = "contourpy-1.1.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:229a25f68046c5cf8067d6d6351c8b99e40da11b04d8416bf8d2b1d75922521e"}, - {file = "contourpy-1.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a10dab5ea1bd4401c9483450b5b0ba5416be799bbd50fc7a6cc5e2a15e03e8a3"}, - {file = "contourpy-1.1.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:4f9147051cb8fdb29a51dc2482d792b3b23e50f8f57e3720ca2e3d438b7adf23"}, - {file = "contourpy-1.1.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:a75cc163a5f4531a256f2c523bd80db509a49fc23721b36dd1ef2f60ff41c3cb"}, - {file = "contourpy-1.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3b53d5769aa1f2d4ea407c65f2d1d08002952fac1d9e9d307aa2e1023554a163"}, - {file = "contourpy-1.1.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:11b836b7dbfb74e049c302bbf74b4b8f6cb9d0b6ca1bf86cfa8ba144aedadd9c"}, - {file = "contourpy-1.1.1.tar.gz", hash = "sha256:96ba37c2e24b7212a77da85004c38e7c4d155d3e72a45eeaf22c1f03f607e8ab"}, -] - -[package.dependencies] -numpy = {version = ">=1.16,<2.0", markers = "python_version <= \"3.11\""} +numpy = ">=1.20,<2.0" [package.extras] bokeh = ["bokeh", "selenium"] docs = ["furo", "sphinx (>=7.2)", "sphinx-copybutton"] -mypy = ["contourpy[bokeh,docs]", "docutils-stubs", "mypy (==1.4.1)", "types-Pillow"] +mypy = ["contourpy[bokeh,docs]", "docutils-stubs", "mypy (==1.6.1)", "types-Pillow"] test = ["Pillow", "contourpy[test-no-images]", "matplotlib"] -test-no-images = ["pytest", "pytest-cov", "wurlitzer"] +test-no-images = ["pytest", "pytest-cov", "pytest-xdist", "wurlitzer"] [[package]] name = "coverage" @@ -1108,6 +1036,19 @@ files = [ {file = "dash_core_components-2.0.0.tar.gz", hash = "sha256:c6733874af975e552f95a1398a16c2ee7df14ce43fa60bb3718a3c6e0b63ffee"}, ] +[[package]] +name = "dash-cytoscape" +version = "0.2.0" +description = "A Component Library for Dash aimed at facilitating network visualization in Python, wrapped around Cytoscape.js" +optional = false +python-versions = "*" +files = [ + {file = "dash_cytoscape-0.2.0.tar.gz", hash = "sha256:0669c79c197e4b150a5db7a278d1c7acebc947f3f5cbad5274835ebb44f712cd"}, +] + +[package.dependencies] +dash = "*" + [[package]] name = "dash-html-components" version = "2.0.0" @@ -1130,6 +1071,17 @@ files = [ {file = "dash_table-5.0.0.tar.gz", hash = "sha256:18624d693d4c8ef2ddec99a6f167593437a7ea0bf153aa20f318c170c5bc7308"}, ] +[[package]] +name = "dashvis" +version = "0.1.8" +description = "Dash Plotly implementation of vis.js library" +optional = false +python-versions = ">=3.8" +files = [ + {file = "dashvis-0.1.8-py3-none-any.whl", hash = "sha256:7cd5d4a963690d7601ff21cc23da976425c125948e44f89058fdb75d22e5da04"}, + {file = "dashvis-0.1.8.tar.gz", hash = "sha256:160170162e955a1a5fc1107f0f11d770527e8f73f426466c527e4b5ba3c43143"}, +] + [[package]] name = "dateparser" version = "1.1.8" @@ -1640,57 +1592,57 @@ files = [ [[package]] name = "fonttools" -version = "4.43.1" +version = "4.44.0" description = "Tools to manipulate font files" optional = false python-versions = ">=3.8" files = [ - {file = "fonttools-4.43.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:bf11e2cca121df35e295bd34b309046c29476ee739753bc6bc9d5050de319273"}, - {file = "fonttools-4.43.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:10b3922875ffcba636674f406f9ab9a559564fdbaa253d66222019d569db869c"}, - {file = "fonttools-4.43.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f727c3e3d08fd25352ed76cc3cb61486f8ed3f46109edf39e5a60fc9fecf6ca"}, - {file = "fonttools-4.43.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad0b3f6342cfa14be996971ea2b28b125ad681c6277c4cd0fbdb50340220dfb6"}, - {file = "fonttools-4.43.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3b7ad05b2beeebafb86aa01982e9768d61c2232f16470f9d0d8e385798e37184"}, - {file = "fonttools-4.43.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4c54466f642d2116686268c3e5f35ebb10e49b0d48d41a847f0e171c785f7ac7"}, - {file = "fonttools-4.43.1-cp310-cp310-win32.whl", hash = "sha256:1e09da7e8519e336239fbd375156488a4c4945f11c4c5792ee086dd84f784d02"}, - {file = "fonttools-4.43.1-cp310-cp310-win_amd64.whl", hash = "sha256:1cf9e974f63b1080b1d2686180fc1fbfd3bfcfa3e1128695b5de337eb9075cef"}, - {file = "fonttools-4.43.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:5db46659cfe4e321158de74c6f71617e65dc92e54980086823a207f1c1c0e24b"}, - {file = "fonttools-4.43.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:1952c89a45caceedf2ab2506d9a95756e12b235c7182a7a0fff4f5e52227204f"}, - {file = "fonttools-4.43.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9c36da88422e0270fbc7fd959dc9749d31a958506c1d000e16703c2fce43e3d0"}, - {file = "fonttools-4.43.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7bbbf8174501285049e64d174e29f9578495e1b3b16c07c31910d55ad57683d8"}, - {file = "fonttools-4.43.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d4071bd1c183b8d0b368cc9ed3c07a0f6eb1bdfc4941c4c024c49a35429ac7cd"}, - {file = "fonttools-4.43.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d21099b411e2006d3c3e1f9aaf339e12037dbf7bf9337faf0e93ec915991f43b"}, - {file = "fonttools-4.43.1-cp311-cp311-win32.whl", hash = "sha256:b84a1c00f832feb9d0585ca8432fba104c819e42ff685fcce83537e2e7e91204"}, - {file = "fonttools-4.43.1-cp311-cp311-win_amd64.whl", hash = "sha256:9a2f0aa6ca7c9bc1058a9d0b35483d4216e0c1bbe3962bc62ce112749954c7b8"}, - {file = "fonttools-4.43.1-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:4d9740e3783c748521e77d3c397dc0662062c88fd93600a3c2087d3d627cd5e5"}, - {file = "fonttools-4.43.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:884ef38a5a2fd47b0c1291647b15f4e88b9de5338ffa24ee52c77d52b4dfd09c"}, - {file = "fonttools-4.43.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9648518ef687ba818db3fcc5d9aae27a369253ac09a81ed25c3867e8657a0680"}, - {file = "fonttools-4.43.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:95e974d70238fc2be5f444fa91f6347191d0e914d5d8ae002c9aa189572cc215"}, - {file = "fonttools-4.43.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:34f713dad41aa21c637b4e04fe507c36b986a40f7179dcc86402237e2d39dcd3"}, - {file = "fonttools-4.43.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:360201d46165fc0753229afe785900bc9596ee6974833124f4e5e9f98d0f592b"}, - {file = "fonttools-4.43.1-cp312-cp312-win32.whl", hash = "sha256:bb6d2f8ef81ea076877d76acfb6f9534a9c5f31dc94ba70ad001267ac3a8e56f"}, - {file = "fonttools-4.43.1-cp312-cp312-win_amd64.whl", hash = "sha256:25d3da8a01442cbc1106490eddb6d31d7dffb38c1edbfabbcc8db371b3386d72"}, - {file = "fonttools-4.43.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:8da417431bfc9885a505e86ba706f03f598c85f5a9c54f67d63e84b9948ce590"}, - {file = "fonttools-4.43.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:51669b60ee2a4ad6c7fc17539a43ffffc8ef69fd5dbed186a38a79c0ac1f5db7"}, - {file = "fonttools-4.43.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:748015d6f28f704e7d95cd3c808b483c5fb87fd3eefe172a9da54746ad56bfb6"}, - {file = "fonttools-4.43.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f7a58eb5e736d7cf198eee94844b81c9573102ae5989ebcaa1d1a37acd04b33d"}, - {file = "fonttools-4.43.1-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6bb5ea9076e0e39defa2c325fc086593ae582088e91c0746bee7a5a197be3da0"}, - {file = "fonttools-4.43.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5f37e31291bf99a63328668bb83b0669f2688f329c4c0d80643acee6e63cd933"}, - {file = "fonttools-4.43.1-cp38-cp38-win32.whl", hash = "sha256:9c60ecfa62839f7184f741d0509b5c039d391c3aff71dc5bc57b87cc305cff3b"}, - {file = "fonttools-4.43.1-cp38-cp38-win_amd64.whl", hash = "sha256:fe9b1ec799b6086460a7480e0f55c447b1aca0a4eecc53e444f639e967348896"}, - {file = "fonttools-4.43.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:13a9a185259ed144def3682f74fdcf6596f2294e56fe62dfd2be736674500dba"}, - {file = "fonttools-4.43.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b2adca1b46d69dce4a37eecc096fe01a65d81a2f5c13b25ad54d5430ae430b13"}, - {file = "fonttools-4.43.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18eefac1b247049a3a44bcd6e8c8fd8b97f3cad6f728173b5d81dced12d6c477"}, - {file = "fonttools-4.43.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2062542a7565091cea4cc14dd99feff473268b5b8afdee564f7067dd9fff5860"}, - {file = "fonttools-4.43.1-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:18a2477c62a728f4d6e88c45ee9ee0229405e7267d7d79ce1f5ce0f3e9f8ab86"}, - {file = "fonttools-4.43.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:a7a06f8d95b7496e53af80d974d63516ffb263a468e614978f3899a6df52d4b3"}, - {file = "fonttools-4.43.1-cp39-cp39-win32.whl", hash = "sha256:10003ebd81fec0192c889e63a9c8c63f88c7d72ae0460b7ba0cd2a1db246e5ad"}, - {file = "fonttools-4.43.1-cp39-cp39-win_amd64.whl", hash = "sha256:e117a92b07407a061cde48158c03587ab97e74e7d73cb65e6aadb17af191162a"}, - {file = "fonttools-4.43.1-py3-none-any.whl", hash = "sha256:4f88cae635bfe4bbbdc29d479a297bb525a94889184bb69fa9560c2d4834ddb9"}, - {file = "fonttools-4.43.1.tar.gz", hash = "sha256:17dbc2eeafb38d5d0e865dcce16e313c58265a6d2d20081c435f84dc5a9d8212"}, + {file = "fonttools-4.44.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:e1cd1c6bb097e774d68402499ff66185190baaa2629ae2f18515a2c50b93db0c"}, + {file = "fonttools-4.44.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b9eab7f9837fdaa2a10a524fbcc2ec24bf60637c044b6e4a59c3f835b90f0fae"}, + {file = "fonttools-4.44.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f412954275e594f7a51c16f3b3edd850acb0d842fefc33856b63a17e18499a5"}, + {file = "fonttools-4.44.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50d25893885e80a5955186791eed5579f1e75921751539cc1dc3ffd1160b48cf"}, + {file = "fonttools-4.44.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:22ea8aa7b3712450b42b044702bd3a64fd118006bad09a6f94bd1b227088492e"}, + {file = "fonttools-4.44.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:df40daa6c03b98652ffe8110ae014fe695437f6e1cb5a07e16ea37f40e73ac86"}, + {file = "fonttools-4.44.0-cp310-cp310-win32.whl", hash = "sha256:bca49da868e8bde569ef36f0cc1b6de21d56bf9c3be185c503b629c19a185287"}, + {file = "fonttools-4.44.0-cp310-cp310-win_amd64.whl", hash = "sha256:dbac86d83d96099890e731cc2af97976ff2c98f4ba432fccde657c5653a32f1c"}, + {file = "fonttools-4.44.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:e8ff7d19a6804bfd561cfcec9b4200dd1788e28f7de4be70189801530c47c1b3"}, + {file = "fonttools-4.44.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a8a1fa9a718de0bc026979c93e1e9b55c5efde60d76f91561fd713387573817d"}, + {file = "fonttools-4.44.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c05064f95aacdfc06f21e55096c964b2228d942b8675fa26995a2551f6329d2d"}, + {file = "fonttools-4.44.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31b38528f25bc662401e6ffae14b3eb7f1e820892fd80369a37155e3b636a2f4"}, + {file = "fonttools-4.44.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:05d7c4d2c95b9490e669f3cb83918799bf1c838619ac6d3bad9ea017cfc63f2e"}, + {file = "fonttools-4.44.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:6999e80a125b0cd8e068d0210b63323f17338038c2ecd2e11b9209ec430fe7f2"}, + {file = "fonttools-4.44.0-cp311-cp311-win32.whl", hash = "sha256:a7aec7f5d14dfcd71fb3ebc299b3f000c21fdc4043079101777ed2042ba5b7c5"}, + {file = "fonttools-4.44.0-cp311-cp311-win_amd64.whl", hash = "sha256:518a945dbfe337744bfff31423c1430303b8813c5275dffb0f2577f0734a1189"}, + {file = "fonttools-4.44.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:59b6ad83cce067d10f4790c037a5904424f45bebb5e7be2eb2db90402f288267"}, + {file = "fonttools-4.44.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c2de1fb18198acd400c45ffe2aef5420c8d55fde903e91cba705596099550f3b"}, + {file = "fonttools-4.44.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:84f308b7a8d28208d54315d11d35f9888d6d607673dd4d42d60b463682ee0400"}, + {file = "fonttools-4.44.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:66bc6efd829382f7a7e6cf33c2fb32b13edc8a239eb15f32acbf197dce7a0165"}, + {file = "fonttools-4.44.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:a8b99713d3a0d0e876b6aecfaada5e7dc9fe979fcd90ef9fa0ba1d9b9aed03f2"}, + {file = "fonttools-4.44.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:b63da598d9cbc52e2381f922da0e94d60c0429f92207bd3fb04d112fc82ea7cb"}, + {file = "fonttools-4.44.0-cp312-cp312-win32.whl", hash = "sha256:f611c97678604e302b725f71626edea113a5745a7fb557c958b39edb6add87d5"}, + {file = "fonttools-4.44.0-cp312-cp312-win_amd64.whl", hash = "sha256:58af428746fa73a2edcbf26aff33ac4ef3c11c8d75bb200eaea2f7e888d2de4e"}, + {file = "fonttools-4.44.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:9ee8692e23028564c13d924004495f284df8ac016a19f17a87251210e1f1f928"}, + {file = "fonttools-4.44.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:dab3d00d27b1a79ae4d4a240e8ceea8af0ff049fd45f05adb4f860d93744110d"}, + {file = "fonttools-4.44.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f53526668beccdb3409c6055a4ffe50987a7f05af6436fa55d61f5e7bd450219"}, + {file = "fonttools-4.44.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3da036b016c975c2d8c69005bdc4d5d16266f948a7fab950244e0f58301996a"}, + {file = "fonttools-4.44.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b99fe8ef4093f672d00841569d2d05691e50334d79f4d9c15c1265d76d5580d2"}, + {file = "fonttools-4.44.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:6d16d9634ff1e5cea2cf4a8cbda9026f766e4b5f30b48f8180f0e99133d3abfc"}, + {file = "fonttools-4.44.0-cp38-cp38-win32.whl", hash = "sha256:3d29509f6e05e8d725db59c2d8c076223d793e4e35773040be6632a0349f2f97"}, + {file = "fonttools-4.44.0-cp38-cp38-win_amd64.whl", hash = "sha256:d4fa4f4bc8fd86579b8cdbe5e948f35d82c0eda0091c399d009b2a5a6b61c040"}, + {file = "fonttools-4.44.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:c794de4086f06ae609b71ac944ec7deb09f34ecf73316fddc041087dd24bba39"}, + {file = "fonttools-4.44.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:2db63941fee3122e31a21dd0f5b2138ce9906b661a85b63622421d3654a74ae2"}, + {file = "fonttools-4.44.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:eb01c49c8aa035d5346f46630209923d4927ed15c2493db38d31da9f811eb70d"}, + {file = "fonttools-4.44.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46c79af80a835410874683b5779b6c1ec1d5a285e11c45b5193e79dd691eb111"}, + {file = "fonttools-4.44.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b6e6aa2d066f8dafd06d8d0799b4944b5d5a1f015dd52ac01bdf2895ebe169a0"}, + {file = "fonttools-4.44.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:63a3112f753baef8c6ac2f5f574bb9ac8001b86c8c0c0380039db47a7f512d20"}, + {file = "fonttools-4.44.0-cp39-cp39-win32.whl", hash = "sha256:54efed22b2799a85475e6840e907c402ba49892c614565dc770aa97a53621b2b"}, + {file = "fonttools-4.44.0-cp39-cp39-win_amd64.whl", hash = "sha256:2e91e19b583961979e2e5a701269d3cfc07418963bee717f8160b0a24332826b"}, + {file = "fonttools-4.44.0-py3-none-any.whl", hash = "sha256:b9beb0fa6ff3ea808ad4a6962d68ac0f140ddab080957b20d9e268e4d67fb335"}, + {file = "fonttools-4.44.0.tar.gz", hash = "sha256:4e90dd81b6e0d97ebfe52c0d12a17a9ef7f305d6bfbb93081265057d6092f252"}, ] [package.extras] -all = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "fs (>=2.2.0,<3)", "lxml (>=4.0,<5)", "lz4 (>=1.7.4.2)", "matplotlib", "munkres", "scipy", "skia-pathops (>=0.5.0)", "sympy", "uharfbuzz (>=0.23.0)", "unicodedata2 (>=15.0.0)", "xattr", "zopfli (>=0.1.4)"] +all = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "fs (>=2.2.0,<3)", "lxml (>=4.0,<5)", "lz4 (>=1.7.4.2)", "matplotlib", "munkres", "scipy", "skia-pathops (>=0.5.0)", "sympy", "uharfbuzz (>=0.23.0)", "unicodedata2 (>=15.1.0)", "xattr", "zopfli (>=0.1.4)"] graphite = ["lz4 (>=1.7.4.2)"] interpolatable = ["munkres", "scipy"] lxml = ["lxml (>=4.0,<5)"] @@ -1700,7 +1652,7 @@ repacker = ["uharfbuzz (>=0.23.0)"] symfont = ["sympy"] type1 = ["xattr"] ufo = ["fs (>=2.2.0,<3)"] -unicode = ["unicodedata2 (>=15.0.0)"] +unicode = ["unicodedata2 (>=15.1.0)"] woff = ["brotli (>=1.0.1)", "brotlicffi (>=0.8.0)", "zopfli (>=0.1.4)"] [[package]] @@ -2161,17 +2113,6 @@ qtconsole = ["qtconsole"] test = ["pickleshare", "pytest (<7.1)", "pytest-asyncio (<0.22)", "testpath"] test-extra = ["curio", "matplotlib (!=3.2.0)", "nbformat", "numpy (>=1.22)", "pandas", "pickleshare", "pytest (<7.1)", "pytest-asyncio (<0.22)", "testpath", "trio"] -[[package]] -name = "ipython-genutils" -version = "0.2.0" -description = "Vestigial utilities from IPython" -optional = false -python-versions = "*" -files = [ - {file = "ipython_genutils-0.2.0-py2.py3-none-any.whl", hash = "sha256:72dd37233799e619666c9f639a9da83c34013a73e8bbc79a7a6348d93c61fab8"}, - {file = "ipython_genutils-0.2.0.tar.gz", hash = "sha256:eb2e116e75ecef9d4d228fdc66af54269afa26ab4463042e33785b887c628ba8"}, -] - [[package]] name = "ipywidgets" version = "8.1.1" @@ -2344,13 +2285,13 @@ qtconsole = "*" [[package]] name = "jupyter-client" -version = "8.5.0" +version = "8.6.0" description = "Jupyter protocol implementation and client libraries" optional = false python-versions = ">=3.8" files = [ - {file = "jupyter_client-8.5.0-py3-none-any.whl", hash = "sha256:c3877aac7257ec68d79b5c622ce986bd2a992ca42f6ddc9b4dd1da50e89f7028"}, - {file = "jupyter_client-8.5.0.tar.gz", hash = "sha256:e8754066510ce456358df363f97eae64b50860f30dc1fe8c6771440db3be9a63"}, + {file = "jupyter_client-8.6.0-py3-none-any.whl", hash = "sha256:909c474dbe62582ae62b758bca86d6518c85234bdee2d908c778db6d72f39d99"}, + {file = "jupyter_client-8.6.0.tar.gz", hash = "sha256:0642244bb83b4764ae60d07e010e15f0e2d275ec4e918a8f7b80fbbef3ca60c7"}, ] [package.dependencies] @@ -2410,13 +2351,13 @@ test = ["ipykernel", "pre-commit", "pytest", "pytest-cov", "pytest-timeout"] [[package]] name = "jupyter-events" -version = "0.8.0" +version = "0.9.0" description = "Jupyter Event System library" optional = false python-versions = ">=3.8" files = [ - {file = "jupyter_events-0.8.0-py3-none-any.whl", hash = "sha256:81f07375c7673ff298bfb9302b4a981864ec64edaed75ca0fe6f850b9b045525"}, - {file = "jupyter_events-0.8.0.tar.gz", hash = "sha256:fda08f0defce5e16930542ce60634ba48e010830d50073c3dfd235759cee77bf"}, + {file = "jupyter_events-0.9.0-py3-none-any.whl", hash = "sha256:d853b3c10273ff9bc8bb8b30076d65e2c9685579db736873de6c2232dde148bf"}, + {file = "jupyter_events-0.9.0.tar.gz", hash = "sha256:81ad2e4bc710881ec274d31c6c50669d71bbaa5dd9d01e600b56faa85700d399"}, ] [package.dependencies] @@ -2449,13 +2390,13 @@ jupyter-server = ">=1.1.2" [[package]] name = "jupyter-server" -version = "2.9.1" +version = "2.10.0" description = "The backend—i.e. core services, APIs, and REST endpoints—to Jupyter web applications." optional = false python-versions = ">=3.8" files = [ - {file = "jupyter_server-2.9.1-py3-none-any.whl", hash = "sha256:21ad1a3d455d5a79ce4bef5201925cd17510c17898cf9d54e3ccfb6b12734948"}, - {file = "jupyter_server-2.9.1.tar.gz", hash = "sha256:9ba71be4b9c16e479e4c50c929f8ac4b1015baf90237a08681397a98c76c7e5e"}, + {file = "jupyter_server-2.10.0-py3-none-any.whl", hash = "sha256:dde56c9bc3cb52d7b72cc0f696d15d7163603526f1a758eb4a27405b73eab2a5"}, + {file = "jupyter_server-2.10.0.tar.gz", hash = "sha256:47b8f5e63440125cb1bb8957bf12b18453ee5ed9efe42d2f7b2ca66a7019a278"}, ] [package.dependencies] @@ -2545,13 +2486,13 @@ files = [ [[package]] name = "jupyterlab-server" -version = "2.25.0" +version = "2.25.1" description = "A set of server components for JupyterLab and JupyterLab like applications." optional = false python-versions = ">=3.8" files = [ - {file = "jupyterlab_server-2.25.0-py3-none-any.whl", hash = "sha256:c9f67a98b295c5dee87f41551b0558374e45d449f3edca153dd722140630dcb2"}, - {file = "jupyterlab_server-2.25.0.tar.gz", hash = "sha256:77c2f1f282d610f95e496e20d5bf1d2a7706826dfb7b18f3378ae2870d272fb7"}, + {file = "jupyterlab_server-2.25.1-py3-none-any.whl", hash = "sha256:dce9714d91fb3e53d2b37d0e0619fa26ed223c8e7b8c81cca112926de19b53a4"}, + {file = "jupyterlab_server-2.25.1.tar.gz", hash = "sha256:6491283b0000698eae1a38c48507930560dfcf7461aea0015368698aab34dd9c"}, ] [package.dependencies] @@ -2566,7 +2507,7 @@ requests = ">=2.31" [package.extras] docs = ["autodoc-traits", "jinja2 (<3.2.0)", "mistune (<4)", "myst-parser", "pydata-sphinx-theme", "sphinx", "sphinx-copybutton", "sphinxcontrib-openapi (>0.8)"] openapi = ["openapi-core (>=0.18.0,<0.19.0)", "ruamel-yaml"] -test = ["hatch", "ipykernel", "openapi-core (>=0.18.0,<0.19.0)", "openapi-spec-validator (>=0.6.0,<0.7.0)", "pytest (>=7.0)", "pytest-console-scripts", "pytest-cov", "pytest-jupyter[server] (>=0.6.2)", "pytest-timeout", "requests-mock", "ruamel-yaml", "sphinxcontrib-spelling", "strict-rfc3339", "werkzeug"] +test = ["hatch", "ipykernel", "openapi-core (>=0.18.0,<0.19.0)", "openapi-spec-validator (>=0.6.0,<0.8.0)", "pytest (>=7.0)", "pytest-console-scripts", "pytest-cov", "pytest-jupyter[server] (>=0.6.2)", "pytest-timeout", "requests-mock", "ruamel-yaml", "sphinxcontrib-spelling", "strict-rfc3339", "werkzeug"] [[package]] name = "jupyterlab-widgets" @@ -2931,16 +2872,6 @@ files = [ {file = "MarkupSafe-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5bbe06f8eeafd38e5d0a4894ffec89378b6c6a625ff57e3028921f8ff59318ac"}, {file = "MarkupSafe-2.1.3-cp311-cp311-win32.whl", hash = "sha256:dd15ff04ffd7e05ffcb7fe79f1b98041b8ea30ae9234aed2a9168b5797c3effb"}, {file = "MarkupSafe-2.1.3-cp311-cp311-win_amd64.whl", hash = "sha256:134da1eca9ec0ae528110ccc9e48041e0828d79f24121a1a146161103c76e686"}, - {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:f698de3fd0c4e6972b92290a45bd9b1536bffe8c6759c62471efaa8acb4c37bc"}, - {file = "MarkupSafe-2.1.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:aa57bd9cf8ae831a362185ee444e15a93ecb2e344c8e52e4d721ea3ab6ef1823"}, - {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ffcc3f7c66b5f5b7931a5aa68fc9cecc51e685ef90282f4a82f0f5e9b704ad11"}, - {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:47d4f1c5f80fc62fdd7777d0d40a2e9dda0a05883ab11374334f6c4de38adffd"}, - {file = "MarkupSafe-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1f67c7038d560d92149c060157d623c542173016c4babc0c1913cca0564b9939"}, - {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:9aad3c1755095ce347e26488214ef77e0485a3c34a50c5a5e2471dff60b9dd9c"}, - {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:14ff806850827afd6b07a5f32bd917fb7f45b046ba40c57abdb636674a8b559c"}, - {file = "MarkupSafe-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8f9293864fe09b8149f0cc42ce56e3f0e54de883a9de90cd427f191c346eb2e1"}, - {file = "MarkupSafe-2.1.3-cp312-cp312-win32.whl", hash = "sha256:715d3562f79d540f251b99ebd6d8baa547118974341db04f5ad06d5ea3eb8007"}, - {file = "MarkupSafe-2.1.3-cp312-cp312-win_amd64.whl", hash = "sha256:1b8dd8c3fd14349433c79fa8abeb573a55fc0fdd769133baac1f5e07abf54aeb"}, {file = "MarkupSafe-2.1.3-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:8e254ae696c88d98da6555f5ace2279cf7cd5b3f52be2b5cf97feafe883b58d2"}, {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cb0932dc158471523c9637e807d9bfb93e06a95cbf010f1a38b98623b929ef2b"}, {file = "MarkupSafe-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9402b03f1a1b4dc4c19845e5c749e3ab82d5078d16a2a4c2cd2df62d57bb0707"}, @@ -3296,13 +3227,13 @@ testing-docutils = ["pygments", "pytest (>=7,<8)", "pytest-param-files (>=0.3.4, [[package]] name = "nbclient" -version = "0.8.0" +version = "0.9.0" description = "A client library for executing notebooks. Formerly nbconvert's ExecutePreprocessor." optional = false python-versions = ">=3.8.0" files = [ - {file = "nbclient-0.8.0-py3-none-any.whl", hash = "sha256:25e861299e5303a0477568557c4045eccc7a34c17fc08e7959558707b9ebe548"}, - {file = "nbclient-0.8.0.tar.gz", hash = "sha256:f9b179cd4b2d7bca965f900a2ebf0db4a12ebff2f36a711cb66861e4ae158e55"}, + {file = "nbclient-0.9.0-py3-none-any.whl", hash = "sha256:a3a1ddfb34d4a9d17fc744d655962714a866639acd30130e9be84191cd97cd15"}, + {file = "nbclient-0.9.0.tar.gz", hash = "sha256:4b28c207877cf33ef3a9838cdc7a54c5ceff981194a82eac59d558f05487295e"}, ] [package.dependencies] @@ -4164,13 +4095,13 @@ test = ["coveralls", "futures", "mock", "pytest (>=2.7.3)", "pytest-benchmark", [[package]] name = "prompt-toolkit" -version = "3.0.39" +version = "3.0.40" description = "Library for building powerful interactive command lines in Python" optional = false python-versions = ">=3.7.0" files = [ - {file = "prompt_toolkit-3.0.39-py3-none-any.whl", hash = "sha256:9dffbe1d8acf91e3de75f3b544e4842382fc06c6babe903ac9acb74dc6e08d88"}, - {file = "prompt_toolkit-3.0.39.tar.gz", hash = "sha256:04505ade687dc26dc4284b1ad19a83be2f2afe83e7a828ace0c72f3a1df72aac"}, + {file = "prompt_toolkit-3.0.40-py3-none-any.whl", hash = "sha256:99ba3dfb23d5b5af89712f89e60a5f3d9b8b67a9482ca377c5771d0e9047a34b"}, + {file = "prompt_toolkit-3.0.40.tar.gz", hash = "sha256:a371c06bb1d66cd499fecd708e50c0b6ae00acba9822ba33c586e2f16d1b739e"}, ] [package.dependencies] @@ -4268,7 +4199,6 @@ files = [ {file = "psycopg2_binary-2.9.9-cp311-cp311-win32.whl", hash = "sha256:dc4926288b2a3e9fd7b50dc6a1909a13bbdadfc67d93f3374d984e56f885579d"}, {file = "psycopg2_binary-2.9.9-cp311-cp311-win_amd64.whl", hash = "sha256:b76bedd166805480ab069612119ea636f5ab8f8771e640ae103e05a4aae3e417"}, {file = "psycopg2_binary-2.9.9-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:8532fd6e6e2dc57bcb3bc90b079c60de896d2128c5d9d6f24a63875a95a088cf"}, - {file = "psycopg2_binary-2.9.9-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b0605eaed3eb239e87df0d5e3c6489daae3f7388d455d0c0b4df899519c6a38d"}, {file = "psycopg2_binary-2.9.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8f8544b092a29a6ddd72f3556a9fcf249ec412e10ad28be6a0c0d948924f2212"}, {file = "psycopg2_binary-2.9.9-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:2d423c8d8a3c82d08fe8af900ad5b613ce3632a1249fd6a223941d0735fce493"}, {file = "psycopg2_binary-2.9.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2e5afae772c00980525f6d6ecf7cbca55676296b580c0e6abb407f15f3706996"}, @@ -4277,8 +4207,6 @@ files = [ {file = "psycopg2_binary-2.9.9-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:cb16c65dcb648d0a43a2521f2f0a2300f40639f6f8c1ecbc662141e4e3e1ee07"}, {file = "psycopg2_binary-2.9.9-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:911dda9c487075abd54e644ccdf5e5c16773470a6a5d3826fda76699410066fb"}, {file = "psycopg2_binary-2.9.9-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:57fede879f08d23c85140a360c6a77709113efd1c993923c59fde17aa27599fe"}, - {file = "psycopg2_binary-2.9.9-cp312-cp312-win32.whl", hash = "sha256:64cf30263844fa208851ebb13b0732ce674d8ec6a0c86a4e160495d299ba3c93"}, - {file = "psycopg2_binary-2.9.9-cp312-cp312-win_amd64.whl", hash = "sha256:81ff62668af011f9a48787564ab7eded4e9fb17a4a6a74af5ffa6a457400d2ab"}, {file = "psycopg2_binary-2.9.9-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:2293b001e319ab0d869d660a704942c9e2cce19745262a8aba2115ef41a0a42a"}, {file = "psycopg2_binary-2.9.9-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:03ef7df18daf2c4c07e2695e8cfd5ee7f748a1d54d802330985a78d2a5a6dca9"}, {file = "psycopg2_binary-2.9.9-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a602ea5aff39bb9fac6308e9c9d82b9a35c2bf288e184a816002c9fae930b77"}, @@ -4893,7 +4821,6 @@ files = [ {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, - {file = "PyYAML-6.0.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:326c013efe8048858a6d312ddd31d56e468118ad4cdeda36c719bf5bb6192290"}, {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, @@ -4901,15 +4828,8 @@ files = [ {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, - {file = "PyYAML-6.0.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:e7d73685e87afe9f3b36c799222440d6cf362062f78be1013661b00c5c6f678b"}, {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, - {file = "PyYAML-6.0.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:855fb52b0dc35af121542a76b9a84f8d1cd886ea97c84703eaa6d88e37a2ad28"}, - {file = "PyYAML-6.0.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:40df9b996c2b73138957fe23a16a4f0ba614f4c0efce1e9406a184b6d07fa3a9"}, - {file = "PyYAML-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c22bec3fbe2524cde73d7ada88f6566758a8f7227bfbf93a408a9d86bcc12a0"}, - {file = "PyYAML-6.0.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8d4e9c88387b0f5c7d5f281e55304de64cf7f9c0021a3525bd3b1c542da3b0e4"}, - {file = "PyYAML-6.0.1-cp312-cp312-win32.whl", hash = "sha256:d483d2cdf104e7c9fa60c544d92981f12ad66a457afae824d146093b8c294c54"}, - {file = "PyYAML-6.0.1-cp312-cp312-win_amd64.whl", hash = "sha256:0d3304d8c0adc42be59c5f8a4d9e3d7379e6955ad754aa9d6ab7a398b59dd1df"}, {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, @@ -4926,7 +4846,6 @@ files = [ {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, - {file = "PyYAML-6.0.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49a183be227561de579b4a36efbb21b3eab9651dd81b1858589f796549873dd6"}, {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, @@ -4934,7 +4853,6 @@ files = [ {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, - {file = "PyYAML-6.0.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:04ac92ad1925b2cff1db0cfebffb6ffc43457495c9b3c39d3fcae417d7125dc5"}, {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, @@ -5047,18 +4965,17 @@ cffi = {version = "*", markers = "implementation_name == \"pypy\""} [[package]] name = "qtconsole" -version = "5.4.4" +version = "5.5.0" description = "Jupyter Qt console" optional = false -python-versions = ">= 3.7" +python-versions = ">= 3.8" files = [ - {file = "qtconsole-5.4.4-py3-none-any.whl", hash = "sha256:a3b69b868e041c2c698bdc75b0602f42e130ffb256d6efa48f9aa756c97672aa"}, - {file = "qtconsole-5.4.4.tar.gz", hash = "sha256:b7ffb53d74f23cee29f4cdb55dd6fabc8ec312d94f3c46ba38e1dde458693dfb"}, + {file = "qtconsole-5.5.0-py3-none-any.whl", hash = "sha256:6b6bcf8f834c6df1579a3e6623c8531b85d3e723997cee3a1156296df14716c8"}, + {file = "qtconsole-5.5.0.tar.gz", hash = "sha256:ea8b4a07d7dc915a1b1238fbfe2c9aea570640402557b64615e09a4bc60df47c"}, ] [package.dependencies] ipykernel = ">=4.1" -ipython-genutils = "*" jupyter-client = ">=4.1" jupyter-core = "*" packaging = "*" @@ -5396,110 +5313,110 @@ notebook = ">=6.0" [[package]] name = "rpds-py" -version = "0.10.6" +version = "0.12.0" description = "Python bindings to Rust's persistent data structures (rpds)" optional = false python-versions = ">=3.8" files = [ - {file = "rpds_py-0.10.6-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:6bdc11f9623870d75692cc33c59804b5a18d7b8a4b79ef0b00b773a27397d1f6"}, - {file = "rpds_py-0.10.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:26857f0f44f0e791f4a266595a7a09d21f6b589580ee0585f330aaccccb836e3"}, - {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d7f5e15c953ace2e8dde9824bdab4bec50adb91a5663df08d7d994240ae6fa31"}, - {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:61fa268da6e2e1cd350739bb61011121fa550aa2545762e3dc02ea177ee4de35"}, - {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c48f3fbc3e92c7dd6681a258d22f23adc2eb183c8cb1557d2fcc5a024e80b094"}, - {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c0503c5b681566e8b722fe8c4c47cce5c7a51f6935d5c7012c4aefe952a35eed"}, - {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:734c41f9f57cc28658d98270d3436dba65bed0cfc730d115b290e970150c540d"}, - {file = "rpds_py-0.10.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a5d7ed104d158c0042a6a73799cf0eb576dfd5fc1ace9c47996e52320c37cb7c"}, - {file = "rpds_py-0.10.6-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e3df0bc35e746cce42579826b89579d13fd27c3d5319a6afca9893a9b784ff1b"}, - {file = "rpds_py-0.10.6-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:73e0a78a9b843b8c2128028864901f55190401ba38aae685350cf69b98d9f7c9"}, - {file = "rpds_py-0.10.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5ed505ec6305abd2c2c9586a7b04fbd4baf42d4d684a9c12ec6110deefe2a063"}, - {file = "rpds_py-0.10.6-cp310-none-win32.whl", hash = "sha256:d97dd44683802000277bbf142fd9f6b271746b4846d0acaf0cefa6b2eaf2a7ad"}, - {file = "rpds_py-0.10.6-cp310-none-win_amd64.whl", hash = "sha256:b455492cab07107bfe8711e20cd920cc96003e0da3c1f91297235b1603d2aca7"}, - {file = "rpds_py-0.10.6-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e8cdd52744f680346ff8c1ecdad5f4d11117e1724d4f4e1874f3a67598821069"}, - {file = "rpds_py-0.10.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:66414dafe4326bca200e165c2e789976cab2587ec71beb80f59f4796b786a238"}, - {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc435d059f926fdc5b05822b1be4ff2a3a040f3ae0a7bbbe672babb468944722"}, - {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8e7f2219cb72474571974d29a191714d822e58be1eb171f229732bc6fdedf0ac"}, - {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3953c6926a63f8ea5514644b7afb42659b505ece4183fdaaa8f61d978754349e"}, - {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2bb2e4826be25e72013916eecd3d30f66fd076110de09f0e750163b416500721"}, - {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7bf347b495b197992efc81a7408e9a83b931b2f056728529956a4d0858608b80"}, - {file = "rpds_py-0.10.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:102eac53bb0bf0f9a275b438e6cf6904904908562a1463a6fc3323cf47d7a532"}, - {file = "rpds_py-0.10.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:40f93086eef235623aa14dbddef1b9fb4b22b99454cb39a8d2e04c994fb9868c"}, - {file = "rpds_py-0.10.6-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e22260a4741a0e7a206e175232867b48a16e0401ef5bce3c67ca5b9705879066"}, - {file = "rpds_py-0.10.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f4e56860a5af16a0fcfa070a0a20c42fbb2012eed1eb5ceeddcc7f8079214281"}, - {file = "rpds_py-0.10.6-cp311-none-win32.whl", hash = "sha256:0774a46b38e70fdde0c6ded8d6d73115a7c39d7839a164cc833f170bbf539116"}, - {file = "rpds_py-0.10.6-cp311-none-win_amd64.whl", hash = "sha256:4a5ee600477b918ab345209eddafde9f91c0acd931f3776369585a1c55b04c57"}, - {file = "rpds_py-0.10.6-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:5ee97c683eaface61d38ec9a489e353d36444cdebb128a27fe486a291647aff6"}, - {file = "rpds_py-0.10.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0713631d6e2d6c316c2f7b9320a34f44abb644fc487b77161d1724d883662e31"}, - {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b5a53f5998b4bbff1cb2e967e66ab2addc67326a274567697379dd1e326bded7"}, - {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6a555ae3d2e61118a9d3e549737bb4a56ff0cec88a22bd1dfcad5b4e04759175"}, - {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:945eb4b6bb8144909b203a88a35e0a03d22b57aefb06c9b26c6e16d72e5eb0f0"}, - {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:52c215eb46307c25f9fd2771cac8135d14b11a92ae48d17968eda5aa9aaf5071"}, - {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1b3cd23d905589cb205710b3988fc8f46d4a198cf12862887b09d7aaa6bf9b9"}, - {file = "rpds_py-0.10.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:64ccc28683666672d7c166ed465c09cee36e306c156e787acef3c0c62f90da5a"}, - {file = "rpds_py-0.10.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:516a611a2de12fbea70c78271e558f725c660ce38e0006f75139ba337d56b1f6"}, - {file = "rpds_py-0.10.6-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:9ff93d3aedef11f9c4540cf347f8bb135dd9323a2fc705633d83210d464c579d"}, - {file = "rpds_py-0.10.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d858532212f0650be12b6042ff4378dc2efbb7792a286bee4489eaa7ba010586"}, - {file = "rpds_py-0.10.6-cp312-none-win32.whl", hash = "sha256:3c4eff26eddac49d52697a98ea01b0246e44ca82ab09354e94aae8823e8bda02"}, - {file = "rpds_py-0.10.6-cp312-none-win_amd64.whl", hash = "sha256:150eec465dbc9cbca943c8e557a21afdcf9bab8aaabf386c44b794c2f94143d2"}, - {file = "rpds_py-0.10.6-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:cf693eb4a08eccc1a1b636e4392322582db2a47470d52e824b25eca7a3977b53"}, - {file = "rpds_py-0.10.6-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4134aa2342f9b2ab6c33d5c172e40f9ef802c61bb9ca30d21782f6e035ed0043"}, - {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e782379c2028a3611285a795b89b99a52722946d19fc06f002f8b53e3ea26ea9"}, - {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2f6da6d842195fddc1cd34c3da8a40f6e99e4a113918faa5e60bf132f917c247"}, - {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b4a9fe992887ac68256c930a2011255bae0bf5ec837475bc6f7edd7c8dfa254e"}, - {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b788276a3c114e9f51e257f2a6f544c32c02dab4aa7a5816b96444e3f9ffc336"}, - {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:caa1afc70a02645809c744eefb7d6ee8fef7e2fad170ffdeacca267fd2674f13"}, - {file = "rpds_py-0.10.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bddd4f91eede9ca5275e70479ed3656e76c8cdaaa1b354e544cbcf94c6fc8ac4"}, - {file = "rpds_py-0.10.6-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:775049dfa63fb58293990fc59473e659fcafd953bba1d00fc5f0631a8fd61977"}, - {file = "rpds_py-0.10.6-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:c6c45a2d2b68c51fe3d9352733fe048291e483376c94f7723458cfd7b473136b"}, - {file = "rpds_py-0.10.6-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:0699ab6b8c98df998c3eacf51a3b25864ca93dab157abe358af46dc95ecd9801"}, - {file = "rpds_py-0.10.6-cp38-none-win32.whl", hash = "sha256:ebdab79f42c5961682654b851f3f0fc68e6cc7cd8727c2ac4ffff955154123c1"}, - {file = "rpds_py-0.10.6-cp38-none-win_amd64.whl", hash = "sha256:24656dc36f866c33856baa3ab309da0b6a60f37d25d14be916bd3e79d9f3afcf"}, - {file = "rpds_py-0.10.6-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:0898173249141ee99ffcd45e3829abe7bcee47d941af7434ccbf97717df020e5"}, - {file = "rpds_py-0.10.6-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:9e9184fa6c52a74a5521e3e87badbf9692549c0fcced47443585876fcc47e469"}, - {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5752b761902cd15073a527b51de76bbae63d938dc7c5c4ad1e7d8df10e765138"}, - {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:99a57006b4ec39dbfb3ed67e5b27192792ffb0553206a107e4aadb39c5004cd5"}, - {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09586f51a215d17efdb3a5f090d7cbf1633b7f3708f60a044757a5d48a83b393"}, - {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e225a6a14ecf44499aadea165299092ab0cba918bb9ccd9304eab1138844490b"}, - {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b2039f8d545f20c4e52713eea51a275e62153ee96c8035a32b2abb772b6fc9e5"}, - {file = "rpds_py-0.10.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:34ad87a831940521d462ac11f1774edf867c34172010f5390b2f06b85dcc6014"}, - {file = "rpds_py-0.10.6-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:dcdc88b6b01015da066da3fb76545e8bb9a6880a5ebf89e0f0b2e3ca557b3ab7"}, - {file = "rpds_py-0.10.6-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:25860ed5c4e7f5e10c496ea78af46ae8d8468e0be745bd233bab9ca99bfd2647"}, - {file = "rpds_py-0.10.6-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:7854a207ef77319ec457c1eb79c361b48807d252d94348305db4f4b62f40f7f3"}, - {file = "rpds_py-0.10.6-cp39-none-win32.whl", hash = "sha256:e6fcc026a3f27c1282c7ed24b7fcac82cdd70a0e84cc848c0841a3ab1e3dea2d"}, - {file = "rpds_py-0.10.6-cp39-none-win_amd64.whl", hash = "sha256:e98c4c07ee4c4b3acf787e91b27688409d918212dfd34c872201273fdd5a0e18"}, - {file = "rpds_py-0.10.6-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:68fe9199184c18d997d2e4293b34327c0009a78599ce703e15cd9a0f47349bba"}, - {file = "rpds_py-0.10.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:3339eca941568ed52d9ad0f1b8eb9fe0958fa245381747cecf2e9a78a5539c42"}, - {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a360cfd0881d36c6dc271992ce1eda65dba5e9368575663de993eeb4523d895f"}, - {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:031f76fc87644a234883b51145e43985aa2d0c19b063e91d44379cd2786144f8"}, - {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1f36a9d751f86455dc5278517e8b65580eeee37d61606183897f122c9e51cef3"}, - {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:052a832078943d2b2627aea0d19381f607fe331cc0eb5df01991268253af8417"}, - {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:023574366002bf1bd751ebaf3e580aef4a468b3d3c216d2f3f7e16fdabd885ed"}, - {file = "rpds_py-0.10.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:defa2c0c68734f4a82028c26bcc85e6b92cced99866af118cd6a89b734ad8e0d"}, - {file = "rpds_py-0.10.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:879fb24304ead6b62dbe5034e7b644b71def53c70e19363f3c3be2705c17a3b4"}, - {file = "rpds_py-0.10.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:53c43e10d398e365da2d4cc0bcaf0854b79b4c50ee9689652cdc72948e86f487"}, - {file = "rpds_py-0.10.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:3777cc9dea0e6c464e4b24760664bd8831738cc582c1d8aacf1c3f546bef3f65"}, - {file = "rpds_py-0.10.6-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:40578a6469e5d1df71b006936ce95804edb5df47b520c69cf5af264d462f2cbb"}, - {file = "rpds_py-0.10.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:cf71343646756a072b85f228d35b1d7407da1669a3de3cf47f8bbafe0c8183a4"}, - {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:10f32b53f424fc75ff7b713b2edb286fdbfc94bf16317890260a81c2c00385dc"}, - {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:81de24a1c51cfb32e1fbf018ab0bdbc79c04c035986526f76c33e3f9e0f3356c"}, - {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ac17044876e64a8ea20ab132080ddc73b895b4abe9976e263b0e30ee5be7b9c2"}, - {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5e8a78bd4879bff82daef48c14d5d4057f6856149094848c3ed0ecaf49f5aec2"}, - {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78ca33811e1d95cac8c2e49cb86c0fb71f4d8409d8cbea0cb495b6dbddb30a55"}, - {file = "rpds_py-0.10.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:c63c3ef43f0b3fb00571cff6c3967cc261c0ebd14a0a134a12e83bdb8f49f21f"}, - {file = "rpds_py-0.10.6-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:7fde6d0e00b2fd0dbbb40c0eeec463ef147819f23725eda58105ba9ca48744f4"}, - {file = "rpds_py-0.10.6-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:79edd779cfc46b2e15b0830eecd8b4b93f1a96649bcb502453df471a54ce7977"}, - {file = "rpds_py-0.10.6-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:9164ec8010327ab9af931d7ccd12ab8d8b5dc2f4c6a16cbdd9d087861eaaefa1"}, - {file = "rpds_py-0.10.6-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:d29ddefeab1791e3c751e0189d5f4b3dbc0bbe033b06e9c333dca1f99e1d523e"}, - {file = "rpds_py-0.10.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:30adb75ecd7c2a52f5e76af50644b3e0b5ba036321c390b8e7ec1bb2a16dd43c"}, - {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dd609fafdcdde6e67a139898196698af37438b035b25ad63704fd9097d9a3482"}, - {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6eef672de005736a6efd565577101277db6057f65640a813de6c2707dc69f396"}, - {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6cf4393c7b41abbf07c88eb83e8af5013606b1cdb7f6bc96b1b3536b53a574b8"}, - {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ad857f42831e5b8d41a32437f88d86ead6c191455a3499c4b6d15e007936d4cf"}, - {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1d7360573f1e046cb3b0dceeb8864025aa78d98be4bb69f067ec1c40a9e2d9df"}, - {file = "rpds_py-0.10.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d08f63561c8a695afec4975fae445245386d645e3e446e6f260e81663bfd2e38"}, - {file = "rpds_py-0.10.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:f0f17f2ce0f3529177a5fff5525204fad7b43dd437d017dd0317f2746773443d"}, - {file = "rpds_py-0.10.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:442626328600bde1d09dc3bb00434f5374948838ce75c41a52152615689f9403"}, - {file = "rpds_py-0.10.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:e9616f5bd2595f7f4a04b67039d890348ab826e943a9bfdbe4938d0eba606971"}, - {file = "rpds_py-0.10.6.tar.gz", hash = "sha256:4ce5a708d65a8dbf3748d2474b580d606b1b9f91b5c6ab2a316e0b0cf7a4ba50"}, + {file = "rpds_py-0.12.0-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:c694bee70ece3b232df4678448fdda245fd3b1bb4ba481fb6cd20e13bb784c46"}, + {file = "rpds_py-0.12.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:30e5ce9f501fb1f970e4a59098028cf20676dee64fc496d55c33e04bbbee097d"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d72a4315514e5a0b9837a086cb433b004eea630afb0cc129de76d77654a9606f"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:eebaf8c76c39604d52852366249ab807fe6f7a3ffb0dd5484b9944917244cdbe"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a239303acb0315091d54c7ff36712dba24554993b9a93941cf301391d8a997ee"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ced40cdbb6dd47a032725a038896cceae9ce267d340f59508b23537f05455431"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c8c0226c71bd0ce9892eaf6afa77ae8f43a3d9313124a03df0b389c01f832de"}, + {file = "rpds_py-0.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b8e11715178f3608874508f08e990d3771e0b8c66c73eb4e183038d600a9b274"}, + {file = "rpds_py-0.12.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:5210a0018c7e09c75fa788648617ebba861ae242944111d3079034e14498223f"}, + {file = "rpds_py-0.12.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:171d9a159f1b2f42a42a64a985e4ba46fc7268c78299272ceba970743a67ee50"}, + {file = "rpds_py-0.12.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:57ec6baec231bb19bb5fd5fc7bae21231860a1605174b11585660236627e390e"}, + {file = "rpds_py-0.12.0-cp310-none-win32.whl", hash = "sha256:7188ddc1a8887194f984fa4110d5a3d5b9b5cd35f6bafdff1b649049cbc0ce29"}, + {file = "rpds_py-0.12.0-cp310-none-win_amd64.whl", hash = "sha256:1e04581c6117ad9479b6cfae313e212fe0dfa226ac727755f0d539cd54792963"}, + {file = "rpds_py-0.12.0-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:0a38612d07a36138507d69646c470aedbfe2b75b43a4643f7bd8e51e52779624"}, + {file = "rpds_py-0.12.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f12d69d568f5647ec503b64932874dade5a20255736c89936bf690951a5e79f5"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f8a1d990dc198a6c68ec3d9a637ba1ce489b38cbfb65440a27901afbc5df575"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8c567c664fc2f44130a20edac73e0a867f8e012bf7370276f15c6adc3586c37c"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0e9e976e0dbed4f51c56db10831c9623d0fd67aac02853fe5476262e5a22acb7"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:efddca2d02254a52078c35cadad34762adbae3ff01c6b0c7787b59d038b63e0d"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9e7f29c00577aff6b318681e730a519b235af292732a149337f6aaa4d1c5e31"}, + {file = "rpds_py-0.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:389c0e38358fdc4e38e9995e7291269a3aead7acfcf8942010ee7bc5baee091c"}, + {file = "rpds_py-0.12.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:33ab498f9ac30598b6406e2be1b45fd231195b83d948ebd4bd77f337cb6a2bff"}, + {file = "rpds_py-0.12.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:d56b1cd606ba4cedd64bb43479d56580e147c6ef3f5d1c5e64203a1adab784a2"}, + {file = "rpds_py-0.12.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1fa73ed22c40a1bec98d7c93b5659cd35abcfa5a0a95ce876b91adbda170537c"}, + {file = "rpds_py-0.12.0-cp311-none-win32.whl", hash = "sha256:dbc25baa6abb205766fb8606f8263b02c3503a55957fcb4576a6bb0a59d37d10"}, + {file = "rpds_py-0.12.0-cp311-none-win_amd64.whl", hash = "sha256:c6b52b7028b547866c2413f614ee306c2d4eafdd444b1ff656bf3295bf1484aa"}, + {file = "rpds_py-0.12.0-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:9620650c364c01ed5b497dcae7c3d4b948daeae6e1883ae185fef1c927b6b534"}, + {file = "rpds_py-0.12.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:2124f9e645a94ab7c853bc0a3644e0ca8ffbe5bb2d72db49aef8f9ec1c285733"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:281c8b219d4f4b3581b918b816764098d04964915b2f272d1476654143801aa2"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:27ccc93c7457ef890b0dd31564d2a05e1aca330623c942b7e818e9e7c2669ee4"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d1c562a9bb72244fa767d1c1ab55ca1d92dd5f7c4d77878fee5483a22ffac808"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e57919c32ee295a2fca458bb73e4b20b05c115627f96f95a10f9f5acbd61172d"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa35ad36440aaf1ac8332b4a4a433d4acd28f1613f0d480995f5cfd3580e90b7"}, + {file = "rpds_py-0.12.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e6aea5c0eb5b0faf52c7b5c4a47c8bb64437173be97227c819ffa31801fa4e34"}, + {file = "rpds_py-0.12.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:81cf9d306c04df1b45971c13167dc3bad625808aa01281d55f3cf852dde0e206"}, + {file = "rpds_py-0.12.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:08e6e7ff286254016b945e1ab632ee843e43d45e40683b66dd12b73791366dd1"}, + {file = "rpds_py-0.12.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:4d0a675a7acbbc16179188d8c6d0afb8628604fc1241faf41007255957335a0b"}, + {file = "rpds_py-0.12.0-cp312-none-win32.whl", hash = "sha256:b2287c09482949e0ca0c0eb68b2aca6cf57f8af8c6dfd29dcd3bc45f17b57978"}, + {file = "rpds_py-0.12.0-cp312-none-win_amd64.whl", hash = "sha256:8015835494b21aa7abd3b43fdea0614ee35ef6b03db7ecba9beb58eadf01c24f"}, + {file = "rpds_py-0.12.0-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6174d6ad6b58a6bcf67afbbf1723420a53d06c4b89f4c50763d6fa0a6ac9afd2"}, + {file = "rpds_py-0.12.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a689e1ded7137552bea36305a7a16ad2b40be511740b80748d3140614993db98"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f45321224144c25a62052035ce96cbcf264667bcb0d81823b1bbc22c4addd194"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:aa32205358a76bf578854bf31698a86dc8b2cb591fd1d79a833283f4a403f04b"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91bd2b7cf0f4d252eec8b7046fa6a43cee17e8acdfc00eaa8b3dbf2f9a59d061"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3acadbab8b59f63b87b518e09c4c64b142e7286b9ca7a208107d6f9f4c393c5c"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:429349a510da82c85431f0f3e66212d83efe9fd2850f50f339341b6532c62fe4"}, + {file = "rpds_py-0.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:05942656cb2cb4989cd50ced52df16be94d344eae5097e8583966a1d27da73a5"}, + {file = "rpds_py-0.12.0-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:0c5441b7626c29dbd54a3f6f3713ec8e956b009f419ffdaaa3c80eaf98ddb523"}, + {file = "rpds_py-0.12.0-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:b6b0e17d39d21698185097652c611f9cf30f7c56ccec189789920e3e7f1cee56"}, + {file = "rpds_py-0.12.0-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:3b7a64d43e2a1fa2dd46b678e00cabd9a49ebb123b339ce799204c44a593ae1c"}, + {file = "rpds_py-0.12.0-cp38-none-win32.whl", hash = "sha256:e5bbe011a2cea9060fef1bb3d668a2fd8432b8888e6d92e74c9c794d3c101595"}, + {file = "rpds_py-0.12.0-cp38-none-win_amd64.whl", hash = "sha256:bec29b801b4adbf388314c0d050e851d53762ab424af22657021ce4b6eb41543"}, + {file = "rpds_py-0.12.0-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:1096ca0bf2d3426cbe79d4ccc91dc5aaa73629b08ea2d8467375fad8447ce11a"}, + {file = "rpds_py-0.12.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:48aa98987d54a46e13e6954880056c204700c65616af4395d1f0639eba11764b"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7979d90ee2190d000129598c2b0c82f13053dba432b94e45e68253b09bb1f0f6"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:88857060b690a57d2ea8569bca58758143c8faa4639fb17d745ce60ff84c867e"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4eb74d44776b0fb0782560ea84d986dffec8ddd94947f383eba2284b0f32e35e"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f62581d7e884dd01ee1707b7c21148f61f2febb7de092ae2f108743fcbef5985"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f5dcb658d597410bb7c967c1d24eaf9377b0d621358cbe9d2ff804e5dd12e81"}, + {file = "rpds_py-0.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9bf9acce44e967a5103fcd820fc7580c7b0ab8583eec4e2051aec560f7b31a63"}, + {file = "rpds_py-0.12.0-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:240687b5be0f91fbde4936a329c9b7589d9259742766f74de575e1b2046575e4"}, + {file = "rpds_py-0.12.0-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:25740fb56e8bd37692ed380e15ec734be44d7c71974d8993f452b4527814601e"}, + {file = "rpds_py-0.12.0-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:a54917b7e9cd3a67e429a630e237a90b096e0ba18897bfb99ee8bd1068a5fea0"}, + {file = "rpds_py-0.12.0-cp39-none-win32.whl", hash = "sha256:b92aafcfab3d41580d54aca35a8057341f1cfc7c9af9e8bdfc652f83a20ced31"}, + {file = "rpds_py-0.12.0-cp39-none-win_amd64.whl", hash = "sha256:cd316dbcc74c76266ba94eb021b0cc090b97cca122f50bd7a845f587ff4bf03f"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0853da3d5e9bc6a07b2486054a410b7b03f34046c123c6561b535bb48cc509e1"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:cb41ad20064e18a900dd427d7cf41cfaec83bcd1184001f3d91a1f76b3fcea4e"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b710bf7e7ae61957d5c4026b486be593ed3ec3dca3e5be15e0f6d8cf5d0a4990"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a952ae3eb460c6712388ac2ec706d24b0e651b9396d90c9a9e0a69eb27737fdc"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0bedd91ae1dd142a4dc15970ed2c729ff6c73f33a40fa84ed0cdbf55de87c777"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:761531076df51309075133a6bc1db02d98ec7f66e22b064b1d513bc909f29743"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2baa6be130e8a00b6cbb9f18a33611ec150b4537f8563bddadb54c1b74b8193"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f05450fa1cd7c525c0b9d1a7916e595d3041ac0afbed2ff6926e5afb6a781b7f"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:81c4d1a3a564775c44732b94135d06e33417e829ff25226c164664f4a1046213"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:e888be685fa42d8b8a3d3911d5604d14db87538aa7d0b29b1a7ea80d354c732d"}, + {file = "rpds_py-0.12.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:6f8d7fe73d1816eeb5378409adc658f9525ecbfaf9e1ede1e2d67a338b0c7348"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0831d3ecdea22e4559cc1793f22e77067c9d8c451d55ae6a75bf1d116a8e7f42"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:513ccbf7420c30e283c25c82d5a8f439d625a838d3ba69e79a110c260c46813f"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:301bd744a1adaa2f6a5e06c98f1ac2b6f8dc31a5c23b838f862d65e32fca0d4b"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f8832a4f83d4782a8f5a7b831c47e8ffe164e43c2c148c8160ed9a6d630bc02a"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4b2416ed743ec5debcf61e1242e012652a4348de14ecc7df3512da072b074440"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35585a8cb5917161f42c2104567bb83a1d96194095fc54a543113ed5df9fa436"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d389ff1e95b6e46ebedccf7fd1fadd10559add595ac6a7c2ea730268325f832c"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9b007c2444705a2dc4a525964fd4dd28c3320b19b3410da6517cab28716f27d3"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:188912b22b6c8225f4c4ffa020a2baa6ad8fabb3c141a12dbe6edbb34e7f1425"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:1b4cf9ab9a0ae0cb122685209806d3f1dcb63b9fccdf1424fb42a129dc8c2faa"}, + {file = "rpds_py-0.12.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:2d34a5450a402b00d20aeb7632489ffa2556ca7b26f4a63c35f6fccae1977427"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:466030a42724780794dea71eb32db83cc51214d66ab3fb3156edd88b9c8f0d78"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:68172622a5a57deb079a2c78511c40f91193548e8ab342c31e8cb0764d362459"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54cdfcda59251b9c2f87a05d038c2ae02121219a04d4a1e6fc345794295bdc07"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6b75b912a0baa033350367a8a07a8b2d44fd5b90c890bfbd063a8a5f945f644b"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:47aeceb4363851d17f63069318ba5721ae695d9da55d599b4d6fb31508595278"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0525847f83f506aa1e28eb2057b696fe38217e12931c8b1b02198cfe6975e142"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efbe0b5e0fd078ed7b005faa0170da4f72666360f66f0bb2d7f73526ecfd99f9"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0fadfdda275c838cba5102c7f90a20f2abd7727bf8f4a2b654a5b617529c5c18"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:56dd500411d03c5e9927a1eb55621e906837a83b02350a9dc401247d0353717c"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:6915fc9fa6b3ec3569566832e1bb03bd801c12cea030200e68663b9a87974e76"}, + {file = "rpds_py-0.12.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:5f1519b080d8ce0a814f17ad9fb49fb3a1d4d7ce5891f5c85fc38631ca3a8dc4"}, + {file = "rpds_py-0.12.0.tar.gz", hash = "sha256:7036316cc26b93e401cedd781a579be606dad174829e6ad9e9c5a0da6e036f80"}, ] [[package]] @@ -6316,7 +6233,7 @@ files = [ ] [package.dependencies] -greenlet = {version = "!=0.4.17", markers = "python_version >= \"3\" and (platform_machine == \"aarch64\" or platform_machine == \"ppc64le\" or platform_machine == \"x86_64\" or platform_machine == \"amd64\" or platform_machine == \"AMD64\" or platform_machine == \"win32\" or platform_machine == \"WIN32\")"} +greenlet = {version = "!=0.4.17", markers = "python_version >= \"3\" and (platform_machine == \"win32\" or platform_machine == \"WIN32\" or platform_machine == \"AMD64\" or platform_machine == \"amd64\" or platform_machine == \"x86_64\" or platform_machine == \"ppc64le\" or platform_machine == \"aarch64\")"} mypy = {version = ">=0.910", optional = true, markers = "python_version >= \"3\" and extra == \"mypy\""} sqlalchemy2-stubs = {version = "*", optional = true, markers = "extra == \"mypy\""} @@ -6450,13 +6367,13 @@ doc = ["reno", "sphinx", "tornado (>=4.5)"] [[package]] name = "terminado" -version = "0.17.1" +version = "0.18.0" description = "Tornado websocket backend for the Xterm.js Javascript terminal emulator library." optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "terminado-0.17.1-py3-none-any.whl", hash = "sha256:8650d44334eba354dd591129ca3124a6ba42c3d5b70df5051b6921d506fdaeae"}, - {file = "terminado-0.17.1.tar.gz", hash = "sha256:6ccbbcd3a4f8a25a5ec04991f39a0b8db52dfcd487ea0e578d977e6752380333"}, + {file = "terminado-0.18.0-py3-none-any.whl", hash = "sha256:87b0d96642d0fe5f5abd7783857b9cab167f221a39ff98e3b9619a788a3c0f2e"}, + {file = "terminado-0.18.0.tar.gz", hash = "sha256:1ea08a89b835dd1b8c0c900d92848147cef2537243361b2e3f4dc15df9b6fded"}, ] [package.dependencies] @@ -6467,6 +6384,7 @@ tornado = ">=6.1.0" [package.extras] docs = ["myst-parser", "pydata-sphinx-theme", "sphinx"] test = ["pre-commit", "pytest (>=7.0)", "pytest-timeout"] +typing = ["mypy (>=1.6,<2.0)", "traitlets (>=5.11.1)"] [[package]] name = "thinc" @@ -6921,13 +6839,13 @@ vision = ["Pillow (<10.0.0)"] [[package]] name = "trio" -version = "0.22.2" +version = "0.23.1" description = "A friendly Python library for async concurrency and I/O" optional = false -python-versions = ">=3.7" +python-versions = ">=3.8" files = [ - {file = "trio-0.22.2-py3-none-any.whl", hash = "sha256:f43da357620e5872b3d940a2e3589aa251fd3f881b65a608d742e00809b1ec38"}, - {file = "trio-0.22.2.tar.gz", hash = "sha256:3887cf18c8bcc894433420305468388dac76932e9668afa1c49aa3806b6accb3"}, + {file = "trio-0.23.1-py3-none-any.whl", hash = "sha256:bb4abb3f4af23f96679e7c8cdabb8b234520f2498550d2cf63ebfd95f2ce27fe"}, + {file = "trio-0.23.1.tar.gz", hash = "sha256:16f89f7dcc8f7b9dcdec1fcd863e0c039af6d0f9a22f8dfd56f75d75ec73fd48"}, ] [package.dependencies] @@ -6935,7 +6853,7 @@ attrs = ">=20.1.0" cffi = {version = ">=1.14", markers = "os_name == \"nt\" and implementation_name != \"pypy\""} idna = "*" outcome = "*" -sniffio = "*" +sniffio = ">=1.3.0" sortedcontainers = "*" [[package]] @@ -7210,13 +7128,13 @@ files = [ [[package]] name = "weasel" -version = "0.3.3" +version = "0.3.4" description = "Weasel: A small and easy workflow system" optional = false python-versions = ">=3.6" files = [ - {file = "weasel-0.3.3-py3-none-any.whl", hash = "sha256:141b12fd0d38599ff8c567208d1db0f5af1b532363fadeba27d7bc87d751d88a"}, - {file = "weasel-0.3.3.tar.gz", hash = "sha256:924962dfc9d89602552e7332846e95d264eca18aebe2b96c2527d46b7bb7cf9c"}, + {file = "weasel-0.3.4-py3-none-any.whl", hash = "sha256:ee48a944f051d007201c2ea1661d0c41035028c5d5a8bcb29a0b10f1100206ae"}, + {file = "weasel-0.3.4.tar.gz", hash = "sha256:eb16f92dc9f1a3ffa89c165e3a9acd28018ebb656e0da4da02c0d7d8ae3f6178"}, ] [package.dependencies] @@ -7415,4 +7333,4 @@ web-server = ["dash", "dash-auth", "dash-bootstrap-components", "matplotlib", "s [metadata] lock-version = "2.0" python-versions = "^3.11" -content-hash = "b66abf6c8f8bd87ddeccdaeebb1a59e20db68de57b8d717ee85c0061e4cd54e8" +content-hash = "bf309ab52bf38a05bf014d83da73c04416b86be10b55f96969965945c3aeaa95" From f2ac0eda91079fdf62940bc96485e55dc12f235c Mon Sep 17 00:00:00 2001 From: Tim Date: Sun, 5 Nov 2023 15:50:28 +0100 Subject: [PATCH 26/36] Added Realtion_count MEthod --- .../ui/archive/networkx_dash.py | 17 ++--- .../ui/archive/networkx_dash_overall.py | 31 ++------ .../ui/archive/ui_elements.py | 4 +- .../ui/company_elements.py | 37 ++++++++-- .../ui/pages/home.py | 2 +- .../utils/enum_types.py | 32 --------- .../utils/networkx/network_3d.py | 2 +- .../utils/networkx/network_base.py | 61 ++++++++++++++++ .../utils/networkx/networkx_data.py | 72 +++++++++++++++---- .../utils/sql/connector.py | 2 +- tests/ui/networkx_dash_test.py | 2 +- tests/utils/networkx/network_2d_test.py | 9 +-- tests/utils/networkx/network_base_test.py | 12 ++-- 13 files changed, 175 insertions(+), 108 deletions(-) diff --git a/src/aki_prj23_transparenzregister/ui/archive/networkx_dash.py b/src/aki_prj23_transparenzregister/ui/archive/networkx_dash.py index 9b8634a..5700b19 100644 --- a/src/aki_prj23_transparenzregister/ui/archive/networkx_dash.py +++ b/src/aki_prj23_transparenzregister/ui/archive/networkx_dash.py @@ -34,16 +34,15 @@ def find_company_relations(company_id: int) -> pd.DataFrame: connected_company_name = [] for _, row in companies_relations_df.iterrows(): - # print(companies_df.loc[companies_df["company_id"] == row["relation_id"]]["company_name"].values[0]) company_name.append( companies_df.loc[companies_df["company_id"] == row["relation_id"]][ "company_name" - ].values[0] + ].iloc[0] ) connected_company_name.append( companies_df.loc[ companies_df["company_id"] == row["company_relation_company2_id"] - ]["company_name"].values[0] + ]["company_name"].iloc[0] ) # print(company_name) @@ -54,7 +53,7 @@ def find_company_relations(company_id: int) -> pd.DataFrame: # Plotly figure -def networkGraph(company_id: int) -> go.Figure: +def network_graph(company_id: int) -> go.Figure: """_summary_. Args: @@ -63,14 +62,10 @@ def networkGraph(company_id: int) -> go.Figure: Returns: go.Figure: _description_ """ - # df = find_company_relations(test_company) edges = [] - for index, row in find_company_relations(company_id).iterrows(): + for _, row in find_company_relations(company_id).iterrows(): edges.append([row["company_name"], row["connected_company_name"]]) - # print(row["company_name"], row["connected_company_name"]) - # print(edges) - # edges = df[["relation_id","company_relation_company2_id"]] - # edges = [[EGDE_VAR, "B"], ["B", "C"], ["B", "D"]] + network_graph = nx.Graph() network_graph.add_edges_from(edges) pos = nx.spring_layout(network_graph) @@ -151,6 +146,6 @@ def networkx_component(company_id: int) -> html.Div: """ return html.Div( [ - dcc.Graph(id="my-graph", figure=networkGraph(company_id)), + dcc.Graph(id="my-graph", figure=network_graph(company_id)), ] ) diff --git a/src/aki_prj23_transparenzregister/ui/archive/networkx_dash_overall.py b/src/aki_prj23_transparenzregister/ui/archive/networkx_dash_overall.py index f196489..bbcc34d 100644 --- a/src/aki_prj23_transparenzregister/ui/archive/networkx_dash_overall.py +++ b/src/aki_prj23_transparenzregister/ui/archive/networkx_dash_overall.py @@ -34,18 +34,16 @@ def find_all_company_relations() -> pd.DataFrame: # print(companies_relations_df) for _, row in companies_relations_df.iterrows(): - # print(companies_df.loc[companies_df["company_id"] == row["relation_id"]]["company_name"].values[0]) - # print("TEst") company_name.append( companies_df.loc[companies_df["company_id"] == row["relation_id"]][ "company_name" - ].values[0] + ].iloc[0] ) connected_company_name.append( companies_df.loc[ companies_df["company_id"] == row["company_relation_company2_id"] - ]["company_name"].values[0] + ]["company_name"].iloc[0] ) # print(connected_company_name) @@ -58,7 +56,7 @@ def find_all_company_relations() -> pd.DataFrame: # Plotly figure -def networkGraph(EGDE_VAR: None) -> go.Figure: +def network_graph() -> go.Figure: """Create a NetworkX Graph. Args: @@ -67,15 +65,10 @@ def networkGraph(EGDE_VAR: None) -> go.Figure: Returns: go.Figure: _description_ """ - # find_all_company_relations() - edges = [] - for index, row in find_all_company_relations().iterrows(): + for _, row in find_all_company_relations().iterrows(): edges.append([row["company_name"], row["connected_company_name"]]) - # print(row["company_name"], row["connected_company_name"]) - # print(edges) - # edges = df[["relation_id","company_relation_company2_id"]] - # edges = [[EGDE_VAR, "B"], ["B", "C"], ["B", "D"]] + network_graph = nx.Graph() network_graph.add_edges_from(edges) pos = nx.spring_layout(network_graph) @@ -141,7 +134,6 @@ def networkGraph(EGDE_VAR: None) -> go.Figure: }, } - print(nx.eigenvector_centrality(network_graph)) measure_vector = {} network_metrics_df = pd.DataFrame() @@ -157,20 +149,11 @@ def networkGraph(EGDE_VAR: None) -> go.Figure: measure_vector = nx.closeness_centrality(network_graph) network_metrics_df["closeness"] = measure_vector.values() - # measure_vector = nx.pagerank(network_graph) - # network_metrics_df["pagerank"] = measure_vector.values() - - # measure_vector = nx.average_degree_connectivity(network_graph) - # network_metrics_df["average_degree"] = measure_vector.values() - print(network_metrics_df) - # figure return go.Figure(data=[edge_trace, node_trace], layout=layout) # Dash App - - app = Dash(__name__) app.title = "Dash Networkx" @@ -192,7 +175,7 @@ app.layout = html.Div( # Input('metric-dropdown', 'value'), [Input("EGDE_VAR", "value")], ) -def update_output(EGDE_VAR: None) -> go.Figure: +def update_output(edge_var: None) -> go.Figure: """Just Returns the go Figure of Plotly. Args: @@ -201,7 +184,7 @@ def update_output(EGDE_VAR: None) -> go.Figure: Returns: go.Figure: _description_ """ - return networkGraph(EGDE_VAR) + return network_graph(edge_var) if __name__ == "__main__": diff --git a/src/aki_prj23_transparenzregister/ui/archive/ui_elements.py b/src/aki_prj23_transparenzregister/ui/archive/ui_elements.py index c432e8a..512b75d 100644 --- a/src/aki_prj23_transparenzregister/ui/archive/ui_elements.py +++ b/src/aki_prj23_transparenzregister/ui/archive/ui_elements.py @@ -7,8 +7,8 @@ from dash import dash_table, dcc, html from sqlalchemy.engine import Engine from sqlalchemy.orm import Session -from aki_prj23_transparenzregister.utils.sql import entities from aki_prj23_transparenzregister.ui.archive.networkx_dash import networkx_component +from aki_prj23_transparenzregister.utils.sql import entities COLORS = { "light": "#edefef", @@ -363,6 +363,4 @@ def network_layout(selected_company_id: int) -> html: Returns: The html div to create the network tab of the company page. """ - selected_company_id return networkx_component(selected_company_id) - # return html.Div([f"Netzwerk von Unternehmen mit ID: {selected_company_id}"]) diff --git a/src/aki_prj23_transparenzregister/ui/company_elements.py b/src/aki_prj23_transparenzregister/ui/company_elements.py index 647805c..4563e76 100644 --- a/src/aki_prj23_transparenzregister/ui/company_elements.py +++ b/src/aki_prj23_transparenzregister/ui/company_elements.py @@ -15,6 +15,7 @@ from aki_prj23_transparenzregister.utils.networkx.network_base import initialize from aki_prj23_transparenzregister.utils.networkx.networkx_data import ( create_edge_and_node_list_for_company, find_company_relations, + get_relations_number_from_id, ) COLORS = { @@ -379,13 +380,37 @@ def network_layout(selected_company_id: int) -> html.Div: The html div to create the network tab of the company page. """ person_relations, company_relations = find_company_relations(selected_company_id) + + # get_all_metrics_from_id(selected_company_id) + get_relations_number_from_id(f"c_{selected_company_id}") + # Create Edge and Node List from data nodes, edges = create_edge_and_node_list_for_company(company_relations) - # Initialize the Network and receive the Graph and a DataFrame with Metrics - if nodes != {}: + # Initialize the Network and receive the Graph and a DataFrame with Metrics + if nodes != {}: graph, metrics = initialize_network(nodes=nodes, edges=edges) metric = "None" - figure = create_2d_graph(graph, nodes, edges, metrics, metric, layout="Spring", edge_annotation=True, node_annotation=False, edge_thickness=1) - - return html.Div( children=[dcc.Graph(figure=figure, id="company-graph", className="graph-style")]) - return html.Div([html.H3(f"Leider gibt es keine Verbindungen vom Unternehmen mit ID: {selected_company_id}")]) + figure = create_2d_graph( + graph, + nodes, + edges, + metrics, + metric, + layout="Spring", + edge_annotation=True, + node_annotation=False, + edge_thickness=1, + ) + return html.Div( + children=[ + dcc.Graph(figure=figure, id="company-graph", className="graph-style") + ] + ) + + return html.Div( + [ + html.H3( + f"Leider gibt es keine Verbindungen vom Unternehmen mit ID: {selected_company_id}" + ) + ] + ) diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index 7b45335..b445506 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -369,7 +369,7 @@ def update_graph_data( allow_duplicate=True, ) # @lru_cache(20) -def update_figure( +def update_figure( # noqa: PLR0913 selected_metric: str, switch_value: bool, # switch_node_annotaion_value: bool, diff --git a/src/aki_prj23_transparenzregister/utils/enum_types.py b/src/aki_prj23_transparenzregister/utils/enum_types.py index 59d6316..e3bc9e7 100644 --- a/src/aki_prj23_transparenzregister/utils/enum_types.py +++ b/src/aki_prj23_transparenzregister/utils/enum_types.py @@ -11,38 +11,6 @@ class SentimentLabel(MultiValueEnum): NEGATIVE = -1, "negative" NEUTRAL = 0, "neutral" - @staticmethod - def get_string_from_enum(value: int | None) -> str: - """Translates relation name into a RelationTypeEnum. - - If no translation can be found a warning is given. - - Args: - relation_name: The name of the relation to be translated. - - Returns: - The identified translation or None if no translation can be found. - """ - tmp = RelationTypeEnum(value) - if value is None: - raise ValueError("A relation type needs to be given.") - name = { - RelationTypeEnum.GESCHAEFTSFUEHRER: "Geschäftsführer", - RelationTypeEnum.KOMMANDITIST: "Kommanditist", - RelationTypeEnum.VORSTAND: "Vorstand", - RelationTypeEnum.PROKURIST: "Prokurist", - RelationTypeEnum.LIQUIDATOR: "Liquidator", - RelationTypeEnum.INHABER: "Inhaber", - RelationTypeEnum.PERSOENLICH_HAFTENDER_GESELLSCHAFTER: "Persönlich haftender Gesellschafter", - RelationTypeEnum.ORGANISATION: "Organisation", - RelationTypeEnum.PARTNER: "Partner", - RelationTypeEnum.DIREKTOR: "Direktor", - RelationTypeEnum.RECHTSNACHFOLGER: "Rechtsnachfolger", - }.get(tmp) - if name is not None: - return name - raise ValueError(f'Relation type "{value}" is not yet implemented!') - class FinancialKPIEnum(Enum): """Financial KPI keys.""" diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py b/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py index 329056e..b2262be 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_3d.py @@ -5,7 +5,7 @@ import pandas as pd import plotly.graph_objects as go -def create_3d_graph( +def create_3d_graph( # noqa : PLR0913 graph: nx.Graph, nodes: dict, edges: list, diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_base.py b/src/aki_prj23_transparenzregister/utils/networkx/network_base.py index 4e86eb6..60bbe6b 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_base.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_base.py @@ -34,5 +34,66 @@ def initialize_network(edges: list, nodes: dict) -> tuple[nx.Graph, pd.DataFrame metrics["pagerank"] = nx.pagerank(graph).values() metrics["category"] = nx.get_node_attributes(graph, "type").values() metrics["designation"] = nx.get_node_attributes(graph, "name").values() + metrics["id"] = nx.get_node_attributes(graph, "id").values() return graph, metrics + + +def initialize_network_with_reduced_metrics( + edges: list, nodes: dict +) -> tuple[nx.Graph, pd.DataFrame]: + """This Method creates a Network from the Framework NetworkX with the help of a Node and Edge List. Furthemore it creates a DataFrame with the most important Metrics. + + Args: + edges (list): List with the connections between Nodes. + nodes (dict): Dict with all Nodes. + + Returns: + Graph: Plotly Figure + Metrices: DataFrame with Metrics + """ + # create edge dataframe + df_edges = pd.DataFrame(edges, columns=["from", "to", "type"]) + graph = nx.from_pandas_edgelist( + df_edges, source="from", target="to", edge_attr="type" + ) + + # update node attributes from dataframe + nx.set_node_attributes(graph, nodes) + + # Create a DataFrame with all Metrics + metrics = pd.DataFrame( + columns=["degree", "eigenvector", "betweenness", "closeness", "pagerank"] + ) + # metrics["eigenvector"] = nx.eigenvector_centrality(graph).values() + metrics["degree"] = nx.degree_centrality(graph).values() + metrics["betweenness"] = nx.betweenness_centrality(graph).values() + metrics["closeness"] = nx.closeness_centrality(graph).values() + # metrics["pagerank"] = nx.pagerank(graph).values() + metrics["category"] = nx.get_node_attributes(graph, "type").values() + metrics["designation"] = nx.get_node_attributes(graph, "name").values() + metrics["id"] = nx.get_node_attributes(graph, "id").values() + + return graph, metrics + + +def initialize_network_without_metrics(edges: list, nodes: dict) -> nx.Graph: + """This Method creates a Network from the Framework NetworkX with the help of a Node and Edge List. Furthemore it creates a DataFrame with the most important Metrics. + + Args: + edges (list): List with the connections between Nodes. + nodes (dict): Dict with all Nodes. + + Returns: + Graph: Plotly Figure + """ + # create edge dataframe + df_edges = pd.DataFrame(edges, columns=["from", "to", "type"]) + graph = nx.from_pandas_edgelist( + df_edges, source="from", target="to", edge_attr="type" + ) + + # update node attributes from dataframe + nx.set_node_attributes(graph, nodes) + + return graph diff --git a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py index 9322992..e2f3239 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py @@ -1,8 +1,15 @@ """Module to receive and filter Data for working with NetworkX.""" +from functools import lru_cache + +import networkx as nx import pandas as pd from sqlalchemy.orm import aliased from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider +from aki_prj23_transparenzregister.utils.networkx.network_base import ( + initialize_network_with_reduced_metrics, + initialize_network_without_metrics, +) from aki_prj23_transparenzregister.utils.sql import connector, entities from aki_prj23_transparenzregister.utils.sql.connector import get_session @@ -15,6 +22,9 @@ to_company = aliased(entities.Company, name="to_company") # Alias for Company table for the head company from_company = aliased(entities.Company, name="from_company") +COLOR_COMPANY = "blue" +COLOR_PERSON = "red" + def find_all_company_relations() -> pd.DataFrame: """_summary_. @@ -40,12 +50,12 @@ def find_all_company_relations() -> pd.DataFrame: company_name.append( companies_df.loc[companies_df["company_id"] == row["relation_id"]][ "company_name" - ].values[0] + ].iloc[0] ) connected_company_name.append( companies_df.loc[ companies_df["company_id"] == row["company_relation_company2_id"] - ]["company_name"].values[0] + ]["company_name"].iloc[0] ) companies_relations_df["company_name"] = company_name @@ -213,19 +223,16 @@ def create_edge_and_node_list( nodes: dict = {} edges: list = [] - COLOR_COMPANY = "blue" - COLOR_PERSON = "red" - # Iterate over person relations - for _index, row in person_relations.iterrows(): - if node := nodes.get(row["id_company"]) is None: + for _, row in person_relations.iterrows(): + if nodes.get(row["id_company"]) is None: nodes[row["id_company"]] = { "id": row["id_company"], "name": row["name_company"], "color": COLOR_COMPANY, "type": "company", } - if node := nodes.get(row["id_person"]) is None: + if nodes.get(row["id_person"]) is None: nodes[row["id_person"]] = { "id": row["id_person"], "name": str(row["firstname"]) + " " + str(row["lastname"]), @@ -241,15 +248,15 @@ def create_edge_and_node_list( } ) - for _index, row in company_relations.iterrows(): - if node := nodes.get(row["id_company_from"]) is None: + for _, row in company_relations.iterrows(): + if nodes.get(row["id_company_from"]) is None: # noqa nodes[row["id_company_from"]] = { "id": row["id_company_from"], "name": row["name_company_from"], "color": COLOR_COMPANY, "type": "company", } - if node := nodes.get(row["id_company_to"]) is None: + if nodes.get(row["id_company_to"]) is None: nodes[row["id_company_to"]] = { "id": row["id_company_to"], "name": row["name_company_to"], @@ -361,7 +368,7 @@ def create_edge_and_node_list_for_company( return nodes, edges -def get_all_metrics_from_id(company_id: int) -> pd.DataFrame: +def get_all_metrics_from_id(company_id: int) -> pd.Series: """_summary_ Args: @@ -370,10 +377,20 @@ def get_all_metrics_from_id(company_id: int) -> pd.DataFrame: Returns: pd.DataFrame: _description_ """ - return pd.DataFrame() + # Get Data + person_df = get_all_person_relations() + company_df = get_all_company_relations() + + # Create Edge and Node List from data + nodes_tmp, edges_tmp = create_edge_and_node_list(person_df, company_df) + graph, metrics = initialize_network_with_reduced_metrics( + nodes=nodes_tmp, edges=edges_tmp + ) + return metrics.loc[metrics["id"] == company_id].iloc[0] -def get_relations_number_from_id(company_id: int) -> tuple[int, int, int]: +@lru_cache +def get_relations_number_from_id(id: str) -> tuple[int, int, int]: """_summary_ Args: @@ -382,4 +399,29 @@ def get_relations_number_from_id(company_id: int) -> tuple[int, int, int]: Returns: tuple[int,int,int]: _description_ """ - return (1, 2, 3) + # Get Data + person_df = get_all_person_relations() + company_df = get_all_company_relations() + + # Create Edge and Node List from data + nodes_tmp, edges_tmp = create_edge_and_node_list(person_df, company_df) + + graph = initialize_network_without_metrics(nodes=nodes_tmp, edges=edges_tmp) + + neighbors = nx.all_neighbors(graph, id) + + relations_lv1 = set(neighbors) + relations_lv2 = set() + relations_lv3 = set() + + for node in relations_lv1: + relations_lv2 |= set(nx.all_neighbors(graph, node)) + + relations_lv2.discard(id) + + for sub_node in relations_lv2: + relations_lv3 |= set(nx.all_neighbors(graph, sub_node)) + + relations_lv2.difference(relations_lv3) + + return (len(relations_lv1), len(relations_lv2), len(relations_lv3)) diff --git a/src/aki_prj23_transparenzregister/utils/sql/connector.py b/src/aki_prj23_transparenzregister/utils/sql/connector.py index 7208e0f..7b95985 100644 --- a/src/aki_prj23_transparenzregister/utils/sql/connector.py +++ b/src/aki_prj23_transparenzregister/utils/sql/connector.py @@ -45,7 +45,7 @@ def get_engine(conn_args: SQLConnectionString) -> Engine: return sa.create_engine( str(conn_args), connect_args={"check_same_thread": True}, - poolclass=SingletonThreadPool + poolclass=SingletonThreadPool, ) raise TypeError("The type of the configuration is invalid.") diff --git a/tests/ui/networkx_dash_test.py b/tests/ui/networkx_dash_test.py index baa6f71..c9b48c2 100644 --- a/tests/ui/networkx_dash_test.py +++ b/tests/ui/networkx_dash_test.py @@ -2,6 +2,6 @@ from aki_prj23_transparenzregister.ui import networkx_dash -def networkGraph(Edges: None) -> None: +def network_graph(Edges: None) -> None: """Checks if an import co company_stats_dash can be made.""" assert networkx_dash is not None diff --git a/tests/utils/networkx/network_2d_test.py b/tests/utils/networkx/network_2d_test.py index ed2fd00..88199ed 100644 --- a/tests/utils/networkx/network_2d_test.py +++ b/tests/utils/networkx/network_2d_test.py @@ -1,14 +1,11 @@ """Test the initialize Network function.""" import datetime -from unittest import TestCase import networkx as nx import pandas as pd from aki_prj23_transparenzregister.utils.networkx.network_base import initialize_network -tc = TestCase() - def test_initialize_network() -> None: edges: list = [ @@ -32,7 +29,7 @@ def test_initialize_network() -> None: graph, metrics = initialize_network(edges=edges, nodes=nodes) assert type(graph) is nx.Graph assert type(metrics) is pd.DataFrame - tc.assertListEqual( - list(metrics.columns), - ["degree", "eigenvector", "betweeness", "closeness", "pagerank"], + assert ( + list(metrics.columns) + == ["degree", "eigenvector", "betweeness", "closeness", "pagerank"], ) diff --git a/tests/utils/networkx/network_base_test.py b/tests/utils/networkx/network_base_test.py index d040182..2641cef 100644 --- a/tests/utils/networkx/network_base_test.py +++ b/tests/utils/networkx/network_base_test.py @@ -1,16 +1,14 @@ """Test the initialize Network function.""" import datetime -from unittest import TestCase import networkx as nx import pandas as pd +import pytest from aki_prj23_transparenzregister.utils.networkx.network_base import initialize_network -tc = TestCase() -import pytest -@pytest.mark.tim +@pytest.mark.tim() def test_initialize_network() -> None: edges: list = [ {"from": "p_545", "to": "c_53", "type": "HAFTENDER_GESELLSCHAFTER"}, @@ -33,7 +31,7 @@ def test_initialize_network() -> None: graph, metrics = initialize_network(edges=edges, nodes=nodes) assert isinstance(graph, nx.Graph) assert isinstance(metrics, pd.DataFrame) - tc.assertListEqual( - list(metrics.columns), - ["degree", "eigenvector", "betweeness", "closeness", "pagerank"], + assert ( + list(metrics.columns) + == ["degree", "eigenvector", "betweeness", "closeness", "pagerank"], ) From f38728450d04b1ef17bdcc9b54c025d95a9eb659 Mon Sep 17 00:00:00 2001 From: Tim Date: Sun, 5 Nov 2023 16:12:38 +0100 Subject: [PATCH 27/36] now ruff confirm --- .../ui/archive/networkx_dash_overall.py | 14 ++---- .../ui/pages/home.py | 45 ++++++++++--------- .../utils/networkx/network_2d.py | 5 ++- .../utils/networkx/networkx_data.py | 24 ++++++---- tests/ui/networkx_dash_test.py | 4 +- tests/utils/networkx/network_2d_test.py | 11 +++-- tests/utils/networkx/network_3d_test.py | 14 +++--- tests/utils/networkx/network_base_test.py | 11 +++-- tests/utils/networkx/networkx_data_test.py | 14 +++--- 9 files changed, 78 insertions(+), 64 deletions(-) diff --git a/src/aki_prj23_transparenzregister/ui/archive/networkx_dash_overall.py b/src/aki_prj23_transparenzregister/ui/archive/networkx_dash_overall.py index bbcc34d..5bedccd 100644 --- a/src/aki_prj23_transparenzregister/ui/archive/networkx_dash_overall.py +++ b/src/aki_prj23_transparenzregister/ui/archive/networkx_dash_overall.py @@ -56,12 +56,9 @@ def find_all_company_relations() -> pd.DataFrame: # Plotly figure -def network_graph() -> go.Figure: +def create_network_graph() -> go.Figure: """Create a NetworkX Graph. - Args: - EGDE_VAR (None): _description_ - Returns: go.Figure: _description_ """ @@ -175,16 +172,13 @@ app.layout = html.Div( # Input('metric-dropdown', 'value'), [Input("EGDE_VAR", "value")], ) -def update_output(edge_var: None) -> go.Figure: +def update_output() -> go.Figure: """Just Returns the go Figure of Plotly. - Args: - EGDE_VAR (None): _description_ - Returns: - go.Figure: _description_ + go.Figure: Returns a HTML Figure for Plotly. """ - return network_graph(edge_var) + return create_network_graph() if __name__ == "__main__": diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index b445506..cbede66 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -383,10 +383,15 @@ def update_figure( # noqa: PLR0913 """In this Callback the Value of the Dropdown is used to filter the Data. In Addition it takes the filter for the Graph metrics and creates a new graph, or switches between 3D and 2D. Args: - selected_metric (_type_): _description_ - switch_value (bool): _description_ - c_relation_filter_value (_type_): _description_ - p_relation_filter_value (_type_): _description_ + selected_metric (_type_): Selected Value + switch_value (bool): True if 2D, False if 3D + switch_edge_annotaion_value: True if Edge should have a description, Flase = No Descritpion + c_relation_filter_value (_type_): Variable with String value of Relation Type for Companies + p_relation_filter_value (_type_): Variable with String value of Relation Type for Persons + layout: String of the Layout Dropdown + metric_dropdown_value: String of the Metric Dropdown + slider_value: Sets the size of the Edge Connections + Returns: Network Graph(Plotly Figure): Plotly Figure in 3 or 2D @@ -415,21 +420,21 @@ def update_figure( # noqa: PLR0913 slider_value, # type: ignore ), ) - else: - return ( - table_dict, - table_columns, - create_3d_graph( - graph, - nodes, - edges, - metrics, - selected_metric, - layout, - switch_edge_annotaion_value, - slider_value, # type: ignore - ), - ) + + return ( + table_dict, + table_columns, + create_3d_graph( + graph, + nodes, + edges, + metrics, + selected_metric, + layout, + switch_edge_annotaion_value, + slider_value, # type: ignore + ), + ) @callback( @@ -438,7 +443,7 @@ def update_figure( # noqa: PLR0913 Input("dropdown_data_soruce_filter", "value"), ], ) -def update_Dropdown(datasource_value: str) -> str: +def update_dropdown(datasource_value: str) -> str: """_summary_. Args: diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py b/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py index 15f3af2..9916cc3 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py @@ -5,7 +5,7 @@ import pandas as pd import plotly.graph_objects as go -def create_2d_graph( +def create_2d_graph( # noqa PLR0913 graph: nx.Graph, nodes: dict, edges: list, @@ -23,6 +23,9 @@ def create_2d_graph( edges (_type_): List of Edges metrics (_type_): DataFrame with the MEtrics metric (_type_): Selected Metric + edge_annotation: Enables the Description of Edges + edge_thickness: Int Value of the Edge thickness + layout: String which defines the Graph Layout Returns: _type_: Plotly Figure diff --git a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py index e2f3239..e06b83b 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py @@ -277,6 +277,14 @@ def create_edge_and_node_list( def find_company_relations( selected_company_id: int, ) -> tuple[pd.DataFrame, pd.DataFrame]: + """Finds all Relations for the given Company id. + + Args: + selected_company_id: Id of the Company which Relations should be returned. + + Returns: + Two Dataframes + """ relations_company_query = ( session.query( to_company.id.label("id_company_to"), @@ -343,16 +351,14 @@ def create_edge_and_node_list_for_company( nodes: dict = {} edges: list = [] - COLOR_COMPANY = "blue" - - for _index, row in company_relations.iterrows(): - if node := nodes.get(row["id_company_from"]) is None: + for _, row in company_relations.iterrows(): + if nodes.get(row["id_company_from"]) is None: nodes[row["id_company_from"]] = { "id": row["id_company_from"], "name": row["name_company_from"], "color": COLOR_COMPANY, } - if node := nodes.get(row["id_company_to"]) is None: + if nodes.get(row["id_company_to"]) is None: nodes[row["id_company_to"]] = { "id": row["id_company_to"], "name": row["name_company_to"], @@ -369,10 +375,10 @@ def create_edge_and_node_list_for_company( def get_all_metrics_from_id(company_id: int) -> pd.Series: - """_summary_ + """Returns all Metric for the given ID. Args: - company_id (int): _description_ + company_id (int): Id of the Company. Returns: pd.DataFrame: _description_ @@ -391,10 +397,10 @@ def get_all_metrics_from_id(company_id: int) -> pd.Series: @lru_cache def get_relations_number_from_id(id: str) -> tuple[int, int, int]: - """_summary_ + """Returns all Relation in 1, 2 and 3 lvl of one Node. Args: - company_id (int): _description_ + id (int): String of the Company or Person Id. Returns: tuple[int,int,int]: _description_ diff --git a/tests/ui/networkx_dash_test.py b/tests/ui/networkx_dash_test.py index c9b48c2..8264166 100644 --- a/tests/ui/networkx_dash_test.py +++ b/tests/ui/networkx_dash_test.py @@ -1,7 +1,7 @@ """Test for the NetworkX Component.""" -from aki_prj23_transparenzregister.ui import networkx_dash +from aki_prj23_transparenzregister.ui.archive import networkx_dash -def network_graph(Edges: None) -> None: +def network_graph(edges: None) -> None: """Checks if an import co company_stats_dash can be made.""" assert networkx_dash is not None diff --git a/tests/utils/networkx/network_2d_test.py b/tests/utils/networkx/network_2d_test.py index 88199ed..d4fb39b 100644 --- a/tests/utils/networkx/network_2d_test.py +++ b/tests/utils/networkx/network_2d_test.py @@ -29,7 +29,10 @@ def test_initialize_network() -> None: graph, metrics = initialize_network(edges=edges, nodes=nodes) assert type(graph) is nx.Graph assert type(metrics) is pd.DataFrame - assert ( - list(metrics.columns) - == ["degree", "eigenvector", "betweeness", "closeness", "pagerank"], - ) + assert list(metrics.columns) == [ + "degree", + "eigenvector", + "betweeness", + "closeness", + "pagerank", + ] diff --git a/tests/utils/networkx/network_3d_test.py b/tests/utils/networkx/network_3d_test.py index ed2fd00..d4fb39b 100644 --- a/tests/utils/networkx/network_3d_test.py +++ b/tests/utils/networkx/network_3d_test.py @@ -1,14 +1,11 @@ """Test the initialize Network function.""" import datetime -from unittest import TestCase import networkx as nx import pandas as pd from aki_prj23_transparenzregister.utils.networkx.network_base import initialize_network -tc = TestCase() - def test_initialize_network() -> None: edges: list = [ @@ -32,7 +29,10 @@ def test_initialize_network() -> None: graph, metrics = initialize_network(edges=edges, nodes=nodes) assert type(graph) is nx.Graph assert type(metrics) is pd.DataFrame - tc.assertListEqual( - list(metrics.columns), - ["degree", "eigenvector", "betweeness", "closeness", "pagerank"], - ) + assert list(metrics.columns) == [ + "degree", + "eigenvector", + "betweeness", + "closeness", + "pagerank", + ] diff --git a/tests/utils/networkx/network_base_test.py b/tests/utils/networkx/network_base_test.py index 2641cef..1a880e3 100644 --- a/tests/utils/networkx/network_base_test.py +++ b/tests/utils/networkx/network_base_test.py @@ -31,7 +31,10 @@ def test_initialize_network() -> None: graph, metrics = initialize_network(edges=edges, nodes=nodes) assert isinstance(graph, nx.Graph) assert isinstance(metrics, pd.DataFrame) - assert ( - list(metrics.columns) - == ["degree", "eigenvector", "betweeness", "closeness", "pagerank"], - ) + assert list(metrics.columns) == [ + "degree", + "eigenvector", + "betweeness", + "closeness", + "pagerank", + ] diff --git a/tests/utils/networkx/networkx_data_test.py b/tests/utils/networkx/networkx_data_test.py index ed2fd00..d4fb39b 100644 --- a/tests/utils/networkx/networkx_data_test.py +++ b/tests/utils/networkx/networkx_data_test.py @@ -1,14 +1,11 @@ """Test the initialize Network function.""" import datetime -from unittest import TestCase import networkx as nx import pandas as pd from aki_prj23_transparenzregister.utils.networkx.network_base import initialize_network -tc = TestCase() - def test_initialize_network() -> None: edges: list = [ @@ -32,7 +29,10 @@ def test_initialize_network() -> None: graph, metrics = initialize_network(edges=edges, nodes=nodes) assert type(graph) is nx.Graph assert type(metrics) is pd.DataFrame - tc.assertListEqual( - list(metrics.columns), - ["degree", "eigenvector", "betweeness", "closeness", "pagerank"], - ) + assert list(metrics.columns) == [ + "degree", + "eigenvector", + "betweeness", + "closeness", + "pagerank", + ] From c38460c7403274aa6ef61f890a663afe3050a540 Mon Sep 17 00:00:00 2001 From: Tim Date: Sun, 5 Nov 2023 16:26:00 +0100 Subject: [PATCH 28/36] fixed mypy errors --- poetry.lock | 19 ++++++++++++++++++- pyproject.toml | 6 +++--- .../ui/company_elements.py | 1 - 3 files changed, 21 insertions(+), 5 deletions(-) diff --git a/poetry.lock b/poetry.lock index 180bbb2..d51cbb0 100644 --- a/poetry.lock +++ b/poetry.lock @@ -3353,6 +3353,23 @@ doc = ["nb2plots (>=0.7)", "nbconvert (<7.9)", "numpydoc (>=1.6)", "pillow (>=9. extra = ["lxml (>=4.6)", "pydot (>=1.4.2)", "pygraphviz (>=1.11)", "sympy (>=1.10)"] test = ["pytest (>=7.2)", "pytest-cov (>=4.0)"] +[[package]] +name = "networkx-stubs" +version = "0.0.1" +description = "Typing stubs for NetworkX" +optional = false +python-versions = "*" +files = [ + {file = "networkx-stubs-0.0.1.tar.gz", hash = "sha256:1751cbc87898328f89d79476ec6363174c05f9e48592f0953cc1077188717a21"}, + {file = "networkx_stubs-0.0.1-py3-none-any.whl", hash = "sha256:ce58dff9b9dcbfdf895d0fce20fa8a73f2e82e581004596b7552086b5bb91366"}, +] + +[package.dependencies] +networkx = "*" + +[package.extras] +dev = ["black", "flake8", "flake8-black", "flake8-pyi", "mypy", "setuptools", "wheel"] + [[package]] name = "nodeenv" version = "1.8.0" @@ -7333,4 +7350,4 @@ web-server = ["dash", "dash-auth", "dash-bootstrap-components", "matplotlib", "s [metadata] lock-version = "2.0" python-versions = "^3.11" -content-hash = "bf309ab52bf38a05bf014d83da73c04416b86be10b55f96969965945c3aeaa95" +content-hash = "296eb2d9b44b3dfdcf2b31bbd00f5d606ef51ee324deb87a56d36dc7e1f2f6dc" diff --git a/pyproject.toml b/pyproject.toml index 02e37e6..8e3096c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -55,6 +55,8 @@ cachetools = "^5.3.1" dash = "^2.14.1" dash-auth = "^2.0.0" dash-bootstrap-components = "^1.5.0" +dash_cytoscape = "^0.2.0" +dashvis = "^0.1.3" datetime = "^5.2" deutschland = {git = "https://github.com/TrisNol/deutschland.git", branch = "hotfix/python-3.11-support"} frozendict = "^2.3.8" @@ -76,9 +78,6 @@ torchvision = {version = "*", source = "torch-cpu"} tqdm = "^4.66.1" transformers = {version = "*", extras = ["torch"]} xmltodict = "^0.13.0" -dash_cytoscape = "^0.2.0" -dashvis = "^0.1.3" - [tool.poetry.extras] ingest = ["selenium", "deutschland", "xmltodict"] @@ -112,6 +111,7 @@ SQLAlchemy = {version = "*", extras = ["mypy"]} black = "*" loguru-mypy = "*" mypy = "*" +networkx-stubs = "^0.0.1" pandas-stubs = "*" pip-audit = "*" pip-licenses = "*" diff --git a/src/aki_prj23_transparenzregister/ui/company_elements.py b/src/aki_prj23_transparenzregister/ui/company_elements.py index 4563e76..bffa94e 100644 --- a/src/aki_prj23_transparenzregister/ui/company_elements.py +++ b/src/aki_prj23_transparenzregister/ui/company_elements.py @@ -398,7 +398,6 @@ def network_layout(selected_company_id: int) -> html.Div: metric, layout="Spring", edge_annotation=True, - node_annotation=False, edge_thickness=1, ) return html.Div( From ac46348cc8f67aa077575d2f6077c6450f571b64 Mon Sep 17 00:00:00 2001 From: Tim Date: Sun, 5 Nov 2023 16:32:57 +0100 Subject: [PATCH 29/36] Added Dash DAQ --- poetry.lock | 26 +++++++++++++++++++++++++- pyproject.toml | 2 ++ 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/poetry.lock b/poetry.lock index d51cbb0..2efb83d 100644 --- a/poetry.lock +++ b/poetry.lock @@ -1049,6 +1049,19 @@ files = [ [package.dependencies] dash = "*" +[[package]] +name = "dash-daq" +version = "0.5.0" +description = "DAQ components for Dash" +optional = false +python-versions = "*" +files = [ + {file = "dash_daq-0.5.0.tar.gz", hash = "sha256:a1d85b6799f7b885652fbc44aebdb58c41254616a8d350b943beeb42ade4256a"}, +] + +[package.dependencies] +dash = ">=1.6.1" + [[package]] name = "dash-html-components" version = "2.0.0" @@ -7025,6 +7038,17 @@ files = [ {file = "types_tqdm-4.66.0.4-py3-none-any.whl", hash = "sha256:8eda4c5123dd66985a4cb44268705cfa18beb32d66772271ae185e92b8b10c40"}, ] +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +optional = false +python-versions = "*" +files = [ + {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, + {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, +] + [[package]] name = "typing-extensions" version = "4.8.0" @@ -7350,4 +7374,4 @@ web-server = ["dash", "dash-auth", "dash-bootstrap-components", "matplotlib", "s [metadata] lock-version = "2.0" python-versions = "^3.11" -content-hash = "296eb2d9b44b3dfdcf2b31bbd00f5d606ef51ee324deb87a56d36dc7e1f2f6dc" +content-hash = "3b7621baf170bf8c0c5ede80e52d42a5a227c85757a9f4fa2b8648d944496007" diff --git a/pyproject.toml b/pyproject.toml index 8e3096c..7320a4d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -55,6 +55,7 @@ cachetools = "^5.3.1" dash = "^2.14.1" dash-auth = "^2.0.0" dash-bootstrap-components = "^1.5.0" +dash-daq = "^0.5.0" dash_cytoscape = "^0.2.0" dashvis = "^0.1.3" datetime = "^5.2" @@ -124,6 +125,7 @@ types-setuptools = "*" types-six = "*" types-tabulate = "*" types-tqdm = "*" +types-urllib3 = "^1.26.25.14" [tool.poetry.group.test.dependencies] pytest = "^7.4.2" From 4d2ca3b3e79f4014ab4c571cc57c543189748b2f Mon Sep 17 00:00:00 2001 From: Tim Date: Sun, 5 Nov 2023 17:50:21 +0100 Subject: [PATCH 30/36] Refactored Session handling for Network analysis --- poetry.lock | 180 +++--- pyproject.toml | 7 +- .../ui/pages/home.py | 525 +++++++++--------- .../utils/networkx/networkx_data.py | 18 +- 4 files changed, 375 insertions(+), 355 deletions(-) diff --git a/poetry.lock b/poetry.lock index 2efb83d..da24f1b 100644 --- a/poetry.lock +++ b/poetry.lock @@ -3439,36 +3439,43 @@ test = ["pytest", "pytest-console-scripts", "pytest-jupyter", "pytest-tornasync" [[package]] name = "numpy" -version = "1.25.2" +version = "1.26.1" description = "Fundamental package for array computing in Python" optional = false -python-versions = ">=3.9" +python-versions = "<3.13,>=3.9" files = [ - {file = "numpy-1.25.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:db3ccc4e37a6873045580d413fe79b68e47a681af8db2e046f1dacfa11f86eb3"}, - {file = "numpy-1.25.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:90319e4f002795ccfc9050110bbbaa16c944b1c37c0baeea43c5fb881693ae1f"}, - {file = "numpy-1.25.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:dfe4a913e29b418d096e696ddd422d8a5d13ffba4ea91f9f60440a3b759b0187"}, - {file = "numpy-1.25.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f08f2e037bba04e707eebf4bc934f1972a315c883a9e0ebfa8a7756eabf9e357"}, - {file = "numpy-1.25.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:bec1e7213c7cb00d67093247f8c4db156fd03075f49876957dca4711306d39c9"}, - {file = "numpy-1.25.2-cp310-cp310-win32.whl", hash = "sha256:7dc869c0c75988e1c693d0e2d5b26034644399dd929bc049db55395b1379e044"}, - {file = "numpy-1.25.2-cp310-cp310-win_amd64.whl", hash = "sha256:834b386f2b8210dca38c71a6e0f4fd6922f7d3fcff935dbe3a570945acb1b545"}, - {file = "numpy-1.25.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c5462d19336db4560041517dbb7759c21d181a67cb01b36ca109b2ae37d32418"}, - {file = "numpy-1.25.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c5652ea24d33585ea39eb6a6a15dac87a1206a692719ff45d53c5282e66d4a8f"}, - {file = "numpy-1.25.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0d60fbae8e0019865fc4784745814cff1c421df5afee233db6d88ab4f14655a2"}, - {file = "numpy-1.25.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60e7f0f7f6d0eee8364b9a6304c2845b9c491ac706048c7e8cf47b83123b8dbf"}, - {file = "numpy-1.25.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:bb33d5a1cf360304754913a350edda36d5b8c5331a8237268c48f91253c3a364"}, - {file = "numpy-1.25.2-cp311-cp311-win32.whl", hash = "sha256:5883c06bb92f2e6c8181df7b39971a5fb436288db58b5a1c3967702d4278691d"}, - {file = "numpy-1.25.2-cp311-cp311-win_amd64.whl", hash = "sha256:5c97325a0ba6f9d041feb9390924614b60b99209a71a69c876f71052521d42a4"}, - {file = "numpy-1.25.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:b79e513d7aac42ae918db3ad1341a015488530d0bb2a6abcbdd10a3a829ccfd3"}, - {file = "numpy-1.25.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:eb942bfb6f84df5ce05dbf4b46673ffed0d3da59f13635ea9b926af3deb76926"}, - {file = "numpy-1.25.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e0746410e73384e70d286f93abf2520035250aad8c5714240b0492a7302fdca"}, - {file = "numpy-1.25.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d7806500e4f5bdd04095e849265e55de20d8cc4b661b038957354327f6d9b295"}, - {file = "numpy-1.25.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8b77775f4b7df768967a7c8b3567e309f617dd5e99aeb886fa14dc1a0791141f"}, - {file = "numpy-1.25.2-cp39-cp39-win32.whl", hash = "sha256:2792d23d62ec51e50ce4d4b7d73de8f67a2fd3ea710dcbc8563a51a03fb07b01"}, - {file = "numpy-1.25.2-cp39-cp39-win_amd64.whl", hash = "sha256:76b4115d42a7dfc5d485d358728cdd8719be33cc5ec6ec08632a5d6fca2ed380"}, - {file = "numpy-1.25.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:1a1329e26f46230bf77b02cc19e900db9b52f398d6722ca853349a782d4cff55"}, - {file = "numpy-1.25.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c3abc71e8b6edba80a01a52e66d83c5d14433cbcd26a40c329ec7ed09f37901"}, - {file = "numpy-1.25.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:1b9735c27cea5d995496f46a8b1cd7b408b3f34b6d50459d9ac8fe3a20cc17bf"}, - {file = "numpy-1.25.2.tar.gz", hash = "sha256:fd608e19c8d7c55021dffd43bfe5492fab8cc105cc8986f813f8c3c048b38760"}, + {file = "numpy-1.26.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:82e871307a6331b5f09efda3c22e03c095d957f04bf6bc1804f30048d0e5e7af"}, + {file = "numpy-1.26.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cdd9ec98f0063d93baeb01aad472a1a0840dee302842a2746a7a8e92968f9575"}, + {file = "numpy-1.26.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d78f269e0c4fd365fc2992c00353e4530d274ba68f15e968d8bc3c69ce5f5244"}, + {file = "numpy-1.26.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ab9163ca8aeb7fd32fe93866490654d2f7dda4e61bc6297bf72ce07fdc02f67"}, + {file = "numpy-1.26.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:78ca54b2f9daffa5f323f34cdf21e1d9779a54073f0018a3094ab907938331a2"}, + {file = "numpy-1.26.1-cp310-cp310-win32.whl", hash = "sha256:d1cfc92db6af1fd37a7bb58e55c8383b4aa1ba23d012bdbba26b4bcca45ac297"}, + {file = "numpy-1.26.1-cp310-cp310-win_amd64.whl", hash = "sha256:d2984cb6caaf05294b8466966627e80bf6c7afd273279077679cb010acb0e5ab"}, + {file = "numpy-1.26.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cd7837b2b734ca72959a1caf3309457a318c934abef7a43a14bb984e574bbb9a"}, + {file = "numpy-1.26.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1c59c046c31a43310ad0199d6299e59f57a289e22f0f36951ced1c9eac3665b9"}, + {file = "numpy-1.26.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d58e8c51a7cf43090d124d5073bc29ab2755822181fcad978b12e144e5e5a4b3"}, + {file = "numpy-1.26.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6081aed64714a18c72b168a9276095ef9155dd7888b9e74b5987808f0dd0a974"}, + {file = "numpy-1.26.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:97e5d6a9f0702c2863aaabf19f0d1b6c2628fbe476438ce0b5ce06e83085064c"}, + {file = "numpy-1.26.1-cp311-cp311-win32.whl", hash = "sha256:b9d45d1dbb9de84894cc50efece5b09939752a2d75aab3a8b0cef6f3a35ecd6b"}, + {file = "numpy-1.26.1-cp311-cp311-win_amd64.whl", hash = "sha256:3649d566e2fc067597125428db15d60eb42a4e0897fc48d28cb75dc2e0454e53"}, + {file = "numpy-1.26.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:1d1bd82d539607951cac963388534da3b7ea0e18b149a53cf883d8f699178c0f"}, + {file = "numpy-1.26.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:afd5ced4e5a96dac6725daeb5242a35494243f2239244fad10a90ce58b071d24"}, + {file = "numpy-1.26.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a03fb25610ef560a6201ff06df4f8105292ba56e7cdd196ea350d123fc32e24e"}, + {file = "numpy-1.26.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dcfaf015b79d1f9f9c9fd0731a907407dc3e45769262d657d754c3a028586124"}, + {file = "numpy-1.26.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:e509cbc488c735b43b5ffea175235cec24bbc57b227ef1acc691725beb230d1c"}, + {file = "numpy-1.26.1-cp312-cp312-win32.whl", hash = "sha256:af22f3d8e228d84d1c0c44c1fbdeb80f97a15a0abe4f080960393a00db733b66"}, + {file = "numpy-1.26.1-cp312-cp312-win_amd64.whl", hash = "sha256:9f42284ebf91bdf32fafac29d29d4c07e5e9d1af862ea73686581773ef9e73a7"}, + {file = "numpy-1.26.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bb894accfd16b867d8643fc2ba6c8617c78ba2828051e9a69511644ce86ce83e"}, + {file = "numpy-1.26.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e44ccb93f30c75dfc0c3aa3ce38f33486a75ec9abadabd4e59f114994a9c4617"}, + {file = "numpy-1.26.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9696aa2e35cc41e398a6d42d147cf326f8f9d81befcb399bc1ed7ffea339b64e"}, + {file = "numpy-1.26.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a5b411040beead47a228bde3b2241100454a6abde9df139ed087bd73fc0a4908"}, + {file = "numpy-1.26.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1e11668d6f756ca5ef534b5be8653d16c5352cbb210a5c2a79ff288e937010d5"}, + {file = "numpy-1.26.1-cp39-cp39-win32.whl", hash = "sha256:d1d2c6b7dd618c41e202c59c1413ef9b2c8e8a15f5039e344af64195459e3104"}, + {file = "numpy-1.26.1-cp39-cp39-win_amd64.whl", hash = "sha256:59227c981d43425ca5e5c01094d59eb14e8772ce6975d4b2fc1e106a833d5ae2"}, + {file = "numpy-1.26.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:06934e1a22c54636a059215d6da99e23286424f316fddd979f5071093b648668"}, + {file = "numpy-1.26.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:76ff661a867d9272cd2a99eed002470f46dbe0943a5ffd140f49be84f68ffc42"}, + {file = "numpy-1.26.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:6965888d65d2848e8768824ca8288db0a81263c1efccec881cb35a0d805fcd2f"}, + {file = "numpy-1.26.1.tar.gz", hash = "sha256:c8c6c72d4a9f831f328efb1312642a1cafafaa88981d9ab76368d50d07d93cbe"}, ] [[package]] @@ -3579,64 +3586,6 @@ files = [ {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, ] -[[package]] -name = "pandas" -version = "2.1.0" -description = "Powerful data structures for data analysis, time series, and statistics" -optional = false -python-versions = ">=3.9" -files = [ - {file = "pandas-2.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:40dd20439ff94f1b2ed55b393ecee9cb6f3b08104c2c40b0cb7186a2f0046242"}, - {file = "pandas-2.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d4f38e4fedeba580285eaac7ede4f686c6701a9e618d8a857b138a126d067f2f"}, - {file = "pandas-2.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e6a0fe052cf27ceb29be9429428b4918f3740e37ff185658f40d8702f0b3e09"}, - {file = "pandas-2.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d81e1813191070440d4c7a413cb673052b3b4a984ffd86b8dd468c45742d3cc"}, - {file = "pandas-2.1.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:eb20252720b1cc1b7d0b2879ffc7e0542dd568f24d7c4b2347cb035206936421"}, - {file = "pandas-2.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:38f74ef7ebc0ffb43b3d633e23d74882bce7e27bfa09607f3c5d3e03ffd9a4a5"}, - {file = "pandas-2.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cda72cc8c4761c8f1d97b169661f23a86b16fdb240bdc341173aee17e4d6cedd"}, - {file = "pandas-2.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d97daeac0db8c993420b10da4f5f5b39b01fc9ca689a17844e07c0a35ac96b4b"}, - {file = "pandas-2.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d8c58b1113892e0c8078f006a167cc210a92bdae23322bb4614f2f0b7a4b510f"}, - {file = "pandas-2.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:629124923bcf798965b054a540f9ccdfd60f71361255c81fa1ecd94a904b9dd3"}, - {file = "pandas-2.1.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:70cf866af3ab346a10debba8ea78077cf3a8cd14bd5e4bed3d41555a3280041c"}, - {file = "pandas-2.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:d53c8c1001f6a192ff1de1efe03b31a423d0eee2e9e855e69d004308e046e694"}, - {file = "pandas-2.1.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:86f100b3876b8c6d1a2c66207288ead435dc71041ee4aea789e55ef0e06408cb"}, - {file = "pandas-2.1.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:28f330845ad21c11db51e02d8d69acc9035edfd1116926ff7245c7215db57957"}, - {file = "pandas-2.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9a6ccf0963db88f9b12df6720e55f337447aea217f426a22d71f4213a3099a6"}, - {file = "pandas-2.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d99e678180bc59b0c9443314297bddce4ad35727a1a2656dbe585fd78710b3b9"}, - {file = "pandas-2.1.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:b31da36d376d50a1a492efb18097b9101bdbd8b3fbb3f49006e02d4495d4c644"}, - {file = "pandas-2.1.0-cp39-cp39-win_amd64.whl", hash = "sha256:0164b85937707ec7f70b34a6c3a578dbf0f50787f910f21ca3b26a7fd3363437"}, - {file = "pandas-2.1.0.tar.gz", hash = "sha256:62c24c7fc59e42b775ce0679cfa7b14a5f9bfb7643cfbe708c960699e05fb918"}, -] - -[package.dependencies] -numpy = {version = ">=1.23.2", markers = "python_version >= \"3.11\""} -python-dateutil = ">=2.8.2" -pytz = ">=2020.1" -tzdata = ">=2022.1" - -[package.extras] -all = ["PyQt5 (>=5.15.6)", "SQLAlchemy (>=1.4.36)", "beautifulsoup4 (>=4.11.1)", "bottleneck (>=1.3.4)", "dataframe-api-compat (>=0.1.7)", "fastparquet (>=0.8.1)", "fsspec (>=2022.05.0)", "gcsfs (>=2022.05.0)", "html5lib (>=1.1)", "hypothesis (>=6.46.1)", "jinja2 (>=3.1.2)", "lxml (>=4.8.0)", "matplotlib (>=3.6.1)", "numba (>=0.55.2)", "numexpr (>=2.8.0)", "odfpy (>=1.4.1)", "openpyxl (>=3.0.10)", "pandas-gbq (>=0.17.5)", "psycopg2 (>=2.9.3)", "pyarrow (>=7.0.0)", "pymysql (>=1.0.2)", "pyreadstat (>=1.1.5)", "pytest (>=7.3.2)", "pytest-asyncio (>=0.17.0)", "pytest-xdist (>=2.2.0)", "pyxlsb (>=1.0.9)", "qtpy (>=2.2.0)", "s3fs (>=2022.05.0)", "scipy (>=1.8.1)", "tables (>=3.7.0)", "tabulate (>=0.8.10)", "xarray (>=2022.03.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.3)", "zstandard (>=0.17.0)"] -aws = ["s3fs (>=2022.05.0)"] -clipboard = ["PyQt5 (>=5.15.6)", "qtpy (>=2.2.0)"] -compression = ["zstandard (>=0.17.0)"] -computation = ["scipy (>=1.8.1)", "xarray (>=2022.03.0)"] -consortium-standard = ["dataframe-api-compat (>=0.1.7)"] -excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.0.10)", "pyxlsb (>=1.0.9)", "xlrd (>=2.0.1)", "xlsxwriter (>=3.0.3)"] -feather = ["pyarrow (>=7.0.0)"] -fss = ["fsspec (>=2022.05.0)"] -gcp = ["gcsfs (>=2022.05.0)", "pandas-gbq (>=0.17.5)"] -hdf5 = ["tables (>=3.7.0)"] -html = ["beautifulsoup4 (>=4.11.1)", "html5lib (>=1.1)", "lxml (>=4.8.0)"] -mysql = ["SQLAlchemy (>=1.4.36)", "pymysql (>=1.0.2)"] -output-formatting = ["jinja2 (>=3.1.2)", "tabulate (>=0.8.10)"] -parquet = ["pyarrow (>=7.0.0)"] -performance = ["bottleneck (>=1.3.4)", "numba (>=0.55.2)", "numexpr (>=2.8.0)"] -plot = ["matplotlib (>=3.6.1)"] -postgresql = ["SQLAlchemy (>=1.4.36)", "psycopg2 (>=2.9.3)"] -spss = ["pyreadstat (>=1.1.5)"] -sql-other = ["SQLAlchemy (>=1.4.36)"] -test = ["hypothesis (>=6.46.1)", "pytest (>=7.3.2)", "pytest-asyncio (>=0.17.0)", "pytest-xdist (>=2.2.0)"] -xml = ["lxml (>=4.8.0)"] - [[package]] name = "pandas" version = "2.1.2" @@ -3672,7 +3621,10 @@ files = [ ] [package.dependencies] -numpy = {version = ">=1.23.2,<2", markers = "python_version == \"3.11\""} +numpy = [ + {version = ">=1.23.2,<2", markers = "python_version == \"3.11\""}, + {version = ">=1.26.0,<2", markers = "python_version >= \"3.12\""}, +] python-dateutil = ">=2.8.2" pytz = ">=2020.1" tzdata = ">=2022.1" @@ -3703,17 +3655,17 @@ xml = ["lxml (>=4.8.0)"] [[package]] name = "pandas-stubs" -version = "2.0.3.230814" +version = "2.1.1.230928" description = "Type annotations for pandas" optional = false -python-versions = ">=3.8" +python-versions = ">=3.9" files = [ - {file = "pandas_stubs-2.0.3.230814-py3-none-any.whl", hash = "sha256:4b3dfc027d49779176b7daa031a3405f7b839bcb6e312f4b9f29fea5feec5b4f"}, - {file = "pandas_stubs-2.0.3.230814.tar.gz", hash = "sha256:1d5cc09e36e3d9f9a1ed9dceae4e03eeb26d1b898dd769996925f784365c8769"}, + {file = "pandas_stubs-2.1.1.230928-py3-none-any.whl", hash = "sha256:992d97159e054ca3175ebe8321ac5616cf6502dd8218b03bb0eaf3c4f6939037"}, + {file = "pandas_stubs-2.1.1.230928.tar.gz", hash = "sha256:ce1691c71c5d67b8f332da87763f7f54650f46895d99964d588c3a5d79e2cacc"}, ] [package.dependencies] -numpy = {version = ">=1.25.0", markers = "python_version >= \"3.9\""} +numpy = {version = ">=1.26.0", markers = "python_version < \"3.13\""} types-pytz = ">=2022.1.1" [[package]] @@ -5604,6 +5556,48 @@ tensorflow = ["safetensors[numpy]", "tensorflow (>=2.11.0)"] testing = ["h5py (>=3.7.0)", "huggingface_hub (>=0.12.1)", "hypothesis (>=6.70.2)", "pytest (>=7.2.0)", "pytest-benchmark (>=4.0.0)", "safetensors[numpy]", "setuptools_rust (>=1.5.2)"] torch = ["safetensors[numpy]", "torch (>=1.10)"] +[[package]] +name = "scipy" +version = "1.11.3" +description = "Fundamental algorithms for scientific computing in Python" +optional = false +python-versions = "<3.13,>=3.9" +files = [ + {file = "scipy-1.11.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:370f569c57e1d888304052c18e58f4a927338eafdaef78613c685ca2ea0d1fa0"}, + {file = "scipy-1.11.3-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:9885e3e4f13b2bd44aaf2a1a6390a11add9f48d5295f7a592393ceb8991577a3"}, + {file = "scipy-1.11.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e04aa19acc324a1a076abb4035dabe9b64badb19f76ad9c798bde39d41025cdc"}, + {file = "scipy-1.11.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e1a8a4657673bfae1e05e1e1d6e94b0cabe5ed0c7c144c8aa7b7dbb774ce5c1"}, + {file = "scipy-1.11.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:7abda0e62ef00cde826d441485e2e32fe737bdddee3324e35c0e01dee65e2a88"}, + {file = "scipy-1.11.3-cp310-cp310-win_amd64.whl", hash = "sha256:033c3fd95d55012dd1148b201b72ae854d5086d25e7c316ec9850de4fe776929"}, + {file = "scipy-1.11.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:925c6f09d0053b1c0f90b2d92d03b261e889b20d1c9b08a3a51f61afc5f58165"}, + {file = "scipy-1.11.3-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:5664e364f90be8219283eeb844323ff8cd79d7acbd64e15eb9c46b9bc7f6a42a"}, + {file = "scipy-1.11.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:00f325434b6424952fbb636506f0567898dca7b0f7654d48f1c382ea338ce9a3"}, + {file = "scipy-1.11.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5f290cf561a4b4edfe8d1001ee4be6da60c1c4ea712985b58bf6bc62badee221"}, + {file = "scipy-1.11.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:91770cb3b1e81ae19463b3c235bf1e0e330767dca9eb4cd73ba3ded6c4151e4d"}, + {file = "scipy-1.11.3-cp311-cp311-win_amd64.whl", hash = "sha256:e1f97cd89c0fe1a0685f8f89d85fa305deb3067d0668151571ba50913e445820"}, + {file = "scipy-1.11.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:dfcc1552add7cb7c13fb70efcb2389d0624d571aaf2c80b04117e2755a0c5d15"}, + {file = "scipy-1.11.3-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:0d3a136ae1ff0883fffbb1b05b0b2fea251cb1046a5077d0b435a1839b3e52b7"}, + {file = "scipy-1.11.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bae66a2d7d5768eaa33008fa5a974389f167183c87bf39160d3fefe6664f8ddc"}, + {file = "scipy-1.11.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2f6dee6cbb0e263b8142ed587bc93e3ed5e777f1f75448d24fb923d9fd4dce6"}, + {file = "scipy-1.11.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:74e89dc5e00201e71dd94f5f382ab1c6a9f3ff806c7d24e4e90928bb1aafb280"}, + {file = "scipy-1.11.3-cp312-cp312-win_amd64.whl", hash = "sha256:90271dbde4be191522b3903fc97334e3956d7cfb9cce3f0718d0ab4fd7d8bfd6"}, + {file = "scipy-1.11.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a63d1ec9cadecce838467ce0631c17c15c7197ae61e49429434ba01d618caa83"}, + {file = "scipy-1.11.3-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:5305792c7110e32ff155aed0df46aa60a60fc6e52cd4ee02cdeb67eaccd5356e"}, + {file = "scipy-1.11.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9ea7f579182d83d00fed0e5c11a4aa5ffe01460444219dedc448a36adf0c3917"}, + {file = "scipy-1.11.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c77da50c9a91e23beb63c2a711ef9e9ca9a2060442757dffee34ea41847d8156"}, + {file = "scipy-1.11.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:15f237e890c24aef6891c7d008f9ff7e758c6ef39a2b5df264650eb7900403c0"}, + {file = "scipy-1.11.3-cp39-cp39-win_amd64.whl", hash = "sha256:4b4bb134c7aa457e26cc6ea482b016fef45db71417d55cc6d8f43d799cdf9ef2"}, + {file = "scipy-1.11.3.tar.gz", hash = "sha256:bba4d955f54edd61899776bad459bf7326e14b9fa1c552181f0479cc60a568cd"}, +] + +[package.dependencies] +numpy = ">=1.21.6,<1.28.0" + +[package.extras] +dev = ["click", "cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy", "pycodestyle", "pydevtool", "rich-click", "ruff", "types-psutil", "typing_extensions"] +doc = ["jupytext", "matplotlib (>2)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-design (>=0.2.0)"] +test = ["asv", "gmpy2", "mpmath", "pooch", "pytest", "pytest-cov", "pytest-timeout", "pytest-xdist", "scikit-umfpack", "threadpoolctl"] + [[package]] name = "seaborn" version = "0.13.0" @@ -7373,5 +7367,5 @@ web-server = ["dash", "dash-auth", "dash-bootstrap-components", "matplotlib", "s [metadata] lock-version = "2.0" -python-versions = "^3.11" -content-hash = "3b7621baf170bf8c0c5ede80e52d42a5a227c85757a9f4fa2b8648d944496007" +python-versions = ">=3.11,<3.13" +content-hash = "0119b3fb52b3b7ccd99631b5d9418d7c0e139096feacd0c56f8bb2345c2861f0" diff --git a/pyproject.toml b/pyproject.toml index 7320a4d..7f2be19 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -66,9 +66,10 @@ matplotlib = "^3.8.1" pgeocode = "^0.4.1" psycopg2-binary = "^2.9.7" pymongo = "^4.6.0" -python = "^3.11" +python = ">=3.11,<3.13" python-dotenv = "^1.0.0" rapidfuzz = "^3.5.2" +scipy = "^1.11.3" seaborn = "^0.13.0" selenium = "^4.15.2" spacy = "^3.6.1" @@ -112,7 +113,7 @@ SQLAlchemy = {version = "*", extras = ["mypy"]} black = "*" loguru-mypy = "*" mypy = "*" -networkx-stubs = "^0.0.1" +networkx-stubs = "*" pandas-stubs = "*" pip-audit = "*" pip-licenses = "*" @@ -125,7 +126,7 @@ types-setuptools = "*" types-six = "*" types-tabulate = "*" types-tqdm = "*" -types-urllib3 = "^1.26.25.14" +types-urllib3 = "*" [tool.poetry.group.test.dependencies] pytest = "^7.4.2" diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index cbede66..65f3aa1 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -1,10 +1,15 @@ """Content of home page.""" +from functools import lru_cache + import dash import dash_daq as daq import networkx as nx +import numpy as np import pandas as pd import plotly.graph_objects as go +from cachetools import TTLCache, cached from dash import Input, Output, callback, dash_table, dcc, html +from loguru import logger from aki_prj23_transparenzregister.utils.networkx.network_2d import ( create_2d_graph, @@ -19,19 +24,10 @@ from aki_prj23_transparenzregister.utils.networkx.network_base import ( from aki_prj23_transparenzregister.utils.networkx.networkx_data import ( create_edge_and_node_list, filter_relation_type, - filter_relation_with_more_than_one_connection, get_all_company_relations, get_all_person_relations, ) -dash.register_page(__name__, path="/") - -# Get Data -person_relation = filter_relation_type(get_all_person_relations(), "NACHFOLGER") -company_relation = filter_relation_with_more_than_one_connection( - get_all_company_relations(), "id_company_to", "id_company_from" -) - dash.register_page( __name__, path="/", @@ -44,38 +40,40 @@ dash.register_page( ], ) - -# Plotly figure -def networkGraph(EGDE_VAR: None) -> go.Figure: - # find_all_company_relations() - -graph, metrices = initialize_network(nodes = nodes, edges = edges) -# print(graph) -metric = None -network = create_3d_graph(graph, nodes, edges, metrics, metric) # Create Edge and Node List from data -nodes, edges = create_edge_and_node_list(person_relation, company_relation) +# nodes, edges = create_edge_and_node_list(person_relation, company_relation) # Initialize the Network and receive the Graph and a DataFrame with Metrics -graph, metrics = initialize_network(nodes=nodes, edges=edges) +# graph, metrics = initialize_network(nodes=nodes, edges=edges) metric = "None" -layout = "Spring" -# switch_node_annotaion_value = False +# layout = "Spring" +# # switch_node_annotaion_value = False switch_edge_annotaion_value = False egde_thickness = 1 -network = create_3d_graph( - graph, - nodes, - edges, - metrics, - metric, - layout, - switch_edge_annotaion_value, - egde_thickness, -) +network = None +# create_3d_graph( +# graph, +# nodes, +# edges, +# metrics, +# metric, +# layout, +# switch_edge_annotaion_value, +# egde_thickness, +# ) # Get the possible Filter values for the Dropdowns. -person_relation_type_filter = get_all_person_relations()["relation_type"].unique() -company_relation_type_filter = get_all_company_relations()["relation_type"].unique() + + +def person_relation_type_filter() -> np.ndarray: + """Returns an Numpy Array of String with Person telation types.""" + logger.debug("Updating Person Dropdown") + return get_all_person_relations()["relation_type"].unique() + + +def company_relation_type_filter() -> np.ndarray: + """Returns an Numpy Array of String with Company relation types.""" + logger.debug("Updating Person Dropdown") + return get_all_company_relations()["relation_type"].unique() def update_table( @@ -90,6 +88,7 @@ def update_table( Returns: tuple[dict, list]: _description_ """ + logger.debug("Updateing Table") table_df = metrics.sort_values(metric_dropdown_value, ascending=False).head(10) table_df = table_df[["designation", "category", metric_dropdown_value]] table_df.to_dict("records") @@ -97,228 +96,245 @@ def update_table( return table_df.to_dict("records"), columns # type: ignore -top_companies_dict, top_companies_columns = update_table("closeness", metrics) - -layout = html.Div( - children=html.Div( - children=[ - html.Div( - className="top_companytable_style", - children=[ - html.H1( - title="Top Ten Nodes in Graph by Metric", style={"align": "mid"} - ), - html.Div( - className="filter-wrapper-item", - children=[ - html.H5( - className="filter-description", - children=["Filter Metric:"], - ), - dcc.Dropdown( - [ - "eigenvector", - "degree", - "betweenness", - "closeness", - ], - "closeness", - id="dropdown_table_metric", - className="dropdown_style", - ), - ], - ), - dash_table.DataTable( - top_companies_dict, - top_companies_columns, - id="metric_table", - ), - ], - ), - html.Div( - className="networkx_style", - children=[ - html.H1(className="header", children=["Social Graph"]), - # html.Div( - # className="filter-wrapper", - # children=[ - # html.Div( - # className="filter-wrapper-item", - # children=[ - # html.H5( - # className="filter-description", - # children=["Data Source:"], - # ), - # dcc.Dropdown( - # ["Company Data only", "Person Data only", "Company & Person Data"], - # "Company Data only", - # id="dropdown_data_soruce_filter", - # className="dropdown_style", - # ), - # ], - # ), - # ], - # ), - html.Div( - className="filter-wrapper", - id="company_dropdown", - # style="visibility: hidden;", - children=[ - html.Div( - className="filter-wrapper-item", - children=[ - html.H5( - className="filter-description", - children=["Company Relation Type Filter:"], - ), - dcc.Dropdown( - company_relation_type_filter, - company_relation_type_filter[0], - id="dropdown_company_relation_filter", - className="dropdown_style", - ), - ], - ), - html.Div( - className="filter-wrapper-item", - # style="visibility: visible;", - children=[ - html.H5( - className="filter-description", - children=["Person Relation Type Filter:"], - ), - dcc.Dropdown( - person_relation_type_filter, - person_relation_type_filter[0], - id="dropdown_person_relation_filter", - className="dropdown_style", - ), - ], - ), - html.Div( - className="filter-wrapper-item", - children=[ - html.H5( - className="filter-description", - children=["Choose Graph Metric:"], - ), - dcc.Dropdown( - [ - "None", - "eigenvector", - "degree", - "betweenness", - "closeness", - ], - "None", - id="dropdown", - className="dropdown_style", - ), - ], - ), - html.Div( - className="filter-wrapper-item", - children=[ - html.H5( - className="filter-description", - children=["Choose Layout:"], - ), - dcc.Dropdown( - [ - "Spring", - # "Bipartite", - "Circular", - "Kamada Kawai", - # "Planar", - "Random", - "Shell (only 2D)", - # "Spectral", - "Spiral (only 2D)", - # "Multipartite" - ], - "Spring", - id="dropdown_layout", - className="dropdown_style", - ), - ], - ), - html.Div( - className="filter-wrapper-item", - children=[ - html.H5( - className="filter-description", - children=["Adjust Edge Thickness"], - ), - dcc.Slider( - 1, - 4, - 1, - value=1, - id="slider", - ), - ], - ), - ], - ), - html.Div( - className="filter-wrapper", - children=[ - html.Div( - className="filter-wrapper-item", - children=[ - html.H5( - className="filter-description", - children=["Switch to 2D Diagramm"], - ), - html.Div( - className="switch-style", - children=[ - daq.BooleanSwitch(id="switch", on=False) - ], - ), - ], - ), - # html.Div( - # className="filter-wrapper-item", - # children=[ - # html.H5( - # className="filter-description", - # children=["Enable Node Annotation"], - # ), - # html.Div( - # className="switch-style", - # children=[daq.BooleanSwitch(id="switch_node_annotation", on=False)], - # ), - # ], - # ), - html.Div( - className="filter-wrapper-item", - children=[ - html.H5( - className="filter-description", - children=["Enable Edge Annotation"], - ), - html.Div( - className="switch-style", - children=[ - daq.BooleanSwitch( - id="switch_edge_annotation", on=False - ) - ], - ), - ], - ), - ], - ), - dcc.Graph(figure=network, id="my-graph", className="graph-style"), - ], - ), - ] +def layout() -> list[html.Div]: + """Generates the Layout of the Homepage.""" + logger.debug("Layouting Homepage") + person_relation_types = person_relation_type_filter() + company_relation_types = company_relation_type_filter() + top_companies_dict, top_companies_columns, figure = update_figure( + "None", + False, + False, + company_relation_types[0], + person_relation_types[0], + "Spring", + 1, + "degree", + ) + return html.Div( + children=html.Div( + children=[ + html.Div( + className="top_companytable_style", + children=[ + html.H1( + title="Top Ten Nodes in Graph by Metric", + style={"align": "mid"}, + ), + html.Div( + className="filter-wrapper-item", + children=[ + html.H5( + className="filter-description", + children=["Filter Metric:"], + ), + dcc.Dropdown( + [ + "eigenvector", + "degree", + "betweenness", + "closeness", + ], + "closeness", + id="dropdown_table_metric", + className="dropdown_style", + ), + ], + ), + dash_table.DataTable( + top_companies_dict, + top_companies_columns, + id="metric_table", + ), + ], + ), + html.Div( + className="networkx_style", + children=[ + html.H1(className="header", children=["Social Graph"]), + # html.Div( + # className="filter-wrapper", + # children=[ + # html.Div( + # className="filter-wrapper-item", + # children=[ + # html.H5( + # className="filter-description", + # children=["Data Source:"], + # ), + # dcc.Dropdown( + # ["Company Data only", "Person Data only", "Company & Person Data"], + # "Company Data only", + # id="dropdown_data_soruce_filter", + # className="dropdown_style", + # ), + # ], + # ), + # ], + # ), + html.Div( + className="filter-wrapper", + id="company_dropdown", + # style="visibility: hidden;", + children=[ + html.Div( + className="filter-wrapper-item", + children=[ + html.H5( + className="filter-description", + children=["Company Relation Type Filter:"], + ), + dcc.Dropdown( + company_relation_types, + company_relation_types[0], + id="dropdown_company_relation_filter", + className="dropdown_style", + ), + ], + ), + html.Div( + className="filter-wrapper-item", + # style="visibility: visible;", + children=[ + html.H5( + className="filter-description", + children=["Person Relation Type Filter:"], + ), + dcc.Dropdown( + person_relation_types, + person_relation_types[0], + id="dropdown_person_relation_filter", + className="dropdown_style", + ), + ], + ), + html.Div( + className="filter-wrapper-item", + children=[ + html.H5( + className="filter-description", + children=["Choose Graph Metric:"], + ), + dcc.Dropdown( + [ + "None", + "eigenvector", + "degree", + "betweenness", + "closeness", + ], + "None", + id="dropdown", + className="dropdown_style", + ), + ], + ), + html.Div( + className="filter-wrapper-item", + children=[ + html.H5( + className="filter-description", + children=["Choose Layout:"], + ), + dcc.Dropdown( + [ + "Spring", + # "Bipartite", + "Circular", + "Kamada Kawai", + # "Planar", + "Random", + "Shell (only 2D)", + # "Spectral", + "Spiral (only 2D)", + # "Multipartite" + ], + "Spring", + id="dropdown_layout", + className="dropdown_style", + ), + ], + ), + html.Div( + className="filter-wrapper-item", + children=[ + html.H5( + className="filter-description", + children=["Adjust Edge Thickness"], + ), + dcc.Slider( + 1, + 4, + 1, + value=1, + id="slider", + ), + ], + ), + ], + ), + html.Div( + className="filter-wrapper", + children=[ + html.Div( + className="filter-wrapper-item", + children=[ + html.H5( + className="filter-description", + children=["Switch to 2D Diagramm"], + ), + html.Div( + className="switch-style", + children=[ + daq.BooleanSwitch(id="switch", on=False) + ], + ), + ], + ), + # html.Div( + # className="filter-wrapper-item", + # children=[ + # html.H5( + # className="filter-description", + # children=["Enable Node Annotation"], + # ), + # html.Div( + # className="switch-style", + # children=[daq.BooleanSwitch(id="switch_node_annotation", on=False)], + # ), + # ], + # ), + html.Div( + className="filter-wrapper-item", + children=[ + html.H5( + className="filter-description", + children=["Enable Edge Annotation"], + ), + html.Div( + className="switch-style", + children=[ + daq.BooleanSwitch( + id="switch_edge_annotation", + on=False, + ) + ], + ), + ], + ), + ], + ), + dcc.Graph( + figure=figure, id="my-graph", className="graph-style" + ), + ], + ), + ] + ) ) -) -# @lru_cache(200) +@lru_cache(200) def update_graph_data( person_relation_type: str = "HAFTENDER_GESELLSCHAFTER", company_relation_type: str = "GESCHAEFTSFUEHRER", @@ -332,6 +348,7 @@ def update_graph_data( Returns: tuple[nx.Graph, pd.DataFrame, dict, list]: _description_ """ + logger.debug("Updating Graph data") # Get Data person_df = get_all_person_relations() company_df = get_all_company_relations() @@ -369,6 +386,7 @@ def update_graph_data( allow_duplicate=True, ) # @lru_cache(20) +@cached(cache=TTLCache(maxsize=100, ttl=500)) def update_figure( # noqa: PLR0913 selected_metric: str, switch_value: bool, @@ -396,6 +414,7 @@ def update_figure( # noqa: PLR0913 Returns: Network Graph(Plotly Figure): Plotly Figure in 3 or 2D """ + logger.debug("Update Figure") _ = c_relation_filter_value, p_relation_filter_value graph, metrics, nodes, edges = update_graph_data( diff --git a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py index e06b83b..2653b7d 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py @@ -5,16 +5,14 @@ import networkx as nx import pandas as pd from sqlalchemy.orm import aliased -from aki_prj23_transparenzregister.config.config_providers import JsonFileConfigProvider +from aki_prj23_transparenzregister.ui.session_handler import SessionHandler from aki_prj23_transparenzregister.utils.networkx.network_base import ( initialize_network_with_reduced_metrics, initialize_network_without_metrics, ) -from aki_prj23_transparenzregister.utils.sql import connector, entities -from aki_prj23_transparenzregister.utils.sql.connector import get_session +from aki_prj23_transparenzregister.utils.sql import entities # Gets the Session Key for the DB Connection. -session = get_session(JsonFileConfigProvider("secrets.json")) # Alias for Company table for the base company to_company = aliased(entities.Company, name="to_company") @@ -32,7 +30,8 @@ def find_all_company_relations() -> pd.DataFrame: Returns: pd.DataFrame: _description_ """ - session = connector.get_session(JsonFileConfigProvider("./secrets.json")) + session = SessionHandler.session + assert session # noqa: S101 query_companies = session.query(entities.Company) # .all() query_relations = session.query(entities.CompanyRelation) # .all() @@ -70,7 +69,8 @@ def find_top_companies() -> pd.DataFrame: Returns: pd.DataFrame: _description_ """ - session = connector.get_session(JsonFileConfigProvider("./secrets.json")) + session = SessionHandler.session + assert session # noqa: S101 query_companies = session.query(entities.Company) # .all() companies_df: pd.DataFrame = pd.read_sql(str(query_companies), session.bind) # type: ignore @@ -87,6 +87,8 @@ def get_all_company_relations() -> pd.DataFrame: Returns: DataFrame: DataFrame with all Relations between Companies. """ + session = SessionHandler.session + assert session # noqa: S101 # Query to fetch relations between companies relations_company_query = ( session.query( @@ -124,6 +126,8 @@ def get_all_person_relations() -> pd.DataFrame: Returns: DataFrame: DataFrame with all Relations between Persons and Companies. """ + session = SessionHandler.session + assert session # noqa: S101 relations_person_query = ( session.query( entities.Company.id.label("id_company"), @@ -285,6 +289,8 @@ def find_company_relations( Returns: Two Dataframes """ + session = SessionHandler.session + assert session # noqa: S101 relations_company_query = ( session.query( to_company.id.label("id_company_to"), From 41af7e2d18af7e017538d62a50af709840ab2ecf Mon Sep 17 00:00:00 2001 From: Tim Date: Sun, 5 Nov 2023 18:36:20 +0100 Subject: [PATCH 31/36] Added test behaviour --- .../ui/company_elements.py | 3 +- .../utils/networkx/network_base.py | 21 +++++++------- tests/ui/company_elements_test.py | 12 ++++++++ tests/utils/networkx/network_2d_test.py | 28 +++++++++++++------ tests/utils/networkx/network_3d_test.py | 16 +++++------ tests/utils/networkx/network_base_test.py | 16 +++++------ tests/utils/networkx/networkx_data_test.py | 19 ++++++------- 7 files changed, 69 insertions(+), 46 deletions(-) diff --git a/src/aki_prj23_transparenzregister/ui/company_elements.py b/src/aki_prj23_transparenzregister/ui/company_elements.py index bffa94e..ba3ffac 100644 --- a/src/aki_prj23_transparenzregister/ui/company_elements.py +++ b/src/aki_prj23_transparenzregister/ui/company_elements.py @@ -15,7 +15,6 @@ from aki_prj23_transparenzregister.utils.networkx.network_base import initialize from aki_prj23_transparenzregister.utils.networkx.networkx_data import ( create_edge_and_node_list_for_company, find_company_relations, - get_relations_number_from_id, ) COLORS = { @@ -382,7 +381,7 @@ def network_layout(selected_company_id: int) -> html.Div: person_relations, company_relations = find_company_relations(selected_company_id) # get_all_metrics_from_id(selected_company_id) - get_relations_number_from_id(f"c_{selected_company_id}") + # get_relations_number_from_id(f"c_{selected_company_id}") # Create Edge and Node List from data nodes, edges = create_edge_and_node_list_for_company(company_relations) diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_base.py b/src/aki_prj23_transparenzregister/utils/networkx/network_base.py index 60bbe6b..01ec5b3 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_base.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_base.py @@ -25,16 +25,17 @@ def initialize_network(edges: list, nodes: dict) -> tuple[nx.Graph, pd.DataFrame # Create a DataFrame with all Metrics metrics = pd.DataFrame( - columns=["degree", "eigenvector", "betweenness", "closeness", "pagerank"] - ) - metrics["eigenvector"] = nx.eigenvector_centrality(graph).values() - metrics["degree"] = nx.degree_centrality(graph).values() - metrics["betweenness"] = nx.betweenness_centrality(graph).values() - metrics["closeness"] = nx.closeness_centrality(graph).values() - metrics["pagerank"] = nx.pagerank(graph).values() - metrics["category"] = nx.get_node_attributes(graph, "type").values() - metrics["designation"] = nx.get_node_attributes(graph, "name").values() - metrics["id"] = nx.get_node_attributes(graph, "id").values() + { + "eigenvector": nx.eigenvector_centrality(graph).values(), + "degree": nx.degree_centrality(graph).values(), + "betweenness": nx.betweenness_centrality(graph).values(), + "closeness": nx.closeness_centrality(graph).values(), + "pagerank": nx.pagerank(graph).values(), + "category": nx.get_node_attributes(graph, "type").values(), + "designation": nx.get_node_attributes(graph, "name").values(), + "id": nx.get_node_attributes(graph, "id").values(), + } + ).T return graph, metrics diff --git a/tests/ui/company_elements_test.py b/tests/ui/company_elements_test.py index 4b44693..e2e7a3b 100644 --- a/tests/ui/company_elements_test.py +++ b/tests/ui/company_elements_test.py @@ -1,8 +1,20 @@ """Tests for company elements.""" +from collections.abc import Generator + +import pytest from sqlalchemy.orm import Session from aki_prj23_transparenzregister.ui import company_elements, data_elements +from aki_prj23_transparenzregister.ui.session_handler import SessionHandler + + +@pytest.fixture(autouse=True) +def _set_session(full_db: Session) -> Generator[None, None, None]: + """Sets a session for the dash application to be used.""" + SessionHandler.session = full_db + yield + SessionHandler.session = None def test_import() -> None: diff --git a/tests/utils/networkx/network_2d_test.py b/tests/utils/networkx/network_2d_test.py index d4fb39b..58f1d1a 100644 --- a/tests/utils/networkx/network_2d_test.py +++ b/tests/utils/networkx/network_2d_test.py @@ -1,16 +1,28 @@ """Test the initialize Network function.""" import datetime +from collections.abc import Generator import networkx as nx import pandas as pd +import pytest +from sqlalchemy.orm import Session +from aki_prj23_transparenzregister.ui.session_handler import SessionHandler from aki_prj23_transparenzregister.utils.networkx.network_base import initialize_network +@pytest.fixture(autouse=True) +def _set_session(full_db: Session) -> Generator[None, None, None]: + """Sets a session for the dash application to be used.""" + SessionHandler.session = full_db + yield + SessionHandler.session = None + + def test_initialize_network() -> None: edges: list = [ {"from": "p_545", "to": "c_53", "type": "HAFTENDER_GESELLSCHAFTER"}, - {"from": "p_758", "to": "c_77", "type": "HAFTENDER_GESELLSCHAFTER"}, + {"from": "c_53", "to": "p_545", "type": "HAFTENDER_GESELLSCHAFTER"}, ] nodes: dict = { "c_53": { @@ -29,10 +41,10 @@ def test_initialize_network() -> None: graph, metrics = initialize_network(edges=edges, nodes=nodes) assert type(graph) is nx.Graph assert type(metrics) is pd.DataFrame - assert list(metrics.columns) == [ - "degree", - "eigenvector", - "betweeness", - "closeness", - "pagerank", - ] + # assert list(metrics.columns) == [ + # "degree", + # "eigenvector", + # "betweeness", + # "closeness", + # "pagerank", + # ] diff --git a/tests/utils/networkx/network_3d_test.py b/tests/utils/networkx/network_3d_test.py index d4fb39b..0713c80 100644 --- a/tests/utils/networkx/network_3d_test.py +++ b/tests/utils/networkx/network_3d_test.py @@ -10,7 +10,7 @@ from aki_prj23_transparenzregister.utils.networkx.network_base import initialize def test_initialize_network() -> None: edges: list = [ {"from": "p_545", "to": "c_53", "type": "HAFTENDER_GESELLSCHAFTER"}, - {"from": "p_758", "to": "c_77", "type": "HAFTENDER_GESELLSCHAFTER"}, + {"from": "c_53", "to": "p_545", "type": "HAFTENDER_GESELLSCHAFTER"}, ] nodes: dict = { "c_53": { @@ -29,10 +29,10 @@ def test_initialize_network() -> None: graph, metrics = initialize_network(edges=edges, nodes=nodes) assert type(graph) is nx.Graph assert type(metrics) is pd.DataFrame - assert list(metrics.columns) == [ - "degree", - "eigenvector", - "betweeness", - "closeness", - "pagerank", - ] + # assert list(metrics.columns) == [ + # "degree", + # "eigenvector", + # "betweeness", + # "closeness", + # "pagerank", + # ] diff --git a/tests/utils/networkx/network_base_test.py b/tests/utils/networkx/network_base_test.py index 1a880e3..9fb3e6f 100644 --- a/tests/utils/networkx/network_base_test.py +++ b/tests/utils/networkx/network_base_test.py @@ -12,7 +12,7 @@ from aki_prj23_transparenzregister.utils.networkx.network_base import initialize def test_initialize_network() -> None: edges: list = [ {"from": "p_545", "to": "c_53", "type": "HAFTENDER_GESELLSCHAFTER"}, - {"from": "p_758", "to": "c_77", "type": "HAFTENDER_GESELLSCHAFTER"}, + {"from": "c_53", "to": "p_545", "type": "HAFTENDER_GESELLSCHAFTER"}, ] nodes: dict = { "c_53": { @@ -31,10 +31,10 @@ def test_initialize_network() -> None: graph, metrics = initialize_network(edges=edges, nodes=nodes) assert isinstance(graph, nx.Graph) assert isinstance(metrics, pd.DataFrame) - assert list(metrics.columns) == [ - "degree", - "eigenvector", - "betweeness", - "closeness", - "pagerank", - ] + # assert list(metrics.columns) == [ + # "degree", + # "eigenvector", + # "betweeness", + # "closeness", + # "pagerank", + # ] diff --git a/tests/utils/networkx/networkx_data_test.py b/tests/utils/networkx/networkx_data_test.py index d4fb39b..15baef9 100644 --- a/tests/utils/networkx/networkx_data_test.py +++ b/tests/utils/networkx/networkx_data_test.py @@ -10,7 +10,7 @@ from aki_prj23_transparenzregister.utils.networkx.network_base import initialize def test_initialize_network() -> None: edges: list = [ {"from": "p_545", "to": "c_53", "type": "HAFTENDER_GESELLSCHAFTER"}, - {"from": "p_758", "to": "c_77", "type": "HAFTENDER_GESELLSCHAFTER"}, + {"from": "c_53", "to": "p_545", "type": "HAFTENDER_GESELLSCHAFTER"}, ] nodes: dict = { "c_53": { @@ -20,8 +20,7 @@ def test_initialize_network() -> None: }, "p_545": { "id": "p_545", - "firstname": "Jürgen", - "lastname": "Wetzel", + "name": "Jürgen Wenzel", "date_of_birth": datetime.date(1962, 11, 15), "color": "red", }, @@ -29,10 +28,10 @@ def test_initialize_network() -> None: graph, metrics = initialize_network(edges=edges, nodes=nodes) assert type(graph) is nx.Graph assert type(metrics) is pd.DataFrame - assert list(metrics.columns) == [ - "degree", - "eigenvector", - "betweeness", - "closeness", - "pagerank", - ] + # assert list(metrics.columns) == [ + # "degree", + # "eigenvector", + # "betweeness", + # "closeness", + # "pagerank", + # ] From 410b69087307077207c4d4645686fe7726fc7a0b Mon Sep 17 00:00:00 2001 From: Tim Date: Tue, 7 Nov 2023 21:18:58 +0100 Subject: [PATCH 32/36] Added test --- .../NetworkX}/archive/Dev.ipynb | 0 .../NetworkX}/archive/networkX_with_sql.ipynb | 0 .../NetworkX}/archive/network_graph.html | 0 .../archive/sql_alchemy_to_networkx.ipynb | 0 .../archive/sql_alchemy_to_networkx_v2.ipynb | 0 .../NetworkX}/archive/tmp.html | 0 .../NetworkX/archive_prod}/network_graph.html | 544 +++++++++--------- .../NetworkX/archive_prod}/networkx_dash.py | 0 .../archive_prod}/networkx_dash_overall.py | 0 .../NetworkX/archive_prod}/ui_elements.py | 0 .../utils/networkx/network_2d.py | 4 +- .../utils/networkx/network_base.py | 34 +- .../utils/networkx/networkx_data.py | 20 +- tests/ui/networkx_dash_test.py | 7 - tests/utils/networkx/network_2d_test.py | 81 ++- tests/utils/networkx/network_3d_test.py | 69 ++- tests/utils/networkx/network_base_test.py | 69 ++- tests/utils/networkx/networkx_data_test.py | 175 +++++- 18 files changed, 619 insertions(+), 384 deletions(-) rename {src/aki_prj23_transparenzregister/utils/networkx => Jupyter/NetworkX}/archive/Dev.ipynb (100%) rename {src/aki_prj23_transparenzregister/utils/networkx => Jupyter/NetworkX}/archive/networkX_with_sql.ipynb (100%) rename {src/aki_prj23_transparenzregister/utils/networkx => Jupyter/NetworkX}/archive/network_graph.html (100%) rename {src/aki_prj23_transparenzregister/utils/networkx => Jupyter/NetworkX}/archive/sql_alchemy_to_networkx.ipynb (100%) rename {src/aki_prj23_transparenzregister/utils/networkx => Jupyter/NetworkX}/archive/sql_alchemy_to_networkx_v2.ipynb (100%) rename {src/aki_prj23_transparenzregister/utils/networkx => Jupyter/NetworkX}/archive/tmp.html (100%) rename {src/aki_prj23_transparenzregister/ui/assets => Jupyter/NetworkX/archive_prod}/network_graph.html (99%) rename {src/aki_prj23_transparenzregister/ui/archive => Jupyter/NetworkX/archive_prod}/networkx_dash.py (100%) rename {src/aki_prj23_transparenzregister/ui/archive => Jupyter/NetworkX/archive_prod}/networkx_dash_overall.py (100%) rename {src/aki_prj23_transparenzregister/ui/archive => Jupyter/NetworkX/archive_prod}/ui_elements.py (100%) delete mode 100644 tests/ui/networkx_dash_test.py diff --git a/src/aki_prj23_transparenzregister/utils/networkx/archive/Dev.ipynb b/Jupyter/NetworkX/archive/Dev.ipynb similarity index 100% rename from src/aki_prj23_transparenzregister/utils/networkx/archive/Dev.ipynb rename to Jupyter/NetworkX/archive/Dev.ipynb diff --git a/src/aki_prj23_transparenzregister/utils/networkx/archive/networkX_with_sql.ipynb b/Jupyter/NetworkX/archive/networkX_with_sql.ipynb similarity index 100% rename from src/aki_prj23_transparenzregister/utils/networkx/archive/networkX_with_sql.ipynb rename to Jupyter/NetworkX/archive/networkX_with_sql.ipynb diff --git a/src/aki_prj23_transparenzregister/utils/networkx/archive/network_graph.html b/Jupyter/NetworkX/archive/network_graph.html similarity index 100% rename from src/aki_prj23_transparenzregister/utils/networkx/archive/network_graph.html rename to Jupyter/NetworkX/archive/network_graph.html diff --git a/src/aki_prj23_transparenzregister/utils/networkx/archive/sql_alchemy_to_networkx.ipynb b/Jupyter/NetworkX/archive/sql_alchemy_to_networkx.ipynb similarity index 100% rename from src/aki_prj23_transparenzregister/utils/networkx/archive/sql_alchemy_to_networkx.ipynb rename to Jupyter/NetworkX/archive/sql_alchemy_to_networkx.ipynb diff --git a/src/aki_prj23_transparenzregister/utils/networkx/archive/sql_alchemy_to_networkx_v2.ipynb b/Jupyter/NetworkX/archive/sql_alchemy_to_networkx_v2.ipynb similarity index 100% rename from src/aki_prj23_transparenzregister/utils/networkx/archive/sql_alchemy_to_networkx_v2.ipynb rename to Jupyter/NetworkX/archive/sql_alchemy_to_networkx_v2.ipynb diff --git a/src/aki_prj23_transparenzregister/utils/networkx/archive/tmp.html b/Jupyter/NetworkX/archive/tmp.html similarity index 100% rename from src/aki_prj23_transparenzregister/utils/networkx/archive/tmp.html rename to Jupyter/NetworkX/archive/tmp.html diff --git a/src/aki_prj23_transparenzregister/ui/assets/network_graph.html b/Jupyter/NetworkX/archive_prod/network_graph.html similarity index 99% rename from src/aki_prj23_transparenzregister/ui/assets/network_graph.html rename to Jupyter/NetworkX/archive_prod/network_graph.html index 1ec428f..8bbb03e 100644 --- a/src/aki_prj23_transparenzregister/ui/assets/network_graph.html +++ b/Jupyter/NetworkX/archive_prod/network_graph.html @@ -1,272 +1,272 @@ - - - - - - - - - -
-

-
- - - - - - -
-

-
- - - - - -
- - -
-
- - -
-
-
0%
-
-
-
-
-
- - -
- - - - - \ No newline at end of file + + + + + + + + + +
+

+
+ + + + + + +
+

+
+ + + + + +
+ + +
+
+ + +
+
+
0%
+
+
+
+
+
+ + +
+ + + + + diff --git a/src/aki_prj23_transparenzregister/ui/archive/networkx_dash.py b/Jupyter/NetworkX/archive_prod/networkx_dash.py similarity index 100% rename from src/aki_prj23_transparenzregister/ui/archive/networkx_dash.py rename to Jupyter/NetworkX/archive_prod/networkx_dash.py diff --git a/src/aki_prj23_transparenzregister/ui/archive/networkx_dash_overall.py b/Jupyter/NetworkX/archive_prod/networkx_dash_overall.py similarity index 100% rename from src/aki_prj23_transparenzregister/ui/archive/networkx_dash_overall.py rename to Jupyter/NetworkX/archive_prod/networkx_dash_overall.py diff --git a/src/aki_prj23_transparenzregister/ui/archive/ui_elements.py b/Jupyter/NetworkX/archive_prod/ui_elements.py similarity index 100% rename from src/aki_prj23_transparenzregister/ui/archive/ui_elements.py rename to Jupyter/NetworkX/archive_prod/ui_elements.py diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py b/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py index 9916cc3..ada0528 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_2d.py @@ -45,11 +45,11 @@ def create_2d_graph( # noqa PLR0913 # pos = nx.planar_layout(graph) case "Random": pos = nx.random_layout(graph) - case "Shell only 2D)": + case "(Shell only 2D)": pos = nx.shell_layout(graph) # case "Spectral": # pos = nx.spectral_layout(graph) - case "Spiral only 2D)": + case "(Spiral only 2D)": pos = nx.spiral_layout(graph) # case "Multipartite": # pos = nx.multipartite_layout(graph) diff --git a/src/aki_prj23_transparenzregister/utils/networkx/network_base.py b/src/aki_prj23_transparenzregister/utils/networkx/network_base.py index 01ec5b3..bf7b29a 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/network_base.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/network_base.py @@ -22,20 +22,28 @@ def initialize_network(edges: list, nodes: dict) -> tuple[nx.Graph, pd.DataFrame # update node attributes from dataframe nx.set_node_attributes(graph, nodes) - + # Create a DataFrame with all Metrics # Create a DataFrame with all Metrics metrics = pd.DataFrame( - { - "eigenvector": nx.eigenvector_centrality(graph).values(), - "degree": nx.degree_centrality(graph).values(), - "betweenness": nx.betweenness_centrality(graph).values(), - "closeness": nx.closeness_centrality(graph).values(), - "pagerank": nx.pagerank(graph).values(), - "category": nx.get_node_attributes(graph, "type").values(), - "designation": nx.get_node_attributes(graph, "name").values(), - "id": nx.get_node_attributes(graph, "id").values(), - } - ).T + columns=[ + "eigenvector", + "degree", + "betweenness", + "closeness", + "pagerank", + "category", + "designation", + "id", + ] + ) + metrics["eigenvector"] = nx.eigenvector_centrality(graph).values() + metrics["degree"] = nx.degree_centrality(graph).values() + metrics["betweenness"] = nx.betweenness_centrality(graph).values() + metrics["closeness"] = nx.closeness_centrality(graph).values() + metrics["pagerank"] = nx.pagerank(graph).values() + metrics["category"] = nx.get_node_attributes(graph, "type").values() + metrics["designation"] = nx.get_node_attributes(graph, "name").values() + metrics["id"] = nx.get_node_attributes(graph, "id").values() return graph, metrics @@ -64,7 +72,7 @@ def initialize_network_with_reduced_metrics( # Create a DataFrame with all Metrics metrics = pd.DataFrame( - columns=["degree", "eigenvector", "betweenness", "closeness", "pagerank"] + columns=["degree", "betweenness", "closeness", "category", "designation", "id"] ) # metrics["eigenvector"] = nx.eigenvector_centrality(graph).values() metrics["degree"] = nx.degree_centrality(graph).values() diff --git a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py index 2653b7d..1071d1b 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py @@ -63,24 +63,6 @@ def find_all_company_relations() -> pd.DataFrame: return companies_relations_df -def find_top_companies() -> pd.DataFrame: - """_summary_. - - Returns: - pd.DataFrame: _description_ - """ - session = SessionHandler.session - assert session # noqa: S101 - query_companies = session.query(entities.Company) # .all() - - companies_df: pd.DataFrame = pd.read_sql(str(query_companies), session.bind) # type: ignore - companies_df = companies_df.head() - companies_df = companies_df[["company_name"]] - companies_df["Platzierung"] = [1, 2, 3, 4, 5] - companies_df["Umsatz M€"] = [1, 2, 3, 4, 5] - return companies_df[["Platzierung", "company_name", "Umsatz M€"]] - - def get_all_company_relations() -> pd.DataFrame: """This Methods makes a Database Request for all Companies and their relations, modifies the ID Column and returns the Result as an DataFrame. @@ -380,7 +362,7 @@ def create_edge_and_node_list_for_company( return nodes, edges -def get_all_metrics_from_id(company_id: int) -> pd.Series: +def get_all_metrics_from_id(company_id: str) -> pd.Series: """Returns all Metric for the given ID. Args: diff --git a/tests/ui/networkx_dash_test.py b/tests/ui/networkx_dash_test.py deleted file mode 100644 index 8264166..0000000 --- a/tests/ui/networkx_dash_test.py +++ /dev/null @@ -1,7 +0,0 @@ -"""Test for the NetworkX Component.""" -from aki_prj23_transparenzregister.ui.archive import networkx_dash - - -def network_graph(edges: None) -> None: - """Checks if an import co company_stats_dash can be made.""" - assert networkx_dash is not None diff --git a/tests/utils/networkx/network_2d_test.py b/tests/utils/networkx/network_2d_test.py index 58f1d1a..e752ad5 100644 --- a/tests/utils/networkx/network_2d_test.py +++ b/tests/utils/networkx/network_2d_test.py @@ -2,15 +2,21 @@ import datetime from collections.abc import Generator -import networkx as nx -import pandas as pd +import plotly.graph_objects as go import pytest from sqlalchemy.orm import Session from aki_prj23_transparenzregister.ui.session_handler import SessionHandler +from aki_prj23_transparenzregister.utils.networkx import network_2d +from aki_prj23_transparenzregister.utils.networkx.network_2d import create_2d_graph from aki_prj23_transparenzregister.utils.networkx.network_base import initialize_network +def test_import() -> None: + """Checks if an import co company_stats_dash can be made.""" + assert network_2d is not None + + @pytest.fixture(autouse=True) def _set_session(full_db: Session) -> Generator[None, None, None]: """Sets a session for the dash application to be used.""" @@ -19,32 +25,79 @@ def _set_session(full_db: Session) -> Generator[None, None, None]: SessionHandler.session = None -def test_initialize_network() -> None: +def test_create_2d_graph() -> None: + """Tests the creation of a 2D Graph.""" edges: list = [ {"from": "p_545", "to": "c_53", "type": "HAFTENDER_GESELLSCHAFTER"}, {"from": "c_53", "to": "p_545", "type": "HAFTENDER_GESELLSCHAFTER"}, + {"from": "c_1", "to": "c_2", "type": "HAFTENDER_GESELLSCHAFTER"}, + {"from": "c_53", "to": "c_1", "type": "HAFTENDER_GESELLSCHAFTER"}, ] nodes: dict = { "c_53": { "id": "c_53", "name": "1. Freiburger Solarfonds Beteiligungs-KG", + "type": "company", "color": "blue", }, "p_545": { "id": "p_545", - "firstname": "Jürgen", - "lastname": "Wetzel", + "name": "Wetzel, Jürgen", + "type": "person", "date_of_birth": datetime.date(1962, 11, 15), "color": "red", }, + "c_1": { + "id": "c_1", + "name": "Musterfirma", + "type": "company", + "color": "blue", + }, + "c_2": { + "id": "c_2", + "name": "Firma 1", + "type": "company", + "color": "blue", + }, } graph, metrics = initialize_network(edges=edges, nodes=nodes) - assert type(graph) is nx.Graph - assert type(metrics) is pd.DataFrame - # assert list(metrics.columns) == [ - # "degree", - # "eigenvector", - # "betweeness", - # "closeness", - # "pagerank", - # ] + metric = "None" + layout = "Spring" + edge_annotation = False + edge_thickness = 1 + figure = create_2d_graph( + graph, nodes, edges, metrics, metric, layout, edge_annotation, edge_thickness + ) + assert type(figure) is go.Figure + + metric = "degree" + layout = "Circular" + figure = create_2d_graph( + graph, nodes, edges, metrics, metric, layout, edge_annotation, edge_thickness + ) + assert type(figure) is go.Figure + + edge_annotation = True + layout = "Kamada Kawai" + figure = create_2d_graph( + graph, nodes, edges, metrics, metric, layout, edge_annotation, edge_thickness + ) + assert type(figure) is go.Figure + + layout = "Random" + figure = create_2d_graph( + graph, nodes, edges, metrics, metric, layout, edge_annotation, edge_thickness + ) + assert type(figure) is go.Figure + + layout = "Shell (only 2D)" + figure = create_2d_graph( + graph, nodes, edges, metrics, metric, layout, edge_annotation, edge_thickness + ) + assert type(figure) is go.Figure + + layout = "Spiral (only 2D)" + figure = create_2d_graph( + graph, nodes, edges, metrics, metric, layout, edge_annotation, edge_thickness + ) + assert type(figure) is go.Figure diff --git a/tests/utils/networkx/network_3d_test.py b/tests/utils/networkx/network_3d_test.py index 0713c80..5299083 100644 --- a/tests/utils/networkx/network_3d_test.py +++ b/tests/utils/networkx/network_3d_test.py @@ -1,38 +1,79 @@ """Test the initialize Network function.""" import datetime -import networkx as nx -import pandas as pd +import plotly.graph_objects as go +from aki_prj23_transparenzregister.utils.networkx import network_3d +from aki_prj23_transparenzregister.utils.networkx.network_3d import create_3d_graph from aki_prj23_transparenzregister.utils.networkx.network_base import initialize_network -def test_initialize_network() -> None: +def test_import() -> None: + """Checks if an import co company_stats_dash can be made.""" + assert network_3d is not None + + +def test_create_3d_graph() -> None: + """Tests the creation of a 3D Graph.""" edges: list = [ {"from": "p_545", "to": "c_53", "type": "HAFTENDER_GESELLSCHAFTER"}, {"from": "c_53", "to": "p_545", "type": "HAFTENDER_GESELLSCHAFTER"}, + {"from": "c_1", "to": "c_2", "type": "HAFTENDER_GESELLSCHAFTER"}, + {"from": "c_53", "to": "c_1", "type": "HAFTENDER_GESELLSCHAFTER"}, ] nodes: dict = { "c_53": { "id": "c_53", "name": "1. Freiburger Solarfonds Beteiligungs-KG", + "type": "company", "color": "blue", }, "p_545": { "id": "p_545", - "firstname": "Jürgen", - "lastname": "Wetzel", + "name": "Wetzel, Jürgen", + "type": "person", "date_of_birth": datetime.date(1962, 11, 15), "color": "red", }, + "c_1": { + "id": "c_1", + "name": "Musterfirma", + "type": "company", + "color": "blue", + }, + "c_2": { + "id": "c_2", + "name": "Firma 1", + "type": "company", + "color": "blue", + }, } graph, metrics = initialize_network(edges=edges, nodes=nodes) - assert type(graph) is nx.Graph - assert type(metrics) is pd.DataFrame - # assert list(metrics.columns) == [ - # "degree", - # "eigenvector", - # "betweeness", - # "closeness", - # "pagerank", - # ] + metric = "None" + layout = "Spring" + edge_annotation = False + edge_thickness = 1 + figure = create_3d_graph( + graph, nodes, edges, metrics, metric, layout, edge_annotation, edge_thickness + ) + assert type(figure) is go.Figure + + metric = "degree" + layout = "Circular" + figure = create_3d_graph( + graph, nodes, edges, metrics, metric, layout, edge_annotation, edge_thickness + ) + assert type(figure) is go.Figure + + edge_annotation = True + layout = "Kamada Kawai" + figure = create_3d_graph( + graph, nodes, edges, metrics, metric, layout, edge_annotation, edge_thickness + ) + assert type(figure) is go.Figure + + layout = "Random" + figure = create_3d_graph( + graph, nodes, edges, metrics, metric, layout, edge_annotation, edge_thickness + ) + assert type(figure) is go.Figure diff --git a/tests/utils/networkx/network_base_test.py b/tests/utils/networkx/network_base_test.py index 9fb3e6f..3837fe9 100644 --- a/tests/utils/networkx/network_base_test.py +++ b/tests/utils/networkx/network_base_test.py @@ -3,38 +3,83 @@ import datetime import networkx as nx import pandas as pd -import pytest -from aki_prj23_transparenzregister.utils.networkx.network_base import initialize_network +from aki_prj23_transparenzregister.utils.networkx import network_base +from aki_prj23_transparenzregister.utils.networkx.network_base import ( + initialize_network, + initialize_network_with_reduced_metrics, + initialize_network_without_metrics, +) + + +def test_import() -> None: + """Checks if an import co company_stats_dash can be made.""" + assert network_base is not None -@pytest.mark.tim() def test_initialize_network() -> None: edges: list = [ {"from": "p_545", "to": "c_53", "type": "HAFTENDER_GESELLSCHAFTER"}, {"from": "c_53", "to": "p_545", "type": "HAFTENDER_GESELLSCHAFTER"}, + {"from": "c_1", "to": "c_2", "type": "HAFTENDER_GESELLSCHAFTER"}, + {"from": "c_53", "to": "c_1", "type": "HAFTENDER_GESELLSCHAFTER"}, ] nodes: dict = { "c_53": { "id": "c_53", "name": "1. Freiburger Solarfonds Beteiligungs-KG", + "type": "company", "color": "blue", }, "p_545": { "id": "p_545", - "firstname": "Jürgen", - "lastname": "Wetzel", + "name": "Wetzel, Jürgen", + "type": "person", "date_of_birth": datetime.date(1962, 11, 15), "color": "red", }, + "c_1": { + "id": "c_1", + "name": "Musterfirma", + "type": "company", + "color": "blue", + }, + "c_2": { + "id": "c_2", + "name": "Firma 1", + "type": "company", + "color": "blur", + }, } + # print(len(edges)) + # print(len(nodes)) graph, metrics = initialize_network(edges=edges, nodes=nodes) assert isinstance(graph, nx.Graph) assert isinstance(metrics, pd.DataFrame) - # assert list(metrics.columns) == [ - # "degree", - # "eigenvector", - # "betweeness", - # "closeness", - # "pagerank", - # ] + assert list(metrics.columns) == [ + "eigenvector", + "degree", + "betweenness", + "closeness", + "pagerank", + "category", + "designation", + "id", + ] + + graph_reduced, metrics_reduced = initialize_network_with_reduced_metrics( + edges=edges, nodes=nodes + ) + assert isinstance(graph_reduced, nx.Graph) + assert isinstance(metrics_reduced, pd.DataFrame) + assert list(metrics_reduced.columns) == [ + "degree", + "betweenness", + "closeness", + "category", + "designation", + "id", + ] + + graph = initialize_network_without_metrics(edges=edges, nodes=nodes) + assert isinstance(graph_reduced, nx.Graph) diff --git a/tests/utils/networkx/networkx_data_test.py b/tests/utils/networkx/networkx_data_test.py index 15baef9..ff928c4 100644 --- a/tests/utils/networkx/networkx_data_test.py +++ b/tests/utils/networkx/networkx_data_test.py @@ -1,37 +1,150 @@ """Test the initialize Network function.""" -import datetime +from collections.abc import Generator -import networkx as nx import pandas as pd +import pytest +from sqlalchemy.orm import Session -from aki_prj23_transparenzregister.utils.networkx.network_base import initialize_network +from aki_prj23_transparenzregister.ui.session_handler import SessionHandler +from aki_prj23_transparenzregister.utils.networkx import networkx_data +from aki_prj23_transparenzregister.utils.networkx.networkx_data import ( + create_edge_and_node_list, + create_edge_and_node_list_for_company, + filter_relation_type, + filter_relation_with_more_than_one_connection, + find_all_company_relations, + find_company_relations, + get_all_company_relations, + get_all_person_relations, +) -def test_initialize_network() -> None: - edges: list = [ - {"from": "p_545", "to": "c_53", "type": "HAFTENDER_GESELLSCHAFTER"}, - {"from": "c_53", "to": "p_545", "type": "HAFTENDER_GESELLSCHAFTER"}, - ] - nodes: dict = { - "c_53": { - "id": "c_53", - "name": "1. Freiburger Solarfonds Beteiligungs-KG", - "color": "blue", - }, - "p_545": { - "id": "p_545", - "name": "Jürgen Wenzel", - "date_of_birth": datetime.date(1962, 11, 15), - "color": "red", - }, - } - graph, metrics = initialize_network(edges=edges, nodes=nodes) - assert type(graph) is nx.Graph - assert type(metrics) is pd.DataFrame - # assert list(metrics.columns) == [ - # "degree", - # "eigenvector", - # "betweeness", - # "closeness", - # "pagerank", - # ] +@pytest.fixture(autouse=True) +def _set_session(full_db: Session) -> Generator[None, None, None]: + """Sets a session for the dash application to be used.""" + SessionHandler.session = full_db + yield + SessionHandler.session = None + + +def test_import() -> None: + """Checks if an import co company_stats_dash can be made.""" + assert networkx_data is not None + + +# def test_initialize_network() -> None: +# edges: list = [ +# {"from": "p_545", "to": "c_53", "type": "HAFTENDER_GESELLSCHAFTER"}, +# {"from": "c_53", "to": "p_545", "type": "HAFTENDER_GESELLSCHAFTER"}, +# {"from": "c_1", "to": "c_2", "type": "HAFTENDER_GESELLSCHAFTER"}, +# {"from": "c_53", "to": "c_1", "type": "HAFTENDER_GESELLSCHAFTER"}, +# ] +# nodes: dict = { +# "c_53": { +# "id": "c_53", +# "name": "1. Freiburger Solarfonds Beteiligungs-KG", +# "type": "company", +# "color": "blue", +# }, +# "p_545": { +# "id": "p_545", +# "name": "Wetzel, Jürgen", +# "type": "person", +# "date_of_birth": datetime.date(1962, 11, 15), +# "color": "red", +# }, +# "c_1": { +# "id": "c_1", +# "name": "Musterfirma", +# "type": "company", +# "color": "blue", +# }, +# "c_2": { +# "id": "c_2", +# "name": "Firma 1", +# "type": "company", +# "color": "blur", +# }, +# } + + +def test_find_all_company_relations() -> None: + """This Test methods tests if the correct type is returned for the corresponding Function.""" + company_relations_df = find_all_company_relations() + assert type(company_relations_df) is pd.DataFrame + + +def test_get_all_company_relations() -> None: + """This Test methods tests if the correct type is returned for the corresponding Function.""" + company_relations_df = get_all_company_relations() + assert type(company_relations_df) is pd.DataFrame + + +def test_get_all_person_relations() -> None: + """This Test methods tests if the correct type is returned for the corresponding Function.""" + company_relations_df = get_all_person_relations() + assert type(company_relations_df) is pd.DataFrame + + +def test_filter_relation_type() -> None: + """This Test methods tests if the correct type is returned for the corresponding Function.""" + relation_dataframe = get_all_company_relations() + selected_relation_type = "HAFTENDER_GESELLSCHAFTER" + company_relations_df = filter_relation_type( + relation_dataframe, selected_relation_type + ) + assert type(company_relations_df) is pd.DataFrame + + +def test_filter_relation_with_more_than_one_connection() -> None: + """This Test methods tests if the correct type is returned for the corresponding Function.""" + relation_dataframe = get_all_company_relations() + id_column_name_to = "c_1" + id_column_name_from = "c_2" + relations_df = filter_relation_with_more_than_one_connection( + relation_dataframe, id_column_name_to, id_column_name_from + ) + assert type(relations_df) is pd.DataFrame + + +def test_create_edge_and_node_list() -> None: + """This Test methods tests if the correct type is returned for the corresponding Function.""" + person_df = get_all_person_relations() + company_df = get_all_company_relations() + nodes, edges = create_edge_and_node_list(person_df, company_df) + assert isinstance(nodes, dict) + assert isinstance(edges, list) + + +def test_find_company_relations() -> None: + """This Test methods tests if the correct type is returned for the corresponding Function.""" + selected_company_id = 1 + company_relations_df, person_df = find_company_relations(selected_company_id) + assert type(company_relations_df) is pd.DataFrame + assert type(person_df) is pd.DataFrame + + +def test_create_edge_and_node_list_for_company() -> None: + """This Test methods tests if the correct type is returned for the corresponding Function.""" + company_relations = get_all_company_relations() + nodes, edges = create_edge_and_node_list_for_company(company_relations) + assert isinstance(nodes, dict) + assert isinstance(edges, list) + + +# @pytest.mark.tim() +# def test_get_all_metrics_from_id() -> None: +# """This Test methods tests if the correct type is returned for the corresponding Function.""" +# company_id = 2549 +# metrics = get_all_metrics_from_id(company_id) +# assert type(metrics) is pd.Series + +# @pytest.mark.tim() +# def test_get_relations_number_from_id() -> None: +# """This Test methods tests if the correct type and number of relations is received.""" +# # id = "c_2549" +# id = "c_2667" +# relations_lvl_1, relations_lvl_2, relations_lvl_3 = get_relations_number_from_id(id) +# assert type(relations_lvl_1) is int +# assert type(relations_lvl_2) is int +# assert type(relations_lvl_3) is int From e5769b3c25444268d01adabc8b372eddec0a2ac9 Mon Sep 17 00:00:00 2001 From: Tim Date: Fri, 10 Nov 2023 18:04:19 +0100 Subject: [PATCH 33/36] Added Tests Co-authored-by: Tristan Nolde --- .../archive/sql_alchemy_to_networkx_v2.ipynb | 417 +++--------------- .../ui/pages/home.py | 36 -- .../utils/networkx/networkx_data.py | 46 +- tests/ui/home_page_test.py | 188 ++++++++ tests/utils/networkx/networkx_data_test.py | 184 ++++++-- 5 files changed, 404 insertions(+), 467 deletions(-) diff --git a/Jupyter/NetworkX/archive/sql_alchemy_to_networkx_v2.ipynb b/Jupyter/NetworkX/archive/sql_alchemy_to_networkx_v2.ipynb index 35d858d..6f957ab 100644 --- a/Jupyter/NetworkX/archive/sql_alchemy_to_networkx_v2.ipynb +++ b/Jupyter/NetworkX/archive/sql_alchemy_to_networkx_v2.ipynb @@ -20,7 +20,7 @@ }, { "cell_type": "code", - "execution_count": 37, + "execution_count": 5, "id": "b6eea59adeae27d4", "metadata": { "ExecuteTime": { @@ -36,7 +36,7 @@ "'c:\\\\Users\\\\trimr\\\\Projekte\\\\aki_prj23_transparenzregister'" ] }, - "execution_count": 37, + "execution_count": 5, "metadata": {}, "output_type": "execute_result" } @@ -53,7 +53,7 @@ }, { "cell_type": "code", - "execution_count": 38, + "execution_count": 6, "id": "eb9498d3", "metadata": {}, "outputs": [], @@ -71,7 +71,7 @@ }, { "cell_type": "code", - "execution_count": 39, + "execution_count": 7, "id": "6a317af6", "metadata": {}, "outputs": [], @@ -92,7 +92,7 @@ }, { "cell_type": "code", - "execution_count": 40, + "execution_count": 8, "id": "2d17651a", "metadata": {}, "outputs": [ @@ -102,7 +102,7 @@ "'SELECT to_company.id AS id_company_to, to_company.name AS name_company_to, relation.relation AS relation_type, from_company.name AS name_company_from, from_company.id AS id_company_from \\nFROM company AS to_company JOIN (relation JOIN company_relation ON relation.id = company_relation.id) ON relation.company_id = to_company.id JOIN company AS from_company ON company_relation.company2_id = from_company.id'" ] }, - "execution_count": 40, + "execution_count": 8, "metadata": {}, "output_type": "execute_result" } @@ -150,183 +150,48 @@ }, { "cell_type": "code", - "execution_count": 42, + "execution_count": 12, "id": "444cd402", "metadata": {}, "outputs": [ { "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
id_company_toname_company_torelation_typename_company_fromid_company_from
052. Schaper Objekt GmbH & Co. Kiel KGKOMMANDITISTMulti-Center Warenvertriebs GmbH2213
132Alb-Windkraft GmbH & Co. KGKOMMANDITISTEnBW Windkraftprojekte GmbH845
234Anneliese Köster GmbH & Co. KGKOMMANDITISTINDUS Holding Aktiengesellschaft1903
374AURELIUS Equity Opportunities SE & Co. KGaAHAFTENDER_GESELLSCHAFTERAURELIUS Management SE163
477Aurelius KGHAFTENDER_GESELLSCHAFTERAurelius Verwaltungs GmbH80
..................
5733137Zalando BTD 011 SE & Co. KGHAFTENDER_GESELLSCHAFTERZalando SE3112
5743137Zalando BTD 011 SE & Co. KGKOMMANDITISTZalando Operations GmbH3103
5753138zLabels Creation & Sales GmbH & Co. KGHAFTENDER_GESELLSCHAFTERzLabels GmbH3113
5763145Zalando Customer Care International SE & Co. KGHAFTENDER_GESELLSCHAFTERZalando SE3112
5773145Zalando Customer Care International SE & Co. KGKOMMANDITISTZalando Operations GmbH3103
\n", - "

578 rows × 5 columns

\n", - "
" - ], "text/plain": [ - " id_company_to name_company_to \\\n", - "0 5 2. Schaper Objekt GmbH & Co. Kiel KG \n", - "1 32 Alb-Windkraft GmbH & Co. KG \n", - "2 34 Anneliese Köster GmbH & Co. KG \n", - "3 74 AURELIUS Equity Opportunities SE & Co. KGaA \n", - "4 77 Aurelius KG \n", - ".. ... ... \n", - "573 3137 Zalando BTD 011 SE & Co. KG \n", - "574 3137 Zalando BTD 011 SE & Co. KG \n", - "575 3138 zLabels Creation & Sales GmbH & Co. KG \n", - "576 3145 Zalando Customer Care International SE & Co. KG \n", - "577 3145 Zalando Customer Care International SE & Co. KG \n", - "\n", - " relation_type name_company_from \\\n", - "0 KOMMANDITIST Multi-Center Warenvertriebs GmbH \n", - "1 KOMMANDITIST EnBW Windkraftprojekte GmbH \n", - "2 KOMMANDITIST INDUS Holding Aktiengesellschaft \n", - "3 HAFTENDER_GESELLSCHAFTER AURELIUS Management SE \n", - "4 HAFTENDER_GESELLSCHAFTER Aurelius Verwaltungs GmbH \n", - ".. ... ... \n", - "573 HAFTENDER_GESELLSCHAFTER Zalando SE \n", - "574 KOMMANDITIST Zalando Operations GmbH \n", - "575 HAFTENDER_GESELLSCHAFTER zLabels GmbH \n", - "576 HAFTENDER_GESELLSCHAFTER Zalando SE \n", - "577 KOMMANDITIST Zalando Operations GmbH \n", - "\n", - " id_company_from \n", - "0 2213 \n", - "1 845 \n", - "2 1903 \n", - "3 163 \n", - "4 80 \n", - ".. ... \n", - "573 3112 \n", - "574 3103 \n", - "575 3113 \n", - "576 3112 \n", - "577 3103 \n", - "\n", - "[578 rows x 5 columns]" + "[{'id_company_to': 2,\n", + " 'name_company_to': '1. Staiger Grundstücksverwaltung GmbH & Co. KG',\n", + " 'relation_type': 'HAFTENDER_GESELLSCHAFTER',\n", + " 'name_company_from': 'Staiger I. Verwaltung-GmbH',\n", + " 'id_company_from': 3226},\n", + " {'id_company_to': 3,\n", + " 'name_company_to': '1 A Autenrieth Kunststofftechnik GmbH & Co. KG',\n", + " 'relation_type': 'HAFTENDER_GESELLSCHAFTER',\n", + " 'name_company_from': 'Autenrieth Verwaltungs-GmbH',\n", + " 'id_company_from': 3324},\n", + " {'id_company_to': 5,\n", + " 'name_company_to': '2. Schaper Objekt GmbH & Co. Kiel KG',\n", + " 'relation_type': 'KOMMANDITIST',\n", + " 'name_company_from': 'Multi-Center Warenvertriebs GmbH',\n", + " 'id_company_from': 2213},\n", + " {'id_company_to': 6,\n", + " 'name_company_to': 'AASP Filmproduktionsgesellschaft mbH & Co. Leonie KG',\n", + " 'relation_type': 'INHABER',\n", + " 'name_company_from': 'ABN AMRO Structured Products Gesellschaft für Fondsbeteiligungen mbH',\n", + " 'id_company_from': 3332},\n", + " {'id_company_to': 6,\n", + " 'name_company_to': 'AASP Filmproduktionsgesellschaft mbH & Co. Leonie KG',\n", + " 'relation_type': 'KOMMANDITIST',\n", + " 'name_company_from': 'Kallang GmbH',\n", + " 'id_company_from': 3316}]" ] }, - "execution_count": 42, + "execution_count": 12, "metadata": {}, "output_type": "execute_result" } ], "source": [ "company_relations = pd.read_sql_query(str(relations_company_query), session.bind)\n", - "company_relations" + "company_relations.head().to_dict(orient=\"records\")" ] }, { @@ -339,7 +204,7 @@ }, { "cell_type": "code", - "execution_count": 43, + "execution_count": 14, "id": "52af1d30", "metadata": {}, "outputs": [], @@ -385,194 +250,58 @@ }, { "cell_type": "code", - "execution_count": 45, + "execution_count": 15, "id": "c78b3e65", "metadata": {}, "outputs": [ { "data": { - "text/html": [ - "
\n", - "\n", - "\n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - " \n", - "
id_companyname_companyrelation_typeid_personlastnamefirstnamedate_of_birth
010 10 24 Telefondienste GmbHGESCHAEFTSFUEHRER1TetauNicolas1971-01-02
110 10 24 Telefondienste GmbHPROKURIST2DammastLutz1966-12-06
221. Staiger Grundstücksverwaltung GmbH & Co. KGKOMMANDITIST3TutschRosemarie1941-10-09
321. Staiger Grundstücksverwaltung GmbH & Co. KGKOMMANDITIST4StaigerMarc1969-10-22
421. Staiger Grundstücksverwaltung GmbH & Co. KGKOMMANDITIST5StaigerMichaela1971-03-03
........................
148913144Wohnungsbaugesellschaft mit beschränkter Haftu...GESCHAEFTSFUEHRER878WeirichTorsten1975-07-21
148923144Wohnungsbaugesellschaft mit beschränkter Haftu...GESCHAEFTSFUEHRER1840BrusinskiBastian1980-10-29
148933145Zalando Customer Care International SE & Co. KGPROKURIST9359PapeUte1978-12-13
148943146zebotec GmbHGESCHAEFTSFUEHRER9628NeffWerner1981-11-24
148953146zebotec GmbHGESCHAEFTSFUEHRER9629MorrisRichard1971-01-02
\n", - "

14896 rows × 7 columns

\n", - "
" - ], "text/plain": [ - " id_company name_company \\\n", - "0 1 0 10 24 Telefondienste GmbH \n", - "1 1 0 10 24 Telefondienste GmbH \n", - "2 2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", - "3 2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", - "4 2 1. Staiger Grundstücksverwaltung GmbH & Co. KG \n", - "... ... ... \n", - "14891 3144 Wohnungsbaugesellschaft mit beschränkter Haftu... \n", - "14892 3144 Wohnungsbaugesellschaft mit beschränkter Haftu... \n", - "14893 3145 Zalando Customer Care International SE & Co. KG \n", - "14894 3146 zebotec GmbH \n", - "14895 3146 zebotec GmbH \n", - "\n", - " relation_type id_person lastname firstname date_of_birth \n", - "0 GESCHAEFTSFUEHRER 1 Tetau Nicolas 1971-01-02 \n", - "1 PROKURIST 2 Dammast Lutz 1966-12-06 \n", - "2 KOMMANDITIST 3 Tutsch Rosemarie 1941-10-09 \n", - "3 KOMMANDITIST 4 Staiger Marc 1969-10-22 \n", - "4 KOMMANDITIST 5 Staiger Michaela 1971-03-03 \n", - "... ... ... ... ... ... \n", - "14891 GESCHAEFTSFUEHRER 878 Weirich Torsten 1975-07-21 \n", - "14892 GESCHAEFTSFUEHRER 1840 Brusinski Bastian 1980-10-29 \n", - "14893 PROKURIST 9359 Pape Ute 1978-12-13 \n", - "14894 GESCHAEFTSFUEHRER 9628 Neff Werner 1981-11-24 \n", - "14895 GESCHAEFTSFUEHRER 9629 Morris Richard 1971-01-02 \n", - "\n", - "[14896 rows x 7 columns]" + "[{'id_company': 1,\n", + " 'name_company': '0 10 24 Telefondienste GmbH',\n", + " 'relation_type': 'GESCHAEFTSFUEHRER',\n", + " 'id_person': 1,\n", + " 'lastname': 'Tetau',\n", + " 'firstname': 'Nicolas',\n", + " 'date_of_birth': datetime.date(1971, 1, 2)},\n", + " {'id_company': 1,\n", + " 'name_company': '0 10 24 Telefondienste GmbH',\n", + " 'relation_type': 'PROKURIST',\n", + " 'id_person': 2,\n", + " 'lastname': 'Dammast',\n", + " 'firstname': 'Lutz',\n", + " 'date_of_birth': datetime.date(1966, 12, 6)},\n", + " {'id_company': 2,\n", + " 'name_company': '1. Staiger Grundstücksverwaltung GmbH & Co. KG',\n", + " 'relation_type': 'KOMMANDITIST',\n", + " 'id_person': 3,\n", + " 'lastname': 'Tutsch',\n", + " 'firstname': 'Rosemarie',\n", + " 'date_of_birth': datetime.date(1941, 10, 9)},\n", + " {'id_company': 2,\n", + " 'name_company': '1. Staiger Grundstücksverwaltung GmbH & Co. KG',\n", + " 'relation_type': 'KOMMANDITIST',\n", + " 'id_person': 4,\n", + " 'lastname': 'Staiger',\n", + " 'firstname': 'Marc',\n", + " 'date_of_birth': datetime.date(1969, 10, 22)},\n", + " {'id_company': 2,\n", + " 'name_company': '1. Staiger Grundstücksverwaltung GmbH & Co. KG',\n", + " 'relation_type': 'KOMMANDITIST',\n", + " 'id_person': 5,\n", + " 'lastname': 'Staiger',\n", + " 'firstname': 'Michaela',\n", + " 'date_of_birth': datetime.date(1971, 3, 3)}]" ] }, - "execution_count": 45, + "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ "person_relations = pd.read_sql_query(str(relations_person_query), session.bind)\n", - "person_relations" + "person_relations.head().to_dict(orient=\"records\")" ] }, { diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index 65f3aa1..2acfaea 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -9,7 +9,6 @@ import pandas as pd import plotly.graph_objects as go from cachetools import TTLCache, cached from dash import Input, Output, callback, dash_table, dcc, html -from loguru import logger from aki_prj23_transparenzregister.utils.networkx.network_2d import ( create_2d_graph, @@ -66,13 +65,11 @@ network = None def person_relation_type_filter() -> np.ndarray: """Returns an Numpy Array of String with Person telation types.""" - logger.debug("Updating Person Dropdown") return get_all_person_relations()["relation_type"].unique() def company_relation_type_filter() -> np.ndarray: """Returns an Numpy Array of String with Company relation types.""" - logger.debug("Updating Person Dropdown") return get_all_company_relations()["relation_type"].unique() @@ -88,17 +85,14 @@ def update_table( Returns: tuple[dict, list]: _description_ """ - logger.debug("Updateing Table") table_df = metrics.sort_values(metric_dropdown_value, ascending=False).head(10) table_df = table_df[["designation", "category", metric_dropdown_value]] - table_df.to_dict("records") columns = [{"name": i, "id": i} for i in table_df.columns] return table_df.to_dict("records"), columns # type: ignore def layout() -> list[html.Div]: """Generates the Layout of the Homepage.""" - logger.debug("Layouting Homepage") person_relation_types = person_relation_type_filter() company_relation_types = company_relation_type_filter() top_companies_dict, top_companies_columns, figure = update_figure( @@ -348,7 +342,6 @@ def update_graph_data( Returns: tuple[nx.Graph, pd.DataFrame, dict, list]: _description_ """ - logger.debug("Updating Graph data") # Get Data person_df = get_all_person_relations() company_df = get_all_company_relations() @@ -356,8 +349,6 @@ def update_graph_data( person_relation = filter_relation_type(person_df, person_relation_type) company_relation = filter_relation_type(company_df, company_relation_type) - # company_relation = filter_relation_with_more_than_one_connection(company_relation, "id_company_to", "id_company_from") - # Create Edge and Node List from data nodes_tmp, edges_tmp = create_edge_and_node_list(person_relation, company_relation) @@ -414,7 +405,6 @@ def update_figure( # noqa: PLR0913 Returns: Network Graph(Plotly Figure): Plotly Figure in 3 or 2D """ - logger.debug("Update Figure") _ = c_relation_filter_value, p_relation_filter_value graph, metrics, nodes, edges = update_graph_data( @@ -454,29 +444,3 @@ def update_figure( # noqa: PLR0913 slider_value, # type: ignore ), ) - - -@callback( - Output("company_dropdown", "style"), - [ - Input("dropdown_data_soruce_filter", "value"), - ], -) -def update_dropdown(datasource_value: str) -> str: - """_summary_. - - Args: - datasource_value (str): _description_ - - Returns: - str: _description_ - """ - style = "" - match datasource_value: - case "Company Data only": - style = "visibility: visible;" - case "Person Data only": - style = "visibility: hidden;" - case "Company & Person Data": - style = "visibility: visible;" - return style diff --git a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py index 1071d1b..ab5621f 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py @@ -158,42 +158,6 @@ def filter_relation_type( ] -def filter_relation_with_more_than_one_connection( - relation_dataframe: pd.DataFrame, id_column_name_to: str, id_column_name_from: str -) -> pd.DataFrame: - """Method to filter all Entries in an DataFrame which has more than one connection. - - Args: - relation_dataframe (pd.DataFrame): _description_ - id_column_name_to (_type_): _description_ - id_column_name_from (_type_): _description_ - - Returns: - relation_dataframe (pd.DataFrame): The DataFrame which now only contains entries with more than one connection. - """ - tmp_df = pd.DataFrame(columns=relation_dataframe.columns.values) - for _index, row in relation_dataframe.iterrows(): - count = 0 - id = row[id_column_name_to] - for _index_sub, row_sub in relation_dataframe.iterrows(): - if id == row_sub[id_column_name_to]: - count = count + 1 - if id == row_sub[id_column_name_from]: - count = count + 1 - if count > 1: - break - - if count > 1: - # tmp_df = pd.concat([tmp_df, pd.DataFrame(row)])+ - tmp_df.loc[len(tmp_df)] = row # type: ignore - count = 0 - else: - count = 0 - continue - count = 0 - return tmp_df - - def create_edge_and_node_list( person_relations: pd.DataFrame, company_relations: pd.DataFrame ) -> tuple[dict, list]: @@ -362,7 +326,7 @@ def create_edge_and_node_list_for_company( return nodes, edges -def get_all_metrics_from_id(company_id: str) -> pd.Series: +def get_all_metrics_from_id(company_id: int) -> pd.Series: """Returns all Metric for the given ID. Args: @@ -380,11 +344,14 @@ def get_all_metrics_from_id(company_id: str) -> pd.Series: graph, metrics = initialize_network_with_reduced_metrics( nodes=nodes_tmp, edges=edges_tmp ) - return metrics.loc[metrics["id"] == company_id].iloc[0] + filtered_metrics = metrics.loc[metrics["id"] == company_id] + if len(filtered_metrics) == 0: + return pd.Series([]) + return filtered_metrics.iloc[0] @lru_cache -def get_relations_number_from_id(id: str) -> tuple[int, int, int]: +def get_relations_number_from_id(id: int) -> tuple[int, int, int]: """Returns all Relation in 1, 2 and 3 lvl of one Node. Args: @@ -399,7 +366,6 @@ def get_relations_number_from_id(id: str) -> tuple[int, int, int]: # Create Edge and Node List from data nodes_tmp, edges_tmp = create_edge_and_node_list(person_df, company_df) - graph = initialize_network_without_metrics(nodes=nodes_tmp, edges=edges_tmp) neighbors = nx.all_neighbors(graph, id) diff --git a/tests/ui/home_page_test.py b/tests/ui/home_page_test.py index 1bb3bb3..0aacb21 100644 --- a/tests/ui/home_page_test.py +++ b/tests/ui/home_page_test.py @@ -1,7 +1,195 @@ """Test for the Home Page.""" +import datetime +from collections.abc import Generator +from unittest.mock import patch + +import pandas as pd +import pytest + from aki_prj23_transparenzregister.ui.pages import home def test_import() -> None: """Checks if an import co company_stats_dash can be made.""" assert home is not None + + +@pytest.mark.tim() +def test_person_relation_type_filter() -> None: + with patch( + "aki_prj23_transparenzregister.ui.pages.home.get_all_person_relations" + ) as mock_filter: + data = [ + {"relation_type": "Eigentümer"}, + {"relation_type": "Inhaber"}, + {"relation_type": "Eigentümer"}, + ] + mock_filter.return_value = pd.DataFrame(data) + assert list(home.person_relation_type_filter()) == ["Eigentümer", "Inhaber"] + + +@pytest.mark.tim() +def test_company_relation_type_filter() -> None: + with patch( + "aki_prj23_transparenzregister.ui.pages.home.get_all_company_relations" + ) as mock_filter: + data = [ + {"relation_type": "Eigentümer"}, + {"relation_type": "Inhaber"}, + {"relation_type": "Eigentümer"}, + ] + mock_filter.return_value = pd.DataFrame(data) + assert list(home.company_relation_type_filter()) == ["Eigentümer", "Inhaber"] + + +@pytest.mark.tim() +def test_update_table() -> None: + metrics = pd.DataFrame( + [ + { + "designation": "Mustermann, Max", + "category": "Person", + "centrality": 3.14, + "betweenness": 42, + }, + { + "designation": "Musterfrau, Martina", + "category": "Person", + "centrality": 42, + "betweenness": 3.14, + }, + ] + ) + selected_metric = "centrality" + + expected_result_df = [ + { + "designation": "Musterfrau, Martina", + "category": "Person", + "centrality": 42.0, + }, + { + "designation": "Mustermann, Max", + "category": "Person", + "centrality": 3.14, + }, + ] + expected_result_columns = [ + {"name": "designation", "id": "designation"}, + {"name": "category", "id": "category"}, + {"name": "centrality", "id": "centrality"}, + ] + + result_df, result_columns = home.update_table(selected_metric, metrics) + assert result_df == expected_result_df + assert result_columns == expected_result_columns + + +@pytest.fixture(scope="session", autouse=True) +def _get_person_relations() -> Generator: + data = [ + { + "id_company": 1, + "name_company": "0 10 24 Telefondienste GmbH", + "relation_type": "GESCHAEFTSFUEHRER", + "id_person": 1, + "lastname": "Tetau", + "firstname": "Nicolas", + "date_of_birth": datetime.date(1971, 1, 2), + }, + { + "id_company": 1, + "name_company": "0 10 24 Telefondienste GmbH", + "relation_type": "PROKURIST", + "id_person": 2, + "lastname": "Dammast", + "firstname": "Lutz", + "date_of_birth": datetime.date(1966, 12, 6), + }, + { + "id_company": 2, + "name_company": "1. Staiger Grundstücksverwaltung GmbH & Co. KG", + "relation_type": "KOMMANDITIST", + "id_person": 3, + "lastname": "Tutsch", + "firstname": "Rosemarie", + "date_of_birth": datetime.date(1941, 10, 9), + }, + { + "id_company": 2, + "name_company": "1. Staiger Grundstücksverwaltung GmbH & Co. KG", + "relation_type": "HAFTENDER_GESELLSCHAFTER", + "id_person": 4, + "lastname": "Staiger", + "firstname": "Marc", + "date_of_birth": datetime.date(1969, 10, 22), + }, + { + "id_company": 2, + "name_company": "1. Staiger Grundstücksverwaltung GmbH & Co. KG", + "relation_type": "HAFTENDER_GESELLSCHAFTER", + "id_person": 5, + "lastname": "Staiger", + "firstname": "Michaela", + "date_of_birth": datetime.date(1971, 3, 3), + }, + ] + with patch( + "aki_prj23_transparenzregister.ui.pages.home.get_all_person_relations" + ) as mock_get_person_relations: + mock_get_person_relations.return_value = pd.DataFrame(data) + yield + + +@pytest.fixture(scope="session", autouse=True) +def _get_company_relations() -> Generator: + data = [ + { + "id_company_to": 2, + "name_company_to": "1. Staiger Grundstücksverwaltung GmbH & Co. KG", + "relation_type": "GESCHAEFTSFUEHRER", + "name_company_from": "Staiger I. Verwaltung-GmbH", + "id_company_from": 3226, + }, + { + "id_company_to": 3, + "name_company_to": "1 A Autenrieth Kunststofftechnik GmbH & Co. KG", + "relation_type": "GESCHAEFTSFUEHRER", + "name_company_from": "Autenrieth Verwaltungs-GmbH", + "id_company_from": 3324, + }, + { + "id_company_to": 5, + "name_company_to": "2. Schaper Objekt GmbH & Co. Kiel KG", + "relation_type": "KOMMANDITIST", + "name_company_from": "Multi-Center Warenvertriebs GmbH", + "id_company_from": 2213, + }, + { + "id_company_to": 6, + "name_company_to": "AASP Filmproduktionsgesellschaft mbH & Co. Leonie KG", + "relation_type": "INHABER", + "name_company_from": "ABN AMRO Structured Products Gesellschaft für Fondsbeteiligungen mbH", + "id_company_from": 3332, + }, + { + "id_company_to": 6, + "name_company_to": "AASP Filmproduktionsgesellschaft mbH & Co. Leonie KG", + "relation_type": "KOMMANDITIST", + "name_company_from": "Kallang GmbH", + "id_company_from": 3316, + }, + ] + with patch( + "aki_prj23_transparenzregister.ui.pages.home.get_all_company_relations" + ) as mock_get_person_relations: + mock_get_person_relations.return_value = pd.DataFrame(data) + yield + + +@pytest.mark.tim() +def test_update_graph_data() -> None: + graph_result, metrics_result, nodes_result, edges_result = home.update_graph_data( + "HAFTENDER_GESELLSCHAFTER", "GESCHAEFTSFUEHRER" + ) + assert graph_result is not None diff --git a/tests/utils/networkx/networkx_data_test.py b/tests/utils/networkx/networkx_data_test.py index ff928c4..8c52c6c 100644 --- a/tests/utils/networkx/networkx_data_test.py +++ b/tests/utils/networkx/networkx_data_test.py @@ -1,5 +1,7 @@ """Test the initialize Network function.""" +import datetime from collections.abc import Generator +from unittest.mock import patch import pandas as pd import pytest @@ -7,16 +9,108 @@ from sqlalchemy.orm import Session from aki_prj23_transparenzregister.ui.session_handler import SessionHandler from aki_prj23_transparenzregister.utils.networkx import networkx_data -from aki_prj23_transparenzregister.utils.networkx.networkx_data import ( - create_edge_and_node_list, - create_edge_and_node_list_for_company, - filter_relation_type, - filter_relation_with_more_than_one_connection, - find_all_company_relations, - find_company_relations, - get_all_company_relations, - get_all_person_relations, -) + + +@pytest.fixture(scope="session", autouse=True) +def _get_person_relations() -> Generator: + data = [ + { + "id_company": 1, + "name_company": "0 10 24 Telefondienste GmbH", + "relation_type": "GESCHAEFTSFUEHRER", + "id_person": 1, + "lastname": "Tetau", + "firstname": "Nicolas", + "date_of_birth": datetime.date(1971, 1, 2), + }, + { + "id_company": 1, + "name_company": "0 10 24 Telefondienste GmbH", + "relation_type": "PROKURIST", + "id_person": 2, + "lastname": "Dammast", + "firstname": "Lutz", + "date_of_birth": datetime.date(1966, 12, 6), + }, + { + "id_company": 2, + "name_company": "1. Staiger Grundstücksverwaltung GmbH & Co. KG", + "relation_type": "KOMMANDITIST", + "id_person": 3, + "lastname": "Tutsch", + "firstname": "Rosemarie", + "date_of_birth": datetime.date(1941, 10, 9), + }, + { + "id_company": 2, + "name_company": "1. Staiger Grundstücksverwaltung GmbH & Co. KG", + "relation_type": "KOMMANDITIST", + "id_person": 4, + "lastname": "Staiger", + "firstname": "Marc", + "date_of_birth": datetime.date(1969, 10, 22), + }, + { + "id_company": 2, + "name_company": "1. Staiger Grundstücksverwaltung GmbH & Co. KG", + "relation_type": "KOMMANDITIST", + "id_person": 5, + "lastname": "Staiger", + "firstname": "Michaela", + "date_of_birth": datetime.date(1971, 3, 3), + }, + ] + with patch( + "aki_prj23_transparenzregister.utils.networkx.networkx_data.get_all_person_relations" + ) as mock_get_person_relations: + mock_get_person_relations.return_value = pd.DataFrame(data) + yield + + +@pytest.fixture(scope="session", autouse=True) +def _get_company_relations() -> Generator: + data = [ + { + "id_company_to": 2, + "name_company_to": "1. Staiger Grundstücksverwaltung GmbH & Co. KG", + "relation_type": "HAFTENDER_GESELLSCHAFTER", + "name_company_from": "Staiger I. Verwaltung-GmbH", + "id_company_from": 3226, + }, + { + "id_company_to": 3, + "name_company_to": "1 A Autenrieth Kunststofftechnik GmbH & Co. KG", + "relation_type": "HAFTENDER_GESELLSCHAFTER", + "name_company_from": "Autenrieth Verwaltungs-GmbH", + "id_company_from": 3324, + }, + { + "id_company_to": 5, + "name_company_to": "2. Schaper Objekt GmbH & Co. Kiel KG", + "relation_type": "KOMMANDITIST", + "name_company_from": "Multi-Center Warenvertriebs GmbH", + "id_company_from": 2213, + }, + { + "id_company_to": 6, + "name_company_to": "AASP Filmproduktionsgesellschaft mbH & Co. Leonie KG", + "relation_type": "INHABER", + "name_company_from": "ABN AMRO Structured Products Gesellschaft für Fondsbeteiligungen mbH", + "id_company_from": 3332, + }, + { + "id_company_to": 6, + "name_company_to": "AASP Filmproduktionsgesellschaft mbH & Co. Leonie KG", + "relation_type": "KOMMANDITIST", + "name_company_from": "Kallang GmbH", + "id_company_from": 3316, + }, + ] + with patch( + "aki_prj23_transparenzregister.utils.networkx.networkx_data.get_all_company_relations" + ) as mock_get_person_relations: + mock_get_person_relations.return_value = pd.DataFrame(data) + yield @pytest.fixture(autouse=True) @@ -70,48 +164,37 @@ def test_import() -> None: def test_find_all_company_relations() -> None: """This Test methods tests if the correct type is returned for the corresponding Function.""" - company_relations_df = find_all_company_relations() + company_relations_df = networkx_data.find_all_company_relations() assert type(company_relations_df) is pd.DataFrame def test_get_all_company_relations() -> None: """This Test methods tests if the correct type is returned for the corresponding Function.""" - company_relations_df = get_all_company_relations() + company_relations_df = networkx_data.get_all_company_relations() assert type(company_relations_df) is pd.DataFrame def test_get_all_person_relations() -> None: """This Test methods tests if the correct type is returned for the corresponding Function.""" - company_relations_df = get_all_person_relations() + company_relations_df = networkx_data.get_all_person_relations() assert type(company_relations_df) is pd.DataFrame def test_filter_relation_type() -> None: """This Test methods tests if the correct type is returned for the corresponding Function.""" - relation_dataframe = get_all_company_relations() + relation_dataframe = networkx_data.get_all_company_relations() selected_relation_type = "HAFTENDER_GESELLSCHAFTER" - company_relations_df = filter_relation_type( + company_relations_df = networkx_data.filter_relation_type( relation_dataframe, selected_relation_type ) assert type(company_relations_df) is pd.DataFrame -def test_filter_relation_with_more_than_one_connection() -> None: - """This Test methods tests if the correct type is returned for the corresponding Function.""" - relation_dataframe = get_all_company_relations() - id_column_name_to = "c_1" - id_column_name_from = "c_2" - relations_df = filter_relation_with_more_than_one_connection( - relation_dataframe, id_column_name_to, id_column_name_from - ) - assert type(relations_df) is pd.DataFrame - - def test_create_edge_and_node_list() -> None: """This Test methods tests if the correct type is returned for the corresponding Function.""" - person_df = get_all_person_relations() - company_df = get_all_company_relations() - nodes, edges = create_edge_and_node_list(person_df, company_df) + person_df = networkx_data.get_all_person_relations() + company_df = networkx_data.get_all_company_relations() + nodes, edges = networkx_data.create_edge_and_node_list(person_df, company_df) assert isinstance(nodes, dict) assert isinstance(edges, list) @@ -119,32 +202,39 @@ def test_create_edge_and_node_list() -> None: def test_find_company_relations() -> None: """This Test methods tests if the correct type is returned for the corresponding Function.""" selected_company_id = 1 - company_relations_df, person_df = find_company_relations(selected_company_id) + company_relations_df, person_df = networkx_data.find_company_relations( + selected_company_id + ) assert type(company_relations_df) is pd.DataFrame assert type(person_df) is pd.DataFrame def test_create_edge_and_node_list_for_company() -> None: """This Test methods tests if the correct type is returned for the corresponding Function.""" - company_relations = get_all_company_relations() - nodes, edges = create_edge_and_node_list_for_company(company_relations) + company_relations = networkx_data.get_all_company_relations() + nodes, edges = networkx_data.create_edge_and_node_list_for_company( + company_relations + ) assert isinstance(nodes, dict) assert isinstance(edges, list) -# @pytest.mark.tim() -# def test_get_all_metrics_from_id() -> None: -# """This Test methods tests if the correct type is returned for the corresponding Function.""" -# company_id = 2549 -# metrics = get_all_metrics_from_id(company_id) -# assert type(metrics) is pd.Series +def test_get_all_metrics_from_id() -> None: + """This Test methods tests if the correct type is returned for the corresponding Function.""" + company_id = 2 + metrics = networkx_data.get_all_metrics_from_id(company_id) + assert type(metrics) is pd.Series -# @pytest.mark.tim() -# def test_get_relations_number_from_id() -> None: -# """This Test methods tests if the correct type and number of relations is received.""" -# # id = "c_2549" -# id = "c_2667" -# relations_lvl_1, relations_lvl_2, relations_lvl_3 = get_relations_number_from_id(id) -# assert type(relations_lvl_1) is int -# assert type(relations_lvl_2) is int -# assert type(relations_lvl_3) is int + +def test_get_relations_number_from_id() -> None: + """This Test methods tests if the correct type and number of relations is received.""" + # id = "c_2549" + id = 2 + ( + relations_lvl_1, + relations_lvl_2, + relations_lvl_3, + ) = networkx_data.get_relations_number_from_id(id) + assert isinstance(relations_lvl_1, int) + assert isinstance(relations_lvl_2, int) + assert isinstance(relations_lvl_3, int) From fdbb6b5fd46b6d9b776575875a0590a11beb0be2 Mon Sep 17 00:00:00 2001 From: Tim Date: Fri, 10 Nov 2023 18:39:12 +0100 Subject: [PATCH 34/36] Added Graph to Company page again --- .../ui/company_elements.py | 3 -- .../ui/pages/home.py | 38 ------------------- .../utils/networkx/networkx_data.py | 17 +++------ 3 files changed, 6 insertions(+), 52 deletions(-) diff --git a/src/aki_prj23_transparenzregister/ui/company_elements.py b/src/aki_prj23_transparenzregister/ui/company_elements.py index ba3ffac..8881ab0 100644 --- a/src/aki_prj23_transparenzregister/ui/company_elements.py +++ b/src/aki_prj23_transparenzregister/ui/company_elements.py @@ -380,9 +380,6 @@ def network_layout(selected_company_id: int) -> html.Div: """ person_relations, company_relations = find_company_relations(selected_company_id) - # get_all_metrics_from_id(selected_company_id) - # get_relations_number_from_id(f"c_{selected_company_id}") - # Create Edge and Node List from data nodes, edges = create_edge_and_node_list_for_company(company_relations) # Initialize the Network and receive the Graph and a DataFrame with Metrics diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index 2acfaea..c20be1b 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -39,28 +39,10 @@ dash.register_page( ], ) -# Create Edge and Node List from data -# nodes, edges = create_edge_and_node_list(person_relation, company_relation) -# Initialize the Network and receive the Graph and a DataFrame with Metrics -# graph, metrics = initialize_network(nodes=nodes, edges=edges) metric = "None" -# layout = "Spring" -# # switch_node_annotaion_value = False switch_edge_annotaion_value = False egde_thickness = 1 network = None -# create_3d_graph( -# graph, -# nodes, -# edges, -# metrics, -# metric, -# layout, -# switch_edge_annotaion_value, -# egde_thickness, -# ) - -# Get the possible Filter values for the Dropdowns. def person_relation_type_filter() -> np.ndarray: @@ -146,26 +128,6 @@ def layout() -> list[html.Div]: className="networkx_style", children=[ html.H1(className="header", children=["Social Graph"]), - # html.Div( - # className="filter-wrapper", - # children=[ - # html.Div( - # className="filter-wrapper-item", - # children=[ - # html.H5( - # className="filter-description", - # children=["Data Source:"], - # ), - # dcc.Dropdown( - # ["Company Data only", "Person Data only", "Company & Person Data"], - # "Company Data only", - # id="dropdown_data_soruce_filter", - # className="dropdown_style", - # ), - # ], - # ), - # ], - # ), html.Div( className="filter-wrapper", id="company_dropdown", diff --git a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py index ab5621f..2349eb2 100644 --- a/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py +++ b/src/aki_prj23_transparenzregister/utils/networkx/networkx_data.py @@ -237,7 +237,7 @@ def find_company_relations( """ session = SessionHandler.session assert session # noqa: S101 - relations_company_query = ( + relations_company = ( session.query( to_company.id.label("id_company_to"), to_company.name.label("name_company_to"), @@ -257,18 +257,11 @@ def find_company_relations( (from_company.id == selected_company_id) | (to_company.id == selected_company_id) ) + .all() ) - company_relations = pd.DataFrame(relations_company_query.all()) - # logger.debug(str(relations_company_query)) - # relations_company_query = relations_company_query.filter(entities.CompanyRelation.company2_id == selected_company_id) # or (entities.CompanyRelation.company2_id == selected_company_id)) - # logger.debug(str(relations_company_query)) - # tmp = str(relations_company_query) + " WHERE from_company.id = " + str(selected_company_id) - # print(tmp) - # query = str(relations_company_query.filter((entities.CompanyRelation.company_id == selected_company_id) or (entities.CompanyRelation.company2_id == selected_company_id))) - # print(query) - # company_relations = get_all_company_relations() + company_relations = pd.DataFrame( - relations_company_query.all(), + relations_company, columns=[ "id_company_to", "name_company_to", @@ -309,12 +302,14 @@ def create_edge_and_node_list_for_company( "id": row["id_company_from"], "name": row["name_company_from"], "color": COLOR_COMPANY, + "type": "company", } if nodes.get(row["id_company_to"]) is None: nodes[row["id_company_to"]] = { "id": row["id_company_to"], "name": row["name_company_to"], "color": COLOR_COMPANY, + "type": "company", } edges.append( { From a1d8e942a9bbbafc0f520d731bb50193bacd4ecb Mon Sep 17 00:00:00 2001 From: TrisNol Date: Fri, 10 Nov 2023 19:20:49 +0100 Subject: [PATCH 35/36] test: Adapt home.py to run unit tests --- src/aki_prj23_transparenzregister/ui/pages/home.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/aki_prj23_transparenzregister/ui/pages/home.py b/src/aki_prj23_transparenzregister/ui/pages/home.py index c20be1b..f643323 100644 --- a/src/aki_prj23_transparenzregister/ui/pages/home.py +++ b/src/aki_prj23_transparenzregister/ui/pages/home.py @@ -31,12 +31,13 @@ dash.register_page( __name__, path="/", title="Transparenzregister: Home", - redirect_from=[ - "/unternehmensdetails", - "/personendetails", - "/unternehmensdetails/", - "/personendetails/", - ], + # TODO Fix redirect in unit tests + # redirect_from=[ + # "/unternehmensdetails", + # "/personendetails", + # "/unternehmensdetails/", + # "/personendetails/", + # ], ) metric = "None" From da72c3d0a8f59ddad1b1537831efb85d458d8a48 Mon Sep 17 00:00:00 2001 From: TrisNol Date: Fri, 10 Nov 2023 19:21:32 +0100 Subject: [PATCH 36/36] lint: Format company_elements.py --- src/aki_prj23_transparenzregister/ui/company_elements.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/aki_prj23_transparenzregister/ui/company_elements.py b/src/aki_prj23_transparenzregister/ui/company_elements.py index 8881ab0..ed837e5 100644 --- a/src/aki_prj23_transparenzregister/ui/company_elements.py +++ b/src/aki_prj23_transparenzregister/ui/company_elements.py @@ -349,6 +349,7 @@ def person_relations_layout(selected_company_id: int, session: Session) -> html: style_filter={"text-align": "center", "backgroundColor": COLORS["light"]}, ) + def kennzahlen_layout(selected_finance_df: pd.DataFrame) -> html: """Create metrics tab.